diff --git a/arch/riscv/boot/dts/canaan/k230.dtsi b/arch/riscv/boot/dts/canaan/k230.dtsi index 3d66be43dca06..bf5542cb152a1 100644 --- a/arch/riscv/boot/dts/canaan/k230.dtsi +++ b/arch/riscv/boot/dts/canaan/k230.dtsi @@ -384,6 +384,16 @@ status = "disabled"; }; + vpu: vpu@0x90400000 { + status = "okay"; + compatible = "canaan,vpu"; + reg = <0x0 0x90400000 0x0 0x10000>; + interrupts = <132 IRQ_TYPE_LEVEL_HIGH>; + power-domains = <&sysctl_power K230_PM_DOMAIN_VPU>; + clocks = <&vpu_src>; + clock-names = "vpu"; + }; + gpu: gpu@90800000 { compatible = "verisilicon,gc8000ul"; reg = <0x0 0x90800000 0x0 0x1000>; diff --git a/arch/riscv/configs/k230_defconfig b/arch/riscv/configs/k230_defconfig index 1dce021da19a9..67d84d3960526 100644 --- a/arch/riscv/configs/k230_defconfig +++ b/arch/riscv/configs/k230_defconfig @@ -279,3 +279,8 @@ CONFIG_TOUCHSCREEN_EDT_FT5X06=y CONFIG_INPUT_EVDEV=y CONFIG_GPU_VGLITE=y CONFIG_BACKLIGHT_CLASS_DEVICE=y +CONFIG_I2C=y +CONFIG_MEDIA_SUPPORT=y +CONFIG_MEDIA_PLATFORM_SUPPORT=y +CONFIG_V4L_PLATFORM_DRIVERS=y +CONFIG_VPU_CANAAN=y diff --git a/drivers/media/platform/Kconfig b/drivers/media/platform/Kconfig index ee579916f8744..76ede7e42659e 100644 --- a/drivers/media/platform/Kconfig +++ b/drivers/media/platform/Kconfig @@ -85,5 +85,6 @@ source "drivers/media/platform/ti/Kconfig" source "drivers/media/platform/verisilicon/Kconfig" source "drivers/media/platform/via/Kconfig" source "drivers/media/platform/xilinx/Kconfig" +source "drivers/media/platform/canaan/vpu/Kconfig" endif # MEDIA_PLATFORM_DRIVERS diff --git a/drivers/media/platform/Makefile b/drivers/media/platform/Makefile index 5453bb868e679..fd675f14c5fe0 100644 --- a/drivers/media/platform/Makefile +++ b/drivers/media/platform/Makefile @@ -28,6 +28,7 @@ obj-y += ti/ obj-y += verisilicon/ obj-y += via/ obj-y += xilinx/ +obj-y += canaan/vpu/ # Please place here only ancillary drivers that aren't SoC-specific # Please keep it alphabetically sorted by Kconfig name diff --git a/drivers/media/platform/canaan/vpu/Kconfig b/drivers/media/platform/canaan/vpu/Kconfig new file mode 100644 index 0000000000000..0253b23e8c7b4 --- /dev/null +++ b/drivers/media/platform/canaan/vpu/Kconfig @@ -0,0 +1,38 @@ +config VPU_CANAAN + tristate "Linlon VPU support." + depends on VIDEO_DEV + depends on COMMON_CLK && HAS_DMA + select VIDEO_V4L2_SUBDEV_API + select VIDEOBUF2_DMA_CONTIG + select V4L_MEM2MEM_DRIVERS + select V4L2_FWNODE + select VIDEOBUF2_DMA_SG + default y + help + This is a v4l2 driver for Canaan video codec. + Canaan video codec is video decoder and encoder hardware unit. + It accelerates video decoder and encoder operations, such as h264, hevc, + jpeg formats. + To compile this driver as a module choose m here. + +config VPU_CANAAN_FTRACE + depends on VPU_CANAAN + bool "Send kernel space logs to ftrace." + default n + help + This is a v4l2 driver for Canaan video codec. + Canaan video codec is video decoder and encoder hardware unit. + It accelerates video decoder and encoder operations, such as h264, hevc, + jpeg formats. Send kernel space logs to ftrace. + To compile this driver as a module choose m here. + +config VPU_CANAAN_PRINT_FILE + depends on VPU_CANAAN + bool "Append file and line number to kernel space log messages." + default y + help + This is a v4l2 driver for Canaan video codec. + Canaan video codec is video decoder and encoder hardware unit. + It accelerates video decoder and encoder operations, such as h264, hevc, + jpeg formats. Append file and line number to kernel space log messages. + To compile this driver as a module choose m here. diff --git a/drivers/media/platform/canaan/vpu/Makefile b/drivers/media/platform/canaan/vpu/Makefile new file mode 100644 index 0000000000000..691e4b56d6fd1 --- /dev/null +++ b/drivers/media/platform/canaan/vpu/Makefile @@ -0,0 +1,58 @@ +#############################################if/############## +# Set the include-path according to the defined interface. +########################################################### + +ccflags-y += -I$(src) -I$(src)/if -I$(src)/dev -I$(src)/if/v4l2 -I$(src)/external +ccflags-$(CONFIG_VPU_CANAAN_FTRACE) += -DMVX_LOG_FTRACE_ENABLE +ccflags-$(CONFIG_VPU_CANAAN_PRINT_FILE) += -DMVX_LOG_PRINT_FILE_ENABLE +ccflags-y += $(EXTRA_CCFLAGS) + +########################################################### +# Define build targets and what files to include. +########################################################### + +# Amvx module +obj-$(CONFIG_VPU_CANAAN) := amvx.o + +# Add objects for if module. +if-y := mvx_if.o \ + mvx_buffer.o \ + mvx_firmware_cache.o \ + mvx_firmware.o \ + mvx_firmware_v2.o \ + mvx_firmware_v3.o \ + mvx_mmu.o \ + mvx_secure.o \ + mvx_session.o \ + fw_jpegenc.o \ + fw_jpegdec.o \ + fw_h264enc.o \ + fw_h264dec.o \ + fw_hevcenc.o \ + fw_hevcdec.o + +# Add external interface. +if-y += mvx_ext_v4l2.o \ + mvx_v4l2_buffer.o \ + mvx_v4l2_session.o \ + mvx_v4l2_vidioc.o \ + mvx_v4l2_fops.o \ + mvx_v4l2_ctrls.o + +# Add objects for dev module. +dev-y := mvx_dev.o \ + mvx_hwreg.o \ + mvx_hwreg_v500.o \ + mvx_hwreg_v550.o \ + mvx_hwreg_v61.o \ + mvx_hwreg_v52_v76.o \ + mvx_lsid.o \ + mvx_scheduler.o \ + mvx_pm_runtime.o + +# Add driver objects. +amvx-y := mvx_driver.o \ + mvx_seq.o \ + mvx_log.o \ + mvx_log_group.o \ + $(if-y) $(dev-y) diff --git a/drivers/media/platform/canaan/vpu/fw_h264dec.c b/drivers/media/platform/canaan/vpu/fw_h264dec.c new file mode 100644 index 0000000000000..64941dcca566e --- /dev/null +++ b/drivers/media/platform/canaan/vpu/fw_h264dec.c @@ -0,0 +1,11335 @@ +// SPDX-License-Identifier: GPL-2.0-only +/* + * Copyright (c) 2024, Canaan Bright Sight Co., Ltd + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND + * CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, + * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, + * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + */ + +#include "mvx_firmware_cache.h" + +const unsigned int fw_h264dec[] __aligned(0x1000) = { + 0x0000eb5e, 0x02020305, 0x33363635, 0x32303137, 0x36322e48, 0x50422034, + 0x2f504d2f, 0x44205048, 0x646f6365, 0x00007265, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x34363248, 0x20434544, + 0x33346332, 0x31643430, 0x30703172, 0x6530302d, 0x00306361, 0x00000000, + 0x00042300, 0x00044000, 0x0000002c, 0xfff80bef, 0x00000fff, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00057000, 0x00018064, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x01a70d27, + 0x6ea7f07b, 0x53fdcfff, 0x530207f0, 0xa50183f1, 0x27609561, 0x25601501, + 0x15002760, 0x9b602560, 0x6ea70ef0, 0x01fd4fff, 0x33110361, 0xc512a314, + 0x60c13861, 0xf810ce38, 0xffff1ea7, 0x213127ff, 0x99240714, 0x6c402416, + 0x27659680, 0x169d806c, 0x27612724, 0x0e210330, 0x07202762, 0x19520b51, + 0xce0b6650, 0x3826f042, 0x139d3327, 0xbd31270d, 0x27063a13, 0x0ef09b00, + 0xa70f1099, 0xfd4fff6e, 0x600b0233, 0x274063c5, 0x0ef39b30, 0x4fff6ea7, + 0x3863c5fd, 0x10000d27, 0x871ef0e8, 0x01271225, 0x1399501d, 0x0353070c, + 0x0c139d31, 0x2c333207, 0x04f29b18, 0x0ea721a3, 0x05feffff, 0x9b202702, + 0x03150ef2, 0x2708059d, 0x9302000d, 0x0482c3f1, 0x04002d27, 0x0706f09b, + 0xb5f193f1, 0x1001045d, 0x01270b36, 0xf0931005, 0x930430a8, 0x042e23f3, + 0x011e03c2, 0x803c0331, 0x93f930ca, 0x042e13f3, 0x1e8ef293, 0x03210104, + 0x03310524, 0xf630ca34, 0x00024ebe, 0xf09b0027, 0x0276be0b, 0x27012700, + 0x06f09b10, 0xfd1eff8b, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x01a70d27, 0x6ea7f07b, + 0x93feffff, 0x000cf6f1, 0x937f1ce3, 0x00107ef2, 0x05b66001, 0x9bfa21d2, + 0x1c030ff1, 0xe3f21e80, 0x04f09b01, 0x02000d27, 0xabcef193, 0x022d2704, + 0x06f09b40, 0xc4bef107, 0xff8b000c, 0x0000fd1e, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x01a70d27, 0x6ea7f07b, 0x93feffff, 0x00020cf1, 0x937f1ce3, 0x000c6ef2, + 0x05b66001, 0x9bfa21d2, 0x1c030ff1, 0xe3f21e80, 0x04f09b01, 0x02000d27, + 0x98cef193, 0x012d2704, 0x06f09b40, 0xf1bef107, 0xff8b0001, 0x0000fd1e, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x01a70d27, 0x6ea7f07b, 0x93feffff, 0x000f86f1, + 0x937f1ce3, 0x001268f2, 0x05b66001, 0x9bfa21d2, 0x1c030ff1, 0xe3f21e80, + 0x04f09b01, 0x02000d27, 0xbe4ef193, 0x032d2704, 0x06f09b40, 0x54bef107, + 0xff8b000f, 0x0000fd1e, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x01a70d27, 0x6ea7f07b, + 0x93feffff, 0x0011f0f1, 0x937f1ce3, 0x00131af2, 0x05b66001, 0x9bfa21d2, + 0x1c030ff1, 0xe3f21e80, 0x04f09b01, 0x02000d27, 0xe04ef193, 0x042d2704, + 0x06f09b40, 0xbebef107, 0xff8b0011, 0xf09bfd1e, 0x07fe0b06, 0x4efe0b0f, + 0x25fd93f5, 0xd0010000, 0xf08b0506, 0xf71ed403, 0xf54ef58e, 0x0016fd93, + 0x06d00100, 0x03f08b05, 0x8ef71ed4, 0x000000f5, 0x00000000, 0x00000000, + 0xf4abfa4e, 0x3c7af493, 0xa7f41b01, 0xfd9fff3e, 0x04024d27, 0x34153425, + 0x001466be, 0xffff0ea7, 0xff1ea7ff, 0x031efd4f, 0x0499f2e8, 0x2713010e, + 0xd8437b26, 0xaea7f341, 0x11feffff, 0x0834f9a3, 0xe3ff000a, 0x0834fd41, + 0xa7ff000a, 0xfdcfffbe, 0xf093c127, 0x27042dac, 0x68bcc510, 0x001502be, + 0xfcebf4ab, 0x001278be, 0x0027f4ab, 0x0014e0be, 0xf49b4027, 0x0ef49b0b, + 0xa3bd3227, 0xbcc51ff8, 0x0ef49b40, 0x9fff3ea7, 0x68bcc5fd, 0x40273415, + 0x070ef49b, 0x1eff8b00, 0x000000f6, 0x0004afd4, 0x0004afec, 0x00100000, + 0x0004ad88, 0x0004ae54, 0xf0e3f54e, 0x4dcaf493, 0x27f41b01, 0x274ea730, + 0x4305fefd, 0x2ea74315, 0x05fefd1f, 0xa7231523, 0xebffff1e, 0x00014f27, + 0x14155010, 0xc5102c27, 0xcea75c12, 0x27e7ffff, 0xa7cb05b2, 0xfefd334e, + 0x2ea74325, 0x25fee43f, 0x331ea723, 0x1325fee4, 0xe4570ea7, 0xa70325fe, + 0xfee44bee, 0x9127e325, 0x9350c9c5, 0x04966bfa, 0x4305a315, 0x23054315, + 0x13052315, 0x03051315, 0xe3050315, 0xf093e315, 0x93049658, 0x04965bf1, + 0x965ef293, 0x61f49304, 0x03050496, 0x23050315, 0x43052315, 0xf2934315, + 0x930497a0, 0x049793f4, 0x979efe93, 0xa1f09304, 0xa3050497, 0x13151305, + 0x43154305, 0x23052315, 0xe315e305, 0x03150305, 0xa70ef39b, 0xfdcfff2e, + 0xfd7ef493, 0x3524b5ff, 0x93233529, 0xfffdf3f4, 0x453024c5, 0xa7234529, + 0xefffff4e, 0x2ea74315, 0x25fd8fff, 0x212b152b, 0x5df59323, 0x3da30497, + 0x23252800, 0x18272411, 0x28004da3, 0x3ea72415, 0xa7fee1c7, 0xf7ffff4e, + 0xc54041c5, 0xf313c053, 0x7f3ce3fe, 0x0ea73103, 0xd1feffff, 0x27014804, + 0x1843c026, 0x1f833ff4, 0x089b0000, 0xd10ff39b, 0x03014804, 0x2627803c, + 0x27ea43c4, 0x4801d130, 0x5553bd01, 0x4203ad02, 0x2720a701, 0x5054bd40, + 0x5c52d502, 0x5153bd02, 0x5852d502, 0x5653bd02, 0x5253ad02, 0x5453bd02, + 0x1113c002, 0xffff2ea7, 0xe84627fe, 0x4823d1f4, 0xf633c401, 0x96cef293, + 0xff4ea704, 0x1207ffff, 0x062843d1, 0xd5971c03, 0xe3024c53, 0x2ce37f1c, + 0x0324197f, 0x21c2802c, 0x262c27f9, 0x96a6f393, 0x07102704, 0x23310542, + 0xb8340321, 0x374ea7f4, 0x5465fee0, 0xabb052c5, 0xeb4127f3, 0xf9f093f4, + 0xf1930490, 0xe3049963, 0x1ce37f0c, 0x25f0157f, 0xff2ea7f1, 0x24d1ffff, + 0x4fe60a14, 0x3ea70657, 0x11fd8fff, 0x104ca334, 0x5cc13415, 0x1d4027c0, + 0x53b227c4, 0x01fddff1, 0xbe1c0710, 0xb9004d11, 0xf6025054, 0x96063d4f, + 0x35f393b1, 0x32c10496, 0x991127c0, 0x23d16024, 0x44960114, 0x1c331027, + 0x403cfc0e, 0x24810699, 0xab282389, 0x07248541, 0xa231e0d2, 0x19f31107, + 0x03f42134, 0x34c2803c, 0xa7e027f7, 0xfdeb971e, 0x4f271e05, 0x0d030000, + 0xd1c11415, 0x95f09358, 0x20a70494, 0x038d30a7, 0xe0028d14, 0x0e150105, + 0x02d50d25, 0x02d50124, 0x02d50128, 0x02d5012c, 0x028d0130, 0x9c028d58, + 0xa70efe9b, 0xfdeb8f3e, 0x4f273e05, 0x0d830000, 0xfe9b3415, 0x0538030e, + 0x004f273e, 0x150e0300, 0x0efe9b34, 0x3e053803, 0x00004f27, 0x34150e83, + 0xa70efe9b, 0xfdeb6f3e, 0x4f273e05, 0x14420000, 0xfe9b3415, 0x68d4c10e, + 0x0201cd07, 0xe664cc03, 0xa705fd4f, 0xfde5bf4e, 0x2c274205, 0xa7421548, + 0xfde5af3e, 0x4c274e35, 0x15340524, 0x07002732, 0xbe3e351c, 0x8902f971, + 0xf29372d3, 0x8d0493f0, 0xd3991023, 0x72d18998, 0x9974d089, 0x133b62d4, + 0xf293033b, 0x270450c0, 0xff4ce0e0, 0x41270666, 0x249d433b, 0x1d245d04, + 0x94d39923, 0x132b2459, 0x247d412b, 0x9996d399, 0x032b0424, 0x402b2e3d, + 0x249d2339, 0x673fe605, 0x023f2705, 0x27c40000, 0x0000804f, 0x7dfe93c7, + 0xe4350450, 0xf093e325, 0xc104938c, 0x040164d3, 0x0bc056c1, 0x99043543, + 0x63996e61, 0x27f1059a, 0x27349620, 0xc1f39321, 0x329d0494, 0xb6d499a2, + 0x423b1027, 0x27a3349d, 0xadf49320, 0x30270494, 0x9da6439d, 0x42c5a141, + 0xa4418dac, 0x99a842c5, 0x3027a364, 0x31274486, 0xfe933633, 0x0304948c, + 0x0163803f, 0x60e3d500, 0x6862c102, 0xeeb0e4c1, 0xa700ae24, 0xfeffff1e, + 0x014214a9, 0x014413a9, 0x4f8b432b, 0x072342c8, 0xf1f153c1, 0x271001fb, + 0xbe640f1d, 0xa902f918, 0xa90142c4, 0x2b0144c3, 0xcc4f8b43, 0x62c1e442, + 0x0521e468, 0xa7402705, 0xfef9973e, 0x34153405, 0xf98f2ea7, 0x152405fe, + 0x15f39324, 0xf2930494, 0x15049418, 0x15340524, 0xc1240534, 0x5cc16861, + 0x3111e0c0, 0x013f2705, 0x27501000, 0x0227102c, 0x1003ed27, 0xffff4ea7, + 0xc54315eb, 0x3ea75c42, 0x05e7ffff, 0x503ec530, 0xffff2ea7, 0x154127f7, + 0xc5382724, 0xc4994023, 0xff3ea7b5, 0x4123efff, 0x34154183, 0x53b051c5, + 0x01fb5bf3, 0xacd7c130, 0x02f92bbe, 0x4ea73127, 0x53f7ffff, 0xc5fb4bfe, + 0xe4014c43, 0x3c272027, 0x03420510, 0x27f3c844, 0x27a027b0, 0x4127119c, + 0x478b4a3b, 0x008a4fe6, 0x40070a47, 0x41994d0b, 0x038007b8, 0xff1ce081, + 0x310703a0, 0x33334107, 0x432b4533, 0x01984cf1, 0x4807ff00, 0x42994d0b, + 0xff2ce0b8, 0x3207037b, 0x33334207, 0x432b4533, 0x01904ef1, 0xd499ff00, + 0xe046169a, 0x100000ce, 0xeee00371, 0x71100000, 0x14d4d103, 0x004ddc01, + 0x4b872f04, 0x4cf53b07, 0xff0a3f80, 0x0bfd3103, 0x0004afec, 0xb02cb1fd, + 0x43870004, 0x3f804ef5, 0x32fdff0a, 0x0004b02c, 0xafec83fd, 0xb2030004, + 0xf9f8a103, 0x4b07ff6a, 0x54bd4f6b, 0x47960256, 0x92f6fe93, 0x60e3d104, + 0xff4ea702, 0x43e5f7ff, 0xe5023f80, 0x023f8443, 0xbcd4b203, 0x3c271720, + 0x002e2720, 0x3b2b1000, 0x42f54b87, 0xff0a3f80, 0xf398b103, 0xfa56f153, + 0x40a71001, 0x025c54d5, 0x025854d5, 0x02f6f3be, 0xf46e6499, 0x93030246, + 0x03071ff0, 0x64895005, 0x8d443372, 0x63999c54, 0x0736236e, 0x034f6b43, + 0x2b42f036, 0x00112704, 0x0710273a, 0x74648931, 0x433b4433, 0x999e548d, + 0x3b266c63, 0x3c033607, 0x4034c164, 0xff004ed8, 0xf4932aff, 0x27049264, + 0xa1429d21, 0xe6413499, 0x9304044f, 0x049253fe, 0x99bce29d, 0x41e04234, + 0x41f40402, 0x402703e7, 0x99bd549d, 0x47e06e64, 0x112703c1, 0x10274600, + 0x9512f293, 0x24210504, 0x05322713, 0xff4ea723, 0x3d27f7ff, 0x6e99069a, + 0xc052c19a, 0x3d274335, 0x43450208, 0xf6a32399, 0x99023e3f, 0x4ff6a424, + 0x0027023a, 0x10273027, 0xe4864127, 0x44474027, 0x02104fa3, 0x22c10400, + 0xab43ab68, 0xe0312740, 0x33033521, 0xfe931e3c, 0xab0491d8, 0xc143ab41, + 0xe4c5c0e3, 0x6832c1a8, 0x033721e0, 0x99a43499, 0x4383a33d, 0xd433d383, + 0xd4ab4833, 0x2ff6daa3, 0xb1270202, 0xffff2ea7, 0x312321ef, 0xcb3dcb24, + 0x8643ab4b, 0xdc24a14a, 0x0000004f, 0xc2072140, 0xf922f153, 0x10014127, + 0x1c27c405, 0xf646be1a, 0x05402702, 0xd8c3a1c4, 0x0000003f, 0x4ea7e340, + 0x25efffff, 0xa74b354d, 0xfdefff3e, 0x34d54327, 0x34c10288, 0xfb48dc88, + 0xefff2ea7, 0x8824c1fd, 0x08004ddc, 0xd54427f9, 0xd5028824, 0x27028c24, + 0x6023d530, 0x772ea706, 0x2305fdeb, 0x00004f27, 0x24151402, 0xa70ef39b, + 0xfde5cf2e, 0x05184c27, 0xc1231524, 0x3f27c051, 0x20000000, 0x35281489, + 0x004d8323, 0xc145c680, 0x41dc4414, 0xdc148128, 0x9322c04c, 0x0490fbf2, + 0xe6a22499, 0x27022f4f, 0x54991f1c, 0xa65399a3, 0x248b2107, 0x529d138b, + 0xa6519da3, 0x025652b9, 0x017e2fe6, 0x90d2f393, 0xa434b904, 0x33340702, + 0x2b433335, 0x9c3ee934, 0x93ff0001, 0x0490bbf4, 0xe99c4e8d, 0x00019e30, + 0x9e408dff, 0x01a031e9, 0x53c1ff00, 0x283489c0, 0x80004d83, 0x34c14566, + 0x03423844, 0x0117e317, 0xe0d027f2, 0x27020d2a, 0x2d11e0c1, 0x21f35302, + 0xbe3001f8, 0x5300464b, 0x01f81bf4, 0x27102742, 0x2730a7e4, 0x27230d00, + 0x57219d30, 0x9d52218d, 0x239d5621, 0x50208d58, 0x0354208d, 0x602c0311, + 0x07dffef0, 0xad40134c, 0x66017c54, 0x41f493d5, 0x40bd0490, 0xfe530182, + 0xe001f7d8, 0x02f97bbe, 0xffff3ea7, 0xf83401f7, 0x01f6204c, 0xf7b6f253, + 0x89be2001, 0x2ea702f5, 0xd1ffffff, 0xf60a1424, 0xa7f9ad4f, 0xfd8fffee, + 0x4ce3e411, 0x5ee41510, 0xf253f9aa, 0x2001f790, 0xa5be1c07, 0xb00702f5, + 0xf9a1bff6, 0x53f9b45e, 0x01f783f3, 0xfc905e3e, 0xf77af253, 0x6b5e2c01, + 0x07ce07fc, 0xfc935e12, 0x2107ec07, 0x99fc8c5e, 0x1227a424, 0x142b3213, + 0x17833783, 0x33143c33, 0x0e27171c, 0x5e040000, 0xb327fdb8, 0xf0fdff5e, + 0xe400ee48, 0x93fcfa4a, 0x034473f3, 0x8f9af293, 0x5e230504, 0x3f27fcf2, + 0xe4000100, 0x01004f27, 0x9a5ee700, 0x072481fa, 0x004da302, 0xbe248540, + 0x5e003d68, 0x0027f905, 0x27241c27, 0x56be483c, 0x1c0702f3, 0x2c270027, + 0xf383be48, 0xfa115e02, 0x8f56f193, 0x27302704, 0x139d104c, 0x8d3027a3, + 0x129d9e14, 0xa4138da6, 0x279c148d, 0xfe945e11, 0x3ea74027, 0x25fee43f, + 0x332ea734, 0x2425fee4, 0xe4571ea7, 0xa71425fe, 0xfee44b0e, 0xfe930425, + 0x15048db0, 0x153405e4, 0x15240534, 0x15140524, 0x15040514, 0x89f19304, + 0xf093048d, 0x93048d7c, 0x048d87f2, 0x04150405, 0x14151405, 0x24152405, + 0x61c1e405, 0xc05cc168, 0xfad311e4, 0x00013f27, 0x2e275310, 0x27088098, + 0x0000020f, 0x03ed2790, 0xfaca5e50, 0x5e0f1c27, 0xe127fdd2, 0x93f9995e, + 0x03234bfe, 0x8eb2f493, 0x5e4e0504, 0x3027fc0a, 0x931e3c33, 0x048ea3fe, + 0x43ab41ab, 0xc5c0e3c1, 0x32c1a8e4, 0xcd21e468, 0x614c27fc, 0xc1ace4c5, + 0xc15e6832, 0x5ef2e8fc, 0xd127f753, 0xf65ec027, 0x934227fd, 0x049157f3, + 0x4a5e3405, 0xbe0207fc, 0x5e003d48, 0x3127f7f5, 0xc0fbdc5e, 0xff1e1d42, + 0xd25ec027, 0x934027fd, 0x048e4ff0, 0x5ebc049d, 0x4127fbfb, 0x5ebd549d, + 0x6499fc03, 0x2c4ac06e, 0x549d4227, 0xfbf55ebd, 0xcc27d307, 0xbdf15328, + 0xc51001f5, 0x1c2740dc, 0xf2e2be0d, 0xc5482702, 0xd30140d4, 0xed203cfc, + 0x27e31efd, 0xbd549d43, 0x4efbca5e, 0x99f493fb, 0xf41b0145, 0xffff3ea7, + 0x113499ff, 0x34994696, 0x9345f612, 0x055feff4, 0x44d64419, 0x010165be, + 0xa70f3c27, 0xfdbfff4e, 0x3c274335, 0xff4ea75f, 0x43c5fd4f, 0xb63c2734, + 0xefff4ea7, 0x0443d5fd, 0x077bbe0f, 0xff3ea701, 0x4e27fd7f, 0x1580000a, + 0x25422734, 0x92c6be34, 0xff3ea700, 0x3499ffff, 0x2744c611, 0x99231eb0, + 0xb1271234, 0xb0274486, 0xf493b726, 0x19055f90, 0x99460644, 0x4c3c2434, + 0x4986be7f, 0x4991be00, 0xff2ea700, 0x2499ffff, 0xffcea711, 0x4103feff, + 0x2711249d, 0x48c4d543, 0xff1ea701, 0x1401fd4f, 0x3d07d127, 0x4307343b, + 0x6b0e2399, 0x9d34ab4f, 0x14c50e23, 0x9b40273c, 0x01270ef4, 0x004b42be, + 0x1ffdc0bd, 0x14300cd8, 0xa7100c38, 0xfdcfff4e, 0xa7644dc5, 0xfdcfff4e, + 0x86604dc5, 0xff4ea7bf, 0x41d1ffff, 0x18060a14, 0xafff2ea7, 0xa72441fd, + 0xfd7fff3e, 0x2405410b, 0x4ce33421, 0x11342510, 0x104ca334, 0xfc933415, + 0x19055ef4, 0x4df3bec0, 0x16c41900, 0x480d2748, 0x4ccfbe0d, 0xd5f49300, + 0x4005055e, 0x04000d27, 0x004cc0be, 0x5ecaf493, 0xbe400505, 0x27007f80, + 0x0ef49b40, 0xffffbea7, 0xff3ea7fe, 0xb2b9fd4f, 0x34c50140, 0xb925c638, + 0x531ffdb0, 0xbe018304, 0xa7007f92, 0xffffeb0e, 0x01050dbe, 0x004985be, + 0xffeb0ea7, 0x04ddbeff, 0x90c6be01, 0x27f4ab00, 0xa7fcebc1, 0xfd7fffde, + 0x03aafdbe, 0x4c83d411, 0xbed41518, 0xbe0090ae, 0xb90105ed, 0x260141b4, + 0xff4ea745, 0x4c45d07f, 0x9d53f493, 0x26441904, 0xbe012747, 0xab00474a, + 0x4e09befc, 0xe3d41100, 0x0400004e, 0xfcebd415, 0x2027f1ab, 0x22c0041e, + 0xf824f921, 0xd0ff011f, 0x42872142, 0x300044f1, 0x44d8ff02, 0x27420716, + 0x2b410335, 0x27461032, 0xf0210331, 0x4127d9f3, 0x4027031e, 0x4d56f1eb, + 0x4ea73127, 0xc5fdcfff, 0xf1ab6043, 0x041e2027, 0xf92122c0, 0x011ff824, + 0x2142d0ff, 0x44f14287, 0xff023000, 0x071644d8, 0x03352742, 0x10322b41, + 0x03312746, 0xd9f3f021, 0x031e4127, 0xf1eb4027, 0x43274516, 0xc31ef4e8, + 0x012e85be, 0xffffbea7, 0xffdea7ff, 0x0b1efd4f, 0xc50ef39b, 0x6fbe38d3, + 0xb461012e, 0x42563027, 0x4fff4ea7, 0x994201fd, 0xbe990eb3, 0x3b412711, + 0x2334eb42, 0x0eb39de1, 0xa711be9d, 0xfeffff2e, 0x83092499, 0x33340743, + 0x2b448734, 0x5034f934, 0x07ff0000, 0x4f34f9c4, 0x23ff0000, 0x4f34fd41, + 0xd6ff0000, 0x092399eb, 0x2b44b499, 0xc84f4b43, 0xc5863041, 0x0628b4d1, + 0xc525bc9d, 0xf49340b4, 0x01055d34, 0xa7402741, 0xffffff0e, 0x9d12be9d, + 0xb49d0cb4, 0x464cbe2a, 0xbe0c0700, 0x1e007a29, 0xffcea717, 0xc199ffff, + 0xcd0ea70e, 0x98befff9, 0x41270106, 0x9312c49d, 0x049bfcf4, 0x4d064419, + 0xffff1ea7, 0xd61251ff, 0x93302723, 0x049be8f4, 0x4027431d, 0x9b0bf49b, + 0x3ea70ef4, 0x9dfd4fff, 0x129d1012, 0x9b33010f, 0x21270ef4, 0x3b0e1499, + 0xa724cb23, 0xfd4fbf3e, 0x41272138, 0x21533405, 0x25863403, 0x4027f31e, + 0x9b0bf49b, 0x3ea70ef4, 0x11feffff, 0x104c2732, 0x1fdc34bd, 0x24fd4027, + 0xff000000, 0xf49b4027, 0xff4ea70e, 0x4499ffff, 0xbe44d612, 0x2700469b, + 0xff4ea731, 0x43c5fd4f, 0x4eff1e30, 0x3df493f7, 0xf41b0164, 0x6fff2ea7, + 0x024d27fd, 0x27242560, 0x1540023d, 0xa7102723, 0xfee0674e, 0x3ea7411d, + 0x1dfee066, 0x1d420331, 0x1d320341, 0x1d420331, 0x1d320341, 0x1d420331, + 0x1d320341, 0x1d420331, 0x1d320341, 0x1d420331, 0x1d320341, 0x93202731, + 0x04aeb7f3, 0xae92f093, 0x95fe9304, 0xfc9304ae, 0x9304ae98, 0x04ae9bfb, + 0xaea6fa93, 0xa9f99304, 0xf89304ae, 0x9304aeac, 0x04aeaff7, 0x02153215, + 0xc215e215, 0xa215b215, 0x82159215, 0x42037215, 0x3205411d, 0xe2050205, + 0xb205c205, 0x9205a205, 0x72058205, 0x3ea74103, 0x1dfee059, 0x03311d41, + 0xa7411d42, 0xfdeb3f3e, 0x4f273205, 0x11030000, 0xf29b3415, 0x0538030e, + 0x004f2732, 0x150b0400, 0x0ef29b34, 0xe4ef1ea7, 0x1f4c27fd, 0x12151405, + 0x00000f27, 0x1035a000, 0xe4df3ea7, 0x054103fd, 0xa7321534, 0xfdeb671e, + 0x12053035, 0x00004f27, 0x14151482, 0x930ef29b, 0x04aefbfe, 0xec033e07, + 0xe32e0797, 0x2ce37f3c, 0x97ec237f, 0x3c033419, 0xf932c280, 0x93262c27, + 0x04aedbf3, 0x42071027, 0x21233105, 0xf4b83403, 0xe01f4ea7, 0xabe455fe, + 0xeb4127f3, 0xff3ea7f4, 0x3235ebff, 0x2ea74327, 0xd5fdefff, 0xc102a024, + 0x48dca024, 0xff1ea7fb, 0x14c1fdef, 0x004ddca0, 0x4427f908, 0x02a014d5, + 0x02a414d5, 0x13d53027, 0x2ea706a0, 0x05fdeb5f, 0x004f2723, 0x150f0300, + 0x0ef39b24, 0xe56f2ea7, 0x284c27fd, 0x23152405, 0x00004f27, 0x33272000, + 0x13d52435, 0x3ea702a8, 0xc1fdefff, 0x48dca834, 0xff1ea7fb, 0x14c1fdef, + 0x004ddca8, 0x4427f908, 0x02a814d5, 0x02ac14d5, 0x13d53027, 0x2ea706a4, + 0x05fdeb57, 0x004f2723, 0x150f8300, 0x0ef39b24, 0xe54f2ea7, 0x294c27fd, + 0x23152405, 0x00004f27, 0x33272000, 0x13d52435, 0x3ea702b0, 0xc1fdefff, + 0x48dcb034, 0xff1ea7fb, 0x14c1fdef, 0x004ddcb0, 0x4427f908, 0x02b014d5, + 0x02b414d5, 0x13d53027, 0x2ea706a8, 0x05fdeb4f, 0x004f2723, 0x15100300, + 0x0ef39b24, 0xe52f2ea7, 0x2a4c27fd, 0x23152405, 0x00004f27, 0x33272000, + 0x13d52435, 0x3ea702b8, 0xc1fdefff, 0x48dcb834, 0xff2ea7fb, 0x24c1fdef, + 0x004ddcb8, 0x3427f908, 0x02b823d5, 0x02bc23d5, 0x24d54027, 0x2ea706ac, + 0x05fdeb47, 0x003f2724, 0x15108300, 0x0ef49b23, 0xe50f1ea7, 0x2b3c27fd, + 0x14151305, 0x00003f27, 0x13352000, 0xaf9af293, 0x93302704, 0x04ad5ff0, + 0xc5e8e48d, 0xe38d9024, 0x352445f6, 0x3c24c524, 0xc53824c5, 0x24c56824, + 0x9424c564, 0x8df4e48d, 0xe48dc0e4, 0xc4e48dc2, 0x8dc6e48d, 0xe48dc8e4, + 0xe2e48de0, 0x0ee4e48d, 0xd8129ef7, 0xa3fa4e03, 0x49f493f6, 0xf41b0162, + 0x5fff3ea7, 0x024d27fd, 0xddfa9382, 0x342504ce, 0xac032a07, 0x07341597, + 0x7f2ce33a, 0x237f3ce3, 0x241997ac, 0xc2802c03, 0xdc27f923, 0xb9f39326, + 0x202704ce, 0x32054d07, 0x3403d123, 0x3d27f4b8, 0x4ea70104, 0x25fdbf3f, + 0x0f2ea743, 0x2d05fdeb, 0x00004f27, 0x24151542, 0xce1ef193, 0x21f09304, + 0xfe9304ce, 0x9304ce24, 0x04ce27fc, 0xce2afb93, 0x133ea704, 0xa355fee0, + 0x0d151d15, 0xcd15ed15, 0x1d05bd15, 0xed050d05, 0xbd05cd05, 0xf49b4027, + 0x27f3ab0e, 0xa7f2eb21, 0xfddfff4e, 0xc5c44dc5, 0x3d27c84d, 0x43c52000, + 0x5c42d5cc, 0xad402701, 0x070118a4, 0xff3ea74f, 0x4c03e7ff, 0xd53d3520, + 0x270150a4, 0x934f0730, 0x04ce1ff0, 0x8db1a39d, 0xa4d5caad, 0xadd50154, + 0xadd502c0, 0xadad033c, 0xadad011a, 0xadad011c, 0xadad011e, 0xadad0120, + 0xadad0140, 0xadad0142, 0xadad0144, 0xad8d0148, 0xbaad8dbc, 0x8db2ad8d, + 0xad8db4ad, 0xb8ad8db6, 0x8dbead8d, 0xad8dc0ad, 0xc4ad8dc2, 0xbec8ad8d, + 0x8303fc45, 0x1efa8ef6, 0xa7fc4eff, 0xfd9fff4e, 0xc0074d01, 0xbe12d2d8, + 0xa701809e, 0xfdcfff3e, 0x34c54027, 0x6034c540, 0x0710dc58, 0x9efc0e0c, + 0x8e000893, 0xa7fa4efc, 0xffffffae, 0x9fffbea7, 0xffdea7fd, 0xcea7feff, + 0xd1fdcfff, 0x260a14a4, 0xa3b41145, 0x061e104c, 0x4ce3b411, 0xb9b41510, + 0x3c1ffdd4, 0x0027104c, 0xd4d1331e, 0x42c40148, 0x09d49920, 0x4383d311, + 0x44332487, 0x3387422b, 0x0d1833f1, 0x44f1ff00, 0xff000054, 0x009643e2, + 0x01772cbe, 0x04964127, 0x04074027, 0x44f9d411, 0xff000a08, 0x423c4f4b, + 0x1ffdd4b9, 0xb9104c3c, 0xd81ffdd4, 0x9914204c, 0x438309d4, 0x44333487, + 0x44f9432b, 0xff000050, 0x0ff64f96, 0xd311ff7f, 0x0a0834f9, 0x41a3ff00, + 0x0a0834fd, 0x2127ff00, 0xc568c2c5, 0xf1ab40c2, 0xd4bd4127, 0x30271ff8, + 0xc50ef39b, 0xf39b68c2, 0x8b00070e, 0xbd4027ff, 0x9b1ff8d4, 0xf1eb0ef3, + 0x1140c0c5, 0x60c0c5d3, 0x0a0834f9, 0x41e3ff00, 0x0a0834fd, 0xc2c5ff00, + 0xff295e68, 0x4107fa8e, 0x43d840ab, 0x01151e0f, 0x05242313, 0x03140303, + 0x07071e04, 0x03425342, 0x86f45841, 0x03141925, 0x03041d11, 0x0bf2a801, + 0x07f94efe, 0x07b107a0, 0x409c27c2, 0xdc071c1e, 0x0741cc10, 0xbe1d07d9, + 0x0701753f, 0xbe1d070a, 0x2b017521, 0x0bbd0bcd, 0x760b07ad, 0x07f98ec0, + 0x33453340, 0xf9402b03, 0x00018c40, 0x0f0c83ff, 0x0e230333, 0x9effff7e, + 0x9303d14d, 0x0419bff2, 0xfeb33ea7, 0x304c27fe, 0x34033101, 0x24032105, + 0x4027f4a8, 0x0b0ef49b, 0xb32ea7fe, 0xf393fefe, 0x2704199c, 0x3101304c, + 0x21053403, 0xf4a82403, 0xf49b4027, 0xa7fe0b0e, 0xfdebff3e, 0x34054027, + 0x00004f27, 0x34151282, 0xf49b4027, 0x4efe0b0e, 0xffbea7f8, 0x8007fdeb, + 0x0027c027, 0x9f27a107, 0x12820000, 0x01750bbe, 0xb915bc05, 0xf49b4027, + 0xff3ea70e, 0x4427fde7, 0x3a153405, 0xe7ef4ea7, 0x053c35fd, 0x274a1548, + 0xbe4c3500, 0x050174e4, 0x27b915bc, 0x0ef49b40, 0x0027f88e, 0xfd4efe0b, + 0xffff4ea7, 0x094499fe, 0xffff1ea7, 0x034383ff, 0xd1348741, 0x33062012, + 0xf1432b44, 0x00004843, 0x2724c6ff, 0xd10d1e40, 0x27062c14, 0x27430a21, + 0x07420720, 0xabdf6bd4, 0x273027fe, 0xc0151e25, 0x34f91232, 0xff011ff8, + 0x14f146a6, 0xff023000, 0x030b44d8, 0x28138731, 0x1e0127f2, 0x8b002703, + 0x8efeeb0d, 0x6bfe4efd, 0xbe05960f, 0x0e0021e8, 0x15e49efe, 0x4efe8e00, + 0x070419fd, 0xc61f6bd0, 0xbe18d645, 0x0e001619, 0x217d9efd, 0x9316d600, + 0x0174a8f3, 0x6a86f493, 0xbe430504, 0xbe000938, 0x270017eb, 0x8ed41d41, + 0x07fd4efd, 0x563f6bd1, 0xbe3bc626, 0xbe0018af, 0x27002211, 0x1e402701, + 0x2c22c42b, 0x4f4b0419, 0x00274220, 0xd6befd8e, 0xf4930021, 0xd5046b24, + 0x93021440, 0x01745cf3, 0x6a3af493, 0x27430504, 0x1d422701, 0x27fd8ed4, + 0x4efd8e00, 0x01f493fc, 0x4e69046b, 0xdea74329, 0x09fee043, 0x08d19942, + 0xc007e30b, 0x4049e22b, 0xc1ce4221, 0x09d49910, 0x490a42ce, 0x69e42ed4, + 0x1904ced4, 0x4fff4ea7, 0xa74311fd, 0xfee0434e, 0x4c9d4305, 0x09429d08, + 0x406d4e4d, 0xf94efc8e, 0xbc23b007, 0x0b414714, 0x0742094b, 0x99d10730, + 0x24c62409, 0x241e0107, 0x41034107, 0x0107e447, 0x0b1c1c27, 0x101d2beb, + 0x11271d4c, 0xf1f00103, 0x1e302705, 0x03e20953, 0x072266e2, 0x0c4c2340, + 0x3301493b, 0x1047c487, 0x21234b07, 0xc30b410b, 0x3287420d, 0x3c0b2007, + 0xa4271223, 0x1b0b2d2b, 0x3301a93b, 0x0d0a2103, 0xffffdfc4, 0x270bffff, + 0x27071e21, 0x05142d41, 0x270123ce, 0x2be03be1, 0x23e30bca, 0x07f25812, + 0x4ef98e03, 0xc5f6a3f5, 0x029954f0, 0x3b312724, 0x50f2c532, 0x20074f07, + 0xc54cf3c5, 0x2c2358f1, 0x40f4c514, 0xc1103c27, 0x402740f1, 0x14031405, + 0x8840f1c5, 0xc17207f3, 0x10274cf2, 0x3a272123, 0x2748f1c5, 0xf2c50dac, + 0x64f3c560, 0x89187889, 0x82f01a75, 0xf4c100ea, 0xe345ee4c, 0x50f1c100, + 0x3a074a07, 0x230d4c23, 0x413b0c3c, 0xf1c1313b, 0x01048754, 0x23350b12, + 0x0bc387a1, 0x07312702, 0x273a3bb8, 0x03c20b40, 0x079507a1, 0x036027d0, + 0x5cf3c5b1, 0x1e44f4c5, 0x070e0151, 0x5b3e071f, 0x0f3c833a, 0x410b4387, + 0x2b264201, 0x8b5cf4c1, 0x07450642, 0x1e2e0712, 0xc11e0703, 0x420b5cf4, + 0xc11b41ce, 0xc20544f4, 0x33874203, 0x320b2f07, 0x0344f4c5, 0x034027c4, + 0x1e340591, 0x03de0509, 0x05031ed4, 0x0304034e, 0x05fbf061, 0x211e3f07, + 0xca60f2c1, 0x4607a492, 0x41033807, 0x840a362b, 0x31278496, 0x04030401, + 0xd403d405, 0xdd1ef3a8, 0x45463401, 0x4027d405, 0x3405d403, 0x0340f2c1, + 0xed32ce34, 0xce58f3c1, 0x41270aa3, 0x4027950e, 0xc148f4c5, 0x798d44f4, + 0x8d481b1a, 0xf1c11874, 0x23a10364, 0x64f1c511, 0x1ff67203, 0xf0c1ff00, + 0x8ef68348, 0xff3ea7f5, 0x34d1ffff, 0x400b0608, 0x060834d5, 0xfe0bfe0b, + 0xffff4ea7, 0x0042b9ff, 0xfc40c101, 0x40073207, 0x030f4c83, 0x27121e31, + 0xfd010340, 0x00007c14, 0x234007ff, 0x0f4c8321, 0x13331407, 0x1e03f3f0, + 0x7e14f909, 0x06ff0000, 0xff4ea740, 0x42bdffff, 0x40c50100, 0x4efe0bfc, + 0x3ec007fc, 0x0e4127b4, 0x0740270c, 0x4efc8e04, 0x03c007fc, 0xffffffcf, + 0x00cf8303, 0x07fc0000, 0x2720271c, 0x25be163c, 0x4ea700f8, 0x27fffa23, + 0x404cc530, 0xc53c43c5, 0xfc8e3840, 0xd007fa4e, 0x4714dc23, 0x03cd0bc2, + 0xdb9914dc, 0x27ce0924, 0x074b3b41, 0x0b4223ae, 0x32d001a3, 0x8e0127a4, + 0x0c2c23fa, 0xe20b2b3b, 0x040b4e87, 0x1cbe2387, 0x412700eb, 0xca0d0027, + 0x8e31d49d, 0x99f74efa, 0x41272403, 0xf063433b, 0x0a017407, 0xf105d007, + 0x7333b107, 0xc0078487, 0xc2499027, 0x1a070b07, 0x91032287, 0x00eae6be, + 0xb70ba80b, 0x9cc4c203, 0xd499e910, 0x07de0124, 0x9d4103c4, 0xf40124d4, + 0xd405c603, 0x1f070d07, 0x31272c07, 0x6d7efe05, 0xb10596ff, 0x3b4127d3, + 0xb5340b4c, 0x8ef043d3, 0x93fa4ef7, 0x01234bf0, 0x00f387be, 0x234bf093, + 0xf37ebe01, 0x1fbea700, 0xdc27fffa, 0x09a0270c, 0x071d07b2, 0x93cd3bc2, + 0x012355f0, 0xb2033c07, 0x00f35fbe, 0xd103ac0b, 0x0600bfc4, 0xa7e1ff00, + 0xfffa23ce, 0x9332c189, 0x01235af0, 0x00f343be, 0xc3b1c1a1, 0x4a072107, + 0x2361f093, 0x0e2a2b01, 0xf32e9efa, 0xc1f64e00, 0x0cc13808, 0x240e993c, + 0xb107d007, 0x90277027, 0x270c6c27, 0x06071c3c, 0x031e362b, 0x22270103, + 0x203b4c07, 0x2c0b405b, 0xf3f0415c, 0xc2041e03, 0x4007eb2b, 0x470c4c23, + 0x492d0b24, 0x0b4e3b21, 0x87d30141, 0x07430b44, 0x273c0b38, 0x034305a1, + 0x074a0711, 0x4d403b3e, 0x0b370321, 0x27030ac4, 0x07190271, 0x3b4a0791, + 0xda42234e, 0x76661494, 0x0d071307, 0x07fc097e, 0x7e0d0710, 0xde99feb9, + 0x90cbca24, 0xd3c1d4a1, 0x3cdbc53c, 0x4b0b432b, 0xf68ed4a5, 0x02c1fa4e, + 0x4003c13c, 0x04a1d107, 0x0fffdd03, 0x0fffdde3, 0xa007322b, 0x00c1d42b, + 0x07376638, 0x07d302bd, 0x0bcb07b3, 0xbe1c07c2, 0x0700f610, 0x7e1c070a, + 0xdb2bff35, 0x0d07d606, 0x07fdf67e, 0x0e1d070a, 0xff235efa, 0xfa4efa8e, + 0x07310499, 0x07a207d0, 0xc6c107b3, 0xfc1d7e46, 0x0d070526, 0x877e1c07, + 0x9d4027fb, 0x0fd631d4, 0x0bb2c05e, 0xb07e0a07, 0xc00e66fd, 0x4c474fb3, + 0x99144c23, 0x4d0b24d2, 0x323b3127, 0x31234409, 0x3c073422, 0x4207111e, + 0xc4424703, 0x31033c07, 0x3207051e, 0x41273803, 0xd1a1433b, 0x31233407, + 0x13eb130b, 0x0d07140b, 0x89ff4b7e, 0x0d0732d4, 0x1c074103, 0x0e32d48d, + 0xfb245efa, 0xfa8e0027, 0xd207fa4e, 0xb107a007, 0x3d072a46, 0x2b071a07, + 0xfa230ea7, 0xfd7e7eff, 0xcea707a6, 0x99fffa23, 0x222724c0, 0x07031027, + 0x018b4fbe, 0x0c071007, 0x1efda47e, 0x9b4027d6, 0xfa8e0ef4, 0x0c274007, + 0x03031e0c, 0x3b212701, 0xf824ca20, 0xffff3ea7, 0x0834d1ff, 0x0b102706, + 0x0834d542, 0x9e222706, 0x4e018b18, 0x9bb007fb, 0xf093121f, 0xbe0121be, + 0x1100f158, 0xcbf093b1, 0x4dbe0121, 0xb12100f1, 0x21d2f093, 0xf142be01, + 0x93b10100, 0x0121d9f0, 0x00f137be, 0xdb07c027, 0x1c07d231, 0x21daf093, + 0xbec10301, 0x0300f124, 0x0fccc4d4, 0x0e0b07ec, 0xf6f59efb, 0xa80499ff, + 0x4ea74626, 0xc5fff5d7, 0x41033804, 0x0b3404c5, 0xff4ea7fe, 0x4411feff, + 0xf5e04e23, 0x3404c5ff, 0x04c54823, 0xa7fe0b38, 0xf9ffff3e, 0x11112f27, + 0x4d271111, 0x32050100, 0xf4c83403, 0xf49b4027, 0x6af49b0e, 0x9b6bf49b, + 0xf49b62f4, 0x9d302763, 0x039da904, 0x5004c54c, 0xc55404c5, 0x04c59004, + 0x4804c544, 0xc5a004c5, 0x04c53c04, 0x4d049d40, 0x9d8b049d, 0x049d8c04, + 0xa7fe0b8a, 0xfdebc73e, 0x34054027, 0x00004f27, 0x34150704, 0xf49b4027, + 0x6bf29b0e, 0x9b62f29b, 0xf29b6af2, 0x1c1ca363, 0x0b60f19b, 0x4efe0bfe, + 0x9df293fc, 0x2ec10463, 0x4023c150, 0x4307e333, 0x40084e2b, 0x2d99e307, + 0x30249931, 0x4d1bc207, 0x2f6b2407, 0x0431171e, 0x21070341, 0x4333430b, + 0x2f6b4e1b, 0x0111404c, 0xfc8e0001, 0x41834207, 0x05330407, 0x042b4333, + 0x0f031207, 0x00049488, 0xd2ce1103, 0xd0c0c1d2, 0x8ed4c1c1, 0x41f393fc, + 0x34990463, 0x230f6baa, 0xb0309d42, 0x4c144f6b, 0xc500270f, 0xfe0bbc30, + 0x6326f493, 0xcc40c104, 0xfa4efe0b, 0x05c60f6b, 0xa7044f9b, 0xf9f7ff3e, + 0x0b1e410b, 0xa7043f9b, 0xf9f7ff4e, 0xd307310b, 0xad27e407, 0xbf271800, + 0x07090a00, 0x1d27c427, 0x0b070600, 0x20070f6b, 0x24032333, 0xf3e8031e, + 0x100024f1, 0x3327ff02, 0x53184c33, 0x44c01d4c, 0x334007ee, 0x004ef545, + 0xf5ff0218, 0x02180441, 0x233027ff, 0xfde8004e, 0x4e034335, 0xf5fde800, + 0x0218104d, 0x1441f5ff, 0x23ff0218, 0xfde7f04e, 0xa12b4335, 0x4a07c244, + 0x071ec127, 0x4107c123, 0xe10bc586, 0xb853d10b, 0x971e1407, 0x0a000f27, + 0x14270709, 0x2f6b2007, 0x24032333, 0xf3e8031e, 0x100024f1, 0x3327ff02, + 0xfc6a4ddc, 0x100853f2, 0x4efa8ef1, 0x010d28fb, 0x000d2720, 0x0c051e20, + 0x07070300, 0x07d373d0, 0x93b823bd, 0x046243f4, 0x0fab0b07, 0x33b441c1, + 0x27c40708, 0xc47c1ee0, 0x19d62fe4, 0xc8633f9b, 0xc49927b1, 0x9b40abbc, + 0x4f9b6df4, 0x63ef9b6d, 0xe373e32b, 0x4f9be403, 0xbcc3c161, 0x4486438b, + 0xed3a1127, 0x641e0427, 0xc1642f9b, 0x2c53bcc3, 0x0d32d818, 0x440a21c4, + 0x644f9b12, 0x151e4827, 0x16103cd8, 0x4c234207, 0x0e44d480, 0x9b0b12c4, + 0x4627644f, 0x1e65f49b, 0x403c1821, 0x4f9b17a6, 0x9b482764, 0x24c665f4, + 0x051e1027, 0x11031214, 0xeddae103, 0x1e032783, 0x614f9b13, 0x61aaf293, + 0xbc23c104, 0x438b0027, 0x93cc24c5, 0x04619bf4, 0x8eb441c5, 0x07fc4efb, + 0x272f6bc0, 0x0000ff4f, 0x61f49b40, 0x3e7e0207, 0x934027fe, 0x04617bfd, + 0xc5c8d4c5, 0xc486c4d4, 0xd4c1ff1e, 0x004dd494, 0x46361980, 0x80000d27, + 0x20271007, 0x00f2a2be, 0x2798d0c5, 0xc580004d, 0xfc8e94d4, 0xdd27fd4e, + 0xf0930600, 0x7e046144, 0x3ea7fcf5, 0x27f9f7ff, 0x054d0720, 0x03d12332, + 0x93f4b834, 0x04612bf0, 0x93fd067e, 0x046123f0, 0x20271027, 0x93fd4e7e, + 0x046117f4, 0x9d7f3ca7, 0x3c27b043, 0xac43c5f7, 0x4dc530a7, 0xaa439d9c, + 0xc5bc4dc5, 0x4dc5c04d, 0x4efd8eb8, 0xe9f493fe, 0x4ce3040f, 0x9b071e7f, + 0x4c0308f4, 0x804fd080, 0xf4000463, 0x60daf393, 0x8c329904, 0x078a3499, + 0x9d42ab03, 0x7cbe8c34, 0x0027016c, 0x0fbaf193, 0xfda07e04, 0x93604f9b, + 0x040faff3, 0x200034d5, 0xd5634f9b, 0x9b200434, 0x34d5624f, 0xfe8e2008, + 0x05634f9b, 0x99f49304, 0x43c10460, 0x9903153c, 0x039db043, 0xaa439908, + 0x9909039d, 0x039dac43, 0x8b44990a, 0x0b0b049d, 0x634f9bfe, 0x6072f393, + 0xc5412304, 0xfe0b4034, 0x0399fd4e, 0x83d0078a, 0x2734d637, 0x99fd8e00, + 0x4fa38b04, 0xffffffa0, 0x049d43ab, 0x630f9b8b, 0xbe40d0c5, 0x070186e7, + 0x6bbbbe0d, 0x8bd49901, 0x46180027, 0xfd8e0127, 0xf293fe4e, 0xc104602c, + 0x4f9b4023, 0x1134ce63, 0x388b2499, 0x4ca3104c, 0x8b249d20, 0x016c75be, + 0x600ef093, 0x8c049904, 0xab8a0399, 0x8a049d43, 0x049d4027, 0x623f9b8c, + 0xce634f9b, 0x893e0943, 0x022704c6, 0xf093fe8e, 0x99045fe8, 0x4c838b04, + 0x104c24f0, 0xfe8e0027, 0x8b9c04c1, 0x4efe8ef4, 0xff4ea7fb, 0x0cc1ffff, + 0x2a4bb938, 0x27d0070a, 0x009d5e00, 0xd0994307, 0x0f4c8331, 0x0183e407, + 0xe3334533, 0x2007e40b, 0xee233007, 0x33fff5d4, 0x2b353323, 0x0be17132, + 0x81e2613d, 0x413135e4, 0x07420be1, 0x83342521, 0x3127802c, 0x30272496, + 0x26332307, 0x27a31138, 0x1c38151e, 0x1e23a310, 0x001d380e, 0x1e21a304, + 0xa3100c06, 0x4007802c, 0x03334533, 0x4d0b402b, 0xc114429d, 0x403154d1, + 0xc3194145, 0xc115439d, 0xe12154d3, 0x300be231, 0x42154105, 0x1954d3c5, + 0x030127c4, 0x99c41d41, 0xd39931d4, 0x03410330, 0x31d49d31, 0x9930d39d, + 0x42d430d4, 0x07c3190c, 0xfc4b2b43, 0xff56804c, 0xfa4efb8e, 0x99310499, + 0x0bc13003, 0x07432b34, 0x6bd107e4, 0x1ea027ef, 0x41313141, 0x33210b32, + 0x2b420723, 0x9941284d, 0x4cd81434, 0x34994620, 0x104cdc14, 0x0e44d817, + 0xd24e15b6, 0x1b320499, 0x804cd84e, 0x03b4192f, 0x99b41d41, 0xec073004, + 0xef6b4123, 0x2730049d, 0x834e07a1, 0x33340741, 0x2b433335, 0x31049934, + 0x300bce07, 0xe4cec103, 0x41051ea9, 0xc1041e34, 0x04c55404, 0xa7a7e650, + 0xffffff3e, 0x34bd4127, 0x33990635, 0x9b40270f, 0x41270ef4, 0x34f53387, + 0xff02b040, 0x99310499, 0x03993002, 0x6b422b32, 0x18342b4f, 0x049d803c, + 0x4efa8e32, 0x59f093fd, 0x08be045e, 0xfd93016a, 0xc1045e50, 0x0d0754d1, + 0x13331103, 0x07ff357e, 0xfe6d7e0d, 0xf09301f6, 0x7e045e38, 0xd1c1fa13, + 0x2df093a4, 0x2027045e, 0x585efd0e, 0x07fb4efa, 0x070107b0, 0x84bdbec1, + 0x070b0701, 0xff047e1c, 0xfb0e0b07, 0x4efe3a5e, 0x890499f8, 0x43831e21, + 0x94339407, 0x942b4487, 0xb9071d31, 0xb00be30b, 0x2b58bec5, 0x07c007d3, + 0x6b4307a1, 0x01df102f, 0x27010000, 0x000000df, 0x60b29d01, 0x315cbdc5, + 0x274d0ba3, 0x27430e80, 0x1f2ea781, 0xa301fde7, 0x2e05a411, 0xc561b89d, + 0xc4c5d0c3, 0x272d15d4, 0xa72e35e0, 0xfde70f3e, 0x051a4c27, 0x993d1534, + 0x3e3561b4, 0x98be44c6, 0xc4990168, 0x88c39989, 0x2c032907, 0x030c0758, + 0x0b310341, 0x89c49d02, 0x8e88c39d, 0x93fc4ef8, 0x040c6ff4, 0x1e7f4ce3, + 0x0cf49b07, 0xd0804c03, 0x0463804f, 0x4027f400, 0x930ef49b, 0x045d5bf0, + 0x27f90c7e, 0x49f19301, 0x2f7e040c, 0x41fc93fa, 0xf093040c, 0xd1045d44, + 0xd12000c1, 0x072004c2, 0xf9697ed0, 0x588ad499, 0x04c3d147, 0x08c4d120, + 0x2834ce20, 0xf630d499, 0x7e0d0744, 0xc1d1fd4b, 0xd4c12004, 0x4cd29940, + 0x2432411b, 0x20274008, 0x5d06f093, 0x9efc0e04, 0x8e016a2e, 0x9bfc4efc, + 0xf09363cf, 0xc1045cf4, 0x20273c01, 0x016a19be, 0x27634f9b, 0x274c4e00, + 0x9b482701, 0xfc8e65f4, 0xd007fd4e, 0x3f9b0401, 0xc8432b63, 0x03997240, + 0x53312409, 0x1e03ddf2, 0x5332240d, 0x1e048cf2, 0x3cf25305, 0xb1f49302, + 0x439d045c, 0x9c42c5aa, 0x7e08d099, 0xd099f961, 0x68acbe0a, 0x60f09b01, + 0x4cbed001, 0x02c0016b, 0x8df393f8, 0x3499045c, 0xd8d2118a, 0x33c10e41, + 0x33420790, 0x08432b33, 0x93230741, 0x045c73f4, 0x993c42c5, 0x30270bdd, + 0x9d8b4d9d, 0x0f9b8c43, 0x9efd0e63, 0x8e0182ff, 0x07fd4efd, 0x51f093d0, + 0x7c7e045c, 0x49f493fc, 0x43c1045c, 0x4c429940, 0x432b4d07, 0x40082432, + 0x1d072027, 0x5c32f093, 0x9efd0e04, 0x9301695a, 0x045c27f4, 0x1e4040c1, + 0x99f54ec9, 0x03993104, 0x9802c130, 0xc407432b, 0xd007f0a3, 0xb207cf6b, + 0x90278027, 0xa0275027, 0xe7ff6ea7, 0xef7ea7fd, 0xf205fde7, 0x9f5ef115, + 0x83ec0700, 0x074e07e1, 0x3343333e, 0x0b342b35, 0x4130313d, 0x0bf11134, + 0x33240740, 0x03212b23, 0x02237327, 0x21200720, 0x07a4d633, 0x07522b54, + 0x94d4c11a, 0x41ca120b, 0x2b030b6d, 0x270bce02, 0x231e24d6, 0x3ea7f3e8, + 0x11fdefff, 0x33332734, 0x4c53184c, 0xed44c01d, 0x62156005, 0x64354027, + 0x72157b05, 0x3e077435, 0xe3333533, 0x3d0b3e2b, 0x07143099, 0x200ca348, + 0x309d49ab, 0x0144d614, 0x07391138, 0x66478340, 0xa3c40745, 0xa10710cc, + 0x4c071d1e, 0xc4074103, 0xcf6bb20b, 0xd499a107, 0x5ec4ee31, 0x10cc27ff, + 0xf3e8051e, 0x2ea7061e, 0x11fdefff, 0xdc332724, 0xeffc6a4d, 0x0d07f111, + 0x99fc217e, 0xd39931d4, 0x07432b30, 0x9d2f6b24, 0xa4d632d2, 0x3e1e0027, + 0x21832123, 0x12074207, 0x15334333, 0x1d0b142b, 0x149d4027, 0x141c9d15, + 0x1a35f401, 0x18051545, 0x14251915, 0xc530d499, 0x410390d5, 0xc530d49d, + 0x0d0750d5, 0xd87e3027, 0x330011fc, 0x8ef08303, 0xc1f84ef5, 0xc007440d, + 0xa2079107, 0x8027d7e3, 0x78be0c07, 0x0c070166, 0x9e7e1d07, 0x8ac499fe, + 0x4576b007, 0xe07e0c07, 0x964127fa, 0x22402704, 0xd68b07b8, 0xb4f6db4f, + 0x3350cdc1, 0xbe0c07d3, 0x0b01673e, 0x071b07b0, 0x6625be0d, 0x2b490701, + 0x27a4124d, 0x070907a0, 0x9ef80e1a, 0x4e01659d, 0x75f493fa, 0x4399045a, + 0x3c0ac14c, 0x274d439d, 0x9dc00730, 0xd4074c43, 0x9940d4c1, 0x4a1b4cd3, + 0x20273432, 0x2307400c, 0x1a070d07, 0x016779be, 0x0344b007, 0xc5634f9b, + 0x3a1e40d4, 0xbe630f9b, 0xc10180db, 0x0d0744d1, 0x99fb217e, 0x41c4aad4, + 0x634f9b1b, 0x2b40d3c1, 0x014f5043, 0x9b700000, 0x4f03634f, 0xf0000000, + 0x0740d4c5, 0x7eb4240d, 0x0fd6fa37, 0x01fd93a4, 0xd499045a, 0x4cd49d4d, + 0x010cb4e0, 0x991bb2c4, 0xc4998bc3, 0x203ca38a, 0x34ab4783, 0xc39d0c07, + 0x655bbe8b, 0x8e022701, 0xaac399fa, 0x274dd49d, 0x9d002740, 0xb3474cd4, + 0x016835be, 0xbe630f9b, 0x07018063, 0x6925be0b, 0x4dd49901, 0xea4cd49d, + 0x9b009e0b, 0x482764df, 0x9b18dc53, 0xb9d065f4, 0x643f9b2f, 0x5365f49b, + 0x3833183c, 0xbcd0d3ab, 0x4f9b1e11, 0x9b382764, 0x2f9b65f3, 0x65f39b64, + 0x33184c53, 0x2ee3104c, 0xabffffff, 0x27d4ab42, 0x8bc49d40, 0x41234d07, + 0xffff4fd4, 0x9b2b0fff, 0x0407634f, 0xbe40c4c5, 0xc1017ffb, 0xd33340c4, + 0xc0c1d40b, 0x3ccdc5c0, 0x0167b5be, 0x278bc499, 0x104ca300, 0x8e8bc49d, + 0x634f9bfa, 0x9340c4c5, 0x04592ff4, 0x9b4042c1, 0x1f9b624f, 0x8bc39963, + 0x2f03412b, 0x7fffff00, 0x3ca3242b, 0x991e1e40, 0x46d88ac4, 0x632f9b22, + 0x998bc399, 0x07e38ac4, 0x83203ca3, 0x40c2c547, 0x200b34ab, 0xc39d0227, + 0x3cc2c58b, 0x0427fa8e, 0xfc4efa8e, 0x58e2f493, 0x4c439904, 0x439dd007, + 0x9d30274d, 0x00274c43, 0x01673dbe, 0xbe630f9b, 0x27017f6b, 0xbe20000d, + 0x3601682b, 0x8ad49906, 0x277446dc, 0x9dc42740, 0x6f1e8bd4, 0x07f64e7e, + 0xd303c0c0, 0x991102c4, 0x0d078ad4, 0xd49d4783, 0x6413be8b, 0x76541e01, + 0x634f9b0e, 0xc58ad399, 0x315840d4, 0x3390d4c1, 0x93191e43, 0x04587bf4, + 0x9b4044c1, 0x2f9b623f, 0x03322b63, 0xffff004f, 0xc5432b7f, 0xd0c13cd4, + 0x104c27c0, 0xbe8bd49d, 0xc10166c6, 0x4fa3bcd4, 0x40000000, 0x2761f49b, + 0xb4d4c540, 0xc227051e, 0xf4939e1e, 0x9904583c, 0x0c074d43, 0x8e4c439d, + 0x93fa4efc, 0x04582bf3, 0x074c3499, 0x4d349dd0, 0x349d4027, 0x8b04994c, + 0x402c4f4b, 0x711eb427, 0xb027a307, 0xc18adc99, 0x4f9b3ca3, 0x0e34ce63, + 0x073cd1c1, 0xbe20270d, 0x07016526, 0x630f9bb0, 0x017e92be, 0x0744d1c1, + 0xf8d87e0d, 0xb4440d07, 0xa6f80e7e, 0x36ce1e0b, 0x3ca4c1c6, 0x2b633f9b, + 0x99412c43, 0xc1a38adc, 0x078bd499, 0xa337833c, 0x43ab204c, 0x078bd49d, + 0x6333be0d, 0x27c61801, 0x8bd499b2, 0xff804fa3, 0xd49dffff, 0x6db2c08b, + 0x4b8bd499, 0x5a40cc4f, 0x00be0127, 0xd4990167, 0x2744d630, 0x9b4b1eb4, + 0xd399634f, 0x40d4c58a, 0xd4c13158, 0x1e433390, 0x75f49319, 0x44c10457, + 0x623f9b40, 0x2b632f9b, 0x004f0332, 0x2b7fffff, 0x3cd4c543, 0x9d104c27, + 0x06b68bd4, 0xe97e0d07, 0xc105c6f6, 0x0d0744d1, 0x377eb227, 0x27031ef8, + 0x3df493b0, 0x43990457, 0x4c439d4d, 0xfa8e0b07, 0xbf9bfa4e, 0x29fa9363, + 0xb7830457, 0x9b3cacc1, 0xdc27634f, 0x2bc42b1f, 0x624f9bdb, 0x2b633f9b, + 0x18d4d243, 0x74be0d07, 0xd0d20166, 0x3ca4c10f, 0x2b633f9b, 0x27403243, + 0x27031ea4, 0xbe0027a0, 0x9b01655e, 0xf49364df, 0xc10456e8, 0x4fbec040, + 0xc12c0165, 0xfa8e0127, 0x2f032d07, 0x80000000, 0x0c20cccc, 0x2b203c27, + 0x3b40a73c, 0x03248b43, 0x5b4207b1, 0x2744c64b, 0x27fa8e00, 0x27a48601, + 0x4efa8e00, 0x07b107fb, 0xc0bf6bd0, 0x245f200c, 0xb7f45301, 0x240d1efd, + 0x66f45302, 0x53051efe, 0x93fc16f4, 0x04568bfc, 0xc5b0c099, 0xcd9d9cc4, + 0xf33b7eaa, 0xc4c54027, 0x27d2203c, 0x041e314c, 0x9d7f4ca7, 0xb6468bc4, + 0x5666f493, 0xac40c104, 0xa30f0c83, 0x041e100c, 0xbe180c27, 0x93016262, + 0x04564ff4, 0x0ec040c1, 0x64b49efb, 0xa7fb8e01, 0xfdefff2e, 0xf3e8031e, + 0x275c24c1, 0x6a4ddc33, 0xfe0bf5fc, 0x5702f293, 0x99412704, 0x24bd1923, + 0x3646011b, 0x23892469, 0x27342b20, 0x9d240d40, 0x232d1924, 0x3127fe0b, + 0x56def493, 0x9343bd04, 0x4efe0b02, 0x234107fd, 0x16048d41, 0x43834107, + 0x3427d107, 0x2007d253, 0x342be427, 0x31274410, 0x019c21ad, 0x1d2be123, + 0xf3982223, 0x4d034e47, 0x2d070194, 0x400b3e07, 0x31032f0b, 0x412d051e, + 0x4223120b, 0x4027f3b8, 0x019404ad, 0x3ea7fd8e, 0x27feffff, 0x8f34bd43, + 0xd540271f, 0xbd1f8834, 0x271f8c34, 0x8d34bd41, 0xbd42271f, 0x0b1f8e34, + 0xd1fd4efe, 0x99012003, 0x02d14b04, 0x03c50124, 0x6c02c540, 0x43f54487, + 0xff001c00, 0xd1770499, 0x87012403, 0x0043f544, 0x27ff001c, 0x2004d130, + 0xa9030d01, 0x07012803, 0x53032dd0, 0x24f49b42, 0x012404d1, 0xf49b4253, + 0x99402725, 0x04bd1803, 0x34c401c8, 0x89034927, 0x43ca1004, 0x0604b91f, + 0xd1414402, 0x99021404, 0xc4be4641, 0xf49301cc, 0x41045898, 0x270d0744, + 0x8ef48b11, 0x93fb4efd, 0x045887f4, 0xf0934431, 0x8b0455e0, 0x11fc93f4, + 0x0c070456, 0x017ebfbe, 0x0c07b007, 0xbe2c0c03, 0x93017eb4, 0x0455c3f4, + 0xc14042c1, 0x43296c41, 0x2b2b4e09, 0x3e2b102b, 0x012843ad, 0x012042d5, + 0x012441d5, 0xfd4efb8e, 0x559efd93, 0x18d49904, 0x3e1244c4, 0x31f493a9, + 0x44210458, 0xf48b0027, 0x015dccbe, 0x0c030d07, 0x0923be38, 0x030d0700, + 0x1abe640c, 0xd4b90009, 0x41040206, 0x000b54be, 0xbefe4e7e, 0x0effe8c7, + 0xf3919efd, 0xa7fd4eff, 0xfdebaf2e, 0x24054027, 0x00003f27, 0x23150a04, + 0x230ef49b, 0x27240528, 0x0400003f, 0x9b231509, 0x2ea70ef4, 0x05fdebc7, + 0x003f2724, 0x15070400, 0x0ef49b23, 0xfff6d0be, 0x57bef493, 0x93440104, + 0x045517f0, 0xf48bd007, 0xbefe857e, 0x99ffe88d, 0x442418d4, 0x9a7e0d07, + 0x9b4127fe, 0x0d07a2f4, 0xbe380c03, 0x070008ad, 0x640c030d, 0xa29efd0e, + 0xfc4e0008, 0xffff4ea7, 0xa74411fe, 0xffffffde, 0x0624d3d1, 0x43f54487, + 0xff000d18, 0x21273007, 0xcfff4ea7, 0x6842c5fd, 0x2b634f9b, 0x1b30c834, + 0x53defc93, 0x4cc39904, 0xc49d4027, 0x4dc39d4c, 0x016286be, 0x9d4dc499, + 0xf4934cc4, 0x990453c4, 0x439d4c43, 0x9d30274d, 0xdcd14c43, 0x0f9b0cb0, + 0x7a51be63, 0x624f9b01, 0x2b633f9b, 0x0cc4d243, 0x08be0c07, 0xc0120163, + 0x93634f9b, 0x045393f4, 0x9d4d4399, 0xfc8e4c43, 0x0421fa4e, 0x545af293, + 0x384c0304, 0x314424c5, 0xc5f06301, 0x03597021, 0x239dd007, 0x2e04891a, + 0x892c248d, 0x218d2c01, 0x1c03992e, 0x791d239d, 0x1c249d04, 0xb9480399, + 0xce020624, 0x23bd4334, 0x37560206, 0x56baf293, 0xb5f39304, 0x462703fe, + 0x34033101, 0x24032105, 0x171ef4a8, 0x56a2f293, 0xb5f39304, 0x462703fe, + 0x34033101, 0x24032105, 0xf493f4a8, 0x0104568c, 0xe5f09344, 0xf48b0453, + 0xd299d161, 0x83c1071f, 0xc3330fcc, 0xff84ce23, 0x07d391ff, 0x03a0274c, + 0xfdf09344, 0xfa050453, 0x000883be, 0xd299d161, 0x07d3a120, 0x03b0074c, + 0x11f09345, 0xfa050454, 0x00086bbe, 0x04d60b8b, 0x2c1e0a27, 0x539afc93, + 0x34d3c104, 0xd51cc499, 0xa5020cca, 0x074506c3, 0x6a26be0c, 0xbd40a701, + 0x610284c4, 0x254027dd, 0x1cc4adcd, 0x43002701, 0x4efa8ef0, 0x69f493fc, + 0x24070453, 0x029f2d03, 0x2ce33407, 0x7f3ce37f, 0x3c033419, 0xf932c280, + 0x534ef393, 0x27202704, 0x3205a84c, 0xf4c83403, 0xffffeea7, 0x93e411fe, + 0x045337fc, 0x48034447, 0x24074f6b, 0x210330a7, 0x3027c325, 0x9d4bc49d, + 0xc29d18c3, 0x9b402777, 0xf49b24f4, 0x04ee9925, 0x1a270c07, 0x27380c03, + 0x003d2720, 0xbd4a2728, 0xbe01f0ce, 0x0700071e, 0x2729270c, 0x2724003d, + 0x640c034a, 0x0bbe1927, 0xf2930007, 0x93045584, 0x03fd7ff3, 0x31014627, + 0x21053403, 0xf4a82403, 0x556ef493, 0x93440104, 0x0452c7f0, 0xfc0ef48b, + 0x4efc355e, 0x03c007fc, 0x5cbe380c, 0x0c07017c, 0xbe640c03, 0x93017c53, + 0x045547f4, 0x00274421, 0xe2bef48b, 0xfc0e015a, 0x4efb7e5e, 0xf35dbefd, + 0x8df093ff, 0xd0070452, 0xd499ca3e, 0x1344c418, 0x0c030d07, 0x7eedbe38, + 0x030d0701, 0xe4be640c, 0x3027017e, 0xd39d40a7, 0x18d39d19, 0x0ea7d425, + 0xbeffffdf, 0xc100e2fa, 0xd1c14cd4, 0x0b0d0740, 0x0314eb14, 0xd0be380c, + 0xd4c10006, 0x6cd1c178, 0x140b0d07, 0xeb640c03, 0x06bdbe14, 0xdf0ea700, + 0xfd0effff, 0x00e2a69e, 0xa007f74e, 0xac03c007, 0x070a0738, 0x649c039c, + 0xbe40cbc1, 0x07017b00, 0xc1090780, 0xf5be6ccc, 0x7007017a, 0x05be0a07, + 0x0907017d, 0xfdbeb82b, 0xb253017c, 0x2b24fb9b, 0x9bc253c7, 0xf78e25fc, + 0xf1e3f74e, 0xf989f065, 0x1af08918, 0x79073123, 0x51d6fd93, 0x2b340b04, + 0x3cfbc171, 0x6d10d38d, 0x4dd72dd1, 0x07a007d0, 0x14d8d1c2, 0x25b5b602, + 0x074027fb, 0x04f49dbf, 0x40a7b403, 0x2912d48d, 0x1cd3a9d4, 0x14d48d01, + 0x070c3cce, 0x7e1c070d, 0xdcadfac3, 0xfa2d011c, 0xf493f90d, 0x5104542c, + 0x27f2014c, 0xc8d4bd40, 0x07180701, 0x8b0d073b, 0xf6c007fc, 0x99d43106, + 0x472b18d3, 0x3420d435, 0x3d7e0d07, 0x9d4427ff, 0x0c0718d4, 0xf78ef1c3, + 0xf093fe4e, 0x7e045154, 0xf093fe93, 0x7e04514c, 0xf093fae1, 0x0e045144, + 0xff165efe, 0x0dd1fd4e, 0x04d1012c, 0xdc53020c, 0x8312531c, 0xb94526d3, + 0xce021004, 0x0289364d, 0x2c04892e, 0x429b03a1, 0xe30be487, 0x02100dbd, + 0x1faef393, 0x0c0ed504, 0x15402702, 0x043e2534, 0x032247d2, 0x424f2721, + 0x1e018000, 0x03e40505, 0x93f2c8e4, 0x041f8bf0, 0xd204012d, 0x41871147, + 0x40270435, 0xfd8e0455, 0xc007fc4e, 0x0d031127, 0x26270174, 0x4b003d27, + 0xe7be4827, 0x0c070004, 0x27900c03, 0x27272712, 0x274c003d, 0x04d4be48, + 0x030c0700, 0x1327cc0c, 0x3d272827, 0x48274d00, 0x0004c1be, 0xeba73ea7, + 0x054027fd, 0x004f2734, 0x15138200, 0x9b402734, 0xfc8e0ef4, 0xf49b4027, + 0x84f49b82, 0xa785f49b, 0xfdefff3e, 0x34d54327, 0x34210208, 0xa7fc48dc, + 0xfdefff2e, 0x4ddc2421, 0x27fa0800, 0x0824d544, 0x0c24d502, 0xd5302702, + 0xa7061823, 0xfdebf72e, 0x4f272305, 0x12c20000, 0xf39b2415, 0xb9fe0b0e, + 0x03013004, 0x0301340d, 0xf49b104c, 0x94f49b94, 0x2c273627, 0x90f39b10, + 0xf49b0401, 0x03040393, 0xf280103c, 0x2007fe0b, 0x01342d03, 0x53824f9b, + 0x41831c4c, 0x013004bd, 0x9b104c03, 0xf49b94f4, 0x3404d194, 0x7004d101, + 0x003f2701, 0x27200230, 0x90f39b14, 0x05884f9b, 0x894f9b24, 0x3d032415, + 0xf39b4200, 0x884f9b90, 0x4f9b2425, 0x23243589, 0x0341c03d, 0xf1f0102c, + 0x4efe0bd9, 0x03d007f7, 0x2901740d, 0x7b00bed7, 0x804f9b01, 0x012cd4d1, + 0x2780f49b, 0x82f49b40, 0x9b84f49b, 0xd48985f4, 0x16d38912, 0x40cc4f8b, + 0x33430713, 0xab31034a, 0x81f39b34, 0xf49b4027, 0x33131e83, 0x9b34ab3a, + 0x4a3381f3, 0xa383f49b, 0x0000004f, 0x82f49b80, 0x1327d449, 0xd44d4123, + 0xe5be0d07, 0x0d070180, 0xddbe1027, 0xd4490180, 0x4103cd07, 0x4d90cc03, + 0x27b027d4, 0x2702018d, 0x000000af, 0x129c2780, 0x8d30c4c1, 0x4b2620c8, + 0x7bbe0c07, 0x4027017a, 0x8d22c48d, 0xd44920c4, 0x44470d07, 0xc48d4b0b, + 0xbe1b0724, 0xb6018156, 0x84fa9bb6, 0xc426c499, 0xd4491542, 0x9b1041d8, + 0x0b1e94f9, 0x0385fa9b, 0x0ab2c0b1, 0xb127031e, 0x1e3ccc03, 0x2d4027b4, + 0x96d4a9d4, 0x8d0d0701, 0x14be1ed4, 0x04d60161, 0xf78e0727, 0xb0274127, + 0x8c27c827, 0x109c270c, 0xbd1eac27, 0x1e011ad4, 0xceb10345, 0xd4890db7, + 0x07b44214, 0xfe797e0d, 0xfc9bc807, 0x1dd49994, 0x48c44a00, 0x10cc030d, + 0x2394fc9b, 0xf99b10cc, 0x23d40994, 0x0d4fab41, 0x0745d6d4, 0x822ebe0d, + 0x27059601, 0x9b0c1e07, 0xfa9b94fa, 0xbab7ce94, 0x40270027, 0x011ad4bd, + 0xf74ef78e, 0x071d0e99, 0xa70e07d0, 0x9d015340, 0xd49df3d4, 0x800af9b7, + 0x6300019c, 0x451499f0, 0x051aac33, 0x0701c3f2, 0x839307b1, 0x00afa301, + 0x29800000, 0xc4f709f8, 0x14994742, 0x5324073f, 0x83e4ab21, 0x8023f9e1, + 0x3300019c, 0x3c3319ec, 0x00efa31c, 0xab400000, 0x833207e3, 0xab030b31, + 0x994720ae, 0x041e4614, 0x9d471499, 0x0556b7d4, 0x9d46b299, 0x091ef3d2, + 0xb4992124, 0xf3d49d47, 0xd3992027, 0xc0d2c5b7, 0xc5b8d2c5, 0x3cc0bcd2, + 0x43071cff, 0x33334533, 0x44f1432b, 0xff000194, 0xd4c54301, 0xc5430bc0, + 0xd09dc8d4, 0xf3d399b6, 0xc5f8d2c5, 0xd2c5fcd2, 0xff3cc0f4, 0x3343071d, + 0x2b333345, 0x9444f143, 0x01ff0001, 0xfcd4c543, 0xd4d5430b, 0xd09d0104, + 0x030d07f2, 0xdcc1380c, 0x767abe40, 0x40bbc101, 0xdbc5c02b, 0x274d0730, + 0xa04cd535, 0xb44cd501, 0x98440301, 0x2cdad5f3, 0x07911901, 0xfdad7e0d, + 0x40270546, 0xd40dd84d, 0xf043d72d, 0x0027f78e, 0xfd4efe0b, 0x01d402b9, + 0x42073327, 0x01b94333, 0x43f501d5, 0xff021200, 0x100044f1, 0xd007ff02, + 0x4c3c0247, 0x1e2027e0, 0x87253313, 0x0423f141, 0xf1ff0218, 0x02160042, + 0x87230bff, 0xf5422730, 0x02120034, 0xecd4d1ff, 0xd5422b01, 0xbe01fcd4, + 0xd502647c, 0x8e0200d0, 0x93fc4efd, 0x044cfbf4, 0x021444d1, 0x4489e007, + 0x47c10710, 0x0bd29bd4, 0x070616d3, 0x071a3314, 0xbe20270d, 0x1e00dd4b, + 0xc214010c, 0x1d070bd4, 0x00dc67be, 0xcd05e007, 0xfc8e0e07, 0xc007fc4e, + 0x0d031427, 0x2c2701d0, 0x003d2716, 0xbe4a2710, 0x070000d2, 0xd40d030c, + 0x27152701, 0x3d27172c, 0x4a271400, 0x0000bdbe, 0x0d030c07, 0x1627027c, + 0x3d272127, 0x4a271800, 0x0000a9be, 0xeb9f3ea7, 0x052027fd, 0x004f2732, + 0x1513c200, 0x9b402734, 0x38230ef4, 0x4f273205, 0x13820000, 0x40273415, + 0x8e0ef49b, 0x99fd4efc, 0xd0071204, 0xf8be4244, 0x42270175, 0x8e12d49d, + 0x120499fd, 0xc29e4204, 0xfe0b0176, 0xd007fb4e, 0xdcbeb107, 0xd4510175, + 0x3407d221, 0x34eb320b, 0x422b4307, 0xd325b422, 0xd4992307, 0x5b320710, + 0x83430734, 0x51448741, 0x0b3207dc, 0x613b0b4d, 0x25c28b44, 0x07d315d3, + 0xbec40b0d, 0x11017700, 0x9b4253d4, 0x0c0724f4, 0xfc4efb8e, 0x90bec007, + 0x0c070175, 0xe59efc0e, 0xfe4e0176, 0x4623e407, 0x4c83e30b, 0x0e3c330f, + 0x011d023d, 0x00003f83, 0x13333ff0, 0x4c332027, 0xf543ab10, 0x02140012, + 0x0414f5ff, 0x2dff0214, 0x9b40270e, 0xfe8e0ef4, 0xd007fd4e, 0xd7be0107, + 0xd299ffe2, 0xa1d42110, 0x83425bd1, 0x3b312741, 0x0b448732, 0x654d0b31, + 0x46d3a540, 0x0e0d0715, 0x75ff9efd, 0x4efd8e01, 0x07f063fb, 0x1eb107d0, + 0x10d19927, 0xc15bcb07, 0xcc87c183, 0xc461cd0b, 0x85bef405, 0xd299ffe5, + 0x27d3a110, 0x2b423b41, 0x65402734, 0xa1d3a5c4, 0x270f07d4, 0xd2b4ce21, + 0xfb8ef043, 0xd007fa4e, 0x07120099, 0x07b207a1, 0xc6230714, 0x8e012704, + 0x21d451fa, 0x10d399dc, 0xd285c40b, 0xc4ebd195, 0xa7333bce, 0xffffdf0e, + 0x00dbadbe, 0x0d071c07, 0x0ea78e3e, 0xbeffffdf, 0x2700db7b, 0x233b3b31, + 0xebc30b31, 0x5b4c07c3, 0x9d41234b, 0xdb9d11d4, 0xa5d35510, 0x15d4a1dc, + 0xcedc25dc, 0xf25115c4, 0x1a070d07, 0x017789be, 0x04964127, 0x04074027, + 0x0d07fa8e, 0x017544be, 0xfa8e0127, 0x0207fe0b, 0xfe0bfe0b, 0x04030105, + 0x0027fe0b, 0xf94efe0b, 0x020c04d1, 0xd0079107, 0x02d19253, 0x4db60214, + 0x892e0b89, 0x04a12c0c, 0xcc87cb9b, 0xf393c40b, 0x25041960, 0xd541273c, + 0x15020c0c, 0x12249934, 0x43230c07, 0x4c334383, 0xa314070e, 0x0000001f, + 0xbea407cf, 0x1b000069, 0x00afa3c0, 0xadc70000, 0x1e0212dc, 0x030a0505, + 0x93fbc804, 0x041923f3, 0xd1a9392d, 0x29870212, 0x44234107, 0x3435420b, + 0x34554027, 0x8dff4c27, 0x318d1a34, 0x032ea718, 0x4c27fee2, 0x0331010e, + 0x03210534, 0x8ef4a824, 0xff4ea7f9, 0x3227feff, 0x1df043bd, 0x4a0af293, + 0xd5402704, 0xbd021824, 0x0b026b24, 0x054127fe, 0x03041501, 0x4efe0b08, + 0xa5fd93fd, 0xd499044c, 0xbe44d64c, 0x990000f4, 0x41c44cd4, 0x270d070b, + 0x9efd0e11, 0x99000a53, 0x454665d4, 0xfd0e0d07, 0x0004599e, 0x013cd4d1, + 0xd1daf49b, 0x9b0140d4, 0xd4a9dcf4, 0xf49b012e, 0x114f27df, 0x9b100000, + 0xfd8ea0f4, 0xf093fe4e, 0x99044c58, 0x41444c04, 0xfe0e1127, 0x0007399e, + 0x46650499, 0x630f9b49, 0x016f52be, 0x9b624f9b, 0x432b633f, 0x270c41cc, + 0x5809be01, 0x9b010c01, 0xf093634f, 0x0e044c24, 0x03259efe, 0xda4f9b00, + 0x013c04d5, 0xd5dc4f9b, 0x8e014004, 0x93fc4efe, 0x015bcff4, 0x4c02fc93, + 0x27102704, 0x05002722, 0xe6d3bec4, 0xbe0127ff, 0x0701546e, 0x8e04030c, + 0x4edb1efc, 0x300a89f9, 0xa33c0bc1, 0x07c007f0, 0xbe0b071a, 0x070102f5, + 0x079fab90, 0x6d0b071a, 0x02e1bef9, 0x89f04d01, 0xf01132c4, 0x3907e027, + 0x492b2a07, 0xfe051027, 0xfff70fbe, 0xf98ef083, 0x1027fd4e, 0xf7ffdea7, + 0x80ec27f9, 0x42734107, 0x08273227, 0x09401ccc, 0x03730107, 0x35274147, + 0x4c832307, 0x0c2c330f, 0x34333407, 0x320b20ab, 0x30003d03, 0x32074830, + 0x07803c03, 0x104c3343, 0x1103430b, 0x80004d18, 0x00004e03, 0x03d40510, + 0xb9fef0d4, 0x08004e27, 0x70f49b08, 0xfe4efd8e, 0x013204a9, 0x03b801d1, + 0x018604ad, 0x02980ed1, 0x029c04d1, 0x0ed51803, 0x04d50134, 0x4f9b0138, + 0x3c04d5da, 0xdc4f9b01, 0x04d53007, 0x3d030140, 0x41070144, 0x01102c27, + 0x0544034e, 0xa834033e, 0x8003c1f2, 0x029404d1, 0x012c0ea9, 0x019004d5, + 0x01840ead, 0x018803d5, 0x04b935e6, 0x4c1302c0, 0xd5342b40, 0xd5018803, + 0x0e018c01, 0xf2379efe, 0x07fd4eff, 0x114f27d0, 0x9b100000, 0x4c27a0f4, + 0xdef49bff, 0x99750499, 0x43837603, 0x33333383, 0x43ab4447, 0xf49b41a3, + 0x4c0499e0, 0x54be4ce6, 0x4d270005, 0xd4ad0600, 0x4d27012e, 0xf49b0600, + 0x01f493df, 0xd19901a3, 0x30d4056f, 0x1e132713, 0x00412709, 0x47402712, + 0x70d29914, 0x23272330, 0x4127091e, 0x40272200, 0x0d072447, 0x0006a1be, + 0x7e00985e, 0x4d27febc, 0xd4ad0280, 0x4d27012e, 0xf49b0280, 0x99f493df, + 0x43290447, 0x44094169, 0xd399130b, 0x27142b67, 0xb4d4bd40, 0x07133b03, + 0x631ebe0d, 0x49d49901, 0x43d444e6, 0x99141e29, 0x452667d4, 0x9f8cf493, + 0x931d1e01, 0x01605cf4, 0xd499161e, 0x93452667, 0x019fd3f4, 0xf4930a1e, + 0x1e015fe6, 0xd5ff1e03, 0x990210d4, 0x488607d4, 0xbd404c27, 0xd102c0d4, + 0xc10210d4, 0xd4d580d0, 0xf4930304, 0xd5015ea3, 0x270210d4, 0x90be401c, + 0xf493014f, 0x0501695f, 0x8e0027d4, 0x93fd4efd, 0x044637f4, 0x994443c1, + 0xd0074e44, 0x030b0407, 0x0154debe, 0x0190d4d1, 0x0188d0d1, 0x0294d4d5, + 0x41834b53, 0x03bcd4bd, 0x0184d4a9, 0xad80d0c5, 0x06012cd4, 0x401c2706, + 0x014f46be, 0xbd404c27, 0x2702c0d4, 0xb4d4bd40, 0x86d4a903, 0x8cd0d101, + 0x32d4ad01, 0x34d4d101, 0xd5082301, 0xd10298d4, 0xd50138d4, 0xd503b8d0, + 0x03029cd4, 0x3cd4d108, 0xdaf49b01, 0x0140d4d1, 0xa7dcf49b, 0xf9dbff2e, + 0x2c10202b, 0x402c2741, 0x1d031d07, 0x8cbe0144, 0x4c2700c9, 0xdef49bff, + 0x1d9efd0e, 0xfd4efff5, 0x4596f293, 0xc1d00704, 0x4f9b3c23, 0x1943ce63, + 0x994424c1, 0x040b4e20, 0x015436be, 0xffef4fbe, 0xfd0e0d07, 0x0158a59e, + 0x27ff347e, 0x4efd8e04, 0x00cd27fc, 0xa0fc9b03, 0xadcf4f9b, 0x9b014804, + 0x04d5d04f, 0x4f9b014c, 0x5004d5d1, 0xd24f9b01, 0x015404d5, 0xd5d34f9b, + 0x9b015804, 0x04d5c44f, 0x4f9b0208, 0x0c04d5c9, 0x104c2702, 0x27c3f49b, + 0x27f4e843, 0xc3f49b41, 0x020804d1, 0x27c4f49b, 0x9b01004d, 0x0ea7a0f4, + 0xa7f9e1ff, 0xf97fff1e, 0x02002d27, 0x014d0bbe, 0x8ea0fc9b, 0x07fe4efc, + 0x9832a930, 0xb804d102, 0x3200a903, 0x3432ad01, 0xa032d101, 0xfc30ad02, + 0x9c30d101, 0x3c32d502, 0xa832d101, 0x3830d502, 0xa430d101, 0x144c0302, + 0x014432d5, 0x34d52307, 0x30d50200, 0x2d030140, 0x1c27015c, 0x03400128, + 0x03200544, 0xd1f1a824, 0x07029432, 0x0432d503, 0xff357e02, 0x869efe0e, + 0xfc4effef, 0x4727c007, 0x27c3f49b, 0x9b01004d, 0x0ea7a0f4, 0xa7f97fff, + 0xf9e1ff1e, 0x02002d27, 0x014c7fbe, 0xf49b4027, 0x004d270e, 0xa0f49b03, + 0x00114f27, 0xf49b2000, 0x08c4d1a0, 0xc4f49b02, 0x0148c4a9, 0xd1cff49b, + 0x9b014cc4, 0xc4d1d0f4, 0xf49b0150, 0x54c4d1d1, 0xd2f49b01, 0x0158c4d1, + 0xd1d3f49b, 0x9b020cc4, 0xfc8ec9f4, 0xd007fd4e, 0xf493913e, 0xc1044424, + 0x40994443, 0xbe030b4e, 0xd10152cf, 0xd10204d4, 0xd50200d0, 0x530294d4, + 0xbd41834b, 0x2703bcd4, 0xb4d4bd40, 0xfcd4a903, 0x140c2301, 0x0132d4ad, + 0x0134d4a9, 0x03b8d0d5, 0x0298d4ad, 0x0138d4d1, 0xd5140c03, 0xd1029cd4, + 0xa7013cd4, 0xf9cdff2e, 0x02a0d4d5, 0x0140d4d1, 0xd4d5202b, 0xd4d102a4, + 0xd4d50144, 0x2c1002a8, 0xa02c27a1, 0x1d031d07, 0x90be015c, 0xfd0e00c7, + 0xfff3279e, 0xf293fd4e, 0x070443a0, 0x3c23c1d0, 0xce634f9b, 0x24c11943, + 0x4e209944, 0x40be040b, 0x59be0152, 0x0d07ffed, 0xaf9efd0e, 0x4d7e0156, + 0x8e0427ff, 0x07fd4efd, 0x2714ccd0, 0x931812c0, 0x044367f4, 0x994443c1, + 0x030b4e40, 0x015212be, 0xffed2bbe, 0x70be051e, 0x0d07016a, 0x7b9efd0e, + 0x01070156, 0xf54efd8e, 0xfac1f223, 0x07820748, 0x07710750, 0x27b40793, + 0x202c27e0, 0x4e0b4f07, 0x431d30a7, 0x4e0b4807, 0xe103431d, 0xb856f268, + 0x4f6b4a07, 0x071e4c03, 0x1e4c2324, 0x271f4c13, 0xe407101c, 0x2f6b6f07, + 0x6103ef6b, 0x061ec107, 0x1e2dbac4, 0x071123dc, 0x19410b47, 0x07020744, + 0x233f07de, 0x0bd22302, 0x1f4c5434, 0x460b321d, 0x20074e1d, 0x2f6bed07, + 0xfcf0ef6b, 0x07161ed9, 0x07e1233e, 0x194e0b47, 0x204c5444, 0x410b1f07, + 0xf3604e1d, 0x9a0094e6, 0x24379bc4, 0x1ea027b6, 0x27b70405, 0x070507a1, + 0x104c2728, 0x1f070319, 0x0103130b, 0x3cd41a0b, 0x1119111f, 0x211d3103, + 0x1f073a2b, 0x3319310b, 0x2203233d, 0x1edef4f0, 0x27302720, 0x450720ec, + 0x4419430b, 0x130b1807, 0x4cd43103, 0x2f070920, 0x4419420b, 0xfe28141d, + 0xf58ef203, 0xd007f84e, 0xa107d423, 0xc2079007, 0x0344d1c1, 0x0702109d, + 0x99c6338a, 0xd49943d3, 0x03c90b20, 0x07f06388, 0x071803b2, 0x052c0708, + 0xfee47efb, 0x9944d1c1, 0xd49943d3, 0x28ac0320, 0x18032c07, 0x07202c03, + 0x7efb050a, 0xd399feca, 0x109d2343, 0x073a2302, 0x034f6b43, 0x3042d43a, + 0x9944d1c1, 0x290720d4, 0x18030807, 0x2d03c127, 0xfc050250, 0xc1fea17e, + 0xd49944d1, 0x43d39920, 0x0a072907, 0x2d031803, 0xfc050270, 0x43fe897e, + 0x4ef88ef0, 0x440dc1fd, 0xefff2ea7, 0xe8031efd, 0x5c24c1f3, 0x4c333327, + 0x1d4c5318, 0x42c84413, 0x271d07ef, 0x2f2ea70b, 0x3c27f9ef, 0x49b2bed0, + 0x031d0701, 0x0b27501c, 0xf4ff2ea7, 0x803c27f9, 0x9d9efd0e, 0xfd4e0149, + 0x07650499, 0xbe4506d0, 0x1efffc0f, 0xda4f9b0f, 0x03e404d5, 0xd5dc4f9b, + 0x9b03e804, 0x3ea7c24f, 0xd5fbffff, 0xd103ecd4, 0xd1041434, 0xd50228d2, + 0xd103f0d4, 0xb90234d4, 0xd5023dde, 0xd503fcd4, 0xd103f8d2, 0xbd0290d4, + 0xd10450de, 0x00041833, 0x3c45d643, 0xc000003f, 0x94d0d11f, 0xa70e1e02, + 0xfbffff4e, 0x041844d1, 0x0fab0407, 0x41eaf493, 0x29416904, 0x0b420943, + 0x30d4d113, 0x0e122b02, 0xf4d0d514, 0x30d1d503, 0xff4ea702, 0x43d1fbff, + 0xd2a90418, 0xd4a90132, 0x3a33012c, 0xd2ad0d07, 0xd4ad03e0, 0x3c5303e2, + 0x000d031a, 0x07152704, 0x403c3023, 0x2c232307, 0x33420740, 0x004ef143, + 0x03ff0608, 0xf10e0531, 0x06080444, 0x870415ff, 0x0044f142, 0x25ff060a, + 0x0c0c0304, 0x8ed1f1f0, 0xd1fe4efd, 0xc6022404, 0xa24f9b47, 0x422743a6, + 0xd1a2f49b, 0x9b022404, 0x4f9bb4f4, 0x2743a6a2, 0x2404d540, 0x2004d102, + 0x3348c602, 0x4c530e4c, 0x9004d51e, 0xff3ea702, 0x34d1fbff, 0x42d80420, + 0x2004d1fa, 0x2434d502, 0xd5402704, 0xa7022004, 0xfbffff3e, 0x042034d1, + 0x27fa42d8, 0xfec07e10, 0x2a9efe0e, 0xfb4effeb, 0xc207e107, 0xef6bd007, + 0x4f9bcf6b, 0xfb40ccc1, 0xffff4ea7, 0x204bd1fb, 0x83b15304, 0xf6b1c4b1, + 0x9964d499, 0x438368d3, 0xd0993183, 0x6ed29949, 0x44873433, 0xab75d199, + 0x83038343, 0x2b333f2c, 0x138340ab, 0x1c3342ab, 0x99e38311, 0x41ab69d3, + 0xc383e633, 0x21274eab, 0x20273486, 0xc8333207, 0x35334cab, 0xf49b43ab, + 0x65d499c2, 0x45334183, 0xf49b41a3, 0x6dd499c0, 0x9969d399, 0x418349d1, + 0xd2993183, 0x3339336c, 0x8343ab48, 0x151c3313, 0x218342a3, 0x2c3341ab, + 0xff0ea710, 0x42abfbff, 0x040404d5, 0x04300bd5, 0x40271027, 0x0238d4bd, + 0x0234d1d5, 0x405af493, 0x29436904, 0x0b440942, 0xd5342b32, 0xd50230d3, + 0xd503f4d1, 0xd5041801, 0xd50290d1, 0xd50294d1, 0xd1043401, 0xd50124d4, + 0x99041404, 0x414473d4, 0x14270027, 0x44d60b1e, 0x031e0827, 0x10270027, + 0x9971d499, 0xd2b972d3, 0x4c830128, 0x3f3c833f, 0x330c3c33, 0x8343ab46, + 0xd3b90f2c, 0x2c330129, 0xab41a318, 0x1c3c3342, 0x40ab43ab, 0xd4d541ab, + 0xcea7021c, 0xd5fbffff, 0x270410c4, 0x0540004e, 0x27a3f49b, 0x48aabe0b, + 0x2f4ea701, 0xdb99f9ef, 0x6fde9970, 0x0218d4d5, 0x0c271027, 0x33310710, + 0x10e1c235, 0x10d814f9, 0x2407ff06, 0x23ab2153, 0x07ff4c04, 0x103ca323, + 0xf90eb1c2, 0x0610f814, 0xff4c20ff, 0x34ab4153, 0x041cc2d5, 0x041cc3d5, + 0xf0f01103, 0x4efb8ec9, 0x650499fd, 0x4506d007, 0xfffa09be, 0x00a93c1e, + 0xd4d103e2, 0xd0ad03e4, 0xf49b012c, 0xe8d4d1da, 0xdcf49b03, 0x9975d499, + 0x438376d3, 0x33333383, 0x43ab4447, 0xf49b41a3, 0x2ed4a9e0, 0xdff49b01, + 0x00114f27, 0xf49b1000, 0x65d499a0, 0x45334183, 0xf49b41a3, 0x6dd499c0, + 0x9969d399, 0x418349d1, 0xd2993183, 0x3339336c, 0x8343ab48, 0x151c3313, + 0x218342a3, 0x2c3341ab, 0xa742ab10, 0xfbffff3e, 0x040434d5, 0x34d54127, + 0xd4d10430, 0xf49b03ec, 0xf0d4d1c2, 0xe0d1a903, 0x1434d503, 0x1cd4d104, + 0x32d1ad02, 0x1034d501, 0xf8d0d104, 0xf4d4d103, 0x28d0d503, 0x002e2702, + 0x34d50540, 0xf29b0418, 0xa74d07a3, 0xf9f7ff2e, 0x04004d03, 0xf5ff1ea7, + 0x013527f9, 0x11200540, 0x21201540, 0x05280340, 0x0c4c0310, 0xf3501403, + 0xd4bd4127, 0xd1d10239, 0xd2d103f4, 0xd4b903fc, 0x30270450, 0x0290d3d5, + 0x0294d1d5, 0x022cd3d5, 0x0234d2d5, 0x023dd4bd, 0xf04efd8e, 0xdf3bcf5b, + 0xfc4efe2b, 0xecbe0f07, 0xff1effd8, 0xff1eff1e, 0xb007fb4e, 0xf0931127, + 0xbe010b70, 0x1100ca3c, 0x7df093b1, 0x31be010b, 0xb12100ca, 0x0b84f093, + 0xca26be01, 0x93b10100, 0x010b8bf0, 0x00ca1bbe, 0xf093b231, 0x27010b92, + 0xca0ebe10, 0x03db0700, 0x31c127d4, 0x931c07d2, 0x010b7df0, 0xf9bec103, + 0xd40300c9, 0xec0fccc4, 0xfb0e0b07, 0xfb4ea11e, 0x07620499, 0x0e1d8930, + 0x270a1b99, 0xff4c00e0, 0x1089e127, 0x03cd8710, 0x9b140101, 0x5833c10c, + 0x0b361299, 0xd6030b04, 0x470c0b24, 0x27e846dd, 0x8004c11f, 0xa3b41802, + 0x0708001d, 0x0530072d, 0x06340331, 0x054027e5, 0x88340334, 0x27fb8ef2, + 0x8000421f, 0x4edf1e01, 0xc022c1fa, 0xc253c107, 0x41a7b027, 0x0d6823c1, + 0x150c2d04, 0xf6d0070b, 0x59fa9339, 0xa4110454, 0xa3214cc6, 0x00623499, + 0xcc47ff4c, 0xc00a3499, 0xa311314a, 0xd3254c87, 0xdbb5aa11, 0xda85d435, + 0xdb55db95, 0x3c27fa8e, 0x32038dff, 0x0b350b85, 0x0b250b55, 0x0bb50b95, + 0x271a038d, 0x0ef49b40, 0xcc47fa8e, 0x1207cd1e, 0x1c03a021, 0xff387e64, + 0xaf1ea015, 0x4007fe4e, 0x3c272027, 0x03420534, 0x27f3c844, 0x31a7d04c, + 0x40070405, 0x4803034d, 0x382720a7, 0x44034205, 0x4007f3c8, 0xa7284c03, + 0x05382720, 0xc8440342, 0x621499f3, 0x1bff4cc0, 0x049d4127, 0x62139906, + 0x9908039d, 0x44dc0a14, 0xe343070f, 0x08049d41, 0x4027fe8e, 0x8e06049d, + 0x070001fe, 0x0501ab32, 0xdc340320, 0x0000000f, 0x40471208, 0x441d4c53, + 0x05402746, 0x07340334, 0x27fe0b03, 0x15340341, 0x07e81e24, 0x48230742, + 0x27412811, 0x07cb1e10, 0x004f2702, 0x03f00000, 0x0b240504, 0x07f94efe, + 0x07b107c2, 0xc8900723, 0xc1c84f11, 0x101cc04c, 0xcca10739, 0xdc073819, + 0x073ac9cc, 0x071a0732, 0x3e09072d, 0x07b823bf, 0x072d0730, 0x3e09071b, + 0x07c823b3, 0x071a0730, 0x3e09072c, 0x073007a7, 0x0709071b, 0x1ef90e2c, + 0x10ccc09b, 0x07a8271a, 0xc8c9c8dc, 0xc41ed827, 0x4f270207, 0xf0004000, + 0x24050403, 0x1d27f98e, 0xf90e4000, 0x4eff4c5e, 0x07c207f9, 0x072307b1, + 0x5a11c890, 0xc057c1c8, 0x0741201c, 0x111ccca1, 0xccdc073f, 0x074211cc, + 0x071a0732, 0x7e09072d, 0xbc23ff65, 0x07300710, 0x071b072d, 0xff577e09, + 0x0710cc23, 0x071a0730, 0x7e09072c, 0x3007ff49, 0x09071b07, 0xf90e2c07, + 0xc0ff3c5e, 0x271d20cc, 0xdc0710ac, 0xc011ccc8, 0x1e10dc27, 0x270207bb, + 0x0080004f, 0x050403f0, 0x27f98e24, 0x0e80001d, 0xfecf5ef9, 0xc207f94e, + 0x2307b107, 0x1cc09007, 0xa1074640, 0x44211ccc, 0xccccdc07, 0x32073521, + 0x2d071a07, 0x607e0907, 0x20bc23ff, 0x2d073007, 0x09071b07, 0x23ff527e, + 0x300720cc, 0x2c071a07, 0x447e0907, 0x073007ff, 0x0709071b, 0x5ef90e2c, + 0xdc27ff37, 0xc0c81e20, 0x270c40cc, 0xdc0720ac, 0xbb21ccc8, 0x1d27ed1e, + 0xf90ec000, 0x4efe645e, 0x994127fe, 0x049d0a02, 0xc031070b, 0x25343024, + 0x1e1523c0, 0xc0252006, 0xff1e1926, 0x99090299, 0xfe0e0801, 0x99fef25e, + 0x01990902, 0x5efe0e08, 0x0299fe5b, 0x08019909, 0x595efe0e, 0x090299ff, + 0x0e080199, 0xfe5f5efe, 0x3c270071, 0x4e040110, 0xb8080314, 0x0b0027f3, + 0x994007fe, 0x42712000, 0x30070103, 0x03330123, 0x0b0f3c83, 0x20439d02, + 0xfe4efe0b, 0xed03e007, 0x4027034c, 0x034c04d5, 0x18270e75, 0x070f2c27, + 0x27310b3e, 0x03340540, 0x27f29818, 0x20049d40, 0xfe4efe8e, 0x21c8e207, + 0xff3ea72a, 0x34c1fdef, 0x184c336c, 0xcc1d4c53, 0x4ea7f542, 0x05fde65f, + 0x274e1541, 0xa7423520, 0xfde64f3e, 0x3e153005, 0xfe8e3235, 0x03d1f94e, + 0xa2070228, 0xf993a253, 0xa7040d44, 0x0d3b1141, 0x151a2d14, 0x07c00719, + 0x21b896d1, 0xd12a8602, 0x990224c4, 0x3c006243, 0x25aa47ff, 0x87cc21d2, + 0x35dbb54a, 0x55dc85d4, 0x8edb95db, 0x460421f9, 0xb5402749, 0x55d435d4, + 0x95d425d4, 0x8ed485d4, 0x2400d1f9, 0x7e130702, 0xc1d1fc0e, 0xc0250224, + 0xd17e0907, 0x1ec221fc, 0x2401d1b7, 0x25412702, 0x7e090704, 0xca1efcc0, + 0x0d39fb4e, 0xffff3ea7, 0xb9d123ff, 0x83010834, 0xc0070fdc, 0x00bcd4ee, + 0x2027d333, 0xffff0ea7, 0x0cd2f5fe, 0xa9ff0001, 0x39014403, 0xff4ea7c1, + 0x3103ffff, 0x010841bd, 0x014403ad, 0x270ef29b, 0xff4ea731, 0xc229fdcf, + 0xa67043c5, 0x27fb8e25, 0x03e8070e, 0x02b53ebe, 0xf74b0ea7, 0x4f83beff, + 0xec00c801, 0x40072007, 0x25334733, 0x2e23240b, 0x07fff73c, 0x27102742, + 0x4105283c, 0xf3c84403, 0x4c073207, 0x4c033403, 0x121c2710, 0x44034e01, + 0x34033e05, 0xc431f1a8, 0xccd12405, 0x4ea70110, 0xc5fd4fff, 0x4311642c, + 0x276823c5, 0xb804fd42, 0xa7ff0008, 0xffffff2e, 0x24bd4127, 0x23990638, + 0x9b40270f, 0x41270ef4, 0x34f53387, 0xff02b040, 0xb307fb8e, 0x64060d27, + 0x02b4babe, 0x0108b4b9, 0xff364dee, 0x0000ef1e, 0x000466bc, 0x0000000e, + 0x01c1f54e, 0xc5fd2358, 0xf0c5bcf1, 0xff0299c8, 0xf2c51301, 0xfe049978, + 0xc5fc0289, 0x01b17cf4, 0xc5bcf4c1, 0x0131c0f1, 0x930e4489, 0x0407ebf8, + 0xc580f2c5, 0x02d1c4f1, 0xf1c10100, 0xc1842dbc, 0xf2c5f804, 0x10128974, + 0x4584f4c5, 0x0b402783, 0x0d833531, 0xd5811582, 0x25022881, 0x2480d584, + 0x34149902, 0x13073127, 0xf2c1143b, 0x2c81adbc, 0x35219902, 0x022c82a9, + 0x83ad313b, 0xf3c1022e, 0xbcf1c1bc, 0x890e3489, 0x429b3033, 0x242b432b, + 0x023082ad, 0x022e83a9, 0x89101489, 0x439b3212, 0x342b422b, 0x00004f27, + 0x83ad8f00, 0x84d50232, 0x03990238, 0xff3ce062, 0x4f2704dd, 0xef000100, + 0x023884d5, 0x93bcf3c1, 0x04074ff0, 0xd5343499, 0x7e023484, 0x8409fd66, + 0xf4c58229, 0x90f1c190, 0xd1878441, 0x0b94f2c5, 0xe68631d4, 0x27017a1f, + 0xc5328740, 0xf4c588f3, 0x8cf4c5b4, 0x50a77027, 0x460b4787, 0x21dc4201, + 0xf1f1536b, 0x014f07fe, 0x3c4c0313, 0x24032101, 0x44034105, 0xf2c1f3a8, + 0x50f3c148, 0x0b68f4c1, 0x60f3c123, 0x0b182c03, 0xb4f3c143, 0x0b40f1c1, + 0xddf09334, 0xd20b0406, 0x03b4f3c5, 0xfcca7e51, 0x00f80fe6, 0xc13ef489, + 0x740b94f1, 0xc1aa71ca, 0xf3c18cf2, 0xa125fd90, 0x03000464, 0x8cf2c521, + 0x010223ee, 0x0b88f4c1, 0x078a1e64, 0x3c1c031f, 0x069ef093, 0xfd167e04, + 0x81b98429, 0x82d10234, 0xf19d0238, 0x23f2050a, 0x85f39341, 0x47ee0406, + 0x33b900c8, 0x8409022c, 0x9d8cf1c1, 0x412308f3, 0x066ef393, 0xaa14ee04, + 0x2e34b900, 0x41f25302, 0x072101fe, 0x09f49d0f, 0x89fc067e, 0xefe63efe, + 0xf2c1ff56, 0x23a00748, 0x0466bcaf, 0x07842900, 0x532a0bc7, 0x03fe1bf3, + 0x48f2c5c1, 0xb0274123, 0x062ef993, 0x010f0704, 0x464cce31, 0xf399b586, + 0x2c94a908, 0x1e34ce02, 0x023894d1, 0xffff4f83, 0xf405f7ff, 0x07fbba7e, + 0x3efe89a0, 0x2348f2c1, 0x0466bcaf, 0x03b10300, 0xfeebe2c1, 0x0b8429fe, + 0xcdf3532a, 0x48f2c5fd, 0x0f074123, 0xc4ce3101, 0x3094b9bc, 0x08f49d02, + 0xf093b31e, 0x7e0405d4, 0xf4c1fbd9, 0xc1040540, 0x430140f4, 0xf55ed30b, + 0x3234b9fe, 0xff575e02, 0x023033b9, 0x27ff395e, 0xb4f1c510, 0x55b4f2c1, + 0x18dc038d, 0xf3c18265, 0xc52d0bc4, 0xdc23a4f2, 0x03351618, 0xf2c50c2c, + 0xc8f1c1a4, 0xc1a4f2c1, 0x42ea4414, 0x4ea701cb, 0x27fdeb97, 0x27430530, + 0x0300002f, 0x9b42150d, 0xf3c10ef3, 0x273fe6c4, 0x27c02703, 0xf3c118bc, + 0xb4f4c1c4, 0xf3c1f335, 0x65f48574, 0x78f4c1f3, 0xc17cf3c1, 0xf49dc0f0, + 0x16f39d17, 0xc180f4c1, 0x1f0784f3, 0x1c030c0b, 0x182c270c, 0xf48df345, + 0xbefd7514, 0xc100b917, 0x8c41c0f7, 0x7b0b8431, 0x07bcf1c1, 0xc52c0707, + 0x8b09acf4, 0x93fb5d7e, 0x04050ff0, 0x07fb2d7e, 0x091d0b17, 0xb8f1c584, + 0x02884fe6, 0xd533db07, 0xd42b4b87, 0xdc0b2027, 0xfcc5c70b, 0xb0f2c5a8, + 0x93a0f2c5, 0x04071ff6, 0xf9a0f3c1, 0x0464a133, 0x9cf3c500, 0x02473fe6, + 0xc19cf2c1, 0x4d079cf3, 0x339cf1c1, 0x33353323, 0x0b322b48, 0x98fdc514, + 0x0b9cf1c5, 0xa8f2c1d3, 0x24035027, 0xc1ccf2c5, 0x4587acf3, 0x4201430b, + 0xa183a207, 0x01ccaff6, 0xfc7af153, 0x13014f07, 0x013c4c03, 0x05240321, + 0xa8440341, 0x3cf289f3, 0xc13ef389, 0xf09340f1, 0x8d040478, 0xf38d24f2, + 0xfa667e26, 0x0fe6b007, 0xbb1101b8, 0xafe6fba5, 0x84290124, 0x023881d1, + 0x0530fdc5, 0x934123f1, 0x04044ff3, 0x019345ee, 0x022c33b9, 0xf2c18409, + 0x08f39da0, 0xf3934123, 0xee040438, 0xb9017524, 0x07022e34, 0x9d16070f, + 0xd47e09f4, 0x3ef489f9, 0x07674fc6, 0x23b507c0, 0x0466bccf, 0x27b10300, + 0x0df993a0, 0x2e1e0404, 0xa586b103, 0xa908f399, 0xce022c94, 0x94d11834, + 0x4f830238, 0xf7ffffff, 0x9c7ef405, 0x23c007f9, 0x0466bccf, 0x3ef48900, + 0x4ac2a103, 0x0b070725, 0x0716070d, 0xb7bdbe2c, 0x07842900, 0x0741230f, + 0xcedc0b16, 0x93b9bbb4, 0xf39d0230, 0x1eb21e08, 0x30f4c1ff, 0x4d1b3027, + 0xf4c1f4b5, 0x34f3c5b0, 0xb638f4c5, 0xc11f075d, 0x1c03ccf0, 0x182c2724, + 0x00b782be, 0x293ef489, 0xea540b82, 0x93fee252, 0x040387f4, 0x09a8f1c1, + 0x9cf4c143, 0xf1c11405, 0xc51103a0, 0x31e2a0f1, 0x428700fa, 0xc1a8f3c1, + 0x3c03acf2, 0xc5240b1c, 0xf3c5acf2, 0xfe7a5ea8, 0x0798f0c1, 0x03070b1f, + 0x2c27241c, 0xb735be18, 0x98f4c100, 0xc5184c03, 0xa91e98f4, 0xc148fbc1, + 0x070744f1, 0x2b070d0b, 0x0730fdc5, 0xf9747ecd, 0x0b50fac1, 0x4cf1c1cb, + 0x0c0b0707, 0x637e2a07, 0xb0f2c1f9, 0x0760f9c1, 0x30f4c1dc, 0x0bb8f0c1, + 0xb0f3c1da, 0x1b5cf1c1, 0x07020b4d, 0xc5f4b529, 0x3f7e38f3, 0xb0fcc1f9, + 0xc168fbc1, 0xc90bb8f0, 0x0b64f1c1, 0x7e2b070c, 0xf4c1f92a, 0x1bcb0b38, + 0xb0fcc54c, 0x5e34f4c5, 0x1f07ff2b, 0x02caf093, 0x3c1c0304, 0x5ef93f7e, + 0x34b9fe3d, 0x8c5e0232, 0x3033b9fe, 0xfe6e5e02, 0x02aef093, 0xf8b37e04, + 0x1540f4c1, 0xc104050d, 0xb00740f1, 0x07071c01, 0x2c070d0b, 0x00b67ebe, + 0x275edc0b, 0xc54027fe, 0xd25e98f4, 0x9a4f27fd, 0xd5cf0006, 0x5e023884, + 0x3ea7fb24, 0xc1fdefff, 0x4dd86c34, 0x070ffc6a, 0xe8432723, 0x6c23c1f4, + 0xfc6a3ddc, 0xc8f1c1f5, 0x81a4f2c1, 0x4812c514, 0xf0c144a3, 0x7e1485c8, + 0xfd03f940, 0xcc27f58e, 0xc0f0c10c, 0x01baf193, 0xbe2c0701, 0xc100b61f, + 0xbc27c8f4, 0x484cc524, 0x4efcc55e, 0x590499fb, 0x4487f0e3, 0x692441f1, + 0x04c10004, 0x5403894c, 0xf105f415, 0x3fe6d007, 0x302700d9, 0x691e33f9, + 0xd4990004, 0x50d2895a, 0x9308f39d, 0x04068ff3, 0x692044f9, 0x33190004, + 0x9d09f49d, 0x2fe60af3, 0xd49900a2, 0x9b4ff658, 0xa70f0700, 0xf9e8ff1e, + 0x07f77e7e, 0x56d099b0, 0x43334007, 0xf16c4c03, 0x02100043, 0x183c33ff, + 0xc41d3c53, 0xfc932934, 0x07044d04, 0x0e1d270c, 0xaf72be0a, 0x56d09902, + 0x43334007, 0xf16c4c03, 0x02100043, 0x183c33ff, 0xc01d3c53, 0xbe03de34, + 0x07f9e900, 0x2733e33b, 0x2ea7361c, 0xbef9e8ff, 0x9902ae6d, 0x4c0356d4, + 0xf143330d, 0x02100043, 0xe03cd8ff, 0xb5fc9322, 0x0c07044c, 0x0a0e1d27, + 0x02af23be, 0x0356d499, 0x43330d4c, 0x100043f1, 0x3cdcff02, 0xf0c3e5e0, + 0x1fa3fb8e, 0x09000000, 0xf1054027, 0x5a5ef415, 0x5b0399ff, 0x4eff275e, + 0xc002c1fc, 0x2ed1c107, 0x23890114, 0x834e0728, 0x86112742, 0x83102744, + 0x3380003d, 0xa80dc117, 0x24c13f26, 0x5742d844, 0x10003d27, 0xa7a20499, + 0xf7ffff2e, 0x4dab4183, 0x43ab41ab, 0x01c12425, 0x9c0389ac, 0xc5e421c5, + 0x3123802c, 0x998423c5, 0x0389a304, 0x8824c59e, 0x4123430b, 0x998c24c5, + 0x0089a601, 0xc5310ba4, 0x3123a821, 0xc5ac23c5, 0x47275820, 0x8e3424c5, + 0x00eddcfc, 0x3027ab01, 0xfe4eab1e, 0x8fff3ea7, 0xe33411fd, 0x1508004d, + 0xff3ea734, 0x3201fd4f, 0xf49b4027, 0x87e1270e, 0x402ef522, 0xa7ff02b0, + 0xfdcfff1e, 0x30074227, 0x234414c5, 0x4232d038, 0x3ea72127, 0xbdfeffff, + 0x271ff932, 0x0ef49b40, 0xbe681ec5, 0x2702ace7, 0xff3ea720, 0x32bdfeff, + 0x40271ff9, 0xa70ef49b, 0xfdcfff3e, 0xc54434c5, 0x2ea76434, 0x11fd8fff, + 0x004da324, 0x8e241508, 0x1e2227fe, 0xa7f84ebe, 0xfeffff2e, 0xd1092499, + 0x83014823, 0x33d40743, 0x2b4487d4, 0x07bd07d4, 0xb4be23c0, 0x3fd6ffff, + 0xff4ea76a, 0xd2f1ffff, 0xff000054, 0x062c4dd1, 0x0104039d, 0x07d22200, + 0x9120ead2, 0x670dce00, 0xac27ed07, 0xff9ea74f, 0xe02bffff, 0x41834007, + 0x24073407, 0x34332633, 0x342b320b, 0xc0053387, 0xf9c43e23, 0x072107ff, + 0x0338014a, 0x03280534, 0x99f4a824, 0x4cc00a14, 0x94d12810, 0x401b0628, + 0x271f40c8, 0x04c49d41, 0x24d1f88e, 0x41c00148, 0x4824d144, 0x6242c001, + 0x014824d1, 0x8e1e43c0, 0xf00103f8, 0xcd05a7fe, 0xf604b499, 0x2700844f, + 0xff4ea731, 0x43d5feff, 0xf88e0148, 0x1ffd24b9, 0x45104cd8, 0x24d54027, + 0xf88e0148, 0xd0eed007, 0xd31eff70, 0x0054d4f1, 0x0301ff00, 0x008843e2, + 0xffffbea7, 0x2cb4d1ff, 0x2443c206, 0x4ea73027, 0xd5feffff, 0x8e014843, + 0x9b4027f8, 0xf49b0bf4, 0x0e09270e, 0xfe7c5ef8, 0xf80e0827, 0xa7fe755e, + 0xfff9cf0e, 0x0394a0be, 0x0054d3f1, 0xc001ff00, 0x062cb4d1, 0xc2c604ca, + 0x0527c330, 0x1efe557e, 0xeaccbebc, 0xff3ea700, 0xb469ffff, 0x010232a9, + 0x192024ce, 0x033027b4, 0x9bb41d41, 0x4ea70ef3, 0xa7fd4fff, 0xfff9cf0e, + 0xbe3843c5, 0x5e014514, 0xbd25ff4f, 0x23a9de1e, 0x24a90144, 0x43ee0142, + 0x4227ff2f, 0x014824d5, 0xf04ef88e, 0xdf3bcf5b, 0xfc4efe2b, 0x25be0f07, + 0xfc0efff1, 0xff0bf00e, 0xcf5bf04e, 0xfe2bdf3b, 0x0f07fc4e, 0xfff113be, + 0x1ea7ff1e, 0xd1feffff, 0xc4014814, 0x14996142, 0x83131109, 0x33248743, + 0x87422b44, 0x1833f133, 0xf1ff000d, 0x00005444, 0x4334caff, 0x149d4127, + 0x9b40270a, 0x4ea70ef4, 0x27fdcfff, 0x4012b931, 0x6043c501, 0x66091499, + 0x07438329, 0x87243324, 0xf9242b44, 0x00005024, 0xa74736ff, 0xffffff4e, + 0x0a0443d1, 0x005424f1, 0x0127ff00, 0x00274342, 0x0127fe0b, 0x2027fe0b, + 0x40273927, 0x0a0824fd, 0x2103ff00, 0xfe0bf398, 0xfe0b0127, 0x4ea7fe4e, + 0x99feffff, 0x1ea70944, 0x83ffffff, 0x87410343, 0x2012d134, 0x2b443306, + 0x4843f143, 0xc6ff0000, 0x1e402724, 0x2c14d10d, 0x0a212706, 0x07202743, + 0x6be40742, 0x27f1abef, 0xc0041e20, 0x26a62222, 0x1ff824f9, 0x4846ff01, + 0x44f14287, 0xff023000, 0x071644d8, 0x03352742, 0x10322b41, 0x03312746, + 0xd8f3f021, 0x031e0127, 0x0e8b0027, 0xfe8ef1eb, 0xffbefe4e, 0x4ea700c3, + 0x11feffff, 0x05f09344, 0x448700fd, 0x0d1841f1, 0x3dbeff00, 0xfe0e00ba, + 0x00332a9e, 0x0419fd4e, 0x1f6bd007, 0x1c464806, 0x1856f393, 0x93330105, + 0x04574ff4, 0x1ebe4305, 0x4bbe0071, 0xfd0e004b, 0x0361749e, 0x31271806, + 0x19e6f493, 0x05439d05, 0x6334f393, 0x29f49303, 0x43050457, 0x006794be, + 0x00294ebe, 0xd41d4127, 0xfb4efd8e, 0xd007b107, 0x0227c207, 0xcf6b1027, + 0x03638bbe, 0x4007bcd6, 0x4fe64c8b, 0xfc9300ce, 0x990519a8, 0x458605c4, + 0x006a0dbe, 0xc5be0c07, 0xc4990360, 0x204c2454, 0x007186be, 0x3bbe051e, + 0xf4930073, 0x99051984, 0x45460544, 0x03611dbe, 0x0069e5be, 0xd41d4027, + 0xb2e4fb8e, 0xf093008e, 0x93051968, 0x0362b9f3, 0x56aef493, 0x54029904, + 0x2c244305, 0x70eebe20, 0xbe051e00, 0x930073bf, 0x051947fc, 0xc554cb99, + 0xbdbe50c0, 0x1007002a, 0xedbe0b07, 0x0c07006f, 0x59beb127, 0xcb9d0360, + 0x60c8be05, 0x9d402703, 0xc49d0dcb, 0x4f19be04, 0x1d422700, 0xff4ea7d4, + 0x4301fd4f, 0xf49b4027, 0xff4ea70e, 0x4499ffff, 0x3b21270e, 0xa724cb23, + 0xfd4fbf3e, 0x41272138, 0x21533405, 0x22d63403, 0x4ea73127, 0xc5fdcfff, + 0xfb8e6043, 0xe04f2ea7, 0x082499fe, 0x930f40ce, 0x0518cff4, 0x994443c1, + 0x34ce0924, 0xff4ea718, 0x4411fd4f, 0x0508209d, 0xb5f49324, 0x44990518, + 0x09249d44, 0xfe4efe0b, 0x08c60f6b, 0x18a2f493, 0x05449905, 0x3bbe4786, + 0xcdbe0360, 0x0abe0049, 0xf3930066, 0x010455dc, 0xd5f49333, 0x43050516, + 0xfd4efe8e, 0xeaff2ea7, 0x053027fd, 0x004f2723, 0x150c0400, 0x9bd00724, + 0xe0070ef3, 0x03241c03, 0x2ea724ec, 0x1efdefff, 0xc1f3e803, 0x3327fc24, + 0x53184c33, 0x44c01d4c, 0x1f4ea7f1, 0x4e05fde4, 0x06923d27, 0x20274315, + 0x4ea74235, 0x05fde40f, 0xa7431541, 0xfdefff0e, 0x4235e30b, 0xf3e8031e, + 0x010404d1, 0x4c333327, 0x1d4c5318, 0xa7f044c0, 0xfde3ff4e, 0x2d274e05, + 0x42150692, 0x43353027, 0x4ea7120b, 0x05fde3ef, 0x35421541, 0x49f49343, + 0xdf440516, 0xff000000, 0x0ea74101, 0x1effe3ff, 0xa740010e, 0xffe3ff1e, + 0xf3e8051e, 0x2ea7061e, 0xd1fdefff, 0x27010424, 0x184c3333, 0xc01d4c53, + 0x4ea7e944, 0x05fde3ff, 0x002d2740, 0x27421504, 0xa7433530, 0xfde3ef4e, + 0x42154105, 0xfd8e4335, 0x15f2f493, 0xa7400105, 0xffffff1e, 0xa7ff155e, + 0xfdefff2e, 0xf3e8031e, 0x27fc24c1, 0x6a4ddc33, 0x051ef5fc, 0x061ef3e8, + 0xefff2ea7, 0x0424d1fd, 0xdc332701, 0xedfc6a4d, 0xfc4efe0b, 0xffffdea7, + 0x270227ff, 0x20dcd110, 0x612abe06, 0x10d4b903, 0x8631270a, 0x533027c4, + 0xc3308b41, 0xc6438b41, 0x8e012744, 0xff4ea7fc, 0x4301fd4f, 0x40270027, + 0x270ef49b, 0x0ed49921, 0x24cb233b, 0x4fbf3ea7, 0x272138fd, 0x53340541, + 0xd6340321, 0xa7312722, 0xfdcfff4e, 0x8e6043c5, 0x27fe4efc, 0xbe122702, + 0xa70360d4, 0xffffff2e, 0x0a1024b9, 0x408b4153, 0x01274138, 0x4ea7fe8e, + 0x01fd4fff, 0x27002743, 0x0ef49b40, 0x270e2499, 0xcb233b21, 0xbf3ea724, + 0x2138fd4f, 0x34054127, 0x34032153, 0x312722d6, 0xcfff4ea7, 0x6043c5fd, + 0xfb4efe8e, 0xffffdea7, 0x10d499ff, 0xfbab4f36, 0xfc9bc027, 0x0efc9b0d, + 0x7fff3ea7, 0x273411fd, 0x004ea301, 0x34150400, 0x00b2c7be, 0x4fff4ea7, + 0x274201fd, 0xd6f49331, 0x431d0453, 0x9d0fd29d, 0x94be10d3, 0xd4990004, + 0x0efc9b0f, 0x44873127, 0xb04043f5, 0xfbebff02, 0x14baf093, 0x0e112705, + 0xfc429efb, 0x4efb8eff, 0x21c207fb, 0x012211c3, 0x07b107c4, 0x37f09310, + 0x5dbe00f9, 0xbf6b00b6, 0xc231d027, 0xf0931d07, 0x0300f954, 0xb64abed1, + 0xc4c40300, 0x46ec0fdc, 0xa7c027bc, 0xfdbfffde, 0x49e6d441, 0x42f14c87, + 0x00016530, 0xf0931c07, 0xbe00f93e, 0x4100b624, 0x4bf093d1, 0x19be00f9, + 0xd15100b6, 0xf950f093, 0xb60ebe00, 0x45402700, 0x03c103d4, 0xc8c420dc, + 0x32f493c8, 0x44190453, 0xfb0e4506, 0x00023a9e, 0x959efb0e, 0xfd4efffb, + 0x05260f6b, 0xf930fd93, 0x93061e00, 0x00f934fd, 0x0d072107, 0x607e1127, + 0x271d07ff, 0xb9089e01, 0x27100700, 0x4ed81e01, 0xffeea7f9, 0x1ea7ffff, + 0x99feffff, 0x14992ae3, 0x6ba00708, 0x27342eaf, 0xa7f98e01, 0xffffd72e, + 0x44d62479, 0xf98e0227, 0x24792379, 0x4f4b9307, 0x400c3027, 0x24193127, + 0x4383c307, 0x40f14487, 0xff00002c, 0x0744e499, 0x09149d20, 0x6b091199, + 0x071383cf, 0x334187d1, 0x83d42bd4, 0xde230f2c, 0xa6ffffb4, 0x24e399c8, + 0x4f4b4307, 0xe29d402c, 0x4e0e1e24, 0x93032723, 0x00f8b3f1, 0x00b8819e, + 0x44c6d479, 0xf98e0427, 0x4ea7a666, 0x27d07fff, 0x31433531, 0x27412044, + 0x07f98e08, 0x10ec53e0, 0x4107c966, 0x43834123, 0x44333487, 0x44e9432b, + 0xff000052, 0xd27d3027, 0xd46dd35d, 0xd23dd31d, 0x2780ec38, 0x04d49d41, + 0x9905de9d, 0x202705d4, 0x40084f4b, 0xd4592127, 0x4103e1c3, 0xd45d3e07, + 0x4ea73183, 0x07feffff, 0x4143bdb2, 0xc6bf6b01, 0xff2ea7ba, 0x23c1ffff, + 0x07c86640, 0xc5485340, 0x4f6b3c23, 0x3ca744f6, 0x0b031e20, 0xff4ea734, + 0x43c5ffff, 0x9d402740, 0xd32504d4, 0xffff4ea7, 0x3c43d5fe, 0xa7a93601, + 0xfeffff4e, 0x1ffd44b9, 0x271248dc, 0xff4ea731, 0x4335d07f, 0x4327071e, + 0x061ef4e8, 0x7fff3ea7, 0xc43431d0, 0x1ea7f141, 0xb9feffff, 0x76014114, + 0xa7312745, 0xd07fff4e, 0x29074345, 0xc40f2c83, 0x3ea71b21, 0x99ffffff, + 0x41034434, 0x2744349d, 0x4014bd41, 0xff4ea701, 0x4255d07f, 0x00e317be, + 0x1ea7d419, 0x03ffffd7, 0x79d41d41, 0x0f4c8314, 0x24074123, 0x28362fab, + 0x41031419, 0x1319141d, 0x34ce1439, 0x83141913, 0xf1448743, 0x00002c42, + 0x0f2c83ff, 0xa7802ca3, 0xffffd73e, 0x3459327d, 0x345d4103, 0x402705e6, + 0xa70ef49b, 0xfd4fff3e, 0xe63834c5, 0x100c27b4, 0x0c27f98e, 0x0bf98e20, + 0x19f293fe, 0x23010512, 0x937f0c03, 0x05120bf4, 0x0b7f0ce3, 0x05440103, + 0x0b030720, 0x4efe0b04, 0xb5f093fe, 0xb1be00f7, 0x44be00b3, 0x51be00bf, + 0xc0befff9, 0x66be0009, 0xfe0e000f, 0x005b149e, 0x3ea7fd4e, 0xc1fd4fff, + 0x4d07683d, 0xf00f4de3, 0x01004fc0, 0x93225663, 0x00f7a1f0, 0x00b37bbe, + 0xf7c3f093, 0x021f2700, 0xbe566371, 0x0700b36c, 0xd8f0931d, 0x321e00f7, + 0xc17c32c1, 0x4fd87434, 0x20000000, 0x3121d834, 0xf770f093, 0xb34abe00, + 0x0ff09300, 0xf19300f8, 0xbe00f837, 0x9300b33c, 0x00f832f0, 0xf85af193, + 0xb32ebe00, 0x93042700, 0x00f7c0f1, 0x00b6619e, 0x7fff2ea7, 0xa121a1d0, + 0x0c4c5324, 0xc00f4c83, 0xa1270f4c, 0x5322a124, 0x0f2c8328, 0x831f23d0, + 0x930fff1d, 0x00f829f0, 0x42273227, 0x00b2f3be, 0xf1930427, 0x1e00f853, + 0xa124a1c4, 0x4efd8e24, 0xff3ea7fe, 0x4027ffff, 0xbd0d3299, 0x10063a34, + 0x87202724, 0x5041f142, 0x27000168, 0xb6009e01, 0x07fb4e00, 0xf6bf6bb0, + 0x7e00a0bf, 0xa4beff1c, 0x3ea70023, 0x27fff9cd, 0x3d341d40, 0xdf3ea734, + 0x051effff, 0xf4e84627, 0xd3563d01, 0x4fff4ea7, 0x274401fd, 0x0400000e, + 0x4aa34433, 0x77be3405, 0xfc93002d, 0x050510bc, 0xdf0ea7c0, 0xfcbeffff, + 0xc40100b6, 0x012745b6, 0xf80ef193, 0xb5a09e00, 0x4b0ea700, 0x1227fff7, + 0x00ba8ebe, 0x3ea74027, 0x1dffffd7, 0x7d343d34, 0xffcea734, 0xc49dffff, + 0x2ac49d25, 0xc53ccdc5, 0x5dbe40cd, 0x4fbe002d, 0x75befff7, 0xbcbe0024, + 0xc0be0009, 0x2dbe0049, 0xcd9d004a, 0x11cdbd44, 0xbe0b070a, 0x27000ff7, + 0xff4ea730, 0x439dffff, 0x9efb8e25, 0x9e00482b, 0x4e00480c, 0xff4ea7fd, + 0x4499feff, 0x83202709, 0x33d40743, 0x2b4487d4, 0xb4de23d4, 0x0ea7ffff, + 0x27ffffd7, 0x4b047914, 0x1940484f, 0xce438304, 0x21031824, 0x34f13287, + 0xff000028, 0x4ea32123, 0xf5800000, 0x00002834, 0xf02103ff, 0xb7bed8f1, + 0x412700e0, 0x1904d49d, 0x033027d4, 0x9bd41d41, 0x4ea70ef3, 0xc5fd4fff, + 0xf39b3843, 0xff4ea70e, 0x4399ffff, 0xbf2ea70e, 0x3138fd4f, 0x24054127, + 0x24033153, 0xfd8e32d6, 0xa0befe4e, 0x37be0047, 0xfe0e000f, 0x00159c9e, + 0x0027fe4e, 0x005325be, 0xf09efe0e, 0x8f9e000e, 0xfd4e0048, 0xd0070409, + 0x04274576, 0xf717f193, 0x500a1e00, 0x93042749, 0x00f73af1, 0x00b4799e, + 0x4f580411, 0xfffffffe, 0xf1930427, 0x1e00f74f, 0x500429ec, 0x2701004d, + 0x64f19304, 0xdd1e00f7, 0x00e01dbe, 0xffd70ea7, 0x190439ff, 0xcc432b03, + 0x01393a43, 0x0339d411, 0xd229de09, 0x83104c33, 0x31030fec, 0x2833e4ab, + 0x1383033d, 0x1187e2ab, 0x1ef50479, 0xff00002c, 0x46762127, 0x070fec83, + 0x804fa34e, 0x7dffffff, 0x27031e04, 0x9b402720, 0x3ea70ef4, 0xc5fd4fff, + 0x25963834, 0xf1930127, 0x5e00f728, 0x3301ff78, 0xf49b4027, 0xff4ea70e, + 0x4499ffff, 0x3b21270e, 0xa724cb23, 0xfd4fbf3e, 0x41272138, 0x21533405, + 0x340324c6, 0xfd8ef31e, 0xf293fe4e, 0x270511ec, 0xa7e02730, 0xfffe730e, + 0x01221c27, 0x004e8304, 0x44d60300, 0x191e3103, 0x00004ec4, 0x24191303, + 0x24214616, 0xff004e83, 0x004e04ff, 0xe103ffff, 0x03180c03, 0x32d4102c, + 0x3634860c, 0xccf1f0e5, 0xfe8e0027, 0xfe8e0127, 0x0499fb4e, 0x53d12710, + 0x3803c141, 0xc207b107, 0xd3abd43b, 0xcf6bbf6b, 0x2c271027, 0x3b412711, + 0x034d8b41, 0x994d8611, 0xe4076804, 0xef03e433, 0x00058130, 0x15ff4cc0, + 0x0188e3b9, 0x0189e4b9, 0x4c2b3b2b, 0x0189e4bd, 0x0188e3bd, 0x07690499, + 0x03e433e4, 0x058130ef, 0xff4cc000, 0x88e3b915, 0x89e4b901, 0x2b3b2b01, + 0x89e4bd4c, 0x88e3bd01, 0xf0020301, 0xfb8ea8f2, 0x1499fe4e, 0xd8e10708, + 0x03993d41, 0xff3cc070, 0x0b34330f, 0x8934b930, 0xbd412301, 0x99018934, + 0x120707e2, 0x029d1433, 0xb9100b70, 0x07018914, 0x03353332, 0xbd233341, + 0x2b018914, 0x9433f132, 0xc5ff0001, 0x03997403, 0x09e39d70, 0x067402c1, + 0x0b343326, 0x8934b930, 0xbd410301, 0x07018934, 0x4efe8e02, 0x07d107fb, + 0xdf0ea7b0, 0xffbeffff, 0xd3c100b3, 0x83012734, 0x33330f3c, 0x007c34f9, + 0x1d07ff00, 0x34fd44a3, 0xff00007c, 0xc110d499, 0x415338d3, 0x1c03043b, + 0x2703ab68, 0x11ec27c0, 0x4c3b4127, 0xc103408b, 0x14194c46, 0x24332407, + 0x4cc02b0b, 0x23b915ff, 0x24b90189, 0x31030188, 0x24bd4103, 0x23bd0188, + 0x14390189, 0x24332407, 0x4cc02b0b, 0x23b915ff, 0x24b90189, 0x31030188, + 0x24bd4103, 0x23bd0188, 0x12030189, 0x99b2fef0, 0x4cc007d4, 0x340731ff, + 0x43333533, 0x34f1342b, 0xff00018c, 0x00004ee3, 0x004ea303, 0x34f50200, + 0xff00018c, 0x9944d4c1, 0x34f534dd, 0xff000194, 0x018c3dfd, 0x0ea7ff00, + 0x0effffdf, 0xb31d9efb, 0x07f94e00, 0x0f4c8340, 0x24873407, 0x322b3533, + 0xd333d307, 0xdf03d32b, 0x00058560, 0xdc99a407, 0x07a33307, 0xa7ba0790, + 0xffffdf0e, 0xff84be23, 0xb30cbeff, 0xffccc000, 0x074c071c, 0x3343333c, + 0xf1342b35, 0x00018c34, 0x004ea3ff, 0x34f50300, 0xff00018c, 0x007ca4f9, + 0x44d8ff00, 0x270d070a, 0x7e212711, 0xccc0fdf4, 0x4c073eff, 0x43333c07, + 0x342b3533, 0x019434f1, 0x49a6ff00, 0xd3c14c07, 0x03443350, 0x0581304f, + 0x8c43d500, 0x58d39901, 0x018a43bd, 0xbd5ad399, 0xf9019043, 0x000080aa, + 0x8b4abdff, 0x99281e01, 0x488604b4, 0x9950d0c1, 0x21275ad1, 0x002895be, + 0x9950d0c1, 0xd19904b2, 0x23040358, 0x2884be21, 0x9d402700, 0xb29904b4, + 0x54d0c105, 0xbe59d199, 0x27002872, 0x05b29d20, 0xc009d399, 0x3313ff3c, + 0x303f0334, 0xb9000581, 0x23018934, 0x8934bd41, 0x1db45901, 0x5d4123b2, + 0xffcea7b4, 0xc4b9ffff, 0x91030100, 0xc4bd4123, 0xd4c10100, 0xfcc9c5ac, + 0xf1934319, 0xd1050d54, 0x27042812, 0xcb433b41, 0xd5302742, 0xc5042814, + 0x0ea7acd3, 0xbeffffdf, 0x9900b1e3, 0x0ea70ec1, 0x0efff9cd, 0xb5119ef9, + 0x07fd4e00, 0x0fdc83d0, 0x0ea7d333, 0xbeffffdf, 0xf900b1e6, 0x00007cd4, + 0x104c3cff, 0xfd104ca3, 0x00007cd4, 0xdf0ea7ff, 0xa8beffff, 0x4ea700b1, + 0x99ffffff, 0x0ea70e41, 0x0efff9cd, 0xb4d19efd, 0x23f74e00, 0x273f07f3, + 0x0c4c2720, 0x34033205, 0xfd93f4c8, 0xa7050e5c, 0xffffdf0e, 0x97be7d07, + 0xbea700b1, 0x27fffe6f, 0x23802790, 0xab07407c, 0xa401a423, 0x00004ed8, + 0xd4192303, 0xd3994806, 0xff3cc009, 0x0b4f0709, 0x1d412734, 0x0ad39934, + 0x09ff3cc0, 0x310b1f07, 0x341d4127, 0x4e83a401, 0xe4030000, 0x0300004e, + 0xdc390089, 0xb411c976, 0xd47948e6, 0xd01147e6, 0x2708d199, 0x2744be21, + 0x79d01100, 0x03d159d2, 0xbe212304, 0x27002736, 0x15d47d40, 0x199127bc, + 0xa7c9d6dc, 0x0bd39940, 0x9d0ad49d, 0x35a609d4, 0xc7beb021, 0x40270027, + 0x990bd49d, 0x45a60cd4, 0xb7beb001, 0x40270027, 0x050cd49d, 0x09bc25bc, + 0x012916d2, 0xe33707a4, 0x0300004e, 0xb28da405, 0x9340270e, 0x050d93f2, + 0x2b0cb48d, 0x2e341927, 0x1d40a784, 0x98310334, 0x038103f2, 0xbc0310dc, + 0x228ce418, 0xd027ff32, 0x4d0b4f07, 0x46964419, 0x66be0d07, 0x09ab0009, + 0x04864027, 0x94074127, 0xd1039f6b, 0xe130dcc4, 0xffdf0ea7, 0xb06dbeff, + 0xa7966600, 0xffffff4e, 0xa70e4199, 0xfff9cd0e, 0x00b396be, 0xf78ef303, + 0x0499f84e, 0xe6c00705, 0x9900bf4f, 0x38070708, 0x3f033433, 0x00058130, + 0x019134b9, 0xa9ff4ce4, 0x923ab900, 0xfface401, 0x967e00a0, 0x22cb89fe, + 0x9924cd89, 0xbc0306c4, 0x0fdc030f, 0xd473b473, 0xd10344c6, 0x0b07d153, + 0x99be1d07, 0x90070007, 0x2dff0cc0, 0xa606c499, 0x04c4994b, 0xbe0b41d8, + 0x07000677, 0x1ed027ca, 0x2944dc36, 0x1d070b07, 0x000773be, 0x0cc4c007, + 0x09070bff, 0x0008b4be, 0x471e4027, 0x50be0907, 0xd0070006, 0x48be0c07, + 0x0b1e0006, 0x000642be, 0xca07d007, 0x48070027, 0x44333807, 0x81304f03, + 0x35330005, 0x49bd8333, 0x382b0191, 0x01983df5, 0x4cbdff00, 0x41270192, + 0x019030f5, 0x031eff00, 0x04074127, 0xfa4ef88e, 0xffff4ea7, 0xfc4cc1ff, + 0x01004bb9, 0x241ebc0b, 0x007cd4f9, 0x4c83ff00, 0x0e42c422, 0xd4fd4127, + 0xff00007e, 0x427e0c07, 0xfd4027fc, 0x00007cd4, 0x07c103ff, 0x0fdc83dc, + 0xcbcad333, 0x21f493d4, 0x2407050c, 0x021f2d03, 0x2ce33407, 0x7f3ce37f, + 0x3c033419, 0xf932c280, 0x0a7efd93, 0x70d39905, 0x19ff3cc0, 0x3f033433, + 0x000582b8, 0x41233439, 0x40a7343d, 0x2770d49d, 0x74d4c540, 0xa7fd747e, + 0xffffdf0e, 0x00af21be, 0xa744dcc1, 0xffffff4e, 0x43d53027, 0x43bd0cb0, + 0x2d270100, 0x4cc50330, 0x244cd5fc, 0x730ea706, 0x1027fffe, 0x00a195be, + 0x3d033d07, 0x20270188, 0x05884c27, 0xc8340332, 0xa6f493f4, 0xfb93050b, + 0x27050a10, 0xa0a7223c, 0x4a3d4a1d, 0x4c03db07, 0xc1f39010, 0x46a63cb4, + 0x933bb199, 0x050a2ff0, 0xc7be2127, 0x40270024, 0xbe3cb4c5, 0x07000787, + 0x1a2ebe0c, 0xa7402700, 0xffffdf0e, 0x9d44bcc5, 0xb4c570ba, 0x9efa0e74, + 0x4e00ae73, 0x93f523fa, 0x00f0eff0, 0x00a9dbbe, 0xf0fff093, 0xa9d2be00, + 0x72cea700, 0xfd93fffe, 0x27050b31, 0x23bc07a0, 0xd8be01b1, 0x030000ee, + 0x19d0594b, 0x19d123d3, 0x99d103d4, 0xd19908d2, 0x15f20509, 0x39b201f1, + 0x122c53d1, 0xf2252183, 0xec53c219, 0xc1f23510, 0xf05507c2, 0xf065013b, + 0xc2c1f245, 0x751a070b, 0xc12e07f2, 0x238303ce, 0xf0e8f093, 0xbefe8500, + 0x0300a970, 0x10dc03a1, 0xc418cc03, 0x939f22ac, 0x00f109f0, 0x00a95bbe, + 0xffffcea7, 0x00c1b9ff, 0xfcc2c101, 0xf108f093, 0xa946be00, 0x15f09300, + 0x3dbe00f1, 0xcbc100a9, 0x00cab9fc, 0x5eab0b01, 0x24f90097, 0xff00007e, + 0x3407b103, 0x24f94596, 0xff00007c, 0x00814fe6, 0x007f2ef9, 0x2cf9ff00, + 0xff000083, 0xf907d499, 0x00007c22, 0x15fe05ff, 0x05de99fc, 0xdec1fe25, + 0x99fe3538, 0xfe4568de, 0x5569de99, 0x6ade99fe, 0xde99fe65, 0x99fe756b, + 0xfe856cde, 0x956dde99, 0x6ede99fe, 0xde99fea5, 0x99feb56f, 0xfec570de, + 0x71de9930, 0x9934fec5, 0xfec572de, 0x73de9938, 0x993cfec5, 0xfec574de, + 0x75de9940, 0x9944fec5, 0xfec576de, 0x77de9948, 0xbe4cfec5, 0x0700a89c, + 0x0f4c834b, 0x24873407, 0x322b3533, 0xd333d307, 0x2407d32b, 0x8560df03, + 0x23330005, 0xf0931b07, 0xea00f08a, 0x03ff45ba, 0x93fa8ef5, 0x05084bf4, + 0x439d30a7, 0xc5302770, 0x4d037443, 0x24070188, 0x021f2d03, 0x2ce33407, + 0x7f3ce37f, 0x3c033419, 0xf932c280, 0x09b3f493, 0x222c2705, 0x431d30a7, + 0x4c03433d, 0xa7f2a010, 0xffffff4e, 0x010143bd, 0xfc4efe0b, 0xfcabd007, + 0x0ea7c566, 0xbeffffdf, 0xa700acc6, 0xffffff3e, 0x22fc34c1, 0x3fdc274d, + 0x33b9181e, 0x4d1b0100, 0xd027433a, 0xdc830c1e, 0xf9d3330f, 0x00007cdd, + 0xa7c566ff, 0xffffdf0e, 0x00ac72be, 0x0d07fceb, 0xf54efc8e, 0x4f6bf063, + 0x0ea77007, 0x07ffffdf, 0x07b30791, 0xc1f40562, 0xfac130f5, 0xac70be34, + 0x83260700, 0x23330f2c, 0x4027c207, 0xce23bf6b, 0x27ffff84, 0x7e23fd33, + 0xfdff0000, 0x00007f2b, 0x8224fdff, 0x03ff0000, 0x99c43dc6, 0x94993798, + 0x231b070c, 0x998183c6, 0x44d6077d, 0x00ca8fe6, 0x007f21fd, 0xdce4ff00, + 0xbe00bfff, 0xc6fff6ec, 0xa7302708, 0xfffe730e, 0x01221c27, 0x180c0302, + 0x00002e83, 0x03250603, 0x1ef17831, 0x6bd30709, 0xffdcc4df, 0xdf0ea70f, + 0xd0beffff, 0x072700ab, 0x0701265e, 0x333d074d, 0x2b353343, 0x8c34f134, + 0xf5ff0001, 0x00019432, 0x004ee3ff, 0x4ea30300, 0xf5010000, 0x00018c34, + 0x047299ff, 0x10274d07, 0x32fd4433, 0xff00018d, 0x81304f03, 0x20a70005, + 0x019831f5, 0x42bdff00, 0x42bd0192, 0x34f10191, 0xff00018c, 0x019031f5, + 0x4ee3ff00, 0xf5040000, 0x00018c34, 0x309489ff, 0x019c34ed, 0x34e9ff00, + 0xff00019c, 0x03329289, 0x44530f4c, 0x019e32ed, 0x34edff00, 0xff0001a0, + 0x4d1df4b1, 0x7d9d4a07, 0x1d4b0b07, 0xdcc4194d, 0x00271142, 0xf9be1607, + 0x08460016, 0x42a3c419, 0x5401c41d, 0xf4934696, 0x99050670, 0x16072640, + 0xb6be2027, 0x50050147, 0x45f65401, 0xffdf0ea7, 0xab01beff, 0x1e082700, + 0x9d412757, 0x402704c4, 0x9905c49d, 0x44c60c94, 0x4496f401, 0x3d078646, + 0x33334d07, 0x432b4533, 0x019445f5, 0xc459ff00, 0xc45d4123, 0xb6369499, + 0x04749946, 0xc30944dc, 0x1dab0bb1, 0x990e1ead, 0x45561674, 0xab0bb1c3, + 0xa41d40a7, 0xffdf0ea7, 0xaaa9beff, 0x43002700, 0x4ef58ef0, 0xa7a007fa, + 0xffffdf0e, 0x00aab9be, 0x001dd1be, 0xffff4ea7, 0x094499fe, 0x34874383, + 0x432b4433, 0x004d44f9, 0x4403ff00, 0xa4ca400b, 0xdf0ea70e, 0x6cbeffff, + 0x0b2700aa, 0x2a07fa8e, 0x070f2c83, 0xf9433342, 0x00007c43, 0x23c407ff, + 0xffff84ce, 0x00ac3ff6, 0x45334207, 0x432b3287, 0xe333e407, 0xef03e42b, + 0x00058560, 0xc5ace4c1, 0x46e634ea, 0xf2934119, 0xd1050580, 0x27042823, + 0xcb413b41, 0x2824d543, 0x6df49304, 0x43d10505, 0x4bd1042c, 0x00270428, + 0x051e3bab, 0x01033153, 0xd183d307, 0x4007d316, 0x44333007, 0x342b3633, + 0xf4932127, 0x010515d8, 0x3b302b41, 0xff4ea720, 0x4011fd4f, 0xf4933333, + 0xab050530, 0x2842d52b, 0xc5130b04, 0xe1c5e410, 0xa74127ac, 0x27c41d30, + 0x9dc37d40, 0xc43d05cd, 0x9d04cd9d, 0x3ea707e3, 0xb9ffffff, 0xb6010034, + 0xfc3ac544, 0x34bd4103, 0x0ea70100, 0xbeffffdf, 0x2700a99b, 0x93fa8e00, + 0x05034ff2, 0x19303c27, 0x24280324, 0x0b012741, 0x27f398fe, 0x6bfe0b00, + 0xf103330f, 0x057f9c00, 0x93fe0b00, 0x05032bf3, 0x019034a9, 0x34a9404e, + 0x00270192, 0x0127140e, 0xfe0b0f6b, 0xfe93fe4e, 0xd1050310, 0xce0184e4, + 0xe4d11040, 0x41ce0180, 0x07020709, 0x1ecd3e13, 0x6b012703, 0x4efe8e0f, + 0xedfd93fd, 0xd0d10502, 0x0986018c, 0x00a788be, 0x2c274027, 0x8cd4d560, + 0x273d0701, 0x05420710, 0x03212331, 0x93f4b834, 0x0502c7f3, 0x32ad4027, + 0x34ad0192, 0xfd8e0190, 0xf393fb4e, 0xd10502b4, 0x07018434, 0x07b107c0, + 0x0d40ced2, 0x018034d1, 0x34d1412e, 0x240e0188, 0xf493a63e, 0xd5050294, + 0xd501884d, 0xd501844c, 0x8e01804b, 0x93fc4efb, 0x05027ffc, 0x018cced1, + 0xc1d1f063, 0xc2d10180, 0xc3a90184, 0xc4a90190, 0xf0930192, 0x0500ec9b, + 0xa416befe, 0xdbf09300, 0x0dbe00ec, 0xd02700a4, 0xc311c219, 0xf0931d07, + 0x0300ecea, 0xa3fabed1, 0xc4c80300, 0x93ea30dc, 0x00ececf0, 0xfc0ef043, + 0x00a3e79e, 0xfd93fb4e, 0xa9050228, 0x070190d4, 0x2ec107b0, 0x92d4a940, + 0x7e144e01, 0xdcadff23, 0xdbad0192, 0xf3930190, 0xd1050208, 0xf6018c34, + 0xd100ef4f, 0xa901883d, 0xd1019234, 0xa9018032, 0xd8019030, 0xe40711d3, + 0xe8030703, 0xe7e307e3, 0x10001d27, 0xe407081e, 0x1c27e103, 0x83420780, + 0x202cd842, 0x2745060f, 0x1e02903d, 0xe03d2713, 0x060d1e01, 0x003d2745, + 0x27051e02, 0xd801803d, 0x43070dd1, 0xe67f4c83, 0x803c0344, 0x2e07342b, + 0x2433209b, 0x42071123, 0x1103418b, 0x210b44c6, 0x4307242b, 0x3407409b, + 0x3c831e07, 0xd611237f, 0x1e040734, 0x804c030b, 0x032b0407, 0x07804c23, + 0x9b312b3e, 0x83430734, 0x44e67f4c, 0x2b803c03, 0x9bd00734, 0x93d20bd1, + 0x050157fc, 0xc4d1d30b, 0x0d070184, 0x9b200c03, 0x27100704, 0xa779be21, + 0x271c0700, 0xd5bc07e0, 0x1e018cc0, 0x07e10318, 0x0324e630, 0x322b203c, + 0x03074227, 0x1315141d, 0x18030d0b, 0x0184b4d1, 0x2c832007, 0xdee4ca1f, + 0x010ef493, 0x8443d105, 0x03002701, 0xf9181e31, 0x057f9824, 0x0d42c400, + 0x0f6b4127, 0x7f9824fd, 0xfb8e0005, 0x20070103, 0xf3102333, 0x8eff0c27, + 0x330f6bfb, 0x980f0303, 0x1900057f, 0x27412004, 0x27fe0b00, 0x27041d42, + 0x4efe0b01, 0x07d027fd, 0x3ed1030d, 0x30dcc4dd, 0x93fd8ef7, 0x05024bf2, + 0xa74420c1, 0xffffff3e, 0x062830d5, 0x062834d1, 0x34d51027, 0x40a7062c, + 0x010934bd, 0x34ad4027, 0x219d010a, 0x0430d506, 0x08219d0a, 0xf393fe0b, + 0x99050218, 0x10270432, 0x402722e3, 0x03fc34d5, 0x9d06319d, 0x319d0432, + 0x4efe0b08, 0xd60f6bfe, 0x3ea76f0f, 0xd5ffffff, 0xd5062830, 0xa7062c30, + 0xfff9cf4e, 0x403d401d, 0x31ad1027, 0x4c270102, 0x0834bd0f, 0xbd40a701, + 0x93010934, 0x0501cbf2, 0x010a31ad, 0x249d4027, 0x06209d08, 0xd520ec27, + 0xd50a0430, 0xbd062030, 0x270d1030, 0xf33ea720, 0x4e07fffe, 0xe1233205, + 0xf4b83403, 0x3ea740a7, 0x05fffe7b, 0x91f49334, 0x4ed50501, 0xfe8e03fc, + 0xffff3ea7, 0x253499ff, 0x40274224, 0x010a34ad, 0xf54efe8e, 0xffff3ea7, + 0x273499ff, 0x01274fe6, 0x0166f493, 0x08449905, 0x011b4ff6, 0x062830d1, + 0x062c39d1, 0x01023ea9, 0x34a9902b, 0x19070104, 0x1103e42b, 0x4389141e, + 0xb04489b2, 0x4e2b430b, 0x41cc4f8b, 0x2301031f, 0x83400791, 0x07340741, + 0x33343324, 0x2b320b26, 0x23438734, 0xfff9c44e, 0xa7d4f1f0, 0xffffff4e, + 0x70278407, 0x0106f693, 0xff5ea705, 0x40d5fd4f, 0xad5e0628, 0x2c8ad100, + 0x076b1906, 0x0f4c834a, 0xe183ea07, 0x15331407, 0xce072e07, 0x142b4487, + 0x2433c633, 0xd1072c0b, 0xd3332e2b, 0xc287d12b, 0xf9c4ce23, 0x60df03ff, + 0x07000585, 0x072c073a, 0x27b5461d, 0x30c4ad40, 0xbd641d01, 0xbe0d118a, + 0x930032d1, 0x0500abf2, 0x11482389, 0xb2c38d54, 0x0d0884d5, 0x0d1080bd, + 0x864f04cc, 0x1403c407, 0x062c84d1, 0xf9cf0ea7, 0xd54103ff, 0xbe062c84, + 0x27012a18, 0x07331e71, 0xd541034a, 0x27062c84, 0x0ef49b40, 0x892ed489, + 0x0ea74823, 0x0bfff9cf, 0x48248d43, 0x0129f3be, 0x641d4127, 0x71279103, + 0x004ef093, 0x4e92f005, 0x8e0707ff, 0x8e0027f5, 0x93fb4ef5, 0x05003bfd, + 0x1078d4d1, 0xb107c007, 0x0c2745b6, 0x1b40be80, 0x78d0d500, 0x78d0d110, + 0x073c0710, 0x801c274b, 0xe952f293, 0x99d9be00, 0x78d0d100, 0x9efb0e10, + 0x9e001ed1, 0x4e001ecd, 0xfdfd93fd, 0xd3c104ff, 0x78d4c144, 0xd499432e, + 0xbe46267c, 0x27001e6a, 0x7cd49d40, 0xc544d4c1, 0xfd8e78d4, 0x0035c69e, + 0xd007fd4e, 0x2c271007, 0x75f09350, 0xe3be0503, 0x08060096, 0xf3930d07, + 0x27050368, 0x0201144c, 0x32050403, 0xf4a83403, 0xf4933127, 0x9d04ffac, + 0xfd8e0a43, 0x699e04c6, 0x010700a3, 0x1e272027, 0x9e02a000, 0x4e00a433, + 0xf788befe, 0x2704d6ff, 0x53fe8e01, 0x8e018305, 0x93fe4efe, 0x0500c3f4, + 0x2c032407, 0xe334073f, 0x3ce37f2c, 0x0334197f, 0x32c2803c, 0x101c27f9, + 0x00a6f393, 0x0720a705, 0x23320541, 0xb8340311, 0x4df493f4, 0x202704ff, + 0x439d30a7, 0x8441c566, 0x429d423d, 0x0c419d0b, 0x421d425d, 0x04304d03, + 0x1e7f4ce3, 0x0cf49b07, 0xd0804c03, 0x0591a04f, 0x4027f400, 0x930ef49b, + 0x050347f0, 0x0c401d27, 0x00309bbe, 0x0012f493, 0x03240705, 0x34073f2c, + 0xe37f2ce3, 0x34197f3c, 0xc2803c03, 0xf393f932, 0x2704fffc, 0x0d402728, + 0xb8380334, 0xc43c23f2, 0x2c032307, 0x7f2ce37f, 0x197f3ce3, 0x803c0334, + 0x93f932c2, 0x04ff53f3, 0x4c272027, 0x03320520, 0xa7f4c834, 0xfffb430e, + 0x0cbe1827, 0x0ea700a7, 0x27fffaf3, 0xa701be14, 0xa30ea700, 0x1027fffa, + 0x0e802c27, 0x96049efe, 0xc1f54e00, 0xf1a33414, 0xdfff3ea7, 0x27f445fd, + 0x2000004e, 0x020834d5, 0x34d54027, 0x4ea70208, 0x11fd4fff, 0xac14c143, + 0x43c5f055, 0x69f493ac, 0x449904fe, 0xe0b10754, 0x012b204c, 0x50073027, + 0x195ef335, 0x34bdc101, 0x8926b889, 0x52a928b4, 0x849b010c, 0x071cdc33, + 0x0859d132, 0x038d0b01, 0x03051e31, 0xf0212398, 0x0c1e03f3, 0x4dcb9401, + 0x00004fd4, 0x07ed1000, 0x03a90762, 0x07a82361, 0xf0a8037d, 0x402709f6, + 0xf425c807, 0xac01271e, 0x4707a311, 0x4ccbf325, 0x00004f30, 0xc8071000, + 0xf321131e, 0x8334b4c1, 0xffffff3f, 0x1c4c330f, 0xf32534ab, 0x4d2b4c07, + 0xcc5e4fc6, 0x3f074340, 0x1d070b07, 0x34032f07, 0x034f04be, 0xc11a8dc2, + 0x00874cb4, 0x0401040b, 0xf4014616, 0x432bf311, 0xf4053487, 0x030531a3, + 0x0b073f07, 0x2f071c07, 0xdabe3403, 0xf411034e, 0xd42bdc07, 0xd7077d02, + 0x3c072d07, 0x2f83f131, 0x0fffffff, 0x3f830b07, 0x0fffffff, 0x0045d1be, + 0xfd218c4e, 0x625e7c07, 0x2b3a07ff, 0xa6337339, 0x0c54a939, 0x2b260701, + 0xad210343, 0x1e010c54, 0x01a4111a, 0x059415a3, 0xd4a80393, 0x510a104c, + 0x0b4333f3, 0x8c49c543, 0xf2209803, 0x5803f331, 0xf3353103, 0x310db499, + 0xe234f2f3, 0xa7fd41fe, 0xffffdf0e, 0x330fdc83, 0xa1f4bed3, 0x7cd3f900, + 0x99ff0000, 0x2307b9b4, 0x412428a3, 0x2ca32307, 0x7ed4f948, 0xfdff0000, + 0x00007cd2, 0xfd4123ff, 0x00007ed4, 0xdf0ea7ff, 0xa0beffff, 0xb0c100a1, + 0x55e3be34, 0xff4ea703, 0x4301fd4f, 0xf49b4027, 0xff4ea70e, 0x4499ffff, + 0x3b21270e, 0xa724cb23, 0xfd4fbf3e, 0x41272138, 0x21533405, 0x22d63403, + 0x3ea74127, 0xc5fdcfff, 0xb4996034, 0xc144e612, 0x410430b4, 0xfffb35be, + 0xf58ef183, 0xfb93fa4e, 0x1904fca0, 0xe81fe6b1, 0x44bdc100, 0x20274027, + 0xb49d30a7, 0x4ab38d0c, 0xb49db265, 0x4cb2c50b, 0x000fdf83, 0xd04c8000, + 0xdfa3d123, 0xfffffff0, 0x11c4d103, 0x874d076b, 0x2b45333d, 0x33340743, + 0x07342b33, 0x60af03a3, 0x07000585, 0x070b07c3, 0x2e4cbe1a, 0x30cf0300, + 0xbe000581, 0xbe00a350, 0xbe00a154, 0xb900a143, 0x36043cc4, 0x071a0745, + 0xfd977e0b, 0x0437c3b9, 0x24ff3cc0, 0x0435c4b9, 0xb39d47e6, 0x34c3b966, + 0x9d112704, 0xc4b967b3, 0x44960446, 0x41071027, 0x43ab4633, 0x0767b49d, + 0x333d874d, 0x07432b45, 0x2b333334, 0x303f0334, 0xb9000581, 0xb9044634, + 0x27043432, 0x27449611, 0x33410710, 0x9342ab46, 0x04fbd7f2, 0xb95a249d, + 0x27044034, 0x5b249d10, 0x043534b9, 0x11274486, 0x274423c1, 0x1d310340, + 0x5c219d24, 0x8e4423c5, 0x93fe4efa, 0x04fbabf3, 0x41443419, 0x341d4227, + 0xbefefb7e, 0x0efff0c2, 0xfc175efe, 0xd207f74e, 0x80074207, 0x2027b107, + 0x42053827, 0xf3c84403, 0x2712b489, 0x89d40d31, 0xd12d14b1, 0x3b34b499, + 0x1ed39d34, 0x89058499, 0x44c632b9, 0x91539103, 0x274b8499, 0x27420430, + 0x4884c131, 0x4e583f6b, 0x07ffff00, 0x21ad03a3, 0x270b1e80, 0x273486a1, + 0x02ad13a0, 0x30b38980, 0xec03e907, 0x0f3c030f, 0xe4533453, 0x37037a07, + 0x4a07e803, 0xe3207c83, 0x83e7e337, 0x6676c642, 0x902d2745, 0x104c2702, + 0x2d27181e, 0x4c2701e0, 0x060f1e60, 0x002d2745, 0x270c1e02, 0x1e01802d, + 0x802c0306, 0x1307242b, 0x1e9b1433, 0x4d834107, 0x45060fff, 0x10001d03, + 0xc207142b, 0x2c47c39b, 0x42070e07, 0x4c830153, 0xe601237f, 0x802c0344, + 0x4047242b, 0x342b3e07, 0x43073c9b, 0xe67f4c83, 0x803c0344, 0xb489342b, + 0x0b209b30, 0x0f4c0321, 0x230b4453, 0xd48dd215, 0x0584990c, 0x00a54ff6, + 0x0730b389, 0x03e103e9, 0x53317331, 0x0f3c03e1, 0x530fec03, 0x03e45334, + 0x07e80337, 0xe337e34a, 0xc64283e7, 0x27456676, 0x2702902d, 0x181e104c, + 0x01e02d27, 0x1e604c27, 0x2745060f, 0x1e02002d, 0x802d270c, 0x03061e01, + 0x242b802c, 0x14331307, 0x41071e9b, 0x0fff4d83, 0x1d034506, 0x142b1000, + 0xc39bc207, 0x0e072c47, 0x01534207, 0x237f4c83, 0x0344e601, 0x242b802c, + 0x3e074047, 0x3c9b342b, 0x4c834307, 0x0344e67f, 0x342b803c, 0x9b30b489, + 0x73410320, 0x03210b41, 0x230b0f4c, 0xd2254453, 0x890ed48d, 0xd48d2884, + 0x07839910, 0x0b2a8489, 0x12d48d43, 0x8932b189, 0xdcbe30b0, 0x2ea70032, + 0xa9ffffff, 0x550d3e23, 0xa93746d0, 0x860d4024, 0x0ad40946, 0x18d48d34, + 0x0d4024a9, 0x430ad329, 0x8e1ad38d, 0x93f54ef7, 0x04f9affb, 0xa744b3c1, + 0xffffff4e, 0x449913a5, 0x07f0e326, 0x07700791, 0x27422082, 0xa25e145c, + 0x08b49908, 0x5c274506, 0x08975e11, 0xbe44b0c1, 0x07fff38b, 0x8a0ff650, + 0x44b4c108, 0x070f4c83, 0x87353334, 0x07342b44, 0x2bd333d3, 0x60df03d3, + 0xc1000585, 0x60d5acd6, 0xb499011c, 0x204c2054, 0x08be0d07, 0xb4990053, + 0xc94fe60a, 0x0a949903, 0xc1104ce0, 0xa9b4b903, 0xf1b2b903, 0xf9fa9303, + 0xb1b903e1, 0xa50503f2, 0xb3b9a515, 0x410303aa, 0xb0b92803, 0x180303f3, + 0x5d04a49d, 0xadb4b9a2, 0xf4b2b903, 0x7d310303, 0x1d1b07a1, 0x05a39da4, + 0xa29da03d, 0x201d0306, 0x07282704, 0x900cbe0a, 0x07c00700, 0x0319070b, + 0x9303a80d, 0x03e18bf2, 0x07fd4b7e, 0x81f0931b, 0x1d0303e1, 0x2c270400, + 0x8fe8be20, 0x96412700, 0xab4027c4, 0xd8bea940, 0x6cb3c103, 0x44962127, + 0x10272027, 0x11273e0e, 0xb909b399, 0xab03a8b4, 0x0e102721, 0x07112734, + 0xe641ab42, 0xc101314f, 0x012344b0, 0x16f9027e, 0x0f5c2705, 0xbe079c5e, + 0x59ffeba1, 0xa8b0b9a4, 0x27493003, 0x790b1e21, 0x103027a4, 0x07312749, + 0x35f49323, 0x443903e1, 0x42043027, 0x13073127, 0x25461f6b, 0xbd03b107, + 0x0b1e8021, 0x1486b127, 0xbd13b027, 0x4ea78002, 0x99feffff, 0x43830944, + 0x44333487, 0xf393432b, 0xf903e100, 0x00004d4d, 0x933319ff, 0x04f82bf4, + 0x0b6841c1, 0x964127d0, 0x83402734, 0x3b01001d, 0x0e9289d4, 0x27109389, + 0x271496c1, 0x070d07c0, 0xbecc471b, 0x86fff358, 0xeb17be07, 0xf311beff, + 0x270506ff, 0x025e105c, 0x070d0707, 0xbe2c071b, 0x93fff398, 0x04f7e3fd, + 0x03d8d4a9, 0xe0a2fc93, 0x6cd4c503, 0xc011c401, 0x0420d4d5, 0x03a8d4b9, + 0x20a73027, 0x9d09d49d, 0xd29d5cd3, 0x24d0d566, 0x5ad39d04, 0x995bd29d, + 0x03532690, 0x8bbe0183, 0x64d10039, 0x4586011c, 0x0d030607, 0x2bbe011c, + 0x2d070038, 0x19070d07, 0x04002d03, 0x03a80d03, 0x07fbf37e, 0x000d030d, + 0x1521be04, 0xbe0c0700, 0x27001578, 0x115c2741, 0x5e08d49d, 0xb0b9067d, + 0x402703a9, 0x9d0ab49d, 0xb4b935b0, 0xb0b903aa, 0xb49d03ab, 0x37b09d36, + 0x03afb4b9, 0x03b0b0b9, 0x9d38b49d, 0xb4b939b0, 0xb0d103b1, 0xb1a903e8, + 0xb3b903d4, 0x2e0703b2, 0xc53ab49d, 0x219b40b0, 0x410736c6, 0x48333107, + 0x432b3433, 0xc20bc447, 0xb445420b, 0x42070e1e, 0x07384c03, 0x45c153c4, + 0x93c40bb4, 0x04f703f4, 0x03e84ed1, 0x03e440d1, 0x03da41a9, 0x03d442a9, + 0x03dc43d1, 0x219be00b, 0xed033387, 0xe30b07f8, 0x03e041a9, 0x31533207, + 0xe10b320b, 0x550c2c27, 0x03031e43, 0x3b412721, 0xf84cca42, 0xf6c2f493, + 0x9d415104, 0x23072442, 0x21071302, 0x1e0c3c27, 0x27310303, 0xca433b41, + 0xf493f842, 0x2704f6a4, 0x439d0c2c, 0x03031e25, 0x3b412721, 0xf84eca42, + 0xf68ef193, 0x24149904, 0x1426129d, 0x4c270c4c, 0x2510990c, 0x1424149d, + 0x0c270c0c, 0xbe13a90c, 0xc012a903, 0xf314b903, 0x03239b03, 0x2303ff2d, + 0x9d2a5342, 0x4f6b2510, 0x42343247, 0x051e2307, 0x2153230b, 0xf64afb93, + 0xb8b4b904, 0xf1b3b903, 0x27453603, 0xb4bd104c, 0x420703b8, 0x43534703, + 0xb099439b, 0xb8b3b924, 0x27420b03, 0x3b439b21, 0x53e20720, 0x274a3345, + 0x25b19932, 0xe40be123, 0x413b4307, 0x2013303b, 0xe28b430b, 0xe4074e02, + 0x00271e07, 0x000686be, 0x03e2b3a9, 0x7fff4ea7, 0xd4bca9d0, 0x27428103, + 0x28b38d40, 0x9b34b49d, 0x272c2ac3, 0x34b49d41, 0xc230b4c1, 0xb0b10dc4, + 0x297e1c07, 0xc5b0b5f6, 0x4ea730bc, 0xc1fd4fff, 0x4e3c7444, 0x27100000, + 0x27031e30, 0xab434731, 0x1041c043, 0x42c04150, 0x0d43c00b, 0x3c27101e, + 0x270d1e40, 0x081e903c, 0x1e503c27, 0x93ff1e03, 0x04f58ff4, 0x107443ad, + 0xf586f493, 0xac42b904, 0x07429d03, 0xf57afc93, 0x2740a704, 0x4ac48d30, + 0x994cc3c5, 0x41d82694, 0x9d40270e, 0x40a75ac4, 0x9d5bc49d, 0x94995cc3, + 0x104cc00a, 0x030c0741, 0x0703a80d, 0xd1f29319, 0xb17e03dd, 0x931c07f9, + 0x03ddc7f0, 0x04001d03, 0xbe202c27, 0xc6008c4e, 0x07412707, 0xbbd49d0c, + 0x04000d03, 0xddaaf393, 0x01482703, 0x05340332, 0xa8040302, 0x034607f4, + 0xf293fc4c, 0x2704f90c, 0x01382718, 0x05112320, 0x03240340, 0x93f39844, + 0x04f4f7f0, 0x042002d1, 0xd1f462c5, 0xc5042403, 0xd489f863, 0x0e048d2a, + 0x027d7259, 0x8d129389, 0x94891ad3, 0x1cd48d14, 0x8d169289, 0x93891ed2, + 0x20d38d18, 0x8d309489, 0x928922d4, 0x24d28d32, 0x9d350399, 0x94990fd3, + 0x96302736, 0x9d312744, 0x049906d3, 0x0cd19d38, 0x27b8d49d, 0x0bd49d40, + 0xd2c59281, 0xc593915c, 0x94a160d3, 0x9964d4c5, 0xd29d0a92, 0x0c939904, + 0x5105d39d, 0x3cd4c574, 0xd2c592b1, 0x0b939938, 0x470a9499, 0x0b418333, + 0x6b430734, 0x10d49d4f, 0xdc5a0199, 0x9951401c, 0x24d804d2, 0x5b03994b, + 0x43ce41c3, 0xcb410720, 0xc4458342, 0x03991741, 0x05d4995c, 0x340e2027, + 0x42072127, 0x340741c3, 0x031e3f6b, 0xf4933027, 0x9904f428, 0x3f6b5c44, + 0x34d64666, 0x081e4027, 0x8362d499, 0x0741c341, 0x073f6b34, 0x27031e43, + 0x16d49d40, 0xd49d4027, 0x217399b9, 0xbe13d39d, 0x93003fc6, 0x04f3f3f4, + 0x107444a9, 0xc504d399, 0xd1c5b0d0, 0xbcd48db4, 0x27203c3c, 0x07121ea0, + 0x837a6143, 0xd49ddf4c, 0x9d422704, 0xa103b9d4, 0xf3c6f493, 0x664e9904, + 0x7effecc0, 0xc004d499, 0xc177104c, 0x202738d0, 0x101e3007, 0x24f93138, + 0x00058278, 0x5b0d4ece, 0x07210331, 0xb6118312, 0xc4051e31, 0x9935ff2c, + 0x21270b94, 0x20ab243b, 0xffff2ed4, 0x30273501, 0x27111c27, 0x8b433b41, + 0x03450642, 0x1ef19831, 0x6df49322, 0x449904f3, 0x83234767, 0xc0240b41, + 0x0713ff2c, 0x27315332, 0xab433b41, 0x38d4c540, 0x2c27131e, 0x9330a7ff, + 0x04f347f4, 0x1e66439d, 0xff2c2704, 0x99bad29d, 0x40a73790, 0x9d08d09d, + 0x929909d4, 0x11d29d38, 0x42247459, 0x161e4027, 0xf31ef493, 0x54449904, + 0x4c043027, 0x07312720, 0x6b41c343, 0x12d49d4f, 0xf306fb93, 0x28b38904, + 0xd38db2b1, 0x1094892c, 0x8da8d2c5, 0x90892e74, 0x8d11270e, 0xd3992c70, + 0x1c739d04, 0x31279411, 0x10274104, 0x313b1213, 0xd499e307, 0x53ef6b04, + 0x32928942, 0x41833e07, 0x245b3433, 0x41234307, 0x428b240b, 0x2bb8d099, + 0x02402734, 0x0b412703, 0x07140320, 0x23315b32, 0x17d49d14, 0x9d14de9d, + 0xb49915d1, 0x2ed38d0b, 0x4ff6cb07, 0xb2c10099, 0x10d39944, 0x9934d2c5, + 0x102707b4, 0x11274486, 0xec07d703, 0xd723fd05, 0x0148ed03, 0xcc034107, + 0x070d0718, 0x25fc1519, 0xeaa8befe, 0x0704e6ff, 0x016f5e50, 0xd4c5b461, + 0x68dc0344, 0xd0033d07, 0x41272d07, 0x9d7f3ce3, 0x2ce30bb4, 0x68dc237f, + 0x3c033419, 0xf932c280, 0x0c030d07, 0x79f19368, 0x2c2704f3, 0x4951be40, + 0x23a70603, 0x6b4a07a1, 0xbad49d4f, 0x44994d0b, 0x15f39368, 0x349d04f2, + 0xbad39966, 0x0eff3cc0, 0xf206f493, 0x66449904, 0x349d3d0b, 0x10908968, + 0xf1f6fa93, 0x28d08d04, 0xc10e9289, 0xd28d44db, 0x07737926, 0x0dd39d0b, + 0x07047499, 0x0ed49d19, 0x890e9289, 0xa3c11094, 0x9b9c0140, 0x87c30b42, + 0x0b280744, 0x48e9bec4, 0x07980103, 0x0b4c0b4b, 0x50d4c58b, 0x994cd8c5, + 0xcd0324a0, 0xd09d03fc, 0x26a29958, 0xd29d3b07, 0x95a0615a, 0x053c0b74, + 0x54d3c540, 0x0325a299, 0x9d03fccd, 0xdcc559d2, 0x9973a548, 0xa4d15ad0, + 0x918903e4, 0x1092890e, 0x4c0b3127, 0x342b303b, 0x219bb40b, 0x08072287, + 0xab751027, 0xcbbea385, 0xc0270088, 0x990efc9b, 0x45f60ca4, 0x1d070a07, + 0xffe212be, 0xa49d4127, 0x34d3c10c, 0x6544d4c1, 0x3074c573, 0x993478c5, + 0x799d0899, 0x24a0991d, 0x991f709d, 0x729d25a2, 0x99a34120, 0x732534a0, + 0xd09da451, 0x99743518, 0x42e304a4, 0x2704a49d, 0xc5a41d41, 0x93be30dc, + 0xffbeffef, 0x4ea70097, 0x11fd4fff, 0xc06cc544, 0xc5e864c5, 0x6cc5a86c, + 0xc30507b0, 0x4ef58ef0, 0xe5f493fd, 0x449904f0, 0x3cf9e304, 0xbe415842, + 0x27ffef62, 0x074b1ed0, 0x3c3c033f, 0x4c272027, 0x03320518, 0x07f4c834, + 0x2720273f, 0x32050f4c, 0xf4c83403, 0x273c4c27, 0x0f07603c, 0x073cf38d, + 0x103c2724, 0x1f07040b, 0x050af39d, 0xf6e77ef4, 0x05f6d007, 0x27f3ef7e, + 0x8df49331, 0x439d04f0, 0xc30d0704, 0x4efd8ef9, 0xdf0ea7fc, 0x47beffff, + 0x0d270095, 0x87be3428, 0xfc93000b, 0x05050100, 0xdf0ea7c0, 0x0cbeffff, + 0x20270095, 0x071d1c27, 0x33320742, 0x2b363344, 0x01322b34, 0x0b3333c4, + 0x03321d34, 0x93f13821, 0x04f03ffc, 0x30274027, 0xa70dc49d, 0x44c3c540, + 0xc53cc3c5, 0xaa7e78c4, 0x0c4c27f0, 0x40000d27, 0x10072027, 0x9d26c49d, + 0xc49d24c4, 0x94b1be25, 0x27202700, 0x33420738, 0xd040f543, 0x03ff0004, + 0x000d0321, 0xa7f36808, 0xfd4fff4e, 0x936843c1, 0x04efeff2, 0x3c331027, + 0x9d40a710, 0x249d5c21, 0x5a219d5b, 0x241c3c53, 0x004d2735, 0x27051e10, + 0x9320004d, 0x04efcbfc, 0x1072c4ad, 0x1070c4ad, 0x5bbe0c07, 0x40270049, + 0x9d60c4c5, 0xfc8e5dc4, 0xfe4efe0b, 0xfa1f1ea7, 0x0c2c27ff, 0x3c27e027, + 0x03140910, 0x0b423b12, 0x982103e4, 0x234ea7f3, 0x40a1fffa, 0xfe8e0e2b, + 0xfe0b0127, 0xfa233ea7, 0x3434c1ff, 0x30c5040e, 0x4efe0b34, 0x23eea7fb, + 0xe4c1fffa, 0xc6d10734, 0x1ed40744, 0xff4ea73c, 0x4499feff, 0x24e29909, + 0x34874383, 0x432b4433, 0x004d41f9, 0x2803ff00, 0x1d9b1203, 0x100b4127, + 0xe3a1423b, 0x3102140b, 0xd1071307, 0x00011f10, 0xdf271000, 0x10000000, + 0xfa23bea7, 0xc2b4a1ff, 0x0ea730d4, 0xbeffffdf, 0xc30093cc, 0x6bc00701, + 0xa7c566cf, 0xffffdf0e, 0x0093d5be, 0x1d070b07, 0x00090dbe, 0x0ea7c5a6, + 0x0effffdf, 0x939d9efb, 0x4efb8e00, 0x000e27fb, 0x26be0200, 0xbea70007, + 0x27fffa23, 0x24b49d48, 0x1e27b005, 0x07020000, 0x0845be0b, 0x24bc9900, + 0xc6030b07, 0xb9be1c07, 0x41270004, 0xb4b54c3b, 0x0230fb8e, 0xd81ef093, + 0x93fe0b00, 0x04eeabf3, 0x309d4027, 0xc500275d, 0xfe0b6034, 0xf0930230, + 0x0b00d82a, 0x29f393fe, 0x402704ff, 0x04c6341d, 0x341d4127, 0xfe0b0027, + 0xff16f493, 0x0b401904, 0xff4ea7fe, 0x40d5ffff, 0x08060a14, 0xafff2ea7, + 0xa72441fd, 0xfd7fff3e, 0x2405400b, 0x4ce33421, 0x11342510, 0x104ca334, + 0x3ea70b1e, 0x11fd7fff, 0x104ce334, 0x34150027, 0xf493fe0b, 0xc504ee3c, + 0x07536840, 0x4ea70183, 0x9dffffff, 0x00274540, 0x4007fe0b, 0x42d04123, + 0x1104c014, 0x400e08c0, 0x0c20100c, 0xc8f09320, 0xfe0b00d7, 0xee0af493, + 0x56449904, 0x4596408b, 0x93200c20, 0x00d7d6f0, 0xf493fe0b, 0x9d04edf4, + 0x00275440, 0x0230fe0b, 0xd7e9f093, 0x93fe0b00, 0x04eddff3, 0x890d01c4, + 0x00270e34, 0x348d42a3, 0x89fe0b0e, 0x00270e34, 0x348d42e3, 0x30fe0b0e, + 0xf2f49302, 0x141e00d7, 0xfe4ef393, 0x27051604, 0x1e301540, 0x1540a707, + 0x07402734, 0x93fe0b04, 0x04fe37f4, 0xfe0b4011, 0xfe2ef393, 0x05402704, + 0x1540a734, 0x1d412734, 0x4efe0b34, 0x930230fe, 0x00d7e1f0, 0x4127fe8e, + 0x40270496, 0xaebe0407, 0x00270008, 0xfe4efe8e, 0xfffde3be, 0xfe8e0027, + 0x47c00401, 0x1848d456, 0x542f44c0, 0x4241c045, 0x009d42e4, 0x45c02d1e, + 0x9446e425, 0xc02e1e00, 0x54252a4c, 0x48c02b4c, 0x8449e437, 0xc0281e00, + 0xc432394c, 0x1e79454c, 0x1e001150, 0x5e00119f, 0x0011fe6a, 0x11fe7f5e, + 0xfe9f5e00, 0xd35e0011, 0x5e0011fe, 0x0011fee6, 0x00119d1e, 0x11ff195e, + 0xff3d5e00, 0x4fff4ea7, 0x7444c1fd, 0x00004fd8, 0x49242000, 0xff4ea703, + 0x43adffff, 0x00690d3e, 0x40ad2027, 0x2c1e0d40, 0x4fff4ea7, 0x7444c1fd, + 0x00004f3c, 0xf2932000, 0x1e00d75b, 0xa7302717, 0xffffff4e, 0xd77af293, + 0x4643bd00, 0x9e051e0d, 0x07004664, 0x4efe0b02, 0xa7d007fd, 0xffffdf0e, + 0x00916dbe, 0x6108d099, 0xbe2027d1, 0x45012de5, 0x110706d0, 0x19d201d3, + 0x0b448734, 0x31400542, 0x19d455d4, 0x1d410334, 0xdf0ea734, 0x1cbeffff, + 0xd4410091, 0x44960027, 0x01c30127, 0xfd8e0183, 0x0451fb4e, 0xd207c007, + 0x2422b107, 0x0be6aa3e, 0xe41f4ea7, 0x154b05fd, 0x27c2414d, 0xa7433530, + 0xfde40f4e, 0x4d154205, 0xefff2ea7, 0x1e4335fd, 0xc1f3e803, 0x3327fc24, + 0xfc6a4ddc, 0x51c341f5, 0x2b3d0bc4, 0x5503074d, 0x450d2bc4, 0x4efb8ec3, + 0x070e51fa, 0x07c307b0, 0x07a107d2, 0x073e0243, 0x51d4154e, 0x154496b4, + 0x3ed211dc, 0xa6d00594, 0x07d41108, 0x35242b2c, 0x272516d2, 0x8ed22501, + 0x0b1a07fa, 0x7e0b0714, 0xd025ff78, 0x04964127, 0x04074027, 0xf54efa8e, + 0xa33414c1, 0x99b407fc, 0xbc835812, 0xc5d1270f, 0xb333c4f0, 0x323b3d07, + 0x9107c027, 0xff84be23, 0x5011c1ff, 0x9dc4f8c1, 0xf2c108f2, 0x35b403c4, + 0x55f465f3, 0x150f07fc, 0x23f105fb, 0x03fc45b4, 0x2a61188c, 0xe6feda7e, + 0x9901370f, 0x93c15994, 0xa5d43b54, 0x30fcc5fd, 0x0724f49d, 0x3494c10f, + 0x0c03b503, 0x75fb851c, 0xb5b523f3, 0x34f4c5fc, 0xe6feae7e, 0x07010b0f, + 0x0b3f0778, 0x383c037a, 0x4c272027, 0x03320520, 0x27f4c834, 0xff3d2720, + 0xbcf2c5ff, 0xc5b8f3c5, 0xd75ec0f2, 0xd6740100, 0x1e602744, 0x53640707, + 0x07680b68, 0x27a403a7, 0x00ae5e50, 0x4c54f451, 0x7e0f0738, 0x0fe6fe63, + 0xfd4100c0, 0xdc03f451, 0x384c2338, 0xf455fd45, 0xe638dc23, 0x03a60754, + 0xac09186c, 0xceb8f4c1, 0xc2032b4c, 0x4fab4c07, 0x1f07c487, 0xc2c1c10b, + 0xbcf2c538, 0xa11126d6, 0x180b0f07, 0x697e1201, 0x7d0fc6fe, 0xc5bcf0c5, + 0xac0938c0, 0xf2c1a309, 0x29d30dbc, 0x2da431a1, 0x07d215d1, 0x212d0718, + 0x07140ba3, 0x7e28030f, 0x0ec6fe8f, 0x51c4f3c1, 0x073141a4, 0x41180b0f, + 0x0b2d07a3, 0x202c0314, 0x7e1c0c03, 0x9489fe73, 0xc0f1c126, 0x9b4c93c1, + 0x87450b41, 0x05430b44, 0xc5d4294d, 0x540bb8fc, 0xfa269489, 0xc1ff4f54, + 0x7c03c0f2, 0xc521031c, 0x9489c0f2, 0xc0f3c128, 0xff2334fa, 0x3d1e0027, + 0xffdf0ea7, 0x8f10beff, 0x5090c100, 0x9904b299, 0x04035891, 0x0bbe2123, + 0x91990005, 0x5490c159, 0xbe05b299, 0x270004fe, 0x05b49d40, 0x0ea74127, + 0x9dffffdf, 0xbcbe04b4, 0x0427008e, 0xf58efc83, 0xb007f94e, 0x4714bc23, + 0x094b0b41, 0x07300742, 0x240999d1, 0x010724c6, 0x4107241e, 0xe4474103, + 0x1c270107, 0x2beb0b1c, 0x1d4c101d, 0x01031127, 0x2705f1f0, 0x09531e30, + 0x66e203e2, 0x23400722, 0x493b0c4c, 0xc4873301, 0x4b071047, 0x410b2123, + 0x420dc30b, 0x20073287, 0x12233c0b, 0x2d2ba427, 0xa93b1b0b, 0x21033301, + 0xdfc40d0a, 0xffffffff, 0x1e21270b, 0x2d412707, 0x23ce0514, 0x3be12701, + 0x0bca2be0, 0x581223e3, 0x8e0307f2, 0xa3f54ef9, 0x54f0c5f6, 0x27240299, + 0xc5323b31, 0x4f0750f2, 0xf3c52007, 0x58f1c54c, 0xc5142c23, 0x3c2740f4, + 0x40f1c110, 0x14054027, 0xf1c51403, 0x07f38840, 0x4cf2c172, 0x21231027, + 0xf1c53a27, 0x0dac2748, 0xc560f2c5, 0x788964f3, 0x1a758918, 0x00ea82f0, + 0xee4cf4c1, 0xc100e345, 0x4a0750f1, 0x4c233a07, 0x0c3c230d, 0x313b413b, + 0x8754f1c1, 0x0b120104, 0x87a12335, 0x27020bc3, 0x3bb80731, 0x0b40273a, + 0x07a103c2, 0x27d00795, 0xc5b10360, 0xf4c55cf3, 0x01511e44, 0x071f070e, + 0x833a5b3e, 0x43870f3c, 0x4201410b, 0xf4c12b26, 0x06428b5c, 0x07120745, + 0x07031e2e, 0x5cf4c11e, 0x41ce420b, 0x44f4c11b, 0x4203c205, 0x2f073387, + 0xf4c5320b, 0x27c40344, 0x05910340, 0x05091e34, 0x1ed403de, 0x034e0503, + 0xf0610304, 0x3f0705fb, 0xf2c1211e, 0xa492ca60, 0x38074607, 0x362b4103, + 0x8496840a, 0x04013127, 0xd4050403, 0xf3a8d403, 0x3401dd1e, 0xd4054546, + 0xd4034027, 0xf2c13405, 0xce340340, 0xf3c1ed32, 0x0aa3ce58, 0x950e4127, + 0xf4c54027, 0x44f4c148, 0x1b1a798d, 0x18748d48, 0x0364f1c1, 0xc51123a1, + 0x720364f1, 0xff001ff6, 0x8348f0c1, 0xa7f58ef6, 0xffffff3e, 0x060834d1, + 0x34d5400b, 0xfe0b0608, 0x4ea7fe0b, 0xb9ffffff, 0xc1010042, 0x3207fc40, + 0x4c834007, 0x1e31030f, 0x03402712, 0x7c14fd01, 0x07ff0000, 0x83212340, + 0x14070f4c, 0xf3f01333, 0xf9091e03, 0x00007e14, 0xa74006ff, 0xffffff4e, + 0x010042bd, 0x0bfc40c5, 0x07fc4efe, 0x27b43ec0, 0x270c0e41, 0x8e040740, + 0x07fc4efc, 0xffcf03c0, 0x8303ffff, 0x000000cf, 0x271c07fc, 0x163c2720, + 0x008ba3be, 0xfa234ea7, 0xc53027ff, 0x43c5404c, 0x3840c53c, 0xfa4efc8e, + 0xdc23d007, 0x0bc24714, 0x14dc03cd, 0x0924db99, 0x3b4127ce, 0x23ae074b, + 0x01a30b42, 0x27a432d0, 0x23fa8e01, 0x2b3b0c2c, 0x4e87e20b, 0x2387040b, + 0x007e9abe, 0x00274127, 0xd49dca0d, 0x4efa8e31, 0x240399f7, 0x433b4127, + 0x7407f063, 0xd0070a01, 0xb107f105, 0x84877333, 0x9027c007, 0x0b07c249, + 0x22871a07, 0x64be9103, 0xa80b007e, 0xc203b70b, 0xe9109cc4, 0x0124d499, + 0x03c407de, 0x24d49d41, 0xc603f401, 0x0d07d405, 0x2c071f07, 0xfe053127, + 0x96ff6d7e, 0x27d3b105, 0x0b4c3b41, 0x43d3b534, 0x4ef78ef0, 0xe7f093fa, + 0x05be00d1, 0xf0930087, 0xbe00d1e7, 0xa70086fc, 0xfffa1fbe, 0x270cdc27, + 0x07b209a0, 0x3bc2071d, 0xf1f093cd, 0x3c0700d1, 0xddbeb203, 0xac0b0086, + 0xbfc4d103, 0xff000600, 0x23cea7e1, 0xc189fffa, 0xf6f09332, 0xc1be00d1, + 0xc1a10086, 0x2107c3b1, 0xf0934a07, 0x2b00d1fd, 0x9efa0e2a, 0x4e0086ac, + 0x3808c1f6, 0x993c0cc1, 0xd007240e, 0x7027b107, 0x6c279027, 0x1c3c270c, + 0x362b0607, 0x0103031e, 0x4c072227, 0x405b203b, 0x415c2c0b, 0x1e03f3f0, + 0xeb2bc204, 0x4c234007, 0x0b24470c, 0x3b21492d, 0x01410b4e, 0x0b4487d3, + 0x0b380743, 0x05a1273c, 0x07110343, 0x3b3e074a, 0x03214d40, 0x0ac40b37, + 0x02712703, 0x07910719, 0x234e3b4a, 0x1494da42, 0x13077666, 0x097e0d07, + 0x071007fc, 0xfeb97e0d, 0xca24de99, 0xd4a190cb, 0xc53cd3c1, 0x432b3cdb, + 0xd4a54b0b, 0xfa4ef68e, 0xc13c02c1, 0xd1074003, 0xdd0304a1, 0xdde30fff, + 0x322b0fff, 0xd42ba007, 0x663800c1, 0x02bd0737, 0x07b307d3, 0x07c20bcb, + 0x898ebe1c, 0x070a0700, 0xff357e1c, 0xd606db2b, 0xf67e0d07, 0x070a07fd, + 0x5efa0e1d, 0xfa8eff23, 0x0499fa4e, 0x07d00731, 0x07b307a2, 0x7e46c6c1, + 0x0526fc1d, 0x1c070d07, 0x27fb877e, 0x31d49d40, 0xc05e0fd6, 0x0a070bb2, + 0x66fdb07e, 0x4fb3c00e, 0x4c234c47, 0x24d29914, 0x31274d0b, 0x4409323b, + 0x34223123, 0x111e3c07, 0x47034207, 0x3c07c442, 0x051e3103, 0x38033207, + 0x433b4127, 0x3407d1a1, 0x130b3123, 0x140b13eb, 0x4b7e0d07, 0x32d489ff, + 0x41030d07, 0xd48d1c07, 0x5efa0e32, 0x0027fb24, 0xfa4efa8e, 0xa007d207, + 0x2a46b107, 0x1a073d07, 0x0ea72b07, 0x7efffa23, 0x07a6fd7e, 0xfa23cea7, + 0x24c099ff, 0x10272227, 0x4ebe0703, 0x10070126, 0xa47e0c07, 0x27d61efd, + 0x0ef49b40, 0x4007fa8e, 0x1e0c0c27, 0x27010303, 0xca203b21, 0x3ea7f824, + 0xd1ffffff, 0x27060834, 0xd5420b10, 0x27060834, 0x26179e22, 0xff4ea701, + 0x40bdffff, 0xfe0b0d14, 0xffff2ea7, 0xbd3027ff, 0xa70d1423, 0x15f49310, + 0x419d04f6, 0x26239d43, 0x0b27239d, 0xff4ea7fe, 0x4201fd4f, 0xd436f393, + 0xd24d2703, 0x27340507, 0x34150c4c, 0x30354027, 0x03073225, 0x539e3445, + 0xfd4e007f, 0xffff4ea7, 0x1444b9ff, 0xa6d0070d, 0x05f09345, 0x1d0700d0, + 0x00847fbe, 0xd3fef493, 0xe23d2703, 0x07430507, 0x15342704, 0x0e4d2543, + 0x7f209efd, 0xa7fe4e00, 0xffffff4e, 0x0d1444b9, 0xf0934566, 0xbe00cffa, + 0x0e008450, 0xd24d9efe, 0xa7fd4eff, 0xffffff4e, 0x0d1444b9, 0x4666d007, + 0x02890131, 0x0803890a, 0xcfe5f093, 0x842abe00, 0x030d0700, 0xd2ccbe08, + 0x69f393ff, 0x349904f5, 0x9d410343, 0xfd8e4334, 0x4ea7fb4e, 0xb9ffffff, + 0x230d1444, 0x07b007f1, 0x934566d1, 0x00cfdcf0, 0x0083f7be, 0xf1930f07, + 0x2700cfe9, 0x04be102c, 0xd4f6007b, 0xcfdafd93, 0x61fc9300, 0x4d2703d3, + 0xc40507e1, 0x15844c27, 0x07cb25c4, 0x7d8cbe0d, 0x03200700, 0x0ccc0321, + 0x43273f07, 0x34033101, 0xc403c105, 0x3459f4a8, 0x1d073309, 0xc30dc45d, + 0xd345f093, 0x7abdbe03, 0x21f09300, 0x53be03d3, 0xf103007e, 0xfc4efb8e, + 0xffffcea7, 0x14c4b9ff, 0x26d0070d, 0x21011146, 0x93033102, 0x00cf84f0, + 0x008377be, 0xa626c499, 0x93042745, 0x00cfaef1, 0x0086a59e, 0x08030d07, + 0xfff5dfbe, 0xdd211007, 0xc4b90956, 0x45660d14, 0xcfc7f093, 0x834abe00, + 0xc9f49300, 0x3d2703d2, 0x430507d3, 0x34270407, 0x4d254315, 0xeb9efc0e, + 0x0d07007d, 0x195efc0e, 0xa7fe4eff, 0xffffff4e, 0x0d1444b9, 0xf0934566, + 0xbe00cfac, 0x93008314, 0x04f4a3f3, 0x45b63419, 0xf1930427, 0x9e00cfab, + 0x2700863e, 0x8e341d40, 0xa7fd4efe, 0xffffff4e, 0x0d1444b9, 0x45e6d007, + 0x02210111, 0xcfa9f093, 0x82debe00, 0x10d02100, 0x0000000f, 0x010f5070, + 0x27f00000, 0xcff19304, 0x039e00cf, 0x3ea70086, 0x27fffe6f, 0x221c2720, + 0x34013423, 0x4ed83403, 0x23030000, 0x40ce3421, 0x2724330d, 0xc324fd41, + 0x8e000582, 0xce3401fd, 0x24330d40, 0x24fd4127, 0x000582c4, 0x2103fd8e, + 0xf0183c03, 0xfd0ecbf1, 0x4efde95e, 0xff4ea7fc, 0x44b9ffff, 0xf0e30d14, + 0x4826d007, 0x89180e89, 0x01091a0c, 0x03110229, 0xfe150421, 0xde51fc25, + 0xcf8cf093, 0xbefe0500, 0x93008250, 0x03d1cff4, 0x07de3d27, 0x3c274305, + 0x07431520, 0x2748030d, 0x03020138, 0x03420504, 0x93f3a844, 0x03d1aff0, + 0xfc0ef0c3, 0x007cdd9e, 0x4ea7fc4e, 0xb9ffffff, 0x070d1444, 0x0145e6d0, + 0x93021101, 0x00cfb0f0, 0x008207be, 0xd186fc93, 0x270c0703, 0x0507df4d, + 0x271d07c4, 0x03282748, 0xbec41508, 0x07007907, 0x9efc0e0c, 0x4e007c9e, + 0xff4ea7fb, 0x44b9ffff, 0xb0070d14, 0x45e6d107, 0x2d070101, 0xcf96f093, + 0x81c6be00, 0x45fc9300, 0x0c0703d1, 0x0bbb4d27, 0x2d071b07, 0xc4050803, + 0xc8becd15, 0x0c070078, 0x5f9efb0e, 0xfc4e007c, 0xffff4ea7, 0x1444b9ff, + 0xa6d0070d, 0x84f09345, 0x1d0700cf, 0x00818bbe, 0xd10afc93, 0xe04d2703, + 0x27c40507, 0xc415844c, 0xc4254127, 0x33be0d07, 0x0103007b, 0x0c072007, + 0x0c031d07, 0x787dbe0c, 0x0e0c0700, 0x7c149efc, 0xa7fc4e00, 0xffffff4e, + 0x0d1444b9, 0x45a6d007, 0xcf52f093, 0xbe1d0700, 0x93008140, 0x03d0bffc, + 0x07e04d27, 0x4c27c405, 0x27c41584, 0x07c42542, 0x7ae8be0d, 0x07010300, + 0x070c0720, 0x0c0c031d, 0x007832be, 0xfc0e0c07, 0x007bc99e, 0x4ea7fe4e, + 0xb9ffffff, 0x660d1444, 0x28f09345, 0xf9be00cf, 0x4ea70080, 0x01fd4fff, + 0x71f39342, 0x4d2703d0, 0x340507d1, 0x44270307, 0x32253415, 0x939efe0e, + 0xfd4e007b, 0xffff4ea7, 0x1444b9ff, 0x6bd0070d, 0x934566df, 0x00cf03f0, + 0x0080bfbe, 0xd03ef493, 0xd43d2703, 0x07430507, 0x15342704, 0x0e4d2543, + 0x7b609efd, 0xa7fb4e00, 0xffffffce, 0x0d14c4b9, 0xf4934806, 0x1904f228, + 0xd1f49341, 0x420104f1, 0xf1cef493, 0x93430104, 0x00ced5f0, 0x00807bbe, + 0x0d14c4b9, 0x1f274ce6, 0x1007a000, 0x90000f27, 0x61be1007, 0xb007007c, + 0xc0001f27, 0x0f271007, 0x1007b000, 0x007c4fbe, 0x1f27c007, 0x1007e000, + 0xd0000f27, 0x3dbe1007, 0x3007007c, 0x2c071b07, 0xcec6f093, 0x9efb0e00, + 0x8e008030, 0xa7fb4efb, 0xffffffce, 0x0d14c4b9, 0x7a7e44a6, 0xadfb93ff, + 0xbd1904f1, 0xc4b9d996, 0x45e60d14, 0xced4f093, 0xdd1d2700, 0x8002be07, + 0x81f49300, 0x3d2703cf, 0x040707dd, 0x4d154305, 0x007aa9be, 0xb41d4127, + 0xfd4efb8e, 0xffff4ea7, 0x1444b9ff, 0x66d0070d, 0xb9f09345, 0xd1be00ce, + 0xf493007f, 0x2703cf50, 0x0507e03d, 0x25332743, 0x0c4c0343, 0x2c032407, + 0xe334074f, 0x3ce37f2c, 0x0334197f, 0x32c2803c, 0x29f393f9, 0xd76603cf, + 0x15544c27, 0x030d0734, 0x4c270c3c, 0x03010114, 0x03310504, 0x1ef4a834, + 0x15442713, 0x03202734, 0x4c270c3c, 0x03320514, 0x93f4c834, 0x03cef7f0, + 0x279efd0e, 0xfb4e007a, 0xd1070fab, 0x1207f0a3, 0x0de42307, 0x014f0bb9, + 0xffffcea7, 0x14c4b9ff, 0x9347260d, 0x04f08ff4, 0xf4934301, 0x0104f08c, + 0x34f09344, 0x39be00ce, 0xc4b9007f, 0x46660d14, 0xd201d111, 0xd421d331, + 0xce53f093, 0x7f22be00, 0x14c4b900, 0x4149260d, 0x77f093d2, 0xe20700ce, + 0x42073207, 0x530cec53, 0x104c5333, 0xe1831207, 0x21832253, 0x41833183, + 0xf5befe05, 0xc4b9007e, 0x46860d14, 0x8918d189, 0xd38916d2, 0x77f09314, + 0xddbe00ce, 0xc4b9007e, 0x46260d14, 0x8944d189, 0xf09346d2, 0xbe00ce83, + 0x89007ec8, 0xc3b918d4, 0x4f8b0d14, 0xe64b40cc, 0x81d17135, 0x82f093d2, + 0xadbe00ce, 0xc4b9007e, 0x45e60d14, 0xd2a1d191, 0xce8af093, 0x7e9abe00, + 0x14c4b900, 0xc147860d, 0xd18934de, 0x2ed2892c, 0x8930d389, 0xf09332d4, + 0x0500ce7e, 0x7e7abefe, 0xf0d49100, 0x1e01ed44, 0x7136265c, 0x91d281d1, + 0xbaf093d3, 0x61be00ce, 0xc4b9007e, 0x46460d14, 0xd2b1d1a1, 0x9330d3c1, + 0x00cec8f0, 0x007e4bbe, 0x0d14c4b9, 0xd1c14686, 0x38d2c134, 0x933cd3c1, + 0x00ced4f0, 0x007e33be, 0x0d14c4b9, 0xd1894626, 0x42d28940, 0xced7f093, + 0x7e1ebe00, 0x34d4c100, 0x019044e8, 0x0d14c4b9, 0x685ed371, 0xba0de401, + 0xa700ae0b, 0xffffffbe, 0x0d14b4b9, 0xf4934726, 0x0104ef3c, 0x39f49343, + 0x440104ef, 0xceaef093, 0x7de6be00, 0x14b4b900, 0x1146660d, 0x31d201d1, + 0x93d421d3, 0x00cd00f0, 0x007dcfbe, 0x0d14b4b9, 0xd34149e6, 0xcec0f093, + 0x07e30700, 0x072307c3, 0x14ec5313, 0x5310cc53, 0x8334532a, 0x07c183e1, + 0x83218341, 0x05418331, 0xbefc15fe, 0xb9007d9c, 0x660d14b4, 0x51d18146, + 0x71d361d2, 0xcbf093d4, 0x85be00ce, 0xd471007d, 0x00f844f0, 0x0d14b4b9, + 0xd181d361, 0x00ec4fe6, 0x3479310b, 0x32393119, 0xf0933359, 0x8300cd9c, + 0x9efb0ef0, 0xc4007d5c, 0x180bbb0d, 0xffff4ea7, 0x1444b9ff, 0xc34fe60d, + 0x93d30100, 0x00ceaef0, 0xe400b15e, 0x990bbc0d, 0xffcea700, 0xc4b9ffff, + 0x47260d14, 0xee6ef493, 0x93430104, 0x04ee6bf4, 0xf0934401, 0xbe00ceac, + 0xb9007d18, 0x660d14c4, 0x01d11146, 0x21d331d2, 0x32f093d4, 0x01be00cc, + 0xc4b9007d, 0x46260d14, 0x8918d189, 0xf0931ad2, 0xbe00ceb8, 0x89007cec, + 0x44d01ad4, 0x14c4b91c, 0x9946e60d, 0xd29920d1, 0x22d39921, 0x9323d499, + 0x00ceb4f0, 0x007ccbbe, 0xffffcea7, 0x14c4b9ff, 0x4145e60d, 0x93d251d1, + 0x00cec4f0, 0x007cb3be, 0x44d0d451, 0x14c4b926, 0xe6d3410d, 0xff345e47, + 0xffff4ea7, 0x1444b9ff, 0x0746260d, 0xc5f09330, 0xf08300ce, 0x899efb0e, + 0xf083007c, 0xfb4efb8e, 0x4b86f493, 0x0a438906, 0x07084489, 0x2eb107c0, + 0x8e002743, 0x7779befb, 0xadf39300, 0x340104ed, 0x400bd007, 0x07c63405, + 0xffff4ea7, 0x1444b9ff, 0x0946660d, 0x931b07c0, 0x00cebbf2, 0xcebaf393, + 0xfcd47e00, 0xd4860d07, 0xfb8e0127, 0xf293fc4e, 0x0104ed78, 0xff3ea724, + 0xf063ffff, 0x33b94123, 0xf0050d14, 0xd1072405, 0x3626fc09, 0xf2930c07, + 0x9300ce8f, 0x00ce83f3, 0x0dfc9d7e, 0xd64d27fc, 0x81fc9307, 0xf00103cb, + 0x4027c405, 0xc4151d07, 0x007677be, 0xf0430c07, 0x9f9efc0e, 0xf0630076, + 0x0bb94d27, 0x4c27f40d, 0x07f42d48, 0x43f00110, 0x4e9a1ef0, 0x05f063fc, + 0x07fc09f0, 0xbbcdc0d1, 0xf3930c0b, 0x0104ed00, 0x05412334, 0xff4ea734, + 0x44b9ffff, 0x46260d14, 0xf2930c07, 0x9300ce23, 0x00ce26f3, 0x0dfc317e, + 0xd54d27fc, 0x15fc9307, 0xf00103cb, 0x4027c405, 0xc4151d07, 0x007624be, + 0xf0430c07, 0x339efc0e, 0xfb4e0076, 0x4a7af493, 0x49436906, 0x07c00744, + 0x27432eb1, 0xbefb8e00, 0x9300788d, 0x04ec9ff4, 0x4201d007, 0x302704d6, + 0xc409131e, 0x4d043027, 0x31270bbb, 0x41c34307, 0x3f6b3407, 0xf493320b, + 0x0504ec7c, 0xa7d7c643, 0xffffff4e, 0x0d1444b9, 0xc0094666, 0xf2931b07, + 0x9300cd94, 0x00cda2f3, 0x07fbad7e, 0x27d4860d, 0x4efb8e01, 0xff3ea7f9, + 0x34b9feff, 0x4cf81ffd, 0xa700ee10, 0xffffff4e, 0x99444499, 0x432b0933, + 0x41e84f4b, 0xec5e00db, 0x83130700, 0x03133317, 0x05929c1f, 0x25f49300, + 0x4d9904ec, 0xa7c40744, 0xffffff9e, 0xffd7aea7, 0x992b1eff, 0x449642c4, + 0xc499d123, 0x07410340, 0x273f6b34, 0x42c49d40, 0x2e40c39d, 0x1e1027b3, + 0x83130767, 0x03133317, 0x05929c1f, 0x011f4600, 0xed4fc414, 0x5000009c, + 0x9399a479, 0x274f4b44, 0x27400c20, 0x2b430721, 0x6b240742, 0x0723232f, + 0x030f6b02, 0xf9111e23, 0x00004f34, 0x0744c6ff, 0x07181e30, 0x070f6b0e, + 0x87338330, 0x33e00743, 0x03342b34, 0xe020cee1, 0x14993207, 0x07342b04, + 0xec4f4b43, 0x93ff7e41, 0x04eb8bf2, 0x06442d9d, 0x42249919, 0x41274876, + 0xa742249d, 0xfeffff4e, 0x01094499, 0x04149d13, 0x9ced3f04, 0xd1230000, + 0x01442d9d, 0x93f48b14, 0x04eb5bf4, 0x99404399, 0x00274144, 0x271934ce, + 0x93f98e01, 0x04eb47f4, 0x99404399, 0xb3ee414b, 0x1027ff09, 0x8eff105e, + 0xa7fd4ef9, 0xffffffde, 0x0d14d4b9, 0x46c6f063, 0xd9b6f493, 0x08429904, + 0x9326d199, 0x00cc58f0, 0x0079c7be, 0xc426d499, 0xf4931642, 0x9904d99c, + 0x45b60844, 0xf1930427, 0x9e00cc6f, 0xbe007cea, 0x07ffc840, 0x51f1930f, + 0x1b7e03c2, 0xc6d007fd, 0x93f00105, 0x03c243f1, 0x1efd5b7e, 0xff4ea7e7, + 0x44b9ffff, 0x45660d14, 0xcc8cf093, 0x797abe00, 0xf9f49300, 0x3d2703c8, + 0x040707d8, 0x4d154305, 0x007421be, 0xeaaef293, 0x40249904, 0x41033027, + 0x9d42239d, 0x447e4024, 0x8ef043fe, 0x63fd4efd, 0xf5f193f0, 0x0f0703c1, + 0x07fdc97e, 0xe9f193d0, 0x052603c1, 0x647ef001, 0xa7e71efd, 0xffffff4e, + 0x0d1444b9, 0xf0934566, 0xbe00cc46, 0x9300791c, 0x03c89bf4, 0x07d73d27, + 0x43050407, 0xc3be4d15, 0xf2930073, 0x9904ea50, 0x30274024, 0x239d4103, + 0x40249d42, 0x43fde67e, 0x4efd8ef0, 0xffdea7fd, 0xd4b9ffff, 0x45660d14, + 0xcc1bf093, 0x78dabe00, 0x26d49900, 0x042745a6, 0xcc21f193, 0x7c089e00, + 0xc76cbe00, 0x5efd0eff, 0xfd4eff75, 0xffffdea7, 0x14d4b9ff, 0x9345660d, + 0x00cc32f0, 0x0078abbe, 0x9926d299, 0x244e27d4, 0xf1930827, 0x1e00cc2c, + 0xff4ea722, 0x4499feff, 0x87438309, 0x2b443334, 0x4d44f943, 0x23ff0000, + 0x27485041, 0x4cf19308, 0xb39e00cc, 0x4227007b, 0xc427d49d, 0xf4931822, + 0x9904e9b4, 0x20274043, 0x429d3103, 0x40439d42, 0x485efd0e, 0x4efd8efd, + 0xffdea7fd, 0xd4b9ffff, 0x45660d14, 0xcc2af093, 0x783ebe00, 0x26d29900, + 0x4e27d499, 0x93082724, 0x00cc26f1, 0x007b699e, 0xd49d4027, 0x9326f627, + 0x04e96bf3, 0x9d403499, 0x41034232, 0x0e40349d, 0xfd015efd, 0xfb4efd8e, + 0xffff4ea7, 0x1444b9ff, 0xa6d0070d, 0x35f09345, 0x1d0700cc, 0x0077f3be, + 0x75bed516, 0x071effc6, 0x0cbed204, 0xcea7ffc4, 0x27ffffff, 0x14c4b9b0, + 0x34cbbd0d, 0x9345a606, 0x00cc1ff0, 0xc9be1d07, 0xf3930077, 0x9d03c748, + 0x4d2727cd, 0x340507db, 0x34154427, 0x03073d25, 0xbe26cd9d, 0x93007266, + 0x04e8f3f3, 0x9d403499, 0x4103423b, 0x0e40349d, 0xfc895efb, 0xdea7fb4e, + 0xb9ffffff, 0x660d14d4, 0x22f09345, 0x81be00cc, 0x4ea70077, 0x91d07fff, + 0x104c5c44, 0xf1930427, 0x9e00cc1c, 0xbe007aaa, 0x93ffc3af, 0x04e8abf4, + 0xf4934201, 0x0104e8a0, 0x3bf09341, 0x51be00cc, 0x1f270077, 0x1007a000, + 0x90000f27, 0x3dbe1007, 0xb0070073, 0xc0001f27, 0x0f271007, 0x1007b000, + 0x00732bbe, 0x1f27c007, 0x1007e000, 0xd0000f27, 0x19be1007, 0x30070073, + 0x2c071b07, 0xcc1ef093, 0x770ebe00, 0xbd412700, 0xa70a11d4, 0xfd4fff4e, + 0x40274301, 0x270ef49b, 0x0ed499c1, 0xc4cbc33b, 0x4fbf3ea7, 0x27c138fd, + 0x53340541, 0x03c4c6c1, 0x27f31e34, 0x7d78414f, 0xa7f4e801, 0xffffff4e, + 0x0d1444b9, 0xf09345e6, 0x2700c592, 0xbe07dc1d, 0x930076c0, 0x03c63ff4, + 0x07dc3d27, 0x43050407, 0xfb0e4c15, 0x0071659e, 0xdea7fd4e, 0xb9ffffff, + 0x660d14d4, 0xdcf09345, 0x95be00cb, 0xd4b90076, 0x45e60d14, 0xc554f093, + 0xd91d2700, 0x7682be07, 0x01f49300, 0x3d2703c6, 0x430507d9, 0x30270407, + 0xfd0e4315, 0x0071259e, 0xdea7fc4e, 0xb9ffffff, 0x210d14d4, 0x1145e60c, + 0x932c0701, 0x00cba5f0, 0x00764fbe, 0x4027c5d6, 0x0d38dcd5, 0x0d3cd4ad, + 0xc6d4371e, 0x38d4d134, 0x3cdcad0d, 0x2749760d, 0x100000cf, 0x804f2710, + 0xd5101000, 0x070d38d4, 0x2710270c, 0x63be802c, 0x4f27006d, 0x11223356, + 0x2740c4c5, 0x0ef49b40, 0xffff4ea7, 0x1444b9ff, 0x9345e60d, 0x00c4c5f0, + 0x07e31d27, 0x0075f3be, 0xc572f493, 0xe33d2703, 0x07430507, 0x15302704, + 0x9efc0e43, 0x4e007096, 0xffbea7fb, 0xb4b9ffff, 0xc0070d14, 0x45a60d01, + 0xcb45f093, 0xbe1d0700, 0xe00075c0, 0x1c03eedd, 0xefddd401, 0xddc02503, + 0x547a03eb, 0xc003ecdd, 0x4503e9dd, 0x03eadde4, 0x531e012e, 0x03ecddc0, + 0xeddde47a, 0x5e012103, 0xdde00088, 0x00fe03f2, 0x03f3dd54, 0x03f0dde0, + 0xdde400e8, 0x010803f1, 0xe000e45e, 0xec03f4dd, 0xf4ddf000, 0xe400f203, + 0xf303f5dd, 0x00e25e00, 0xe6aaf393, 0x41309904, 0xfc98f453, 0x27832007, + 0x230b2333, 0xf393631e, 0x9904e694, 0xf4534130, 0x2007fcef, 0x23332783, + 0x4d1e230b, 0xe67ef393, 0x41309904, 0xfc3df453, 0x27832007, 0x230b2333, + 0xf393371e, 0x9904e668, 0xf4534130, 0x2007fb2d, 0x23332783, 0x211e230b, + 0xe652f393, 0x44349904, 0x00974ff6, 0x27413099, 0x83200741, 0x9d233327, + 0x230b4434, 0xf087f453, 0x31992405, 0xff3ea743, 0x219dfeff, 0x44b49904, + 0x2b093399, 0xcc4f4b43, 0x4ea71141, 0x79ffffd7, 0x07453644, 0x9d410341, + 0xf3930424, 0x0704e608, 0x99410340, 0x4f6b4032, 0x2b41349d, 0xd04f6b42, + 0x04274049, 0xca2cf193, 0x0e331e00, 0xfdf25efb, 0x015efb0e, 0x0e0c07fd, + 0xf0475efb, 0xfb0e0c07, 0x0ef0f55e, 0xf15b5efb, 0xfb0e0c07, 0x07fe135e, + 0x5efb0e0c, 0x0427f17d, 0xca11f193, 0x77a89e00, 0x4efb8e00, 0xff4ea7fe, + 0x4491d07f, 0x27104c5c, 0x12f19306, 0x101e00ca, 0xc13803c1, 0x304c3402, + 0xf1930627, 0x9e00ca32, 0x5200777e, 0x93062732, 0x00ca63f1, 0x0471f21e, + 0x00004f30, 0x420b7000, 0x00014f50, 0x0627f000, 0xca89f193, 0x81d91e00, + 0x91471604, 0xa1469604, 0xb1461604, 0xc1459604, 0x44f63004, 0x663c04c1, + 0x93062745, 0x00ca90f1, 0xfe8eb61e, 0x0289fb4e, 0x07f1a318, 0x832144d0, + 0x5efb0ef1, 0x2dc0ff7f, 0xd4591102, 0x2711032d, 0x01822dc0, 0x832d544f, + 0x022dc001, 0x2dc44601, 0x1e380121, 0x812dc03f, 0x2dc03a02, 0xc4350301, + 0x2702012d, 0x2dd42e1e, 0xd4128003, 0x2480012d, 0x11212dc0, 0x012dc41f, + 0x181e1112, 0x7fdf2d03, 0x4fab4207, 0x7fdf2d23, 0x06274250, 0xca39f193, + 0x071c1e00, 0x0fcc53c2, 0x4ea7c746, 0xc1fd4fff, 0x4e5c7444, 0x27020000, + 0x45f19304, 0xa79e00ca, 0x2dc40076, 0xa7170281, 0xfd4fff4e, 0x5c7444c1, + 0x1000004e, 0xf1930427, 0x1e00ca4e, 0x301459e2, 0x1eb12749, 0x2714790b, + 0x27491030, 0x19b30731, 0x39302714, 0x27448611, 0x07de4131, 0x6b4e0703, + 0xa641830f, 0x2746d605, 0x4cf19306, 0xaf1e00ca, 0x06274566, 0xca69f193, + 0x58a41e00, 0x270300ed, 0x87f19306, 0x971e00ca, 0x12004127, 0x14074027, + 0x011bcfe6, 0x4c334207, 0x53b64618, 0x42c01c4c, 0x9306271a, 0x00ca8cf1, + 0x53ff755e, 0x45861c4c, 0xf1930627, 0x5e00cac6, 0x4207ff66, 0x15e64783, + 0x271742c0, 0xfbf19306, 0x535e00ca, 0x274140ff, 0x22f19306, 0x475e00cb, + 0x30ec58ff, 0xf1930627, 0x5e00cb48, 0x4e07ff3a, 0xc6c04c83, 0x274b6605, + 0x61f19306, 0x275e00cb, 0x504653ff, 0x93062742, 0x00cb89f1, 0xc4ff195e, + 0xd4811f41, 0x4f30d3a1, 0x70000000, 0x4f50430b, 0xf0000001, 0xf1930627, + 0x5e00cb9f, 0x3d46fefa, 0xd391d471, 0x00004f30, 0x430b7000, 0x00014f50, + 0x0627f000, 0xcbe4f193, 0xfedc5e00, 0x06273596, 0xcc04f193, 0xfed05e00, + 0xd4810b86, 0x4f30d3a1, 0x70000000, 0x4f50430b, 0xf0000001, 0xf1930627, + 0x5e00cc0c, 0x3596feb2, 0xf1930627, 0x5e00cb88, 0xd389fea6, 0x32d48930, + 0x0627344e, 0xcc29f193, 0xfe945e00, 0x0734d0c1, 0x44438340, 0x93062742, + 0x00cc61f1, 0xf8fe815e, 0x27021104, 0x7af19306, 0x735e00cc, 0x822d20fe, + 0x022d0001, 0x022d2411, 0x1e412701, 0x6b402703, 0x6615d64f, 0x93062746, + 0x00cc8ef1, 0xe6fe515e, 0x30ecfc44, 0x4e0701d4, 0x50c04c83, 0x0627814c, + 0xcca2f193, 0xfe385e00, 0x9640d489, 0x93062745, 0x00ccbaf1, 0x89fe295e, + 0x359642d3, 0xf1930627, 0x5e00ccd7, 0xbe07fe1a, 0x0407b183, 0xb5e61307, + 0x0310ec58, 0x1e015301, 0x53110305, 0x012dc011, 0x2dd46403, 0xe02e0302, + 0xb801212d, 0x222d5400, 0x022de001, 0xe400b601, 0xc801042d, 0x00b15e00, + 0x02012dc0, 0x812de073, 0xe4008202, 0xb401822d, 0x009d5e00, 0x11212de0, + 0x2dd4008b, 0xe0151122, 0x8811022d, 0x042de000, 0xe4008611, 0x9403212d, + 0xc02f1e00, 0x7821042d, 0x31042dc0, 0x012de473, 0x1e008212, 0x07400733, + 0x03410331, 0x53415331, 0x25c32731, 0x05f355f4, 0x35f415f0, 0x1ef345f1, + 0x0341076d, 0x47415341, 0x05c32730, 0x55f025f3, 0x35f015f4, 0x35491ef1, + 0x531103f1, 0x27402711, 0x45f015c2, 0x05f455f1, 0x35151ef0, 0x471103f1, + 0x27115330, 0x15c22740, 0x55f145f3, 0x25f305f4, 0x032b1ef4, 0x53308711, + 0x47071e11, 0x87031e30, 0x27402730, 0x35f305c1, 0x15f455f1, 0x45f425f4, + 0x270b1ef4, 0xfdf19306, 0x135e00cb, 0x070d07fd, 0x27e027df, 0x0cdc0310, + 0x0761cec2, 0x01410b4f, 0x3404c142, 0x06272452, 0xcc02f193, 0xfcf05e00, + 0x410b4d07, 0x04714301, 0x4f30329b, 0x70000000, 0x4f50430b, 0xf0000001, + 0xf1930627, 0x5e00cc0a, 0x04a1fcce, 0x4f30b766, 0x70000000, 0x4fd0430b, + 0xf0000001, 0x93062738, 0x00cc1af1, 0xa6fcb15e, 0x93062749, 0x00cc3bf1, + 0x71fca55e, 0xa144d604, 0x27458604, 0x5df19306, 0x935e00cc, 0x3404c1fc, + 0x06274586, 0xcc76f193, 0xfc845e00, 0x1403e103, 0xe3c00403, 0xff725e0e, + 0xf1930627, 0x5e00cc87, 0xf183fc6e, 0xfe4efb8e, 0x10272007, 0xcc99f093, + 0xb955be00, 0xff3ea7ff, 0x4127ffff, 0x0a1134bd, 0x4fff4ea7, 0x274201fd, + 0x0ef49b40, 0x270e3499, 0xcb323b31, 0xbf2ea734, 0x3138fd4f, 0x24054127, + 0x24033153, 0x4f2732d6, 0x017d7841, 0xfe8ef4e8, 0xfe0bfe0b, 0xb007fb4e, + 0x93121f9b, 0x00cc57f0, 0x006f77be, 0xf093b111, 0xbe00cc64, 0x21006f6c, + 0x6bf093b1, 0x61be00cc, 0xb101006f, 0xcc72f093, 0x6f56be00, 0x07c02700, + 0x07d231db, 0x73f0931c, 0xc10300cc, 0x006f43be, 0xccc4d403, 0x0b07ec0f, + 0x6e9efb0e, 0xf94effb9, 0xb107a007, 0x9c27c207, 0x071c1e40, 0x41cc10dc, + 0x1d07d907, 0x032797be, 0x1d070a07, 0x032779be, 0xbd0bcd2b, 0x0b07ad0b, + 0xf98ec076, 0x45334007, 0x402b0333, 0x018c40f9, 0x0c83ff00, 0x2303330f, + 0xffff7e0e, 0x0347a89e, 0xb88ef293, 0xf33ea703, 0x4c27fefd, 0x03310130, + 0x03210534, 0x27f4a824, 0x0ef49b40, 0x2ea7fe0b, 0x93fefdf3, 0x03b86bf3, + 0x01304c27, 0x05340331, 0xa8240321, 0x9b4027f4, 0xfe0b0ef4, 0xeb073ea7, + 0x054027fd, 0x004f2734, 0x15158200, 0x9b402734, 0xfe0b0ef4, 0xbea7f84e, + 0x07fdeb07, 0x27c02780, 0xa1071f0c, 0x00009f27, 0x66be1582, 0xbc050327, + 0x4027b915, 0xa70ef49b, 0xfde41f3e, 0x34054427, 0x4ea73a15, 0x35fde40f, + 0x1548053c, 0x1f0c274a, 0x3ebe4c35, 0xbc050327, 0x4027b915, 0x8e0ef49b, + 0x040399f8, 0x35a64007, 0x400936c0, 0x2738203a, 0x27031e00, 0x06449904, + 0x35064586, 0x3a003720, 0x08a33804, 0xfc4efe0b, 0xc007d107, 0x032c9abe, + 0xd4990516, 0x104c4404, 0xd49d4127, 0x04c49d0b, 0x032cb9be, 0x8e40d0c5, + 0x63f84efc, 0x079007f0, 0x070307d2, 0xbeb107a3, 0x07031c36, 0x07348330, + 0x9c3fe6c0, 0x04b89900, 0x94108ce4, 0x200cfc00, 0xbea7008f, 0xd1ffffff, + 0xf60620b4, 0xf8038c4f, 0xa7038808, 0xfeffffce, 0x1ffdc4b9, 0x7a104cf8, + 0x230a0703, 0xce01be01, 0x6e0fe6ff, 0xbe002703, 0xd1000f6a, 0xd1013cc3, + 0xe20a04b4, 0x93035c34, 0x03b7fffc, 0x1c070f07, 0xfff10dbe, 0x082704f6, + 0x41034e5e, 0xa30c07c4, 0x0140004e, 0x97bec445, 0x9499fff1, 0x2741245d, + 0xed88be00, 0xbe0a07ff, 0x27ffbed9, 0x0ad89d40, 0x27b0d48d, 0x04949d42, + 0x0a04b4d1, 0x41030327, 0x0a04b4d5, 0x9903125e, 0x452612b4, 0x05273576, + 0xf803065e, 0x990300c8, 0x4626bbb4, 0x03acb0c1, 0xb0befc0c, 0x4027ffea, + 0xc1bbb49d, 0x471630b4, 0x1b070d07, 0x00080abe, 0x0c270516, 0x02d95e0c, + 0xc528d489, 0xd48930b4, 0xf8412428, 0x1e02c8c8, 0x004d8307, 0x0745f680, + 0xc12ebe0b, 0x270616ff, 0x02b55e0b, 0xc605b499, 0xbfdfbe44, 0xffcea7ff, + 0xc4d1ffff, 0xb1c10620, 0xc5410344, 0xc4d558d1, 0x1b070620, 0xccaaf093, + 0xbd06be04, 0x5cd0c5ff, 0x9d11b299, 0xb39960d2, 0x61d39d13, 0x8904b499, + 0xd49d28d3, 0x07b1990a, 0xd4d54027, 0xd4d50108, 0x4307010c, 0x830bd19d, + 0xe680004d, 0x0700d44f, 0xfe477e0b, 0xb289d381, 0xc130ab1e, 0xd38544d4, + 0x1c3cd28d, 0xc03cd841, 0x0ad3991b, 0xdc389099, 0x43070e34, 0x4a404a83, + 0xa606b499, 0x47377647, 0x99161e00, 0xb3990ad4, 0x27448306, 0x27448611, + 0x99912b10, 0x033b3a90, 0xc120b489, 0x400b44d3, 0x893ed48d, 0x3c831ab2, + 0x26d28d20, 0x811cb489, 0x24d48dd2, 0x0322b489, 0x44530f4c, 0x37e62158, + 0x1e40d48d, 0x8d370616, 0x2cd840d4, 0xb48910c0, 0x73410322, 0x0f4c0341, + 0xd48d4453, 0x05b49942, 0xb49949e6, 0x07d1b107, 0x33353334, 0xf5342b43, + 0x00019831, 0x30d4c1ff, 0x34f5d281, 0xff000190, 0xa340d189, 0xed80002d, + 0x0001a031, 0x81d285ff, 0xc04c83d4, 0x00f34fe6, 0xd4d54653, 0xea5e010c, + 0xe631e000, 0xc0b1c100, 0x891ab289, 0x1cf81cb3, 0x8100920e, 0x83a307d4, + 0x4653c04c, 0xd4d59207, 0xa45b010c, 0x1cd8945b, 0x18d86a0c, 0x3ec4a921, + 0x0724020d, 0xff4ea724, 0x43a9ffff, 0xb4890d40, 0x0743221c, 0x07031e03, + 0x07920704, 0x1e14d8a0, 0xffffcea7, 0x42c1a9ff, 0xbe09070d, 0xa900994d, + 0x070d44c1, 0xbe0a0790, 0x07009941, 0x83d481a0, 0xa3344741, 0x073f0b31, + 0x03938b24, 0x5b490721, 0xd6a38b42, 0x3b912744, 0x5b4a0792, 0x2744d642, + 0x81a23ba1, 0x072907d4, 0xe321e33a, 0x07413831, 0x8933e33a, 0x4d0028d4, + 0x4d240121, 0x21e31121, 0xd48131e3, 0x8d104c58, 0xd28d26d3, 0x8d071e24, + 0xd38d26d2, 0x07dc8124, 0x834c070b, 0x4453304c, 0x33333407, 0x342b4447, + 0x44334307, 0xd4d5432b, 0x967e0108, 0x85c0abfc, 0x38b2c1dc, 0x99acd2c5, + 0xd39dbab3, 0xb8b49962, 0x9d28d389, 0x3140b6d4, 0x8d2eb189, 0x091eb0d1, + 0xd48d4127, 0x2eb38db0, 0x9d14b299, 0xb399b4d2, 0xb5d39d15, 0xc118b299, + 0xb189a8b4, 0x63d29d2c, 0x1534b3c1, 0x07d335d4, 0x8d3d074b, 0x3c0308d1, + 0x684c03b8, 0x01102c27, 0x05440341, 0xa8340331, 0x5cb2c1f2, 0xd2c50027, + 0x60b3c1f8, 0xc1fcd3c5, 0xd4d564b4, 0xb1c10100, 0x3df49330, 0xd1d504ca, + 0xb2890104, 0x6844c1bc, 0xd5c0bb99, 0xad0114d4, 0xbd0138d2, 0x1e013adb, + 0x1e072707, 0x43062703, 0x93f88ef0, 0x04e777f3, 0xc59031c5, 0x04e68c30, + 0x349d4127, 0x4efe0b99, 0xfdf393fe, 0x349904c9, 0x1f41c454, 0x66053499, + 0xa7312747, 0xffffff4e, 0x0cb543bd, 0x0013fdbe, 0xf4933027, 0x9d04e740, + 0xfe8e9943, 0xffff4ea7, 0xb544b9ff, 0x9346060c, 0x04e72bf4, 0x04984499, + 0x13d89e42, 0x9efe0b00, 0x4e0012a3, 0x1f08befe, 0x1299be03, 0x148fbe00, + 0x9efe0e00, 0x63001432, 0xba4d27f0, 0x27f40d0b, 0xf42d284c, 0xf0011007, + 0xe09ef043, 0xf94effed, 0xffff3ea7, 0xfd34b9fe, 0xcf48fc1f, 0x09349900, + 0x34874383, 0x432b4433, 0x004d4bf9, 0xbfe6ff00, 0x4ea700ba, 0xb9ffffff, + 0xb90a2a43, 0x070a2b42, 0x07322bc4, 0x27df6bd3, 0xb1f99300, 0xfa9304e6, + 0x5e04c948, 0x23f90087, 0xff000a20, 0x0a1824f9, 0x3d1bff00, 0x4f4b4d1b, + 0x3c5c2103, 0x27412c80, 0x00051e20, 0xb92127f1, 0xa60cb5c4, 0x2bc3b945, + 0x9a94990a, 0x2027430a, 0x2605a499, 0x29c4b947, 0x28c3b90a, 0xdc4d1b0a, + 0x070a804c, 0x4b432b4d, 0x4941c84f, 0x4d072d06, 0x070f4c83, 0x33033304, + 0x23040b45, 0xfff5d40e, 0x04610371, 0x0465430b, 0x04754027, 0xb9ff327e, + 0x070a2bc4, 0x2331033d, 0xbdd30741, 0x6b0a2bc4, 0xb90127df, 0xce0a2ac4, + 0x1b070b4d, 0x11032027, 0x00278a1e, 0xfd4ef98e, 0xa7ff1d7e, 0xffffffde, + 0xd4b92c1e, 0x41230a2a, 0x0a2ad4bd, 0x0a2ad0b9, 0x070f0c83, 0x33453340, + 0x23040b03, 0xfff5d40e, 0xb9fede7e, 0x230a2bd4, 0x2bd4bd41, 0x2bd4b90a, + 0xcf4fd60a, 0x1ea72027, 0x27ffffff, 0x2a14b938, 0x1824fd0a, 0xfdff000a, + 0x000a2024, 0x582103ff, 0x2914bdf3, 0x2814bd0a, 0x4efd8e0a, 0x12ecbefe, + 0xa7202700, 0xffffff1e, 0x40273827, 0x0a1824fd, 0x2103ff00, 0x14bdf398, + 0x14bd0a2b, 0x14bd0a28, 0xfe8e0a2a, 0xdacaf493, 0x0b400104, 0x99fd4efe, + 0x2007090d, 0xe0273d07, 0x0a1e3103, 0x030c2499, 0x03144e21, 0x8ef3a0e1, + 0x0cec03fd, 0x30074d07, 0x3e0b4123, 0x9d0cec23, 0x091e0904, 0xe1033439, + 0x3103341d, 0xca090499, 0xfd8ef3e4, 0xda82f493, 0x27202704, 0x9d30a710, + 0x429d0b42, 0x0a429d09, 0x439d2407, 0x5041d508, 0xd541150a, 0x030a5441, + 0x3c272c2c, 0x1d402719, 0x682c0324, 0xfe0bf3b0, 0xf493fc4e, 0xd104c79c, + 0x2703f84d, 0x223c2710, 0x213b2127, 0x4d8b4207, 0xf4934d96, 0x0104d818, + 0x0731074e, 0x33463341, 0x0b340b33, 0x983d033e, 0x124c272a, 0x04030c01, + 0x34033c05, 0x3107f4a8, 0x46334107, 0x340b3333, 0x34d13e0b, 0x2dab2aa8, + 0xfc0e4ee3, 0xa834d501, 0x45f4932a, 0x42d504c7, 0xfc8e03f8, 0xf3f01103, + 0xa7fc8ea8, 0xfffe6f3e, 0x23221c27, 0x03340134, 0x004ed834, 0x21130300, + 0x7124e632, 0x1424ce04, 0x24e63201, 0x24ce0481, 0x183c030b, 0x27ddf1f0, + 0x27fe0b00, 0xabfe0b01, 0x9b1fab0f, 0x53010710, 0x47010b01, 0x000e0300, + 0xfe0b0100, 0x0c41fc4e, 0x2c07dc07, 0x8318dc53, 0xfe00002e, 0x03112c53, + 0x302103d1, 0x1e0127d2, 0x14012707, 0xa7002722, 0xffffff3e, 0x0d3e34a9, + 0xef6be007, 0x34a94546, 0x01270d40, 0x00274496, 0x4fff4ea7, 0x7443c1fd, + 0x14c54127, 0xdc0f6bc0, 0x0000003f, 0xe4b67820, 0x27730fc6, 0x4df19304, + 0x0c1e00c4, 0x0706e496, 0xf1930427, 0x9e00c46e, 0x060069de, 0x93042706, + 0x00c4bef1, 0x4227f21e, 0x26c014c5, 0xd0d214e7, 0x3ea71322, 0x27ffffff, + 0x4432ad44, 0xc014c50d, 0x0d423dad, 0x2ea706c6, 0x27ffffff, 0xad482731, + 0xc50d4423, 0x23adc014, 0x14c10d42, 0x0c4cd8c0, 0x1a14891e, 0x14894230, + 0x1342d41c, 0xf1930427, 0x1e00c4bb, 0xc0ccdca3, 0xa0efd694, 0xfc8ec71e, + 0x4d27f063, 0x03410bb9, 0x4c27f40d, 0x07f42d48, 0x003da310, 0x45f00110, + 0x9ef04313, 0x4effe9e8, 0x07f063fb, 0x07b107d0, 0xbdf1930f, 0x87be03b0, + 0x0fe6ffe9, 0xf40900ed, 0x0bb94dc4, 0xe4f42975, 0x00d5484c, 0xc004d499, + 0xc110104c, 0xf093acd1, 0x0303b098, 0xedbef41c, 0xf493fff1, 0x0104d86c, + 0x85f39344, 0x498603b0, 0x80004dd8, 0x18348913, 0x80004d83, 0x062747d6, + 0xc475f193, 0xc4101e00, 0x34891141, 0x27414018, 0x9af19306, 0xe79e00c4, + 0x33890068, 0x31f49318, 0x0b0704d8, 0x93100c03, 0x03b047f1, 0x05482c27, + 0x1cc8be43, 0x1e012703, 0xbc4dc473, 0xfc93620b, 0x8903b030, 0xf3291ac4, + 0x4e204c03, 0x93062734, 0x00c49bf1, 0xc489c11e, 0x3a42c418, 0x0130b4a9, + 0x06274566, 0xc4bcf193, 0x07ac1e00, 0x180d030b, 0x271c0701, 0x83be202c, + 0xd499031c, 0x2a44d804, 0xd616d499, 0x931c0748, 0x03b1d7f0, 0xbe202c27, + 0x1e031c6a, 0x93062715, 0x00c4dbf1, 0x27ff795e, 0x10f19306, 0x6f5e00c5, + 0x430027ff, 0x4efb8ef0, 0x998107f5, 0xf2630411, 0xf1651483, 0xf393f261, + 0x0704d790, 0x03900750, 0x3101105c, 0x32992826, 0xc82f4b08, 0x32071820, + 0x34334287, 0x320b342b, 0x3f033333, 0x000593e0, 0x162c3499, 0x55302746, + 0x89f293f3, 0x3c2704d7, 0xc0591e19, 0x8499f011, 0x03418616, 0x4507443c, + 0x01121c27, 0x05340330, 0xa8440340, 0x874207f1, 0x2b443332, 0x93420b43, + 0x04d72ff3, 0x433320a7, 0x0b08329d, 0x2b439943, 0x31030507, 0x072b439d, + 0xfd7a7e18, 0x0d030907, 0xf1930118, 0x2703b11c, 0xafbe202c, 0x7127031b, + 0x1904db5e, 0x682c0324, 0x04bd4ff6, 0x3907f151, 0x41876107, 0x642b6433, + 0x6333610b, 0x93e06f03, 0x26070005, 0x03442c03, 0x7027103c, 0xf385f275, + 0x0703b85e, 0x7e180705, 0x8499fd2c, 0x104ce004, 0xf4930351, 0x0104d6bc, + 0x013d4043, 0x213d2080, 0x023d0080, 0x223de480, 0x99020a80, 0x8c890680, + 0x07f01524, 0x0305461c, 0x531c07c1, 0x89c12311, 0x74d64097, 0x0a1e4027, + 0x534494c1, 0xc3418345, 0x254f6b41, 0x228e89f4, 0x4e0744d6, 0x4707051e, + 0x9ac14433, 0x07240744, 0x831a0741, 0x0f2c0313, 0x450f4c03, 0x532453f1, + 0x07164644, 0x032703d4, 0xe327e3d8, 0x000d27d7, 0x07081e10, 0x27d103d4, + 0x4307800c, 0x3cd84283, 0x45060f20, 0x02901d27, 0x1d27131e, 0x0d1e01e0, + 0x1d274506, 0x051e0200, 0x01801d27, 0x31833a07, 0x35c6f335, 0x4c834107, + 0x0344e67f, 0x142b801c, 0x3d9b3207, 0x01233433, 0x408b4307, 0x44c60103, + 0x342b300b, 0x029b0107, 0x20471d07, 0x42071103, 0x4c831153, 0xe611237f, + 0x802c0344, 0x4147242b, 0x409b4d1b, 0x0c830407, 0x0304e67f, 0x402b804c, + 0xb19bb207, 0x0b0fec03, 0x07b40bb3, 0x1144534e, 0x23f405f0, 0x05260fec, + 0x34072b07, 0x8100da5e, 0xc04c5c94, 0x30272027, 0x0700ce5e, 0x03f121de, + 0xd6d173d1, 0x1e2d0714, 0x42928906, 0x93892433, 0xe3a81828, 0xac38303c, + 0xa337e310, 0x034c0731, 0x41417341, 0x0f2c03f0, 0x530f4c03, 0x46445324, + 0x03e40706, 0xe3e80327, 0x27e7e327, 0x1e10000d, 0x03e40708, 0x800c27e1, + 0x42834307, 0x0f203cd8, 0x1d274506, 0x131e0290, 0x01e01d27, 0x45060d1e, + 0x02001d27, 0x1d27051e, 0xf3310180, 0x410735c6, 0xe67f4c83, 0x801c0344, + 0x3207142b, 0x34333e9b, 0x43070123, 0x0103408b, 0x300b44c6, 0x0107342b, + 0x1e07029b, 0x11032047, 0x11534207, 0x237f4c83, 0x0344e611, 0x242b802c, + 0x4e1b4147, 0x0407409b, 0xe67f0c83, 0x804c0304, 0x219b402b, 0x3d07230b, + 0x0b0f3c03, 0x01345324, 0x274722f4, 0x89121e30, 0x10274294, 0x11273402, + 0x41c34107, 0x3f6b3407, 0xea3494c1, 0xc1013b4b, 0x42ea3894, 0xf0210134, + 0x01370fe6, 0x01333ff6, 0xc401275e, 0x80891b31, 0x24818922, 0xc1fae27e, + 0x40fa4494, 0x40270114, 0x94c57127, 0x01155e48, 0x84899781, 0x83a7071c, + 0x808910ac, 0x07a5061a, 0x1ed00734, 0x07300705, 0xc084c1d4, 0xcf0e4cf8, + 0x0c4cf800, 0x48d800a4, 0xa7a88651, 0xffffff4e, 0x0d4043a9, 0x221c8489, + 0x1e230743, 0xa7240703, 0xffffff4e, 0x0d3e43a9, 0x1e1a8489, 0xff4ea721, + 0x43a9ffff, 0x84890d3e, 0x0743221a, 0x07031e23, 0xff4ea724, 0x43a9ffff, + 0x84890d40, 0x0743221c, 0x07031e03, 0x1eb20704, 0xff4ea726, 0x4ca9ffff, + 0x41a90d42, 0x4c070d44, 0xc107a4d6, 0x03071407, 0x008f48be, 0x1c07b007, + 0x3ebe0d07, 0x4707008f, 0x34474183, 0x3f0b31a3, 0x14072b07, 0x1103238b, + 0x415b4207, 0x44d6038b, 0x213b2127, 0x415b4007, 0x012746f6, 0x101e013b, + 0x4c834707, 0x074653c0, 0x5b23070d, 0x07245b04, 0xe3d00732, 0xd8d1e331, + 0xa5060d71, 0x33e33207, 0xd007051e, 0x9489d3e3, 0x214d0028, 0x214d2401, + 0xe331e311, 0x509489d1, 0x9489432a, 0x0ad4c252, 0xad7e0507, 0x1e7027fa, + 0xa7712759, 0x69f19340, 0xf26104d3, 0xe608149d, 0x9df35124, 0x83c10813, + 0xb484c1b0, 0x65289289, 0x83947593, 0x0680002d, 0x40948926, 0x94c14576, + 0x204ca344, 0x714494c5, 0x27f481f3, 0x4001122c, 0x30054403, 0xf2a83403, + 0x40273127, 0x9d2c639d, 0x639d2964, 0xf57ff62b, 0x15f29300, 0x240104d3, + 0x80004dfc, 0xf39300e1, 0xd104c058, 0x2703f832, 0x223c2710, 0xd13bd127, + 0x428b4d07, 0x41074a46, 0x13334633, 0xf493140b, 0x0104d0cc, 0x981d0344, + 0x07140b2a, 0x482c2705, 0x031781be, 0xc022f093, 0xf804d104, 0xd54deb03, + 0x5e03f804, 0x1103fbf7, 0x07c2f3f0, 0x7e190708, 0x0ff6fa0f, 0x8d5efbe7, + 0xfdf09300, 0x04d104bf, 0xb12703f8, 0xf193bc3b, 0x8b04d084, 0xc613014b, + 0x074c074a, 0x334633dc, 0x03d40bd3, 0x0b2a98dd, 0x7e0d07d3, 0x07f6f89f, + 0x07482c27, 0xbe05071d, 0x93031722, 0x04bfc3f2, 0x03f824d1, 0x24d54beb, + 0x985e03f8, 0xc0c103fb, 0x1e1122cc, 0x7e0507ad, 0x0fe6f873, 0x0507fb87, + 0x07f7ff7e, 0x7e080719, 0x0176f99f, 0xaabea103, 0xa2c0ffb2, 0x51111e18, + 0x554103f4, 0x34f3f8f4, 0x1e7027fb, 0x27a02708, 0xff775ec0, 0xf2430707, + 0xf74ef58e, 0xd007a007, 0xdc72f893, 0x1e702704, 0x03db1142, 0xe6d02171, + 0x078201ba, 0x03ca0790, 0x059e389f, 0xcec00b00, 0x19070bb2, 0x5bbe0c07, + 0x07860056, 0x0c071b07, 0xffdd76be, 0x0907d411, 0xd2118405, 0x1c07d421, + 0x60be8415, 0xd8030056, 0xa4018803, 0x93bb74ca, 0x04d1c7fd, 0x9909d299, + 0x24ce0ad4, 0xd1f3931d, 0x4c2703aa, 0x05212313, 0x27030734, 0xbe321518, + 0x99ffdd37, 0xd49d09d4, 0x4ef78e0a, 0x090499f9, 0x400bc007, 0x070b4b99, + 0x333b874b, 0x0b432b44, 0x0743334b, 0x99d00bd4, 0x94072dd3, 0xc1449c03, + 0x36e68cda, 0x0b54d4c1, 0x0c4ce309, 0x7e54d4c5, 0x4027f718, 0x1e2dd49d, + 0x030a0712, 0x7e011c0d, 0x0c07ff3a, 0xdfbe090b, 0xa946ffe2, 0xa1193b07, + 0xf0934b87, 0x3304be94, 0xd1342b34, 0x27042c02, 0x3b3b0b41, 0x3342cb41, + 0xd53c0b33, 0x27042c04, 0x8c34c540, 0x0109c499, 0x9d4123c3, 0x31c009c4, + 0x873b072b, 0x2b34334b, 0x333b0b34, 0x993c0b33, 0x46262a34, 0x272e3299, + 0x3bc31141, 0x1534ab42, 0x99091ec3, 0x41230bc4, 0x070bc49d, 0x333b874b, + 0x0b432b44, 0x0b43334b, 0x9d30274c, 0xc4d12c43, 0x41030a54, 0x0a54c4d5, + 0xfa4ef98e, 0x0be60f6b, 0xd0c6f393, 0xc0340104, 0x31993441, 0x03030709, + 0x102b0c0c, 0x93ed1f03, 0x191e0005, 0x01030319, 0x23874307, 0x422b4433, + 0x4333430b, 0x43fd3127, 0x0005940d, 0x061ef128, 0x1efef27e, 0x89fd9306, + 0xd49904d0, 0x360d0709, 0x93c02742, 0x04ce5ffa, 0xbdc6fb93, 0xf8b4d104, + 0x3bd12703, 0x014d8bdc, 0x074806a0, 0x333c074c, 0x0b433336, 0x984d0343, + 0xbe040b2a, 0xd1ffe1e2, 0xeb03f8b4, 0xf8b4d54d, 0xc4c10303, 0x93cf22cc, + 0x04d06bfc, 0xc419d027, 0x0d074786, 0x04334d87, 0x0d0b042b, 0x0f030333, + 0x00059424, 0xffe1b1be, 0xc41d4027, 0xcc03d103, 0x19dcc468, 0x933027da, + 0x04d00ff4, 0xfa8e4305, 0x4ea7f54e, 0x93ffffff, 0x04cffff2, 0x43d12701, + 0xa0070620, 0x09c13123, 0x630707ac, 0x2043d5f0, 0x602c0306, 0x0d23b027, + 0x1c278021, 0x91230119, 0x682c0394, 0xb103342e, 0x3b07f190, 0x34334b87, + 0x3b0b342b, 0x34f13333, 0x00059434, 0x0e0c4cdc, 0x43079361, 0x240c4c83, + 0x6532a348, 0x874b0793, 0x2b44333b, 0x334b0b43, 0xe04f0343, 0xc1000593, + 0x93615442, 0xab444c03, 0x07936532, 0x27380339, 0x3101122c, 0x41053403, + 0xf2a84403, 0x3b874b07, 0x432b4433, 0xa3994b0b, 0x03433310, 0x0593e04f, + 0x9d315300, 0xa3992e43, 0x2a439d05, 0x24209489, 0x1e202741, 0x13a29904, + 0x3b874b07, 0x432b4433, 0x43334b0b, 0x940d42fd, 0xad990005, 0x60a48962, + 0x585ca0c1, 0x270027d4, 0x07031ec0, 0x16a499c4, 0x29364f76, 0x3b874b07, + 0x432b4433, 0x43334b0b, 0x946c49f5, 0xf1930005, 0x1904bc60, 0x2c12d193, + 0x3b412704, 0xd542ab43, 0x07042c14, 0x333b874b, 0x0b432b44, 0x04a1994b, + 0x4f034333, 0x000593e0, 0xc128419d, 0x40c534a3, 0x3c43c538, 0x43c530a7, + 0x04a49940, 0xe35644d8, 0xc4521ed2, 0x4b072a71, 0x44333b87, 0x4b0b432b, + 0x49f54333, 0x0005946c, 0xf2939419, 0x0704bc04, 0x2c23d117, 0x07143b04, + 0xd543ab41, 0x07042c24, 0x334b873b, 0x0b342b34, 0x0333333b, 0x0593e03f, + 0x3834c100, 0x30c54012, 0x34a4c138, 0x274034c5, 0x28349d40, 0x3b874b07, + 0x432b4433, 0x43334b0b, 0xf893e027, 0x2704ce6c, 0x27d49651, 0x836d0750, + 0x104ced68, 0x1e000594, 0xece0f955, 0x27000593, 0x872007c0, 0x2b243340, + 0x33200b24, 0xe02f0323, 0x99000593, 0x46662a24, 0xc12e2499, 0x143b3ca3, + 0x1486138b, 0x2c9dc127, 0x2484012a, 0x05112741, 0x874007f1, 0x2b443330, + 0x01400b43, 0x034333f3, 0x0593e04f, 0x29439d00, 0x032d469d, 0x098499e1, + 0x1127f505, 0x01a3e4da, 0x2f41c084, 0xa2c18e11, 0x274e073c, 0x1e42eb30, + 0x07418b03, 0x23140703, 0x030f6b11, 0x93429631, 0x04cdd7f3, 0x8b0b3499, + 0x9d402b2e, 0x32150b34, 0x4027061e, 0x070b849d, 0x334b873b, 0x0b342b34, + 0x0333333b, 0x0593e03f, 0x2b349900, 0x349d4123, 0x24d21c2b, 0x9d412771, + 0xcb072934, 0xc4334b87, 0xcb0bc42b, 0xcf03c333, 0x000593e0, 0x9954c4c1, + 0x84072dc3, 0x00008e83, 0xc548cb01, 0xfd9354c4, 0x9604cd78, 0x50d4d139, + 0x030d070a, 0x50d4d541, 0x7e1b070a, 0xd4d1f2a1, 0x61270a50, 0x9934c4c5, + 0xccc109d0, 0x07100738, 0x03e027db, 0xe37f1e11, 0xc4c50c4c, 0x09d49954, + 0x46166027, 0x4e589461, 0x27010000, 0x2cc49d41, 0xcb07201e, 0xc4334b87, + 0xcb0bc42b, 0x0c07c333, 0x94240f03, 0xc97e0005, 0xfd4027f2, 0x05940cc4, + 0x873b0700, 0x2b34334b, 0x333b0b34, 0x93402733, 0x04ccfff0, 0x34fd1b07, + 0x0005940d, 0x1ef2307e, 0xece4f950, 0x07000593, 0x33348724, 0x0b232b24, + 0x03233324, 0x0593e02f, 0x29249900, 0x24c14596, 0x034c3238, 0xdaf1f0e1, + 0xccc6f493, 0x07300704, 0x0731032e, 0xec2f0314, 0x9d000593, 0x0b1e0943, + 0xe1032419, 0x21032d1d, 0x1499d407, 0xf1e4ca09, 0x4b873b07, 0x342b3433, + 0x33333b0b, 0x93e03f03, 0x34990005, 0x89f1932a, 0x449604cc, 0xa4996826, + 0xc0479616, 0x14991871, 0x9d41030b, 0x65f60b14, 0x112e3499, 0x3b312712, + 0x1532ab34, 0x938d0613, 0x04cc5ff4, 0x070c4399, 0x87430704, 0x2b443323, + 0x33430b42, 0xc1400b43, 0x10275443, 0x48c583ab, 0xf91d1e54, 0x0593ec13, + 0x07110300, 0x33238743, 0x0b422b44, 0x27433343, 0x0943fd31, 0x99000594, + 0x14da0904, 0xb9a499df, 0xf0934a06, 0x9904cc14, 0x48c60904, 0x93eb43f9, + 0x43070005, 0x44332387, 0x430b422b, 0x44f94333, 0x0005940b, 0x547e4596, + 0x7e061efa, 0x061efa4f, 0xcbe6fd93, 0x09d49904, 0x49860d07, 0x93eb44f9, + 0x24070005, 0x24333487, 0x240b232b, 0x2f032333, 0x000593e0, 0xe6292499, + 0x2b249945, 0x1ecd4fc6, 0xfa197e06, 0xfd930b1e, 0x9304cbb0, 0x04b8fbfa, + 0x2609dc99, 0xcb51becc, 0x120ccaff, 0x990bd399, 0x434a37a4, 0x9909d399, + 0x34c235a4, 0x09d49928, 0xf908d299, 0x0593eb44, 0x072f4b00, 0x33348714, + 0x0b132b14, 0x330d0714, 0xf9242e13, 0x05940b14, 0xae4fc600, 0xcb62f493, + 0x09449904, 0x6bf64c36, 0x4ed89461, 0x36010000, 0x4b870b07, 0x042b0433, + 0x03330b0b, 0xcf03c007, 0x000593e0, 0xc62cc499, 0x54c4c147, 0x94240f03, + 0x4ea30005, 0xe3014000, 0x54c4c544, 0xffdcb1be, 0xc49d4027, 0x8ef0432c, + 0x63fc4ef5, 0x3dfe93f1, 0x002704cb, 0x1c272027, 0x27e41919, 0x03303b31, + 0x010368ec, 0x23ab4486, 0xfc93f170, 0x9904caf4, 0xc39909c1, 0x93c4110b, + 0x00b8a6f0, 0x005853be, 0x3e1ed027, 0x93ecd2f9, 0xd1030005, 0x42873207, + 0x342b3433, 0x3333320b, 0x93e03f03, 0x3e990005, 0x2934992b, 0x3e99fe05, + 0x99fe152c, 0xfe252d3e, 0x352a3e99, 0x2e3e99fe, 0x33c1fe45, 0x5812be38, + 0x09c49900, 0xf0931d07, 0xda00b8a0, 0xf143b7d4, 0xfb4efc8e, 0x07b90499, + 0x07b107d0, 0x274616c2, 0xb9049d41, 0xb8eef093, 0xb7c5be00, 0xc1c5e6ff, + 0x3b874cd2, 0x320b4c87, 0x340541a3, 0xf74efb8e, 0xa30d0499, 0x07b007f0, + 0x07c20781, 0x2744d693, 0xc17e1ea0, 0xac03440a, 0x07761e48, 0x0737072f, + 0xbe1c070b, 0x010308c1, 0x07f411f2, 0x2b242b39, 0x07f2053c, 0x073202d3, + 0x1ead46d2, 0x23110337, 0x03f3f0d1, 0x2419321e, 0x84ce2103, 0x0b2a07f1, + 0x07c10721, 0x030a1e3d, 0xf0d123c1, 0x081e03f3, 0x21032419, 0xcef148ce, + 0x2c070c1c, 0x212b0b07, 0x07ff617e, 0x07d4d61c, 0x071a1ec1, 0x07210b2a, + 0x07c41e3d, 0x072d0710, 0xff487e0b, 0x051ecd0b, 0x74037f07, 0x8385c9ca, + 0xa7f78ef0, 0xffffff4e, 0x0cb543b9, 0xd46ef493, 0x98439d04, 0x011a32e4, + 0xefff3ea7, 0xd54027fd, 0xd50e1034, 0xa70e1434, 0xfd7fff2e, 0x4ee32411, + 0x15020000, 0xd5432724, 0xa7024434, 0xfbffff2e, 0x063834d1, 0x24314566, + 0x00004fd8, 0xa7f20100, 0xfbffff1e, 0x12d14027, 0x14d50218, 0x13d10218, + 0xf4930210, 0xc504d418, 0x20289443, 0x0b1e1027, 0x021811d1, 0xffff1f83, + 0x3ea70fff, 0x27fdefff, 0x4034d543, 0x4034c102, 0xa7fb48dc, 0xfdefff2e, + 0xdc4024c1, 0xf908004d, 0x24d54427, 0x24d50240, 0x30270244, 0x063823d5, + 0xebbf2ea7, 0x272305fd, 0x0400004f, 0x9b241508, 0xf0930ef3, 0xc104d3c0, + 0x03998004, 0xc5412b9a, 0x18468004, 0xffff4ea7, 0x2a44b9ff, 0x83432b0a, + 0x43330f4c, 0x4301400b, 0x312b4211, 0x4115120b, 0x3a1e4305, 0xffff2ea7, + 0x2a24b9ff, 0x2b3a060a, 0x0f4c8343, 0x44f14333, 0x00059e98, 0x43074836, + 0x049d4123, 0xbd41279a, 0x99063524, 0x40270f23, 0x270ef49b, 0xf5338741, + 0x02b04034, 0xa73127ff, 0xffffff4e, 0x0cb543bd, 0xfe4efe0b, 0xffff0ea7, + 0xb504b9ff, 0x6541c40c, 0xd33afe93, 0x90e4c104, 0x03b945b6, 0x04b90cb6, + 0x43ce0cb7, 0xbf3ea750, 0x1027fdeb, 0x4f273105, 0x08040000, 0x42273415, + 0x0cb504bd, 0xc10ef19b, 0xe4c18ce2, 0xff3ea794, 0x32d5fbff, 0x48a30214, + 0x021034d5, 0x7fff2ea7, 0xe32421fd, 0x0200004e, 0x23112425, 0x04bd4027, + 0x3ea30cb4, 0x9d020000, 0x231599e1, 0xfe4efe8e, 0x93fe5a7e, 0x04d2cff4, + 0x30272027, 0xc59a439d, 0x42c59442, 0x8442c580, 0x3ea7fe8e, 0x27ffffff, + 0x271c2740, 0x0cb734bd, 0x0cb634bd, 0xf3932027, 0x0704d2a4, 0x23320541, + 0xb8340311, 0xa73027f4, 0xffffff4e, 0xd28ef293, 0xb543bd04, 0x8421c50c, + 0x0b8021c5, 0xff3ea7fe, 0x4027ffff, 0x0cb434bd, 0x0cb734bd, 0x0cb634bd, + 0xf49b4027, 0xa7fe0b0e, 0xffffff3e, 0x0cb530b9, 0xf29309e6, 0xc104d258, + 0x44f69024, 0x06992499, 0xb631b948, 0xb732b90c, 0xb901200c, 0x060cb434, + 0x2b410746, 0x134f6b42, 0x4910104c, 0x0bfee55e, 0xa80499fe, 0x4ea74626, + 0xc5fff5d7, 0x41033804, 0x0b3404c5, 0xff4ea7fe, 0x4411feff, 0xf5e04e23, + 0x3404c5ff, 0x04c54823, 0x27fe0b38, 0x0ef39b30, 0xf49b4027, 0x2bf49b2a, + 0x9b22f49b, 0x039d23f4, 0x4c049da9, 0xc55003c5, 0x03c55403, 0x4403c590, + 0xc54803c5, 0x03c5a003, 0x4003c53c, 0x9d4d039d, 0x039d8b03, 0x8a039d8c, + 0x3ea7fe0b, 0x27fdeaff, 0x27340540, 0x0400004f, 0x2734150c, 0x0ef49b40, + 0x9b2bf29b, 0xf29b22f2, 0x23f29b2a, 0x9b1c1ca3, 0xfe0b20f1, 0xfc4efe0b, + 0xf18af293, 0x502ec103, 0x334023c1, 0x2b4307e3, 0x0740084e, 0x312d99e3, + 0x07302499, 0x074d1bc2, 0x1e2f6b24, 0x41043117, 0x0b210703, 0x1b433343, + 0x4c2f6b4e, 0x01011140, 0x07fc8e00, 0x07418342, 0x33053304, 0x07042b43, + 0x8c0f0312, 0x030004be, 0xd2d2ce11, 0xc1d0c0c1, 0xfc8ed4c1, 0xf12ef393, + 0xaa349903, 0x42230f6b, 0x6bb0309d, 0x0f4c144f, 0x30c50027, 0x93fe0bbc, + 0x03f113f4, 0x0bcc40c1, 0x28fb4efe, 0x2720010d, 0x1e20000d, 0x03000c05, + 0x73d00707, 0x23bd07d3, 0xf1f493b8, 0x0b0703f0, 0x41c10fab, 0x070833b4, + 0x1ee027c4, 0x2fe4c47c, 0x3f9b19d6, 0x27b1c823, 0xabbcc499, 0x2df49b40, + 0x9b2d4f9b, 0xe32b23ef, 0xe403e373, 0xc1214f9b, 0x438bbcc3, 0x11274486, + 0x0427ed3a, 0x2f9b641e, 0xbcc3c124, 0xd8182c53, 0x21c40d32, 0x9b12440a, + 0x4827244f, 0x3cd8151e, 0x42071610, 0xd4804c23, 0x12c40e44, 0x244f9b0b, + 0xf49b4627, 0x18211e25, 0x17a6403c, 0x27244f9b, 0x25f49b48, 0x102724c6, + 0x1214051e, 0xe1031103, 0x2783edda, 0x9b131e03, 0xf293214f, 0xc103f058, + 0x0027bc23, 0x24c5438b, 0x49f493cc, 0x41c503f0, 0x4efb8eb4, 0x07d007fb, + 0x272f6bb1, 0x0000ff4f, 0x21f49b40, 0xfd7e0207, 0x29fc93fe, 0x402703f0, + 0xc5c8c4c5, 0xd726c4c4, 0x1b070d07, 0xffb2dfbe, 0xd8334d07, 0xdc534f6b, + 0xc4c4c518, 0xc1c8cdc5, 0x4dd494c4, 0x36198000, 0x000d2746, 0x27100780, + 0x5735be20, 0x98c0c500, 0x80004d27, 0x8e94c4c5, 0x93fb4efb, 0x03efdffb, + 0x998cb399, 0x0b078ab4, 0xb49d43ab, 0x71f4938c, 0x4c0104d0, 0x031067be, + 0xd5204f9b, 0x9b2000c4, 0xc4d5234f, 0x4f9b2004, 0x31f39322, 0xc4d504d1, + 0x4c272008, 0x03b20136, 0x033205b4, 0x8ef4a834, 0x93fc4efb, 0x03ef97fc, + 0x0d274127, 0xc49d2080, 0x9e77bea8, 0x29f493ff, 0x400504d0, 0x5a7e0c07, + 0x7e0c07fd, 0x0c07fd7f, 0x20271027, 0xa7fdb57e, 0xc49d7f4c, 0xf74c27b0, + 0xc4c53027, 0xc540a7ac, 0xc49d9cc3, 0xbcc3c5aa, 0xc5c0c3c5, 0xfc8eb8c3, + 0x93234f9b, 0x03ef47f3, 0x34c54123, 0x4efe0b40, 0x39f493fe, 0x43c103ef, + 0x4c429940, 0x432b4007, 0x40282452, 0x031ee027, 0xf193e207, 0xc103ef20, + 0x20075013, 0x33332e2b, 0x432b4207, 0xe007404c, 0x2307e32b, 0x9d4412c5, + 0xfe8e4e1e, 0x0399fd4e, 0x83d0078a, 0x2734d637, 0x99fd8e00, 0x4fa38b04, + 0xffffffa0, 0x049d43ab, 0x230f9b8b, 0x3e40d0c5, 0xbe0d079f, 0x99030f42, + 0x00278bd4, 0x01274618, 0xfd4efd8e, 0x9e4af493, 0x99410103, 0xd4070442, + 0x4f9be927, 0x203c2724, 0x435b322b, 0x410b4447, 0x33e33407, 0x000030f1, + 0x4238ff06, 0x1e100c53, 0x070fab03, 0x0c3c5330, 0x41273536, 0x1e05d49d, + 0x06d49924, 0x3cd047a6, 0xf29b180c, 0x53400725, 0xf84d8341, 0x0b20071f, + 0x0f2c8314, 0x1eb4fef0, 0x25f39b04, 0x0fff0d83, 0xfb4efd8e, 0xffff4ea7, + 0x380cc1ff, 0x0a2a4bb9, 0x0027d007, 0x07009d5e, 0x31d09943, 0x070f4c83, + 0x330183e4, 0x0be33345, 0x072007e4, 0xd4ee2330, 0x2333fff5, 0x322b3533, + 0x3d0be171, 0xe481e261, 0xe1413135, 0x2107420b, 0x2c833425, 0x96312780, + 0x07302724, 0x38263323, 0x1e27a311, 0x101c3815, 0x0e1e23a3, 0x04001d38, + 0x061e21a3, 0x2ca3100c, 0x33400780, 0x2b033345, 0x9d4d0b40, 0xd1c11442, + 0x45403154, 0x9dc31941, 0xd3c11543, 0x31e12154, 0x05300be2, 0xc5421541, + 0xc41954d3, 0x41030127, 0xd499c41d, 0x30d39931, 0x31034103, 0x9d31d49d, + 0xd49930d3, 0x0c42d430, 0x4307c319, 0x4cfc4b2b, 0x8eff5680, 0x99fa4efb, + 0x03993104, 0x340bc130, 0xe407432b, 0xef6bd107, 0x411ea027, 0x32413131, + 0x2333210b, 0x4d2b4207, 0x34994128, 0x204cd814, 0x14349946, 0x17104cdc, + 0xb60e44d8, 0x99d24e15, 0x4e1b3204, 0x2f804cd8, 0x4103b419, 0x0499b41d, + 0x23ec0730, 0x9def6b41, 0xa1273004, 0x41834e07, 0x35333407, 0x342b4333, + 0x07310499, 0x03300bce, 0xa9e4cec1, 0x3441051e, 0x04c1041e, 0x5004c554, + 0x3ea7a7e6, 0x27ffffff, 0x3534bd41, 0x0f339906, 0xf49b4027, 0x8741270e, + 0x4034f533, 0x99ff02b0, 0x02993104, 0x32039930, 0x4f6b422b, 0x3c18342b, + 0x32049d80, 0xfd4efa8e, 0xeceaf093, 0x0d86be03, 0xe1fd9303, 0xd1c103ec, + 0x030d0754, 0x7e133311, 0x0d07ff35, 0xf6fe6d7e, 0xc9f09301, 0xcc7e03ec, + 0xa4d1c1fa, 0xecbef093, 0x0e202703, 0xfafc5efd, 0xb007fb4e, 0xc1070107, + 0x07fd6e7e, 0x7e1c070b, 0x0b07ff05, 0x3b5efb0e, 0x99f84efe, 0x1e218904, + 0x94074383, 0x44879433, 0x1d31942b, 0xe30bb907, 0xbec5b00b, 0x07d32b58, + 0x07a107c0, 0x102f6b43, 0x000001df, 0x00df2701, 0x9d010000, 0xbdc560b2, + 0x0ba3315c, 0x0e80274d, 0xa7812743, 0xfde3ff2e, 0xa411a301, 0xb89d2e05, + 0xd0c3c561, 0x15d4c4c5, 0x35e0272d, 0xef3ea72e, 0x4c27fde3, 0x1534050f, + 0x61b4993d, 0x44c63e35, 0x030c16be, 0x9989c499, 0x290788c3, 0x07582c03, + 0x0341030c, 0x9d020b31, 0xc39d89c4, 0x4ef88e88, 0x23cf9bfc, 0xec06f093, + 0x3c01c103, 0xa2be2027, 0x4f9b030e, 0x4e002723, 0x2701274c, 0x25f49b48, + 0xfd4efc8e, 0x0401d007, 0x2b233f9b, 0x7240c843, 0x24090399, 0x7bf29331, + 0x0d1e0311, 0xf2533224, 0x051e03a7, 0x0211f253, 0xebc2f493, 0xaa439d03, + 0x999c42c5, 0x857e08d0, 0x0ad099fa, 0x030cacbe, 0x0120f09b, 0x0fd4bed0, + 0xf802c003, 0xeb9ef393, 0x8a349903, 0x41d8d211, 0x9033c10e, 0x33334207, + 0x4108432b, 0xf4932307, 0xc503eb84, 0xdd993c42, 0x9d30270b, 0x439d8b4d, + 0x230f9b8c, 0x305efd0e, 0x93fd8efc, 0x03eb67f4, 0x9e4040c1, 0x4e030ff7, + 0x310499f5, 0xc1300399, 0x432b9802, 0xf0a3c407, 0xcf6bd007, 0x8027b207, + 0x50279027, 0x6ea7a027, 0xa7fde41f, 0xfde40f7e, 0xf115f205, 0x0700a05e, + 0x07e183ec, 0x333e074e, 0x2b353343, 0x313d0b34, 0x11344130, 0x07400bf1, + 0x2b233324, 0x73270321, 0x07200223, 0xd6332120, 0x2b5407a4, 0xc11a0752, + 0x120b94d4, 0x0b6e41ca, 0xce022b03, 0x24d6280b, 0xf3e8241e, 0xefff3ea7, + 0xfc34c1fd, 0x4c333327, 0x1d4c5318, 0x05ec44c0, 0x27621560, 0x05643540, + 0x3572157b, 0x333e0774, 0x2be33335, 0x993d0b3e, 0x48071430, 0xab200ca3, + 0x14309d49, 0x380144d6, 0x40073911, 0x45664783, 0xcca3c407, 0x1ea10710, + 0x034c071d, 0x0bc40741, 0x07cf6bb2, 0x31d499a1, 0xff5dc4ee, 0x1e10cc27, + 0x1ef3e805, 0xff2ea706, 0x24c1fdef, 0xdc3327fc, 0xeefc6a4d, 0x0d07f111, + 0x99fccc7e, 0xd39931d4, 0x07432b30, 0x9d2f6b24, 0xa4d632d2, 0x3e1e0027, + 0x21832123, 0x12074207, 0x15334333, 0x1d0b142b, 0x149d4027, 0x141c9d15, + 0x1a35f401, 0x18051545, 0x14251915, 0xc530d499, 0x410390d5, 0xc530d49d, + 0x0d0750d5, 0x827e3027, 0x330011fd, 0x8ef08303, 0xc1f84ef5, 0xc007440d, + 0xa2079107, 0x8027d7e3, 0xa1be0c07, 0x0c07030a, 0x9c7e1d07, 0x8ac499fe, + 0x4576b007, 0x8b7e0c07, 0x964127fb, 0x22402704, 0xd68b07b8, 0xb4f6db4f, + 0x3350cdc1, 0xbe0c07d3, 0x0b030bf1, 0x071b07b0, 0x0a4ebe0d, 0x2b490703, + 0x27a4124d, 0x070907a0, 0x9ef80e1a, 0x4e0309c5, 0xb1f493fa, 0x439903e9, + 0x3c0ac14c, 0x274d439d, 0x9dc00730, 0xd4074c43, 0x9940d4c1, 0x4a1b4cd3, + 0x20273432, 0x2307400c, 0x1a070d07, 0x030c2cbe, 0x0344b007, 0xc5234f9b, + 0x391e40d4, 0x7e230f9b, 0xd1c1fa37, 0x7e0d0744, 0xd499fbcd, 0x1b41c4aa, + 0xc1234f9b, 0x432b40d3, 0x00014f50, 0x4f9b7000, 0x004f0323, 0xc5f00000, + 0x0d0740d4, 0xe37eb424, 0xa50fd6fa, 0xe93efd93, 0x4dd49903, 0xe04cd49d, + 0xc4010ab4, 0xc3991bb2, 0x8ac4998b, 0x83203ca3, 0x0734ab47, 0x8bc39d0c, + 0x030985be, 0xfa8e0227, 0x9daac399, 0x40274dd4, 0xd49d0027, 0xbeb3474c, + 0x9b030ce9, 0xc07e230f, 0xbe0b07f9, 0x99030e08, 0xd49d4dd4, 0x9d0bea4c, + 0x24df9b00, 0xdc534827, 0x25f49b18, 0x9b2fb9d0, 0xf49b243f, 0x183c5325, + 0xd3ab3833, 0x1e11bcd0, 0x27244f9b, 0x25f39b38, 0x9b242f9b, 0x4c5325f3, + 0x104c3318, 0xffff2ee3, 0xab42abff, 0x9d4027d4, 0x4d078bc4, 0x4fd44123, + 0x0fffffff, 0x234f9b2a, 0xc4c50407, 0xf9597e40, 0x3340c4c1, 0xc1d40bd3, + 0xcdc5c0c0, 0x0c6bbe3c, 0x8bc49903, 0x4ca30027, 0x8bc49d10, 0x4f9bfa8e, + 0x40c4c523, 0xe86ef493, 0x4042c103, 0x9b224f9b, 0xc399231f, 0x03412b8b, + 0xffff002f, 0xa3242b7f, 0x1e1e403c, 0xd88ac499, 0x2f9b2246, 0x8bc39923, + 0xe38ac499, 0x203ca307, 0xc2c54783, 0x0b34ab40, 0x9d022720, 0xc2c58bc3, + 0x27fa8e3c, 0x4efa8e04, 0x21f393fa, 0x349903e8, 0x9dd0074c, 0x40274d34, + 0x994c349d, 0x4f4b8b04, 0xb427402c, 0xa307701e, 0xdc99b027, 0x3ca3c18a, + 0xce234f9b, 0xd1c10e34, 0x270d073c, 0x0a93be20, 0x9bb00703, 0xa87e230f, + 0x44d1c1f8, 0x3e7e0d07, 0x440d07fa, 0xf9747eb4, 0xcf1e0ba6, 0xa4c1c636, + 0x233f9b3c, 0x412c432b, 0xa38adc99, 0x8bd499c1, 0x37833c07, 0xab204ca3, + 0x8bd49d43, 0x17be0d07, 0xc6180308, 0xd499b227, 0x804fa38b, 0x9dffffff, + 0xb2c08bd4, 0x8bd4996d, 0x40cc4f4b, 0xbe01275a, 0x99030c9c, 0x44d630d4, + 0x4b1eb427, 0x99234f9b, 0xd4c58ad3, 0xc1315840, 0x433390d4, 0xf493191e, + 0xc103e76c, 0x3f9b4044, 0x232f9b22, 0x4f03322b, 0x7fffff00, 0xd4c5432b, + 0x104c273c, 0xb68bd49d, 0x7e0d0706, 0x05c6f848, 0x0744d1c1, 0x7eb2270d, + 0x031ef99d, 0xf493b027, 0x9903e734, 0x439d4d43, 0x8e0b074c, 0x9bfa4efa, + 0xfa9323bf, 0x8303e720, 0x3cacc1b7, 0x27234f9b, 0xc42b1fdc, 0x4f9bdb2b, + 0x233f9b22, 0xd4d2432b, 0xbe0d0718, 0xd2030c10, 0xa4c10fd0, 0x233f9b3c, + 0x4032432b, 0x031ea427, 0x0027a027, 0x030accbe, 0x9324df9b, 0x03e6dff4, + 0xbec040c1, 0x2c030abd, 0x8e0127c1, 0x032d07fa, 0x0000002f, 0x20cccc80, + 0x203c270c, 0x40a73c2b, 0x248b433b, 0x4207b103, 0x44c64b5b, 0xfa8e0027, + 0xa4860127, 0xfa8e0027, 0xb107fb4e, 0xbf6bd007, 0x60200cc0, 0xf4930124, + 0x1e030c3a, 0x5302240d, 0x1efe66f4, 0xd0f45305, 0x81fc93fc, 0xc09903e6, + 0x9cc4c5b0, 0x7eaacd9d, 0x4027f544, 0x203cc4c5, 0x314c27d2, 0x4ca7041e, + 0x8bc49d7f, 0xf493b646, 0xc103e65c, 0x0c83ac40, 0x100ca30f, 0x0c27041e, + 0x0747be18, 0x45f49303, 0x40c103e6, 0x9efb0ec0, 0x8e030a21, 0x93fc4efb, + 0x04c6d7f4, 0xf2934c01, 0x9303e62c, 0x04c7a7f3, 0x01364c27, 0x05340331, + 0xa8240321, 0x15fd93f4, 0x412703e6, 0x07a8d49d, 0xf3e77e0d, 0x2000c1d1, + 0x2004c2d1, 0x437e0d07, 0x8ad499f4, 0xc3d14758, 0xc4d12004, 0x34ce2008, + 0x30d49928, 0x0d0744f6, 0xd1f7817e, 0xc12004c1, 0xd29940d4, 0x32411b4c, + 0x27400824, 0xcdf09320, 0xfc0e03e5, 0x03086c9e, 0xfe0bfc8e, 0x954af393, + 0x1d402703, 0xbd412734, 0x27010034, 0x59f41300, 0xfe0b3415, 0xfc93fc4e, + 0x11039530, 0x07dc07c4, 0xd6f48b0c, 0x86c41904, 0x1d402742, 0x0bfc8ec4, + 0x27fe0bfe, 0x11f49331, 0x431d0395, 0xf063fe0b, 0x0bba4d27, 0x4c27f40d, + 0x07f42d28, 0x03f00110, 0x9ef04318, 0x93ffcc5f, 0x0394eff0, 0x4f000411, + 0x0000d938, 0xfe0bd91e, 0x1007fd4e, 0xd007f063, 0x0f071803, 0xffcc95be, + 0x042704d6, 0xf4091e1e, 0x0bba4d24, 0x4c40f429, 0x93062728, 0x00a90ef1, + 0x004b2d9e, 0x1509f413, 0x430027d4, 0x4efd8ef0, 0xb90da1fc, 0x23010004, + 0x03c007f6, 0x45c618dc, 0xbfbe0d07, 0x40270000, 0x0100c4bd, 0x20273f07, + 0x05184c27, 0xc8340332, 0x07d201f4, 0xbe0f071d, 0x16ffaddd, 0x89f4930a, + 0x44c104a7, 0x0f4c8344, 0x35333407, 0x342b4487, 0x43334307, 0x3ea7432b, + 0xf1fd4fff, 0x05860c44, 0xc5331100, 0xf413a843, 0x03c41507, 0x4efc8ef6, + 0x55f493fd, 0x43c104a7, 0x83d00744, 0x00000f3f, 0x4c00a180, 0xa3312330, + 0xfffff03f, 0x073103ff, 0x87453343, 0x07432b33, 0x2b133314, 0x601f0314, + 0xbe000585, 0xc0ffbb5a, 0x79be1b04, 0xd461ffaa, 0xf4134138, 0x53051e12, + 0x07ff17f4, 0x7ed4150d, 0x0027fee6, 0xfd4efd8e, 0x14bed007, 0x0556ffb6, + 0xfefef453, 0x0227d415, 0xfc4efd8e, 0x3f07f523, 0x4c272027, 0x03320514, + 0x99f4c834, 0x02893604, 0x8941130e, 0x14071003, 0xd2071f6b, 0x8d05f19d, + 0xf28d2ef3, 0xa6d39b2c, 0x504d2715, 0x8d362701, 0x091e3af4, 0x8dac4c27, + 0x33273af4, 0x4387329b, 0x2740f4c5, 0x4c27902c, 0x193d2710, 0x3bed0702, + 0x1d313b21, 0x271427f4, 0xe8ed03c1, 0x270f0703, 0x8df43d40, 0xf38d38fe, + 0x30f28d32, 0x9d07f19d, 0xfdc54bfc, 0x04fc9d34, 0x9d09f19d, 0x91be08f1, + 0xf503ffa6, 0x3127fc8e, 0x9d1f4c27, 0x039d5604, 0x55039d54, 0xfe0bfe0b, + 0xfe0bfe0b, 0xa7cef093, 0x93fe0b00, 0x04c5f7f4, 0xc16443c1, 0x3fe6ac02, + 0x349900a9, 0xa24fe626, 0x2634b900, 0x9a4fe601, 0xd5402700, 0x27012824, + 0x1c24d541, 0x0f4c2701, 0x013024d5, 0xd5484c27, 0x27012024, 0x24d5144c, + 0x42070124, 0x01344d03, 0x3c271027, 0x03410511, 0x27f3c844, 0xbd402712, + 0xbd013824, 0xbd013921, 0xbd013a21, 0x93013b21, 0x04c593f4, 0xb96443c1, + 0xc6012634, 0x2734b94c, 0xbd450601, 0x1e013821, 0x2834b90d, 0x27450601, + 0x3824bd41, 0x6df19301, 0x13c104c5, 0x2834b964, 0xb9480601, 0xbd012933, + 0xc1013923, 0x44b96414, 0x24bd012a, 0x14c1013a, 0x2b44b964, 0x3b24bd01, + 0x4efe0b01, 0x072227fc, 0xa71327c0, 0xfe00fe0e, 0xfff29abe, 0xd2be0127, + 0xf2930303, 0x2704c528, 0x204c2730, 0x9d11249d, 0x40271523, 0x9d10239d, + 0x24c51423, 0x0dc39940, 0x01004d27, 0xf612248d, 0x6823c538, 0x036423c5, + 0x2704b82d, 0x4027203c, 0x2d03241d, 0xf3a80130, 0x01003d27, 0x241d4027, + 0x01202d03, 0xf393f3a8, 0x2704c690, 0xb44c2720, 0x34033205, 0xf393f4c8, + 0x2704c558, 0x184c2720, 0x34033205, 0xfc93f4c8, 0x2704c4bc, 0x8d01284d, + 0x40278cc4, 0x07f0c49d, 0x38f4930c, 0xc4c50000, 0xa80d036c, 0x1b98be04, + 0x030c0700, 0x014ab80e, 0x001261be, 0x0c030c07, 0x4efc8e8c, 0xbed007fd, + 0xc6ffb3e7, 0x8e042704, 0x08f413fd, 0xd4c50227, 0x4efd8e6c, 0xbed007fd, + 0x960303b5, 0xfef49305, 0xd4c50309, 0x20fd8e6c, 0x8e042702, 0xbe0d07fd, + 0xbe001070, 0x4603033b, 0xc0f41305, 0x276cd4c5, 0x07fd8e00, 0x93352720, + 0x00a82bf0, 0x244e0419, 0xf3b80203, 0xfe0b0027, 0x4107f54e, 0xd1874433, + 0x9007d40b, 0xf663d12b, 0x04b89d03, 0xd90bd433, 0x235cf1c5, 0x0704b89d, + 0x2720273f, 0x3205144c, 0xf4c83403, 0xbc3ed039, 0xf0930536, 0x1e00a62d, + 0x59003964, 0x272027de, 0x2b372714, 0x3b412732, 0x464e8b43, 0x7c24f945, + 0x8b000183, 0x38210304, 0x9d4027f1, 0x909d04f4, 0x270438f3, 0x04f49d41, + 0x4c834007, 0x2744e680, 0x0af49d47, 0xf493d379, 0xc500a650, 0x0a1e54f4, + 0x0354f0c1, 0xf0c5100c, 0x54f1c154, 0x43ca1419, 0x04dc99f0, 0x930fc2d0, + 0x00a5dcf0, 0xffa3d6be, 0x7f5e0127, 0x14db8902, 0x891cd489, 0x5b071eda, + 0x54334c3b, 0x2427ac3b, 0x3507a40b, 0x2b4d929d, 0x24f38d3a, 0x8d16f58d, + 0xf37528f4, 0x8d4c929d, 0x9b8d2a93, 0x2e948d26, 0x9948958d, 0xd69918d4, + 0x9d411319, 0xf4c505f4, 0xc43c2758, 0x02854d27, 0x463b363b, 0x8d05f299, + 0xf38d2cfb, 0x32f48d30, 0xc62cfe89, 0x1e162724, 0xc1132703, 0xd28958f4, + 0x20d38916, 0x0b22d789, 0x58f0c14c, 0x743b343b, 0x403b4207, 0x8407b49b, + 0xfbc58433, 0x0b1e9b50, 0xc1080773, 0x072b50fe, 0xb007465b, 0xf48de65b, + 0x7e928d60, 0x8d30938d, 0x988d2c9b, 0x8521874a, 0x931e07f0, 0x04a323f4, + 0x0360f089, 0xa903081d, 0xc510704c, 0xf88d40f2, 0x26fb8d18, 0x8d2af38d, + 0xf18d2ef0, 0x34fec538, 0xa90cc5ca, 0x2a107244, 0xca5a0248, 0x05070c78, + 0xaebe1807, 0x115effa2, 0x3065c6ff, 0x9308015d, 0x00a4faf0, 0xc1feff5e, + 0x9dc55cf1, 0x11919d64, 0x9911d499, 0x212712d1, 0x3d070907, 0x0e03243b, + 0x03014ab8, 0xfabe2c3c, 0xd2990014, 0x7d929d11, 0x9d1ad399, 0xd499f193, + 0x7c949d18, 0x9d18d099, 0xd1994e90, 0xec919d04, 0x9d04d299, 0xd3794bf2, + 0x9955939d, 0x949d18d4, 0x05d099fc, 0x9957909d, 0x919d05d1, 0x06d299fd, + 0x99fe929d, 0x939d06d3, 0x05d49958, 0x9949f49d, 0x4c2706d0, 0x4af09d44, + 0x1e84948d, 0x54f1c10a, 0xc5101c03, 0xf2c154f1, 0x40241954, 0x2411ff4c, + 0xca50f3c1, 0xf4c1e843, 0x50f1c154, 0x00874021, 0x007040be, 0x27110c10, + 0xd499100c, 0x02200724, 0xb9240704, 0xc6012ed4, 0x2fd0b944, 0x2cd19901, + 0x9987919d, 0x41c02cd4, 0xc0413010, 0x111e1542, 0x9d30d399, 0x0d1e8a93, + 0x9d30d499, 0x051e8a94, 0x2027ff1e, 0xd499f23d, 0x27449612, 0x19f41d41, + 0x074002f4, 0x7d442704, 0xc1f05df0, 0xf49d58f0, 0x07f49d09, 0x0608f49d, + 0x504d2705, 0x11101e01, 0x004e38d4, 0x4c27ffff, 0x27041ef4, 0xf48dc44c, + 0x9dd1393a, 0xd2790ef1, 0x990ff29d, 0x4ce626d4, 0x012cd3b9, 0xb90bf39d, + 0x9d012dd4, 0xd0b90cf4, 0xf09d012b, 0x20d4b90d, 0xff4cc401, 0x22d1a911, + 0x12f18d01, 0x0124dda9, 0x1e14fd8d, 0x114cd41e, 0x0344471a, 0x0184b04f, + 0x19433900, 0x14f38d44, 0x1e12f48d, 0x9d422706, 0x0f070df4, 0xffa183be, + 0xf6430027, 0xfc4ef58e, 0x0328df9b, 0x21dc30d1, 0xfc8e0127, 0x27244f9b, + 0x25f49b44, 0x9b243f9b, 0xc02725f4, 0x66be131e, 0x62be0308, 0x4f9b0308, + 0x9b412724, 0xc10325f4, 0x9becdcce, 0x4527244f, 0x9b25f49b, 0xf49b243f, + 0x243f9b25, 0x9b25f49b, 0xf49b243f, 0x8e002725, 0x63f94efc, 0x070130ff, + 0x24df9b90, 0xf49b4827, 0x243f9b25, 0x9b25f49b, 0xf49b24cf, 0x28af9b25, + 0x2d20acec, 0x35f09305, 0x02c103de, 0x231f9b3c, 0x07223f9b, 0x08422b43, + 0x07320740, 0xc8432b41, 0x04c11341, 0xe4411b3c, 0xbe050b48, 0x26fff203, + 0x05025e06, 0xc1214f9b, 0x438bbc03, 0x04f64ff6, 0x2c532d07, 0x273f0718, + 0x4c4c2710, 0x34033105, 0x3c07f4c8, 0x27183c53, 0x5d020740, 0x3df37df4, + 0xfbf17ef2, 0x4a070c56, 0x3a874433, 0x3a2b340b, 0x34334127, 0x4307f41d, + 0x44b9490b, 0x45c604b8, 0xa05ef493, 0x0e448904, 0x049e42fc, 0x4d034307, + 0x490b04b8, 0x3c272f07, 0x0321014c, 0x03410524, 0x5ef3a844, 0x00390484, + 0xc6400c83, 0x4f9b7c0f, 0x9d4f6b28, 0x42f404f4, 0x4f9b0478, 0x05f49d28, + 0x9d284f9b, 0x3f9b06f4, 0x9b412724, 0x3c5325f4, 0x07f39d1f, 0x045a3ff6, + 0x9b243f9b, 0x3c5325f4, 0x08f39d1f, 0xbf073ec6, 0xb903df07, 0x27e0dc23, + 0x243f9bc0, 0xf49b4127, 0x1f3c5325, 0x37e6b31d, 0x44334c07, 0x07404c03, + 0x27040b0f, 0xc628101c, 0x1c270d07, 0x0516be40, 0x1b0ff600, 0x03c10304, + 0x40dc03b1, 0x1e14c8c0, 0x9d4127c9, 0xf09d04f4, 0x05f09d08, 0x9d06f09d, + 0x4f9b07f0, 0xf4440328, 0x03ee114c, 0x9b11f49d, 0x43f4284f, 0xf49d03e4, + 0x9b47562c, 0x3cf4283f, 0x0303d70d, 0x273f6b34, 0xc5433b41, 0xf39d34f4, + 0xc44f1e30, 0x3f9b4c41, 0x25f49b24, 0x9d1f3c53, 0x64be30f3, 0xf0c50306, + 0x065dbe34, 0x38f0c503, 0xf428cf9b, 0xa10100cd, 0xc5402703, 0xfc9d3cf4, + 0x87c80631, 0x2710070c, 0x43ddbe20, 0x3cf0c500, 0xb027d007, 0x030632be, + 0xb103d005, 0xcbced403, 0x284f9bf4, 0xf49d4f6b, 0x114cf412, 0x4f9b036c, + 0x9b312724, 0x4c5325f3, 0x2df49d1f, 0x03284f9b, 0x14f48d41, 0x03284f9b, + 0x16f48d41, 0x9b244f9b, 0x4c5325f3, 0x18f49d1f, 0x3f9b4656, 0x9b412724, + 0x3c5325f4, 0x19f39d1f, 0x4027061e, 0x9b19f49d, 0x3127244f, 0x5325f39b, + 0xf49d1f4c, 0x242f9b1a, 0x5325f39b, 0xf29d1f2c, 0x9b27861b, 0xf48d284f, + 0x284f9b1c, 0x9b1ef48d, 0xf48d284f, 0x284f9b20, 0x1e22f48d, 0x8d40270f, + 0xf48d1ef2, 0x1cf48d22, 0x8920f48d, 0xf38916f4, 0xe9f09314, 0x439b03db, + 0x02c1f4a5, 0x231f9b3c, 0x07223f9b, 0x08422b43, 0x07320740, 0xc8432b41, + 0x04c11341, 0xe4411b3c, 0xbe02bb48, 0x26ffefb3, 0x02b25e06, 0xc1214f9b, + 0x438bbc03, 0x02a64ff6, 0x9d104c27, 0x3f9b24f4, 0x9b412724, 0x3c5325f4, + 0x26f39d1f, 0x01eb3fe6, 0xf4d54027, 0xf4d5012c, 0xf4d50120, 0xf4d50124, + 0x3f9b0128, 0x9b412724, 0x30cc25f4, 0x243f9b2f, 0x3c534827, 0x25f49b18, + 0x0120f3bd, 0x1cff3cc4, 0x27244f9b, 0xf39b103c, 0xad435b25, 0x9b0122f4, + 0xf39b244f, 0xad435b25, 0x9b0124f4, 0x4127243f, 0x4c25f49b, 0x244f9b30, + 0xf49b4127, 0x243f9b25, 0x3c534127, 0x25f49b1f, 0x0126f3bd, 0x9b603fc6, + 0x4327244f, 0x9b25f49b, 0x3127244f, 0x5325f39b, 0xf4bd1f4c, 0x4f9b0127, + 0x1f4c5324, 0xbd25f39b, 0xa60128f4, 0x244f9b49, 0xf39b3827, 0x184c5325, + 0x0129f4bd, 0x9b244f9b, 0x4c5325f3, 0x2af4bd18, 0x244f9b01, 0x5325f39b, + 0xf4bd184c, 0x0f1e012b, 0xf4bd4227, 0xf4bd012b, 0xf4bd0129, 0x3f9b012a, + 0x9b412724, 0x30cc25f4, 0x284f9b0f, 0x012cf4bd, 0xbd284f9b, 0x9b012df4, + 0x4127243f, 0xcc25f49b, 0x4f9b1830, 0x204c2724, 0x9b25f49b, 0xf49b243f, + 0x244f9b25, 0xf49b4127, 0x24cf9b25, 0xcc534127, 0x25f49b1f, 0x0f07c5c6, + 0x01300d03, 0xd6fbc97e, 0xdf9b660f, 0x53412724, 0xf49b1fdc, 0x07d5a625, + 0x300d030f, 0xfbb07e01, 0xc4960df6, 0x4f9bd546, 0x9b412724, 0x4f9b25f4, + 0x9b412724, 0x3f9b25f4, 0x1f3c5324, 0xbd25f49b, 0x46012ef3, 0x244f9b39, + 0xf49b4127, 0x284f9b25, 0x9b284f9b, 0x4f9b284f, 0x284f9b28, 0x27114c30, + 0x9d0d1e01, 0x4f9b24f4, 0x2ff4bd28, 0x9b002701, 0x3f9b224f, 0xcc432b23, + 0xf4931440, 0xc103da00, 0x3f9b3c44, 0x28432b23, 0x1ed12741, 0x36d0273c, + 0xe9f0930b, 0x02c103d9, 0x231f9b3c, 0x07223f9b, 0x08422b43, 0x07320740, + 0xc8432b41, 0x04c11141, 0xc4411b3c, 0xb8be1348, 0x06e6ffed, 0x4f9b0b1e, + 0xbc03c121, 0x4566438b, 0xf49d4027, 0xa5dff626, 0x333a0700, 0x0b4a8734, + 0x334a2b43, 0xb84d0344, 0x0bd90704, 0x233127d4, 0x1d04b84d, 0xb9490bf3, + 0xc604b844, 0xf4935e4f, 0x89049c28, 0x42dc0e44, 0x11949928, 0x2735a4ce, + 0x271027e0, 0x4f074c0c, 0x410b3d07, 0x4201310b, 0x14033401, 0xecd0242e, + 0x051e0d4c, 0xf028e103, 0xf41d4027, 0x4c270e1e, 0x11949d20, 0x01004d27, + 0x1912948d, 0x0746c6f4, 0x8734333a, 0x2b430b4a, 0x0b44334a, 0xbd302749, + 0x1904b843, 0x074666f4, 0x272f073d, 0x20014c4c, 0x30052403, 0xf4a83403, + 0xb3be0907, 0x071e0300, 0x031e0127, 0xff430427, 0xf98e0130, 0x03c1f54e, + 0x5e0499bc, 0xf0a3a307, 0xac03b007, 0xd94fe648, 0x23930700, 0xd027d89c, + 0x9f4ef593, 0x406c2700, 0x9f36f793, 0x108c2700, 0x0764b3c1, 0x99430b4d, + 0x44d60944, 0x061ee027, 0xec03e307, 0x68b3c140, 0x86343499, 0x0b4d0747, + 0x35449943, 0xe3074526, 0x1e3dec03, 0xe0d4f90b, 0x4b000184, 0xc6404c4f, + 0x1e1d07e4, 0xe0d4f915, 0x4b000184, 0x07404c4f, 0x1ee0271d, 0x07140705, + 0x11d6ccea, 0x14330d07, 0x0a0b0433, 0xc7071e0b, 0x171e2807, 0xed230d07, + 0x16330120, 0x1e0b0633, 0xed03090b, 0xc5070120, 0xe4c62607, 0x45561419, + 0x41f14d87, 0x00018538, 0x072caece, 0x03e02732, 0x1120cc31, 0x0d1e3127, + 0x2419f201, 0x400bf211, 0x421d2219, 0x21074c07, 0x2e0b4e0b, 0xf215f405, + 0xf318e103, 0xfcbe051e, 0xd1030031, 0xff42d8e4, 0xf58ef083, 0x2107fc4e, + 0xc827d107, 0x2103e027, 0x272510cc, 0x9b211e21, 0x3407294f, 0x10074c0b, + 0x3c03c407, 0x6b1e0b80, 0x003d30cf, 0x8e012701, 0x1dc526fc, 0xf0e1031c, + 0xe736def2, 0x4d073027, 0x0e0b4e2b, 0xde1a4103, 0x0000dfc4, 0x27138000, + 0x070f1e41, 0x23400b4e, 0x1e431941, 0x03031de2, 0x27f4c801, 0x4efc8e00, + 0x07c107f8, 0x001df4d0, 0x07016501, 0x334107a1, 0x0ba53348, 0xb8dd03a4, + 0x19ad0b2a, 0xb8dd23a4, 0x4b4fe62a, 0x03a43901, 0x0704b8dd, 0x33848734, + 0x2b830b34, 0x0b843384, 0x2384198d, 0xe604b8dd, 0x99012d4f, 0x450614d4, + 0x319ef80e, 0xf0930006, 0xc103d75c, 0x1f9b3c02, 0x223f9b23, 0x422b4307, + 0x32074008, 0x432b4107, 0xc11341c8, 0x411b3c04, 0x010048e4, 0xffeb2abe, + 0xf75e0626, 0x214f9b00, 0x8bbc03c1, 0xeb4ff643, 0x99a13900, 0x144e11d4, + 0x45be0d07, 0x0ff6fff5, 0xdc8d00dc, 0x68dac512, 0x9d30a499, 0xa499f4d4, + 0xf9d49d2e, 0x9d33a499, 0xa479fad4, 0x9988d49d, 0xd49d31a4, 0x28a49989, + 0x9974d49d, 0xd49d29a4, 0x2aa49975, 0x9976d49d, 0xd49d2ba4, 0x9da45977, + 0xa499edd4, 0x78d49d2c, 0x9d2fa499, 0xa4997ad4, 0x7bd49d04, 0x9d32a499, + 0xa499f0d4, 0x994b4604, 0x43d005a4, 0x3046d433, 0x89148489, 0xab89168c, + 0x07c49b0a, 0xbe0c071b, 0x07006749, 0x071b0790, 0x6739be0c, 0x03048600, + 0x27090791, 0x73051e40, 0x96410301, 0x27031e03, 0x79d49d40, 0x9d2ea499, + 0xa4995bd4, 0x5cd49d33, 0xd49da459, 0x2aa49956, 0x9959d49d, 0xd49d2ba4, + 0x30a4995a, 0x995dd49d, 0x457634a4, 0xd6088499, 0x1e002744, 0x27002705, + 0x5ed49d42, 0x0127f88e, 0x0427f88e, 0xfd4ef88e, 0x07040499, 0x994686d0, + 0x46c40504, 0x4600310d, 0x3bd3be05, 0x35402700, 0x1d4027d4, 0x4efd8ed4, + 0x24ff63f5, 0x07700701, 0x2720273f, 0x3205484c, 0xf4c83403, 0xf4288f9b, + 0xab01008d, 0x284f9b03, 0x3f6b3407, 0x3cf4f33d, 0x07039d20, 0x87443343, + 0x2bb40bb3, 0xb87d03b3, 0x0bb43304, 0x23b419b7, 0xe404b87d, 0x9b038141, + 0x3127244f, 0x5325f39b, 0xf45d1f4c, 0x9b244f9b, 0x4c5325f3, 0x9bf47d1f, + 0xfc9d28cf, 0x5fc8f404, 0xbdcfe603, 0x00b43900, 0x4ce4424c, 0x9b035158, + 0xf49d284f, 0x1542c005, 0x47464354, 0x034041e4, 0xd0009f5e, 0x46e43b46, + 0x4d1e0336, 0x2c071f07, 0x141e1803, 0x2f073c07, 0x28033103, 0x0d284f9b, + 0xb0220324, 0x9b7a1ef3, 0x140d284f, 0xab284f9b, 0x8d13094f, 0x12031014, + 0x030443ea, 0x611ef240, 0x27243f9b, 0x25f49b41, 0x9d1f3c53, 0x4f9b08f3, + 0x8d410328, 0x491e0af4, 0x0328df9b, 0x071d07d1, 0x8d20270d, 0x68be08fd, + 0xa007003c, 0x11274227, 0x051ef035, 0x44471103, 0x07fa4cc2, 0x20ec270d, + 0x20270103, 0x171ee12b, 0x9b244f9b, 0x4e5b25f1, 0x4f6b3a07, 0x341d320b, + 0x02a4c4ea, 0xf0382103, 0x03284f9b, 0x9d4f6b41, 0x4cf428f4, 0x9b029121, + 0x4103284f, 0xf49d4f6b, 0x214cf429, 0x3f9b0282, 0x9b412724, 0x3c5325f4, + 0x2af39d1f, 0x27243f9b, 0x25f49b42, 0x9d1e3c53, 0x33f42bf3, 0xb4990262, + 0x33340705, 0x2b444733, 0x294f9b34, 0x0b1a3c03, 0x9d4f6b43, 0x3c032cf4, + 0x4334fa19, 0x294f9b02, 0x6b1a4c03, 0x2df49d4f, 0x33344cf4, 0x294f9b02, + 0x9b2ef49d, 0x3127244f, 0x5325f39b, 0xf49d1f4c, 0x244f9b2f, 0x5325f39b, + 0xf49d1f4c, 0x244f9b30, 0x9325f39b, 0x03d457f0, 0x9d1f4c53, 0x02c131f4, + 0x231f9b3c, 0x07223f9b, 0x08422b43, 0x07320740, 0xc8432b41, 0x04c11341, + 0xe4411b3c, 0xbe01e548, 0x26ffe81f, 0x01dc5e06, 0xc1214f9b, 0x438bbc03, + 0x01d04ff6, 0xfabe0027, 0xaf9b02f7, 0x23cf9b24, 0xd40afb93, 0xc0b0c103, + 0xe6bec783, 0xdc2702f7, 0x9bdc2b1f, 0x3f9b224f, 0xd2432b23, 0x0d0716d4, + 0x02f8fbbe, 0xc10dd0d2, 0x3f9b3cb4, 0xfa432b23, 0x07019104, 0xd5f4932a, + 0x2f0303d3, 0x80000000, 0x9b3c43c1, 0x342b234f, 0x0a203ccc, 0xa7203c13, + 0x8b433b40, 0x07c10324, 0xf64c5b42, 0x5e017a4f, 0x3f9b0166, 0x9b412724, + 0x3c5325f4, 0x06b31d1f, 0x070c0738, 0x0b04331f, 0x3d0c0301, 0x28101c27, + 0x270d07c6, 0x757e401c, 0xf6a007fb, 0x0301770f, 0x03b103c1, 0xf49940dc, + 0x03444732, 0xc3c4da46, 0x6b294f9b, 0x33f49d4f, 0x6b0c4c03, 0x194cf44f, + 0x0707010e, 0x02fadfbe, 0x0ff6a007, 0xf0930148, 0x2703d34c, 0xc1f41d41, + 0x1f9b3c02, 0x223f9b23, 0x422b4307, 0x32074008, 0x432b4107, 0xc11341c8, + 0x411b3c04, 0x00dc48e4, 0xffe716be, 0xd35e0626, 0x214f9b00, 0x8bbc03c1, + 0xc74ff643, 0x07480700, 0x33383338, 0x03430b45, 0x072ab84d, 0xb82d2324, + 0xb9270b2a, 0x072ab823, 0xe6940b97, 0x93008a3f, 0x04958ff4, 0xdc0e4489, + 0x74896742, 0x6f84ce12, 0x9904f499, 0xf83105f5, 0xd508f689, 0x070120f4, + 0x27b027c2, 0x073f07d0, 0x0b3d0be9, 0xc4d403ed, 0xf1d12db3, 0x19060120, + 0x662456c4, 0xbcc4b988, 0xb947a62a, 0xc42abdc4, 0xc4d11546, 0x08072ac4, + 0x26071407, 0x53be4546, 0x0606002c, 0x33011a1e, 0x342ee401, 0x1048bcd0, + 0xb103071e, 0xb648bcc4, 0x437e0f07, 0x27081efc, 0x8d01004d, 0xf4191274, + 0x090744e6, 0x19fc317e, 0x074f66f4, 0x273f0709, 0x3201484c, 0x02053403, + 0xf4a80403, 0xa127471e, 0xa427431e, 0xf2993f1e, 0x9d40272e, 0xf49d34f4, + 0x33f29d32, 0x9bfedd5e, 0x3127244f, 0x5325f39b, 0xf49d1f4c, 0x244f9b32, + 0x5325f39b, 0xf49d1f4c, 0xad4fe634, 0x07bf07fe, 0x35bc03df, 0x27e3dc23, + 0xfe945ec0, 0xff430a07, 0xf58e0124, 0x387404c1, 0xff00004f, 0xd02d27ff, + 0x27041e02, 0x4007d02c, 0x01b44d03, 0x27cc04c5, 0xd7f49331, 0x039d02fb, + 0xb402d515, 0x6c04c501, 0xfe0b0327, 0xc007fc4e, 0x4ab8ce03, 0xbe0c0701, + 0x9b000afa, 0xd4d428df, 0x15d2d42c, 0x02fb90be, 0x11031007, 0xd4960c07, + 0x7abe1013, 0xe41e0005, 0x0027d220, 0x76befc8e, 0x100702fb, 0x88be0c07, + 0xd01e0005, 0xfc8e0127, 0x0499fd4e, 0x66d00714, 0x9782be4e, 0x14d499ff, + 0x991e42c4, 0x44d616d4, 0x081e1027, 0x1e031d07, 0x07014c4c, 0xb80e030d, + 0x71be014a, 0x1c1e0005, 0x4d073d07, 0x4ab83e03, 0xe04e0301, 0x2c27014d, + 0x03410165, 0x03310544, 0x07f2a834, 0xa80d030d, 0x0a98be04, 0x9d402700, + 0xfd8e14d4, 0xfe93fd4e, 0x0703d12c, 0x3ce2c1d0, 0x9b231f9b, 0x4307223f, + 0x4008422b, 0x41073207, 0x41c8432b, 0x3ce4c111, 0x48c4411b, 0xe4f9be1c, + 0x1e05c6ff, 0x214f9b14, 0x8bbce3c1, 0x07457643, 0xff667e0d, 0xfd8e0227, + 0xfd8e0427, 0x1f6b2f6b, 0x04192103, 0x1407011d, 0xf2a80103, 0x1f6bfe0b, + 0x04190a1e, 0x030f14ce, 0x6b230701, 0x2332072f, 0x0b223631, 0x0f22d0fe, + 0x2f6b2223, 0x04392103, 0x0103041d, 0xfe0bf2b8, 0x0499fd4e, 0x99200708, + 0x43003003, 0x2d891153, 0x07e30722, 0x8be10332, 0x323c03d1, 0x3019171e, + 0x04333103, 0x420b4007, 0x4e904489, 0x840c03d4, 0xfd8e020b, 0x0027fe38, + 0x0499fd8e, 0x27432408, 0x04fe0b03, 0x8311c341, 0x86012711, 0x13002714, + 0x4efe0b02, 0x99b007f9, 0xd0073009, 0xbc03a107, 0x1ec02743, 0x0744191c, + 0x0744330d, 0x033d0b34, 0x3199844c, 0xbe040b85, 0xd2030458, 0xc1030a0a, + 0x4c0b4b07, 0x07dfc9ce, 0x4ef98e0c, 0x310399fe, 0xe0072007, 0x2c033103, + 0x19171e54, 0x33210320, 0x0b400704, 0x9244994e, 0x0c03414e, 0x8e0e0b84, + 0x27f338fe, 0x99fe8e00, 0x43000804, 0xcc1e1153, 0x45d61439, 0x03011219, + 0x423b4127, 0x030534eb, 0x4027fe0b, 0x04050415, 0xf54efe0b, 0x07680499, + 0x61a107d0, 0x06171905, 0xf641e445, 0x21461e00, 0x7cd3c110, 0xc170d2c1, + 0x30d280d1, 0x2b42070e, 0xda417330, 0x120b1234, 0x03d20e1e, 0x1b42070b, + 0x12417330, 0x07122b34, 0x20200b21, 0x1e320773, 0x0ba33105, 0xe6a43932, + 0xc500e74f, 0xd0c580d1, 0x00de5e7c, 0x12491459, 0x896d0999, 0x44c62201, + 0x141ec027, 0xc17c0489, 0x42d28003, 0x03c30709, 0x1ec10bc1, 0xc5c30703, + 0xd28d80dc, 0x2794d67c, 0x07051eb0, 0x39b20bbc, 0xc864f6a6, 0xb12320b1, + 0x071bb1c8, 0x07c123cb, 0xbe19070c, 0x07005fdd, 0x07190780, 0x5fcdbe0c, + 0x1ec00700, 0x27802705, 0x031907c0, 0x27e02711, 0xc10a1e20, 0x340b78d4, + 0xe40b3401, 0x21033287, 0xb12cf180, 0x191e0027, 0x089b0e07, 0x0c1e2027, + 0x0378d4c1, 0x01340b21, 0x87040b34, 0xf12cd232, 0xd4c164f6, 0x21040b70, + 0x74d3c1a2, 0x320b200b, 0x313673c4, 0x1e340ba4, 0x89145932, 0x11492203, + 0x20274506, 0x191e0027, 0xc17c0489, 0x41328000, 0x030b0103, 0xa3394007, + 0x2447410b, 0x21233496, 0xc57cd18d, 0x320780d0, 0x52157220, 0x53257100, + 0xfe4ef58e, 0x02011007, 0x27200399, 0x3be12700, 0x8b4e07e0, 0x03452642, + 0xf203d201, 0x2007ff1e, 0x2c032433, 0x23420784, 0x410b844c, 0x439d30a7, + 0x9d302792, 0x439d8440, 0x07141185, 0xeb020b01, 0x6514154e, 0x4efe8e10, + 0x080c99f5, 0xac07b007, 0xd1077c07, 0xa3c36207, 0x04997123, 0x0734d630, + 0x99081e24, 0xcc873102, 0x5707aa87, 0x90278027, 0x320751c3, 0xe607382b, + 0xe80b3103, 0x28b6280a, 0x201e3127, 0x8103e119, 0x44334107, 0x44994b0b, + 0x8be10385, 0x4745c64c, 0x0b0d0741, 0x1d010347, 0xf0251ed4, 0x1e1edff3, + 0x9103e119, 0x44334107, 0x44994b0b, 0x8be10385, 0x4747c64a, 0x1d450b41, + 0x1e010304, 0x070d0716, 0x07392b32, 0x0b3103e6, 0x96290ae9, 0xf0312724, + 0x0d2ecff3, 0x931ed007, 0x2102f58e, 0x3c272107, 0x2b020b21, 0x212cd032, + 0x1e31270b, 0x1d40a707, 0xb8010304, 0x4efe0bf3, 0x080499fb, 0xc0072007, + 0xb107d007, 0x03322c03, 0x43c454cc, 0xbe302715, 0x070301b3, 0x072c0710, + 0xbe31270d, 0x1e0301a7, 0x7e302711, 0x1007ff1b, 0x0d072c07, 0x107e3127, + 0x2b1007ff, 0x270b071b, 0xfb0e202c, 0x31079d1e, 0x14331153, 0x3183100b, + 0x03851499, 0x86348b31, 0x07312734, 0x4efe0b03, 0x07f123f5, 0x07006180, + 0x07f32551, 0xbe920712, 0x15030148, 0x279344f0, 0xf305103c, 0x4c27061e, + 0x07f40520, 0x0733c339, 0x35b02775, 0x088499f3, 0xc43043c4, 0x84991293, + 0x247c190b, 0x1e3b0741, 0x273b4703, 0x07261ea3, 0x0b41534b, 0xdc4c1945, + 0xa90709b1, 0x69073b07, 0xfa31151e, 0x69073b07, 0x7c190d1e, 0xac073b07, + 0xa103a183, 0xccc06027, 0xc1533bff, 0x4c07c433, 0x07844c03, 0x330807d3, + 0x07040bd3, 0x00d2be1a, 0x11f42103, 0x47d40bf3, 0x1b4d0b46, 0x0b400d03, + 0x85c499c8, 0x45d64a8b, 0x2706d399, 0xab463b41, 0x06d39d34, 0xb103f401, + 0xb4ee7103, 0xf103ff79, 0xf94ef58e, 0x99290b99, 0xa0072804, 0x4bc20091, + 0x07d4073b, 0x0bdb2b90, 0x2714f69b, 0x161effcc, 0xc4471419, 0xc1032204, + 0x2d071c07, 0x1f6b0907, 0x737e2f6b, 0x07d123fb, 0x072d071c, 0x6b1f6b09, + 0xfb527e2f, 0x41034b07, 0x8e29a49d, 0xb1fa4ef9, 0x0bb0070c, 0xb51c07c1, + 0xfb767e0c, 0x1c07a007, 0xa77e0b07, 0x072007fb, 0x0e0b071a, 0x4e941efa, + 0x07b007fa, 0xfc117ec1, 0x1c07a007, 0x8b7e0b07, 0x072007fb, 0x0e0b071a, + 0xff785efa, 0x0499fc4e, 0x61d0071c, 0x274f460c, 0x09039940, 0xf621049d, + 0x1c039d34, 0x1bc6fc8e, 0x3c274007, 0x03120165, 0x03420514, 0x99f3a844, + 0xdc6521d4, 0xd1994786, 0xbe0c0708, 0x1102ffdc, 0x2bc221c3, 0x27202b30, + 0x0cc48d40, 0xc225c315, 0xd301c219, 0x423b4127, 0xd30534ab, 0x270ccc89, + 0x1edc8d40, 0x8e1cd49d, 0x07fe4efc, 0x27410730, 0x4e01652c, 0x3e054403, + 0xf2a83403, 0x30071461, 0x2b841c03, 0x843c0341, 0x4027340b, 0x6521049d, + 0x4efe8e03, 0x01b007fb, 0x03d0070c, 0x141e84bc, 0x270cc1d8, 0x07b43d40, + 0x7e0d071b, 0xc153fb5c, 0xb610bc03, 0x273027c1, 0x31d39d40, 0x9d80dcc5, + 0xdc0530d4, 0xc51ed38d, 0xfb8e7cdc, 0xc007fc4e, 0x4127c23e, 0x8e21c49d, + 0x07fa4efc, 0x07c107d0, 0x3ea307b2, 0x8d40a7af, 0x40270cd4, 0xd49dd465, + 0x27c4961c, 0x234b07c1, 0x22d48d41, 0xdc9d4d07, 0x033a0720, 0x2527684c, + 0x34033101, 0x44034105, 0x4027f2a8, 0x8e21d49d, 0x39f94efa, 0x8b420719, + 0x07c10749, 0x07b007a2, 0x194626d3, 0x93230711, 0x00927cf0, 0x81be3a07, + 0x3d07002d, 0xc39d3f6b, 0x0c9cdc0e, 0x31bd9930, 0xed070b07, 0x0c03c119, + 0x032d0754, 0x19101ee1, 0x0b443304, 0x9244994b, 0x01033452, 0xfe702123, + 0xa17e2f6b, 0x034d07f9, 0x31b49d41, 0x49ab4a07, 0xf98ec43d, 0x1a39f84e, + 0x4a8b4207, 0xb207d107, 0x0899c007, 0x76191931, 0x6ef09345, 0x21be0092, + 0x4a07002d, 0xd43d4beb, 0x140c4cdc, 0x19070c07, 0x07540c03, 0xf9707e28, + 0x41234807, 0x8e31c49d, 0x07fa4ef8, 0x7ea107c0, 0xd007fa13, 0x06a6cb61, + 0x07110bce, 0x271d070c, 0xa93e0c2c, 0x1d070c07, 0x99fa2f7e, 0x0c0708c2, + 0x22871b07, 0xfa0e3a07, 0x4eff305e, 0x07c007fb, 0x0b231eb1, 0x5344994c, + 0xd4074433, 0xdc034c0b, 0x92449984, 0x1d07dc0b, 0x7e164bca, 0x0c07ff70, + 0xf57e1d07, 0x31c499f9, 0x2c270c07, 0xd44fd60c, 0xfb4efb8e, 0xb007d107, + 0x99f9d67e, 0xc00708b4, 0x2c274324, 0x040d1e0c, 0x38d1c341, 0x1e2827d1, + 0x46242703, 0x070b07c6, 0xff327e1c, 0x1c070b07, 0xb55efb0e, 0x4efb8ef9, + 0x071939f8, 0x07498b42, 0x07a207d1, 0x300b99c0, 0x45761819, 0x91b4f093, + 0x2c46be00, 0xeb490700, 0xdcd43d4a, 0x0c072043, 0x07320c03, 0x7e2b0718, + 0x0c07f896, 0x0c031807, 0x7e2b0743, 0x4b07f88a, 0xc49d4123, 0x4ef88e30, + 0x990461f9, 0xd0070803, 0x4c899207, 0x4733200c, 0x2bc103cc, 0x7e1c07c1, + 0x1c07f890, 0x0d07b007, 0x07f8c17e, 0x071907a0, 0xf9097e0d, 0x06c6c007, + 0x07120bce, 0x271c070d, 0xa17e0c2c, 0x070d07fe, 0xf9267e1c, 0x2a07b846, + 0x1b070d07, 0x87ff6a7e, 0x0739072a, 0x7e1b070d, 0xb219fe21, 0x4127d301, + 0x34ab423b, 0xf98ed305, 0x0299fc4e, 0x30019931, 0x03994207, 0x07410b20, + 0x3543cac0, 0x100b16e6, 0x27311d99, 0x03d43323, 0xd00b84dc, 0x287e1d07, + 0x0b151eff, 0x532d9920, 0x330c2c27, 0x84dc03d4, 0x1d07d00b, 0x07fe377e, + 0x0e1d070c, 0xf8ba5efc, 0xf94efc8e, 0xc1071a39, 0xd0079207, 0xa3dc1b19, + 0x07a63e12, 0x30d2990d, 0x07320c03, 0xf79e7e1b, 0x0299141e, 0x031b0730, + 0xa37e430c, 0x30d499f7, 0xd49d4123, 0xab190730, 0x07c13d1a, 0xfc8abe0c, + 0x07100702, 0xf8057e0d, 0x0730d299, 0x2b0d0740, 0x430c0324, 0x1b07040b, + 0x617e2f6b, 0x30d499f7, 0xd49d4103, 0x4ef98e30, 0x998207f5, 0xf1e30a22, + 0x651c0799, 0x07c007f2, 0xf60961a1, 0x5901217f, 0x7e44e614, 0x9027fcbf, + 0xc499a249, 0x89f24569, 0xc38922c2, 0xe6f2551e, 0x41008b4f, 0x8b032bf0, + 0x8102f002, 0x20cd9900, 0x0331c499, 0x2bb007d1, 0xcab123d4, 0x0b070dbd, + 0x90be1d07, 0xb0070058, 0x4127bd0b, 0xf43df735, 0x4027f725, 0xf45df741, + 0xf41d4327, 0x0c077b2b, 0x51f9397e, 0x68c499f6, 0xf64d678b, 0xd0075127, + 0x45267103, 0x1f070c07, 0x27f7e17e, 0xd419103c, 0xc311d35d, 0x243b2507, + 0xc31532ab, 0x070cd68d, 0x271d070c, 0xfef47e23, 0xc401d319, 0x45ab533b, + 0xfbf0c405, 0x23f441ba, 0x1ec48d41, 0x94899686, 0xcef2410c, 0xa4190b42, + 0x0b08c399, 0x1343c043, 0xd77e0c07, 0x49f461f8, 0x07045da3, 0x0c038d90, + 0xa201c065, 0xc2251a07, 0x0c07a311, 0xa421c335, 0xaa31c445, 0x737eca55, + 0x08c199f7, 0xcd9dd127, 0xbe09071c, 0x8902fb5c, 0x40270c92, 0x828d8085, + 0x26849d24, 0xa60ac499, 0x268d9d44, 0x4468c499, 0x26849942, 0x849d42a3, + 0x9d991926, 0xc4010b89, 0x43ebc311, 0xf1c384b5, 0xfb4ef58e, 0x03990461, + 0x89b00708, 0x33200c4c, 0xc103cc47, 0x1c07c12b, 0x07f63f7e, 0x071c07d0, + 0xf6707e0b, 0x2007d686, 0x0b071d07, 0x07fd3a7e, 0x0e1d070b, 0xf6e25efb, + 0x0461fb8e, 0x9d080399, 0x01952802, 0x200c4289, 0x03224733, 0x9d402721, + 0x02b52904, 0x3027fe0b, 0x03254027, 0x0315041d, 0x4027fe0b, 0xfe0b041d, + 0x04254027, 0xfe0b0415, 0xc6140499, 0xf55e9e44, 0xee2c9eff, 0x14049902, + 0x519e44c6, 0x1f9efff5, 0xf04e02ee, 0xdf3bcf5b, 0xfc4efe2b, 0xadbe0f07, + 0xff1effb9, 0xff1eff1e, 0x02a9f84e, 0x40270104, 0x016603b9, 0x6d12028d, + 0x07044d04, 0x6c02a9d0, 0x823ae001, 0x6a04a902, 0x1745f001, 0x27e12702, + 0x9cd39d30, 0x139ad28d, 0xf5f293e0, 0x2eb503dc, 0xd48d1027, 0x05f093ea, + 0x019d03da, 0xc5412790, 0x32273024, 0x23c54327, 0x8824c55c, 0x039d3027, + 0x1521050c, 0x5821c521, 0x9d8421c5, 0x019d3801, 0xa1d3b964, 0xc9f49301, + 0x431d03d9, 0x0166d3b9, 0xd9a6f493, 0x27410503, 0xf43ae020, 0xb2f49301, + 0x421d03d9, 0xb99cd399, 0x8301a2d4, 0xe6b38731, 0xd100a84f, 0x990150dc, + 0x1c0746c4, 0xc4461c03, 0x2c271142, 0xe832071a, 0xc01419f3, 0xdcd1f842, + 0xac070150, 0x2748ac03, 0x0ea7602c, 0x07e8ffff, 0x1f79be1a, 0x032c0700, + 0xe027a82c, 0xff9f9ea7, 0x5fcea7e8, 0x0227e8ff, 0x0e2b1907, 0xe1032301, + 0x24211305, 0x23411415, 0x24611325, 0x23111435, 0x24311345, 0x23511455, + 0x24711365, 0x23811475, 0x24a11385, 0x23c11495, 0xc113a530, 0x14b53824, + 0x13c52391, 0xc524b130, 0x23c13414, 0x3813c534, 0x073c24c1, 0x0326332e, + 0x14c5602c, 0x072a0b3c, 0x30f0f81c, 0x00bda301, 0x9ad4b901, 0xfa4fe601, + 0x278b0700, 0x0000003f, 0x008ea330, 0xd4d10200, 0x2c270160, 0xab83ab30, + 0xfa41e082, 0x9fd2b900, 0xa0d1b901, 0x932f4b01, 0x03d8cbf4, 0x2f031f4b, + 0x0003faec, 0xf393e0a7, 0x0303d8c0, 0x03faec1f, 0x93420500, 0x03d8a3f4, + 0xfb9300a7, 0x9303d890, 0x03d88ffa, 0xd88ef993, 0x05c02703, 0x934e0d31, + 0x03d88bf3, 0xd880f493, 0x3da02d03, 0x054e0d9c, 0x0db02d30, 0x1da00db0, + 0xff0ea79c, 0x0805ebff, 0x019bd3b9, 0x019cd1b9, 0x21074307, 0x830f4c83, + 0x44330f2c, 0x38032833, 0x3c8342ab, 0x3318030f, 0x4fa30c3c, 0x53100001, + 0xab0f1c83, 0x101c3343, 0x041541ab, 0x0160d3d1, 0xd48d4027, 0x7531c0f4, + 0xc69cd499, 0x4c27654f, 0xecd48d40, 0x89103c27, 0x2027ecd4, 0x4d834533, + 0x34ab3f00, 0xffff4ea7, 0x5c43c5eb, 0xffff3ea7, 0xe832d5fe, 0x0ef29b1d, + 0xe027f88e, 0xea5e3027, 0x278b07fd, 0x0000003f, 0x008ea320, 0xd4d10200, + 0x2c270160, 0xab83ab40, 0x0a41e482, 0xa1d4b9ff, 0x33418301, 0x84ab1a4c, + 0xf6ff585e, 0x5efe77ef, 0x4c27fe6e, 0x279b1e20, 0xfe0b5e21, 0x020cd4d1, + 0xb92844d8, 0x27019bd4, 0x0800183e, 0xd4b94956, 0x4896019c, 0x8d284c27, + 0x7c5eecd4, 0x6a04a9ff, 0x27224701, 0x5e3127e0, 0xd4b9fd81, 0x3e27019b, + 0xc6088098, 0x4c27d94f, 0xecd48d30, 0x4eff5a5e, 0x27c007fc, 0xedf09313, + 0x5dbe008b, 0xc1110026, 0x8bfaf093, 0x2652be00, 0x93c12100, 0x008c01f0, + 0x002647be, 0xf093c101, 0xbe008c08, 0x3100263c, 0x0ff093c2, 0x1027008c, + 0x00262fbe, 0xf093c241, 0x27008c02, 0x2622be11, 0x93c25100, 0x008bf5f0, + 0x15be1227, 0xc2610026, 0x8be8f093, 0xbe132700, 0x71002608, 0xdbf093c2, + 0x1427008b, 0x0025fbbe, 0xf093c281, 0x27008bce, 0x25eebe15, 0x93c29100, + 0x008bc1f0, 0xe1be1627, 0xc2a10025, 0x8bb4f093, 0xbe172700, 0xb10025d4, + 0xa7f093c2, 0x1827008b, 0x0025c7be, 0x9330c2c1, 0x008b99f0, 0xb9be1927, + 0xc2c10025, 0x8bf09334, 0x1a27008b, 0x0025abbe, 0x9338c2c1, 0x008b7df0, + 0x9dbe1b27, 0xc2c10025, 0x6ff0933c, 0x1c27008b, 0x258ebe0c, 0x40c2c100, + 0x8b60f093, 0x0d1c2700, 0x00257fbe, 0x9344c2c1, 0x008b51f0, 0xbe0e1c27, + 0x1e002570, 0x5bf04eff, 0x2bdf3bcf, 0x07fc4efe, 0xfc32be0f, 0x0efc0eff, + 0x4eff0bf0, 0x3bcf5bf0, 0x4efe2bdf, 0xbe0f07fc, 0x1efffedf, 0x1eff1eff, + 0x23fe0bff, 0x4127180c, 0x40270410, 0xfe0b0407, 0xd00c0c54, 0x06271d06, + 0x0cc0fe0b, 0x0cd02312, 0x0cc01b12, 0x0cd0f114, 0x0cc01314, 0x00a70f15, + 0x04d4fe0b, 0x0901d00c, 0xfe0b0427, 0xfe0b0727, 0xfe0b0527, 0x1e160c10, + 0x3b4127c8, 0x004e3840, 0x06273380, 0x4ed8fe0b, 0xec0c7e00, 0xfe0b0527, + 0x0c30fd4e, 0x1ed0a712, 0x3b41270d, 0xbc4ed840, 0x2709036d, 0x2bce3ed0, + 0xd8fd8e0d, 0xe692434d, 0xc13ed127, 0xfd8e0d2b, 0x853efe4e, 0xfe8e0123, + 0xb007fb4e, 0xf0931427, 0xbe008adb, 0x110024a4, 0xe8f093b1, 0x99be008a, + 0xb1210024, 0x8aeff093, 0x248ebe00, 0x93b10100, 0x008af6f0, 0x002483be, + 0xf093b231, 0x27008afd, 0x2476be10, 0x03db0700, 0x31c127d4, 0x931c07d2, + 0x008ae8f0, 0x61bec103, 0xd4030024, 0xec0fccc4, 0xfb0e0b07, 0x4eff125e, + 0xea09b9f5, 0x07f96301, 0xe04027d0, 0x2312399a, 0xa8d49d96, 0x4f6b4907, + 0x30279603, 0x31274214, 0x4f6b4307, 0xb9a9d49d, 0xb90214d8, 0xa90215d7, + 0x860212da, 0xa9a15344, 0x270210de, 0x32d2b941, 0xa9340702, 0x0701f0d0, + 0x07c423c8, 0x3b383b1e, 0xa9212347, 0x0b01eedb, 0x230c3b2a, 0x23312311, + 0x0b3e0b41, 0x07e2074a, 0x07bc3ba1, 0x5b385bc0, 0x53e75b47, 0xab2553a5, + 0x99185bcf, 0xd38da8d0, 0x9ed48d9c, 0x8da2d18d, 0xda8da0de, 0xa4d28da6, + 0x8d98db8d, 0x04e69adc, 0xd48d4c47, 0xd140279a, 0xbd01e4d3, 0xe002cfd4, + 0x07110631, 0xe04d034d, 0x43429901, 0x02bad2bd, 0xbd444499, 0xf602bbd4, + 0xb9017e9f, 0xe60216d4, 0x2705344f, 0xd3ad803c, 0xd3b9014c, 0x4c270232, + 0x4ad4ad2c, 0xb9d3bd01, 0x27b22702, 0x279127a2, 0xc9f19330, 0xf29303f6, + 0x2703f6cc, 0x15241d40, 0x05233d13, 0xc5f49313, 0x20a703f6, 0xf6aaf193, + 0xb5f09303, 0xfe9303f6, 0xd103f6b8, 0x050228dc, 0x2d402743, 0x2d120d12, + 0x2d040de2, 0x27e20d03, 0x27202700, 0x3207221c, 0x41273153, 0x4c8b433b, + 0x20fd4546, 0x0004f4cc, 0x21030103, 0xd4b9f138, 0xd39902b9, 0x164c33a8, + 0x00004f83, 0x32a30700, 0xac3334ab, 0x333aab0e, 0x39ab129c, 0xab15bc33, + 0xff2ea73b, 0x2305e7ff, 0x02bbd4b9, 0x02bad3b9, 0x833f4c83, 0x46333f3c, + 0x241543ab, 0x0290d3d1, 0x00ae34f8, 0x30012d27, 0x0220d4b9, 0x021fd3b9, + 0x33834383, 0x47333533, 0x42ab43ab, 0xffff3ea7, 0x5034c5e7, 0x01a4d4a9, + 0x80004d83, 0xd4d14606, 0x41f801c0, 0x40270435, 0x02cfd4bd, 0xd8d14027, + 0xd4bd0288, 0xf8c50338, 0xa7302738, 0xfddfff4e, 0x02b6deb9, 0xb9c443c5, + 0xc50216d2, 0x24f654f3, 0xfbc5b127, 0xeadcb954, 0x54f0c101, 0xc183c253, + 0x0648fcc5, 0x48f2c109, 0xf2c521c3, 0xd1f2353c, 0xb90284d4, 0xe002b9d1, + 0x115b5a4c, 0x155b4cd4, 0x03d44ff6, 0xf3c53027, 0x27481e30, 0x3cf1c510, + 0xdc1ef135, 0x36b44cc0, 0x010e4de0, 0xff1e1141, 0x10012d27, 0xe4ff535e, + 0xb9fe8a9a, 0x270232d4, 0x4447503c, 0x02b9d4bd, 0x4d27b427, 0xa4270100, + 0xd3ad9227, 0xd4ad014a, 0x845e014c, 0xc58227fe, 0xf0c130f8, 0x12d4a948, + 0x31c10702, 0x03407bf2, 0xd2bd0fcc, 0xc40b02b8, 0x0210d3a9, 0xf4c1c473, + 0x7cfcc53c, 0x2640f3c5, 0xe3c10345, 0x7cfcc5c1, 0x01f2d9a9, 0x01f4d5a9, + 0x0738fbc1, 0x66850729, 0x073127b7, 0x54fcc14b, 0x23074103, 0x4c0b243b, + 0x2013343b, 0x538b3013, 0xd0a9298b, 0xd4a901f8, 0xf0c501f6, 0x48f3c184, + 0x3b84f7c1, 0x4cf4c513, 0x0280d0d1, 0x710b420b, 0xf4c56507, 0xe0670b50, + 0x4201210d, 0x210de007, 0xc1073c11, 0xc8263cfc, 0xe630f2c1, 0xe00e582f, + 0xc10e5422, 0xf4c14cf3, 0x03330350, 0xe333e343, 0x4cf3c543, 0x2750f4c5, + 0x0cec1840, 0x34074127, 0x0de03f6b, 0x130f1102, 0x11030df4, 0x0de00725, + 0x0e460182, 0x01830df4, 0x0de00e28, 0x15940102, 0x01210de0, 0x4027154c, + 0x9df5d49d, 0x2127f4d4, 0x3027f325, 0xf2c5f2a5, 0x5cf3c558, 0xc560f3c5, + 0xf3c534f3, 0x78f3c564, 0xc568f3c5, 0xf3c56cf3, 0xbdf42170, 0xe602d0d2, + 0xc106cc4f, 0xbff684fb, 0x125306c0, 0x4fab4107, 0xad38fcc1, 0xe60326d4, + 0x073127ca, 0x54fec14c, 0x23074103, 0x4e0b243b, 0xc150f0c1, 0x343b4cf1, + 0x2fa32013, 0xffff0000, 0x3fa33013, 0xffff0000, 0x128b028b, 0x8b50f0c5, + 0x4cf1c563, 0xf221738b, 0x026e2fe6, 0xb984f3c1, 0x270216d4, 0xc5f365b0, + 0xfcc174fb, 0x2744f64c, 0x74fec5e1, 0xffffbea7, 0x46b0b9ff, 0xb948270d, + 0x0702b6da, 0x38d0bd79, 0xbd980703, 0x830339d4, 0x83fffe7d, 0xfcfffe9d, + 0x270f8aa4, 0xd8b02700, 0x2ea724a8, 0x07ffffff, 0x3e23a947, 0x124f8b0d, + 0x07430743, 0x4023a909, 0x8bb4070d, 0x12bfab0f, 0xab030703, 0x74f1c10f, + 0x4774f2c1, 0xa3810711, 0xff8dc381, 0x8b4807ff, 0x2721034b, 0x3bb40731, + 0x23bf8b32, 0x88f1c521, 0xc58cfbc5, 0x088b74f2, 0x070c3bd2, 0x074fab43, + 0xc5ef8be4, 0x10078cfe, 0xf1c51f8b, 0x0c31d280, 0x0fab0307, 0x2f8b2007, + 0x6d80f2c5, 0x2df44df0, 0x01f70df9, 0x07f111f0, 0x033d072d, 0x0303303d, + 0xbe032c2d, 0x27030de6, 0x38d3b940, 0x36d4ad03, 0x34d4ad03, 0x10dba903, + 0x12dea902, 0x30d9d102, 0xc73ff603, 0x2cd7d10e, 0x009d2303, 0x007d2301, + 0x07a90701, 0x03a15367, 0x5301009d, 0x007d0361, 0x04012701, 0x07002732, + 0xb94f8b4e, 0x2b0339d1, 0xc2413b40, 0x2407144a, 0xd4a93a07, 0x390b0336, + 0xd4ad4103, 0x32ca0336, 0x009d04f2, 0x36dead01, 0x8b4b0703, 0x3b402b4f, + 0x1446c241, 0x36072407, 0x0334d4a9, 0x4103370b, 0x0334d4ad, 0x04f232ca, + 0xad01007d, 0xc10334db, 0xd3a984fb, 0xd2a90334, 0xb50b0336, 0x288b4807, + 0xb02b438b, 0x0334d4ad, 0x0336d2ad, 0xbae2b13b, 0xf5c10e2d, 0xe2513b84, + 0x0713325a, 0x27390b3a, 0x1ab3e281, 0x07390b0e, 0x07492b43, 0xca8103a8, + 0x9d00f045, 0xfa650100, 0x1b50f3c1, 0xe2013b03, 0xc105b106, 0x413b4cf4, + 0x46e21407, 0xb60712fa, 0x9127b70b, 0x059c0be2, 0x4b07b70b, 0xa907472b, + 0x41ca9103, 0x007d00f0, 0xc1ca0701, 0xf36188f4, 0x4f0b41a3, 0x4c8b348b, + 0x12c730e8, 0x40e80407, 0x420712bc, 0xc180f2c1, 0x4f8b8cf1, 0x100b230b, + 0x12a042fa, 0x0334daa9, 0xa1faaf8b, 0x30081288, 0x273c24d2, 0x38f19304, + 0xa39e0085, 0x475e0021, 0x9cd4d1fc, 0xc04cf801, 0xc35efbcc, 0x32d4b9fb, + 0x503c2702, 0xd4bd4447, 0xb22702b9, 0x27e04c27, 0xad9227a4, 0xad014ad3, + 0x5e014cd4, 0xa1dafacb, 0x74f8c1c3, 0x487b6207, 0xd4ad7307, 0x687b0336, + 0xc54cf0c5, 0x787b50f1, 0xe654fbc1, 0xc10198bf, 0x518330f5, 0x01945fe6, + 0x01c0d4d1, 0x01c4d3d1, 0x01c8d2d1, 0x33474447, 0xf4752247, 0xf295f385, + 0x0230d1b9, 0x3330f2c1, 0x44f1c514, 0x04c921e0, 0x032121f4, 0x3fe6f321, + 0xf8c10f5b, 0xf4d3994c, 0x714cf4c1, 0xc58103f9, 0x979b4cf8, 0x7103433b, + 0x34071807, 0xd4992707, 0xc11153f5, 0xfc914cfe, 0x2153fa81, 0xb43bb107, + 0xa29bc29b, 0xd8b9e123, 0x930b02b8, 0xc10bab0b, 0xfec57123, 0xe65f6b4c, + 0x2702dc5f, 0xfbc1103c, 0x0743076c, 0x034b3b28, 0x60fec121, 0x427b1407, + 0x4e3b187b, 0xd1d5327b, 0xd4d502ec, 0xd3d502f0, 0xfb2102f4, 0xfec1b876, + 0xecd4d138, 0xf0d3d102, 0xf4d2d102, 0x5b4e5b02, 0xd52e5b3e, 0xd502ecd4, + 0xd502f0d3, 0xc102f4d2, 0x428330f4, 0xd4d14806, 0xd3d102ec, 0xd2d102f0, + 0x401302f4, 0x20133013, 0x02ecd4d5, 0x02f0d3d5, 0x02f4d2d5, 0xf654f0c1, + 0xd1028c0f, 0xd101a8d4, 0xd101acd3, 0x2b01b0d2, 0x2b3a2b49, 0xd5f1212c, + 0xd502d4d4, 0xd502d8d3, 0xd502dcd2, 0xd502e0d0, 0xd502e4d0, 0xad02e8d0, + 0xad0322d7, 0xc60324d6, 0x03710316, 0x07470761, 0x53415336, 0x28d4ad31, + 0x2ad3ad03, 0x7cfec103, 0x01ecd4b9, 0x0320dead, 0x012744e6, 0xc15cf0c5, + 0xf1c140f6, 0x0f6c0378, 0x1ff66473, 0x760701e8, 0xe65cf2c1, 0xb901662f, + 0xf6021fd4, 0xb90a964f, 0xf60220d4, 0xc10a8e4f, 0x0fe664f0, 0xd8b91076, + 0x1d270187, 0x4d270200, 0x8b5e8002, 0x30f5c10a, 0xdcd15183, 0xfc7501c0, + 0x01c4ded1, 0xd0d1fe85, 0xf09501c8, 0xd1fe735e, 0xf80290d4, 0x2501004d, + 0xbed0a90b, 0x7cf2c101, 0x073cf3c1, 0x03443347, 0x07435b21, 0x03b20730, + 0xac037f1c, 0x3321237f, 0x7f1ce334, 0x537face3, 0x7cf2c5b1, 0x02fcd4d5, + 0x0308d3d5, 0x3ea74027, 0xd5fddfff, 0xd101f034, 0xf80290d2, 0x9201002d, + 0x0777030a, 0x039707c0, 0xe397e3c7, 0x074907c7, 0x0748230a, 0x0703333c, + 0x23433321, 0x9b419b38, 0x33a63330, 0xd1163323, 0xd501c0de, 0xd50300d2, + 0xd50310d1, 0xd50314d4, 0xd50318da, 0xd5031cd3, 0x23030cd0, 0x6ee2f877, + 0x7cf0c10a, 0x033cf1c1, 0x03015bb7, 0x33943307, 0xc507e3c4, 0xb7e37cf0, + 0x10001d27, 0x0fff2da7, 0x02fcd9d5, 0x0308dcd5, 0x863cf3c1, 0x00d4d135, + 0xd5415303, 0xd10300d4, 0xc102fcd4, 0xd3d17cfc, 0xc49b0308, 0x41234107, + 0xb39bc40b, 0x0b7cfcc5, 0x8b428b4b, 0xead3b9c2, 0xf8dcd501, 0x04d4d502, + 0x7537e003, 0x78f0c10d, 0x0a5b0fe6, 0x01acd3d1, 0xdfff4ea7, 0xa8d1d1fd, + 0xb443d501, 0xff3ea701, 0x4027fddf, 0x019834d5, 0xa7e831c5, 0xfddfff4e, + 0x1578f1c1, 0x691fc646, 0x01c0d4d1, 0x076242dc, 0xa7343337, 0xfddfff4e, + 0xd54cf2c1, 0xc101b043, 0x42d550f3, 0x43d5014c, 0xf4c10154, 0x404ce044, + 0x002701e5, 0xfbc156e6, 0x81f87154, 0x7bfe91fc, 0x7bcb7b8b, 0x85f875eb, + 0xc1fe95fc, 0x1ff630f1, 0xf2210706, 0x029a2fe6, 0xf654f3c1, 0xc107b93f, + 0x4ce044f4, 0x7e0ab220, 0xd0c5f5a0, 0x07055eac, 0xa01e3027, 0x01bcd7a9, + 0xe0fe175e, 0xe0013c22, 0x1e00d723, 0xc14427ff, 0x332770f0, 0x482b382b, + 0xf291f171, 0x402bf881, 0x233b143b, 0xd1d5833b, 0xd8d502ec, 0xd2d502f0, + 0x275e02f4, 0x48f2c1fd, 0x09ea2ff6, 0x3fe6f321, 0xd2d10d20, 0xded101b0, + 0xd4d101bc, 0xd3d101a8, 0xd1d101ac, 0xd0d101b4, 0xd7ad01b8, 0xd6ad0322, + 0x71030324, 0xec2b6103, 0xb6072c2b, 0x192bc707, 0x492b0a2b, 0xc1533a2b, + 0xd4d5b153, 0xd3d502d4, 0xd2d502d8, 0xd1d502dc, 0xd0d502e0, 0xded502e4, + 0xdcad02e8, 0xdbad0328, 0x5a5e032a, 0xc12158fd, 0xb12350fb, 0xf850fbc5, + 0x23f8ba51, 0xf8b55e61, 0x455e4027, 0xf971cef9, 0x42534707, 0x395e4fab, + 0x010de0f9, 0xf4015480, 0x3880020d, 0x210de001, 0xe40e2f11, 0xdf12010d, + 0xa50a27f8, 0x0d215ef0, 0xefe6fe21, 0xd1990a33, 0x54f2c1f4, 0xf0713607, + 0x3b4cf8c1, 0x7b610331, 0x07130702, 0x99f381c6, 0x089bf5d4, 0x8103c153, + 0x074cf8c5, 0x7be807bc, 0x54f8c132, 0xb43bf291, 0xe153a127, 0xab2b287b, + 0xfbc19127, 0x2b2e9b4c, 0x133e9b91, 0xb8d8b9c1, 0x0bb12302, 0x0ba30b90, + 0xc56123c2, 0xee5e4cfb, 0xe6f221fb, 0xc10a5b2f, 0xd19950f8, 0x50f3c1f4, + 0xf8c58103, 0x07313b50, 0x07015308, 0x99fc7113, 0x4607f5d3, 0xb0072607, + 0x21234103, 0x2c9bb33b, 0xc1274153, 0xfe91f381, 0xc02b4123, 0xf0c19127, + 0x9ba12750, 0x2b912b34, 0xb94e9bab, 0x2302b8d8, 0x2b922b01, 0xc5c42ba3, + 0x925e50f0, 0x5e0927fb, 0xa0a7fe1c, 0x21fa705e, 0xfa0fe6f0, 0x50f1c108, + 0x2354f2c1, 0x50f1c511, 0xf3c1f171, 0x9b127b50, 0xc5310313, 0xd39950f3, + 0x3b9707f4, 0x50f4c193, 0x7103f381, 0x327be707, 0x0354f8c1, 0x53f29141, + 0x994153e1, 0x4123f5d0, 0xae07287b, 0xa03b249b, 0xce07349b, 0x02b8d8b9, + 0xa32b912b, 0x7123c22b, 0xc0fb2c5e, 0x1280210d, 0x80220d00, 0x80020de4, + 0x0127f7a6, 0x1e64f0c5, 0xc5b02706, 0xf2c164fb, 0xd12a8638, 0x2701acd3, + 0x27b127c0, 0xff4ea720, 0xfba5fddf, 0xc558fcc5, 0xfbc55cfb, 0x34fcc560, + 0xc578fbc5, 0xfcc568fc, 0x70fcc56c, 0x43d5f225, 0x8e5e01e0, 0x274027f7, + 0xc5f3a531, 0xf3c558f4, 0x60f3c55c, 0xc534f4c5, 0xf4c578f3, 0x6cf4c568, + 0x2570f4c5, 0xf76b5ef2, 0x7e0c0c27, 0x8007f314, 0xc50ccc27, 0xd5b9acd0, + 0xa1270231, 0xa0275200, 0xb1e0fba1, 0xb4e00445, 0x70270441, 0xecf4fea1, + 0x27050311, 0xf84e3b41, 0x0118004e, 0xb12704f8, 0xd07ef0a1, 0xe6f0b5f2, + 0x0703d90f, 0xf3067e0c, 0xf0c19007, 0xc1f13138, 0x9a0b34f2, 0x3027902b, + 0xc247912b, 0x1227081b, 0xf345f355, 0x2027e027, 0x3027f4a1, 0x140f4c23, + 0x0b312742, 0x0bbc0bb3, 0x0b4127b1, 0x07372bb0, 0x07300b14, 0xc11b3b84, + 0x833b34fb, 0xbff63807, 0xf69104ab, 0xf771fb81, 0xe030fcc1, 0xf40ba4c1, + 0x910490c1, 0x71fc81f2, 0xb1a307f0, 0x97eff6fe, 0x078b0704, 0x51fb4146, + 0x138013fe, 0x3b8b3b40, 0x0b830b4e, 0x13a7074a, 0x0ba93ba0, 0xffbea7a1, + 0xb0d5fddf, 0xbcd50108, 0xf021010c, 0x0110b2d5, 0xbad505d6, 0xb8d50114, + 0xb4d50118, 0xf1a1011c, 0xdfff4ea7, 0x30f2c1fd, 0xd51f1c83, 0xd5010041, + 0xc1010442, 0xf2c138f3, 0x54f8c148, 0xd558fbc1, 0x33016043, 0xab488723, + 0xc13b4724, 0xd4d15cfc, 0x23ab01e4, 0x41e02cab, 0x302703de, 0x0290d1d1, + 0x410723ab, 0x01a4d3a9, 0x46334183, 0x24ab3f8b, 0x037530e8, 0x1df83027, + 0x03a90100, 0x2364f1c1, 0x0e1c3351, 0x00001ea3, 0xab573304, 0xf612ab15, + 0xa903703f, 0xe002acd4, 0x21033842, 0xa3e506fe, 0x0000001f, 0xff4ea701, + 0x41c5fddf, 0xff3ea7b4, 0x4327fdef, 0x02e034d5, 0xdce034c1, 0x1ea7fb48, + 0xc1fdefff, 0x4ddce014, 0x27f90800, 0xe014d544, 0xe414d502, 0xd5302702, + 0xa7064013, 0xfdeb1f2e, 0x4f272305, 0x14c20000, 0xf39b2415, 0xd543270e, + 0xa702e814, 0xfdefff3e, 0xdce834c1, 0xeea7fb48, 0xc1fdefff, 0x4ddce8e4, + 0x27f90800, 0xe8e4d544, 0xece4d502, 0xd5102702, 0xa70644e1, 0xfdeb173e, + 0x4f273105, 0x15020000, 0xf19b3415, 0x6f2ea70e, 0x4c27fde4, 0x15240510, + 0x000f2721, 0x35200000, 0x4f3ea720, 0x4103fde4, 0x31153405, 0x30354327, + 0x02d0e4d5, 0xefff3ea7, 0xd034c1fd, 0xa7fb48dc, 0xfdefff0e, 0xdcd004c1, + 0xf908004d, 0x01d51427, 0x01d502d0, 0x302702d4, 0x067003d5, 0xeb2f2ea7, + 0x272305fd, 0x0500004e, 0xf39b2415, 0xd801d50e, 0x7403d502, 0xd5432706, + 0xa702dc04, 0xfdefff3e, 0xdcdc34c1, 0xdea7fb48, 0xc1fdefff, 0x4ddcdcd4, + 0x27f90800, 0xdcded5e4, 0x273ea702, 0x1027fdeb, 0x4f273105, 0x02050000, + 0xf19b3415, 0xaf2ea70e, 0x4c27fde4, 0x1524051c, 0x000f2721, 0x35a00000, + 0x9f3ea720, 0x4103fde4, 0x31153405, 0xded53035, 0xd1d50308, 0x43270648, + 0x030cd4d5, 0xefff3ea7, 0x0c34d1fd, 0xfa48dc01, 0xefff0ea7, 0x0c04d1fd, + 0x004ddc01, 0x1427f808, 0x030c01d5, 0xeaf73ea7, 0x052027fd, 0x004f2732, + 0x1515c200, 0x0ef29b34, 0xe3df3ea7, 0x124c27fd, 0x32153405, 0x00004f27, + 0x3435a000, 0x031001d5, 0x064c02d5, 0x04d54327, 0x3ea70314, 0xd1fdefff, + 0xdc011434, 0x1ea7fa48, 0xd1fdefff, 0xdc011414, 0xf808004d, 0x14d54427, + 0x2ea70314, 0x27fdeaef, 0x27230530, 0x0200004f, 0x9b241516, 0x2ea70ef3, + 0x27fde3bf, 0x2405134c, 0x4f272315, 0xa0000000, 0x24353327, 0x031813d5, + 0xefff3ea7, 0x1834d1fd, 0xfa48dc01, 0xefff0ea7, 0x1804d1fd, 0x004ddc01, + 0x1427f808, 0x031801d5, 0x031c01d5, 0x02d52027, 0x3ea706e8, 0x05fdeae7, + 0x004f2732, 0x15118300, 0x0ef29b34, 0xe38f3ea7, 0x3a4c27fd, 0x32153405, + 0x00004f27, 0x3435a000, 0x032001d5, 0x06ec02d5, 0x04d54327, 0x3ea70324, + 0xd1fdefff, 0xdc012434, 0x3ea7fa48, 0xd1fdefff, 0xdc012434, 0xf808004d, + 0x34d54427, 0x2ea70324, 0x27fdeadf, 0x27230530, 0x0300004f, 0x9b241512, + 0x2ea70ef3, 0x27fde37f, 0x24053b4c, 0x4f272315, 0xa0000000, 0x2435f943, + 0x0c07f58e, 0xc1ef2f7e, 0x900738fe, 0x0c07ea1b, 0x3d7efe45, 0x0bf141ef, + 0x07100b9a, 0x7ef1450c, 0xf241ef58, 0xf4c1f331, 0x45232b38, 0x1b2407f2, + 0x41040720, 0xc1081bfe, 0x942b34f8, 0x932bfe55, 0xe207c847, 0x095e1027, + 0x5e7127fc, 0xc007fbc0, 0xad7e0c07, 0xc5fb21ee, 0x8007acd0, 0xfb98bfe6, + 0xe030fcc1, 0xf4052ac1, 0x71009bc1, 0xff4ea7fe, 0xf081fddf, 0x01084ed5, + 0x40d5f191, 0x41d5010c, 0xd5b90110, 0x4f5e0231, 0xf2d4a9fc, 0x001ea301, + 0x4cf81000, 0xa3fcbe1f, 0x2000001e, 0xd1fcb65e, 0x2701c0d4, 0x8d42fc31, + 0xc11507fc, 0x112364fe, 0xec331733, 0xab1eab0e, 0x9cd4d112, 0xc04cf801, + 0xd4d1fc8b, 0x1da301c0, 0x48fc8000, 0x4cf80746, 0xa3fc7a10, 0x0100001e, + 0x07fc725e, 0x64f3c115, 0x17331123, 0xab0e3c33, 0x5e12ab13, 0xd4b9fc5f, + 0xd3b9021f, 0x43830220, 0x33834a33, 0x3c3324ab, 0xfc125e0c, 0x06f3c2e0, + 0x06dcc3e0, 0xcc27ff1e, 0xff3e5e0c, 0x095eb027, 0x33c2e0fb, 0x20c3e006, + 0x71ff1e06, 0x7360a7f7, 0x5eb0a771, 0x4027fb54, 0x7a5e8027, 0x037303fb, + 0xe373e363, 0xf1b95e63, 0x02010de0, 0x0de40627, 0xf1dc0281, 0x270f0c27, + 0xc5f0a520, 0x0b1e64f2, 0x2710cc27, 0xc5fca5e1, 0x402764fe, 0x3127f325, + 0xc558f3c5, 0xf3c55cf4, 0x34f4c560, 0xc578f4c5, 0xf3c568f4, 0x70f4c56c, + 0x41273227, 0xd49d2127, 0xf5d39df4, 0x07f1c45e, 0xe04d034d, 0x43409901, + 0x0232d1b9, 0x02bad0bd, 0xb9444499, 0xbd021fd3, 0xbd02bbd4, 0xf602b9d1, + 0xb902463f, 0xf60220d4, 0x27023e4f, 0x3c27344c, 0x4ad4ad90, 0x4cd3ad01, + 0xb9d4b901, 0xff2ea702, 0x4c33e7ff, 0x004f8316, 0xa3070000, 0x8480024f, + 0xb9240590, 0xb902bbd3, 0x8302bad4, 0x4c833f3c, 0xab36333f, 0xd1231534, + 0xf80290d4, 0x27020b44, 0xb930012d, 0xb9021fd4, 0x830220d3, 0x33338343, + 0xab453337, 0x004da343, 0xa742ab40, 0xe7ffff3e, 0x5e5034c5, 0x4127ef68, + 0xc1edc65e, 0x3ff664f3, 0xd8b90096, 0x1d270187, 0x4d2701e0, 0xd2d18021, + 0x281801c0, 0x38304ce3, 0x47e3102c, 0x4cf841a3, 0xf8009620, 0x27008b42, + 0xc10290ad, 0x4fe678f4, 0x21f8f56f, 0xfbc103e8, 0xbed0a97c, 0xc5b10301, + 0xfec17cfb, 0xc147077c, 0x44333cfc, 0x1c033007, 0x7fac037f, 0x34334c5b, + 0xd4d5e123, 0xd3d502fc, 0x1ce30308, 0x7face37f, 0xfec5b153, 0x5222dc7c, + 0x0308d3d1, 0xdfff4ea7, 0xf043d5fd, 0x7221fc01, 0x9b179bf5, 0x00d1d5a0, + 0x7f2ca703, 0xd5801c27, 0x5e030cda, 0xd8b9f5cc, 0x1d270187, 0x4d270290, + 0x6b5e8022, 0x001d27ff, 0xff2da710, 0xf5b25e0f, 0x01e0ad27, 0xd8ff765e, + 0xad270c42, 0x6c5e0200, 0x1e3027ff, 0x80ad27b0, 0xff615e01, 0xa97cf4c1, + 0x0301bed0, 0x7cf4c541, 0x073cfbc1, 0x5b443347, 0x7cfcc14b, 0x077cfbc1, + 0x33c12330, 0xc5b15334, 0xd4d57cfc, 0xd3d502fc, 0xe15e0308, 0x334807f4, + 0x2b833345, 0x9042f148, 0xf1ff0001, 0x00019841, 0xff3ea7ff, 0x32d5fddf, + 0x9a5e01b4, 0xc54127f5, 0xf75e30f4, 0xc5b327ee, 0xef5e30fb, 0x5ea0a7ee, + 0x3100f1f2, 0x03ca32e0, 0x032cd7d1, 0xa0276027, 0xa9f1485e, 0x070d42b1, + 0xbe0f8b07, 0xa9003e6a, 0x070d44b1, 0x8b0907b0, 0x3e5cbe0f, 0xabbfab00, + 0xf05d5e0f, 0x01ead4b9, 0x037d46e0, 0xbfe6fb21, 0xd0a902e7, 0xd3d10326, + 0xd2d101b4, 0xd1d101b8, 0xd7ad01bc, 0xd6ad0322, 0x71030324, 0x1c2b6103, + 0xc607e707, 0x392b4027, 0xe1532a2b, 0x0153c153, 0x02d4d3d5, 0x02d8d2d5, + 0x02dcd1d5, 0x02e8d4d5, 0x0328dead, 0x032adcad, 0x0326d0ad, 0x02e0d4d5, + 0x02e4d4d5, 0x27f3705e, 0x3c273c4c, 0x4ad4adb8, 0x4cd3ad01, 0xfdc35e01, + 0x10012d27, 0x27fdf65e, 0x4c5e0c0c, 0x54f3c1f5, 0xc170f1c1, 0x130b50f4, + 0xf3c1e707, 0xc1710344, 0x07076cfb, 0x01534103, 0xfcc14153, 0x2b315360, + 0x07eb3b34, 0x54f4c120, 0x8154fbc1, 0x712c3bfa, 0x54fcc1f9, 0xf8c1245b, + 0xc1ab7b50, 0xfb9144f4, 0xf1c1917b, 0x7b482b6c, 0x9b949bbc, 0x9bec5bb3, + 0x5b213ba3, 0xb8d8b90c, 0x0b9e0b02, 0x23b00ba2, 0x38f0c171, 0x907bcb07, + 0xc07ba07b, 0xc1f2185e, 0xf3c16cfc, 0x54f0c144, 0xf4c1e607, 0x3b3c3b70, + 0xb9fc71ec, 0xc102b8d8, 0x400b4cfb, 0x16076103, 0x9307c47b, 0x5360f4c1, + 0x9b985b11, 0x078103cb, 0xc5b103a3, 0x21074cfb, 0x243ba85b, 0xf4c1a43b, + 0x44fbc14c, 0xf3c14153, 0x5b205b54, 0x90f4c5e0, 0x816cf0c1, 0x538123f4, + 0x5b203bb1, 0x5b437b13, 0xc1f391b8, 0xb12b54f0, 0x2b90f1c1, 0xc1307ba2, + 0x9e2b4cf2, 0x419b319b, 0x9c0b2123, 0xb30ba40b, 0xf2c56123, 0xff6b5e4c, + 0xc150f2c1, 0xf3c144f1, 0x03122b54, 0x50f2c521, 0xf4c1e207, 0x44f2c170, + 0x2153f071, 0xe153430b, 0x3207047b, 0x0760f4c1, 0x6cf8c1b2, 0xbe2b3e2b, + 0xfec1f971, 0x3bfa8138, 0x3b183b34, 0x3b9e3b38, 0x54f2c1ae, 0x8138f8c1, + 0x9bfe91f4, 0x03427b06, 0x91e83b61, 0x54f8c1f2, 0xc153c607, 0x2c9b287b, + 0xfcc14c9b, 0x0b910b50, 0xb9be0ba3, 0x2302b8d8, 0x2b902bc1, 0x23b22ba4, + 0x50fcc561, 0x71feec5e, 0xa7f381f2, 0xfddfff4e, 0xf8912013, 0x0231d5b9, + 0x42d53013, 0x43d50108, 0x8013010c, 0x011048d5, 0xc1f7255e, 0xf4c154f0, + 0x68f2c170, 0xf1c1f971, 0x0b400b6c, 0xc1947b12, 0xf1c54cf4, 0xc1410368, + 0xf3c14cf1, 0x4cf4c568, 0x2407979b, 0xf8c17103, 0xc1fa8160, 0xfb916cf4, + 0x2153133b, 0x31533707, 0xfec1480b, 0x7ba07b4c, 0x9bc207b0, 0x3ba39bb3, + 0xb8d8b9c4, 0x0be12302, 0x0bac0b91, 0xc57123b2, 0x665e4cfe, 0x0ccc27fe, + 0x0027fca5, 0x2127e127, 0xfec5f325, 0x5cf0c558, 0xc560fec5, 0xfec534f0, + 0x78f0c564, 0xc568fec5, 0xf0c56cf0, 0xed135e70, 0x6678fec1, 0xacd1d1ea, + 0xf29b5e01, 0xc17cf3c1, 0x47073cfb, 0x01bed0a9, 0x44333103, 0xb3074b5b, + 0xf3c53123, 0x3330077c, 0xd5b15334, 0xd502fcd4, 0x5e0308d3, 0x4807fc29, + 0x83334533, 0x41f1482b, 0xff000190, 0xd1f2605e, 0xa901bcd2, 0xd10326d1, + 0xd101b4d4, 0x2b01b8d3, 0x2107072c, 0x2be607fc, 0x533a2b49, 0x53e15301, + 0xd4d4d511, 0xd8d3d502, 0xdcd2d502, 0x22d0ad02, 0x24dead03, 0x26d1ad03, + 0xe0dcd503, 0xe4dcd502, 0xe8dcd502, 0xf0975e02, 0x01a8d4d1, 0x01acd3d1, + 0x01b0d2d1, 0x01b4d1d1, 0x01b8d0d1, 0x01bcded1, 0x0a2b192b, 0x492bec2b, + 0x2c2b3a2b, 0x02d4d4d5, 0x02d8d3d5, 0x02dcd2d5, 0x02e0d1d5, 0x02e4d0d5, + 0x02e8ded5, 0x0322d7ad, 0x0324d6ad, 0x21f0505e, 0x824fe6f4, 0x26d0a900, + 0xa8d3d103, 0xacd2d101, 0xb0d1d101, 0xfc845e01, 0x032cd7d1, 0x6707a907, + 0x6153a153, 0x27ed7c5e, 0x278027a0, 0x81f29140, 0x5ef071fc, 0xa307f569, + 0xfc81f071, 0xa013f291, 0xc0130013, 0x70132013, 0x6013b013, 0x3a071013, + 0x27f52a5e, 0x25fea5e2, 0x272127f3, 0x5cf3c530, 0xc534f3c5, 0xf3c564f3, + 0x68f3c578, 0xc56cf3c5, 0xf2c570f3, 0x60f2c558, 0x31274027, 0x9df4d49d, + 0xb65ef5d3, 0x26d1a9eb, 0xa8d4d103, 0xacd3d101, 0xb0d2d101, 0x07f82101, + 0x2be60707, 0x2b3a2b49, 0x5301532c, 0xd51153e1, 0xd502d4d4, 0xd502d8d3, + 0xad02dcd2, 0xad0322d0, 0xad0324de, 0xd50326d1, 0xd502e0d8, 0xd502e4d8, + 0x5e02e8d8, 0xd5b9ef81, 0xf2910231, 0xf071fc81, 0x80274027, 0xbe5ea027, + 0x81f071f4, 0xb9f291fc, 0x130231d5, 0x13c01300, 0x27402720, 0x5ea02780, + 0x1ea3f4a5, 0x5e020000, 0xd8b9f8b6, 0x1d270187, 0x4d270180, 0x175e8001, + 0x07a707fa, 0x1346078b, 0x130103a0, 0x13210380, 0x3be10340, 0x3b823ba0, + 0xff035e4e, 0x1b8cf0c1, 0x7800e80a, 0x5e1a07ed, 0xf3c1ed6e, 0x1b240780, + 0xed5a5e34, 0x435e0027, 0x5e3027ed, 0xa027ed38, 0x27ed1c5e, 0xece45ea0, + 0x41273af6, 0x01210d04, 0xc0274027, 0x4c03b127, 0x27e2270d, 0xc5f4a521, + 0xfcc558fb, 0x60fbc55c, 0xc534fbc5, 0xfcc564fc, 0x68fcc578, 0xc56cfec5, + 0xfc2570fb, 0x27eaac5e, 0x19f19304, 0xbf9e0072, 0xbb27000e, 0x635efba5, + 0x99fc4efd, 0xd1072604, 0x1aff4cc0, 0x35333407, 0x342b4333, 0x018c34f1, + 0x4ea3ff00, 0xf5040000, 0x00018c34, 0x072d07ff, 0x3347334d, 0x23240b25, + 0xfff73c2e, 0x07121c27, 0x03030142, 0x01e10744, 0x0511233c, 0x0334034c, + 0xa7fe9844, 0xfddfff3e, 0x08004d27, 0x020834d5, 0x020831d5, 0x4fff4ea7, + 0x114311fd, 0xc5420700, 0x4c036823, 0x01382774, 0x05040302, 0xa8440342, + 0xff3ea7f3, 0x34d1fdef, 0x4dd8010c, 0x0710fc6a, 0xe8432723, 0x0c23d1f4, + 0x6a3ddc01, 0x3ea7f4fc, 0xd1fdefff, 0xd8011434, 0x10fc6a4d, 0x43272307, + 0x23d1f4e8, 0x3ddc0114, 0x27f4fc6a, 0xb8d4fd42, 0xa7ff0008, 0xffffff2e, + 0x24bd4127, 0x23990638, 0x9b40270f, 0x41270ef4, 0x34f53387, 0xff02b040, + 0xfa4efc8e, 0x018602b9, 0x01f20ea9, 0x02bc04a9, 0xa007c207, 0x0447c483, + 0xabd1e553, 0xa3a902a4, 0xc90601f4, 0x46534307, 0x42234447, 0x276514c2, + 0xff4ea730, 0x43d5fddf, 0xa0b90208, 0x0e7602d0, 0xdfff4ea7, 0xe440c5fd, + 0xd307fa8e, 0x4d47d553, 0x28d84223, 0xab41ea79, 0x53300700, 0x073e9b31, + 0xcf2ea743, 0x4b0bfde3, 0x2e152405, 0xbd0bde9b, 0x4ea72c35, 0x0bfde3af, + 0x1543053b, 0x3533274e, 0xd0a0b94c, 0xff4ea702, 0x43d5fddf, 0x0fc60208, + 0xfcfa8eb0, 0x27009821, 0x0b400720, 0xa74e9b2b, 0xfde3cf3e, 0x3405420b, + 0x01033e15, 0x10270e9b, 0x4ea73135, 0x0bfde3af, 0x15420520, 0x3533274e, + 0xff4ea741, 0x43d5fddf, 0x6f5e0208, 0x9b2007ff, 0xc22b0b2e, 0x4ea73941, + 0x05fde3cf, 0x034e1542, 0x270e9b01, 0x0b423520, 0xaf4ea70b, 0x4005fde3, + 0x33274e15, 0x4ea74235, 0xd5fddfff, 0x5e020843, 0x4ea7ff3a, 0xd5fddfff, + 0x5e02084c, 0x41eeff2e, 0x3ea7ff1f, 0x05fde3cf, 0x273e1532, 0x27343540, + 0xff4ea721, 0x42d5fddf, 0x0f5e0208, 0x532307ff, 0x5e2e9b25, 0xfe4eff65, + 0x01e40ed1, 0xf493ea16, 0x1102f628, 0x91f39341, 0xf49303dc, 0x1502f634, + 0x113e053e, 0x41f49342, 0x1e1502f6, 0x43111e05, 0x2e052e15, 0x3e053e15, + 0x01e40ed1, 0x02ce0ebd, 0xf04efe8e, 0xdf3bcf5b, 0xfc4efe2b, 0xdebe0f07, + 0xfc0effe3, 0xff0bf00e, 0xcf5bf04e, 0xfe2bdf3b, 0x0f07fc4e, 0xffe45bbe, + 0x2103ff1e, 0x0319181e, 0x01031419, 0x34ce1103, 0x2301230d, 0x19001911, + 0x0b042b14, 0x27f230fe, 0x4efe0b00, 0xab4107fe, 0xd8300740, 0x151e0f43, + 0x24231e01, 0x14033e05, 0x071e3403, 0x42534207, 0xf4584103, 0x14192586, + 0x341d1103, 0xf2a83103, 0xfd4efe8e, 0x03dce007, 0x2624d029, 0x3f6b3107, + 0x48334307, 0x320743ab, 0x3423e407, 0xec333253, 0x03e4ab10, 0x05400731, + 0x0324234e, 0x07f3b844, 0x272103e4, 0x1d031e40, 0x0b3e0731, 0xa8410334, + 0x00fd8ef2, 0x04110321, 0x04014342, 0x411d430b, 0x41030421, 0xfe0b0425, + 0x00000030, 0xf2e3f54e, 0x5f079307, 0xb0273f07, 0x3a037027, 0x82074027, + 0x5c036027, 0x95fb850c, 0x05f3a5f7, 0x25f115f0, 0x01c85ef4, 0x1c40b7b6, + 0x3e0f0725, 0x01ba5eb8, 0x40276807, 0x61237027, 0xf485b127, 0xa95ef795, + 0x301c2301, 0x4f6b4107, 0xd4301c03, 0x7536184a, 0x27301c24, 0x47f38531, + 0x0b733347, 0x301c2374, 0x855e710b, 0x6c1ce001, 0x1cd40180, 0x1ce0206d, + 0x54010663, 0x1ce0641c, 0xe4015a25, 0x01632d1c, 0x1cc0261e, 0x1ce42964, + 0x1e015869, 0x731ce022, 0x1c3400f6, 0x701ce474, 0x131e0149, 0x0f751cc0, + 0x3e781ce4, 0x27081e01, 0x5ef49541, 0x9001013c, 0xc4641c00, 0xcc0a691c, + 0x00130b00, 0x071eb127, 0x2b751cc4, 0xd007b027, 0x0d07a027, 0x6cbe1a27, + 0x00f90035, 0x0001885c, 0x4a0b4507, 0x1a27401d, 0x5ebe0d07, 0xd0070035, + 0x07e6a103, 0xa027dd1e, 0x4c834007, 0xf935070f, 0x01886844, 0x1d3a0b00, + 0x03045334, 0x270176a1, 0x91c707b0, 0x2bca2bf3, 0x813a76cb, 0x6647a6f4, + 0x270f07b7, 0xc57e2d1c, 0x1eb027fe, 0x96f3810e, 0x071d0734, 0xfeb67e0f, + 0xdc27041e, 0x07c12320, 0xbdf3534c, 0x014103fe, 0xe241cc31, 0x0f07b546, + 0x7e2d1c27, 0xda07fe98, 0xd50bd123, 0xd139061e, 0xa1fe8b7e, 0x07d123f4, + 0xf3d4ce0f, 0x061edc07, 0x23fe7b7e, 0x270f07d1, 0xd1cc201c, 0x01591ef4, + 0x03c90791, 0x7e0f07c4, 0x9c07fe64, 0x9d01611e, 0xb02774d6, 0x0d070b1e, + 0x000089be, 0xb02bb707, 0x34e6f391, 0x457e171e, 0x07b123fe, 0x0741034b, + 0x201c270f, 0x1ef041cc, 0xfe327e04, 0x0f07d419, 0xd1031407, 0xdb0742b6, + 0x217e061e, 0x07d123fe, 0x201c270f, 0x03f4d1cc, 0x07141e94, 0xfe0e7e0f, + 0x61190d1e, 0x057e6103, 0xc20f07fe, 0xb027f568, 0x81198103, 0xfe361ff6, + 0x10270f07, 0x21fdef7e, 0x23f2c3f0, 0xa3f58e01, 0x15f305f0, 0x63fe4ef4, + 0x033f07f0, 0x7ef30538, 0xf043fdec, 0xf083fe0e, 0x3007fe0b, 0x01030419, + 0x032b4396, 0xfb4efe0b, 0xeea7f063, 0x05fd4fff, 0x07c007f2, 0x01b307d1, + 0x123f9be4, 0x44334103, 0xab38e2c1, 0x1023ce34, 0xffe30ea7, 0x0ab8beff, + 0xe8101e00, 0xa7061ef3, 0xffffe32e, 0x36272401, 0xf1294276, 0x1303d409, + 0x12732407, 0x03fc4d10, 0x0107ff1e, 0xc4090103, 0x322b3407, 0x03fc4d10, + 0x310cff1e, 0x03fc3d03, 0x87ec30da, 0x104c0342, 0x4d0bf301, 0x21034305, + 0x03fc2d04, 0x01072027, 0x01033b07, 0x3401111e, 0x14052103, 0x2d103403, + 0x2d2303fc, 0x128703fc, 0x0b101c03, 0x0df0301d, 0xe30ea7d2, 0x0401ffff, + 0x18be44c6, 0x4027000a, 0x270ef49b, 0xff4ea731, 0xf043fd4f, 0xfb8e43a5, + 0xf005f063, 0x20073107, 0xe0001f27, 0x0f271007, 0x1007d000, 0x2f5ef043, + 0x05f063ff, 0x073107f0, 0x001f2720, 0x271007c0, 0x07b0000f, 0x5ef04310, + 0x0409ff16, 0xf40df063, 0x30070449, 0xf201f42d, 0x0f273803, 0x10079000, + 0xa0001f27, 0xf0431007, 0x4efef55e, 0x07a007fa, 0xbeb10701, 0x07fffede, + 0x49fc9330, 0x35030353, 0x0c072307, 0x07da4d27, 0x24231b07, 0x050c0c03, + 0x15ca25c4, 0xfc15bec3, 0x3e0c07ff, 0x4eff1eae, 0xf5f493f7, 0x438905d3, + 0x0a428908, 0x322b8007, 0x300c7107, 0x03fc3d03, 0x002734d6, 0x4287f78e, + 0xd0124ce9, 0x93071007, 0xac07c303, 0x9123b207, 0xb103a273, 0x4de9c323, + 0x1007d010, 0x270ca9d2, 0xd5f19308, 0x843e006b, 0x8c2da907, 0x84298d0d, + 0x0bb9dd24, 0x89484ce4, 0x24141e00, 0xc40bbadd, 0x1e7e284c, 0xbbdd000a, + 0xbcddc40b, 0x8329730b, 0x370b2707, 0x2ce33123, 0x7f3ce37f, 0x2c032419, + 0xf923c280, 0x2a07a7c6, 0xbd103707, 0xbd2303fc, 0x4b8703fc, 0xd01044f1, + 0xb1031007, 0x34033405, 0xbd10f238, 0xbd2303fc, 0xf39303fc, 0x8d05d34c, + 0x3f270a3b, 0x1007e000, 0x80093b2d, 0x0bb90dc4, 0x2774410e, 0x0e4ee301, + 0x744501fc, 0x0d40f78e, 0x06270bbc, 0x6b59f193, 0xfef17e00, 0xf78e0127, + 0xf1930627, 0x7e006b8a, 0x831efee3, 0x14290329, 0x03fc3d10, 0x4d10ff1e, + 0xff1e03fc, 0x042b0307, 0x0d03000c, 0xfe0b03fc, 0x90004f27, 0x44291007, + 0x34070f6b, 0x03fc4d10, 0x03fc3d23, 0xb0004f27, 0x44291007, 0xd2d2f293, + 0x07230d05, 0xfc4d1034, 0xfc3d2303, 0x004f2703, 0x291007d0, 0x10234d44, + 0x2303fc4d, 0x8d03fc4d, 0x0ba60824, 0xa0004f27, 0x44291007, 0x4d103407, + 0x3d2303fc, 0x4f2703fc, 0x1007c000, 0x232d4429, 0x4d103407, 0x3d2303fc, + 0x4f2703fc, 0x1007e000, 0x236d4429, 0x03fc4d10, 0x03fc4d23, 0x0b0a248d, + 0x93f84efe, 0x05d26bf4, 0x42294309, 0x322b9007, 0x3d03300c, 0x34d603fc, + 0xf88e0027, 0x4de94287, 0x10079012, 0xd303a307, 0xc207bd07, 0xb273a123, + 0xd323c103, 0x901048e9, 0xbad21007, 0x9308270d, 0x006a4ff1, 0x07fdfe7e, + 0x159805ba, 0xc5dc509d, 0xf1930827, 0x7e006ac3, 0xb806fdeb, 0x08030907, + 0xcd103b07, 0xcd2303fc, 0x4c8703fc, 0x901044f1, 0xc1031007, 0x04030405, + 0xcd10f338, 0xcd2303fc, 0xf39303fc, 0x2d05d1ec, 0x003f273c, 0x271007a0, + 0x8e3c2d01, 0x93f74ef8, 0x05d1d7f4, 0x42694349, 0x322b9007, 0x300c7107, + 0x03fc3d03, 0x002734d6, 0x4287f78e, 0xb0124ce9, 0xa3071007, 0x8c07c303, + 0xa123b207, 0xb1038273, 0x4de9c323, 0x1007b010, 0x270d8ad2, 0xb9f19308, + 0x687e0069, 0x2d8a07fd, 0x299d0d9c, 0xb9dd2494, 0x484cc40b, 0x24141e74, + 0xc40bbadd, 0x1e6a284c, 0xbbdd000a, 0xbcddc40b, 0x94295f0b, 0x27f94c50, + 0x27f19308, 0x347e006a, 0x079029fd, 0x23070b37, 0x7f3ce301, 0x197f0ce3, + 0x803c0334, 0xc6f930c2, 0x07170787, 0xfcbd1038, 0xfcbd2303, 0xf14b8703, + 0x07b01044, 0x05b10310, 0x38140314, 0xfcbd10f3, 0xfcbd2303, 0x21f39303, + 0x3b6d05d1, 0xc0003f27, 0x01271007, 0xf78e3b2d, 0xf1930627, 0x7e0069e8, + 0x971efcdb, 0x4fff2ea7, 0x9b2401fd, 0x4103123f, 0x22c14433, 0x2734ab38, + 0x27320e00, 0xe3fe0b01, 0x15f205f0, 0x4ef425f3, 0xff3ea7fa, 0x34a9ffff, + 0xf0630d3c, 0xa107d007, 0x00ad4fe6, 0x00a940fa, 0x0d3834d1, 0x00a14fe6, + 0x07e6bb3e, 0xa7122f9b, 0xfd4fff4e, 0x1ea74301, 0x33ffffe7, 0xd6140134, + 0xab38a343, 0x1e130532, 0xe70ea70a, 0x3fbeffff, 0xcf270006, 0x10100000, + 0xa744cbc1, 0xffffff4e, 0x0d3840d1, 0x4fff4ea7, 0x074401fd, 0x0b37333b, + 0x304c0303, 0x4f9b041d, 0x28ddf912, 0x0300018a, 0x043d304c, 0x4c273f07, + 0x7d0d5d20, 0x183c0304, 0x2a070403, 0x057b1c27, 0xf8eabef3, 0xa6d007ff, + 0x48c4c107, 0x41033b07, 0xc148c4c5, 0x310348c4, 0x0fff3d10, 0xc3c53027, + 0x44c4c144, 0xffe70ea7, 0x05a9beff, 0x27031e00, 0x430d07d0, 0xc3fa0ef0, + 0x4efe0bf0, 0x073401fa, 0x07b107c3, 0xff4fc4a2, 0x27ffffff, 0x2d271007, + 0x02270601, 0x01a43d27, 0xfef3e5be, 0x00ccd007, 0x060d2710, 0xf3d8be01, + 0x0df493fe, 0x40050353, 0xc101cd05, 0xffff1fc0, 0x071dffff, 0x273a072b, + 0xf3bcbe05, 0x1000ccfe, 0x01060d27, 0xfef3b1be, 0x52e6f493, 0x8e400503, + 0xbefe4efa, 0x270007b6, 0x07f0002f, 0xe33d2710, 0x07051e04, 0x01f4e843, + 0xf842c424, 0xbd9efe0e, 0xfb4e0007, 0xfb9bb027, 0x00cf270e, 0x271007f0, + 0x27c30531, 0x0ef49b40, 0x4fff4ea7, 0x3e43a5fd, 0x05c031c1, 0x4efb8ecb, + 0x9bc027fb, 0xbf270efc, 0x1007f000, 0xb3053127, 0xf49b4027, 0xff4ea70e, + 0x43a5fd4f, 0xbc059c3e, 0xfe4efb8e, 0xffe70ea7, 0x04c3beff, 0x27302700, + 0x07f0004f, 0x8e430510, 0x7efe4efe, 0x07e6fe30, 0xa7122f9b, 0xfd4fff4e, + 0x1ea74301, 0x33ffffe7, 0xd6140134, 0xab38a343, 0x8e130532, 0xe70ea7fe, + 0xfe0effff, 0x0004b19e, 0xf105f123, 0xf325f215, 0xfb4ef435, 0x7fff4ea7, + 0x634491d0, 0xf8b007f0, 0x008b104c, 0xe57efdab, 0x9b07e6fd, 0x4ea7122f, + 0x01fd4fff, 0xe71ea743, 0x3433ffff, 0x43d61401, 0x32ab38a3, 0x0a1e1305, + 0xffe70ea7, 0x0468beff, 0xff4ea700, 0x4401fd4f, 0xf000cf27, 0x4c031007, + 0x203c2730, 0x9d0cc49d, 0x4f9b0dc3, 0x0fc39d12, 0x07304c03, 0x143c033f, + 0x1d272b07, 0xc49d03f0, 0x100f270e, 0x051007f0, 0xf722bef3, 0x154127ff, + 0x0c0f27c4, 0xbe1007f0, 0x03fff932, 0x7ec02501, 0x0ea7feff, 0xbeffffe7, + 0xeb0003eb, 0x0ef043fd, 0x0bf103fb, 0x27f84efe, 0x1000004f, 0xc14a0110, + 0x49c14048, 0x484cc144, 0xdc07ca2a, 0xdc07051e, 0xbea7d123, 0xd1ffffff, + 0x2b0d38b4, 0x934556da, 0x006734f0, 0xd1ff237e, 0x930d38b1, 0x00674ef0, + 0xc4ff177e, 0x2233568f, 0x9dd45711, 0x26520fff, 0x072907de, 0x9318073c, + 0x006754f0, 0x9b074a07, 0x07fef77e, 0x1eca07bd, 0x2cd1be1f, 0x3894d100, + 0x3320070d, 0x19240b27, 0x07458624, 0x60f0931c, 0xd57e0067, 0x23c103fe, + 0x270c07b1, 0xc40fff1d, 0xffffffbf, 0xda0bd4ff, 0x00004f27, 0x4d051010, + 0x4ea7f88e, 0xd1ffffff, 0xc60d3844, 0x004f2747, 0x01101000, 0x01440341, + 0x01440342, 0x01440343, 0x26f09344, 0x915e0067, 0x4efe0bfe, 0x634207f5, + 0x074013f5, 0x076107a2, 0x07524780, 0xc5702791, 0x351e50f4, 0xd103b309, + 0xfff816be, 0xb203c00b, 0x1c270c07, 0x20f29350, 0xad0e0067, 0x27e6d9ce, + 0x07c41d40, 0x16f09317, 0x2f070067, 0xc1fe4b7e, 0x7a0b50f4, 0x850b940b, + 0x070967c2, 0x07d027b8, 0x43ce1ecf, 0x4ef58ef5, 0x236207f5, 0x077107f5, + 0x13500792, 0x27a10760, 0x19301e80, 0xbed103b3, 0x0bfff7bf, 0x07b103c0, + 0x501c270c, 0x66d7f293, 0xce9d0e00, 0x4027e6da, 0xc41d1807, 0x66bff093, + 0x7e2f0700, 0x890bfdf4, 0x78c2a60b, 0x0bb8070b, 0x07d027b5, 0x03d11ecf, + 0x4ef58ef5, 0x07b007f9, 0x07a207d1, 0x7efcab93, 0x07e6fbd4, 0xa7122f9b, + 0xfd4fff4e, 0x1ea74301, 0x33ffffe7, 0xd6140134, 0xab38a343, 0x1e130532, + 0xe70ea70a, 0x57beffff, 0x4f270002, 0x1007f000, 0x43153227, 0x4d453a03, + 0x4a9d4325, 0x15499d14, 0xff7e4b35, 0xa7d007fc, 0xffffe70e, 0x00020ebe, + 0xd5c6fceb, 0x0d272b07, 0x1d070202, 0xfef069be, 0xf98e0d07, 0xc007fb4e, + 0xfdabb107, 0xe6fb677e, 0x122f9b07, 0x4fff4ea7, 0xa74301fd, 0xffffe71e, + 0x14013433, 0x38a343d6, 0x130532ab, 0x0ea70a1e, 0xbeffffe7, 0x270001ea, + 0x07f0003f, 0x15432710, 0x35482734, 0x4534253c, 0xfc987e3b, 0x0ea7c007, + 0xbeffffe7, 0xeb0001a7, 0x8e0c07fd, 0x07fc4efb, 0xab0d66d0, 0xfb0e7efc, + 0x2f9b07e6, 0xff4ea712, 0x4301fd4f, 0xffe71ea7, 0x013433ff, 0xa343d614, + 0x0532ab38, 0xa70a1e13, 0xffffe70e, 0x000191be, 0xf0004f27, 0x34271007, + 0x43254315, 0x687e4d35, 0xe70ea7fc, 0x54beffff, 0xfceb0001, 0xfc4efc8e, + 0xd107f123, 0xf193c007, 0x07006596, 0x102c270f, 0xfff3cabe, 0xfd93d4f6, + 0x07007573, 0xf664be0d, 0x21f393ff, 0x2007034c, 0x07da4d27, 0x0c03e307, + 0x15340514, 0x033c2530, 0x0cec0321, 0x43273f07, 0x34033101, 0xe403e105, + 0x3459f4a8, 0x1d073309, 0x4c0df093, 0x0de45d03, 0xf381bee3, 0xe5f093ff, + 0x17be034b, 0xff1efff7, 0x4ea7fc4e, 0xb9ffffff, 0x070d1444, 0xe6c107d0, + 0x33f09345, 0x1d070065, 0x3dbe2c07, 0x0d07fffc, 0xc9be1c07, 0x0596fffe, + 0xf1930227, 0x5e00653a, 0xfc8eff66, 0x8ea7f84e, 0xb9ffffff, 0x070d1484, + 0x07b10790, 0x66d307a2, 0x2af09346, 0x19070065, 0x3a072b07, 0x01be4d07, + 0xcd07fffc, 0xc227d214, 0x1b070907, 0x3c072a07, 0xfffe12be, 0x0d1484b9, + 0x45a6d007, 0x6532f093, 0xbe1d0700, 0x76fffbdc, 0x930227d5, 0x00653af1, + 0x4127121e, 0x41234c3b, 0x45864d8b, 0xf1930127, 0x5e006535, 0xa796fefa, + 0x0000df50, 0x4d072000, 0x4fd04b0b, 0x70000001, 0x93012723, 0x00653df1, + 0xdf50e21e, 0x70000000, 0x4b0b4d07, 0x00014f50, 0x0127f000, 0x6553f193, + 0x07c91e00, 0x27f88e0d, 0x595e0c3c, 0x054027ff, 0x27fe0b04, 0x0ef49b40, + 0xfe0b0405, 0x3f9b0201, 0xff4ea712, 0x4401fd4f, 0x44330027, 0x43ab48a3, + 0x0127420e, 0xfa4efe0b, 0x3f9bc007, 0xff4ea712, 0x4d01fd4f, 0xd433a407, + 0xd3abd8a3, 0xf4e8031e, 0x4627cb01, 0x37beb356, 0xc401002a, 0x44963027, + 0xf39bcd05, 0x38abc50e, 0xd4cec401, 0x27fa8ee4, 0xff4ea730, 0x43d5feff, + 0xfe0b0138, 0x07124f9b, 0x33348724, 0xf1232b25, 0x01001421, 0x103f9bff, + 0x310b4103, 0x45331487, 0x001423f5, 0x412bff01, 0x4fff3ea7, 0xf13311fd, + 0x01000044, 0x2b1207ff, 0x2023f534, 0x23ff0100, 0xfefff41e, 0xff682e23, + 0x014727fe, 0x05140313, 0xa8240323, 0xa7fe0bf4, 0xfd4fff4e, 0xffff3ea7, + 0x914181fe, 0x2832d144, 0x3030d101, 0x33133301, 0x1b211b43, 0x3034d504, + 0x2432d501, 0x2831d501, 0x2c30d501, 0x0bfe0b01, 0x93fe0bfe, 0x034c83f4, + 0xfe0b4075, 0x45334007, 0x402b0087, 0x000c41f5, 0x41f5ff01, 0x00047228, + 0x4007fe0b, 0x00874533, 0x41f5402b, 0xff010010, 0x722c41f5, 0xfe0b0004, + 0x05334087, 0x0e23042b, 0x0bfeff68, 0x27fc4efe, 0x2c078ccc, 0xfff31ea7, + 0x0df093fe, 0x4cbe034b, 0x2c07fff1, 0xff671ea7, 0x89f093fe, 0x3cbe034b, + 0xf093fff1, 0xa7034c0c, 0xfefedb1e, 0x0e102c27, 0xf1299efc, 0x93fe4eff, + 0x034adbf4, 0x4ff64419, 0xf49300a2, 0x07034ad4, 0x8b2c0324, 0x2ce33407, + 0x7f3ce37f, 0x3c033419, 0xf932c280, 0x4abaf393, 0x27202703, 0x3205234c, + 0xf4c83403, 0x4b36f493, 0x03240703, 0x34078b2c, 0xe37f2ce3, 0x34197f3c, + 0xc2803c03, 0x3c27f932, 0x19f29323, 0x1027034b, 0x21054307, 0x24033123, + 0xf493f4b8, 0x35034b94, 0x15430543, 0x27432543, 0x95f39320, 0x4a27034b, + 0x34033205, 0x3027f4c8, 0x40272527, 0x72b834f5, 0x34f50004, 0x00047228, + 0x722c34f5, 0x34f50004, 0x000472b4, 0x001c3c03, 0x933127f2, 0x034a37f4, + 0xf193431d, 0x27034ac0, 0x0ea78c2c, 0xbefeff67, 0x93fff06b, 0x034a23f1, + 0xa78c2c27, 0xfefff30e, 0xfff05abe, 0x4b2af193, 0x102c2703, 0xfedb0ea7, + 0xf049befe, 0x5efe0eff, 0x4ea7fe6f, 0x11fd4fff, 0xff4ea743, 0x43d5feff, + 0xfe0b0134, 0xffff3ea7, 0xff4ea7fe, 0x4111fd4f, 0x013834d1, 0x013432d1, + 0x422b410b, 0x013834d5, 0x4f9bfe0b, 0x33340712, 0x2b448735, 0xff4ea734, + 0x4211fd4f, 0x002434f1, 0x422bff01, 0x002434f5, 0xfe0bff01, 0x07124f9b, + 0x87253324, 0xa7242b44, 0xfd4fff4e, 0x23f14411, 0xff010024, 0x24f5430b, + 0xff010024, 0xf293fe0b, 0xa7034ab0, 0xfeff673e, 0x31014727, 0x21053403, + 0xf4a82403, 0xffff4ea7, 0x3844d1fe, 0x91f39301, 0x3495034a, 0x32014a27, + 0x02053403, 0xf4a80403, 0x3ea7fe0b, 0x9dffffff, 0x41270d30, 0x063a34bd, + 0x270f3399, 0x0ef49b40, 0x33874127, 0xb04034f5, 0xff1eff02, 0xc007fc4e, + 0x00275dbe, 0x4fff1ea7, 0x01c319fd, 0x3b412712, 0x1d34eb42, 0x9b4027c3, + 0x14c50ef4, 0x4efc8e38, 0x07c007fb, 0x270ebeb1, 0x27c21900, 0x1d2bab40, + 0xe6c43dc2, 0x9b402705, 0x3ea70ef4, 0xc5fd4fff, 0x40273834, 0xa70ef49b, + 0xffffff4e, 0xa70e4399, 0xfd4fbf1e, 0x3138328b, 0x14054127, 0x14033153, + 0xfb8e32d6, 0x990d0499, 0x23070c03, 0x340744c6, 0x0399041e, 0x2343070e, + 0x99400b41, 0x00990444, 0x1b45960e, 0x07302832, 0x0bfe0b03, 0x4efe0b03, + 0x07b027fb, 0x0c0b9dc0, 0x070ec19d, 0x0d0b9d21, 0x04031027, 0xffeefdbe, + 0xcb3dcb1d, 0xc203cb5d, 0xfb8ecb3d, 0xd007fc4e, 0x07fbcc27, 0x81a3be0d, + 0x07004c00, 0x1ef4e84c, 0x4efc8ef3, 0x27d007fc, 0x0d07fbcc, 0x00818cbe, + 0x4c07004c, 0xf31ef4e8, 0x1f6bfc8e, 0xf0931536, 0x0b006167, 0xf14087fe, + 0x01993c40, 0x34048600, 0x28f09314, 0xfe0b0070, 0x400b4187, 0x01104c23, + 0x4efe0b40, 0x4cf093fd, 0x45be0061, 0xdea7fff7, 0x07fddd83, 0x001e031d, + 0xd301fde0, 0xd4032107, 0x6152f093, 0xbe125300, 0xc4fff728, 0x0222a0df, + 0xfd8ee2ff, 0x0087f74e, 0x99580af1, 0x0bf10001, 0x0001993c, 0xf093c107, + 0x07006144, 0x2772071a, 0xf6febe80, 0x1e9027ff, 0x03cd011c, 0x66c40391, + 0x93b201d6, 0x006137f0, 0x3d071a07, 0xfff6e3be, 0xb4038d0b, 0x07e397ce, + 0x9328071a, 0x00612ef0, 0xcd9ef70e, 0xfa4efff6, 0x23082a99, 0x87d207f1, + 0xf1ac8631, 0x01993c33, 0x34348600, 0x7cf393a4, 0x0a1e006f, 0x430b4a87, + 0x01104c23, 0x09de9943, 0xdb69dc49, 0xfe054187, 0xfb25fc15, 0x995842f1, + 0xdd010001, 0x4a071007, 0x60fcf093, 0xbefd3500, 0x1efff680, 0x09249922, + 0xde492c69, 0x995832f1, 0x10070001, 0x6151f393, 0x17f09300, 0xfe050061, + 0x5dbefc15, 0xf103fff6, 0xfc4efa8e, 0xffffcea7, 0x93c101f7, 0x006142f0, + 0xfff647be, 0xf093c121, 0xbe006155, 0xc1fff63c, 0xf09348c1, 0xbe006167, + 0xc1fff630, 0xf09344c1, 0xbe006179, 0xa7fff624, 0xefffffce, 0xf093c181, + 0xbe006187, 0xa1fff614, 0x9af093c1, 0x09be0061, 0xcea7fff6, 0x21ebffff, + 0xa8f093c1, 0xf9be0061, 0xc1c1fff5, 0xbaf09364, 0xcea70061, 0xbee7ffff, + 0x01fff5e8, 0xc8f093c1, 0xddbe0061, 0xc1c1fff5, 0xdaf09350, 0xd1be0061, + 0xc121fff5, 0x61edf093, 0xf5c6be00, 0x54c1c1ff, 0x61fff093, 0xf5babe00, + 0x58c1c1ff, 0x6211f093, 0xf5aebe00, 0x5cc1c1ff, 0x6223f093, 0xf5a2be00, + 0xffcea7ff, 0xc1d1fbff, 0xf0930628, 0xbe00622f, 0xd1fff590, 0x930130c1, + 0x006249f0, 0xfff583be, 0x0208c1d1, 0x6263f093, 0xf576be00, 0x20c1d1ff, + 0x7df09304, 0x69be0062, 0xc1d1fff5, 0xf0930468, 0xa7006297, 0xfeffffce, + 0xfff557be, 0x0148c1d1, 0x0148c2d1, 0x62a8f093, 0x03228700, 0x01992c2f, + 0xf53ebe00, 0x40c1b9ff, 0xb4f09301, 0x31be0062, 0xc199fff5, 0xc4f09309, + 0x25be0062, 0xc1b9fff5, 0xf0931ffd, 0xbe0062d3, 0xd1fff518, 0x931de4c1, + 0x0062e2f0, 0xfff50bbe, 0x1de8c1d1, 0x62f1f093, 0xf4febe00, 0xecc1d1ff, + 0x00f0931d, 0xf1be0063, 0xc1a9fff4, 0xf0930144, 0xbe00630f, 0xa9fff4e4, + 0x930142c1, 0x00632af0, 0xfff4d7be, 0xefff4ea7, 0x0041d1fd, 0x3bf0930f, + 0xc5be0063, 0x18befff4, 0x707e0003, 0xff4ea7fd, 0x4c01fd4f, 0x1c074211, + 0x633ef093, 0xf4aabe00, 0x270c07ff, 0x4f2ea710, 0xd37efee0, 0x270c07fd, + 0x432ea711, 0xc77efee0, 0x270c07fd, 0x372ea713, 0xbb7efee0, 0x270c07fd, + 0x1f2ea714, 0xaf7efee0, 0x270c07fd, 0x132ea715, 0xfc0efee0, 0x4efda15e, + 0xffcea7fa, 0xc1c1fd4f, 0x93f1236c, 0x006319f0, 0xfff457be, 0x000b3abe, + 0xf0931007, 0xbe006331, 0xa7fff448, 0xffffffde, 0x9311d199, 0x006347f0, + 0xfff437be, 0xc211cb01, 0xf0931b07, 0xbe00635f, 0x07fff428, 0xa716270b, + 0xfff2f72e, 0xa7fd517e, 0xfffffb0e, 0x4ea70a19, 0x03fffffe, 0x19421901, + 0x0341030b, 0x19431901, 0x0341030c, 0x190e1901, 0x93d11944, 0x006354f0, + 0xfa05fe35, 0xfc25fb15, 0xfff3e7be, 0x930fd199, 0x006383f0, 0xfff3dbbe, + 0x9310d199, 0x00639ef0, 0xfff3cfbe, 0x0638d2d1, 0x063cd3d1, 0x0634d1d1, + 0x63b0f093, 0xf3babe00, 0x20d1d1ff, 0xd6f09306, 0xadbe0063, 0xd1d1fff3, + 0xf0930628, 0xbe0063f0, 0xd1fff3a0, 0x93062cd1, 0x00640af0, 0xfff393be, + 0x9327d199, 0x006425f0, 0xfff387be, 0x9326d199, 0x006440f0, 0xfff37bbe, + 0x0a04d1d1, 0x645af093, 0xf36ebe00, 0x02d1a9ff, 0x74f09301, 0x1c830064, + 0xf35ebe0f, 0x08d1b9ff, 0x8bf09301, 0x51be0064, 0xd1b9fff3, 0xf0930109, + 0xbe0064a5, 0xa9fff344, 0x93010ad1, 0x0064bff0, 0xfff337be, 0x64ddf093, + 0xf32ebe00, 0x0cd199ff, 0x64e2f093, 0xf322be00, 0x2ad199ff, 0x64fdf093, + 0xf316be00, 0x12d199ff, 0x6518f093, 0xf30abe00, 0x44d199ff, 0x6533f093, + 0xf2febe00, 0x3cd1c1ff, 0x654ef093, 0xf2f2be00, 0x40d1c1ff, 0x6569f093, + 0xf2e6be00, 0x24d1d1ff, 0x83f09306, 0xd9be0065, 0xf093fff2, 0xbe0065a1, + 0xa7fff2d0, 0xfffb430e, 0xfffad3be, 0xf0931007, 0xbe0065a1, 0xa7fff2bc, + 0xfffaf30e, 0xfffabfbe, 0xf0931007, 0xbe0065bc, 0xa7fff2a8, 0xfeffff4e, + 0x93094c99, 0x0065daf0, 0xbc07c383, 0xb4334c87, 0xb1f9b42b, 0xff000050, + 0xffb8be23, 0xf282beff, 0x39b403ff, 0xe0f093b1, 0x75be0065, 0xb159fff2, + 0x65fdf093, 0xf26abe00, 0x87c103ff, 0x2bc4334c, 0x48c1f1c4, 0x93ff0000, + 0x00660ef0, 0xfff253be, 0x662df093, 0xf24abe00, 0x28d1b9ff, 0x2ad2b90a, + 0x2bd3b90a, 0x30f0930a, 0x35be0066, 0xba39fff2, 0xa827a910, 0x6650f093, + 0xf226be00, 0x2ad4b9ff, 0x2bd3b90a, 0x1e432b0a, 0x931c0746, 0x00664df0, + 0xbe0f1c83, 0xb9fff20c, 0x930a28d4, 0x006649f0, 0x4c0e1127, 0xf9be1027, + 0xb027fff1, 0xb4f9131e, 0xff000a18, 0xb1032127, 0x20274c0e, 0xfff1e3be, + 0xf0931b07, 0xce00662d, 0x4c07e5ba, 0xc4074103, 0x0a2ad4b9, 0xc4cecf6b, + 0x1ec027b1, 0x18c2f90d, 0x03ff000a, 0xf1babec1, 0x931c07ff, 0x006611f0, + 0x03ebcace, 0x4efa8ef1, 0x93f4e3f6, 0x0069c7f0, 0xfff19fbe, 0xd0277127, + 0x44f14d87, 0xff021000, 0xf4953787, 0x100034f1, 0xf4a5ff02, 0x4c3cf491, + 0x1e40a7e0, 0x334d070b, 0x0c44f144, 0xb5ff0218, 0x3cf4a1f4, 0x40a7e04c, + 0x47070b1e, 0x44f14433, 0xff02180c, 0x3030f4c5, 0x402738dc, 0x4d87091e, + 0x160044f1, 0xf4c5ff02, 0x387c3034, 0x091e4027, 0x44f14787, 0xff021600, + 0x2738f4c5, 0x3cf4c540, 0xc540f4c5, 0xf4c544f4, 0x33f4b148, 0x1f4c5345, + 0xc13cf4c5, 0x453330f4, 0xc51f4c53, 0xf4b140f4, 0x4c534833, 0x44f4c518, + 0x3330f4c1, 0x184c5348, 0x9148f4c5, 0xb1f3a1f2, 0x004f38f4, 0xa7200000, + 0x070b1e10, 0xf144334d, 0x02180441, 0x30f4c1ff, 0x00004f38, 0x60a72000, + 0x47070b1e, 0x46f14433, 0xff021804, 0x073cfec1, 0x40fcc141, 0xfbc11d07, + 0x48fac144, 0xc134f9c1, 0xfd5538f8, 0xd2031153, 0x6921f093, 0x05f77500, + 0x25fe15f6, 0x45fb35fc, 0x85f965fa, 0xbe7203f8, 0xe4fff098, 0xfefa50dc, + 0x694af093, 0xf08abe00, 0xa7c027ff, 0xffe3ffbe, 0x1c072c07, 0xf0932703, + 0xbe006944, 0x070002cc, 0x48f0931b, 0x28270069, 0x41273827, 0x96bec803, + 0xbc030000, 0x20ccc420, 0x8ef4c3d8, 0x9bfd4ef6, 0x4d8712df, 0x9aec4ef1, + 0x43f10001, 0x00047400, 0x07801c27, 0x0b132b2e, 0x03041923, 0x03241d01, + 0x98448621, 0x232e2bf1, 0x87420721, 0xf54f6b3d, 0x04740034, 0x23fd8e00, + 0x15f105f1, 0x35f325f2, 0x63fe4ef4, 0x072f07f0, 0x27280310, 0x0501070d, + 0xe2f4bef2, 0x0ef043fe, 0x0bf103fe, 0x124f9bfe, 0x24074487, 0x74002f03, + 0x41f10004, 0x00019aec, 0x30272401, 0x431d410b, 0xf0934027, 0x0500589d, + 0xefce9e24, 0xa3f54eff, 0x07f005f0, 0x07f31591, 0x124f9ba4, 0x34074487, + 0x74003f03, 0x45f10004, 0x00019aec, 0x72873601, 0x231e8307, 0xc103b301, + 0xffe946be, 0xb403d00b, 0x0507f411, 0x1c270d0b, 0xcef2010c, 0x8d05e7c4, + 0x923e970b, 0xa546a123, 0xd607b907, 0xe11ec027, 0xf58ef083, 0x87124f9b, + 0x584f0344, 0x01000442, 0x35014543, 0x0b400503, 0x63fa4efe, 0x121f9bf0, + 0x4df14187, 0x00044258, 0x682ef093, 0xef4abe00, 0x012e1eff, 0x07da11db, + 0xbe0a071b, 0x41001d25, 0x07de21dc, 0x071c0740, 0x933a072b, 0x006855f0, + 0x25befe05, 0x4027ffef, 0xd405d425, 0xdd31d415, 0x4fd6d431, 0x8ef043cf, + 0x07fc4efa, 0x9b4307e1, 0xf39312cf, 0xf90068b4, 0x011fa8cd, 0x1721c8ff, + 0x10073201, 0x3e072d2b, 0xf093d103, 0x7e006836, 0xdf6bfecf, 0x3201151e, + 0xdf6bd123, 0x2d2b1007, 0xf0933e07, 0x7e00682f, 0xcdfdfeb7, 0xff011fa8, + 0xfc4efc8e, 0x4307e107, 0x9312cf9b, 0x00686bf3, 0x1fa8cdf9, 0x21c8ff01, + 0x07320118, 0x072d2b10, 0x93d1033e, 0x00680cf0, 0xffee9fbe, 0x161edf6b, + 0xd1233201, 0x1007df6b, 0x3e072d2b, 0x67e5f093, 0xee86be00, 0xa8cdfdff, + 0x8eff011f, 0x05f0e3fc, 0x25f315f2, 0x63fa4ef4, 0x07a007f0, 0x12cf9b21, + 0x4bf14c87, 0x00019aec, 0x3c033f07, 0x7f1c2718, 0xf3050b07, 0xffe5f7be, + 0x67fef493, 0xa8c3f900, 0x01ff011f, 0x2b1a0742, 0xb0f09323, 0x3b070067, + 0x43fe1e7e, 0xc3fa0ef0, 0xe3fe0bf0, 0x15f205f0, 0x4ef425f3, 0x07f063fa, + 0x9b2107a0, 0x4c8712cf, 0x9aec4bf1, 0x3f070001, 0x27183c03, 0x0b077f1c, + 0xa9bef305, 0xf493ffe5, 0xf90067b0, 0x011fa8c3, 0x074201ff, 0x93232b1a, + 0x006762f0, 0xe9be3b07, 0xf043ffed, 0xf0c3fa0e, 0x4f9bfe0b, 0x07448712, + 0x002f0324, 0xf1000474, 0x019aec41, 0x27240100, 0x1d410b30, 0x93402743, + 0x005688f0, 0xa05e2405, 0x124f9bfd, 0x44873027, 0x740043f5, 0xfe0b0004, + 0xf105f123, 0xf325f215, 0xfa4ef435, 0x2007f063, 0x87124f9b, 0xf1b40744, + 0x019aec4a, 0x00bf0300, 0x01000474, 0x070a07bc, 0x7f1c273f, 0x3c031c2b, + 0x050c0b18, 0xe516bef3, 0x43c00bff, 0x050a07f0, 0x03fa0ebc, 0x07fe0bf1, + 0xd7f09310, 0xb11e0066, 0xf0931007, 0x1e0066d5, 0x124f9ba8, 0x24074487, + 0x74002f03, 0x23010004, 0x9aec44f1, 0x430b0001, 0x2401401d, 0x24054103, + 0xfc4efe0b, 0x2f9b3007, 0xd5f49312, 0x41010066, 0x24f9c287, 0xff011fa8, + 0x9aecc0f1, 0x411b0001, 0x6683f293, 0x7f1c2700, 0xffe6aebe, 0x7400c0f5, + 0xfc8e0004, 0x3007fa4e, 0x2f9ba107, 0xa1f49312, 0x41010066, 0x24f9c287, + 0xff011fa8, 0x9aecc0f1, 0x411b0001, 0x664ff293, 0x7f1c2700, 0xffe67abe, + 0xcf03b007, 0x00047400, 0xcb050a07, 0x7efc707e, 0xcb05fccd, 0x4f9bfa8e, + 0x07448712, 0x002f0324, 0x01000474, 0xec44f123, 0x0b00019a, 0x203c2743, + 0x2401431d, 0x24054103, 0xfd4efe0b, 0x3107d007, 0x87124f9b, 0x0042f144, + 0x07000474, 0x07322b04, 0x033103e4, 0x019aec0f, 0xd6120a00, 0x1e312715, + 0x0b040109, 0x034d1d42, 0xf5f3a821, 0x047400e2, 0x4efd8e00, 0x07b007f8, + 0x9b8207d1, 0x4487124f, 0xa4079407, 0x9aec9f03, 0xaf030001, 0x00047400, + 0xac01171e, 0x9401b319, 0x3f4b0c07, 0xd8be040b, 0xc00bffe5, 0xb103ac05, + 0x1727d123, 0xdfc42807, 0xffffffff, 0x4ef88ede, 0x07b007f8, 0x9b8207d1, + 0x4487124f, 0xa4079407, 0x9aec9f03, 0xaf030001, 0x00047400, 0xac01151e, + 0xb3199401, 0x040b0c07, 0xffe596be, 0xac05c00b, 0xd123b103, 0x28071727, + 0xffffdfc4, 0x8ee0ffff, 0x07f94ef8, 0x9bd107b0, 0x4487124f, 0xa4079407, + 0x9aec9f03, 0xaf030001, 0x00047400, 0xac01171e, 0x9401b309, 0x3f8b0c07, + 0x54be040b, 0xc00bffe5, 0xb203ac05, 0x1627d123, 0x6522f293, 0xffdfc400, + 0xdbffffff, 0xf94ef98e, 0xd107b007, 0x87124f9b, 0x07940744, 0xec9f03a4, + 0x0300019a, 0x047400af, 0x01151e00, 0x099401ac, 0x0b0c07b3, 0xe511be04, + 0x05c00bff, 0x23b203ac, 0x931527d1, 0x0064e4f2, 0xffffdfc4, 0x8eddffff, + 0x07f94ef9, 0x9bd107b0, 0x4487124f, 0xa4079407, 0x9aec9f03, 0xaf030001, + 0x00047400, 0xac01151e, 0xb3019401, 0x040b0c07, 0xffe4cebe, 0xac05c00b, + 0xd123b403, 0x930c1c27, 0x00649bf2, 0xffffdfc4, 0x8edcffff, 0x07f94ef9, + 0x9bd107b0, 0x4487124f, 0xa4079407, 0x9aec9f03, 0xaf030001, 0x00047400, + 0xac01151e, 0xb3019401, 0x040b0c07, 0xffe48abe, 0xac05c00b, 0xd123b403, + 0xf2931a27, 0xc4006463, 0xffffffdf, 0xf98eddff, 0x9007f64e, 0xb207c107, + 0x87124f9b, 0x03340744, 0x0474003f, 0xec46f100, 0x0100019a, 0x1e830737, + 0x07cb0230, 0x27d707cb, 0x190b1ea0, 0xbea10343, 0x0bffe43f, 0x074907d0, + 0x0b4a0b06, 0x9314270d, 0x00641cf2, 0x05e5cace, 0x2b9c0b8d, 0xfa877ebc, + 0x8ecfbfd6, 0x07f64ef6, 0x07b10780, 0x124f9ba2, 0x34074487, 0x74003f03, + 0x46f10004, 0x00019aec, 0x73073c01, 0xba02321e, 0xd807ba07, 0x0d1e9027, + 0x9103d309, 0xffe3eabe, 0xd203c00b, 0x0c0b0607, 0xf2931627, 0xce0063bd, + 0x4b47e7b9, 0x840b7c05, 0x327eab2b, 0xd6c027fa, 0xf68ecdaf, 0x8007f64e, + 0xa207b107, 0x87124f9b, 0x03340744, 0x0474003f, 0xec46f100, 0x0100019a, + 0x1e73073c, 0x07ba0232, 0x27d807ba, 0x010d1e90, 0xbe9103d3, 0x0bffe393, + 0x07d403c0, 0x270c0b06, 0x6cf2931a, 0xb9ce0063, 0x054b87e7, 0x2b840b7c, + 0xf9db7eab, 0xafd6c027, 0x4ef68ecd, 0x05f063f5, 0x07a107f0, 0x07630752, + 0x124f9bb4, 0x34074487, 0x74003f03, 0x47f10004, 0x00019aec, 0x93073801, + 0x4319231e, 0x40bed103, 0xc00bffe3, 0x07074a07, 0x0c0b4d0b, 0xf2011827, + 0x05e8d6ce, 0x7ea50b9c, 0xb123f98d, 0xc807b506, 0xe11ed027, 0xf58ef043, + 0xf0a3f54e, 0x9107f005, 0xa407f315, 0x87124f9b, 0x03340744, 0x0474003f, + 0xec45f100, 0x0100019a, 0x07724736, 0x09231e83, 0xbec103b3, 0x0bffe2eb, + 0x11b203d0, 0x0b0507f4, 0x0118270d, 0xe8c4cef2, 0x970b8d05, 0x23f9387e, + 0x07a546a1, 0x27d607b9, 0x83e11ec0, 0x27f58ef0, 0x4304d10f, 0x01fe0b2c, + 0x1342d004, 0x32b01301, 0x204944c0, 0xc042a434, 0x14113c32, 0x112745c6, + 0xfe0b0107, 0x04113284, 0x10a742c6, 0xfe0b0107, 0x14110311, 0x3106344e, + 0xf11e10a7, 0x14210221, 0x7af442da, 0x31043124, 0xeb04ca10, 0x3fd60442, + 0x1e10a7ce, 0x071027d8, 0xc4fe0b01, 0x1111c934, 0x142b0411, 0xfb4ebb1e, + 0x32d00301, 0xd014012f, 0x34e02842, 0x44c000fb, 0x2242c421, 0x051d32c4, + 0x15041123, 0x25042124, 0x35043124, 0x11031124, 0x8b020714, 0x8e241543, + 0x8e0107fb, 0xfa32c0fb, 0x14210c21, 0xe42bec07, 0x13310b31, 0xe0c8de07, + 0x20ecc867, 0x8c4cfa4c, 0x27c40700, 0x110011b0, 0x7404ce14, 0x3b2b0f66, + 0x277e30c8, 0x25241540, 0x3123352c, 0x23410721, 0xff4fd441, 0x163fffff, + 0x11472321, 0x41073123, 0x23252135, 0x4fd04123, 0x3fffffff, 0x054327ee, + 0x2810c824, 0xfb8e0207, 0x2752d1c8, 0x234e3b41, 0x27438b41, 0x274486d0, + 0xab3e5bd1, 0x13a71e3d, 0x20eccce0, 0x1be21e99, 0x21a61e3b, 0x53310724, + 0xab118331, 0x07410313, 0x25213502, 0x07fb8e24, 0x15130b1b, 0x352c2520, + 0x27b31e21, 0xff775e30, 0x41273013, 0x2c252415, 0x801e2335, 0xff67dfe6, + 0x4e3b4127, 0x4b8b4123, 0xd027ce0b, 0xd1274486, 0xbdabbe5b, 0xe4ff505e, + 0x11ff2a44, 0xee041113, 0x93ff2234, 0x00615ff0, 0x0001fb8e, 0x40073007, + 0x53173c53, 0x20071f4c, 0x3f6b1415, 0xffff2e83, 0xc639d67f, 0xa7432728, + 0x14057d3c, 0x13254207, 0x4f744733, 0x40000000, 0x31234447, 0x00004fd0, + 0x25f64000, 0x0b143513, 0x054227fe, 0xc0fe0b14, 0x3316ff3c, 0x7f3c2327, + 0x00002fa3, 0x43274000, 0x13251235, 0xfe0b1405, 0x44272516, 0xfe0b1405, + 0x00000e83, 0x27054610, 0x35140541, 0x05fe0b12, 0x4ef91e10, 0x07f163f5, + 0x03f0051f, 0x7e0f0714, 0xf341ff7a, 0x23074027, 0xf0112253, 0xf12142ab, + 0x3c33f231, 0x0c79be1e, 0x43510700, 0x4ef58ef1, 0x07f2a3fb, 0x05b803bf, + 0x07f115f0, 0x7e1b070f, 0xcf07ff4a, 0x0718cc03, 0x0704030f, 0xff3c7e1c, + 0x1c070b07, 0x83fdba7e, 0x01fb8ef2, 0x11033104, 0x6442d002, 0x005744c0, + 0x2735f642, 0xab002740, 0x1f2c3304, 0xfe0b02ab, 0x0fc80021, 0xffffff82, + 0x800ccc5b, 0x83430739, 0x0c037f4c, 0x404cc07f, 0x3f3c031e, 0x072130c8, + 0x6b475343, 0xff4e830f, 0x0c337fff, 0x3304ab17, 0x02ab1f2c, 0x3cd8fe0b, + 0x3c03e380, 0x53de1e40, 0x1e010331, 0x274027db, 0x8000000f, 0x07a91e7f, + 0x004ea343, 0x4e831000, 0x277fffff, 0x8000000f, 0x13951e7f, 0xffff820f, + 0x1a0cccff, 0x3b412753, 0x8b412340, 0x86102743, 0x5b112744, 0xab030730, + 0x83400701, 0x4cc07f4c, 0x40073c40, 0x073f4c03, 0x27375334, 0x004fd001, + 0x20400000, 0x4e834307, 0x337fffff, 0x505e170c, 0x034007ff, 0x3407404c, + 0x01273753, 0x00004fd4, 0x27e24000, 0x27de1e00, 0x1e302700, 0x800cdcd8, + 0x533007e1, 0x14412737, 0x0000000f, 0x07402740, 0x4ec21e04, 0x05f123fe, + 0x150f07f0, 0x35f225f1, 0xfef97ef3, 0xfe8ef103, 0xf163fd4e, 0xd403df07, + 0x1d07f005, 0x137e0f07, 0x27f421fe, 0x27449630, 0x250d0731, 0xfed57ef3, + 0xfd8ef143, 0xf2a3fc4e, 0xc803cf07, 0xf115f005, 0x1c070f07, 0x07fded7e, + 0x18dc03df, 0x04030f07, 0xdf7e1d07, 0xd0f221fd, 0xf1611622, 0x008112f0, + 0xf371f431, 0xf43543cb, 0x22c42400, 0x07126e18, 0xfe917e0c, 0xfc8ef283, + 0x5f12f093, 0xfe857e00, 0xfc8ef283, 0xc05d14c0, 0xf2413912, 0xf351f481, + 0xf191242b, 0x1342f245, 0xf2452123, 0x2f273347, 0x40000000, 0x4c270027, + 0xab312a1f, 0x53312b02, 0x98334721, 0x834007f4, 0x4cc07f4c, 0xf0551240, + 0x4427ae1e, 0xf4250c07, 0x83fe3a7e, 0xdcfc8ef2, 0x66ec800c, 0x400c0331, + 0x557f0ce3, 0x07911ef0, 0x278f1e0d, 0x450c0740, 0x1ef455f4, 0xa3fc4e85, + 0x03cf07f3, 0x15f005c8, 0x070f07f1, 0xfd347e1c, 0xdc03df07, 0x030f0718, + 0x7e1d0704, 0xf421fd26, 0xf3614290, 0xe02432d0, 0xe000dc44, 0xc400cc34, + 0xf3311642, 0x2027f471, 0x2127340e, 0xf2350c07, 0x83fdd27e, 0xc4fc8ef3, + 0xf3311632, 0x2027f471, 0x2127340e, 0xf2750d07, 0x83fdba7e, 0x51fc8ef3, + 0x27f091f2, 0xbe102730, 0x8100129f, 0x07f441f3, 0x03430bd1, 0xc5302742, + 0xf3b530f4, 0xf331f471, 0x342e2107, 0xf4b54127, 0x20cc3d07, 0x30f4c11a, + 0x41032153, 0x01533138, 0x00000fa3, 0x32078000, 0xc5ee20c8, 0x2fd430f4, + 0x40000000, 0x30f4c123, 0x0047091e, 0x00002fb4, 0x22474000, 0x00cc4123, + 0x4721a3f2, 0x002fd000, 0xef400000, 0x0730f4c5, 0x7f4c8342, 0x14404cc0, + 0x43270f07, 0xc5280c03, 0xf4a534f2, 0x83fd2e7e, 0xdcfc8ef3, 0x26ea802c, + 0x402c0301, 0x1e7f2ce3, 0x4f42e4e0, 0x9df093ff, 0x3d5e005d, 0x2b32e4ff, + 0x91f093ff, 0x315e005d, 0xa3fb4eff, 0x03bf07f3, 0x15f005b8, 0x070f07f1, + 0xfc207e1b, 0xcc03cf07, 0x030f0718, 0x7e1c0704, 0xf471fc12, 0x41c32f07, + 0x2c031c07, 0x750b0728, 0xfae47ef4, 0x83fcce7e, 0x4efb8ef3, 0x07f3a3fb, + 0x05b803bf, 0x07f115f0, 0x7e1b070f, 0xcf07fbe6, 0x0718cc03, 0x0704030f, + 0xfbd87e1c, 0x1c072f07, 0x07282c03, 0xfab07e0b, 0x83fc9a7e, 0x4efb8ef3, + 0x27f123fc, 0x27f40543, 0x270008c1, 0x270636c0, 0x07f40542, 0x7efc150f, + 0xf103fc7b, 0xc876fc8e, 0x4c27d007, 0x250d071e, 0xbefd35f4, 0x230011b3, + 0xe001c801, 0x3b1e4c27, 0x35402bd0, 0x1ef425fd, 0x000f40d3, 0x07800000, + 0x1ed013d0, 0x000f27d6, 0x1ecf0000, 0xa3fc4ec6, 0x03cf07f2, 0x15f005c8, + 0x070f07f1, 0xfb5c7e1c, 0xdc03df07, 0x030f0718, 0x7e1d0704, 0xf421fb4e, + 0x611042d0, 0x074290f4, 0x7e1d070c, 0xf283f9c3, 0x0127fc8e, 0xfe4ef91e, + 0x1f07f163, 0x1403f005, 0x277e0f07, 0x44f411fb, 0x43002742, 0xd0fe8ef1, + 0x4440f842, 0x40c8f431, 0x1f4c88f1, 0x47c6f421, 0x00000f27, 0xf1438000, + 0xf041fe8e, 0x4c13f321, 0xc6045b1e, 0x0013d63f, 0xfe8ef143, 0xffff0f27, + 0xf1437fff, 0xfe4efe8e, 0xf115f2a3, 0xf0051f07, 0x0f071803, 0x07fad57e, + 0x031f070f, 0x181c0304, 0x21fac97e, 0x614290f4, 0x300027f4, 0x8ef28342, + 0x830127fe, 0x4efe8ef2, 0x07f2a3fc, 0x05c803cf, 0x07f115f0, 0x7e1c070f, + 0xdf07faa2, 0x0718dc03, 0x0704030f, 0xfa947e1d, 0x42d0f421, 0x90f46110, + 0x070c0742, 0xf9097e1d, 0xfc8ef283, 0xf91e0127, 0xf2a3fc4e, 0xc803cf07, + 0xf115f005, 0x1c070f07, 0x07fa697e, 0x18dc03df, 0x04030f07, 0x5b7e1d07, + 0xd0f421fa, 0xf4611042, 0x0c074290, 0xd07e1d07, 0x8ef283f8, 0x1e0127fc, + 0xa3fc4ef9, 0x03cf07f2, 0x15f005c8, 0x070f07f1, 0xfa307e1c, 0xdc03df07, + 0x030f0718, 0x7e1d0704, 0xf421fa22, 0x611042d0, 0x074290f4, 0x7e1d070c, + 0xf283f897, 0x00a7fc8e, 0xfc4ef91e, 0xcf07f2a3, 0xf005c803, 0x0f07f115, + 0xf77e1c07, 0x03df07f9, 0x0f0718dc, 0x1d070403, 0x21f9e97e, 0x1042d0f4, + 0x4290f461, 0x1d070c07, 0x83f85e7e, 0xa7fc8ef2, 0x4ef91e00, 0x07f2a3fc, + 0x05c803cf, 0x07f115f0, 0x7e1c070f, 0xdf07f9be, 0x0718dc03, 0x0704030f, + 0xf9b07e1d, 0x42d0f421, 0x90f46110, 0x070c0742, 0xf8257e1d, 0xfc8ef283, + 0xf91e0127, 0xf123fd4e, 0x0676d007, 0xf4054227, 0x40270f07, 0x547ef415, + 0x8ef103fa, 0x274327fd, 0xf4051e3c, 0xf035f325, 0x000f8ebe, 0x00c80123, + 0xdd0fc61c, 0x2b1e4c27, 0x25d03b40, 0x270f07f4, 0x15fd3540, 0xfa257ef4, + 0xfd8ef103, 0x20132007, 0x423b4127, 0x4d8b4123, 0x46363027, 0x4c27d25b, + 0x2b3dab1e, 0x25f33540, 0x27a61ef4, 0x4eee1e31, 0xd00401fd, 0x13011342, + 0x44c032b0, 0xa434205d, 0x4832c042, 0x45c61411, 0x01071127, 0x3284fd8e, + 0x42c60411, 0x010710a7, 0x0311fd8e, 0x344e1411, 0x10a73106, 0x0221f11e, + 0x42da1421, 0x1524daf4, 0x0e410d31, 0x11411031, 0xcee61eca, 0xe12a141e, + 0x0d42e16e, 0xa7c23fd6, 0x27cc1e10, 0x8e010710, 0xebd0c2fd, 0x1ecc3fd6, + 0xb534c4b0, 0x04111111, 0xa71e142b, 0xf1a3f54e, 0x60275027, 0xf5350301, + 0xc007f645, 0xb2077107, 0x90278027, 0x012f32d0, 0x7d42f014, 0x4b34e001, + 0x7544e002, 0x2442c401, 0x071b32c4, 0x27400732, 0x03410125, 0x03310544, + 0x11f2a834, 0x077411c3, 0x15438bcb, 0x830c07b4, 0xe0f58ef1, 0x21014b32, + 0x2514210e, 0x310341fe, 0x15ae0702, 0x2bf205f3, 0x411d31a4, 0xe83a071e, + 0xcc00dfa0, 0xe84c40ac, 0x07017c31, 0x203c233a, 0x5027f355, 0x30e86027, + 0x412701dc, 0x133b1407, 0x02072127, 0x30a70a3b, 0x300b40a7, 0x3d8b414b, + 0x34ab4e8b, 0x512734c6, 0xf4516027, 0x01a440e8, 0x845b8e07, 0x9a5b9e07, + 0xe607d507, 0xe9abd8ab, 0xf321111e, 0x010643fa, 0x20271027, 0xf105f425, + 0xc011f215, 0x04ee7411, 0x0fe600db, 0xf30100cc, 0x1d07f411, 0x132b2e07, + 0x20e8246b, 0x402700f2, 0xf421b415, 0xb425b135, 0xbc31b245, 0x30a7bd41, + 0x3c0b40a7, 0x4fd44d4b, 0x10000000, 0xff4fe031, 0xc00fffff, 0x07b12100, + 0x1f4c534c, 0x34ab3d47, 0xb3452c47, 0xbc31b235, 0x1123bd41, 0x40a730a7, + 0x3c0bb125, 0x4fd04d4b, 0x10000000, 0x0543271e, 0x00dfd4b4, 0x2c200000, + 0x0c07cb07, 0xf58ef183, 0xaceca013, 0x5eff6d40, 0x4fc4ff1f, 0x0fffffff, + 0xff3fd0b7, 0xb0ffffff, 0xb4054327, 0x0000dfd0, 0x07d62000, 0x330d073c, + 0x20271f0c, 0x4d073153, 0x1c07be21, 0x415330ab, 0x04ab0207, 0xcb071183, + 0x13abe103, 0xf183b045, 0xb1350c07, 0xf58ebe25, 0x0c07c707, 0xf58ef183, + 0xf211f101, 0x2e6b1d2b, 0x01ff395e, 0x15f211f1, 0x4b1d0bb0, 0x21d2072e, + 0x25c107f2, 0x45bc35b2, 0xff735ebd, 0xe027d027, 0xf4ff015e, 0xffffff3f, + 0x5eff64ff, 0xfd21ff39, 0x40273027, 0x426b312b, 0xb2152127, 0xb335bd25, + 0x075eb445, 0xdb3fe6ff, 0x07f321fe, 0x202c232a, 0xf2553a0b, 0x0027f325, + 0x20e81027, 0x41270091, 0x623b6407, 0x52072127, 0xf2015a3b, 0x40a730a7, + 0x464b350b, 0xf211328b, 0x34ab428b, 0x012734c6, 0xf3511027, 0x115030c8, + 0x35435bf4, 0x31f311f4, 0x073a5bf4, 0xab40ab23, 0x05f34521, 0x5ef215f4, + 0x4c27fe82, 0x074a2b20, 0x3b8d071e, 0xab8a5b14, 0xfe525e81, 0x27203c27, + 0x073a2b41, 0x5e135b14, 0x44e4fe20, 0x1311fdd9, 0x34ee0411, 0xfc93fdd1, + 0x5e0057a4, 0x4c27fdc9, 0x01f21120, 0x3b4a2bf3, 0x073a5b24, 0xab230742, + 0x1ef23524, 0x203c27a1, 0x3a2b4127, 0x635b6407, 0x4eff6b5e, 0x010a11f8, + 0x07ba0709, 0x1fbc533a, 0x83143c53, 0x070307b1, 0x831b15ea, 0x2707ff0d, + 0x078107c0, 0xffee83d9, 0x0e160fff, 0x4eab4907, 0x42274516, 0xf88e1405, + 0x3da74327, 0x140503fd, 0x49071325, 0x4c531e07, 0x07183318, 0x3314ab09, + 0x001fd408, 0x1d100000, 0x2007e307, 0x2c534147, 0x4742ab1f, 0x07030730, + 0xd0e12314, 0x0000004f, 0x8e25e910, 0x81458035, 0x0dc0f88e, 0x072807ff, + 0x534e0729, 0x4833182c, 0x240742ab, 0x00002fa3, 0x39071000, 0x0d233833, + 0x124503ff, 0x10252327, 0x13351205, 0x4907f88e, 0x45164eab, 0x14054427, + 0x4e07f88e, 0x4e833027, 0xab080000, 0x27358634, 0x35140541, 0x8e8e458d, + 0x1e1305f8, 0xe3f54ef7, 0x075107f1, 0x0340071f, 0x050f0718, 0x7ef515f4, + 0xf351ff23, 0x1307f461, 0xffff1f83, 0x20273fff, 0x3c530487, 0xab12ab1e, + 0xa3148630, 0x31f02131, 0xbef241f1, 0xc3fff6d7, 0x4ef58ef1, 0x07f3a3f5, + 0x10ac03af, 0xb007c107, 0x0f071a07, 0xf225f335, 0xfc155307, 0xcf07fb05, + 0x03feda7e, 0x0f0724cc, 0x1c070803, 0x07fece7e, 0x7e1c070a, 0xf383fbab, + 0xf64ef58e, 0x90270401, 0x0d31a027, 0x08110e41, 0x00c942f0, 0x00ba44e0, + 0x4d074240, 0x47f64eab, 0x10270027, 0x31833807, 0x4c334307, 0x0730271f, + 0xabc107b0, 0x07c4abb3, 0x8e1c070b, 0xe80021f6, 0xfffc020f, 0xec00b1ff, + 0x8504000d, 0x6b3d0700, 0x0340273f, 0xc003ff0d, 0x2756803c, 0x40277f3c, + 0xe44bd30b, 0x0000efd0, 0x07162000, 0x073d072e, 0x1f2c334e, 0x32ab3153, + 0xd3074153, 0x0103e407, 0x4e072007, 0x1e070d07, 0x07ff2d83, 0x32071853, + 0x53184c33, 0x0704ab08, 0x143c33e1, 0xd0072027, 0xffffee83, 0x0702070f, + 0xab0dab13, 0xff765e1e, 0x07a94fd6, 0x003d833d, 0xc634ab01, 0x3c27a73f, + 0x0b402780, 0xd0e44bd3, 0x000000ef, 0x9c1eb320, 0x1f270027, 0x7ff00000, + 0x07ff4b5e, 0x004ea34e, 0xe4070800, 0xffffee83, 0x071e070f, 0x001fa30d, + 0x5e7ff000, 0x0f13ff30, 0xfffffc02, 0xba390cec, 0x23100700, 0x6027201c, + 0x10e87027, 0x412700b5, 0xc13bc407, 0xb2072127, 0x30a7b03b, 0x3b0b40a7, + 0x3d8b4c4b, 0x34ab4e8b, 0x612734c6, 0x10e87027, 0x9e07009f, 0xd607915b, + 0xae07d9ab, 0xa05b3d07, 0x3f6be707, 0x4027eaab, 0x44803cc0, 0x277f3c27, + 0x4b3d0b40, 0x3324074e, 0xc127182c, 0x00004f14, 0xc0271000, 0x08530307, + 0x02ab1407, 0x3c071853, 0x07ff3d83, 0xe1074307, 0x27144c33, 0x83d00730, + 0x0fffffee, 0x14070307, 0x1eab0dab, 0xd6fe975e, 0x3d07bb4f, 0x01003d83, + 0x34ab4027, 0x4e073cb6, 0x27184c33, 0x00ef14c1, 0x27100000, 0x530d07c0, + 0xab1e0708, 0x1e185304, 0x27c027b6, 0x1e102700, 0x203c27ae, 0x302b4127, + 0xc35bc407, 0x27ff475e, 0x402b204c, 0x9d073e07, 0x905b343b, 0x575e93ab, + 0x803c27ff, 0x4eff6a5e, 0x05f163f5, 0x150f07f0, 0x35f225f1, 0x7ef445f3, + 0x5107fe0a, 0xf58ef143, 0xf1e3f54e, 0xd803df07, 0x51074007, 0x1d070f07, + 0xf515f405, 0x31fcae7e, 0x963027f4, 0x07312744, 0x7ef3350d, 0x5107fdde, + 0xf58ef1c3, 0xf3e3f54e, 0x1f07c107, 0x1c03b007, 0x250f0710, 0x15f335f2, + 0x7efb05fc, 0xdf07fc7f, 0x0724dc03, 0x0708030f, 0xfc717e1d, 0x22d0f241, + 0xf0f19116, 0x51010912, 0xcbf3a1f4, 0x00f45543, 0x1f22c424, 0x0f0712ae, + 0x7e100c03, 0x5107fd8e, 0xf58ef3c3, 0x53bef093, 0xfd807e00, 0xf3c35107, + 0x14e0f58e, 0x12c000df, 0xb1f1617f, 0x2bfc81f4, 0x34f8c114, 0xfb71f165, + 0xea30f7c1, 0xce0084c8, 0x4c277d8c, 0x2790273d, 0x000000af, 0x27502710, + 0x38f4c560, 0xe607d507, 0xd9ab4a07, 0x4c33eaab, 0xcec88a1f, 0x5d07548c, + 0xb72b6e07, 0x2907c86b, 0x24ab2153, 0x4c534b07, 0xab1c471f, 0x38f4c114, + 0x41233a07, 0x0b473153, 0x0738f4c5, 0x07a30792, 0xd6c107b0, 0x3507bf4f, + 0x40273f6b, 0x38803cc0, 0xf685f575, 0x07ff615e, 0x0344270f, 0xf445100c, + 0x07fce97e, 0x8ef3c351, 0xb3b7caf5, 0x7bc2a91e, 0x472b0782, 0x1f2c534c, + 0x3b4742ab, 0xb3071123, 0xf165c407, 0xd6ff6d5e, 0x3507c74f, 0x01003d83, + 0x3fd634ab, 0xab4007bc, 0xb54fc641, 0x27803c27, 0x4b350b40, 0xe3530746, + 0x6407ff5c, 0x0d07a31e, 0x07ff0a5e, 0x2730270f, 0x03202740, 0xf375100c, + 0xf265f485, 0x4efef65e, 0x07f5e3f5, 0x10ac03af, 0xc107b007, 0x1a070f07, + 0xf225f335, 0xfb05fc15, 0x07fb2a7e, 0x24dc03df, 0x08030f07, 0x1c7e1d07, + 0x90f441fb, 0xd0f39142, 0x44e02632, 0x34e001f3, 0x42c401e3, 0xa1f35118, + 0x0e2027f4, 0x07212734, 0x7ef2550a, 0x5107fc36, 0xf58ef5c3, 0x511832c4, + 0x27f4a1f3, 0x27340e20, 0xa50d0721, 0xfc1c7ef2, 0xf5c35107, 0xfbc1f58e, + 0x27f77130, 0x076027a0, 0x34fcc12b, 0x1a073607, 0x94be0707, 0x5b070006, + 0xbc073027, 0xc54cfbc5, 0xf0c550f3, 0x58f1c554, 0xc14cf0c1, 0x3a0750f1, + 0x2707f881, 0x000672be, 0x9007c027, 0x2507a107, 0x08073607, 0x60be1c07, + 0xd0070006, 0xd90be107, 0xb807ea4b, 0x00fdeaea, 0x00f5aeee, 0xf3c11027, + 0x58f4c154, 0xad079107, 0xa44b930b, 0x80277027, 0x00f9a4ea, 0xee58f4c1, + 0xc1012c4a, 0xf2c150f3, 0x070b074c, 0xbebe071c, 0xb100061f, 0x27f461f3, + 0x03430bc0, 0xc5302744, 0xf3c540f4, 0x51f4a13c, 0x4bb00bf3, 0x4bb70bc1, + 0x27342ec8, 0x3cf4c541, 0x0000cfd0, 0xc13f2000, 0x4c0740fe, 0x4c331b07, + 0x0711531f, 0xab0a072c, 0x33215314, 0xe1031f0c, 0x0715b1d8, 0x534a0739, + 0xab415331, 0x07a40730, 0x00afa393, 0x07800000, 0xd4c207b1, 0x0000002f, + 0xfec5c920, 0x00cfd440, 0x31100000, 0x0740fec1, 0x1f4c5349, 0x1a472b07, + 0x2c5314ab, 0xab4c471f, 0x473b4742, 0x07b30709, 0xc8e123c4, 0x900759a0, + 0xcfd0a107, 0x10000000, 0x40fec5d7, 0x3f6b3b07, 0x3cc04027, 0x0f074980, + 0x0c034327, 0x44fbc538, 0xc548fcc5, 0xcb7e38f4, 0xc35107fa, 0xe2f58ef5, + 0x27ff0b9d, 0x54f3c110, 0x0758f4c1, 0x0bad0791, 0x27a44b93, 0xe2812770, + 0x27ff0b4a, 0x0b402731, 0x5e844b73, 0x31a3ff07, 0xc407b307, 0x4fd6a11e, + 0x833b07b6, 0xab01003d, 0xab3fd634, 0x4aab4907, 0x27a44fc6, 0x4027803c, + 0x4c4b3b0b, 0xbce3b307, 0x1ec407ff, 0xd439e292, 0xe4c11efe, 0x93fe3a42, + 0x00509bf0, 0xe4fe265e, 0x93fe1432, 0x00508ff0, 0x4efe1a5e, 0x07f4e3f5, + 0x10ac03af, 0xb007c107, 0x0f071a07, 0xf225f335, 0xfb05fc15, 0xf47ecf07, + 0x24cc03f8, 0x08030f07, 0xe87e1c07, 0x07f4a1f8, 0x0741c32f, 0x382c031c, + 0xf4a50a07, 0x7ef62f7e, 0x5107fa12, 0xf58ef4c3, 0xf4e3f54e, 0xac03af07, + 0x07c10710, 0x071a07b0, 0x25f3350f, 0x05fc15f2, 0x7ecf07fb, 0xcc03f8af, + 0x030f0724, 0x7e1c0708, 0x2f07f8a3, 0x2c031c07, 0x7e0a0738, 0xd37ef5f0, + 0xc35107f9, 0x4ef58ef4, 0x27f163fb, 0x27f40543, 0x270008b1, 0x270736b0, + 0x07f40542, 0x7efb150f, 0x3007f9b2, 0x03074107, 0xf1431407, 0xbb36fb8e, + 0x04074007, 0xc407d027, 0x253c4c27, 0x45f035f4, 0x047dbefd, 0x03100700, + 0x11c81d1c, 0xc80323cf, 0x4c072300, 0xf445403b, 0x3c274c07, 0x2b413b3c, + 0x25f43531, 0xc0b51ef3, 0x0000000f, 0x40071a80, 0xbf1e4013, 0x2b204c27, + 0x072c0741, 0x3b245b3d, 0x4532ab31, 0x27d21ef3, 0x004f2730, 0x1ec1e000, + 0xa3f54e96, 0x03df07f3, 0x400710dc, 0x0f075107, 0xf4051d07, 0xf335c307, + 0xf515f225, 0xe47ebf07, 0x24bc03f7, 0x08030f07, 0xd87e1b07, 0xd0f441f7, + 0xf4911042, 0x0d074290, 0xac7e1b07, 0x8ef383f4, 0x1e0127f5, 0xe3f54ef9, + 0x075107f1, 0x0340071f, 0x050f0718, 0x7ef515f4, 0xf421f7ab, 0x00274244, + 0xf58ef1c3, 0x40f842d0, 0xc8f44144, 0x4c88f140, 0x46f4311f, 0x000f2749, + 0xc3800000, 0x27f58ef1, 0xe42b3cec, 0x4c234e07, 0x1c40c820, 0x0207f261, + 0xf431045b, 0x13ca4fc6, 0x8ef1c300, 0xff0f27f5, 0xc37fffff, 0x61f58ef1, + 0x204c27f2, 0x32074e2b, 0x4307343b, 0x0307f351, 0x04ab0e5b, 0xf54ed51e, + 0x5107f3a3, 0x40071f07, 0x07101c03, 0x07f4050f, 0x35c307b2, 0x15f225f3, + 0xf7297ef5, 0x1f070f07, 0x1c030803, 0xf71d7e24, 0x4290f441, 0x0027f491, + 0xf3834230, 0x0127f58e, 0xf58ef383, 0xf3a3f54e, 0xdc03df07, 0x07400710, + 0x070f0751, 0x07f4051d, 0x25f335c3, 0x07f515f2, 0xf6e97ebf, 0x0724bc03, + 0x0708030f, 0xf6dd7e1b, 0x42d0f441, 0x90f49110, 0x070d0742, 0xf3b17e1b, + 0xf58ef383, 0xf91e0127, 0xf3a3f54e, 0xdc03df07, 0x07400710, 0x070f0751, + 0x07f4051d, 0x25f335c3, 0x07f515f2, 0xf6a57ebf, 0x0724bc03, 0x0708030f, + 0xf6997e1b, 0x42d0f441, 0x90f49110, 0x070d0742, 0xf36d7e1b, 0xf58ef383, + 0xf91e0127, 0xf3a3f54e, 0xdc03df07, 0x07400710, 0x070f0751, 0x07f4051d, + 0x25f335c3, 0x07f515f2, 0xf6617ebf, 0x0724bc03, 0x0708030f, 0xf6557e1b, + 0x42d0f441, 0x90f49110, 0x070d0742, 0xf3297e1b, 0xf58ef383, 0xf91e00a7, + 0xf3a3f54e, 0xdc03df07, 0x07400710, 0x070f0751, 0x07f4051d, 0x25f335c3, + 0x07f515f2, 0xf61d7ebf, 0x0724bc03, 0x0708030f, 0xf6117e1b, 0x42d0f441, + 0x90f49110, 0x070d0742, 0xf2e57e1b, 0xf58ef383, 0xf91e00a7, 0xf3a3f54e, + 0xdc03df07, 0x07400710, 0x070f0751, 0x07f4051d, 0x25f335c3, 0x07f515f2, + 0xf5d97ebf, 0x0724bc03, 0x0708030f, 0xf5cd7e1b, 0x42d0f441, 0x90f49110, + 0x070d0742, 0xf2a17e1b, 0xf58ef383, 0xf91e0127, 0xf163f54e, 0xb027a027, + 0x90278027, 0x422706b6, 0x0f07f405, 0xf4154027, 0x07f6d97e, 0x8ef14351, + 0x27d027f5, 0x3c3c2743, 0xf405c007, 0xf035f325, 0xacbefd45, 0x10070001, + 0xc81d1c03, 0x1fc62c10, 0xe80323d2, 0x07008200, 0x45403b4c, 0x3b4c07f4, + 0x3c3c2741, 0x312bf435, 0x40270f07, 0xf415f325, 0x07f6917e, 0x8ef14351, + 0x13e107f5, 0x230e07e0, 0x6027200c, 0x00c87027, 0x07412742, 0x27b03bb4, + 0x3ba20721, 0xa730a7ae, 0x4b3a0b40, 0x8b3c8b4b, 0xc634ab4d, 0x27612734, + 0x4000c870, 0x805b8d07, 0x9e5b9d07, 0x2c274707, 0xab36073c, 0xab212b49, + 0x45f33538, 0x5ef225f4, 0x3c27ff5a, 0x2b412720, 0x5bb4073e, 0x27b91eb3, + 0x412b204c, 0x3d072c07, 0x313b245b, 0xf34532ab, 0x27ff745e, 0x4e2b204c, + 0x8c073d07, 0x8e5b343b, 0xb51e83ab, 0x0088fe4e, 0x1013100c, 0xfe0e2127, + 0x00004e9e, 0x10680013, 0x44be2127, 0x00130000, 0x1013fe8e, 0xfd4ef31e, + 0x271200c8, 0x1410c8d0, 0x2cbe2027, 0xd4860000, 0xfd8e0013, 0xd1270013, + 0x13ee10cc, 0xd6412710, 0x1ed407d4, 0x074027e4, 0x27de1ed4, 0x00099e21, + 0x9e202700, 0x4e000003, 0x3601c2fe, 0x273310c8, 0x203c2741, 0x44471147, + 0xf02101c2, 0x302707f3, 0xfe8e26e6, 0x27ee10cc, 0x2b012a30, 0x5334ab01, + 0xd6115341, 0x0721b642, 0x66fe8e03, 0x1e302740, 0x274127e9, 0x4ee31e30, + 0x074207f6, 0x07930782, 0x533007a2, 0x4fab102c, 0xe2073fab, 0x6007e39b, + 0xb0077107, 0x0c531407, 0x9b349b10, 0x0b430710, 0x104c53e1, 0x209be40b, + 0x2e031e02, 0x07010000, 0x33b99b4e, 0xa79b10ec, 0x07104c53, 0x073fabd2, + 0x0bba0bce, 0x07c30bd4, 0x0b0c071b, 0xd4f68e1d, 0x0100000e, 0x000dd417, + 0x30273a01, 0x00f9035b, 0x00019b38, 0x1b204c27, 0xb0fe0b04, 0x0000000f, + 0x183c2701, 0x00f9035b, 0x00019b38, 0x041b4827, 0x4c27fe0b, 0x5b340710, + 0x3800f903, 0x1b00019b, 0x27fe0b04, 0xf9035b38, 0x019b3800, 0x184c2700, + 0xfe0b041b, 0x4fff1ea7, 0x9b1401fd, 0x4103122f, 0x13c14433, 0x2e24ab38, + 0x0b002732, 0xc5f3abfe, 0x14c13812, 0xf842ce38, 0x0127f3eb, 0xfe4efe0b, + 0x0576d33e, 0x0e200c27, 0x00059efe, 0x4efe8e00, 0xbeb007fb, 0x07fec3df, + 0x931007d0, 0x004bc3f0, 0xffd0d7be, 0xc027d746, 0xd2010b1e, 0xc9bec103, + 0xd403ffd0, 0xf0931c07, 0xda004bb5, 0xfb8eedcb, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x0001aab2, 0x000056f2, 0x000056f2, 0x000056f2, 0x42746e49, 0x0a3a6675, + 0x6c202000, 0x5f32676f, 0x65676170, 0x7a69735f, 0x20202065, 0x5f6d756e, + 0x65676170, 0x66282073, 0x29656572, 0x2020000a, 0x30252020, 0x20206432, + 0x20202020, 0x20202020, 0x35252020, 0x28202064, 0x62206425, 0x73657479, + 0x55000a29, 0x6f6c626e, 0x6e696b63, 0x65722067, 0x657a6973, 0x25203a73, + 0x54000a64, 0x6c61746f, 0x6c6c6120, 0x7461636f, 0x25206465, 0x28206438, + 0x64657375, 0x2c642520, 0x666e7520, 0x61656572, 0x20656c62, 0x202c6425, + 0x65657266, 0x29642520, 0x2a2a000a, 0x52202a2a, 0x25435341, 0x42412064, + 0x2054524f, 0x2a2a2a2a, 0x2020000a, 0x20204350, 0x203d2020, 0x30257830, + 0x000a7838, 0x52532020, 0x20202020, 0x7830203d, 0x78383025, 0x2020000a, + 0x20524146, 0x203d2020, 0x30257830, 0x000a7838, 0x5b522020, 0x5d643225, + 0x30203d20, 0x38302578, 0x00000a78, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x3602f114, 0xf1144a03, 0x4a033602, + 0x68e97fe4, 0x36ff35fa, 0x21173307, 0x00150217, 0x31000901, 0x390576db, + 0x41f54ef3, 0x310c3e01, 0x321149fc, 0x2b094012, 0x431a001d, 0x68095a10, + 0x68ec7fd2, 0x4ef34301, 0x3e0141f5, 0x5fef56fa, 0x2d093dfa, 0x51fa45fd, + 0x370660f5, 0x56fb4307, 0x3a005802, 0x5ef64cfd, 0x45043605, 0x580051fd, + 0x4afb43f9, 0x50fb4afc, 0x3a0148f9, 0x3f002900, 0x3f003f00, 0x560453f7, + 0x48f96100, 0x3e03290d, 0x4efc2d00, 0x7ee560fd, 0x65e762e4, 0x52e443e9, + 0x53f05eec, 0x5beb6eea, 0x5df366ee, 0x280c7fe3, 0x3b0e330b, 0x2cfe4cfa, + 0x34002d00, 0x3bfe40fd, 0x4bfc46fc, 0x18034df7, 0x30002a00, 0x3bfa3700, + 0x53f447f9, 0x1dfd3a01, 0x260124ff, 0x37fa2b02, 0x40003a00, 0x1dfc4600, + 0x2a071f05, 0x3afe3b01, 0x51fd48fd, 0x05083a00, 0x120e0e0a, 0x28021b0d, + 0x46fd3a00, 0x23f942fa, 0x2df82af9, 0x38f430fb, 0x3efb3cfa, 0x77e257f5, + 0xf11461f5, 0x4cf842f8, 0xf114f114, 0x66ef52f8, 0x5af64afd, 0x55f84ffa, + 0xf114f114, 0x59fb5cf9, 0x6cf360f9, 0x1c0b55fe, 0x28024efa, 0x2c034bff, + 0x31004df9, 0x2e003602, 0x2c023205, 0x330244fd, 0x2f003201, 0x27042a06, + 0x3e0251fc, 0x2e063f01, 0x360046fc, 0x36034300, 0x3a023902, 0x3f044cfe, + 0xf114f114, 0xf114f114, 0xf114f114, 0x41ff2efd, 0x5df739ff, 0x3306230b, + 0x39064004, 0x35073d01, 0x3406230b, 0x37061912, 0x2d0b180c, 0x240e1d0d, + 0x3508240d, 0x52ff5df6, 0x370749f9, 0x4efd49fe, 0x2e0f2e0d, 0x1f163109, + 0x54ff64f9, 0x5cf74afd, 0x7ee957f8, 0x07193509, 0xf91e3502, 0x031c3505, + 0x041c3dfe, 0x00203800, 0xff223800, 0x061e3ff3, 0x061e3cfb, 0x09203eff, + 0x131f3904, 0x1b1a45fa, 0x1e1a3904, 0x1425270e, 0x221c3304, 0x4611440d, + 0xf114f114, 0xf114f114, 0xf114f114, 0x3c063605, 0x45063b06, 0x43014003, + 0x3b053d01, 0x43093f09, 0xf114f114, 0xf114f114, 0xf114f114, 0x440030ff, + 0x58f845fc, 0x1e103207, 0x20122710, 0x23122c05, 0x1d163404, 0x1f18300b, + 0x26173cfb, 0x2b123bff, 0x29143b00, 0x3f0b2116, 0x3b092c05, 0x40092b0e, + 0x5eff4eff, 0x59fe3c00, 0x6cf74509, 0x47f94ffc, 0x46f745fb, 0x44f642f8, + 0xf71afe09, 0x45f449ed, 0x43f146f0, 0x46ed3eec, 0xf927f721, 0x41ea42f0, + 0xfe293fec, 0x0931032d, 0x3b241b2d, 0xf114f114, 0xf114f114, 0xf114f114, + 0xf114f114, 0x0b0e6af3, 0x0e0b6af0, 0x0b0957f6, 0x0b1272eb, 0x09156eee, + 0xfe1762f2, 0xf1206eea, 0xf1206aeb, 0xeb2267ee, 0xe9276beb, 0xdf2a6ce9, + 0xe12970e6, 0xe42e60f6, 0xf4265ff4, 0x1d155bfb, 0xf114f114, 0xe82d5df7, + 0xd3355eea, 0xe63056fb, 0xd5414309, 0xed2b50fc, 0xf62755f6, 0x091e46ff, + 0x1a123c07, 0x1b143a09, 0x39003d05, 0x52f2320c, 0x4bfb320f, 0x61ed3112, + 0x7ddd3611, 0xf114f114, 0xf114f114, 0x001b290a, 0x001c2e07, 0xfc1f33ff, + 0x061b3107, 0x08223408, 0x0a1e2909, 0x16182f06, 0x13213702, 0x2016290d, + 0x1f1a2c0a, 0x29153206, 0x2c1a3505, 0x2f17310d, 0x41103f04, 0x470e4006, + 0xf114f114, 0x3c0845fe, 0x3f063bfe, 0x41114606, 0xf114f114, 0x18152c0a, + 0x14171f09, 0x171a2b0c, 0x201b3503, 0x171c220e, 0x181c260a, 0x281734fd, + 0x2018280d, 0x1d1c2011, 0x2a172c07, 0x39132607, 0x3516320d, 0x3d16390a, + 0x560b2b1a, 0xf114f114, 0xf114f114, 0x51fa55fb, 0x51f94df6, 0x49ee50ef, + 0xf221f315, 0x53f64afc, 0x43f747f7, 0x42f83dff, 0xfe2ef927, 0x3b0042f2, + 0x02333b02, 0x113d063c, 0x3e2a2237, 0xf114f114, 0xf114f114, 0xf114f114, + 0xf114f114, 0x3602f114, 0xf1144a03, 0x4a033602, 0x68e97fe4, 0x36ff35fa, + 0x19163307, 0x00100022, 0x290409fe, 0x410276e3, 0x4ff347fa, 0x32093405, + 0x360a46fd, 0x1613221a, 0x02390028, 0x451a2429, 0x65f17fd3, 0x47fa4cfc, + 0x34054ff3, 0x5af34506, 0x2b083400, 0x52fb45fe, 0x3b0260f6, 0x57fd4b02, + 0x380164fd, 0x55fa4afd, 0x51fd3b00, 0x5ffb56f9, 0x4dff42ff, 0x56fe4601, + 0x3d0048fb, 0x3f002900, 0x3f003f00, 0x560453f7, 0x48f96100, 0x3e03290d, + 0x33070f0d, 0x7fd95002, 0x60ef5bee, 0x62dd51e6, 0x61e966e8, 0x63e877e5, + 0x66ee6eeb, 0x20197fdc, 0x36153115, 0x47f170e9, 0x35003df9, 0x4df542fb, + 0x54f750f7, 0x27fd65eb, 0x3df935fb, 0x4df14bf5, 0x6be75bef, 0x2cf64cf5, + 0x39f634f6, 0x48f03af7, 0x45fc45f9, 0x22f74202, 0x1f0b2001, 0x37fe3405, + 0x490043fe, 0x04073403, 0x0811080a, 0x25031310, 0x49fb3dff, 0x180047fb, + 0x2afe24ff, 0x39f734fe, 0x41fc3ffa, 0x7ae46fe7, 0xf11459f8, 0x52f943fc, + 0xf114f114, 0x7fde57f6, 0x56f74afb, 0x4efc46ff, 0xf114f114, 0x59fb5000, + 0x5cfc5ef9, 0x2d0467f3, 0x1c0a5bf3, 0x1f0a59f7, 0xf5215cf2, 0xd5344cf8, + 0x0f1257f4, 0x001c6ee9, 0xea2369e8, 0xe7264ef6, 0x002270ec, 0xee2763ef, + 0xf4207fb2, 0xa2667fba, 0x00007fce, 0xf1387fd2, 0xf114f114, 0xf114f114, + 0xf114f114, 0x41002700, 0x7fdd54f1, 0xfc2142fc, 0x0a1d4efb, 0xfb2547fc, + 0xe33348f8, 0xf7273b02, 0xde3437ff, 0xc64546f9, 0xc1434bfa, 0xfb2c59f8, + 0x072077de, 0xe3374bfd, 0x01201420, 0x0000161e, 0x241b7fd4, 0x68f449fe, + 0x7fe15bf7, 0xe7213600, 0xe2223dfb, 0xe4243a00, 0xe4263cff, 0xe5263dfd, + 0xee2243f8, 0xf02354e7, 0xf2224af2, 0xf82041fb, 0xfa253405, 0x00233902, + 0x0a1e3d00, 0x121c45f7, 0x191a46f5, 0x291d3712, 0xf114f114, 0xf114f114, + 0xf114f114, 0x38073703, 0x3d083707, 0x4b0047fc, 0x48023a00, 0x4d083d07, + 0xf114f114, 0xf114f114, 0xf114f114, 0x440035fd, 0x58f74af9, 0x230e2909, + 0x1f121912, 0x23112009, 0x1e152b05, 0x2d112f09, 0x2a142c00, 0x2d123300, + 0x1a1b2e02, 0x36102613, 0x420742fc, 0x3810260f, 0x490b2a0c, 0x430a2209, + 0x74f65900, 0x51fa55fb, 0x51f94df6, 0x49ee50ef, 0xf320f611, 0x53f64afc, + 0x43f747f7, 0x42f83dff, 0xfb31f72a, 0x3b0042f2, 0x00353b02, 0x0a440340, + 0x392f1b42, 0xf114f114, 0xf114f114, 0xf114f114, 0xf114f114, 0xfa137eeb, + 0xfa127ce9, 0x000e6eec, 0xf41a7ee6, 0xf01f7ce7, 0xe72169ef, 0xea2179e5, + 0xe42575e5, 0xe22766ef, 0xe22a75e6, 0xd62f74e5, 0xdc2d7adf, 0xde315ff6, + 0xef2964f2, 0x09205ff8, 0xf114f114, 0xb9456fef, 0xc13f72e4, 0xc04259fa, + 0xb64d50fe, 0xd93652fc, 0xdd3455f7, 0xf62951f8, 0x002448ff, 0xff284005, + 0x0e1e4301, 0x1a1c3809, 0x25174500, 0x370c4501, 0x410b4507, 0xf114f114, + 0xf114f114, 0xdf2545f9, 0xdc2743fa, 0xdb284df0, 0xe22640fe, 0xdf2e3d02, + 0xe22a43fa, 0xe82840fd, 0xe3313902, 0xf42641fd, 0xf62842fd, 0xfd263e00, + 0xfb2e3309, 0x141f42ff, 0x1e1d47fe, 0x2c194bfe, 0xf114f114, 0x300c46ff, + 0x310b48f7, 0x2d1a3c0e, 0xf114f114, 0x16162510, 0x16172f00, 0x151b2312, + 0x1421250b, 0x1c1a290c, 0x181e290a, 0x221b3002, 0x2a12290c, 0x2719290d, + 0x32123b00, 0x460c3203, 0x36152813, 0x470e4203, 0x530b3212, 0xf114f114, + 0xf114f114, 0x4cfd51fd, 0x4efa48f9, 0x44f248f4, 0xf320f611, 0x4cfa46fd, + 0x3efb42fb, 0x3dfc3900, 0xfb31f72a, 0x36013cf7, 0x00353a02, 0x0a440340, + 0x392f1b42, 0xf114f114, 0xf114f114, 0xf114f114, 0xf114f114, 0x3602f114, + 0xf1144a03, 0x4a033602, 0x68e97fe4, 0x36ff35fa, 0x101d3307, 0x000e0019, + 0x3efd33f6, 0x101a63e5, 0x66e855fc, 0x39063905, 0x390e49ef, 0x0a142814, + 0x0036001d, 0x610c2a25, 0x75ea7fe0, 0x55fc4afe, 0x390566e8, 0x58f25dfa, + 0x37042cfa, 0x67f159f5, 0x391374eb, 0x54043a14, 0x3f016006, 0x6af355fb, + 0x4b063f05, 0x65ff5afd, 0x4ffc3703, 0x61f44bfe, 0x3c0132f9, 0x3f002900, + 0x3f003f00, 0x560453f7, 0x48f96100, 0x3e03290d, 0x58f72207, 0x7fdc7fec, + 0x5ff25bef, 0x56e754e7, 0x5bef59f4, 0x4cf27fe1, 0x5af367ee, 0x21157fdb, + 0x3d113213, 0x52ea73e8, 0x35003ef7, 0x55f23b00, 0x5ef359f3, 0x39f264eb, + 0x47f543f4, 0x55eb4df6, 0x68e958f0, 0x30f852f6, 0x42f83df8, 0x4bf246f9, + 0x53f74ff6, 0x45ea4ffc, 0x3afe4bf0, 0x4ef33a01, 0x51fc53f7, 0x26fa51f3, + 0x3afa3ef3, 0x49f03bfe, 0x56f34cf6, 0x25f947f7, 0x31f52cf8, 0x3bf438f6, + 0x43f73ff8, 0x7fdb62f1, 0xf11463f3, 0x4ff644fa, 0xf114f114, 0x7fe35cf5, + 0x6cee5cf4, 0x57f653f7, 0xf114f114, 0x4c05500b, 0x4e055402, 0x270456fc, + 0x2a0058f4, 0x220752fb, 0x1d0b48fd, 0x1f0843fc, 0x250648f8, 0x2a0759f0, + 0x280345f7, 0x21083bff, 0x2b0d4205, 0x240d3904, 0x2f0447fc, 0x370347fe, + 0x3a023a02, 0x3c064aff, 0xf114f114, 0xf114f114, 0xf114f114, 0x3d0437fa, + 0x7fdb53f2, 0x2c082cfc, 0x2c0b45ff, 0x2a0e3e00, 0x300733f9, 0x38042ffc, + 0x34042afa, 0x250d29fd, 0x310935fa, 0x3a134c08, 0x300a4ef7, 0x2d0c53f5, + 0x45003409, 0x21144300, 0x3f085afb, 0x68f54ffb, 0x7fe25bf5, 0xee234301, + 0xe72148f1, 0xfd1c4bfb, 0x0a1850f8, 0x001b53eb, 0xf22240eb, 0xd4341ff3, + 0xe82740e7, 0x11135ee3, 0x191f4b09, 0x1d243f11, 0x21184af8, 0x0f2223fb, + 0x141e1bfe, 0x49165b0d, 0xf114f114, 0xf114f114, 0xf114f114, 0x4ffe4100, + 0x5cfc4800, 0x22144103, 0x1f1345f9, 0x2c1b4d08, 0xf114f114, 0xf114f114, + 0xf114f114, 0x440338fa, 0x62f347f8, 0x101342f6, 0x240f3e03, 0x240f44fd, + 0x1c1551ec, 0x15191e00, 0x141e0701, 0x0c1f17fd, 0x101b4aeb, 0x2a184210, + 0x5d007ce9, 0x380e2511, 0x390fee2c, 0x261ade32, 0x7fe87fea, 0x4af84efd, + 0x48f648f7, 0x47f44bee, 0xf61efe09, 0x46fb3ff5, 0x48f24bef, 0x35f843f0, + 0xff21fc1f, 0x34f73bf2, 0x072144f5, 0x17250c1f, 0x4014261f, 0xf114f114, + 0xf114f114, 0xf114f114, 0xf114f114, 0xf3117fea, 0xf7107fe7, 0xf41178e7, + 0xeb1b7fe5, 0xe22572ed, 0xd82975e9, 0xd72a76e7, 0xd13075e6, 0xe02771e8, + 0xd82e76e4, 0xcd3478e1, 0xd72e7cdb, 0xd9345ef6, 0xed2b66f1, 0x0b2063f6, + 0xf114f114, 0xc93d6af3, 0xd2387fce, 0xce3e5cfb, 0xbd513911, 0xec2d56fb, + 0xfe235ef3, 0x0f1c5bf4, 0x01224dfe, 0x01274700, 0x111e49ff, 0x26144004, + 0x2d1251f9, 0x360f4005, 0x4f00390f, 0xf114f114, 0xf114f114, 0xf0244301, + 0xf2254400, 0xef2543f6, 0x01204401, 0x0f224d00, 0x0f1d4002, 0x19184400, + 0x16224efb, 0x101f3707, 0x12233b05, 0x1c1f4102, 0x2921360e, 0x1c242c0f, + 0x2f1b3c05, 0x3e154602, 0xf114f114, 0x1f124cfe, 0x1a1356ee, 0x1824460c, + 0xf114f114, 0x17184005, 0x101b46f4, 0x1e18370b, 0x1d1f3805, 0x29164500, + 0x2a164102, 0x3c104afa, 0x340f3605, 0x3c0e3607, 0x4e034cfa, 0x7bf052f5, + 0x35154dfe, 0x38164dfe, 0x3d192a19, 0xf114f114, 0xf114f114, 0x4af84efd, + 0x48f648f7, 0x47f44bee, 0xf61efe09, 0x46fb3ff5, 0x48f24bef, 0x35f843f0, + 0xff21fc1f, 0x34f73bf2, 0x072144f5, 0x17250c1f, 0x4014261f, 0xf114f114, + 0xf114f114, 0xf114f114, 0xf114f114, 0x3602f114, 0xf1144a03, 0x4a033602, + 0x68e97fe4, 0x36ff35fa, 0x00003307, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x3f002900, 0x3f003f00, 0x560453f7, + 0x48f96100, 0x3e03290d, 0x37010b00, 0x7fef4500, 0x520066f3, 0x6beb4af9, + 0x7fe17fe5, 0x5fee7fe8, 0x72eb7fe5, 0x151f7fe2, 0x32191f1f, 0x2afa47fd, + 0x36fd32fb, 0x3a003efe, 0x48fe3f01, 0x1bfb43fb, 0x2cfe27fd, 0x40f02e00, + 0x4ef644f8, 0x37f15cf4, 0x3efa3cf6, 0x49f441fc, 0x50f94cf8, 0x54ec61f5, + 0x49fa4ff5, 0x56f34afc, 0x61f560f3, 0x21fb4ef8, 0x35fe30fc, 0x47f33efd, + 0x56f44ff6, 0x17ff4bfd, 0x2b012201, 0x37fe3600, 0x40013d00, 0x56f64dfa, + 0xf11475ed, 0x5cf74400, 0xf114f114, 0x5bf74aff, 0x6eef58f7, 0x61f25af3, + 0xf114f114, 0x73f47bef, 0x73f57af0, 0x00185df9, 0x090f57f5, 0x19084dfd, + 0x120d47fb, 0x090f3ffc, 0x130d44fc, 0x250a54f4, 0x120c3ef9, 0x1d0641f9, + 0x21143d08, 0x1e0f3805, 0x2d0442fe, 0x3a014001, 0x3e003d00, 0x3d074efe, + 0xf114f114, 0xf114f114, 0xf114f114, 0x44fe3ff4, 0x68f354f1, 0x260c3201, + 0x2d0b3407, 0x270f230a, 0x2a0b2c00, 0x2c0d260b, 0x2d102d01, 0x290c2e00, + 0x310a2c05, 0x221e111f, 0x2a123301, 0x370a3207, 0x3311131c, 0x2e112110, + 0x59003e0e, 0x5df846fd, 0x7fe25af6, 0xed1a6cf3, 0xef1664f1, 0xef1a65f3, + 0xe71e5bf3, 0xec1c5ef4, 0xe92158f6, 0xe52554f0, 0xe92156f6, 0xe42853f9, + 0xef2657f3, 0xf5215eed, 0xf1284601, 0xfa294800, 0x01264afb, 0x11293b12, + 0xf114f114, 0xf114f114, 0xf114f114, 0x61fa4aff, 0x7fec5bf9, 0xfa1e66f8, + 0x031b64f1, 0x161a5f00, 0xf114f114, 0xf114f114, 0xf114f114, 0x52fb38fc, + 0x7dea4cf9, 0xf0254bfc, 0xfc234802, 0xf8264bf5, 0xfd2647fd, 0x03252e0f, + 0x052645f3, 0x002a3e00, 0x10234100, 0x16272515, 0x300e48f1, 0x251b3909, + 0x3c153610, 0x440c3e00, 0x6102480c, 0x70ec78ef, 0x55f572ee, 0x59f25cf1, + 0xf31af317, 0x51f147e6, 0x440050f2, 0x38e846f2, 0xf231f128, 0x32e844e9, + 0x032c4af5, 0x222c062d, 0x52133621, 0xf114f114, 0xf114f114, 0xf114f114, + 0xf114f114, 0x060f5dfa, 0x130654fa, 0x10074ff8, 0x0e0c4200, 0x0d1247ff, + 0x0b0d3e00, 0x0f0d3cfe, 0x100f3bfe, 0x170c4bfb, 0x170d3efd, 0x140f3afc, + 0x1a0e42f7, 0x2c0e4fff, 0x28114700, 0x2f114403, 0xf114f114, 0x11182c0a, + 0x15153ef9, 0x1619240f, 0x1b1f280e, 0x1d161b10, 0x23131d0c, 0x320e2c01, + 0x390a2414, 0x3f072012, 0x4dfe2a05, 0x52fc3001, 0x5efd3e0a, 0x45092e11, + 0x6df44009, 0xf114f114, 0xf114f114, 0xdd2468f4, 0xde2461f5, 0xe62060f0, + 0xe22558f9, 0xe02c55f8, 0xee2255f9, 0xf12255f7, 0xf12858f3, 0xf9214204, + 0xfb234dfd, 0x00214cfd, 0x02264cfa, 0x0d213a0a, 0x23174cff, 0x3a0d53ff, + 0xf114f114, 0xfd1d63f9, 0x001a5ff2, 0x1e165f02, 0xf114f114, 0xf91f4c00, + 0xf1234afb, 0xfd224600, 0x03224bf5, 0xff244401, 0x05224100, 0x0b2049f2, + 0x05233e03, 0x0c223e04, 0x0b2744ff, 0x1d1e4bf3, 0x1a22370b, 0x271d4005, + 0x4213460c, 0xf114f114, 0xf114f114, 0x61f36af2, 0x5af45af1, 0x49f658ee, + 0xf518f615, 0x56f24ff7, 0x46f649f6, 0x42fb45f6, 0xff1cf81c, 0x3afb40f7, + 0x031d3b02, 0x1423091d, 0x430e241d, 0xf114f114, 0xf114f114, 0xf114f114, + 0xf114f114, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x2a2a2a2a, 0x53415220, + 0x20642543, 0x524f4241, 0x2a2a2054, 0x000a2a2a, 0x43502020, 0x20202020, + 0x7830203d, 0x78383025, 0x2020000a, 0x20205253, 0x203d2020, 0x30257830, + 0x000a7838, 0x41462020, 0x20202052, 0x7830203d, 0x78383025, 0x2020000a, + 0x32255b52, 0x3d205d64, 0x25783020, 0x0a783830, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x000065e8, 0x000065e8, 0x000065e8, 0x000065e8, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x20000010, 0x804000c0, 0x03008001, 0x00060100, + 0x80ff080f, 0xff080f80, 0x080f8080, 0x0f8080ff, 0x8080ff08, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x20000010, 0x00400080, 0x02008001, 0x00040100, 0x00ff200f, 0x200f0802, + 0x080200ff, 0x00ff200f, 0x200f0802, 0x080200ff, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x4649424d, 0x34363248, + 0x00000000, 0x7478656e, 0x6369705f, 0x5f6f745f, 0x73726170, 0x20202065, + 0x75252020, 0x2a2a000a, 0x25202a2a, 0x2a2a2073, 0x50202a2a, 0x30203a43, + 0x20782578, 0x52532020, 0x7830203a, 0x20207825, 0x52414620, 0x7830203a, + 0x000a7825, 0x255b5220, 0x205d6432, 0x7830203d, 0x78383025, 0x6d20000a, + 0x65747361, 0x25232072, 0x73252064, 0x6f626120, 0x64657472, 0x2020000a, + 0x55414620, 0x203a544c, 0x78257830, 0x2020000a, 0x44414620, 0x203a5244, + 0x78257830, 0x4152000a, 0x41204353, 0x54524f42, 0x554d4d00, 0x4f424120, + 0x57005452, 0x68637461, 0x00676f64, 0x616e7944, 0x2063696d, 0x6e616863, + 0x69206567, 0x6874206e, 0x756e2065, 0x7265626d, 0x20666f20, 0x65726f63, + 0x73692073, 0x746f6e20, 0x70757320, 0x74726f70, 0x52006465, 0x30435341, + 0x53415200, 0x52003143, 0x32435341, 0x53415200, 0x52003343, 0x34435341, + 0x4d445300, 0x44560041, 0x5200414d, 0x00004645, 0x0003f9c7, 0x0000f812, + 0x0000f812, 0x0000f812, 0x000164f3, 0x000164f9, 0x000164ff, 0x00016505, + 0x0001650b, 0x00016511, 0x00016516, 0x0001651b, 0x45444956, 0x5746204f, + 0x41545320, 0x44204554, 0x20504d55, 0x6f636544, 0x3d726564, 0x34363248, + 0x6946000a, 0x61776d72, 0x76206572, 0x69737265, 0x64206e6f, 0x2073656f, + 0x20746f6e, 0x6374616d, 0x61682068, 0x61776472, 0x0a216572, 0x72694600, + 0x7261776d, 0x6f632065, 0x6c69706d, 0x66206465, 0x7620726f, 0x69737265, + 0x30206e6f, 0x38302578, 0x48000a78, 0x77647261, 0x20657261, 0x6f706572, + 0x20737472, 0x20202020, 0x72657620, 0x6e6f6973, 0x25783020, 0x0a783830, + 0x72694600, 0x7261776d, 0x65762065, 0x6f697372, 0x6f64206e, 0x6e207365, + 0x6d20746f, 0x68637461, 0x72616820, 0x72617764, 0x65762065, 0x6f697372, + 0x6946006e, 0x61776d72, 0x63206572, 0x69706d6f, 0x2064656c, 0x20726f66, + 0x70207325, 0x69636572, 0x6e6f6973, 0x6c736420, 0x646f6d20, 0x6c000a65, + 0x4800776f, 0x77647261, 0x20657261, 0x6f706572, 0x20737472, 0x20202020, + 0x20732520, 0x63657270, 0x6f697369, 0x7364206e, 0x6f6d206c, 0x000a6564, + 0x68676968, 0x454c0020, 0x5254435f, 0x78253a4c, 0x434e202c, 0x5345524f, + 0x2c78253a, 0x43494c20, 0x524f435f, 0x554e5f45, 0x64253a4d, 0x5748202c, + 0x524f435f, 0x554e5f45, 0x64253a4d, 0x69000a20, 0x6c61766e, 0x68206469, + 0x77647261, 0x20657261, 0x65726f63, 0x6d756e20, 0x73726562, 0x756e203a, + 0x7265626d, 0x20666f20, 0x64726168, 0x20657261, 0x65726f63, 0x20736920, + 0x656c6c69, 0x006c6167, 0x69206f4e, 0x7562746e, 0x70732066, 0x20656361, + 0x20726f66, 0x7473616d, 0x73207265, 0x20657661, 0x61657261, 0x626f4a00, + 0x73656d20, 0x65676173, 0x754e203a, 0x7265626d, 0x20666f20, 0x65726f63, + 0x61632073, 0x6f6e206e, 0x65622074, 0x72657a20, 0x4a002e6f, 0x6d20626f, + 0x61737365, 0x203a6567, 0x626d754e, 0x6f207265, 0x6f632066, 0x20736572, + 0x206f6f74, 0x6772616c, 0x4a002e65, 0x6d20626f, 0x61737365, 0x203a6567, + 0x75736e55, 0x726f7070, 0x20646574, 0x67616c66, 0x65732073, 0x4a002e74, + 0x6d20626f, 0x61737365, 0x203a6567, 0x626d754e, 0x6f207265, 0x72662066, + 0x73656d61, 0x6f6f7420, 0x72616c20, 0x002e6567, 0x73206f6e, 0x65636170, + 0x206e6920, 0x20626f6a, 0x75657571, 0x41460065, 0x5f4c4154, 0x4f525245, + 0x4e555f52, 0x49464544, 0x0044454e, 0x41544146, 0x52455f4c, 0x5f524f52, + 0x43424641, 0x504e495f, 0x435f5455, 0x5552524f, 0x46005450, 0x4c415441, + 0x5252455f, 0x415f524f, 0x5f434246, 0x5f464552, 0x52524f43, 0x00545055, + 0x41544146, 0x52455f4c, 0x5f524f52, 0x4449534c, 0x5254435f, 0x414d5f4c, + 0x524f4358, 0x4f4e5f45, 0x45535f54, 0x00000054, 0x000167d6, 0x000167ec, + 0x0001680b, 0x00016828, 0x65666552, 0x636e6572, 0x69702065, 0x72757463, + 0x61742065, 0x0a656c62, 0x20646900, 0x73203a20, 0x75206174, 0x72206573, + 0x70206665, 0x70203179, 0x63203279, 0x6620706d, 0x6d20746d, 0x705f6962, + 0x20207274, 0x5f69626d, 0x65676170, 0x69732873, 0x2029657a, 0x72747020, + 0x706f7420, 0x746f623a, 0x3325000a, 0x203a2064, 0x20643325, 0x20643325, + 0x20643325, 0x20643325, 0x20643325, 0x20643325, 0x20643325, 0x20207025, + 0x64362520, 0x29642528, 0x25202020, 0x70253a70, 0x694c000a, 0x70206576, + 0x75746369, 0x74206572, 0x656c6261, 0x754e000a, 0x203a206d, 0x20206425, + 0x646c4f20, 0x20747365, 0x000a6425, 0x20786469, 0x7473203a, 0x73752061, + 0x69702065, 0x20646963, 0x69666572, 0x696c2064, 0x7973656e, 0x7220636e, + 0x20206665, 0x6576696c, 0x73666572, 0x20202020, 0x66657220, 0x63697032, + 0x3325000a, 0x203a2064, 0x20643325, 0x20643325, 0x33252020, 0x20202064, + 0x20643325, 0x36252020, 0x33252064, 0x30202064, 0x38302578, 0x33252078, + 0x33252064, 0x33252064, 0x33252064, 0x33252064, 0x33252064, 0x33252064, + 0x33252064, 0x33252064, 0x33252064, 0x33252064, 0x33252064, 0x33252064, + 0x33252064, 0x33252064, 0x33252064, 0x50000a64, 0x61766972, 0x72206574, + 0x61626665, 0x203a6b6e, 0x6f6c6f63, 0x78302072, 0x6d207825, 0x625f7861, + 0x65666675, 0x25207372, 0x626d2075, 0x75252077, 0x68626d20, 0x20752520, + 0x65736162, 0x6464615f, 0x78302072, 0x78383025, 0x2020000a, 0x78646920, + 0x61747320, 0x66657220, 0x6464615f, 0x20202072, 0x2077626d, 0x68626d20, + 0x2020000a, 0x75332520, 0x75332520, 0x25783020, 0x0a783830, 0x6e652800, + 0x666f2064, 0x69727020, 0x65746176, 0x66657220, 0x6b6e6162, 0x6d756420, + 0x000a2970, 0x75736e55, 0x726f7070, 0x20646574, 0x6f736572, 0x6974756c, + 0x203a6e6f, 0x2064255b, 0x64252078, 0x6f63005d, 0x70757272, 0x6c732074, + 0x00656369, 0x2d746573, 0x2074706f, 0x666f7270, 0x6e696c69, 0x61203a67, + 0x6d206772, 0x20747375, 0x30206562, 0x20726f20, 0x65730031, 0x706f2d74, + 0x73652074, 0x69706163, 0x203a676e, 0x20677261, 0x7473756d, 0x20656220, + 0x726f2030, 0x73003120, 0x6f2d7465, 0x6e207470, 0x20756c61, 0x6d726f66, + 0x203a7461, 0x6e6b6e55, 0x206e776f, 0x6d726f66, 0x73007461, 0x6f2d7465, + 0x6e207470, 0x20756c61, 0x6d726f66, 0x203a7461, 0x75736e55, 0x726f7070, + 0x20646574, 0x6d726f66, 0x73007461, 0x6f2d7465, 0x69207470, 0x726f6e67, + 0x74732065, 0x6d616572, 0x61656820, 0x73726564, 0x7261203a, 0x756d2067, + 0x62207473, 0x20302065, 0x3120726f, 0x74657300, 0x74706f2d, 0x61726620, + 0x7220656d, 0x64726f65, 0x6e697265, 0x61203a67, 0x6d206772, 0x20747375, + 0x30206562, 0x20726f20, 0x65730031, 0x706f2d74, 0x6f682074, 0x70207473, + 0x6f746f72, 0x206c6f63, 0x6e697270, 0x203a7374, 0x20677261, 0x7473756d, + 0x20656220, 0x726f2030, 0x46003120, 0x6978656c, 0x20656c62, 0x6e776f64, + 0x6c616373, 0x6f6e2065, 0x75732074, 0x726f7070, 0x20646574, 0x68207962, + 0x77647261, 0x00657261, 0x5f6c7364, 0x5f736f70, 0x65646f6d, 0x6c6e6f20, + 0x76612079, 0x616c6961, 0x20656c62, 0x68206e69, 0x20686769, 0x63657270, + 0x6f697369, 0x6f64206e, 0x63736e77, 0x20656c61, 0x65646f6d, 0x6e49002e, + 0x66754274, 0x20000a3a, 0x676f6c20, 0x61705f32, 0x735f6567, 0x20657a69, + 0x756e2020, 0x61705f6d, 0x20736567, 0x65726628, 0x000a2965, 0x20202020, + 0x64323025, 0x20202020, 0x20202020, 0x20202020, 0x20643525, 0x64252820, + 0x74796220, 0x0a297365, 0x626e5500, 0x6b636f6c, 0x20676e69, 0x69736572, + 0x3a73657a, 0x0a642520, 0x746f5400, 0x61206c61, 0x636f6c6c, 0x64657461, + 0x64382520, 0x73752820, 0x25206465, 0x75202c64, 0x6572666e, 0x6c626165, + 0x64252065, 0x7266202c, 0x25206565, 0x000a2964, 0x646e6553, 0x20676e69, + 0x20666572, 0x6d617266, 0x6e752065, 0x64657375, 0x64646120, 0x73736572, + 0x78383025, 0x6552000a, 0x76696563, 0x53206465, 0x43544957, 0x52000a48, + 0x69656365, 0x20646576, 0x20424f4a, 0x67616c66, 0x75253d73, 0x61726620, + 0x3d73656d, 0x63207525, 0x7365726f, 0x0a75253d, 0x54455300, 0x54504f5f, + 0x204e4f49, 0x6c696166, 0x203a6465, 0x000a7325, 0x2f355600, 0x482d3756, + 0x44343632, 0x203a4345, 0x63655200, 0x65766569, 0x45532064, 0x504f5f54, + 0x4e4f4954, 0x74616420, 0x69735f61, 0x2520657a, 0x706f2075, 0x6e695f74, + 0x20786564, 0x61207525, 0x30206772, 0x38302578, 0x53000a78, 0x69737365, + 0x6f206e6f, 0x6f697470, 0x6320736e, 0x6f206e61, 0x20796c6e, 0x63206562, + 0x676e6168, 0x69206465, 0x5453206e, 0x4550504f, 0x74732044, 0x2e657461, + 0x54455300, 0x54504f5f, 0x204e4f49, 0x202c4b4f, 0x666e6f63, 0x696d7269, + 0x000a676e, 0x65636552, 0x64657669, 0x4c444920, 0x43415f45, 0x47000a4b, + 0x4920746f, 0x5f454c44, 0x204b4341, 0x68746977, 0x2074756f, 0x746e6573, + 0x4c444920, 0x52002e45, 0x69656365, 0x20646576, 0x454c4552, 0x5f455341, + 0x5f464552, 0x4d415246, 0x61642045, 0x735f6174, 0x20657a69, 0x62207525, + 0x65666675, 0x64615f72, 0x73657264, 0x78302073, 0x78383025, 0x6572000a, + 0x7361656c, 0x65722065, 0x72662066, 0x3a656d61, 0x64646120, 0x73736572, + 0x746f6e20, 0x206e6920, 0x696c6176, 0x65722064, 0x6e6f6967, 0x6553002e, + 0x6e69646e, 0x72662067, 0x5f656d61, 0x6f6c6c61, 0x61705f63, 0x736d6172, + 0x2077203a, 0x68207525, 0x20752520, 0x63626661, 0x20752520, 0x6d207525, + 0x25206962, 0x6f642075, 0x63736e77, 0x64656c61, 0x6172665f, 0x775f656d, + 0x68746469, 0x2c75253d, 0x6e776f64, 0x6c616373, 0x665f6465, 0x656d6172, + 0x6965685f, 0x3d746867, 0x0a2e7525, 0x6e655300, 0x676e6964, 0x71657320, + 0x636e6575, 0x61705f65, 0x736d6172, 0x7830203a, 0x38302520, 0x30252078, + 0x000a7838, 0x646e6553, 0x20676e69, 0x66667562, 0x705f7265, 0x6d617261, + 0x70797420, 0x75252065, 0x7a697320, 0x7a252065, 0x53000a75, 0x20646e65, + 0x65727473, 0x63206d61, 0x7572726f, 0x203a7470, 0x000a7325, 0x646e6553, + 0x72747320, 0x206d6165, 0x20746f6e, 0x70707573, 0x6574726f, 0x25203a64, + 0x53000a73, 0x69646e65, 0x5320676e, 0x43544957, 0x5f444548, 0x000a4e49, + 0x646e6553, 0x20676e69, 0x5f424f4a, 0x55514544, 0x44455545, 0x4449000a, + 0x2820454c, 0x656c6469, 0x6e65735f, 0x6f745f74, 0x736f685f, 0x75252074, + 0x6e69202c, 0x5f667562, 0x20746e63, 0x202c7525, 0x6274756f, 0x635f6675, + 0x2520746e, 0x000a2975, 0x61202020, 0x6c696176, 0x726f7720, 0x69207364, + 0x6f63206e, 0x71206d6d, 0x65756575, 0x6d203a73, 0x25206773, 0x6e692075, + 0x20667562, 0x6f207525, 0x75627475, 0x75252066, 0x6573000a, 0x6e69646e, + 0x65722067, 0x6e6f7073, 0x63206573, 0x2065646f, 0x000a6425, 0x646e6553, + 0x20676e69, 0x434f5250, 0x45535345, 0x25000a44, 0x73252073, 0x65766d20, + 0x66756220, 0x20726566, 0x6d617266, 0x69282065, 0x6675626e, 0x746e635f, + 0x2c752520, 0x74756f20, 0x5f667562, 0x20746e63, 0x0a297525, 0x20202000, + 0x736f6820, 0x61685f74, 0x656c646e, 0x25783020, 0x25783830, 0x20783830, + 0x72657375, 0x7461645f, 0x61745f61, 0x78302067, 0x78383025, 0x78383025, + 0x2020000a, 0x72662020, 0x5f656d61, 0x67616c66, 0x78302073, 0x78383025, + 0x706f7420, 0x20752520, 0x20746f62, 0x65207525, 0x2520736f, 0x65722075, + 0x7525206a, 0x2020000a, 0x6f662020, 0x74616d72, 0x25783020, 0x20783430, + 0x69736976, 0x20656c62, 0x25787525, 0x20000a75, 0x6d202020, 0x5f696e69, + 0x6d617266, 0x20795f65, 0x2d752528, 0x0a297525, 0x20202000, 0x616c7020, + 0x2073656e, 0x30257830, 0x202c7838, 0x30257830, 0x000a7838, 0x20202020, + 0x657a6973, 0x75252073, 0x7525202c, 0x2020000a, 0x72632020, 0x2078706f, + 0x63207525, 0x79706f72, 0x20752520, 0x63626661, 0x735f775f, 0x75252062, + 0x20752520, 0x63626661, 0x7261705f, 0x20736d61, 0x30257830, 0x000a7838, + 0x20202020, 0x6b656570, 0x25783020, 0x25783230, 0x25783230, 0x25783230, + 0x0a783230, 0x20202000, 0x616c7020, 0x745f656e, 0x3020706f, 0x38302578, + 0x78302078, 0x78383025, 0x25783020, 0x0a783830, 0x20202000, 0x616c7020, + 0x625f656e, 0x3020746f, 0x38302578, 0x78302078, 0x78383025, 0x25783020, + 0x0a783830, 0x20202000, 0x72747320, 0x73656469, 0x25202020, 0x64252064, + 0x0a642520, 0x20202000, 0x78616d20, 0x78752520, 0x000a7525, 0x25207325, + 0x766d2073, 0x75622065, 0x72656666, 0x74696220, 0x65727473, 0x28206d61, + 0x75626e69, 0x6e635f66, 0x75252074, 0x756f202c, 0x66756274, 0x746e635f, + 0x29752520, 0x2020000a, 0x69622020, 0x72747374, 0x5f6d6165, 0x67616c66, + 0x78302073, 0x78383025, 0x736f6520, 0x75252066, 0x666f6520, 0x20752520, + 0x20736f65, 0x65207525, 0x7362666f, 0x20752520, 0x74617473, 0x75252073, + 0x2020000a, 0x64612020, 0x30207264, 0x38302578, 0x6c612078, 0x20636f6c, + 0x6f207525, 0x25206666, 0x69662075, 0x25206c6c, 0x25000a75, 0x73252073, + 0x65766d20, 0x66756220, 0x20726566, 0x61726170, 0x6574656d, 0x74202c72, + 0x20657079, 0x000a7525, 0x25207325, 0x766d2073, 0x75622065, 0x72656666, + 0x6e656720, 0x6c617265, 0x6e692820, 0x5f667562, 0x20746e63, 0x202c7525, + 0x6274756f, 0x635f6675, 0x2520746e, 0x000a2975, 0x20202020, 0x65707974, + 0x2c752520, 0x6e6f6320, 0x5f676966, 0x657a6973, 0x0a752520, 0x20202000, + 0x6e6f6320, 0x20676966, 0x30257830, 0x30207832, 0x32302578, 0x78302078, + 0x78323025, 0x25783020, 0x0a783230, 0x20202000, 0x66756220, 0x5f726566, + 0x20727470, 0x30257830, 0x202c7838, 0x66667562, 0x735f7265, 0x20657a69, + 0x000a7525, 0x74736f48, 0x69727020, 0x6220746e, 0x65666675, 0x52452072, + 0x2e524f52, 0x20732520, 0x6d207325, 0x62206576, 0x65666675, 0x69772072, + 0x75206874, 0x6f6e6b6e, 0x63206e77, 0x2065646f, 0x000a7525, 0x00746f47, + 0x5054554f, 0x53005455, 0x69646e65, 0x4900676e, 0x5455504e, 0x63655200, + 0x65766965, 0x554f2064, 0x54555054, 0x554c465f, 0x73204853, 0x65746174, + 0x20752520, 0x7074756f, 0x625f7475, 0x6b636f6c, 0x25206465, 0x4f000a75, + 0x75707475, 0x6c662074, 0x20687375, 0x796c6e6f, 0x6c6c6120, 0x6465776f, + 0x65687720, 0x7473206e, 0x6570706f, 0x6f202c64, 0x66612072, 0x20726574, + 0x70736572, 0x65736e6f, 0x45535f20, 0x4e455551, 0x505f4543, 0x4d415241, + 0x52455445, 0x65530053, 0x6e69646e, 0x554f2067, 0x54555054, 0x554c465f, + 0x44454853, 0x6553000a, 0x6e69646e, 0x4e492067, 0x5f545550, 0x53554c46, + 0x0a444548, 0x63655200, 0x65766965, 0x4e492064, 0x5f545550, 0x53554c46, + 0x49000a48, 0x5455504e, 0x554c465f, 0x6f204853, 0x20796c6e, 0x6f6c6c61, + 0x20646577, 0x6e656877, 0x206e6920, 0x504f5453, 0x20444550, 0x74617473, + 0x52002e65, 0x69656365, 0x20646576, 0x000a4f47, 0x5f45564d, 0x55514552, + 0x5f545345, 0x45444f43, 0x3a4f475f, 0x70204120, 0x69766572, 0x2073756f, + 0x74617473, 0x72742065, 0x69736e61, 0x6e6f6974, 0x20736920, 0x6c697473, + 0x6570206c, 0x6e69646e, 0x4e002e67, 0x6f6a206f, 0x6e692062, 0x626f6a20, + 0x65757120, 0x002e6575, 0x65636552, 0x64657669, 0x4f545320, 0x4d000a50, + 0x525f4556, 0x45555145, 0x435f5453, 0x5f45444f, 0x504f5453, 0x2041203a, + 0x76657270, 0x73756f69, 0x61747320, 0x74206574, 0x736e6172, 0x6f697469, + 0x7369206e, 0x69747320, 0x70206c6c, 0x69646e65, 0x002e676e, 0x6e616843, + 0x73206567, 0x65746174, 0x206f7420, 0x000a6425, 0x646e6553, 0x20676e69, + 0x54415453, 0x48435f45, 0x45474e41, 0x77656e20, 0x6174735f, 0x253d6574, + 0x53000a75, 0x65746174, 0x61686320, 0x2065676e, 0x646e6570, 0x20676e69, + 0x74617473, 0x64253d65, 0x6e657020, 0x676e6964, 0x0a64253d, 0x63655200, + 0x65766965, 0x55442064, 0x000a504d, 0x5f45564d, 0x55514552, 0x5f545345, + 0x45444f43, 0x4d55445f, 0x6f6e2050, 0x6c612074, 0x65776f6c, 0x6f662064, + 0x72702072, 0x6365746f, 0x20646574, 0x73736573, 0x736e6f69, 0x626e002e, + 0x75622072, 0x72656666, 0x65682073, 0x203a646c, 0x69207525, 0x7475706e, + 0x20752520, 0x7074756f, 0x000a7475, 0x69617661, 0x6f77206c, 0x20736472, + 0x63206e69, 0x206d6d6f, 0x75657571, 0x203a7365, 0x2067736d, 0x69207525, + 0x6675626e, 0x20752520, 0x6274756f, 0x25206675, 0x52000a75, 0x69656365, + 0x20646576, 0x474e4950, 0x6552000a, 0x76696563, 0x44206465, 0x47554245, + 0x736d202c, 0x643e2d67, 0x5f617461, 0x657a6973, 0x2c64253d, 0x76656c20, + 0x253d6c65, 0x63000a64, 0x2065646f, 0x6425203d, 0x7254000a, 0x69736e61, + 0x6e6f6974, 0x46494620, 0x766f204f, 0x6c667265, 0x5500776f, 0x7075736e, + 0x74726f70, 0x6d206465, 0x61737365, 0x63206567, 0x2e65646f, 0x69424d00, + 0x206f666e, 0x7074756f, 0x6e207475, 0x6120746f, 0x776f6c6c, 0x66206465, + 0x7020726f, 0x65746f72, 0x64657463, 0x73657320, 0x6e6f6973, 0x6142002e, + 0x424d2064, 0x6f666e69, 0x74756f20, 0x3b747570, 0x78616d20, 0x7a69735f, + 0x73282065, 0x64697274, 0x5d305b65, 0x756d2029, 0x62207473, 0x6f6e2065, + 0x656e2d6e, 0x69746167, 0x000a6576, 0x20646142, 0x6e69424d, 0x6f206f66, + 0x75707475, 0x75203b74, 0x5f646573, 0x657a6973, 0x73756d20, 0x6f6e2074, + 0x65622074, 0x72616c20, 0x20726567, 0x6e616874, 0x78616d20, 0x7a69735f, + 0x4d000a65, 0x666e6942, 0x756f206f, 0x74757074, 0x66756220, 0x20726566, + 0x20736168, 0x656c6c69, 0x206c6167, 0x61636f6c, 0x6e6f6974, 0x64614200, + 0x69424d20, 0x206f666e, 0x7074756f, 0x62207475, 0x65666675, 0x4e002e72, + 0x7573206f, 0x726f7070, 0x6f662074, 0x68742072, 0x62207369, 0x65666675, + 0x6f632072, 0x20726f6c, 0x6d726f66, 0x002e7461, 0x64726168, 0x65726177, + 0x656f6420, 0x6f6e2073, 0x75732074, 0x726f7070, 0x46412074, 0x6f204342, + 0x75707475, 0x61680074, 0x61776472, 0x64206572, 0x2073656f, 0x20746f6e, + 0x70707573, 0x2074726f, 0x5f45564d, 0x4d524f46, 0x595f5441, 0x32345655, + 0x30505f30, 0x54003031, 0x20736968, 0x65727473, 0x6e206d61, 0x73646565, + 0x206e6120, 0x65746e69, 0x63616c72, 0x62206465, 0x65666675, 0x54002e72, + 0x20736968, 0x65727473, 0x6e206d61, 0x73646565, 0x6e206120, 0x692d6e6f, + 0x7265746e, 0x6563616c, 0x75622064, 0x72656666, 0x694d002e, 0x726f7272, + 0x20676e69, 0x6e207369, 0x7320746f, 0x6f707075, 0x64657472, 0x726f6620, + 0x63656420, 0x2e65646f, 0x74694200, 0x74706564, 0x666f2068, 0x42464120, + 0x756f2043, 0x74757074, 0x66756220, 0x20726566, 0x7473756d, 0x20656220, + 0x622d3031, 0x62207469, 0x75616365, 0x6f206573, 0x65642066, 0x65646f63, + 0x74732064, 0x6d616572, 0x6942002e, 0x70656474, 0x6f206874, 0x46412066, + 0x6f204342, 0x75707475, 0x75622074, 0x72656666, 0x73756d20, 0x65622074, + 0x622d3820, 0x62207469, 0x75616365, 0x6f206573, 0x65642066, 0x65646f63, + 0x74732064, 0x6d616572, 0x4641002e, 0x66204342, 0x616d726f, 0x756d2074, + 0x62207473, 0x3a342065, 0x20323a32, 0x636e6973, 0x65642065, 0x65646f63, + 0x74732064, 0x6d616572, 0x2e736920, 0x42464100, 0x6f662043, 0x74616d72, + 0x73756d20, 0x65622074, 0x323a3420, 0x7320303a, 0x65636e69, 0x63656420, + 0x6465646f, 0x72747320, 0x206d6165, 0x002e7369, 0x61746f52, 0x6e6f6974, + 0x20736920, 0x20746f6e, 0x70707573, 0x6574726f, 0x6f662064, 0x46412072, + 0x62204342, 0x65666675, 0x002e7372, 0x43424641, 0x776f6420, 0x6163736e, + 0x676e696c, 0x746f6e20, 0x70757320, 0x74726f70, 0x66206465, 0x6920726f, + 0x7265746e, 0x6563616c, 0x74732064, 0x6d616572, 0x6e490073, 0x696c6176, + 0x63732064, 0x6e696c61, 0x65732067, 0x6f662074, 0x46412072, 0x62204342, + 0x65666675, 0x6d202c72, 0x20747375, 0x30206562, 0x20726f20, 0x46002e31, + 0x6420726f, 0x736e776f, 0x696c6163, 0x202c676e, 0x43424641, 0x616c7020, + 0x3120656e, 0x20736920, 0x20746f6e, 0x76206e69, 0x64696c61, 0x6d656d20, + 0x2079726f, 0x69676572, 0x002e6e6f, 0x43424641, 0x616c7020, 0x3120656e, + 0x7a697320, 0x68732065, 0x646c756f, 0x746f6e20, 0x20656220, 0x6f72657a, + 0x4641002e, 0x70204342, 0x656e616c, 0x69203020, 0x6f6e2073, 0x6e692074, + 0x6c617620, 0x6d206469, 0x726f6d65, 0x65722079, 0x6e6f6967, 0x4641002e, + 0x70204342, 0x656e616c, 0x73203020, 0x20657a69, 0x756f6873, 0x6e20646c, + 0x6220746f, 0x657a2065, 0x002e6f72, 0x20726f46, 0x65746e69, 0x63616c72, + 0x41202c65, 0x20434246, 0x6e616c70, 0x20312065, 0x6e207369, 0x6920746f, + 0x6176206e, 0x2064696c, 0x6f6d656d, 0x72207972, 0x6f696765, 0x46002e6e, + 0x6920726f, 0x7265746e, 0x6563616c, 0x6661202c, 0x775f6362, 0x68746469, + 0x5f6e695f, 0x65707573, 0x6f6c6272, 0x20736b63, 0x7473756d, 0x20656220, + 0x20656874, 0x656d6173, 0x726f6620, 0x746f6220, 0x6c702068, 0x73656e61, + 0x4641002e, 0x74204342, 0x64656c69, 0x61656820, 0x20726564, 0x75716572, + 0x73657269, 0x6c697420, 0x62206465, 0x2e79646f, 0x42464100, 0x32332043, + 0x73203878, 0x72657075, 0x636f6c62, 0x6e20736b, 0x7320746f, 0x6f707075, + 0x64657472, 0x726f6620, 0x63656420, 0x2065646f, 0x7074756f, 0x43007475, + 0x6e206e61, 0x7520746f, 0x34206573, 0x323a323a, 0x66756220, 0x20726566, + 0x73206669, 0x61657274, 0x7369206d, 0x323a3420, 0x002e303a, 0x61766e49, + 0x2064696c, 0x6c616373, 0x20676e69, 0x20746573, 0x20726f66, 0x6e616c70, + 0x62207261, 0x65666675, 0x6d002e72, 0x665f7861, 0x656d6172, 0x6469775f, + 0x73206874, 0x6c756f68, 0x65622064, 0x72616c20, 0x20726567, 0x6e616874, + 0x72657a20, 0x6d002e6f, 0x665f7861, 0x656d6172, 0x6965685f, 0x20746867, + 0x756f6873, 0x6220646c, 0x616c2065, 0x72656772, 0x61687420, 0x657a206e, + 0x002e6f72, 0x75736e55, 0x726f7070, 0x20646574, 0x6e616c70, 0x62207261, + 0x65666675, 0x6f632072, 0x20726f6c, 0x6d726f66, 0x002e7461, 0x69727453, + 0x74206564, 0x73206f6f, 0x6c6c616d, 0x206f7420, 0x646c6f68, 0x78616d20, + 0x6172665f, 0x775f656d, 0x68746469, 0x6c70002e, 0x5f656e61, 0x20706f74, + 0x7473756d, 0x20656220, 0x6d206e69, 0x726f6d65, 0x65722079, 0x6e6f6967, + 0x41524620, 0x5542454d, 0x70002e46, 0x656e616c, 0x746f625f, 0x73756d20, + 0x65622074, 0x206e6920, 0x6f6d656d, 0x72207972, 0x6f696765, 0x5246206e, + 0x42454d41, 0x002e4655, 0x6e616c70, 0x6f625f65, 0x68732074, 0x646c756f, + 0x20656220, 0x6f72657a, 0x726f6620, 0x6e6f6e20, 0x746e692d, 0x616c7265, + 0x20646563, 0x65727473, 0x002e6d61, 0x72646441, 0x20737365, 0x7520666f, + 0x6573756e, 0x6c702064, 0x20656e61, 0x756f6873, 0x6220646c, 0x657a2065, + 0x002e6f72, 0x69727453, 0x6f206564, 0x6e752066, 0x64657375, 0x616c7020, + 0x7320656e, 0x6c756f68, 0x65622064, 0x72657a20, 0x52002e6f, 0x7461746f, + 0x206e6f69, 0x206e6163, 0x20746f6e, 0x64206562, 0x20656e6f, 0x20726f66, + 0x3a323a34, 0x57002e32, 0x48435441, 0x20474f44, 0x00717269, 0x2a2a2a2a, + 0x53415220, 0x20642543, 0x524f4241, 0x2a2a2054, 0x000a2a2a, 0x43502020, + 0x20202020, 0x7830203d, 0x78383025, 0x2020000a, 0x20205253, 0x203d2020, + 0x30257830, 0x000a7838, 0x41462020, 0x20202052, 0x7830203d, 0x78383025, + 0x2020000a, 0x32255b52, 0x3d205d64, 0x25783020, 0x0a783830, 0x766e4900, + 0x64696c61, 0x66756220, 0x20726566, 0x4d206e69, 0x435f4556, 0x5f4d4d4f, + 0x5f465542, 0x5f514e49, 0x52444441, 0x78652820, 0x74636570, 0x6d206465, + 0x625f6576, 0x65666675, 0x69625f72, 0x72747374, 0x296d6165, 0x6e49002e, + 0x696c6176, 0x6e692064, 0x20747570, 0x66667562, 0x002e7265, 0x78656c46, + 0x656c6269, 0x776f6420, 0x6163736e, 0x6e20656c, 0x7320746f, 0x6f707075, + 0x64657472, 0x20796220, 0x64726168, 0x65726177, 0x6143002e, 0x6f6e206e, + 0x73752074, 0x2d2d2065, 0x6e776f64, 0x6163735f, 0x5820656c, 0x74697720, + 0x2d2d2068, 0x5f6c7364, 0x69746172, 0x6f685f6f, 0x65762f72, 0x6e612072, + 0x73642064, 0x72665f6c, 0x5f656d61, 0x74646977, 0x65682f68, 0x74686769, + 0x20746120, 0x656d6173, 0x6d697420, 0x43002e65, 0x6e206e61, 0x7520746f, + 0x2d206573, 0x6c73642d, 0x7461725f, 0x685f6f69, 0x762f726f, 0x58207265, + 0x74697720, 0x73642068, 0x72665f6c, 0x5f656d61, 0x74646977, 0x65682f68, + 0x74686769, 0x20746120, 0x656d6173, 0x6d697420, 0x66002e65, 0x6978656c, + 0x20656c62, 0x6e776f64, 0x6c616373, 0x20676e69, 0x75736e75, 0x726f7070, + 0x20646574, 0x75706e69, 0x65722074, 0x756c6f73, 0x6e6f6974, 0x61687420, + 0x656c2074, 0x74207373, 0x206e6168, 0x41002e32, 0x2c434246, 0x20726f20, + 0x2c746f6e, 0x73756d20, 0x65622074, 0x65737520, 0x6f632064, 0x7369736e, + 0x746e6574, 0x6420796c, 0x6e697275, 0x65642067, 0x65646f63, 0x49424d00, + 0x204f464e, 0x7074756f, 0x202c7475, 0x6e20726f, 0x202c746f, 0x7473756d, + 0x20656220, 0x64657375, 0x6e6f6320, 0x74736973, 0x6c746e65, 0x75642079, + 0x676e6972, 0x63656420, 0x0065646f, 0x61766e49, 0x2064696c, 0x5f65766d, + 0x66667562, 0x675f7265, 0x72656e65, 0x69206c61, 0x564d206e, 0x4f435f45, + 0x425f4d4d, 0x4f5f4655, 0x5f515455, 0x52444441, 0x6950002e, 0x70206570, + 0x75746369, 0x6a206572, 0x6120626f, 0x6165726c, 0x68207964, 0x61207361, + 0x564d206e, 0x55425f45, 0x52454646, 0x444f435f, 0x45475f45, 0x4152454e, + 0x6568204c, 0x72656461, 0x73736120, 0x6169636f, 0x20646574, 0x68746977, + 0x00746920, 0x75736e55, 0x726f7070, 0x20646574, 0x65707974, 0x20666f20, + 0x5f65766d, 0x66667562, 0x675f7265, 0x72656e65, 0x62206c61, 0x65666675, + 0x6e692072, 0x74756f20, 0x20747570, 0x75657571, 0x49002e65, 0x6c61766e, + 0x62206469, 0x65666675, 0x6e692072, 0x45564d20, 0x4d4f435f, 0x55425f4d, + 0x554f5f46, 0x415f5154, 0x20524444, 0x70786528, 0x65746365, 0x766d2064, + 0x75625f65, 0x72656666, 0x6172665f, 0x6f20656d, 0x766d2072, 0x75625f65, + 0x72656666, 0x6e65675f, 0x6c617265, 0x44002e29, 0x203a4250, 0x5f6d756e, + 0x6d617266, 0x253d7365, 0x73752064, 0x3d656761, 0x30257830, 0x64207838, + 0x665f6270, 0x6e6c6c75, 0x3d737365, 0x6c206425, 0x5f657669, 0x5f666572, + 0x70736964, 0x73616d5f, 0x78303d6b, 0x000a7825, 0x3a425044, 0x64322520, + 0x6469203a, 0x32253d78, 0x69642064, 0x616c7073, 0x726f5f79, 0x3d726564, + 0x20643625, 0x73756c66, 0x64253d68, 0x6e657020, 0x676e6964, 0x2064253d, + 0x66667562, 0x755f7265, 0x3d646573, 0x6e206425, 0x756f5f6f, 0x74757074, + 0x2064253d, 0x725f7369, 0x253d6665, 0x61742064, 0x74656772, 0x3d64695f, + 0x000a6425, 0x7373696d, 0x20676e69, 0x74726170, 0x666f2073, 0x61726620, + 0x4900656d, 0x6c61766e, 0x62206469, 0x65666675, 0x6e692072, 0x45564d20, + 0x4d4f435f, 0x55425f4d, 0x4e495f46, 0x44415f51, 0x28205244, 0x65707865, + 0x64657463, 0x65766d20, 0x6675625f, 0x5f726566, 0x73746962, 0x61657274, + 0x002e296d, 0x2d746573, 0x2074706f, 0x34363268, 0x3a636564, 0x736e5520, + 0x6f707075, 0x64657472, 0x74706f20, 0x006e6f69, 0x64616568, 0x70207265, + 0x65737261, 0x72726520, 0x202c726f, 0x3a434950, 0x5d64255b, 0x5244492c, + 0x64255b3a, 0x52462c5d, 0x3a454d41, 0x5d64255b, 0x5444552c, 0x2578305b, + 0x25783830, 0x5d783830, 0x736e7500, 0x6f707075, 0x64657472, 0x6f727020, + 0x656c6966, 0x736e7500, 0x6f707075, 0x64657472, 0x72686320, 0x5f616d6f, + 0x6d726f66, 0x695f7461, 0x55006364, 0x7075736e, 0x74726f70, 0x6d206465, + 0x66666162, 0x72747320, 0x206d6165, 0x68746977, 0x64697720, 0x6f206874, + 0x20726576, 0x38343032, 0x00000000, 0x01270723, 0x0000000a, 0x00000063, + 0x00000063, 0x0000000e, 0x0000000b, 0x0000018c, 0x000000e1, 0x00000014, + 0x0000000c, 0x0000018c, 0x00000252, 0x00000028, 0x0000000d, 0x0000018c, + 0x00000252, 0x00000050, 0x00000014, 0x0000018c, 0x00000252, 0x00000050, + 0x00000015, 0x00000318, 0x000004a4, 0x000000a0, 0x00000016, 0x00000654, + 0x000007e9, 0x000000a0, 0x0000001e, 0x00000654, 0x000007e9, 0x00000190, + 0x0000001f, 0x00000e10, 0x00001194, 0x00000230, 0x00000020, 0x00001400, + 0x00001400, 0x00000320, 0x00000028, 0x00002000, 0x00002000, 0x000003e8, + 0x00000029, 0x00002000, 0x00002000, 0x000009c4, 0x0000002a, 0x00002200, + 0x00002200, 0x000009c4, 0x00000032, 0x00005640, 0x00006bd0, 0x00001518, + 0x00000033, 0x00009000, 0x0000b400, 0x00002580, 0x0000003c, 0x00022000, + 0x0002a800, 0x00002580, 0x0000003d, 0x00022000, 0x0002a800, 0x00004b00, + 0x0000003e, 0x00022000, 0x0002a800, 0x00007d00, 0x000000ff, 0x00022000, + 0x0002a800, 0x00007d00, 0x01010000, 0x0b0a0b0c, 0x21280b10, 0x0b140b18, + 0x21500b20, 0x0b0f0b12, 0x63a02140, 0x02030304, 0x00000102, 0x074da342, + 0x47642758, 0x0000476e, 0xff0100ff, 0xffff0403, 0x08040100, 0x06030205, + 0x0a0d0c09, 0x0f0e0b07, 0x10080100, 0x0a030209, 0x19201811, 0x05040b12, + 0x211a130c, 0x22293028, 0x060d141b, 0x1c150e07, 0x38312a23, 0x242b3239, + 0x170f161d, 0x332c251e, 0x2d343b3a, 0x2e271f26, 0x363d3c35, 0x3f3e372f, + 0x00018558, 0x00018558, 0x00018558, 0x00018568, 0x00018568, 0x00018568, + 0x00018578, 0x000185b8, 0x140d0d06, 0x1c1c1414, 0x20201c1c, 0x2a252520, + 0x140e0e0a, 0x18181414, 0x1b1b1818, 0x221e1e1b, 0x0d0a0a06, 0x10100d0b, + 0x12121010, 0x17121212, 0x17171717, 0x19191917, 0x19191919, 0x1b1b1b1b, + 0x1b1b1b1b, 0x1d1d1d1d, 0x1f1d1d1d, 0x1f1f1f1f, 0x2121211f, 0x24242121, + 0x26262424, 0x2a282826, 0x0f0d0d09, 0x11110f0d, 0x13131111, 0x15131313, + 0x15151515, 0x16161615, 0x16161616, 0x18181818, 0x18181818, 0x19191919, + 0x1b191919, 0x1b1b1b1b, 0x1c1c1c1b, 0x1e1e1c1c, 0x20201e1e, 0x23212120, + 0x75736e75, 0x726f7070, 0x20646574, 0x5f746962, 0x74706564, 0x6f740068, + 0x6977206f, 0x70206564, 0x75746369, 0x202c6572, 0x5f73626d, 0x5f726570, + 0x656e696c, 0x4d203e20, 0x575f5841, 0x48544449, 0x53424d5f, 0x00000000, + 0x01000201, 0x6e6f4c00, 0x65742067, 0x70206d72, 0x75746369, 0x69206572, + 0x7865646e, 0x2064253d, 0x676e6f4c, 0x6d726554, 0x6d617246, 0x78644965, + 0x2064253d, 0x6b73616d, 0x6164253d, 0x6165726c, 0x6d207964, 0x656b7261, + 0x6f662064, 0x65722072, 0x65726566, 0x0a65636e, 0x72615700, 0x676e696e, + 0x70202d20, 0x75746369, 0x6e206572, 0x6c20746f, 0x20676e6f, 0x6d726574, + 0x6157000a, 0x6e696e72, 0x202d2067, 0x74636970, 0x20657275, 0x20746f6e, + 0x726f6873, 0x65742074, 0x000a6d72, 0x2a2a2a2a, 0x53415220, 0x20642543, + 0x524f4241, 0x2a2a2054, 0x000a2a2a, 0x43502020, 0x20202020, 0x7830203d, + 0x78383025, 0x2020000a, 0x20205253, 0x203d2020, 0x30257830, 0x000a7838, + 0x41462020, 0x20202052, 0x7830203d, 0x78383025, 0x2020000a, 0x32255b52, + 0x3d205d64, 0x25783020, 0x0a783830, 0x73657200, 0x61756469, 0x3020736c, + 0x20702578, 0x78257830, 0x0000000a, 0x0000fbfb, 0x0000fbfb, 0x0000fbfb, + 0x0000fbfb, 0x75736e55, 0x726f7070, 0x20646574, 0x6e776f64, 0x6c616373, + 0x20676e69, 0x69746172, 0x2a00216f, 0x202a2a2a, 0x43534152, 0x41206425, + 0x54524f42, 0x2a2a2a20, 0x20000a2a, 0x20435020, 0x3d202020, 0x25783020, + 0x0a783830, 0x53202000, 0x20202052, 0x30203d20, 0x38302578, 0x20000a78, + 0x52414620, 0x3d202020, 0x25783020, 0x0a783830, 0x52202000, 0x6432255b, + 0x203d205d, 0x30257830, 0x000a7838, 0x78656c46, 0x656c6269, 0x776f4420, + 0x6163736e, 0x676e696c, 0x656f6420, 0x6f6e2073, 0x75732074, 0x726f7070, + 0x69742074, 0x2064656c, 0x7074756f, 0x66207475, 0x616d726f, 0x46002e74, + 0x2078656c, 0x206c7364, 0x706f7263, 0x72726520, 0x6f20726f, 0x72756363, + 0x2c646572, 0x656c7020, 0x20657361, 0x20786966, 0x00217469, 0x00011838, + 0x00011838, 0x00011838, 0x00011838, 0x33323130, 0x37363534, 0x00003938, + 0x33323130, 0x37363534, 0x62613938, 0x66656463, 0x72726f43, 0x65747075, + 0x6e692064, 0x20747570, 0x75657571, 0x4f002e65, 0x20796c6e, 0x5f45564d, + 0x46465542, 0x435f5245, 0x5f45444f, 0x4d415246, 0x726f2045, 0x45564d20, + 0x4655425f, 0x5f524546, 0x45444f43, 0x4e45475f, 0x4c415245, 0x6c6c6120, + 0x6465776f, 0x6e49002e, 0x696c6176, 0x75622064, 0x72656666, 0x61656820, + 0x20726564, 0x4d206e69, 0x435f4556, 0x5f4d4d4f, 0x5f465542, 0x5154554f, + 0x4444415f, 0x54002e52, 0x6c206f6f, 0x65677261, 0x71657220, 0x74736575, + 0x73656d20, 0x65676173, 0x6f54002e, 0x616c206f, 0x20656772, 0x66667562, + 0x6d207265, 0x61737365, 0x002e6567, 0x61766e49, 0x2064696c, 0x66667562, + 0x69207265, 0x564d206e, 0x4f435f45, 0x425f4d4d, 0x495f4655, 0x415f514e, + 0x2e524444, 0x45564d00, 0x723a5052, 0x705f6d61, 0x746e6972, 0x20667562, + 0x6e207369, 0x6120746f, 0x6c696176, 0x656c6261, 0x4d000a2e, 0x50524556, + 0x6172203a, 0x72705f6d, 0x66746e69, 0x6d75645f, 0x72662070, 0x30206d6f, + 0x0a702578, 0x54505200, 0x504d5544, 0x616c663a, 0x78253d67, 0x6e69202c, + 0x3d786564, 0x202c7525, 0x635f7277, 0x253d746e, 0x72202c75, 0x6e635f64, + 0x75253d74, 0x46000a2e, 0x75252d57, 0x7325203a, 0x45564d00, 0x663a5052, + 0x3d67616c, 0x202c7825, 0x3d786469, 0x202c7525, 0x635f7277, 0x253d746e, + 0x72202c75, 0x6e635f64, 0x75253d74, 0x20000a2e, 0x78343025, 0x78382500, + 0x0a73253a, 0x30252000, 0x00007832, 0x1007f000, 0x49574558, 0x35565644, + 0x2d37562f, 0x34363248, 0x3a434544, 0x65720020, 0x657a6973, 0x7470203a, + 0x78302072, 0x78383025, 0x77656e20, 0x7a69735f, 0x75252065, 0x766d000a, + 0x656d5f65, 0x65725f6d, 0x657a6973, 0x6c616d00, 0x3a636f6c, 0x7a697320, + 0x75252065, 0x616d202c, 0x75252078, 0x6572202c, 0x6e6f6967, 0x2c752520, + 0x676f6c20, 0x6c615f32, 0x206e6769, 0x000a7525, 0x6c6c616d, 0x203a636f, + 0x75746572, 0x64656e72, 0x25783020, 0x6d000a70, 0x6d5f6576, 0x615f6d65, + 0x636f6c6c, 0x6c6c4100, 0x7461636f, 0x6d206465, 0x726f6d65, 0x61682079, + 0x72772073, 0x20676e6f, 0x67696c61, 0x6e656d6e, 0x78450074, 0x74636570, + 0x61206465, 0x636f6c6c, 0x64657461, 0x6d656d20, 0x2079726f, 0x50206e69, + 0x45544f52, 0x44455443, 0x67657220, 0x2e6e6f69, 0x70784500, 0x65746365, + 0x6c612064, 0x61636f6c, 0x20646574, 0x6f6d656d, 0x69207972, 0x5246206e, + 0x42454d41, 0x72204655, 0x6f696765, 0x6e002e6e, 0x7720746f, 0x69746961, + 0x3d00676e, 0x3d3d3d3d, 0x3d3d3d3d, 0x4d44563d, 0x45525f41, 0x55445f47, + 0x3d3d504d, 0x3d3d3d3d, 0x000a3d3d, 0x64343025, 0x25783028, 0x29783430, + 0x20202020, 0x30257830, 0x000a7838, 0x69207325, 0x5f656c64, 0x6c637963, + 0x000a7365, 0x25207325, 0x7338312d, 0x35312520, 0x25000a64, 0x6f542073, + 0x5f6c6174, 0x656c6469, 0x20202020, 0x20202020, 0x64353125, 0x6f63000a, + 0x25206572, 0x73252064, 0x322d2520, 0x63207330, 0x3d65646f, 0x20643325, + 0x3d636970, 0x20643325, 0x5b736f70, 0x3d5d7570, 0x64332528, 0x6433252c, + 0x6c632029, 0x64253d6b, 0x6f63000a, 0x25206572, 0x73252064, 0x322d2520, + 0x20207330, 0x20202020, 0x20202020, 0x3d636970, 0x20643325, 0x5b736f70, + 0x3d5d7570, 0x64332528, 0x6433252c, 0x6e000a29, 0x7320746f, 0x77207465, + 0x69746961, 0x5300676e, 0x525f434f, 0x532e4645, 0x55544154, 0x20202053, + 0x20202020, 0x30202020, 0x0a782578, 0x434f5300, 0x4645525f, 0x4e4f432e, + 0x20474946, 0x20202020, 0x20202020, 0x25783020, 0x53000a78, 0x525f434f, + 0x4c2e4645, 0x52455649, 0x20204645, 0x20202020, 0x30202020, 0x0a782578, + 0x434f5300, 0x4645525f, 0x4f54532e, 0x53414d50, 0x2020204b, 0x20202020, + 0x25783020, 0x53000a78, 0x4d5f434f, 0x54532e43, 0x20545241, 0x20202020, + 0x20202020, 0x30202020, 0x0a782578, 0x434f5300, 0x2e434d5f, 0x54415453, + 0x20205355, 0x20202020, 0x20202020, 0x25783020, 0x53000a78, 0x545f434f, + 0x532e4652, 0x55544154, 0x20202053, 0x20202020, 0x30202020, 0x0a782578, + 0x434f5300, 0x4652545f, 0x4742442e, 0x54415453, 0x20205355, 0x20202020, + 0x25783020, 0x53000a78, 0x445f434f, 0x432e4c42, 0x204c5254, 0x20202020, + 0x20202020, 0x30202020, 0x0a782578, 0x434f5300, 0x4c42445f, 0x5254432e, + 0x2020314c, 0x20202020, 0x20202020, 0x25783020, 0x53000a78, 0x445f434f, + 0x532e4c42, 0x55544154, 0x20202053, 0x20202020, 0x30202020, 0x0a782578, + 0x434f5300, 0x4c42445f, 0x4154532e, 0x31535554, 0x20202020, 0x20202020, + 0x25783020, 0x53000a78, 0x445f434f, 0x532e4c42, 0x55544154, 0x20203253, + 0x20202020, 0x30202020, 0x0a782578, 0x434f5300, 0x4c42445f, 0x4154532e, + 0x33535554, 0x20202020, 0x20202020, 0x25783020, 0x53000a78, 0x425f434f, + 0x54535449, 0x4d414552, 0x4243412e, 0x532e4441, 0x55544154, 0x20202053, + 0x20202020, 0x78257830, 0x4f53000a, 0x49425f43, 0x52545354, 0x2e4d4145, + 0x4942444d, 0x56415354, 0x204c4941, 0x20202020, 0x30202020, 0x0a782578, + 0x434f5300, 0x5449425f, 0x45525453, 0x442e4d41, 0x435f4645, 0x204c5254, + 0x20202020, 0x20202020, 0x78302020, 0x000a7825, 0x5f434f53, 0x53544942, + 0x41455254, 0x4d482e4d, 0x45525056, 0x54532e44, 0x53555441, 0x20202020, + 0x25783020, 0x53000a78, 0x425f434f, 0x54535449, 0x4d414552, 0x4143482e, + 0x2e444142, 0x54415453, 0x20205355, 0x20202020, 0x78257830, 0x4853000a, + 0x44455241, 0x4d41525f, 0x7069702e, 0x74735f65, 0x20657461, 0x75252020, + 0x73252820, 0x53000a29, 0x45524148, 0x41525f44, 0x73692e4d, 0x73616c5f, + 0x6f635f74, 0x25206572, 0x53000a75, 0x45524148, 0x41525f44, 0x6f6a2e4d, + 0x68705f62, 0x20657361, 0x25202020, 0x53000a75, 0x45524148, 0x41525f44, + 0x6f6a2e4d, 0x74735f62, 0x20657461, 0x25202020, 0x53000a78, 0x45524148, + 0x41525f44, 0x756f2e4d, 0x626d5f74, 0x20202020, 0x25202020, 0x53000a75, + 0x45524148, 0x41525f44, 0x72742e4d, 0x66736e61, 0x5f6d726f, 0x2520626d, + 0x53000a75, 0x45524148, 0x41525f44, 0x616c2e4d, 0x6d5f7473, 0x666e6962, + 0x2520206f, 0x53000a75, 0x45524148, 0x41525f44, 0x756f2e4d, 0x74757074, + 0x7274735f, 0x73657069, 0x6d6f635f, 0x74656c70, 0x25206465, 0x53000a75, + 0x45524148, 0x41525f44, 0x72612e4d, 0x735f7165, 0x70697274, 0x695f7365, + 0x65757373, 0x75252064, 0x4453000a, 0x462e414d, 0x544c5541, 0x20202020, + 0x20202020, 0x20202020, 0x78302020, 0x000a7825, 0x74617453, 0x6f207375, + 0x6c622066, 0x656b636f, 0x61742064, 0x20736b73, 0x20726f66, 0x65726f63, + 0x3a752520, 0x6b6c6320, 0x2075253d, 0x4f53000a, 0x59535f43, 0x52544353, + 0x56532e4c, 0x5645524e, 0x20202020, 0x20202020, 0x20202020, 0x20202020, + 0x0a782520, 0x5f574600, 0x20564552, 0x20202020, 0x20202020, 0x20202020, + 0x20202020, 0x20202020, 0x20202020, 0x20202020, 0x000a7825, 0x53534553, + 0x5f4e4f49, 0x2e4d4152, 0x69746361, 0x635f6576, 0x7365726f, 0x20202020, + 0x20202020, 0x25202020, 0x46000a75, 0x776d7269, 0x20657261, 0x74617473, + 0x6f207375, 0x616d2066, 0x72657473, 0x6f632820, 0x25206572, 0x203a2964, + 0x3d6b6c63, 0x0a206425, 0x53455300, 0x4e4f4953, 0x4d41525f, 0x7269662e, + 0x7261776d, 0x695f7365, 0x73755f6e, 0x20202065, 0x20202020, 0x202c6425, + 0x202c6425, 0x202c6425, 0x202c6425, 0x202c6425, 0x202c6425, 0x202c6425, + 0x000a6425, 0x53534553, 0x5f4e4f49, 0x2e4d4152, 0x7473616d, 0x635f7265, + 0x2065726f, 0x20202020, 0x20202020, 0x25202020, 0x53000a75, 0x49535345, + 0x525f4e4f, 0x6d2e4d41, 0x65747361, 0x6c615f72, 0x61636f6c, 0x20646574, + 0x20202020, 0x64252020, 0x4553000a, 0x4f495353, 0x41525f4e, 0x616d2e4d, + 0x72657473, 0x6769735f, 0x736c616e, 0x20202020, 0x20202020, 0x38302520, + 0x30252078, 0x25207838, 0x0a783830, 0x53455300, 0x4e4f4953, 0x4d41525f, + 0x6369702e, 0x65727574, 0x6e695f73, 0x7069705f, 0x20202065, 0x20202020, + 0x000a6425, 0x53534553, 0x5f4e4f49, 0x2e4d4152, 0x65706970, 0x6369705f, + 0x6961745f, 0x2020206c, 0x20202020, 0x25202020, 0x53000a75, 0x49535345, + 0x525f4e4f, 0x702e4d41, 0x5f657069, 0x5f636970, 0x64616568, 0x20202020, + 0x20202020, 0x75252020, 0x4553000a, 0x4f495353, 0x41525f4e, 0x65702e4d, + 0x6e69646e, 0x74735f67, 0x20657461, 0x20202020, 0x20202020, 0x0a752520, + 0x53455300, 0x4e4f4953, 0x4d41525f, 0x7365732e, 0x6e6f6973, 0x6174735f, + 0x20206574, 0x20202020, 0x20202020, 0x000a7525, 0x53534553, 0x5f4e4f49, + 0x2e4d4152, 0x706d6f63, 0x6574656c, 0x69705f64, 0x72757463, 0x20207365, + 0x25202020, 0x53000a75, 0x49535345, 0x525f4e4f, 0x6c2e4d41, 0x5f657669, + 0x69727473, 0x685f6570, 0x20646165, 0x20202020, 0x75252020, 0x4553000a, + 0x4f495353, 0x41525f4e, 0x696c2e4d, 0x735f6576, 0x70697274, 0x61745f65, + 0x692e6c69, 0x7865646e, 0x0a752520, 0x53455300, 0x4e4f4953, 0x4d41525f, + 0x76696c2e, 0x74735f65, 0x65706972, 0x6961745f, 0x69702e6c, 0x20646963, + 0x000a7525, 0x53534553, 0x5f4e4f49, 0x2e4d4152, 0x6576696c, 0x7274735f, + 0x5f657069, 0x6c696174, 0x6665722e, 0x25202079, 0x2d000a75, 0x7773202d, + 0x68637469, 0x20676e69, 0x000a2d2d, 0x53534553, 0x5f4e4f49, 0x2e4d4152, + 0x7478656e, 0x6f6f625f, 0x6f745f74, 0x206e656b, 0x20202020, 0x25202020, + 0x53000a75, 0x49535345, 0x525f4e4f, 0x6a2e4d41, 0x715f626f, 0x65756575, + 0x6b6f742e, 0x20206e65, 0x20202020, 0x75252020, 0x4553000a, 0x4f495353, + 0x41525f4e, 0x6f6a2e4d, 0x63615f62, 0x65766974, 0x20202020, 0x20202020, + 0x20202020, 0x0a752520, 0x53455300, 0x4e4f4953, 0x4d41525f, 0x626f6a2e, + 0x6168705f, 0x635f6573, 0x746e756f, 0x20207265, 0x20202020, 0x000a7525, + 0x53534553, 0x5f4e4f49, 0x2e4d4152, 0x5f626f6a, 0x72617473, 0x69705f74, + 0x20202063, 0x20202020, 0x25202020, 0x53000a75, 0x49535345, 0x525f4e4f, + 0x6a2e4d41, 0x655f626f, 0x705f646e, 0x20206369, 0x20202020, 0x20202020, + 0x75252020, 0x4553000a, 0x4f495353, 0x41525f4e, 0x74732e4d, 0x6d616572, + 0x6369705f, 0x6165685f, 0x20202064, 0x20202020, 0x0a752520, 0x202d2d00, + 0x63696c73, 0x75712065, 0x73657565, 0x0a2d2d20, 0x53455300, 0x4e4f4953, + 0x4d41525f, 0x6669662e, 0x6c735f6f, 0x5f656369, 0x20626f6a, 0x20202020, + 0x20202020, 0x65206425, 0x6972746e, 0x000a7365, 0x53534553, 0x5f4e4f49, + 0x2e4d4152, 0x6f666966, 0x696c735f, 0x635f6563, 0x6c706d6f, 0x20657465, + 0x25202020, 0x6e652064, 0x65697274, 0x6c000a73, 0x5f657669, 0x2d626f6a, + 0x6977733e, 0x5f686374, 0x75716572, 0x20747365, 0x20202020, 0x20202020, + 0x25202020, 0x6c000a75, 0x5f657669, 0x2d626f6a, 0x7165723e, 0x74736575, + 0x6e5f6465, 0x65626d75, 0x666f5f72, 0x726f635f, 0x25207365, 0x6c000a75, + 0x5f657669, 0x2d626f6a, 0x726f633e, 0x625f7365, 0x65746f6f, 0x20202064, + 0x20202020, 0x20202020, 0x25202020, 0x6c000a75, 0x5f657669, 0x2d626f6a, + 0x7069703e, 0x77735f65, 0x68637469, 0x20202020, 0x20202020, 0x20202020, + 0x25202020, 0x69000a75, 0x7475706e, 0x66756220, 0x73726566, 0x61747320, + 0x3a737574, 0x73000a2d, 0x61657274, 0x65685f6d, 0x253a6461, 0x616d2075, + 0x72657473, 0x6165685f, 0x75253a64, 0x73616d20, 0x5f726574, 0x69617661, + 0x75253a6c, 0x7562000a, 0x72656666, 0x63636f20, 0x6e617075, 0x2d3a7963, + 0x7562000a, 0x64695f66, 0x75252078, 0x7473000a, 0x6d616572, 0x0a642520, + 0x726f6300, 0x75255b65, 0x6425205d, 0x6f63000a, 0x685f6572, 0x5b646165, + 0x205d7525, 0x000a7525, 0x45525453, 0x53004d41, 0x4543494c, 0x434d0020, + 0x20202020, 0x45524100, 0x00202051, 0x4e415254, 0x4f002053, 0x55505455, + 0x49500054, 0x20514550, 0x49415700, 0x564f0054, 0x55525245, 0x5331004e, + 0x47415054, 0x49500045, 0x00444943, 0x42544e49, 0x4c004655, 0x50455649, + 0x45535241, 0x494c0044, 0x4f434556, 0x5000504d, 0x4e494349, 0x00584544, + 0x004c414e, 0x49504e49, 0x4e450043, 0x54554f43, 0x00465542, 0x56455250, + 0x00514553, 0x42464552, 0x5f4b4e41, 0x45534552, 0x554f0054, 0x54555054, + 0x554c465f, 0x43004853, 0x5044524c, 0x4e450042, 0x45445f43, 0x49505f50, + 0x55520043, 0x54535f4e, 0x00455441, 0x43494c53, 0x49465f45, 0x4c004f46, + 0x5f455649, 0x43494c53, 0x45440045, 0x55455551, 0x4e450045, 0x55455551, + 0x4f430045, 0x4552004c, 0x55444953, 0x42004c41, 0x4e455449, 0x51455343, + 0x54494200, 0x42434e45, 0x45004655, 0x424d434e, 0x4f464e49, 0x42414300, + 0x49424341, 0x48005354, 0x5250564d, 0x52004445, 0x4f4f4245, 0x00444554, + 0x424f5250, 0x4f430053, 0x53544e55, 0x39505600, 0x50004342, 0x5f564552, + 0x4d415246, 0x58450045, 0x46554254, 0x00524546, 0x45504950, 0x50570044, + 0x50570030, 0x4e450031, 0x54535f44, 0x45504952, 0x49424d00, 0x5f4f464e, + 0x44414548, 0x52005245, 0x52464645, 0x00454d41, 0x4556494c, 0x544f4c53, + 0x424f4a00, 0x49575300, 0x00484354, 0x49464552, 0x00454c44, 0x53464552, + 0x00544f4c, 0x53464552, 0x50495254, 0x46455200, 0x49525453, 0x52004550, + 0x424d4645, 0x4d445349, 0x49500041, 0x52444550, 0x004e4941, 0x5f514e45, + 0x43494c53, 0x4e450045, 0x424d5f51, 0x0057525f, 0x5f514e45, 0x575f424d, + 0x514e4500, 0x4152465f, 0x4500454d, 0x575f514e, 0x4e450050, 0x54535f51, + 0x00504952, 0x49415244, 0x54535f4e, 0x45504952, 0x49424d00, 0x4745525f, + 0x45545349, 0x434d0052, 0x52415000, 0x4f434553, 0x4a00504d, 0x4c53424f, + 0x4d00544f, 0x4f525f43, 0x4d003057, 0x4f525f43, 0x44003157, 0x4e494152, + 0x5045445f, 0x49525453, 0x44004550, 0x54535045, 0x45504952, 0x4154535f, + 0x48005452, 0x56415f57, 0x004c4941, 0x495f5748, 0x00454c44, 0x5f444e42, + 0x0052474d, 0x5f4c4244, 0x544f4c53, 0x574f5200, 0x4c5f4e49, 0x0044414f, + 0x4f574f52, 0x535f5455, 0x45524f54, 0x574f5200, 0x4c525443, 0x414f4c5f, + 0x49430044, 0x46554252, 0x45525000, 0x52545356, 0x00455049, 0x43434950, + 0x00504d4f, 0x00465254, 0x5f4c4244, 0x0052444c, 0x414d4456, 0x49525453, + 0x56004550, 0x53414d44, 0x00544f4c, 0x49525453, 0x435f4550, 0x00504d4f, + 0x49584950, 0x4f4c5f4e, 0x52004441, 0x535f574f, 0x45524f54, 0x564d5300, + 0x49424d5f, 0x004f464e, 0x5f4c4244, 0x54005342, 0x535f4652, 0x45524f54, + 0x4d4f435f, 0x46525400, 0x5254535f, 0x43455049, 0x00504d4f, 0x4c525443, + 0x45504f00, 0x4f45004e, 0x4f450053, 0x55425f53, 0x45520046, 0x4544524f, + 0x52460052, 0x53454d41, 0x00455a49, 0x53594850, 0x00004449, 0x004e5552, + 0x00424a50, 0x00545753, 0x00424a43, 0x00044080, 0x000440cc, 0x00044118, + 0x00044138, 0x0004419c, 0x000441e8, 0x00044234, 0x000195c0, 0x000195c7, + 0x000195ce, 0x000195d5, 0x000195dc, 0x000195e3, 0x000195ea, 0x44532020, + 0x2020414d, 0x61747320, 0x30737574, 0x20202020, 0x74617473, 0x20317375, + 0x207c2020, 0x6c637273, 0x20206e65, 0x6c747364, 0x7c206e65, 0x70747320, + 0x7c206e65, 0x70747320, 0x7c206469, 0x76656420, 0x65702023, 0x6e69646e, + 0x20000a67, 0x32255b20, 0x20205d64, 0x78383025, 0x25202020, 0x20783830, + 0x207c2020, 0x20643625, 0x64362520, 0x25207c20, 0x25206432, 0x7c206432, + 0x78322520, 0x78322520, 0x23207c20, 0x25206425, 0x20202c64, 0x20642523, + 0x000a6425, 0x414d4453, 0x50545320, 0x4d415220, 0x000a203a, 0x20202020, + 0x2d643225, 0x20643225, 0x2000203a, 0x00643725, 0x43534152, 0x6425203a, + 0x2d2d2d20, 0x2d2d2d2d, 0x2d2d2d2d, 0x2d2d2d2d, 0x7566202d, 0x6974636e, + 0x2d206e6f, 0x6163202d, 0x20736c6c, 0x63202d2d, 0x656c6379, 0x202d2073, + 0x72657661, 0x20656761, 0x2d2d2d2d, 0x78616d20, 0x252c000a, 0x2c733333, + 0x25202020, 0x202c6434, 0x75372520, 0x2520202c, 0x202c7537, 0x75372520, + 0x7325000a, 0x255b7325, 0x78302073, 0x78383025, 0x25000a5d, 0x5b732573, + 0x2073252f, 0x0a5d6425, 0x25732500, 0x73255b73, 0x25000a5d, 0x25732573, + 0x78300073, 0x78383025, 0x00642500, 0x202c6425, 0x34302500, 0x25002078, + 0x20783830, 0x32302500, 0x00002078, 0x00047428, 0x000474a8, 0x00047528, + 0x000475a8, 0x00047628, 0x00019b13, 0x09090909, 0x09090909, 0x09090909, + 0x00090909, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x02020100, 0x03030303, + 0x04040404, 0x04040404, 0x05050505, 0x05050505, 0x05050505, 0x05050505, + 0x06060606, 0x06060606, 0x06060606, 0x06060606, 0x06060606, 0x06060606, + 0x06060606, 0x06060606, 0x07070707, 0x07070707, 0x07070707, 0x07070707, + 0x07070707, 0x07070707, 0x07070707, 0x07070707, 0x07070707, 0x07070707, + 0x07070707, 0x07070707, 0x07070707, 0x07070707, 0x07070707, 0x07070707, + 0x08080808, 0x08080808, 0x08080808, 0x08080808, 0x08080808, 0x08080808, + 0x08080808, 0x08080808, 0x08080808, 0x08080808, 0x08080808, 0x08080808, + 0x08080808, 0x08080808, 0x08080808, 0x08080808, 0x08080808, 0x08080808, + 0x08080808, 0x08080808, 0x08080808, 0x08080808, 0x08080808, 0x08080808, + 0x08080808, 0x08080808, 0x08080808, 0x08080808, 0x08080808, 0x08080808, + 0x08080808, 0x08080808, 0x63617453, 0x7461206b, 0x0a702520, 0x61747300, + 0x25206b63, 0x3d206434, 0x25783020, 0x0a783830, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x01010100, 0x00000203, 0x04030105, 0xfe0bf2c8, + 0x25862253, 0x14031401, 0x04030405, 0xfe0bf2a8, 0x01f50533, 0xff021800, + 0x180403f5, 0x4027ff02, 0xe8000e23, 0x030435fd, 0xfde8000e, 0x181002f5, + 0x03f5ff02, 0xff021814, 0xe7f00e23, 0x0b0435fd, 0x07fc4efe, 0x334327d0, + 0x07e30703, 0x0004f53d, 0x07ff0212, 0x070d47c1, 0xf1333312, 0x02100034, + 0xf848dcff, 0x24f12087, 0xff021000, 0x08004ddc, 0x033427f6, 0x0023f501, + 0x87ff0212, 0x0043f540, 0x23ff0212, 0x273c87e6, 0x0034f540, 0x83ff0216, + 0x3d070fec, 0x330e1c33, 0x001f8333, 0x333ff000, 0xe1ab10ec, 0x140034f5, + 0x3ef5ff02, 0xff021404, 0x8e0ef49b, 0x07f64efc, 0x079107b2, 0x406c27a0, + 0xf72ef893, 0xff7ea702, 0x451efdef, 0xbc10cb07, 0x01c60741, 0x33d40784, + 0x0541c3d6, 0x74de2384, 0x7411fefe, 0x53184c33, 0x42cc1d4c, 0x032c07f6, + 0x0723e323, 0x7e19070d, 0x4027ff08, 0x270ef49b, 0x072a0700, 0x7e3c071d, + 0xac0bff08, 0x9c0bbc2b, 0x8ebabfd6, 0xff2ea7f6, 0x031efdef, 0x2411f3e8, + 0x4ddc3327, 0x0bf6fc6a, 0x07fb4efe, 0x3ec007b1, 0x070c07e5, 0xb31ea72b, + 0xfb0efefe, 0x4efec35e, 0x07c007fb, 0x07cf3eb1, 0x273b071c, 0xb32ea700, + 0xfb0efefe, 0x27febb5e, 0x0000114f, 0xa0f49b10, 0x01f50533, 0xff021800, + 0x180402f5, 0x3027ff02, 0xe8000e23, 0x270335fd, 0x0e03234c, 0xf5fde800, + 0x02181004, 0x1402f5ff, 0x23ff0218, 0xfde7f00e, 0xfe0b0335, 0x330f0c83, + 0x7e0e2303, 0x0439ffff, 0x959e44c6, 0xfe0b000c, 0x04030333, 0xf3e8031e, + 0x100004f1, 0x3327ff02, 0xfc6a4ddc, 0x33fe0bf2, 0xf5432705, 0x02180004, + 0x0402f5ff, 0x27ff0218, 0x000e2340, 0x0435fde8, 0xe8000e03, 0x1001f5fd, + 0xf5ff0218, 0x02181402, 0xf00e23ff, 0x0435fde7, 0xfe4efe0b, 0x000777be, + 0x302706f6, 0xffff4ea7, 0xc443bdfe, 0x0af3131f, 0xf5eaf493, 0x8e430502, + 0xbefe4efe, 0xf60005e5, 0xa7302706, 0xfeffff4e, 0x1fc443bd, 0x930af313, + 0x02f5cbf4, 0xfe8e4305, 0x00befe4e, 0x04cc0009, 0xa730271b, 0xfeffff4e, + 0x1fc443bd, 0x130d03c4, 0xf493a9f3, 0x0502f5a8, 0x8e002743, 0xa7fc4efe, + 0xffffff4e, 0xc6274d99, 0x1e0027d4, 0x8a70be05, 0xff4ea7fe, 0x4411feff, + 0x0a0843f9, 0xc407ff00, 0xce233f4b, 0x2efff5f8, 0x1e0027d3, 0x07300710, + 0xef0ea72d, 0x1c07fff5, 0xfe8af0be, 0x07e6c119, 0xffff3ea7, 0xbd4127ff, + 0x99063434, 0x40270f33, 0x270ef49b, 0xf5338741, 0x02b04034, 0x27123cff, + 0x93fc8e00, 0x02f537fc, 0xffffdea7, 0x8bc001fe, 0x990536f0, 0x47760ad4, + 0x04c8f41e, 0x8af5be15, 0xff4ea7fe, 0x4499feff, 0x1601270a, 0x1e002745, + 0x27012703, 0xff4ea730, 0x439dfeff, 0x99fc8e0a, 0x47d81414, 0x8a049d1b, + 0x13311441, 0x0b3c02c1, 0x33430734, 0x9003c543, 0x2108242b, 0x0b3c04c5, + 0x2b4007fe, 0x63f49b41, 0x20071686, 0x4f9b2803, 0x4e382763, 0x9b242e04, + 0xf31e65f3, 0x007f4f27, 0xf49b4000, 0xa7fe0b61, 0xfdefff4e, 0x333c42c1, + 0x2c53182c, 0x991b1e1d, 0x31c48904, 0x83412312, 0x33348743, 0x0b432b44, + 0x61449940, 0x019d45e6, 0x88039988, 0x11231307, 0x0bdd23ca, 0x07fd4efe, + 0x99c53ed0, 0x45f688d4, 0x9b623f9b, 0x432e634f, 0xd49d4027, 0x9bfd8e8a, + 0xf09b6af0, 0x9b100b6b, 0xf09b62f1, 0x604f9b63, 0x9b104ca3, 0xf09b60f4, + 0x9bfe0b63, 0x4ce3604f, 0x60f49b10, 0xa76b4f9b, 0xfdefff3e, 0x34d54327, + 0x34c10238, 0xfb48dc38, 0xefff3ea7, 0x3834c1fd, 0x08004ddc, 0xd54427f9, + 0xd5023834, 0x27023c34, 0x6832d520, 0xc73ea706, 0x3205fdeb, 0x00004f27, + 0x34150704, 0x990ef29b, 0x45468804, 0x029d4027, 0x89049d88, 0x0c5cfe0b, + 0xedf49310, 0x41c102f3, 0x07183cac, 0x0f1c8310, 0x4c834107, 0x2743330f, + 0x0201002f, 0x6b247b80, 0x9641272f, 0x93402724, 0x02f3c7f3, 0x31c54533, + 0x4c349dac, 0x9bc032c5, 0x34c1600f, 0x830ce3c0, 0xfe0b04ab, 0xf3aaf493, + 0x8b409902, 0x01830253, 0x4f9bfe0b, 0x13478363, 0x9b480048, 0xfe0b65f4, + 0x93630f9b, 0x02f38bf4, 0x075043c1, 0x2b433343, 0x0b037304, 0x1efe0b03, + 0x674f9be8, 0x30640f9b, 0x00a7204c, 0x4103fe0b, 0x2365f49b, 0x1f4c1341, + 0x0123045b, 0xfc4efe0b, 0x07300499, 0x2744d6d0, 0x27781ec0, 0xa66c1ec0, + 0x89d4994a, 0x43834123, 0x34333407, 0x342b4487, 0x34993d0b, 0x9947f661, + 0x3ec16030, 0x07400758, 0x33433310, 0x0b142b15, 0xc114211d, 0xe42b5c33, + 0x271ee30b, 0xdc8ad499, 0xd4993941, 0x31d29932, 0x01830407, 0x10073007, + 0x15333333, 0x3407132b, 0x24ce3103, 0x32d39d1e, 0x20071d0b, 0x0d073e07, + 0xfe94debe, 0x43330411, 0xd499c40b, 0xc8e02788, 0x0c078e42, 0xf54efc8e, + 0x0107d007, 0x72078107, 0x5f9b022b, 0x1850ce63, 0x076c3f9b, 0x604c0342, + 0x070d34da, 0x7e120701, 0xd027fdd1, 0xc101155e, 0xa00750d3, 0x3333a7e3, + 0x432b4a07, 0x071240cc, 0x07a7e3a8, 0x2c432b4a, 0x5ed12740, 0x702700f6, + 0x387e0d07, 0x31de99fe, 0x2730d499, 0x9d4e1b30, 0x94078ad3, 0x29079f6b, + 0x42072183, 0x4333c207, 0x6907c533, 0x6103c42b, 0x9ececd0b, 0x41c13150, + 0x331333c4, 0x07b10743, 0x14c3990a, 0x042bb40b, 0x4b2b4507, 0x072d37d8, + 0x083b2b38, 0xc818d640, 0x0d072230, 0x307e1c07, 0x034907fd, 0x32d49d41, + 0x0714c499, 0x274483ab, 0x274486d1, 0x27d203d0, 0x08721e10, 0x0901da00, + 0x991e9607, 0xc0270027, 0x0754d3c1, 0x2b33334a, 0x2c40c843, 0x070938ce, + 0x271027a3, 0xc14e1ed4, 0x4ea738d2, 0xb9ffffff, 0x190a2a43, 0x07344e24, + 0xbe18070d, 0x07fe93b9, 0x27a72ba8, 0x412c1e10, 0x733007c4, 0x07430b33, + 0x90d4c51c, 0x0732d99d, 0x93b5be0d, 0x32d499fe, 0x41030c11, 0x0732d49d, + 0xfe547e0d, 0x1007c333, 0xd0271c0b, 0x387e0a07, 0x07d536fd, 0x7e170708, + 0x0d07fcb9, 0x3f9bf58e, 0x8df29360, 0x24c102f1, 0xc14858ac, 0x0ce3c024, + 0x0704ab83, 0x104c8343, 0xab0c4ca3, 0xc634cb40, 0x60f49b38, 0x1e833cd8, + 0xd8631f9b, 0xc10d834c, 0x22994024, 0x32411b4c, 0x27400824, 0x51f09320, + 0x7b5e02f1, 0x4efe0bfe, 0x93b007fb, 0x02f143fd, 0x9940d4c1, 0x4b1b4cd2, + 0x40082432, 0x0d072027, 0x5b7e1b07, 0x44c007fe, 0x634f9b03, 0x1e40d4c5, + 0x630f9be0, 0x0017bebe, 0x0744d1c1, 0x9204be0d, 0xaad499fe, 0x9b1b41c4, + 0xd3c1634f, 0x50432b40, 0x0000014f, 0x634f9b70, 0x00004f03, 0xd4c5f000, + 0x07c44440, 0x9119be0d, 0xa50fd6fe, 0xfb8e0c07, 0x0499fe4e, 0xdce0078a, + 0x03994041, 0x32049931, 0x9b3734ce, 0x3f9b624f, 0xcc432b63, 0x9b20604c, + 0xf493631f, 0xc102f0bc, 0x42994043, 0x2b41074c, 0x08243243, 0x07202740, + 0x5efe0e0e, 0x477efdd2, 0x624f9bfd, 0xf49b400b, 0x4efe8e62, 0x9ba007f9, + 0xbf9b639f, 0x63cf9b62, 0xf086fd93, 0x44d1c102, 0xdac50d07, 0x916cbe48, + 0xbe0d07fe, 0x99fe90a3, 0x41588ad4, 0x0c2b0b07, 0xd4c1f98e, 0x4cd29940, + 0x2452491b, 0xd0274028, 0xd207031e, 0xf052f093, 0xfb957e02, 0xf04af093, + 0xff667e02, 0x9b624f9b, 0x432b633f, 0x9331a4d2, 0x02f037f0, 0xdc8a0499, + 0x04992641, 0x99484630, 0x41233104, 0x34074183, 0x43333533, 0x34f9342b, + 0x0004949c, 0x07104c5c, 0xbe2d0719, 0x9bfe9535, 0x4f9b620f, 0x8e042b63, + 0x93f84ef9, 0x02f0d3f4, 0xd1184a99, 0xf602144d, 0xa70119af, 0xffffff4e, + 0xfb430ea7, 0xac4cd1ff, 0x0665be0c, 0xc4b00700, 0xffffff0f, 0x0c070bff, + 0xfe9bc1be, 0xf88e0527, 0x33333007, 0x4fff4ea7, 0x110027fd, 0xd03cf148, + 0xf1ff0004, 0x0004cc39, 0xf95ebeff, 0xff3ea7ff, 0x3a05fdeb, 0x00004f27, + 0x34151282, 0xf49b4027, 0x0700270e, 0xbe1c0729, 0x93fff8ef, 0x02ef83f3, + 0xf769f293, 0x7f3ce302, 0x197f2ce3, 0x803c0334, 0x07f932c2, 0x49f493c9, + 0xc25302f0, 0x021442d1, 0x4f9b3c07, 0x232405ae, 0xa02403c1, 0xfda027f3, + 0x0004c0ba, 0x434ea7ff, 0x4479fffb, 0x0ea74566, 0xbefffb41, 0xa7000584, + 0xfd4fff4e, 0xf012f193, 0xd1430102, 0x27021410, 0x18149d41, 0x011b1abd, + 0x029818d5, 0x029213bd, 0x14210261, 0x6b3924ce, 0xff4ea72f, 0x2c33feff, + 0xa343110c, 0x1000002e, 0xdfff4ea7, 0x0842d5fd, 0x084cd502, 0x761c9d02, + 0x614a1c9d, 0xf5338700, 0x000d1830, 0xa73127ff, 0xfdcfff4e, 0xd16843c5, + 0x03021410, 0x01be4c0c, 0xfc93fe92, 0x2102efac, 0x4ed461c3, 0xbe0d0734, + 0xf6fe9b40, 0x44d4990a, 0xc4bd0027, 0xd4990290, 0x23433344, 0xfffaa44e, + 0x0208c4d5, 0x9d3dd499, 0xd4c11bc4, 0x27c43538, 0x6bc4bd40, 0x9d432702, + 0xd4c118c4, 0x8d444940, 0xf88e34c4, 0xfd93fc4e, 0x9902ef60, 0x44d618d4, + 0xfc8e0027, 0x00e444e4, 0xdc29d469, 0xd231d309, 0xc32bc40b, 0x2c0b242b, + 0x0294d2d5, 0xd12fc4c2, 0x070208d4, 0x05310332, 0xca441143, 0x4c5e2043, + 0x89124901, 0x13a12e14, 0x2c0b249b, 0x230b2287, 0x1ea70b27, 0x27fee077, + 0xf64ebe34, 0x1551beff, 0xa5f49300, 0xfd9302f1, 0x2102ef00, 0x0d402743, + 0x20dc8dd4, 0xf38b0027, 0x061cd499, 0xbe0d0745, 0x070005b2, 0x380c030d, + 0x001886be, 0x0c030d07, 0x187dbe64, 0xf717be00, 0x05f093ff, 0x3cbe02ef, + 0xf093001b, 0xbe02ef28, 0x93001b33, 0x02eebbfd, 0x79bed021, 0xd3d1fff7, + 0x32990214, 0x0434993d, 0xb91e42c2, 0x66011bd4, 0x3833c145, 0x0294d3d5, + 0x42070f1e, 0x349d4103, 0x2700273d, 0x00a85e41, 0x4fff4ea7, 0x934311fd, + 0x02ee7ff4, 0x029c43d5, 0x011b43b9, 0x029343bd, 0x43c4211e, 0x030d071e, + 0x0cbe380c, 0x0d070018, 0xbe640c03, 0xd1001803, 0xc10214d4, 0xd4d53844, + 0xfd930294, 0x2702ee4c, 0xf30ea7c2, 0xdc9dfffa, 0x0437be18, 0x27002c00, + 0xd1fc8e06, 0x070290d3, 0xf5443340, 0x00051c43, 0x94d3d1ff, 0x2043f502, + 0xd1ff0005, 0xf50298d3, 0x00052443, 0x9cd3d1ff, 0x2843f502, 0xa7ff0005, + 0xffffff3e, 0x05100cfd, 0x4127ff00, 0x063634bd, 0x270f3399, 0x0ef49b40, + 0x33874127, 0xb04034f5, 0x0027ff02, 0xd49d4027, 0x93fc8e18, 0x02eddbf1, + 0x011c14a9, 0x430b1369, 0xfec34ce2, 0x07fea45e, 0x1e048930, 0x8bb00089, + 0x0704020f, 0xec328904, 0x2f8b4007, 0x42070202, 0x342d3029, 0x300d041b, + 0xf413fe0b, 0x27040524, 0x4efe0b03, 0x51fd93fc, 0xcea702f0, 0x01feffff, + 0x8b0d07d4, 0x9904f6f4, 0x42a60ac4, 0xfe0bfc8e, 0x0389fd4e, 0x27202730, + 0x3203ad40, 0xbdd00701, 0xad013104, 0x27012c02, 0x61f39b30, 0x264c0499, + 0x1403d546, 0x3902bd02, 0x1803d502, 0x00cf5e02, 0x230bf493, 0xcc04d500, + 0x6bf49303, 0x04d50023, 0x039903d0, 0xc8f49369, 0x04d50023, 0x352603d4, + 0x0262f493, 0x93061e00, 0x0001ebf4, 0xd520d399, 0x2303d8d4, 0xbd40a736, + 0x6b03b5d4, 0x6fd1993f, 0xd470d299, 0x41271532, 0x03bcd4bd, 0x08004d27, + 0x0294d4d5, 0x0318d1bd, 0x4027151e, 0xd4bd3147, 0x402703bc, 0xd4d52247, + 0xd3bd0294, 0xd3990318, 0x6dd4996e, 0x0296d3bd, 0x0324d2bd, 0x6669d399, + 0xedf49348, 0xd4d50090, 0xf49303c8, 0xd50021c7, 0x6603dcd4, 0xd9f49335, + 0xd4d500d0, 0x302703c8, 0xf493231e, 0xd50010cc, 0x9303c8d4, 0x0021a2f4, + 0x03dcd4d5, 0xf4933566, 0xd50050b8, 0x9303c8d4, 0xfea963f3, 0xec8af493, + 0x0843d502, 0xa7322701, 0xfbffff4e, 0x43d50d07, 0x48be0404, 0x0c96fea3, + 0x4665d499, 0x0e0d0745, 0x05079efd, 0x622f9b01, 0x2b634f9b, 0x2321cc24, + 0xeb7ef493, 0x3c44c102, 0x2b633f9b, 0x1342d243, 0xbe630f9b, 0x2700120f, + 0xfad1be01, 0x9b010cff, 0x0d07634f, 0x129efd0e, 0xfd8efea4, 0x27643f9b, + 0x173c5349, 0x1065f49b, 0x2701fe3d, 0x103c3330, 0x01fe3da3, 0x0bc4f39b, + 0x99fc4efe, 0x0e997502, 0x33d00776, 0x030e8723, 0x0c03402c, 0x633f9b20, + 0x35863783, 0x27644f9b, 0x9b432b48, 0x4f9b65f4, 0xa743a6a2, 0xfbffff3e, + 0x042034d1, 0x9bfa42d8, 0x41c0b14f, 0x104f27fb, 0x9b050000, 0x40a7a0f4, + 0x99b2f49b, 0x150664d1, 0x420b4007, 0x4207031e, 0x2c273407, 0x644f9b20, + 0x9b65f29b, 0xf3a0b2f4, 0xe2c41dd6, 0xbe15273b, 0x27ffa546, 0x200802ef, + 0x081e2780, 0x2f278020, 0x02008020, 0x00803f27, 0x4f270802, 0x20080200, + 0x0127010c, 0x9bb2fe9b, 0xf29bb2f1, 0xb2f39bb2, 0x70b2f49b, 0x27101ef0, + 0x8080804f, 0x27010c80, 0xb2f49b01, 0x4f9bf0d0, 0xfb41c0b3, 0x4665d499, + 0x114f2745, 0x1e200000, 0x114f2707, 0x9b100000, 0xfc8ea0f4, 0x1187fb4e, + 0x14f1b007, 0x0001c608, 0x03b000d1, 0x9b90f49b, 0xdf9b881f, 0x8acf9b89, + 0x078bef9b, 0x2b41073c, 0xab3e2b4d, 0x072d0734, 0x2b2e2b41, 0x2624ab4c, + 0x07266638, 0x104c2340, 0x41350327, 0x4c154d25, 0x231e4e05, 0x48234007, + 0x41150227, 0x171e4d05, 0x400725c6, 0x01274823, 0x4c054115, 0x4007091e, + 0x41054423, 0xb4d50027, 0xfb8e03b0, 0x13f11187, 0x0001c5f8, 0x03b004d1, + 0x2390f39b, 0x883f9b44, 0x04d54305, 0x002703b0, 0xf04efe0b, 0xdf3bcf5b, + 0xfc4efe2b, 0x72be0f07, 0xfc0efe7c, 0xff0bf00e, 0xc007fc4e, 0xffa55fbe, + 0xc419c339, 0x43ab1307, 0x4027c41d, 0x05e6c43d, 0xf49b4027, 0xff3ea70e, + 0x34c5fd4f, 0x9b402738, 0x4ea70ef4, 0x99ffffff, 0x2ea70e43, 0x8bfd4fbf, + 0x27313831, 0x53240541, 0xd6240331, 0x4efc8e32, 0xbed007fd, 0x99ffa542, + 0x44b60cd4, 0x070ed499, 0x07012304, 0x993d0b30, 0x42c40434, 0x9d41270b, + 0xd09d0434, 0xa7141e0c, 0xfd4fff4e, 0x4301d239, 0x433b4127, 0xd43d42ab, + 0x402700a7, 0xa70ef49b, 0xfd4fff3e, 0x8e3834c5, 0x07fd4efd, 0xa4f8bed0, + 0x0dd499ff, 0xd49944b6, 0x2304070e, 0x0b300701, 0x0434993d, 0x41274596, + 0x9d04349d, 0x181e0dd0, 0x22032d07, 0x4fff4ea7, 0x012139fd, 0x3b412743, + 0x3d41ab43, 0x2700a724, 0x0ef49b40, 0x4fff3ea7, 0x3834c5fd, 0x0000fd8e, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x0189fb4e, 0x0702212e, + 0x87483341, 0x071433b1, 0x03141bc0, 0x0dbe380c, 0x4027fe9d, 0x0112cbad, + 0x010cc0d5, 0x0110c4ad, 0xfb4efb8e, 0x01100ca9, 0x011203a9, 0x2c874c07, + 0x010c0dd1, 0x3c2b4633, 0x03ad422b, 0xd42b0112, 0xc103b007, 0xfff158be, + 0xb449161e, 0x249bd309, 0xb3a1230b, 0xd4034287, 0x4d05430b, 0x8938dc03, + 0xfc282eb2, 0xb3ad3027, 0xb4a90110, 0x32070112, 0x344a3153, 0xfb0e0b07, + 0x8eff7f5e, 0xb804d1fb, 0x3202a903, 0xd5480301, 0xb903b804, 0x2303bc03, + 0x94f39b48, 0x44214331, 0x420725c6, 0x04ad4123, 0x30a70132, 0xf49b40a7, + 0xddf39bdb, 0x04d1fe0b, 0x03a903b8, 0x48030132, 0x03b804d5, 0x43073546, + 0x04ad4123, 0x04b90132, 0xf49b03bc, 0x4efe0b94, 0xc004b9fd, 0xd0d00702, + 0x0323404c, 0x2702c40d, 0xcebe401c, 0xd0c1fff0, 0x401c2780, 0xd0c5010b, + 0xf0d5be80, 0xbd4027ff, 0x2702c0d4, 0xb94d0b40, 0x9902c443, 0xd2b940d4, + 0x43ce0131, 0xbe2bf654, 0xf6001067, 0x2700d70f, 0x30d3b941, 0x31d4bd01, + 0x9b396601, 0xfcbe630f, 0x4f9b000d, 0x633f9b62, 0x4dcc432b, 0x271010aa, + 0xbe10aa0d, 0x0cfff6af, 0x9b10aa0d, 0x0d07634f, 0xfe9f7dbe, 0x02c0d4b9, + 0x0304d3d1, 0xd4bd4103, 0x0d0702c0, 0xfd8ef38b, 0x3cbe2c86, 0x4f27000e, + 0x10000001, 0x27a0f49b, 0x30d3b940, 0x31d4bd01, 0x9b396601, 0xa4be630f, + 0x4f9b000d, 0x633f9b62, 0x4dcc432b, 0x271010aa, 0xbe10aa0d, 0x0cfff657, + 0x9b10aa0d, 0x0d07634f, 0xfe9f25be, 0x02c0d4b9, 0x41033127, 0x02c0d4bd, + 0x27b0f39b, 0xf49b1b4c, 0x004f2790, 0x9bfc0000, 0xd4d193f4, 0x30a703b8, + 0xd4d54803, 0x482303b8, 0x43254335, 0x0132d4a9, 0x9bdaf39b, 0x44d6dcf3, + 0xfd8e0027, 0xd4ad4123, 0x00270132, 0xfc4efd8e, 0x012c0ca9, 0xc2d4d007, + 0x85f49335, 0x44c102e6, 0x633f9b3c, 0x4c28432b, 0x644f9b20, 0x01004f2c, + 0x3dbe8000, 0x0af6fe8f, 0xd4ad4027, 0xc856012c, 0xad684f9b, 0x26012cd4, + 0x1e0d0747, 0x234c0709, 0x2c04ad41, 0xfe787e01, 0xfc0e0d07, 0x0004129e, + 0x3a7e0d07, 0x0e0d07fe, 0x08099efc, 0x8e022700, 0x93fd4efc, 0x02e62bf4, + 0x44c1d007, 0x633f9b3c, 0x4c28432b, 0x644f9b20, 0x01004f2c, 0xe1be8000, + 0x05f6fe8e, 0x067e0d07, 0x0e0d07fe, 0x09009efd, 0x8e022700, 0x000000fd, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x02011000, 0x03200804, + 0x0f0c0a05, 0x0d0b072f, 0x1f09060e, 0x2c2a2523, 0x28242221, 0x2e2d2b27, + 0x18141211, 0x1c1a1513, 0x1e1d1b17, 0x29261916, 0x04020100, 0x0a050308, + 0x0b070f0c, 0x09060e0d, 0x000f1f2f, 0x1e1d1b17, 0x0e0d0b07, 0x2e2d2b27, + 0x0a050310, 0x1a15130c, 0x2a25231c, 0x0402012c, 0x14121108, 0x16090618, + 0x22212019, 0x29262824, 0x0b07000f, 0x05030e0d, 0x02010c0a, 0x09060804, + 0x21071333, 0xec002e23, 0x9b40a7f9, 0xf49bdaf4, 0x670399dc, 0x029c04d5, + 0x029804d5, 0x04a93826, 0x44c60132, 0x0a1e1027, 0x140011f1, 0x1c53ff06, + 0x3341071f, 0x9404ad4b, 0xbc01bd02, 0xd5282303, 0x0b03b802, 0xb802d1fe, + 0xde4f9b03, 0x9bfb40cc, 0x4fd8de4f, 0x7fffffff, 0x644f9b12, 0x9b204c27, + 0x412765f4, 0x03b604bd, 0x4f9bfe0b, 0x2743a6a2, 0xa2f49b42, 0x012e04a9, + 0xc3b4f49b, 0xad01004d, 0x9b012e04, 0x3f9bdff4, 0xbc04b9db, 0x1f4c3303, + 0x230534ab, 0x15dd4f9b, 0xb9fe0b24, 0xd103bc03, 0x3303b802, 0x40271f3c, + 0x23052415, 0x9bdaf49b, 0xfe0bdcf4, 0x04b9fb4e, 0xb12703bc, 0xd007e007, + 0xb42bc107, 0x0328ed03, 0x0310dd03, 0xde150c07, 0xd4990783, 0x7b0e8608, + 0x2143d04b, 0x4f9b3007, 0xd04b3b68, 0x9b0e204c, 0x4c27644f, 0x65f49b20, + 0xfb8e0127, 0xe103e41d, 0x2e1ef318, 0x071d42c4, 0x9b20071e, 0x4127643f, + 0x2765f49b, 0x27300c41, 0x1d4b3b40, 0x48110314, 0x070d1ef2, 0x2730072e, + 0x03241d40, 0x0bf3b821, 0xe6c853e0, 0x0cdc03c4, 0x00279b1e, 0x17e6fb8e, + 0x9b0e2c03, 0x4f9b693f, 0x83423b69, 0x833fff3d, 0xffffff4f, 0x0543ab03, + 0x28040304, 0x4efe0bf1, 0xb803d1fd, 0x07402703, 0x053415d0, 0xdaf49b34, + 0x99dcf49b, 0x04bd4903, 0x32c403b6, 0x001f2711, 0x27018000, 0xbe312720, + 0x1e001a07, 0x1bb8be05, 0x7e0d0700, 0xd0b9ff0f, 0x0f4b03b6, 0xf94efd8e, + 0x24f6d007, 0x1e0dac27, 0x27a42703, 0x27c027b0, 0x9be42790, 0x3487684f, + 0x310b0407, 0xa4e2020b, 0xb2530120, 0x912704d6, 0x3429091e, 0xc40b3309, + 0xfef0b3ab, 0x2624c4df, 0x40273d07, 0x03283d03, 0xd578d2c1, 0xbd0314d3, + 0xbd032bd4, 0xbd0328d4, 0xbd0329d4, 0xdc032ad4, 0xe55e1321, 0x071c0700, + 0x071d830d, 0xfeb67e07, 0x00d60ff6, 0x3c07c353, 0x871f3c83, 0x07c85343, + 0x304d030d, 0x1fcc8303, 0x4d0bc30b, 0x03300d03, 0x03bcd2b9, 0x031cd4d5, + 0x0310d0d5, 0x077e1c07, 0x683f9bff, 0xe664d499, 0x303cf445, 0x32f9009c, + 0x0001b080, 0x3cf40c1e, 0xf9008f10, 0x01b0b032, 0x991c0700, 0x110368d4, + 0x46181c33, 0x0f2cd848, 0x00bdd41d, 0x94e61801, 0x4669d499, 0x643f9b46, + 0xf49b4127, 0x1f3c5365, 0xab0c3c33, 0xbd402713, 0x2603b6d4, 0x693f9b2b, + 0x4c034307, 0x344cd41a, 0xd9f29b48, 0x0296d4b9, 0x4c28430b, 0x344c2334, + 0x400c061e, 0x07344c03, 0x96d4bd0d, 0x072b0702, 0x18d5be39, 0x7e0d0700, + 0x151efd8d, 0x1ea30d07, 0x07800000, 0xbe39072b, 0x070018bf, 0xfdcd7e0d, + 0x03b6d0b9, 0xf98e0f4b, 0xf98e0127, 0xc107fb4e, 0x0710cc53, 0x831c07b1, + 0x0707071d, 0xfdc67ed0, 0x00c40ff6, 0x37833c07, 0x4387cb07, 0x0718cc53, + 0x304d030d, 0x0bc78303, 0x034d0bc3, 0xb903300d, 0xd503bcd2, 0xd5031cd4, + 0x070310d0, 0xfe187e1c, 0x99683f9b, 0x45e664d4, 0x8b303cf4, 0x8032f900, + 0x1e0001b0, 0x103cd40b, 0xb032f97e, 0x070001b0, 0x9911031c, 0x1c3368d4, + 0xabbfab18, 0xd846c61b, 0x9b110f2c, 0x4127643f, 0x5365f49b, 0x3c331f3c, + 0x2713ab0c, 0xb6d4bd40, 0x9b2aa603, 0x4307693f, 0xd41a4c03, 0x9b40344c, + 0xd4b9d9f2, 0x430b0296, 0x23344c28, 0x061e344c, 0x4c03400c, 0xbd0d0734, + 0xbe0296d4, 0x07001a24, 0xfcab7e0d, 0x0d07111e, 0x00001ea3, 0x1a12be80, + 0x7e0d0700, 0xd0b9fcef, 0x0f4b03b6, 0x0127fb8e, 0xfd4efb8e, 0x07680499, + 0x9b45a6d0, 0x4127643f, 0xc865f49b, 0x1f9b4530, 0x724f9b72, 0x9b723f9b, + 0x3c33722f, 0x0b483310, 0x33410b43, 0x420b182c, 0x0308d4d5, 0x9b721f9b, + 0x3f9b724f, 0x722f9b72, 0x3c334833, 0x0b430b10, 0x182c3341, 0x1f27420b, + 0x03000300, 0x030cd4d5, 0x3f9b151e, 0x724f9b72, 0x430b4833, 0x030804d5, + 0x12001f27, 0xd4990200, 0x9b476664, 0x44d4684f, 0x683f9b74, 0x6d303cd4, + 0x33f94433, 0x0001b0c0, 0x0e1e14ab, 0xd4684f9b, 0xf95a104c, 0x01b0f043, + 0xbd402700, 0xa603b6d4, 0x692f9b3a, 0x4c034207, 0x344cd41a, 0xd9f39b40, + 0x0296d4b9, 0x4c28420b, 0x344c2334, 0x400c061e, 0x07344c03, 0x96d4bd0d, + 0x19d5be02, 0x7e0d0700, 0x111efbbd, 0x1ea30d07, 0xbe800000, 0x070019c3, + 0xfc017e0d, 0x03b6d0b9, 0xfd8e0f4b, 0xfd8e0127, 0xb027fb4e, 0x03b60bbd, + 0x1cd4d007, 0x04996218, 0x2744d664, 0x9b081e00, 0x04f4680f, 0x1c340093, + 0x403c270c, 0x1c23071e, 0x4f3c270c, 0x07692f9b, 0x1a4c0342, 0x78344cd4, + 0x42534107, 0x43ab4433, 0xb9d9f49b, 0x0b0296d3, 0x343c2832, 0x1e343c23, + 0x03300c06, 0x1383343c, 0x11870433, 0xd3bd10ab, 0x0d070296, 0x0014e7be, + 0x327e0d07, 0xbe391efb, 0x07fff339, 0x96dcb90d, 0x801c2702, 0x0296dbbd, + 0x0014cbbe, 0x03bcd3b9, 0x03b8d2d1, 0xbd1f3c33, 0xa30296dc, 0x0842103e, + 0x42104e27, 0x15230508, 0xdaf49b24, 0xb9dcf49b, 0x4b03b6d0, 0x27fb8e0f, + 0x4efb8e01, 0x9bd007fd, 0x0499682f, 0xe242e449, 0xb62ff600, 0x683f9b00, + 0x0d303cd0, 0x27644f9b, 0xf49b204c, 0x009f5e65, 0x46640499, 0x8033f945, + 0x1e0001b0, 0x103cf40c, 0x33f9008d, 0x0001b0b0, 0x2668d499, 0x0f3cd848, + 0x69d4991c, 0x1f9b4706, 0x9b412764, 0x1c5365f4, 0x0c1c331f, 0x00001fa3, + 0x071e0100, 0x00001f27, 0x40270100, 0x03b6d4bd, 0x2f9b3b26, 0x03420769, + 0x4cd41a4c, 0xf39b4834, 0x96d4b9d9, 0x28420b02, 0x4c23344c, 0x0c061e34, + 0x344c0340, 0xd4bd0d07, 0x20270296, 0x90be3127, 0x0d070015, 0x1efa487e, + 0xa30d0715, 0x8000001e, 0x31272027, 0x00157abe, 0x887e0d07, 0xb6d0b9fa, + 0x8e0f4b03, 0x8e0127fd, 0x162c54fd, 0x41f14287, 0x0001c318, 0x2c44271e, + 0x3df19316, 0x2027000c, 0x2cc0271e, 0x2cd42a17, 0x12073831, 0x1e181c23, + 0x0e23d42c, 0x41f14287, 0x0001c300, 0x855efd0e, 0x932554fc, 0x000baff1, + 0x335efd0e, 0x0e2524fb, 0xfd505efd, 0x0a1f2cd4, 0x16231207, 0x315efd0e, + 0x644f9bfe, 0x9b204c27, 0x012765f4, 0x1f9bfd8e, 0x5e14b668, 0x1c34fd2e, + 0x5e11231a, 0x4f9bfe14, 0x204c2764, 0x2765f49b, 0x4efe0b01, 0xbed007f7, + 0x070005d7, 0x0704e610, 0x010c5e0d, 0xd4bd4127, 0x40270131, 0x0130d4bd, + 0x00014f27, 0xf49b1000, 0xbdfb93a0, 0xf99302dc, 0x9302dd90, 0x02e02bf7, + 0x270c8c27, 0xd4b91eac, 0xd3990130, 0x274b7667, 0x3b10aacd, 0x622f9bc3, + 0x2b634f9b, 0x68c2d224, 0x9b3cb4c1, 0x432b633f, 0x9b5d42d2, 0x24be630f, + 0x0c070003, 0xffebe6be, 0xc14dc0d2, 0x3f9b3cb4, 0xd2432b63, 0x311e4240, + 0x4103430b, 0xd4bd4f6b, 0x48d00130, 0x630f9b33, 0x0002fabe, 0x9b624f9b, + 0x432b633f, 0x10aa4dcc, 0xaa0d2710, 0xebadbe10, 0xaa0d0cff, 0x634f9b10, + 0x7bbe0d07, 0xd499fe94, 0xbd410367, 0xd10130d4, 0x070210d4, 0x07f48b0d, + 0x624f9bc0, 0x2b633f9b, 0x1341cc43, 0x0130d4b9, 0xc12744d6, 0x0d073d1e, + 0x6b9ef70e, 0x0a96fe96, 0x9b3cb2c1, 0x3f9b631f, 0x2b430762, 0x07400842, + 0x2b410732, 0x1141c843, 0x1b3cb4c1, 0x1348c441, 0xfe7ee4be, 0x0b1e0706, + 0xc1614f9b, 0x438bbcb3, 0x0d074586, 0xf70e1c07, 0xfe98549e, 0x94b99009, + 0x01230206, 0x45f6900d, 0x8694f89b, 0x94fa9b05, 0x1e94fa9b, 0x11051609, + 0x8b090774, 0xf701ecf4, 0x2704d6fe, 0x93f78e04, 0x02dc6ffc, 0xc329c469, + 0x430bc209, 0x0d07424e, 0xfd7e1027, 0x02a1bef7, 0xbd402700, 0x490131d4, + 0x32d489c3, 0x00274322, 0x0d07f78e, 0x9b9ef70e, 0x0000ffee, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x0dd1f94e, 0x140103b0, + 0x9c27c107, 0x41ac2780, 0x2321bc27, 0x07d201d4, 0x53420714, 0x1f6b1a4c, + 0x2f40400b, 0xffffffff, 0x02144eb9, 0x1420ecd0, 0x04c1081e, 0x5c202778, + 0xbd412741, 0x8e03b604, 0x07e027f9, 0xfe4c834e, 0x4489400b, 0xff2f8384, + 0x8b03ffff, 0x88f29b4f, 0x9b8cf49b, 0xfa9b8df9, 0x883f9b91, 0x9b86f39b, + 0x4e0788f2, 0xab1a4c33, 0x90f19b43, 0x9b93f49b, 0xfb9bb0f4, 0x8b4f9b91, + 0x9b401c03, 0xf49b90f1, 0xb0f49b93, 0xc401c403, 0x01004df4, 0x0dd5ff7f, + 0xf98e03b0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0xd007fb4e, 0x0ea7b107, + 0x07fffa23, 0xbec2071d, 0x36fe6f96, 0x071d0706, 0xa73c072b, 0xfffa230e, + 0xfe73e5be, 0xf49b4027, 0x4efb8e0e, 0x59f493fe, 0x43c102d9, 0x4c429940, + 0x432b4007, 0x40282452, 0x031ee027, 0xf193e207, 0xc102d940, 0x20075013, + 0x33332e2b, 0x432b4207, 0xe007404c, 0x2307e32b, 0x9d4412c5, 0xfe8e4e1e, + 0x1499fb4e, 0x07e30710, 0x5bc307b2, 0x07245be4, 0x51cb2bd1, 0x27e24e11, + 0x1ee02730, 0x87e1830d, 0x8b4d0b4e, 0x2b4e6131, 0x872183c3, 0x614d0b42, + 0x0b1b8b44, 0x05033541, 0x250c1504, 0x4efb8e0e, 0xb5f293f9, 0x249902d9, + 0xe6f3e319, 0x2901c64f, 0x092d6924, 0x89d40b23, 0xd32b2024, 0x45164d1b, + 0x5e19249d, 0x23c101af, 0x34228930, 0xf325f46d, 0x4f9bf24d, 0x9b43a6a2, + 0xa487244f, 0x9325cf9b, 0x02d977fb, 0x073cb2c1, 0x031b070f, 0x1c030c0c, + 0x7e3a0738, 0xb2c1ff6c, 0x07cc8768, 0x071b070f, 0x240c033c, 0x7e641c03, + 0xb499ff58, 0x77b3994b, 0xc11ef48d, 0xf38d3cb4, 0xc1f48536, 0xb4a968b3, + 0xb2990118, 0x38f3c51c, 0x861cf48d, 0x20b38929, 0x010cb0d1, 0x2c271f07, + 0xbef30d3c, 0xd1ffe101, 0xa9010cb3, 0x030110b4, 0x41033c3c, 0x0110b4ad, + 0x010cb3d5, 0x2700fe5e, 0xa0f49b41, 0xb369b431, 0x0208b2d1, 0x4d0b432b, + 0x23112405, 0x00e534ea, 0x0700ee5e, 0x013007ae, 0xb0f49b34, 0x31ce3403, + 0x03ea07f7, 0x4e0738ec, 0x42424acb, 0x428b4e07, 0xf4934076, 0x9902d8c4, + 0x3a074844, 0x4307345b, 0x44874183, 0x95604f03, 0x92070004, 0x8b504dc1, + 0xb14f9b9a, 0x93fb41c0, 0x02d89ff3, 0x27383499, 0xf5433325, 0x02120042, + 0x643499ff, 0xefffaea7, 0xf54333fd, 0x02120042, 0xe8031eff, 0x5ca4c1f3, + 0x4c333327, 0x1d4c5318, 0x42c84413, 0x69f093ef, 0xbea702d8, 0x49feffff, + 0x2e038904, 0x1f84bcb9, 0x9b200189, 0x83140b43, 0x0b04a1c3, 0x87e423d9, + 0xd511872c, 0xf50968ae, 0x011f742d, 0x27140bff, 0x0efe9be0, 0xa74b0499, + 0xfde69f3e, 0xe08c2e23, 0x333205fe, 0x2427104c, 0x00004fa3, 0x32150400, + 0x4ea73435, 0x05fde68f, 0x03421541, 0xbd4e35c1, 0x271f84bc, 0x01f49330, + 0x439d02d8, 0x93151e19, 0x02d7f7f4, 0x1f070f07, 0x034c42c1, 0x3c1c0304, + 0xc3ff045e, 0x4ef98ef3, 0xddf093fe, 0x040902d7, 0xf4934636, 0x1102da74, + 0xd6f48b44, 0x8e072704, 0xc5f193fe, 0x149902d7, 0x2744c619, 0x69fe8e00, + 0x09132914, 0x2b430b12, 0x20148d42, 0xc0b14f9b, 0x4f9bfb41, 0xa1f09324, + 0x03c102d7, 0xc1448740, 0x342b4402, 0xc23c04c5, 0x01211223, 0x0c032027, + 0x043cbe38, 0x2704d600, 0x9bfe8e08, 0xf093254f, 0xc102d778, 0x44876c03, + 0x2b7002c1, 0x6804c534, 0x211223c2, 0x03202701, 0x13be640c, 0x04d60004, + 0xfe8e0927, 0xd752f093, 0x1c049902, 0x04694956, 0x31200289, 0xd1242b03, + 0x0b020804, 0x11420523, 0x244f9b41, 0x44873027, 0x011803ad, 0x011404d5, + 0x01272122, 0x3127fe8e, 0xd71ef493, 0x9d002702, 0xfe8e1943, 0x0499fd4e, + 0x27412412, 0x39fd8e00, 0x9be5360e, 0x4144b14f, 0x4f9bfa1e, 0x1943a6a2, + 0x07432702, 0xf5333332, 0x02120034, 0x0031f1ff, 0x47ff0210, 0x181c33d2, + 0xd61d1c53, 0x1e002714, 0x8725331c, 0x0423f14e, 0x99ff0218, 0x40f11002, + 0xff021600, 0x030b1123, 0x010b123b, 0x42273d87, 0x120034f5, 0xfd8eff02, + 0x14470419, 0x31871103, 0x34f54327, 0xff021200, 0x100032f1, 0x2c33ff02, + 0x1d2c5318, 0x410726a6, 0x03994433, 0x0444f110, 0x23ff0218, 0x0b233b21, + 0x27318724, 0x0034f542, 0x21ff0212, 0x0034f100, 0xdcff0210, 0x3187f848, + 0x100034f1, 0x4ddcff02, 0x2bf60800, 0x4efe0b02, 0x120499fb, 0x42e4d007, + 0x041900a0, 0x43333527, 0x120043f5, 0x031eff02, 0xd419f3e8, 0x43333b27, + 0x10004bf1, 0xbd83ff02, 0xb1d6fc0a, 0xdc210d07, 0x19ff137e, 0x2bd239de, + 0x074127c0, 0x12d49d3e, 0x3333dc25, 0x1e474427, 0x120034f5, 0x2287ff02, + 0x2bf51103, 0xff021600, 0x43273187, 0x34f5d029, 0xff021200, 0x100034f1, + 0x48dcff02, 0xf12187f8, 0x02100024, 0x004ddcff, 0x4007f608, 0x4a033427, + 0x120023f5, 0x4c83ff02, 0x532e070f, 0x33233306, 0x3027140c, 0xab104c33, + 0x0023f540, 0xf5ff0214, 0x02140424, 0x0ef39bff, 0xfe4efb8e, 0x41834107, + 0x87110399, 0x2b400b44, 0xd84e6131, 0x9119803c, 0x19028101, 0x0b438713, + 0x034e0542, 0x99131d31, 0x41031104, 0x8e11049d, 0x21fd4efe, 0x1ee0070d, + 0x10e49970, 0x245b2d07, 0x41834207, 0xe319e251, 0x4e0b4487, 0x12074061, + 0x35334d07, 0x3c03428b, 0x2b110310, 0x083df514, 0x0bff0218, 0x39e41904, + 0x994533e3, 0x43f513e2, 0xff021800, 0x180441f5, 0x3027ff02, 0xe8004e23, + 0x034335fd, 0xfde8004e, 0x181040f5, 0x2c33ff02, 0x002fa310, 0xf5040000, + 0x02181441, 0xf04e23ff, 0x4235fde7, 0xed25d10b, 0xd4cee4a1, 0x9d42278d, + 0xfd8e12e4, 0x30070419, 0x41274924, 0x99a2f49b, 0x44a61234, 0x0bff6c5e, + 0x390419fe, 0xf5453300, 0x02180041, 0x0442f5ff, 0x27ff0218, 0x004e2330, + 0x4335fde8, 0xe8004e03, 0x1040f5fd, 0xf5ff0218, 0x02181442, 0xf04e23ff, + 0x4335fde7, 0xfc4efe0b, 0x0019d007, 0x30074327, 0x20073333, 0xdc39d129, + 0x34f52333, 0xff021200, 0x24f13047, 0xff021000, 0x87f848dc, 0x00e4f1e3, + 0xdcff0210, 0xf608004d, 0x31032427, 0x1200e2f5, 0x3387ff02, 0x32f54107, + 0xff021200, 0x2c874a03, 0x23f53027, 0xff021600, 0x070f4c83, 0x33165320, + 0x141c3323, 0xab104c33, 0x0023f541, 0xf5ff0214, 0x02140424, 0x0ef39bff, + 0xd3554027, 0x3504d49d, 0x4efc8ed3, 0x990319fa, 0x33330404, 0xc427a207, + 0xb107d007, 0xc42baf6b, 0x34f13403, 0xff021000, 0x53184c33, 0x44131d4c, + 0x31f04cda, 0x212566d2, 0x7e0d07d1, 0xc123ff1d, 0x2566d251, 0x0d07d141, + 0x23ff107e, 0x074d07c1, 0x2748031b, 0x013627b6, 0x05b12312, 0x03140342, + 0xe6f39844, 0x26d231c6, 0x21a5e626, 0x7e0d07d1, 0xc127fee9, 0x031edb35, + 0xdc9dc127, 0x4efa8e04, 0xff4ea7fa, 0x4d01fd4f, 0xd433c007, 0xa407d8a3, + 0xf4e8031e, 0x4627cb01, 0x9bbeb356, 0xc401ff8e, 0x44963027, 0xf39bcd05, + 0x38abc50e, 0xd4cec401, 0x4efa8ee4, 0x990d21fb, 0x0c991004, 0x5bd12311, + 0x2b4c07d4, 0xd8b0074d, 0xa72a804c, 0xffffdf0e, 0xdf6bae3e, 0xc4070a1e, + 0x1c07cf6b, 0x07fdb57e, 0x0741034c, 0xefdcce0b, 0xf49b4027, 0xdf3ea70e, + 0x3405ffff, 0xf94efb8e, 0x0ea7d007, 0x07ffffdf, 0xa1c107b2, 0x10da99d9, + 0x99ff767e, 0x2b0710d0, 0xcdbe1c07, 0xb007fff8, 0x40270656, 0xa70ef49b, + 0xffffdf4e, 0x4b050027, 0xc907f98e, 0x1c07ca5b, 0x12230d07, 0x27fd5d7e, + 0x0ef49b40, 0xffdf3ea7, 0x993405ff, 0xd3a110d2, 0x4127c183, 0xcc87423b, + 0xcd0b340b, 0xcb650d07, 0x667ed3a5, 0x8e0127fd, 0x07fb4ef9, 0xa7b107d0, + 0xfffa230e, 0xc2071d07, 0xfed497be, 0x1d070636, 0x3c072b07, 0xfa230ea7, + 0xd8e6beff, 0x9b4027fe, 0xfb8e0ef4, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00090401, 0x00120505, 0x00120525, 0x00090040, 0x00114040, 0x00118040, + 0x0021c040, 0x00090401, 0x09000402, 0x09090403, 0x00120505, 0x00120525, + 0x1200050a, 0x1200052a, 0x09090509, 0x09090529, 0x09090506, 0x09090526, + 0x0912050d, 0x0912052d, 0x1209050e, 0x1209052e, 0x09120507, 0x09120527, + 0x1209050b, 0x1209052b, 0x1212050f, 0x1212052f, 0x00000000, 0x00090040, + 0x09000080, 0x090900c0, 0x00114040, 0x00118040, 0x11004080, 0x11008080, + 0x111140c0, 0x111180c0, 0x0021c040, 0x2100c080, 0x2121c0c0, 0x0001c414, + 0x0001c43c, 0x0001c448, 0x0001c454, 0x0001c618, 0x0001c638, 0x0001c668, + 0x0001c698, 0x0001c620, 0x0001c644, 0x0001c674, 0x0001c6ac, 0x0001c628, + 0x0001c650, 0x0001c680, 0x0001c6c0, 0x0001c630, 0x0001c65c, 0x0001c68c, + 0x0001c6d4, 0x34343434, 0x36363334, 0x34343534, 0x34343534, 0x34343434, + 0x34343334, 0x34343434, 0x34343434, 0x4bf3101b, 0x0000001b, 0x4bf3100b, + 0x0000000b, 0x3fc4922b, 0x0000002b, 0x4beb1019, 0x00000019, 0x4cf3411d, + 0x0000001d, 0x4bf3100b, 0x3fc4922b, 0x0000001b, 0x4beb1019, 0x4cf3411d, + 0x0000001b, 0x4beb1009, 0x4cf3410d, 0x48989229, 0x3f94c92d, 0x0000001b, + 0x20031009, 0x2003410d, 0x20009229, 0x2000c92d, 0x20031000, 0x20032002, + 0x20001110, 0x20002412, 0x20034104, 0x20036206, 0x20004514, 0x20006616, + 0x20009220, 0x2000a822, 0x20011330, 0x20012c32, 0x2000c924, 0x2000ea26, + 0x20014d34, 0x20016e36, 0x31313030, 0x31303030, 0x31333030, 0x33323232, + 0x31303030, 0x31303030, 0x31333030, 0x33323232, 0x31353030, 0x31353030, + 0x31373636, 0x37323232, 0x35343434, 0x35343434, 0x37343434, 0x37373636, + 0x31313030, 0x31303030, 0x31333030, 0x32323232, 0x31303030, 0x31303030, + 0x31333030, 0x32323232, 0x31353030, 0x31353030, 0x31373636, 0x32323232, + 0x35343434, 0x35343434, 0x37343434, 0x32323232, 0x31313030, 0x31303030, + 0x31333030, 0x31323232, 0x31303030, 0x31303030, 0x31333030, 0x31323232, + 0x31353030, 0x31353030, 0x31373636, 0x31323232, 0x31343434, 0x31343434, + 0x31343434, 0x31373636, 0x31313030, 0x31303030, 0x31333030, 0x33323232, + 0x31303030, 0x31303030, 0x31333030, 0x33323232, 0x31353030, 0x31353030, + 0x31373636, 0x37323232, 0x34343434, 0x34343434, 0x34343434, 0x34343434, + 0x30303030, 0x31303030, 0x31333030, 0x33323230, 0x30303030, 0x31303030, + 0x31333030, 0x33323230, 0x30303030, 0x31353030, 0x31373630, 0x37323230, + 0x30303030, 0x35343430, 0x37343430, 0x37373630, 0x90000009, 0x9000030d, + 0x90000c29, 0x90000f2d, 0xc2902009, 0xc398620d, 0xc6b12829, 0xc7b96a2d, + 0x4beb1009, 0x00000009, 0x4cf3410d, 0x0000000d, 0x48989229, 0x00000029, + 0x3f94c92d, 0x0000002d, 0x4beb1001, 0x3fc01111, 0x00000009, 0x4cf34105, + 0x3f844515, 0x0000000d, 0x48989221, 0x3fc91331, 0x00000029, 0x3f94c925, + 0x3fa54d35, 0x0000002d, 0x4be71008, 0x4c6b200a, 0x00000009, 0x4cef410c, + 0x4d73620e, 0x0000000d, 0x48949228, 0x4218a82a, 0x00000029, 0x429cc92c, + 0x3f98ea2e, 0x0000002d, 0x4be71000, 0x4c6b2002, 0x48041110, 0x3f802412, + 0x00000009, 0x4cef4104, 0x4d736206, 0x408c4514, 0x3f886616, 0x0000000d, + 0x48949220, 0x4218a822, 0x49251330, 0x3fa12c32, 0x00000029, 0x429cc924, + 0x3f98ea26, 0x44ad4d34, 0x3fa96e36, 0x0000002d, 0x0349fa4e, 0xb007f1a3, + 0x14863183, 0x430731c3, 0x44330387, 0xbcc1040b, 0xa00d034c, 0x0b0b0b01, + 0x271230cf, 0x061e104c, 0x4c034187, 0x01400b0c, 0x0b41874e, 0x212e0740, + 0xc42c8b4a, 0x43072913, 0x348741c3, 0x340b4433, 0x3d030431, 0x3b0b01a0, + 0x3d01421b, 0x41483a11, 0x2d07ed07, 0x3e210d1e, 0x2c8b2e07, 0xbdd1051e, + 0x420701cc, 0x402c4d2b, 0x051e2a07, 0x2e07d20e, 0xb2d53207, 0x3d2b01cc, + 0x073431c8, 0x38cc03cb, 0x0c07a307, 0x39bead0b, 0x0a2bfff7, 0x0c07002c, + 0xfe81f1be, 0x2d071c07, 0x3a070f07, 0xfff3dbbe, 0x0d030b07, 0x1f070174, + 0x90be2127, 0xf183fff9, 0xf84efa8e, 0x41873107, 0x342b3633, 0x3489300b, + 0x8ba107b0, 0xc6b0074f, 0x1d049949, 0x27154ac4, 0xf39b133c, 0x004f2794, + 0x9b900000, 0xf39b90f4, 0x27101e94, 0x0000004f, 0x90f49b90, 0x0f004f27, + 0xf49b9000, 0x874a0790, 0x2b46333a, 0x03940743, 0xc407909c, 0x80279b0b, + 0xc489cb0b, 0x2eb389b0, 0x433a4f8b, 0xc48d4027, 0xb2c389b0, 0xc1c13946, + 0xb8c4c1bc, 0xceb0c38d, 0x17461b14, 0x0108b4d1, 0xb0d14686, 0x2a070214, + 0xc4c1f48b, 0xc58127bc, 0x031eb8c4, 0xc2898127, 0x072586b0, 0x2eb38942, + 0x43da4f8b, 0x8d402728, 0xb489b2c4, 0xb4c2892c, 0x42f24447, 0xc3990087, + 0x2eb489b6, 0x4487237b, 0x9bc8c3c1, 0xc5340b42, 0x041ec4c3, 0x89b2c28d, + 0xc3c1b2c4, 0x0b4487c4, 0xd64d0143, 0xb7c099d7, 0xfe6026be, 0xc1b2c489, + 0x4487c4c3, 0x4d01430b, 0x4027d536, 0x1eb2c48d, 0x0bd1d843, 0x0b071d07, + 0xfe7b83be, 0xb499d007, 0x031d071d, 0x00202718, 0x0721274a, 0xf875be09, + 0x89d429ff, 0xdd11b2c3, 0x3fab340b, 0x89b2c38d, 0xcdc52eb4, 0x89344abc, + 0x4203b4c4, 0xe6b4c48d, 0x07ff218f, 0x334a870a, 0x07042b06, 0x894b0b40, + 0x46d6b244, 0x4c034007, 0x0b0b0790, 0x1df19304, 0x2027ff89, 0xfff82ebe, + 0xf88e0807, 0x0489f84e, 0x8b0329b0, 0x2ed0074f, 0x1ec12734, 0x7e102708, + 0xc007fe8a, 0x29ecd489, 0x2e4f8bd3, 0x1e012734, 0x270d0708, 0xfe747e11, + 0x05e6c626, 0x4566d429, 0x9b1e4c27, 0xf49b94f4, 0x89d32994, 0x43ce1ed4, + 0x004f276d, 0x9b100017, 0xd44990f4, 0x41838d07, 0x4433b487, 0xbd03b40b, + 0xd9b901a0, 0xbd0b01c8, 0x07388c03, 0xb9a103a9, 0x07011ad4, 0x7693839a, + 0xc1080746, 0xcdbe40dc, 0x4a87fff4, 0x4b0bc02b, 0x0d074c05, 0x597e1907, + 0x034947fd, 0x0701944d, 0x23240b2d, 0x0b01944d, 0x9443a94d, 0xce242901, + 0xd9bdc234, 0x222901c8, 0x461ed28d, 0x0e0d0735, 0xdddd9ef8, 0xf1e9beff, + 0x1cd499ff, 0x0d074506, 0xffe261be, 0x0c030d07, 0x40dcc138, 0xfff477be, + 0x413cd449, 0x01b44d27, 0x4d27051e, 0x4d0b01a0, 0x4c05c02b, 0xf49b4027, + 0x84f49b82, 0x8985f49b, 0xd18916d4, 0xab4a3314, 0x81f49b41, 0x4a334107, + 0xa383f49b, 0x0000004f, 0x82f49b80, 0xc6c0d4c1, 0x004f2746, 0x9b800000, + 0xd49984f4, 0x274224b6, 0xf49b124c, 0xfcd4c194, 0x4f274566, 0x80000000, + 0x4985f49b, 0xa9d331d4, 0x03011cd2, 0x27320b41, 0x12d18d20, 0xd335d44d, + 0xd28dd22d, 0xbe0d0714, 0xa7ffdd3f, 0x27f88e00, 0x4efe0b03, 0xbc03b9fc, + 0x03c00703, 0xef273e3c, 0x4bf3101b, 0x9b1a3c33, 0x2f9b90fe, 0x894f9b88, + 0x028a1f9b, 0x02420742, 0x8b410741, 0x86f49b43, 0x9b90fe9b, 0x44f9874f, + 0x0001c4b8, 0x9b91f49b, 0xef278bdf, 0x4bf3105b, 0x9b90fe9b, 0x4f9b882f, + 0x8a1f9b89, 0x42074202, 0x41074102, 0xf39b348b, 0x90fe9b86, 0xf9874f9b, + 0x01c4b844, 0x91f49b00, 0xcc8b4f9b, 0x404c0dd0, 0x4027d027, 0x02270b1e, + 0x402c091e, 0x031e0127, 0xc4d50327, 0xcdd50218, 0xfc8e0214, 0x029404d1, + 0x00024fa3, 0x41ab0100, 0x27b0f49b, 0xf49b1b4c, 0x023f2790, 0x9bf80000, + 0x4c2793f3, 0x90f49b5b, 0x0b93f39b, 0xd1fc4efe, 0xc1031404, 0x4d197803, + 0x04d54103, 0x3d5b0314, 0x03c00cd1, 0x03100ed1, 0x315c1201, 0x04bd4127, + 0xfc8e03b6, 0x3c333d07, 0x03e4011a, 0x9b43abe4, 0xf29b86f4, 0x01140390, + 0x874f9b12, 0x44194c0b, 0x9b91f49b, 0xf49b8b4f, 0xb0f49b93, 0x01002dd4, + 0x100ed5d9, 0x402c0303, 0x2790f29b, 0x0000004f, 0x93f49bf4, 0xfc4efc8e, + 0x032004d1, 0x197c03c1, 0xd541034d, 0x5b032004, 0xc00cd13d, 0x1c0ed103, + 0x5c120103, 0xbd412731, 0x8e03b604, 0x333d07fc, 0xe4011a3c, 0x43abe403, + 0x0386f49b, 0xf29b402c, 0x01140390, 0x874f9b12, 0x44194c0b, 0x9b91f49b, + 0xf49b8b4f, 0xb0f49b93, 0x01002dd4, 0x1c0ed5d6, 0x90f29b03, 0x00004f27, + 0xf49bf400, 0x4efc8e93, 0x1404d1fb, 0x2003d103, 0x034c1903, 0x1404d541, + 0x7804c103, 0x31033d19, 0x032003d5, 0x0bd14c5b, 0x0ed103c0, 0x02d10310, + 0x1301031c, 0x04c14158, 0x5c4d5b7c, 0xbd412741, 0x8e03b604, 0x1acc33fb, + 0x011adc33, 0xabe403e4, 0x86f49b4c, 0x9b90f39b, 0x4b0b874f, 0xf49b4419, + 0x8b4f9b91, 0x9b93f49b, 0x2401b0f4, 0x4dab2403, 0x0386f49b, 0xf39b403c, + 0x01140390, 0x874f9b13, 0x44194b0b, 0x9b91f49b, 0xf49b8b4f, 0xb0f49b93, + 0x01003dd4, 0x1c02d5b7, 0x100ed503, 0x4efb8e03, 0x940dd1f7, 0x07f12302, + 0xaba307c0, 0xe69207d1, 0x27014c3f, 0x05422731, 0x277007f3, 0xb07d0334, + 0x35f42503, 0xd5f415f3, 0x2703b007, 0x27b027a0, 0x5b490780, 0x2543dc4b, + 0x03d8c4d1, 0x11731b07, 0xf48b0c07, 0x3f074087, 0x430bb803, 0x0b3b4301, + 0xb8234127, 0x90ab4b3b, 0x830ba4ab, 0xb8c4b203, 0xdcc4d1d1, 0xb0c7d503, + 0x8b0c0703, 0xc4b007f4, 0x4a470903, 0x8847a4ab, 0x0204051e, 0x9ff6aa47, + 0xc4d100d8, 0x442303b0, 0x44234201, 0x44234001, 0x44234301, 0x12074401, + 0x202b132b, 0x042b342b, 0x01ab32ab, 0x76753fd6, 0xa31d0709, 0xab04001d, + 0x03b3241b, 0x0000001f, 0x03071e02, 0x0000001f, 0xb0f19b01, 0x03c8c4d1, + 0xf1930c07, 0x5efff6c0, 0x1d070084, 0x05001da3, 0x4b871bab, 0xb32414ab, + 0x00001f03, 0x071e0400, 0x00001f03, 0xf19b0200, 0xc8c4d1b0, 0x930c0703, + 0xfff69bf1, 0xc4d1f48b, 0xb32403b0, 0x031e4823, 0xc4d54423, 0xc4d103b0, + 0x0c0703c8, 0xf686f193, 0xb63a1eff, 0xa31d070b, 0xab05201d, 0xab4b871b, + 0x03b32414, 0x0000001f, 0x03071e04, 0x0000001f, 0xb0f19b02, 0x03c8c4d1, + 0xf1930c07, 0x8bfff660, 0xc8c4d1f4, 0x930c0703, 0xfff65bf1, 0x5b1ef48b, + 0x0b188c33, 0xab3a07d8, 0x009dd439, 0xdda30c01, 0xd3ab0600, 0x1eb0fd9b, + 0x00df030d, 0x9b010047, 0xf39bb0fd, 0xb1f493b0, 0xc4d5fff6, 0xfd9303c0, + 0x07fff5a4, 0x83390749, 0x87365343, 0x0c3c8344, 0x4c0b3d0b, 0x03c844d1, + 0xdc033101, 0x8b0c0710, 0xc49253f4, 0x01c3f4df, 0xf103da00, 0x04d1f78e, + 0x4fa30294, 0x02800481, 0x27b0f49b, 0x86f49b40, 0x101b4f27, 0xf49b4bf3, + 0x871f9b90, 0x9b882f9b, 0x04b9893f, 0x476603bc, 0x40002dc0, 0x002fc033, + 0x2c03ffc0, 0x40003dc0, 0x003f4427, 0x1e03ffc0, 0xff2f831f, 0x83fbffff, + 0xffffff3f, 0x062646fb, 0xb814f936, 0x9b0001c5, 0x4f9b91f4, 0x27031e8b, + 0x93f49b40, 0x27b0f49b, 0xf49b5b4c, 0x004f2790, 0x9bf40000, 0xfe0b93f4, + 0x04d1fb4e, 0xd0070294, 0xf49b41ab, 0x004ddcb0, 0x43831b01, 0x400b4487, + 0x03c843d1, 0xf53ef193, 0xddf493ff, 0x04d5fff5, 0x701e03c0, 0xc4073407, + 0xfb933383, 0x53fff64c, 0x204cdcc2, 0x0b438732, 0xc843d140, 0xf9f49303, + 0x04d5fff5, 0xf19303c0, 0x8bfff514, 0x87c383f3, 0xd14d0b4c, 0xd503c844, + 0x0703c0db, 0x05f1930d, 0xf48bfff5, 0x4387fb8e, 0x44d1400b, 0x0bd503c8, + 0xf19303c0, 0x8bfff4f8, 0x87c383f4, 0xd14d0b4c, 0x9303c843, 0xfff633f4, + 0x03c0d4d5, 0xf1930d07, 0x8bfff4e4, 0x4efb8ef3, 0x9403d1fd, 0x9b31ab02, + 0x4027b0f3, 0x2786f49b, 0x8af49b42, 0x276c0499, 0x27449621, 0x802c0320, + 0x10003dd8, 0x0800d135, 0xe5fe9303, 0x1427fff4, 0xf09be401, 0x90f49b86, + 0xe4033007, 0x4f9b3453, 0x91f29b87, 0x9b8b4f9b, 0x040793f4, 0xab0c0c33, + 0xddf1f003, 0x1eb0f09b, 0x080d035c, 0xc1fd9303, 0x0301fff4, 0x04031d07, + 0x1401e427, 0x9b86f39b, 0x345390f4, 0x9b874f9b, 0x4f9b91f2, 0x93f49b8b, + 0xab1c4c33, 0x9b131143, 0xf39b86f4, 0x03340790, 0x9b345318, 0xf29b874f, + 0x8b4f9b91, 0x3393f49b, 0x34ab1c4c, 0x03c4fef0, 0xf39b20dc, 0xb8dfc4b0, + 0xaf0001c4, 0x9b5b4c27, 0x4f2790f4, 0xf8000002, 0x8e93f49b, 0x000000fd, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x0bd1f84e, 0xc00703b8, 0x0bd5b803, 0xdf9b03b8, + 0x53412764, 0xf49b1fdc, 0x94fd9b65, 0xfd9bd203, 0xb9402794, 0xbd03bc03, + 0x2303b404, 0xb53deed2, 0x9801d100, 0x9c00d102, 0x07e10702, 0x07900781, + 0x1fec83a0, 0x9c838553, 0x00ad831f, 0x9bdc067c, 0x2f9bda3f, 0x330807dc, + 0x83430725, 0xab03e00d, 0x0712070e, 0xab4a33ea, 0x004d83e9, 0xe01d837c, + 0xab353303, 0x83e1ab04, 0x0f80003e, 0x80002e83, 0xab03ab0f, 0xdaf09be2, + 0x1edcfe9b, 0x33310742, 0x003d8335, 0x073eab7c, 0x332a0743, 0xab29ab45, + 0xdaf49b43, 0x45334207, 0xf49b42ab, 0x533007dc, 0x8348071a, 0x4d831f1c, + 0x35537c00, 0x3d8341ab, 0x04077c1f, 0x0533e307, 0x04abe533, 0x4d07e3ab, + 0xc0d54b33, 0xced502a0, 0xc4ad02a4, 0xcdbd0294, 0x1d1e03bc, 0xd5da4f9b, + 0x9b02a004, 0x04d5dc4f, 0x04d102a4, 0xf49b0298, 0x9c04d1da, 0xdcf49b02, + 0x0132c3a9, 0x40a73686, 0x20a73123, 0xc3ad10a7, 0xb4350132, 0x0d1eb425, + 0xb401d4c6, 0xb8034008, 0xb201b111, 0x9bdbf29b, 0xf88eddf1, 0x03b802d1, + 0x03bc04b9, 0x38033207, 0x03b803d5, 0x9b104c03, 0x04b994f4, 0x4c0303bc, + 0x94f49b12, 0x04bd4127, 0x4f9b03b4, 0x9804d5da, 0xdc4f9b02, 0x029c04d5, + 0x02a004d1, 0xd1daf49b, 0x9b02a404, 0x04b9dcf4, 0x449603bc, 0x34013207, + 0x11dbf49b, 0xddf49b34, 0xfd4efe0b, 0xa702f493, 0xc1d00702, 0x3f9b3c44, + 0x28432b63, 0x4f9b204c, 0x004fcc64, 0x0b800001, 0xfe4fb7be, 0x022704c6, + 0x0d07fd8e, 0x07fe537e, 0xc9d4be0d, 0x0708b6ff, 0xff727e0d, 0xc7be0d07, + 0x0716ffc9, 0x9b0c4c27, 0xd4b994f4, 0x4c0303bc, 0x94f49b10, 0x9b124c27, + 0xfd8e94f4, 0x0ca9fc4e, 0xd007012c, 0x932cc2d4, 0x02a69ff4, 0x9b3c44c1, + 0x432b633f, 0x9b204c28, 0x4fcc644f, 0x80000100, 0x4f56be0b, 0x2704c6fe, + 0x96fc8e02, 0x68cf9bcb, 0xc3d0c103, 0xb8d1d133, 0x32d3a903, 0x03210701, + 0xb8d2d528, 0xbcd4b903, 0x94f49b03, 0xf49b4203, 0xbd402794, 0xa603b4d4, + 0x4540a736, 0x35312314, 0x32d3ad24, 0x07061e01, 0xfdb67e0d, 0x070bc1c0, + 0xbec2230d, 0x1effc403, 0xbe0d070a, 0x9bffc7ff, 0x0a7668cf, 0xc57e0d07, + 0x2cdcadfe, 0x07c54601, 0xc3e5be0d, 0x07071eff, 0xc7e1be0d, 0x270716ff, + 0xf49b0c4c, 0xbcd4b994, 0x104c0303, 0x2794f49b, 0xf49b124c, 0x00fc8e94, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00049560, 0xf493f54e, 0x6902a4d8, 0xb9432946, + 0x09013102, 0x63630b44, 0x2bd007f0, 0xe22ff664, 0x3400d100, 0x30d48902, + 0x242b2007, 0x112764c6, 0x1027210c, 0x462e4123, 0x2f0c3127, 0xffffffff, + 0x41273027, 0x4027200c, 0x33874447, 0x43ab41ab, 0x20273027, 0x023ad3bd, + 0xd3bd3127, 0xd4d5023d, 0xd2d50228, 0xd2d50294, 0xd2d50220, 0xd2bd0224, + 0xd2bd023b, 0xd6d5023c, 0xd2d50230, 0xd2d503f4, 0xd2d5022c, 0x4f9b0290, + 0xfb40ccc1, 0x4665d499, 0x2704d648, 0x9b081e40, 0x4d83cf4f, 0xf49b0200, + 0x9b4027cf, 0xf49bd0f4, 0xd2f49bd1, 0x1ed3f49b, 0x9b40a709, 0xf49bdaf4, + 0x65d499dc, 0x45334183, 0xf49b41a3, 0xff0ea7c0, 0x04d1fbff, 0x42d80420, + 0x49d499fa, 0x996dd399, 0x438369d1, 0xd2993183, 0x154c336c, 0x43ab3833, + 0x42a31183, 0x21831933, 0x2c3341ab, 0xd542ab10, 0x27040404, 0x31d4bd41, + 0xcbfdbe01, 0xecf005ff, 0x27079504, 0x30d4bd40, 0x5c0ff601, 0x65d49907, + 0x4f274546, 0x20000001, 0x4f27071e, 0x10000001, 0x27a0f49b, 0x93902751, + 0x02a3aff0, 0x04290869, 0xd2d10309, 0x840b022c, 0xd789832b, 0x96b90730, + 0xd1b12724, 0x830228d4, 0x3544c446, 0xffff1ea7, 0x2014d1fb, 0xf542d804, + 0xccc14f9b, 0x4f9bfb40, 0x1c4c33c0, 0xffff2ea7, 0x1e4c53fb, 0x040423d1, + 0x43834103, 0x3de34b33, 0x43ab1800, 0x040424d5, 0x022cd2d1, 0x0228d4d1, + 0x32833207, 0x34ce4283, 0x333b072b, 0x0ea70c3c, 0xd1fbffff, 0x53042004, + 0xc4418341, 0x3ea3f141, 0xd5010022, 0xa3042403, 0x2cd2d522, 0x90d4d502, + 0xd1b90702, 0xd10228d3, 0x83022cd4, 0xce448334, 0x1ea74934, 0xd1fbffff, + 0x07041814, 0xc63fab34, 0x1e4307b4, 0x53433308, 0x430b194c, 0x0294d4d5, + 0xd4d54227, 0x2ea70290, 0xd1fbffff, 0xd8042024, 0xbc33f542, 0x22bea30c, + 0x2bd50200, 0xd4d10424, 0xb907022c, 0xd4d544a3, 0x3ea7022c, 0xd1fbffff, + 0xd8042034, 0xd4b9f542, 0x4d060239, 0x07203c27, 0x2b29071d, 0x5010a939, + 0xed424702, 0x060b8040, 0x032103ff, 0xd1f36812, 0xa70240d1, 0xf9ffff0e, + 0x0bc001d5, 0x0244d2d1, 0x0bc402d5, 0x0248d3d1, 0x0bc803d5, 0x024cd4d1, + 0x0bcc04d5, 0xd4bd4027, 0xd4990239, 0x28d3d165, 0xfb4fe602, 0x27323800, + 0x27031ec3, 0x3ad4b9c1, 0x9b454602, 0x40c8c14f, 0x9bf91e0d, 0x40ccc14f, + 0x1e4907fb, 0x004ffc11, 0xce100000, 0x004ffc00, 0xc6400000, 0x004fd800, + 0x29200000, 0x1abe0d07, 0x4127ffb6, 0x023cd4bd, 0xffb5f3be, 0x01fe0d27, + 0x9bc5f09b, 0x1127c54f, 0x10274496, 0x023bd1bd, 0x00971ff6, 0x9b623f9b, + 0x342b634f, 0x14003dec, 0x30e80597, 0xd4b90085, 0x4d560130, 0x9b622f9b, + 0x242b634f, 0x14002dec, 0xf393057f, 0xc102a104, 0x3f9b3c34, 0xf2432b63, + 0x9b056e42, 0x94be630f, 0x0d27ffc7, 0x54be1400, 0x0decffb0, 0x05591400, + 0xa0def193, 0x3c14c102, 0x2b633f9b, 0x4840f243, 0x05395e05, 0x4f6b4103, + 0x0130d4bd, 0x053944f0, 0xbe630f9b, 0x9bffc75f, 0x3f9b624f, 0xec432b63, + 0x1814004d, 0x000d2705, 0xb011be14, 0x000decff, 0x9b050a14, 0x045e634f, + 0x5e490705, 0x32380177, 0x031ea327, 0xd4b9a127, 0x4e86023a, 0xa6a24f9b, + 0xc1cf9b43, 0xdcfbc0cc, 0x000000cf, 0xd3a92f20, 0x4307012e, 0x40004da3, + 0x0224d4d5, 0x0000cfdc, 0x07100400, 0x004dc343, 0x2ed4ad01, 0xdff49b01, + 0x2d27251e, 0xd2d56000, 0x1b1e0224, 0x0abe0d07, 0x4127ffb5, 0x023cd4bd, + 0x0224d9d5, 0x4f9b091e, 0xfb40ccc1, 0xcffc091e, 0x40000000, 0x3f9b0103, + 0x634f9b62, 0x3dec342b, 0x04a11400, 0x00f130e8, 0x0130d4b9, 0x2f9b4d56, + 0x634f9b62, 0x2dec242b, 0x04891400, 0x9ffaf393, 0x3c34c102, 0x2b633f9b, + 0x7842f243, 0x630f9b04, 0xffc68abe, 0x14000d27, 0xffaf4abe, 0x14000dec, + 0xf1930463, 0xc1029fd4, 0x3f9b3c14, 0xf2432b63, 0x5e045240, 0x41030443, + 0xd4bd4f6b, 0x44f00130, 0x0f9b0443, 0xc655be63, 0x624f9bff, 0x2b633f9b, + 0x004dec43, 0x27042214, 0xbe14000d, 0xecffaf07, 0x1414000d, 0x634f9b04, + 0x93040e5e, 0x029f8bf2, 0x9b3c24c1, 0x432b633f, 0x9b204c28, 0x4fcc644f, + 0x80000100, 0x4842be11, 0x270586fe, 0xbd390740, 0x1e023ad4, 0x49d49945, + 0xd3a948c6, 0x32d4012c, 0xad402714, 0xf6012cd4, 0x684f9b36, 0x012cd4ad, + 0x091e45c6, 0x41234307, 0x012cd4ad, 0xfa9ba4a3, 0x24d4d1c1, 0x2745c602, + 0xa2f49b42, 0x0224d4d1, 0x27b4f49b, 0x07031e31, 0x6b430739, 0x0745364f, + 0x5e7f6b79, 0xd3d100d6, 0x36e60220, 0x4c334307, 0x1e4c530e, 0x0290d4d5, + 0xffff4ea7, 0x2443d5fb, 0x28ded104, 0x3dd2b902, 0x0b4e0702, 0x8332074f, + 0x33020747, 0x4c331b3c, 0xc343ab18, 0x333e0701, 0xab083339, 0x33370703, + 0x0e2c3344, 0x04ab3123, 0x80222da3, 0x830e4907, 0x14074127, 0xab0d1c33, + 0x34d4d112, 0x2cd2d102, 0x3310ab02, 0xd0890cbc, 0xab3e0730, 0x5331531b, + 0xd5420321, 0xd50220d1, 0xd50228d3, 0x2b022cd2, 0x1f40c840, 0x482b4007, + 0x41c84223, 0xa334a316, 0x001ea324, 0xd3d50300, 0xd2d50228, 0xd1d5022c, + 0x40270220, 0xd3bd3127, 0xd4bd023a, 0xd4bd023c, 0x0ea7023d, 0xb9feffff, + 0x271df004, 0x0f41c471, 0x9f26f193, 0x1810d102, 0xc0f08b02, 0x6807f301, + 0xf2935907, 0x09029f14, 0xf6410024, 0x9b01d67f, 0xc0ccc1cf, 0x3ad4b9fb, + 0x07449602, 0x21f393c9, 0x32c1029e, 0x631f9b3c, 0x07623f9b, 0x08422b43, + 0x07320740, 0xc8432b41, 0xf0931641, 0xc1029e04, 0x411b3c04, 0xbe1f48c4, + 0x66fe40fd, 0x9b171e06, 0xf193614f, 0xc1029dec, 0x438bbc13, 0xcfd84536, + 0x40000000, 0x27402714, 0x3ad4bd51, 0x20d9d502, 0x24d9d502, 0x011f5e02, + 0xb0ccbc87, 0x3cd4b932, 0x0749b602, 0xb283be0d, 0x99a127ff, 0xdabd65d4, + 0x4786023c, 0xffb257be, 0x01fe2d27, 0x9bc5f29b, 0x4027c53f, 0x023bd4bd, + 0xdabd34c6, 0xd499023b, 0xb94d5665, 0x26023ad4, 0x3cb0c849, 0x0000cfdc, + 0xa90f0400, 0xa3012ed4, 0xd540004d, 0x1e0224d4, 0x003d2709, 0x24d3d560, + 0xa24f9b02, 0x0c1e43a6, 0x0224d4d1, 0x4f9b4666, 0x2743a6a2, 0xa2f49b42, + 0x0224d4d1, 0xd5b4f49b, 0xd10224d9, 0x260220d3, 0x2cd4d13a, 0x003ee302, + 0x44e30300, 0x0220d3d5, 0x022cd4d5, 0x0290d9d5, 0xffff0ea7, 0x2004d1fb, + 0xf542d804, 0x0220d4d1, 0x042404d5, 0x0220d9d5, 0xffff1ea7, 0x2014d1fb, + 0xf542d804, 0x2665d499, 0xb94c0747, 0x33023bd3, 0x1f4c5343, 0x302743ab, + 0x31274486, 0x2e1e4307, 0x012cd4a9, 0x932542d4, 0x029cdff2, 0x9b3c24c1, + 0x432b633f, 0x9b204c28, 0x4fcc644f, 0x80000100, 0x4596be0b, 0x2704c6fe, + 0x07031e41, 0x274f6b49, 0x27449651, 0xbd402750, 0x47023ad4, 0x30d4b955, + 0x9b4c8601, 0x3f9b624f, 0xcc432b63, 0xf2933840, 0xc1029c98, 0x4f9b3c23, + 0xf434ee63, 0x62cf9b00, 0x994424c1, 0x040b4e20, 0xffab36be, 0xfe4bfbbe, + 0x10270d07, 0xfe5dcabe, 0x2b624f9b, 0xff41ec4c, 0x1e342700, 0x2774d659, + 0xe0491e01, 0xd1008151, 0x930234d4, 0x029d2bf1, 0xd4d54103, 0xf4930234, + 0x09029d20, 0x0644b940, 0x0d012302, 0x2746b610, 0xf49b0c4c, 0x2705e694, + 0xf49b1e4c, 0x94f49b94, 0x0636121e, 0x9f9af493, 0x15f25302, 0x014411f8, + 0xf6f48b20, 0x3801ec55, 0x270596f9, 0x5ef30537, 0x51c0009e, 0x8946072a, + 0x410330d3, 0xbe1843ce, 0x27ffc317, 0xff3ea740, 0x34d5fbff, 0xd4d50418, + 0xd4d50294, 0x40270290, 0x0131d4bd, 0x4127071e, 0x0238d4bd, 0x0238d4b9, + 0xf4934726, 0xc1029bcc, 0x40994443, 0xbe030b4e, 0xbeffaa77, 0x1efe4590, + 0x0e52c011, 0x9c8af493, 0x89434902, 0x43ce32d4, 0x430d070b, 0x9ef50ef0, + 0x05ffaed2, 0x27301ef5, 0x07bc1e51, 0x5af3be0d, 0xbd4127fe, 0x9b0130d4, + 0x4127c1fc, 0x07fc665e, 0x5adfbe0d, 0xbd4127fe, 0xa90130d4, 0xf4012cd4, + 0x5efc0c42, 0xf001fbdf, 0xf58ef043, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x04d1fc4e, 0x03b903b0, 0x442303bc, 0x42011c19, + 0x03b004d5, 0x03b401b9, 0x00983fe6, 0xffff2fc0, 0x9925ffff, 0x32074304, + 0x361a3c53, 0x834c4745, 0x051e404c, 0x46334107, 0x400b430b, 0x02144db9, + 0x0f20dcd0, 0xc100975e, 0x41f87804, 0x20270090, 0x3207d027, 0x00003f83, + 0x3b530200, 0xe307320b, 0xbfffef83, 0x230703ff, 0x15334e07, 0x2f831d0b, + 0x02000000, 0x42ab4153, 0x200b2147, 0x3fff3d83, 0x3fff4de3, 0x238943ab, + 0x9b3f8ba4, 0xf39b88f4, 0x804c278c, 0x278df49b, 0xf49b414c, 0x884f9b91, + 0x3f833407, 0x03ffc000, 0x3f83340b, 0x03ffffff, 0x2fc05f1e, 0xffffffff, + 0x4304991f, 0x43043027, 0x36333127, 0x4c534207, 0x0b300b1a, 0x1434b934, + 0x204cd002, 0xc1061e14, 0x415c7804, 0x04bd4127, 0xfc8e03b6, 0x40272027, + 0xd1e3d407, 0x04890d0b, 0x83e20784, 0xffffffef, 0x9b4f8b03, 0xf49b88fe, + 0x804c278c, 0x278df49b, 0xf49b414c, 0x883f9b91, 0x9b86f39b, 0x4d0788fe, + 0xab1a4c33, 0x90fc9b43, 0x9b93f49b, 0x4c27b0f4, 0x91f49b21, 0x038b4f9b, + 0xfc9b40cc, 0x93f49b90, 0x8eb0f49b, 0x000000fc, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x0d19fd4e, 0x2d070339, + 0xed474427, 0x24f52333, 0xff021200, 0x40273387, 0x34f5e103, 0xff021600, + 0x3e870129, 0x34f54327, 0xff021200, 0x100034f1, 0x48dcff02, 0xf12e87f8, + 0x02100024, 0x004ddcff, 0x4107f608, 0x4a033427, 0x120023f5, 0x4c83ff02, + 0x532d070f, 0x33233316, 0x3027141c, 0xab104c33, 0x0023f541, 0xf5ff0214, + 0x02140424, 0x0ef39bff, 0xfd4efd8e, 0xd107e007, 0xe4915e1e, 0x180834f5, + 0xe499ff02, 0x99e07104, 0x453305e3, 0xe299e161, 0xf50d2b20, 0x02180043, + 0xf51d0bff, 0x02180440, 0x233027ff, 0xfde8004e, 0x4e034335, 0xf5fde800, + 0x02181041, 0x102c33ff, 0x181440f5, 0x2fa3ff02, 0x04000000, 0xe7f04e23, + 0x914235fd, 0x0be471e3, 0x954d2b43, 0x99d027e4, 0x344704e4, 0x44f14333, + 0xff021000, 0x4c333103, 0x1d4c5318, 0x42c83433, 0x99fd8e8a, 0x35270404, + 0x43f54333, 0xff021200, 0xf3e8031e, 0x27040499, 0xf1433333, 0x02100044, + 0x0a4ddcff, 0xfe0bedfc, 0x025e03a9, 0x01a90469, 0x342b0204, 0x31022007, + 0x20293107, 0x031b232d, 0xfe0b200d, 0xe107fe4e, 0x01713c1e, 0x1e2b04a1, + 0x180834f5, 0x0419ff02, 0x02990361, 0x0b453320, 0x0043f53e, 0x33ff0218, + 0x2fa3102c, 0x04000000, 0x180441f5, 0x4e23ff02, 0x35fde800, 0x2704a142, + 0xa5410be0, 0x07031904, 0xf1433343, 0x02100044, 0x333533ff, 0x4c53184c, + 0xaf42c81d, 0xfc4efe8e, 0x90cef493, 0x8844d102, 0x29c00702, 0x86026901, + 0xa9420746, 0x0b025e03, 0x4ed12741, 0x0622be43, 0x27031e00, 0xa9c329d0, + 0x42011cc4, 0x0e0c0743, 0xff565efc, 0xd1264f9b, 0xd101ecc2, 0x8701f4c3, + 0x02322b44, 0x2b322b34, 0xdcc3d143, 0xdcc4d501, 0xd8c3d501, 0xb6c1be01, + 0x1bc4b9ff, 0x5e4fd601, 0xc231c449, 0xc3a94103, 0xc44d011c, 0x4027230b, + 0xc389c149, 0x35c42d10, 0x4231cac2, 0x097e0c07, 0xa7d786ff, 0xfeffff4e, + 0x1df044b9, 0x930f41c4, 0x02903ffd, 0x0218d0d1, 0x01c0f08b, 0xd4c4b9f8, + 0x03352701, 0x3301d0cd, 0x07102743, 0x0043f50c, 0x7eff0212, 0x0c07fef0, + 0x277e1027, 0x8e00a7fe, 0x07f94efc, 0xd40d03d0, 0x29b10701, 0xfda27ed9, + 0x01d2d2a9, 0x01d0d0b9, 0x01d1d1b9, 0x3c833207, 0xc02d833f, 0x975bbeff, + 0x6f3ea7ff, 0x4c27fde7, 0x27340516, 0x27341540, 0x0000004f, 0xd13435a0, + 0xc001d8dc, 0xb2c00ab1, 0x2710271b, 0xd1191ec0, 0xd10200d4, 0x0b01ecd3, + 0xfcd1d1c4, 0x2bc34a01, 0xd1051ec3, 0x0701dcd1, 0x2c3c2b31, 0xecd4d130, + 0x07340b01, 0xd54c0b43, 0xd501f4d4, 0x5301f8dc, 0x26f49b42, 0x01f0d4b9, + 0x01f4d3d1, 0x4487ad07, 0x01d0ad03, 0x1c0043f5, 0x0a07ff00, 0x27fd857e, + 0x1ad4bd41, 0x1cd4a901, 0x0d302701, 0xadd32dd3, 0x070204d4, 0xfe127e0d, + 0xf49305b6, 0xd1028f54, 0xd6028844, 0x1eb02744, 0xbe0d071c, 0xc60004b4, + 0x09f31e07, 0x23b103d4, 0x0d4fab41, 0x7e44f6d4, 0x0566fe5e, 0xb9ce0d07, + 0x1eb027eb, 0x93b72703, 0x028f1ff4, 0x44294209, 0xd3bd3027, 0x422b011a, + 0x0a07944e, 0xdd7e1c07, 0x8e0b07fd, 0x63f94ef9, 0x1404d1f0, 0x07f20502, + 0x464199c1, 0xb307d007, 0xfa09f929, 0x0005b2be, 0xa910c389, 0xc1011cd4, + 0x439b40cc, 0x14472027, 0x6930dcc5, 0x00d2d5d4, 0xfcd2d502, 0xecd1d501, + 0x9bb21901, 0x11c34734, 0xd52cd6b4, 0xd501dcd2, 0x1601d8d2, 0xe0d0d14a, + 0x0705a601, 0xe4d3d14c, 0xc2410b01, 0xd2891443, 0x031d072e, 0x2701e41d, + 0x4197be30, 0xe0d0d5fe, 0xe0d3d101, 0xe8d3d501, 0xd51d1e01, 0x4101e8d4, + 0xe4d4d5b4, 0x21111e01, 0xe8d4d5b3, 0xd8d3d501, 0xd5b43101, 0xd101dcd4, + 0x0701e8d4, 0xd54c0b0d, 0x1901e8d4, 0xfe4b7eb1, 0xd36905c6, 0x3a1b4027, + 0xd40dd94d, 0xf043d32d, 0xfc4ef98e, 0xfc930936, 0xa9028e40, 0xb901d2c2, + 0x0701d0c0, 0xd1c1b932, 0x3f3c8301, 0xffc02d83, 0xff9598be, 0x0d030c07, + 0xb07e01d0, 0xedf093fc, 0xfc0e028f, 0x4efbb35e, 0x079307f7, 0xabf063c0, + 0x8800d19f, 0x07f40502, 0x07190781, 0x09f729b2, 0xa496befa, 0x8cc3d100, + 0x2ec48902, 0x44874b9b, 0xf043340b, 0x0278caad, 0x0260c0ad, 0x0266c8ad, + 0x0280c3d5, 0x026cc9ad, 0x027ac7ad, 0x0264c0ad, 0x0262cbad, 0xfd4ef78e, + 0x8dbefd93, 0x62d3a902, 0x7ad4a902, 0x3334ca02, 0x026bd4b9, 0xd11d41c4, + 0xa90274d4, 0xa90270d1, 0xa90272d2, 0x07026ed3, 0x27853e0d, 0x6bd4bd42, + 0x27101e02, 0xff4ea733, 0x0327feff, 0x1df043bd, 0xf493fd8e, 0xa9028d7c, + 0xd1026043, 0x87028044, 0xa7340b33, 0xfeffff2e, 0x24bd4027, 0x23d51df0, + 0x40271df4, 0xa70ef49b, 0xfdefff2e, 0xf3e8031e, 0x276424c1, 0x184c3333, + 0x131d4c53, 0xef42c844, 0xffff4ea7, 0xf441d1fe, 0x0c0c271d, 0xe2072ea7, + 0xbe3427fe, 0x27ff946c, 0x1ea70c0c, 0xa7fee072, 0xfee20f2e, 0x59be3127, + 0xf353ff94, 0xf49301df, 0x27028d10, 0x1843d500, 0x4efd8e02, 0x01f193fb, + 0x1eb9028d, 0xe383026a, 0x44334e07, 0x978444f9, 0x43830004, 0x271041c4, + 0xff4ea732, 0x0227feff, 0x1df043bd, 0x14b9fb8e, 0x2ea7027c, 0x33fee203, + 0xf1440343, 0x02100044, 0x332351ff, 0x0127184c, 0x00273486, 0x4c533007, + 0x1332131d, 0x27343244, 0x31fb8e00, 0x072c2120, 0x1ed207b1, 0x7c14b960, + 0x33d37102, 0x0843f545, 0xb9ff0218, 0x89027c14, 0x45331ad3, 0x3c042127, + 0x6b2027ff, 0x7d11b93f, 0x103c3302, 0x18004cf5, 0x2c33ff02, 0xf523ab1a, + 0x02180440, 0x004e23ff, 0x4235fde8, 0xe8004e03, 0x1041f5fd, 0xf5ff0218, + 0x02181440, 0x233027ff, 0xfde7f04e, 0xdc414335, 0xd355d051, 0x0fd61b07, + 0x27e4339d, 0x85e4fd41, 0xb9000497, 0x53026ab4, 0x03fe6df3, 0xd5012741, + 0xbd0218b3, 0x8e026ab4, 0x93fa4efb, 0x028c1bfd, 0xe203eea7, 0x60d1a9fe, + 0xa9ec2902, 0x0b0266d2, 0x112cdac1, 0xfe40f453, 0xd4d50127, 0xdcad0218, + 0xfa8e0260, 0x0269dbb9, 0x0268d4b9, 0x4f6b4b1b, 0x00a244f4, 0x43834b07, + 0x04330407, 0x3f033007, 0x00049560, 0x021c31ad, 0xd1a9212b, 0x41030262, + 0x021e31ad, 0x025dd1b9, 0x31bda027, 0xee110224, 0x32ad4433, 0x3abd0222, + 0x3cad0225, 0x0f030220, 0x0004977c, 0x97784ef5, 0xbdbe0004, 0xd38900a3, + 0x78d4a92e, 0x12230702, 0xbd240734, 0x32025dda, 0xbd4127c2, 0xda025dd4, + 0xd4a923c2, 0xd2d10262, 0x41030280, 0xd4ad3387, 0xd4a90262, 0x230b026c, + 0x0264dca9, 0x0280d2d5, 0x0266d4ad, 0x31033b07, 0xfe51f453, 0xd4d50127, + 0xdcad0218, 0xd3bd0260, 0xfa8e0269, 0x4ea73227, 0x27feffff, 0xf043bd00, + 0x4efa8e1d, 0xffcea7fc, 0xc1d1feff, 0x19361df8, 0x8b26fd93, 0x84d0b902, + 0x1e65be02, 0xf4c4d1fe, 0x9641011d, 0x4ff45316, 0x18d4d5fd, 0x27012702, + 0x5cd4bd41, 0x93fc8e02, 0x028afff0, 0x31074027, 0x025c04bd, 0x3db63183, + 0xffff4ea7, 0xf043bdfe, 0x9b40271d, 0x2ea70ef4, 0x1efdefff, 0xc1f3e803, + 0x33276424, 0x53184c33, 0x44131d4c, 0x27ef42c8, 0x2ea70c0c, 0x27fee203, + 0xfdbe383c, 0x0c27ff91, 0x721ea70c, 0x2ea7fee0, 0x27fee20f, 0x91eabe31, + 0xbe051eff, 0x53fe3ffa, 0x93fe80f3, 0x028a9bf4, 0x43d50027, 0xfc8e0218, + 0x08a9f54e, 0x0469011c, 0x02680bb9, 0x025e09a9, 0x840bc007, 0xffff7ea7, + 0xff5ea7fe, 0xf693fdef, 0x07028a70, 0xdaa383ab, 0x3ea71798, 0xb9feffff, + 0x241df034, 0xbd412742, 0x691df034, 0x01115ec0, 0xd433da07, 0xc3b9dc0b, + 0x3b2e0269, 0x0225d4b9, 0x74b94b36, 0x44c61df0, 0xf3e80f1e, 0x276454c1, + 0x6a4ddc33, 0x131ef5fc, 0x41274244, 0x1df074bd, 0x4344091e, 0x0127b32e, + 0x74b9f58e, 0x41441df0, 0x021860d1, 0x01c0f08b, 0x69c4b9f8, 0x0cb4ce02, + 0x025cc4b9, 0x27b04fc6, 0xa9f58e00, 0x49021ed3, 0x3443cec4, 0x0225d4b9, + 0xd4b949f6, 0x41d80224, 0x7ec2a996, 0x7cc0b902, 0xb9320702, 0x83027dc1, + 0x2d833f3c, 0x3abeffc0, 0xd4b9ff91, 0x41c30224, 0x0224d4bd, 0x07ff715e, + 0x0b14331a, 0x1c12a91c, 0x1c92d202, 0x022211a9, 0x11c81f8b, 0x034a0711, + 0x0b443341, 0x1840d14c, 0xa220be02, 0x07290700, 0x0741034a, 0x334433da, + 0x0b4c0bd4, 0x1840d1dc, 0x20d3a902, 0xbe190702, 0x1200a109, 0xce080708, + 0x4b070d90, 0xb4074103, 0x4127bf6b, 0xd4a9181e, 0x403a021c, 0x0224d4b9, + 0x070944d8, 0x0741034b, 0x27bf6bb4, 0x68cbbd40, 0xf6900702, 0xadfed64f, + 0x27025ec0, 0x4ef58e01, 0xb94027fd, 0x6b026b03, 0x6b04bd1f, 0x07f06302, + 0xff1cc4d0, 0xff4d2730, 0xad20277f, 0xa7025e04, 0x8404bd40, 0x8802d502, + 0xa7322702, 0xfeffff4e, 0x8906f193, 0xf043bd02, 0x1812d51d, 0x6b12bd02, + 0x00d55e02, 0x028404b9, 0x2307412e, 0x3107231e, 0x33334107, 0x432b4533, + 0x019444f1, 0x01bdff00, 0x43010284, 0x028804d5, 0x04d5430b, 0x2027028c, + 0x0288d4d1, 0x00a14fe6, 0xd469d329, 0x3407430b, 0xd3ad3fab, 0x22c4025e, + 0x70d4a910, 0xa9434e02, 0x490272d3, 0x6634ced4, 0x027ed2a9, 0x027cd0b9, + 0x027dd1b9, 0x3c833207, 0xc02d833f, 0x8ffbbeff, 0xa9d369ff, 0x89011cd2, + 0x230b10d4, 0xf20d4103, 0xd1a9f42d, 0xd249025e, 0x0d07f401, 0x27fa5a7e, + 0xff4ea720, 0xd2bdfeff, 0xd2bd025c, 0x1127025d, 0x1df041bd, 0x8852f393, + 0x8bf45302, 0x6a32bdfa, 0x1834d502, 0x6832bd02, 0x6932bd02, 0xff4ea702, + 0x44b9feff, 0x41c41df0, 0x2dfd930f, 0xd0d10288, 0xf08b0218, 0x43f801c0, + 0x00fd8ef0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00023088, 0xd007f54e, 0xff9176be, 0x04e61007, 0xaf5e0d07, 0xbd412701, + 0x270131d4, 0x30d4bd40, 0xb6d0bd01, 0x014f2703, 0x9b200000, 0xfb93a0f4, + 0x27026858, 0x0400005e, 0x40006d27, 0x01fe7d27, 0x691ef993, 0x0c8c2702, + 0xb91eac27, 0x760130d4, 0x622f9b4b, 0x2b634f9b, 0xaa2dcc24, 0xb4c16710, + 0x633f9b3c, 0x42d2432b, 0x630f9b5c, 0xff8ebebe, 0x10aa0d27, 0xff777ebe, + 0x10aa0dcc, 0x3cb4c148, 0x2b633f9b, 0x3d40d243, 0x41032f1e, 0xd4bd4f6b, + 0x48d00130, 0x630f9b30, 0xff8e92be, 0x9b624f9b, 0x432b633f, 0x10aa4dcc, + 0xaa0d2710, 0x7745be10, 0xaa0d0cff, 0x634f9b10, 0xd2be0d07, 0x4127fe22, + 0x0130d4bd, 0x03b8d2d1, 0x0132d4a9, 0xd5142c03, 0xc603b8d2, 0x29f35345, + 0x014123ff, 0x32d4ad32, 0x9b240901, 0xf59bd4f4, 0xbcd4b9ca, 0x94f49b03, + 0x46ca4f9b, 0xbe0d0745, 0x1e000608, 0xcaf69b25, 0x24112041, 0x22312321, + 0x9bca1f9b, 0xf39bd5f4, 0xd7f29bd6, 0xf1d8f09b, 0x02309c14, 0x8b0d0700, + 0xc5f79bf4, 0xb9c5cf9b, 0x860130d4, 0x624f9b46, 0x2b633f9b, 0x07404c43, + 0x9ef50e0d, 0xb9fe23a8, 0x4b03b6d4, 0xc14a964f, 0x1f9b3cb2, 0x623f9b63, + 0x422b4307, 0x32074008, 0x432b4107, 0xc11141c8, 0x411b3cb4, 0xbe1348c4, + 0x06fe0a25, 0x9b0b1e07, 0xb3c1614f, 0x86438bbc, 0xb6d1b945, 0x4b0d0703, + 0x09401e1f, 0x0694b990, 0x0d012302, 0x9b45f690, 0x058694f8, 0x9b94fa9b, + 0x0e1e94fa, 0xf39305b6, 0x11026a60, 0x8b090734, 0x0f01ccf4, 0xc7460496, + 0x1c070d07, 0x949ef50e, 0xcfe60005, 0x0d07fe8f, 0xf50e1227, 0xfe23509e, + 0xf58e0727, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x14120a06, 0x00002321, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x0002338e, 0x0002341f, 0x00023492, 0x00023658, 0x000231c0, + 0x000235f0, 0x00000000, 0xe287fd4e, 0xe20b2433, 0x07670499, 0xbc03b9de, + 0x00de2303, 0x4886f9f6, 0x013204a9, 0x202744c6, 0xe2e90b1e, 0xff060a00, + 0x21832753, 0x4b334207, 0x029404ad, 0x03bc02bd, 0x3733051e, 0xf19b13ab, + 0x9b4027cf, 0xf49bd0f4, 0xd2f49bd1, 0x23d3f49b, 0x0dd514dc, 0x01ad03b8, + 0x04d50298, 0x04d502a8, 0x04d5029c, 0x04d502a0, 0xfd8e02a4, 0x9b804c27, + 0x4f9bcaf4, 0x2743a6a2, 0xa2f49b42, 0x9bca3f9b, 0x04b9cef1, 0x340b0296, + 0x23343c28, 0x061e343c, 0x3c03300c, 0x9603bd34, 0xd1fe0b02, 0x9b03b803, + 0x41d8c64f, 0x27402cfb, 0xb604bd41, 0xd44f9b03, 0x4f9b340d, 0x9b3415d5, + 0x3425d64f, 0x35d74f9b, 0xd84f9b34, 0xfe0b3445, 0x03b803d1, 0xe3d44f9b, + 0x41a30e4c, 0x4f9b340d, 0x0e4ce3d5, 0x4f9b3415, 0x0e4ce3d6, 0x4f9b3425, + 0x0e4ce3d7, 0x4f9b3435, 0x0e4ce3d8, 0x4f9b3445, 0x27402cc6, 0xb604bd41, + 0x9b412703, 0xfe0bcbf4, 0xc007fa4e, 0x87cd4f9b, 0x1c4bf144, 0xd80001c3, + 0x180100bd, 0x45534b07, 0x41034183, 0xab074487, 0xc3a44ef1, 0xac830001, + 0x930c1e0f, 0xff91b7f4, 0x4e01ab07, 0x4b07a383, 0x00004fa3, 0xf49b8000, + 0x074c07cd, 0x284d033c, 0x2c3d0303, 0x14c4d503, 0x20c3d503, 0xca4f9b03, + 0x0328c4d5, 0x07cd4f9b, 0x301d031c, 0x2cc4d503, 0x10c1d503, 0x07e30103, + 0x270e07da, 0x9b252620, 0x1405ca4f, 0xd1581403, 0x27ccf39b, 0x6b081e21, + 0xccf39b3f, 0x04032027, 0xd2530301, 0x01003dd4, 0x0b4287dd, 0x1cc4d541, + 0x07e40103, 0x403ca334, 0x4f9b2526, 0x031405ca, 0x9ba25814, 0x2127ccf3, + 0x3f6b081e, 0x27ccf39b, 0x01e40320, 0xd4a253e4, 0xd801004d, 0x4f9b2526, + 0x031405ca, 0x30cd0314, 0x2bd10703, 0x03d273dc, 0x33bfabd1, 0xdbab18dc, + 0x0330cd23, 0x00001e27, 0xcaf19b02, 0x34ca3f9b, 0x1e27403c, 0x1e040000, + 0x00dda308, 0x3f3c8310, 0x9b204c27, 0x3706cbf4, 0x0c0713ab, 0x07fe4f7e, + 0xbe1d070c, 0x07ff9bdc, 0x5efa0e0c, 0x4c27fe6f, 0xcbf49b80, 0x0c071d07, + 0x00001ea3, 0x9bc2be80, 0x0e0c07ff, 0xfe825efa, 0x03bc04b9, 0x03b802d1, + 0x31274733, 0x240d41a3, 0x23152345, 0x23352325, 0x03bc04b9, 0x41a34733, + 0x9bcff49b, 0xf39bd0f3, 0xd2f39bd1, 0xb9d3f39b, 0x9b03bc04, 0x049994f4, + 0x27424449, 0x8000001f, 0x9e202701, 0x9eff9943, 0x4eff9af6, 0x07d007fb, + 0x8855beb1, 0xbd4027ff, 0x930131d4, 0x026203fc, 0xc329c469, 0x430bc209, + 0x9b0f42ce, 0x2027cf1f, 0x02001d83, 0x417e0d07, 0x49b536fd, 0x32d489c3, + 0x0d07344a, 0x339efb0e, 0x0027ff74, 0xfc4efb8e, 0x4227d007, 0x9bcaf49b, + 0xf49bca3f, 0x0803adca, 0xca3f9b03, 0xadcaf49b, 0x9b030a03, 0xf49bca3f, + 0x0c03adca, 0xca4f9b03, 0xad640399, 0x56030e04, 0x00cf2735, 0x1e030003, + 0x9b442711, 0xcf9bcaf4, 0xa3c433ca, 0x000300cf, 0x004e2703, 0xf49b0100, + 0xca1f9bca, 0x9b1e4c27, 0x1766cbf4, 0x1ea30d07, 0x7e050000, 0x0d07fd30, + 0x5cbe1c07, 0x0d07ff9b, 0x505efc0e, 0x804c27fd, 0x07cbf49b, 0xa30d071c, + 0x8000001e, 0xff9b42be, 0xfc0e0d07, 0x4efd635e, 0x27d007fc, 0xcaf49b42, + 0x99ca4f9b, 0x04d56403, 0x35560308, 0x1200cf27, 0x111e0200, 0xf49b4427, + 0xcacf9bca, 0xcfa3c433, 0x02001200, 0x00004e27, 0xcaf49b01, 0x27ca1f9b, + 0xf49b1e4c, 0x071766cb, 0x001ea30d, 0xbd7e0300, 0x070d07fc, 0x9ae9be1c, + 0x0e0d07ff, 0xfcdd5efc, 0x9b804c27, 0x1c07cbf4, 0x1ea30d07, 0xbe800000, + 0x07ff9acf, 0x5efc0e0d, 0xfa4efcf0, 0x4d27d007, 0xf49b01fe, 0xc54f9bc5, + 0x01034ff6, 0x47490499, 0x804f0344, 0x19000230, 0x07403943, 0x9b210323, + 0x4f9bc5f3, 0x9b41a3d0, 0x4f9bd0f4, 0x9b41a3d2, 0x4f9bd2f4, 0x9b41a3d5, + 0x4f9bd5f4, 0x9b41a3d7, 0x4f9bd7f4, 0x2744d6c5, 0x9b241e10, 0x41c3d04f, + 0x9bd0f49b, 0x41c3d24f, 0x9bd2f49b, 0x41c3d54f, 0x9bd5f49b, 0x41c3d74f, + 0x27d7f49b, 0xf29b0f1c, 0x022203c5, 0x9b200720, 0x4ce3cf4f, 0xcff49b30, + 0xe3d44f9b, 0xf49b304c, 0xcf4f9bd4, 0x18004de3, 0x9bcff49b, 0x4de3d44f, + 0xf49b1800, 0x64d499d4, 0x4f9b48e6, 0x234846c5, 0xc5f29b21, 0x4f9b2103, + 0xcf3f9bc5, 0x44334103, 0xf39b34ab, 0xd43f9bcf, 0xf39b34ab, 0x9b14abd4, + 0xaf9bc5f2, 0xc5f09bc5, 0x99c5bf9b, 0x44d664d4, 0x091ec027, 0xf49b4427, + 0xcacf9bca, 0x9b1e4c27, 0x0d07cbf4, 0x00001ea3, 0xfb9a7e01, 0x4bab4a47, + 0x4487c433, 0x0d071c07, 0x59be14ab, 0x0d07ff95, 0xb05efa0e, 0xb80cd1fb, + 0x73a7be03, 0xb94027ff, 0x070296db, 0x96d4bd0d, 0x801c2702, 0xff9537be, + 0x03bcd4b9, 0x0296dbbd, 0x4d034733, 0xf49b016f, 0x27c40dcf, 0xf49b0e4c, + 0xd1f49bd0, 0x9bd2f49b, 0xc445d3f4, 0xc425c415, 0xfa0ec435, 0xff73479e, + 0xd007fc4e, 0x9b3e4c27, 0x4e27cbf4, 0x9b020000, 0x1f9bcaf4, 0x401c54ca, + 0x00004e27, 0x00cf2704, 0x1e010000, 0x3f1c830a, 0x1000cf27, 0x17860100, + 0x0d0714ab, 0x07faff7e, 0x271c070d, 0xbe312720, 0x07ff9657, 0x5efc0e0d, + 0x4c27fb1b, 0xcbf49b80, 0x0d071c07, 0x00001ea3, 0x27202780, 0x9639be31, + 0x0e0d07ff, 0xfb2a5efc, 0xb007fa4e, 0x80004d27, 0x9bcaf49b, 0xf49bca1f, + 0xca2f9bca, 0x9bcaf49b, 0xf49bca3f, 0xca4f9bca, 0x3433c287, 0xc1abc3ab, + 0xc4ab4633, 0x0000ce34, 0x1ea02701, 0x27cfab05, 0x6b4c07a1, 0x004f034f, + 0x9b800000, 0x4b07cdf4, 0x4d033b07, 0x3d030328, 0xb4d5032c, 0xb3d50314, + 0x4f9b0320, 0x28b4d5ca, 0xcd4f9b03, 0x1d031b07, 0xb4d50330, 0xb1d5032c, + 0xf4930310, 0xd8ff8ce8, 0x4c0721c1, 0x4c834653, 0xb442f10c, 0x010001c3, + 0xccf39b23, 0x23012403, 0x01003df4, 0x01270279, 0x44010a1e, 0xf49b4411, + 0xd80027cc, 0x4c0729c4, 0x4c834853, 0xc442f10c, 0x010001c3, 0x9b052623, + 0x1405ca4f, 0xf39b1403, 0x012403cc, 0x003dd423, 0x0127ee01, 0xf493181e, + 0x41ff8c8c, 0x26431144, 0xca4f9b05, 0x14031405, 0x27ccf39b, 0x10ccd800, + 0x534c0729, 0x0c4c834a, 0xc3d442f1, 0x23010001, 0x4f9b0526, 0x031405ca, + 0xccf39b14, 0x23012403, 0x01003dd4, 0x1e0127ee, 0x49f49318, 0x4481ff8c, + 0x05264311, 0x05ca4f9b, 0x9b140314, 0x0027ccf3, 0x2a40ccd8, 0x4c534c07, + 0x0c4c830c, 0xc3e442f1, 0x23010001, 0x4f9b0526, 0x031405ca, 0xccf39b14, + 0x23012403, 0x01003dd4, 0x1e0127ee, 0x05f49319, 0x44c1ff8c, 0x26431130, + 0xca4f9b05, 0x14031405, 0x27ccf39b, 0x0b408700, 0x1cb4d541, 0xe5f49303, + 0xc2d8ff8b, 0x534c072c, 0x0c4c8346, 0xc3b442f1, 0x23010001, 0x4f9b0526, + 0x031405ca, 0x403ca314, 0x03ccf39b, 0xd4230124, 0xeb01003d, 0x161e0127, + 0x43114401, 0x4f9b0526, 0x031405ca, 0x403ca314, 0x27ccf39b, 0x2cc8d800, + 0x48534c07, 0xf10c4c83, 0x01c3c442, 0x26230100, 0xca4f9b05, 0x14031405, + 0x9b403ca3, 0x2403ccf3, 0x3dd42301, 0x27eb0100, 0x931b1e01, 0xff8b6ff4, + 0x43114441, 0x4f9b0526, 0x031405ca, 0x403ca314, 0x27ccf39b, 0x20ccd800, + 0x534c072c, 0x0c4c834a, 0xc3d442f1, 0x23010001, 0x4f9b0526, 0x031405ca, + 0x403ca314, 0x03ccf39b, 0xd4230124, 0xeb01003d, 0x1b1e0127, 0x8b26f493, + 0x114481ff, 0x9b052643, 0x1405ca4f, 0x3ca31403, 0xccf39b40, 0xccd80027, + 0x4c072b80, 0x830c4c53, 0x42f10c4c, 0x0001c3e4, 0x05262301, 0x05ca4f9b, + 0xa3140314, 0xf39b403c, 0x012403cc, 0x003dd423, 0x1c1eeb01, 0x8adef493, + 0x3044c1ff, 0x05264311, 0x05ca4f9b, 0xa3140314, 0xf39b403c, 0x9b081ecc, + 0x1405ca4f, 0xbd031403, 0xd1070330, 0xd273db2b, 0xbd23d103, 0xdc330330, + 0x001e2718, 0xf19b0200, 0xca3f9bca, 0x27403c34, 0x0400001e, 0xdda3081e, + 0x3c831000, 0x204c273f, 0x86cbf49b, 0x0713ab37, 0xf7f27e0b, 0x1d070b07, + 0x3a072c07, 0xff934abe, 0xfa0e0b07, 0x27f80e5e, 0xf49b804c, 0x071d07cb, + 0x001ea30b, 0x2c078000, 0x2cbe3a07, 0x0b07ff93, 0x1d5efa0e, 0xca4f9bf8, + 0x14031405, 0x00fd745e, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x0dd1fc4e, 0xcf2703b0, 0xf4000000, 0x236a0499, 0xd1d301d4, 0xd1021402, + 0xa602180e, 0xff3f834b, 0xd47fffff, 0x0000003f, 0x43072f04, 0x73124c33, + 0x4103124c, 0x072243d4, 0x73463343, 0x4fc8144c, 0xffffffff, 0x1142cc14, + 0x00002f14, 0x20270400, 0x0000ef14, 0xe0270400, 0xf49b1419, 0x9b204890, + 0xf29b93f2, 0x9b041eb0, 0x4c0393fc, 0x90f49b40, 0xfe9be048, 0xb0fe9b93, + 0xfc9b041e, 0x01140393, 0x004dd414, 0x0dd58701, 0xfc8e03b0, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0xd007f54e, 0xff517abe, + 0x04e61007, 0x665e0d07, 0xbd412704, 0x270131d4, 0x30d4bd40, 0xb6d0bd01, + 0x014f2703, 0x9b200000, 0xf893a0f4, 0x2702285c, 0x0400009e, 0x930c5c27, + 0x022927f6, 0xb91e7c27, 0x760130d4, 0x622f9b4b, 0x2b634f9b, 0x542dcc24, + 0x84c16721, 0x633f9b3c, 0x42d2432b, 0x630f9b5c, 0xff4ecabe, 0x21540d27, + 0xff378abe, 0x21540dcc, 0x3c84c148, 0x2b633f9b, 0x3d40d243, 0x42032f1e, + 0xd4bd4f6b, 0x48d00130, 0x630f9b30, 0xff4e9ebe, 0x9b624f9b, 0x432b633f, + 0x10aa4dcc, 0xaa0d2710, 0x3751be10, 0xaa0d0cff, 0x634f9b10, 0xdebe0d07, + 0x4227fde2, 0x0130d4bd, 0x03b8d2d1, 0x0132d3a9, 0x1c031207, 0xb8d1d514, + 0xbcdcb903, 0xcfef9b03, 0x0298d4a9, 0x4de3be07, 0xbd830280, 0xb4ab0280, + 0x07cffb9b, 0x280c0302, 0x43073ee6, 0xd4ad4123, 0x40270132, 0x9bd4f49b, + 0xf49bd5f4, 0xd7f49bd6, 0x27d8f49b, 0x3024c530, 0x044524b5, 0x3528238d, + 0xcaf99b04, 0xd6ca3f9b, 0x1ea02734, 0xcffe9b17, 0x4027c4e6, 0x9bd4f49b, + 0xaf9bcaf9, 0xeca30bca, 0x270083a2, 0x9b01003d, 0xcf9bcaf3, 0x89761eca, + 0xc5062823, 0x89803c18, 0xf39b1423, 0xcaf99bd4, 0xd6ca2f9b, 0x1ea02724, + 0xcffe9b16, 0x0409c4e6, 0x9bd4f49b, 0xaf9bcaf9, 0xcca20bca, 0x4b0747a2, + 0x9b404ca3, 0x0409cff4, 0x9b404ca3, 0x4d27d4f4, 0xf49b0100, 0xca2f9bca, + 0x3cd82626, 0x14090c80, 0x9b404ca3, 0x1c23d4f4, 0x07310714, 0x143c03c2, + 0xf49b1461, 0x9b1471d5, 0x3431d6f4, 0x41d7f49b, 0xd8f49b34, 0x0394fc9b, + 0x94fc9bc2, 0xd3b94027, 0xd4bd03bc, 0xc22303b4, 0x00af3cee, 0x029cd1d1, + 0x02a0d3d1, 0xd4d1ca26, 0x030702a4, 0x83304ce3, 0x04ab300c, 0xef9b2107, + 0xd24f9bd0, 0x9b304ce3, 0x1c83d11f, 0x9b14ab30, 0xf09bd0f2, 0xd2fe9bd1, + 0x1ed3f19b, 0xe3210753, 0xab278337, 0xd0f19b23, 0x31074207, 0x83303ce3, + 0x43ab304c, 0x07d1f49b, 0x301c8342, 0xab304ce3, 0xd2f49b41, 0xd1d3f29b, + 0xd102a4d2, 0x0702a8d4, 0x8347e312, 0x0714ab17, 0x07010732, 0xe34207e1, + 0x0c83303c, 0x30ece330, 0xab304c83, 0x07e4ab03, 0xad4b334c, 0xd502acdb, + 0xd502b0d2, 0xd502b4d0, 0xd502b8de, 0xad02bcd1, 0xbd0294d4, 0x1e03bcdc, + 0xacdead3d, 0xd04f9b02, 0x02b0d4d5, 0xd5d14f9b, 0x9b02b4d4, 0xd4d5d24f, + 0x4f9b02b8, 0xbcd4d5d3, 0x9cd4d102, 0xd0f49b02, 0x02a0d4d1, 0xd1d1f49b, + 0x9b02a4d4, 0xd4d1d2f4, 0xf49b02a8, 0x07a546d3, 0xc446be0d, 0x27151eff, + 0x9b40003d, 0x4f9bcaf3, 0x9c44f1ca, 0x07000230, 0xb9f48b0d, 0xf603b6d1, + 0xd100e61f, 0xb903b8db, 0x0703bcd4, 0x14cc03cb, 0x03b8dcd5, 0x9b104c03, + 0xd4b994f4, 0x4c0303bc, 0x94f49b12, 0xd4bd4127, 0x4f9b03b4, 0xd02f9bcf, + 0x9bd11f9b, 0xef9bd20f, 0xacd3a9d3, 0x98d4ad02, 0x803de302, 0x804d8302, + 0x9cd2d502, 0xa0d1d502, 0xa4d0d502, 0xa8ded502, 0x9b43ab02, 0xd4d1cff4, + 0xf49b02b0, 0xb4d4d1d0, 0xd1f49b02, 0x02b8d4d1, 0xd1d2f49b, 0x9b02bcd4, + 0xd4b9d3f4, 0x451603bc, 0xcb07b409, 0xb489071e, 0x804ca314, 0x11d4f49b, + 0xd5f49bc4, 0xf49bc421, 0x9bc431d6, 0xc441d7f4, 0x07d8f49b, 0x4c31233a, + 0xcaf99b30, 0x1eca3f9b, 0xcf4f9b13, 0x9b404ca3, 0x4f9bcff4, 0x404ca3d4, + 0x46d4f49b, 0xbe0d0735, 0x1effc360, 0x004d2715, 0xcaf49b40, 0xf1ca4f9b, + 0x02309c44, 0x8b0d0700, 0xb6d1b9f4, 0x07150603, 0x1ecf4bc1, 0x94f59b16, + 0x03bcd4b9, 0x9b104c03, 0x3c2794f4, 0x94f39b12, 0x4d27c027, 0xf49b01fe, + 0xc5bf9bc5, 0x0130d4b9, 0x4f9b4686, 0x633f9b62, 0x404c432b, 0xf50e0d07, + 0xfde0eb9e, 0x82c1ca96, 0x631f9b3c, 0x07623f9b, 0x08422b43, 0x07320740, + 0xc8432b41, 0x84c11141, 0xc4411b3c, 0x6ebe1348, 0x0686fdc7, 0x4f9b0b1e, + 0xbc83c161, 0x4506438b, 0x1c070d07, 0x6009401e, 0x020664b9, 0x600d0123, + 0xf59b45f6, 0x9b058694, 0xf79b94f7, 0xb60e1e94, 0xadf39305, 0x34110227, + 0xf48b0607, 0x960f01cc, 0x07b74604, 0x0e1b070d, 0xc2e19ef5, 0xd0bfe6ff, + 0x270d07fb, 0x9ef50e12, 0x27fde09d, 0x00f58e07, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x04d1fd4e, 0x039903b0, + 0x0144236a, 0xb004d542, 0x140ed103, 0x180dd102, 0x073de602, 0xff0f8302, + 0xd47fffff, 0x0000000f, 0x20073f04, 0x2c732633, 0x843f9b14, 0x43834307, + 0x5b144c03, 0x73311834, 0x33400721, 0x4c73124c, 0xd4410312, 0x2fc81b43, + 0xffffffff, 0x1122cc14, 0x0000ef14, 0xe0270400, 0x0000df14, 0xd0270400, + 0xf19b1119, 0x9be04890, 0xfe9b93fe, 0x270a1eb0, 0x0000004f, 0x93f49bf4, + 0x9b401c03, 0xd04890f1, 0x9b93fd9b, 0xfd8eb0fd, 0x00004f27, 0xf49bf400, + 0x00fd8e93, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0xe95ef493, 0x0b406901, 0x47fd4efe, 0x07e00be3, + 0x07e123d3, 0x7fece330, 0x197f3ce3, 0x803c0334, 0x1e11e3ca, 0x29211cf7, + 0x03040d14, 0x03215314, 0x07051e02, 0x2731033d, 0x8ef34841, 0x23f74efd, + 0x07b307f1, 0x07810770, 0x273f07d2, 0x4c270fec, 0x033e1d10, 0x27f4c831, + 0x07e42720, 0x27320b3b, 0x03340540, 0x07fe9824, 0x233207e2, 0x0b4d07e1, + 0x5444194e, 0x2f07104c, 0x4e1d420b, 0x9b07f360, 0x03100c27, 0x070e2b98, + 0x8743534e, 0x834e0724, 0x07d48747, 0x194e0b47, 0x07120744, 0x0bce0bc8, + 0x07190b2b, 0xd4e103ad, 0x070f104c, 0x19430b3f, 0x3b230144, 0x0534ab4d, + 0xd4c41923, 0x070f104c, 0x19420b2f, 0x3b130144, 0x0534ab4a, 0xb8f0f013, + 0xf78ef103, 0xffff3ea7, 0x2034d1fb, 0xfa42d804, 0xeb36f493, 0xf440d101, + 0x1834d103, 0x0b008704, 0x93fa4efe, 0x01eb23f2, 0xa307f063, 0xc0442bc1, + 0x24d17901, 0xd0070214, 0xa77004ce, 0xfeffffce, 0x1df1c4b9, 0x021420d5, + 0xc4d14746, 0x40ce1e34, 0xbe002712, 0x27fef114, 0xf1c4bd40, 0xffdea71d, + 0xfc93f9ef, 0xd101eae4, 0x0e0218c4, 0x2fbea7b4, 0xd2c1f9ef, 0x070c074c, + 0x500d031d, 0x501c0302, 0x7e203c27, 0xc499feb5, 0x20ce9943, 0x2b071d07, + 0x3c070d07, 0x03281c03, 0x03080328, 0x0502403d, 0xfecb7efe, 0xc4bd4127, + 0x0a070239, 0xfa8ef043, 0xf493fe4e, 0x3101ea94, 0x1444d101, 0x5914ce02, + 0xa75611c0, 0xfeffff3e, 0x1df134b9, 0x274a42c0, 0xf134bd42, 0x3431d51d, + 0x9b40271e, 0x2ea70ef4, 0x1efdefff, 0x11f3e803, 0x33332724, 0x4c53184c, + 0xc844131d, 0x0027f042, 0xefff2ea7, 0xd03c27f9, 0xfeeecfbe, 0x1ea70027, + 0xa7fee072, 0xfee20e2e, 0xfe0e3127, 0xfeeebb9e, 0x11c8fe8e, 0xff4ea713, + 0x41d5fbff, 0x3407042c, 0x042034d1, 0x0bfa42d8, 0x13fb4efe, 0xd007fcf4, + 0x0b990405, 0x622f9b6e, 0x2b634f9b, 0x102ccc24, 0x6dfc932f, 0xc4c101e6, + 0x633f9b3c, 0x42d2432b, 0x630f9b1f, 0xff0cfebe, 0xbe100c27, 0xccfef5bf, + 0xc10d100c, 0x3f9b3cc4, 0xfa432b63, 0xbe01fd04, 0x99fef2a2, 0xd49964d3, + 0x33c38768, 0x49d39944, 0x9969d299, 0xc4ab6fd1, 0x2113c3ab, 0x2770d499, + 0x27121431, 0xab253330, 0x273633c2, 0x27421421, 0x99420720, 0xc3ab4cd2, + 0xc4ab4733, 0x00822fe6, 0x38be0d07, 0xd499fda4, 0x33344775, 0x2b432b43, + 0x34bc10b4, 0xd199b027, 0xff2ea766, 0x1a33fdef, 0xf3e8031e, 0x33272401, + 0x53184c33, 0x44c01d4c, 0xff2ea7f2, 0x4027fdeb, 0x3f272405, 0x12820000, + 0xf49b2315, 0x0300270e, 0x01522c1f, 0x002d2700, 0xef0dbe04, 0x75d499fe, + 0x836fd399, 0xab493343, 0x101027c4, 0x99112732, 0x202770d4, 0x21274210, + 0x53be0d07, 0xf493fda5, 0x05ff4184, 0x00895ed4, 0xa766d199, 0xfdefff2e, + 0x031e1a33, 0x2401f3e8, 0x4c333327, 0x1d4c5318, 0xa7f244c0, 0xfdebff2e, + 0x24054027, 0x00003f27, 0x23151282, 0x270ef49b, 0x2c1f0300, 0x27000152, + 0xbe04002d, 0x93feeea3, 0x01e617f4, 0x42694329, 0x230b4409, 0x2b67d399, + 0xbd402724, 0x3b03b4d4, 0x270d0723, 0x8152be10, 0x20d499ff, 0x4f6b4623, + 0xcda34214, 0xd4990100, 0x93452667, 0xffbc83f4, 0xf493061e, 0x05ff7c80, + 0xd54027d4, 0x270304d4, 0xc3f49b47, 0x27c9fc9b, 0x9b01004d, 0xcea7a0f4, + 0x27f97fff, 0x4f9b80dc, 0x072407ae, 0x33140734, 0x182c7328, 0x1f4b3f8b, + 0x2b9b1b9b, 0x4c733873, 0x73147318, 0x803f0324, 0x030002b9, 0x02b9804f, + 0x0b310b00, 0x803e9942, 0x9b804099, 0x3207ae2f, 0x42071207, 0x1f4b3f8b, + 0x1b9b3873, 0x14734833, 0xb9803f03, 0x4c730002, 0x9b310b18, 0x182c734b, + 0x33994473, 0x802f0380, 0x0b0002b9, 0x33083324, 0x2499103c, 0xab03ab80, + 0x184c330e, 0xc00504ab, 0xfdf0c403, 0x9b402782, 0x4d270ef4, 0xf49b0300, + 0x114f27a0, 0x9b200000, 0xf9bea0f4, 0x0027fef8, 0xc4c1fb8e, 0x633f9b3c, + 0x4c28432b, 0x0e0c2710, 0x0d07fb8e, 0x639efb0e, 0x0000fef7, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x007c0000, 0x7c000000, 0x00000000, + 0x0000007c, 0x00007c00, 0x00007c00, 0x7c7c0000, 0x7c7c0000, 0x0000007c, + 0x0000007c, 0x007c7c00, 0x007c7c00, 0x7c7c7c00, 0x7c7c7c00, 0x7c7c7c7c, + 0x007c7c7c, 0x7c7c7c7c, 0x7c7c7c7c, 0x7c7c7c7c, 0x7c7c7c7c, 0x7c7c7c7c, + 0x7c7c7c7c, 0x7c7c7c7c, 0x7c7c7c7c, 0x7c7c7c7c, 0x7c7c7c7c, 0x7c7c7c7c, + 0x7c7c7c7c, 0x7c7c7c7c, 0x7c7c7c7c, 0x7c7c7c7c, 0x787a7c7c, 0x70727476, + 0x686a6c6e, 0x60626466, 0x585a5c5e, 0x50525456, 0x484a4c4e, 0x40424446, + 0x383a3c3e, 0x30323436, 0x282a2c2e, 0x20222426, 0x181a1c1e, 0x10121416, + 0x080a0c0e, 0x00020406, 0x07050301, 0x0f0d0b09, 0x17151311, 0x1f1d1b19, + 0x27252321, 0x2f2d2b29, 0x37353331, 0x3f3d3b39, 0x47454341, 0x4f4d4b49, + 0x57555351, 0x5f5d5b59, 0x67656361, 0x6f6d6b69, 0x77757371, 0x7d7d7b79, + 0x7d7d7d7d, 0x7d7d7d7d, 0x7d7d7d7d, 0x7d7d7d7d, 0x7d7d7d7d, 0x7d7d7d7d, + 0x7d7d7d7d, 0x7d7d7d7d, 0x7d7d7d7d, 0x7d7d7d7d, 0x7d7d7d7d, 0x7d7d7d7d, + 0x7d7d7d7d, 0x7d7d7d7d, 0x7d7d7d7d, 0x7d7d7d7d, 0x7d007d7d, 0x7d7d7d7d, + 0x7d7d7d7d, 0x7d7d7d7d, 0x7d007d7d, 0x007d007d, 0x007d007d, 0x007d007d, + 0x007d7d7d, 0x7d007d00, 0x00007d00, 0x00007d00, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0xff0102cc, 0x0004ac00, 0x00000001, 0x00000000, + 0x00000003, 0x00000004, 0xff011bc0, 0x0004ac08, 0x00000200, 0x000001de, + 0x00000003, 0x00000004, 0xff011bcc, 0x0004ac10, 0x00000200, 0x000001de, + 0x00000003, 0x00000004, 0xff011ba8, 0x0004ac18, 0x00000008, 0x00000007, + 0x00000003, 0x00000004, 0xff011bb4, 0x0004ac20, 0x00000008, 0x00000007, + 0x00000003, 0x00000004, 0xffff3ea7, 0x200fa3f7, 0xa5200002, 0xb5402730, + 0x4efe0b34, 0x6b1007fd, 0x03d1871f, 0x04ad94df, 0x9b085300, 0xd401103f, + 0x9c66f293, 0x2b2e6101, 0x9dd40543, 0x249908e1, 0xff3ea716, 0xe49dfd4f, + 0x08248909, 0x2499e44d, 0x0a21890c, 0x410b3211, 0xe205e46d, 0x402707f6, + 0x070ef49b, 0x27ff8b00, 0x05302740, 0x08e39de4, 0x01102f9b, 0x05420bd4, + 0x07fd8ed4, 0x03427340, 0x1ef4e841, 0x034007e3, 0x45330d4c, 0x180042f5, + 0x100bff02, 0x180443f5, 0x2027ff02, 0xe8004e23, 0x034235fd, 0xfde8004e, + 0x181041f5, 0x43f5ff02, 0xff021814, 0xe7f04e23, 0x0b4235fd, 0xff4ea7fe, + 0x40d5f7ff, 0x22530100, 0x340725c6, 0x010834d1, 0x14031405, 0xfe0bf2a8, + 0x4ea7f84e, 0x99ffffff, 0x44d10a03, 0xb0070108, 0x076c3fc6, 0x074853a4, + 0x539f6b94, 0x030710ac, 0xd027eb07, 0xc0a78027, 0x0758e299, 0x33320742, + 0x2b353343, 0xff2cc034, 0x8c34f113, 0x27ff0001, 0xd81d3b11, 0x0400004e, + 0x03c1eb26, 0xf0e103d1, 0xb441d7f0, 0xb431842e, 0xa7204cce, 0xf7ffff4e, + 0xc5444cc5, 0x00274848, 0xbc35b845, 0x92cef88e, 0x338d07db, 0x8aab108c, + 0x0427d21e, 0xc027f88e, 0xcf1e8027, 0x4ea7fd4e, 0x01f7ffff, 0x07d00743, + 0x0d38dc01, 0xfd8e16b6, 0x10060e27, 0xfea57e27, 0x5d7e0d07, 0x8e0276ff, + 0x5efd0efd, 0xfc4efe97, 0xefff3ea7, 0x8834c1fd, 0x4c33d007, 0x1d4c5318, + 0x071944c4, 0x270d07c3, 0x27ba3e10, 0xc1f4e843, 0x3c3388c3, 0x1d3c5318, + 0x8eeb34c0, 0x87fd4efc, 0x0b163341, 0x4c43f141, 0x030004ac, 0x11024c0d, + 0x93bc3e3d, 0x019977f4, 0x32c14321, 0x1721c068, 0xe5df3ea7, 0xd0dc03fd, + 0x02004d27, 0x34153d05, 0x34354027, 0x3ea7fd8e, 0x03fde5df, 0x4d27d0dc, + 0x3d050100, 0x40273415, 0xfd8e3435, 0xc007fc4e, 0xffffdea7, 0xdc0b1ef7, + 0x0d272241, 0x047e640a, 0xdcd401fe, 0x48d81044, 0x270c07ef, 0xff367e10, + 0x44d8d401, 0x9e0227f2, 0x8efe15b2, 0x000000fc, 0x0003e81c, 0x0003e80f, + 0x0003e81b, 0x0003e807, 0xf1a3f54e, 0x9107a007, 0xa469161e, 0x450b4c2b, + 0x41c84f8b, 0xd9f41362, 0x0a074101, 0xa7fef77e, 0xffffff2e, 0x010224a9, + 0x010423a9, 0x9289c407, 0x1b4307b2, 0x07422b4c, 0xb09d8964, 0xd62b6fab, + 0xd123f305, 0xffff3ea7, 0x093499fe, 0x019fd0e8, 0x34074383, 0x44873433, + 0x32f1342b, 0xff000054, 0x7307a401, 0xffb47e23, 0x8e24e2ff, 0x09a49901, + 0xd608a599, 0x9231954f, 0xf235b127, 0x74191207, 0x990f1c83, 0x13330473, + 0x31078307, 0xff843e23, 0x7c12f9ff, 0x15ff0000, 0x00f345f4, 0x18b02782, + 0xb2a3402c, 0x14f9b906, 0xff00007d, 0x231e4bce, 0xff4ea7c1, 0x43b9ffff, + 0x4c070108, 0x030f4c83, 0x53344ec1, 0x01ff2ff2, 0xff505e21, 0x0131dfe6, + 0xffff2ea7, 0xb93c07ff, 0x83010824, 0xf3550f3c, 0x00b334ee, 0xfe3c39be, + 0x2ea77459, 0xa9ffffff, 0x25010223, 0xaf3ceef4, 0x27b42700, 0x9b402704, + 0x2ea70ef4, 0x21fd4fff, 0x3824c5f3, 0xd608a39d, 0x2ea75ebf, 0xa9feffff, + 0x27014224, 0xad4103e1, 0x9d014224, 0x3ea709ae, 0x6dfd4fff, 0x193211ac, + 0x899d2d94, 0x9129b093, 0x011092d5, 0x4383f251, 0x941d923d, 0x31c0312b, + 0xa7d8d634, 0xffffff3e, 0x06373ebd, 0x270f3299, 0x0ef49b40, 0x22873127, + 0xb04023f5, 0x9431ff02, 0x41037321, 0xc87734ce, 0x10072d05, 0xe8001e03, + 0xfea05e03, 0x2ea7f331, 0x6bfddfff, 0xa343873f, 0xd504004d, 0xd5020824, + 0x1e02082b, 0x65f453b5, 0x5e4101fe, 0x04e0fe7e, 0xf183fe7f, 0x24a9f58e, + 0xf3010104, 0xff4b43ee, 0x54eef421, 0x7419ff45, 0x42eef211, 0x6f26ff3d, + 0x2439f241, 0x997bb4ce, 0x4fd605a4, 0x034c076e, 0xff3ea741, 0x34adffff, + 0xdad60102, 0x0027b027, 0x1a5e746d, 0xa39419ff, 0x1e941d44, 0x27943183, + 0x83410302, 0x8ea405f1, 0x830227f5, 0xfcf58ef1, 0xf6fecf28, 0x53fecb8f, + 0x01fdeff3, 0xfe0c5e31, 0x0027b027, 0x99fee85e, 0x4fd605a4, 0xa18fc6a4, + 0x0ea7f331, 0x25fff9cf, 0x27741973, 0x1d410331, 0x05a39d74, 0xfe955bbe, + 0xb227871e, 0xbe5e0227, 0x272b3dfe, 0xff4ea730, 0x43adffff, 0x44a9010a, + 0x36070104, 0x2ea7340b, 0x27ffffff, 0xad0427b4, 0x5e010423, 0xfa4efe99, + 0xd107a007, 0xcea7b207, 0x11fdcfff, 0x01d101de, 0x11d431e0, 0x2b132112, + 0x0b340b40, 0x1132ab24, 0x483028e0, 0xa7fa8e00, 0x27f91e00, 0x44c4c542, + 0x1b070a07, 0x27fc777e, 0x44c4c540, 0x1e64c4c5, 0x99f84ecb, 0xd0075704, + 0x0c999107, 0xa74ff656, 0xa5fa9300, 0x8ea7fffa, 0x07fef457, 0xffbea71a, + 0xf093f7ff, 0x270199d0, 0x933e122c, 0x0100bcd5, 0xd158d499, 0x330108b3, + 0x43ab1f4c, 0x0087c487, 0x0b1acc53, 0x07940508, 0x070405ec, 0x03e12319, + 0xd0040314, 0x2c0723e2, 0x21532323, 0x2103db07, 0x0108d3d1, 0x1305e223, + 0xd4d10305, 0x14150108, 0x18030415, 0xf2380803, 0x4ea7e5e6, 0xd1f7ffff, + 0x05010843, 0x11030513, 0x011311a1, 0x0b3c0b12, 0x0513152c, 0xdaa43112, + 0xa4012a43, 0xa3414205, 0x33872127, 0x306032f5, 0xa451ff02, 0x42f54487, + 0xff023060, 0xfa93f88e, 0xa7fffa18, 0xfeec578e, 0x21ff5a5e, 0x0b432ba4, + 0x15302724, 0x1e120513, 0x000000ca, 0x0000004f, 0x0004afd4, 0x00000024, + 0xff0108e8, 0x000310e0, 0x00000014, 0x00000036, 0xf223f54e, 0xa0071f07, + 0x03101c03, 0x45024c0d, 0xc1f175f0, 0xf041c0a4, 0x49894229, 0xb54399b0, + 0x2b994199, 0x2b340392, 0x142c2731, 0xf982f193, 0x3b9123ff, 0xfe987e93, + 0x30074007, 0x44333633, 0xf213430b, 0x2b2101a0, 0xc1448740, 0x4e23c0a2, + 0x07fee418, 0x232d0131, 0x034d0511, 0x98440324, 0xcdf093f3, 0x03110194, + 0x31030401, 0x03154103, 0x31ec0405, 0xf29309df, 0x010194b8, 0x333ea724, + 0x3405fefd, 0x4ea7e127, 0xc5fdcfff, 0x20276c4e, 0xc1704ec5, 0x4027c0ab, + 0xa49d3127, 0x0da39d0c, 0x0710a29d, 0x0cbd8969, 0xa18d6fab, 0x8da24d08, + 0xad8d0aa6, 0x370ea716, 0xa065fee0, 0x9972b489, 0x412399b2, 0xb1990487, + 0xe024f0b4, 0x74b38907, 0x236eb499, 0xe0323b24, 0x07095d4a, 0x1b423b49, + 0x0fa29d43, 0x41074102, 0x325b3407, 0x13872007, 0x2123132b, 0x230b1103, + 0x430702a7, 0xa26d4123, 0x070ea49d, 0x2a41e824, 0x6b430709, 0x0741230f, + 0x11309d3a, 0xf4c03103, 0x219d2a0b, 0x0cbe8911, 0x8d0ea499, 0x4ce016ae, + 0x9305bbff, 0x019437f0, 0x890fa399, 0x19071004, 0x135b2487, 0x129b0331, + 0x0107130b, 0xe207020b, 0x956efd93, 0x99e00b01, 0x5ea70ed3, 0x93efffff, + 0x01940bfd, 0x5ca12e0b, 0x8de2d48d, 0xd48d16d4, 0x9ed48d5a, 0x0120d2d5, + 0xc554d1c5, 0xdec598d0, 0x893103dc, 0x3f6b72bd, 0x8999b799, 0xd39b74b8, + 0xc8b8abc1, 0xc5071cc0, 0xfe56fe53, 0xe0014227, 0x1c27c405, 0xf9de7e1a, + 0xc4054027, 0x30ccc3a1, 0x234747e8, 0xabd43b48, 0xa7dbabdf, 0xefffff4e, + 0xa3c14d85, 0x0331e0b0, 0x07812307, 0xab2607e8, 0x273a07ef, 0xad102704, + 0xbd011e32, 0x16012531, 0xbd412725, 0xbd012534, 0x2e012631, 0xbd4127e2, + 0x03012634, 0x2103603c, 0x99dbf0f0, 0xabc10ca9, 0x074907c0, 0x33453369, + 0x03642b67, 0x5a07cc6c, 0x0b98b499, 0xcc6c2356, 0x0708a389, 0x231a0b16, + 0xa9343b44, 0xad012012, 0xf6011c13, 0x99041f2f, 0xa34910a4, 0x4ff6438b, + 0xa4c1056a, 0x0841e0b0, 0x87090706, 0x550633e9, 0xf1e00bfe, 0x04ac88ec, + 0x01fe6500, 0x038e07c1, 0x04ac508f, 0x8e1fe600, 0x83e10707, 0xd5eff6e1, + 0xc0a3c105, 0x34c1fb61, 0x50bf0368, 0xe60004ac, 0xa705614f, 0xfde5bf4e, + 0x2c274105, 0xa7421538, 0xfde5af3e, 0x4c274e35, 0x15340524, 0x07002732, + 0x7e3e351b, 0xf361f849, 0xac343f03, 0x31890004, 0x1634891e, 0x2b1c3e89, + 0x16348d41, 0x46072187, 0x3e8d2c0b, 0x654a0b14, 0x2041ad38, 0x5432c501, + 0x053f91e0, 0x050491f4, 0x93cefc93, 0x278ea701, 0xbea7fefd, 0x11fefd17, + 0x11c40183, 0xf4432bc2, 0x0679104c, 0x30e83207, 0xf1610651, 0x1f034307, + 0x0004ac34, 0x45333387, 0x1289432b, 0x054b0b1e, 0x3c1c0342, 0x36274403, + 0x14031d01, 0x44034d05, 0xc301f3a8, 0xc3053103, 0xc4118305, 0x4c834103, + 0x61c4150f, 0x034127f0, 0x04ac340f, 0xff1ea700, 0x0389fdcf, 0x6c14c51c, + 0xae891607, 0x271a0b08, 0xfe3d0440, 0xbd4127ff, 0xc1012814, 0x13a9c0a4, + 0x42890120, 0x273e0b72, 0x27320e40, 0x2714bd41, 0xcc138901, 0xee1c0489, + 0x61025434, 0x09102702, 0x87042727, 0x5834f131, 0xee0004ad, 0x03058d47, + 0x27f07811, 0x87042730, 0x5814f113, 0xe00004ad, 0xffffff4f, 0x0305cbff, + 0x93f05831, 0x0191c7fd, 0x8914de89, 0xdb8958dc, 0xe0d8899c, 0xcf8bef8b, + 0x8f8bbf8b, 0x14274027, 0x03f10487, 0x0004ad58, 0x3c2e3e4e, 0x83ee3b0e, + 0x410305ac, 0xb0a7f148, 0x00cfdea7, 0xe62211e5, 0x9305212f, 0x019187f1, + 0x43c11421, 0xa03fe668, 0xbf4ea704, 0x4205fde5, 0x15d02c27, 0x35c02742, + 0xaf3ea74c, 0x4c27fde5, 0x15340524, 0x07002732, 0x7e3c351d, 0xd199f6d1, + 0x0716e606, 0x202c273d, 0xe0083499, 0x0279ff4c, 0x028612e0, 0xf2783103, + 0x47f54b87, 0x0004ad58, 0xe6a1a499, 0x99038e4f, 0x3fe606d3, 0xfe610387, + 0xac50e4e9, 0x4de00004, 0x0379fffe, 0x054131e0, 0x07bda899, 0x16cc33c8, + 0xa4c18926, 0x6843c1c0, 0x052631e0, 0x2020cda3, 0x991781c4, 0x34074bd4, + 0x830f3c33, 0x003e8347, 0x4c333800, 0xab34ab10, 0x27f041c3, 0xf7207e70, + 0x87bea499, 0xd84cf544, 0x9bff011b, 0xa4990ef7, 0xdf0ea7be, 0x4487fde5, + 0xe4284e23, 0x05c427fe, 0x270c1504, 0xa7073541, 0xf7ffff1e, 0x26e014c5, + 0x070a0785, 0xf7177e19, 0x99c0abc1, 0x4ae06eb4, 0xa49904cd, 0x031b07be, + 0x9d438341, 0xb399bea4, 0x0fa499b5, 0x2bb4b299, 0xc6237b34, 0x72075d2f, + 0xb9070507, 0x91caf393, 0xc034c101, 0xe06843c1, 0x2701ff31, 0x07182720, + 0x214d0b42, 0x0b32074e, 0xa13e1530, 0x95240344, 0x49f15834, 0x0db103d4, + 0x06de9904, 0xd1990e5d, 0x44019d48, 0x9d49d299, 0xd3994502, 0x46039d4a, + 0x9d4bd499, 0x049d4808, 0x600c0347, 0xc1aef7f0, 0x14c1c0a1, 0x6c4fd668, + 0x02c99ff6, 0xf997bea7, 0xa5fc93fe, 0xf041fff4, 0x07112c27, 0xf9707e1c, + 0xf3534007, 0x0633fa94, 0x400b4433, 0x30012607, 0x0bcc2c03, 0x072a0b4b, + 0x232d0130, 0x034d0501, 0x98440324, 0x11c211f3, 0x03230121, 0x15310311, + 0x31230521, 0x4141fac4, 0x05c40104, 0x27c34143, 0xf5338721, 0x02306032, + 0x87c451ff, 0x6042f544, 0x07ff0230, 0x273a0b36, 0x2434bd41, 0xa5f09301, + 0x0421018f, 0x43c1f161, 0x4c1ef168, 0x210004ac, 0xe0e031ed, 0x5302cd31, + 0x01fa13f4, 0x03890743, 0xb8070d8c, 0xe409b533, 0x2b077307, 0xe171790b, + 0x2e23ec51, 0x27fde800, 0xfe4d0030, 0x073127ff, 0x073b0793, 0x1a9c33b8, + 0xe7f03e23, 0x1eb533fd, 0x27ed4105, 0x08b1f5c0, 0x89ff0218, 0x2d051ae4, + 0x4c334f6b, 0x1549ab10, 0x05243520, 0x27301537, 0x0b343540, 0xd60c0710, + 0xa4c1d8cf, 0x3241e0b0, 0xc0abc102, 0x2a0b2607, 0x012024a9, 0x2368b3c1, + 0x2024ad41, 0x693fd601, 0xf141a401, 0xf48b0507, 0x4a0b4607, 0x43bd3027, + 0xa2490124, 0x12cea169, 0x8342076e, 0x994a0b43, 0x3f4b1143, 0x20c8230b, + 0xee12daf1, 0x42073207, 0x42533383, 0x9d08a48d, 0xa24d0ca3, 0x93fb5e5e, + 0x018ecbf0, 0x44990421, 0x08349d62, 0xfd7e12e4, 0xe4283499, 0xfd76ff4c, + 0x8eb2fe93, 0x99e42101, 0x349d6244, 0xfd665e28, 0x012824b9, 0x079a4fc6, + 0x44c1be05, 0x0b4607fd, 0xbd30274a, 0x49012443, 0xcea169a2, 0xabc19421, + 0x0da39dc0, 0xb41d4127, 0x41c0a1c1, 0xf57a7ef0, 0xf9210fe6, 0xf58ef203, + 0xe606d499, 0x07fe164f, 0x0540273f, 0x03f47134, 0xf643ce34, 0x2d07fe01, + 0xc8271027, 0xc0082499, 0xf90fff4c, 0x04afec44, 0x3b415300, 0x05e4ab41, + 0x102499fe, 0x11ff4cc0, 0xafec44f9, 0xf3110004, 0x413b4153, 0xf31534ab, + 0xc0282499, 0xf911ff4c, 0x04afec44, 0x53f32100, 0xab413b41, 0x99f32534, + 0x21033024, 0x11ff4cc0, 0xafec44f9, 0xf3310004, 0x413b4153, 0xf33534ab, + 0xfcf01403, 0x334b07a0, 0x404ef544, 0x11ff0a3f, 0x444ef5fe, 0x21ff0a3f, + 0x4841f5f1, 0x31ff0a3f, 0x4c42f5f2, 0x5eff0a3f, 0x3a07fd7b, 0x3489360b, + 0x2413b9c0, 0xad410301, 0xe4012014, 0x27fe9731, 0x2414bd40, 0xc0abc101, + 0xffff0ea7, 0xe003c5f7, 0x27fe835e, 0x5e8027c0, 0x92c0fcb9, 0x5393c023, + 0xfd53ff1e, 0x2107f818, 0x0907d101, 0x7e383c27, 0x0907f2c5, 0x2c271b07, + 0xf2f37e38, 0x93faa95e, 0x018eb7fc, 0xf9978ea7, 0x87bea7fe, 0xd85efef9, + 0x9dfc93fa, 0x8ea7018e, 0xa7fefd1f, 0xfefb57be, 0x53fac65e, 0x53f7dbf0, + 0x01f7dbf1, 0x5e1c010b, 0xfc93fd36, 0xa7018e8c, 0xfef98f8e, 0xf7c7bea7, + 0xfaa55efe, 0x2a070807, 0xfd38b6be, 0xa7fa595e, 0xf7ffff2e, 0x4cfc2401, + 0x27f9f010, 0x3ea718cc, 0x41f7ffff, 0x403cc5f0, 0x7e0c1c27, 0x4827f320, + 0xffffdea7, 0x40d4c5f7, 0x3cfcd301, 0x1ef9cc10, 0x51fd61de, 0x52d4e9fe, + 0xc10004ac, 0xe4f5c0ab, 0xff0800ec, 0x53fdbf5e, 0x01f763fe, 0x270907e1, + 0x127ed03c, 0x070907f2, 0xd02c271d, 0x5ef2407e, 0xf253fb6e, 0x2301f758, + 0x27fd345e, 0x9d422b44, 0xb3890fa4, 0x2b143b74, 0x3131e239, 0x5e3107f8, + 0x3ea7f82c, 0x01f7ffff, 0x204cd834, 0xff2ea750, 0x4027f7ff, 0x993824c5, + 0xa1c10fa3, 0xc5933bc0, 0xa4993c29, 0x7213890e, 0x4f6b4103, 0x3d834a33, + 0x43ab03ff, 0x5ee824c5, 0xf293f8c9, 0x21018c68, 0xbe0d0721, 0x5efd3860, + 0xd107fb20, 0xd32bd433, 0xd433d10b, 0x0000de23, 0xfb165ee5, 0xbc27c307, + 0x27f04128, 0xcbc50d1c, 0xf2527e40, 0xc4c54827, 0xdcc30140, 0x1e97203c, + 0xa74227e9, 0xfdcfff2e, 0x24c5f041, 0x161c2744, 0x27f2337e, 0xff3ea740, + 0x34c5fdcf, 0x6434c544, 0xa7f97e5e, 0xf9885e30, 0xd433d307, 0xd30bd12b, + 0xb307d433, 0x0000de23, 0xfa635ee5, 0xd433d407, 0xd40bd02b, 0xb407d433, + 0x0000de23, 0xfa4f5ee5, 0x1010cda3, 0x99fadb5e, 0xc05ebca8, 0x034907fa, + 0x33340741, 0x2b453337, 0x273a0b34, 0x2434bd41, 0x7ef04101, 0xa499f1fa, + 0xdf2ea7be, 0x4487fde5, 0xe4284e23, 0x152405fe, 0x1627352c, 0xc0abc185, + 0x07fb015e, 0x7e19070a, 0xabc1f205, 0xfaf45ec0, 0x312bc421, 0x2015340b, + 0xb65e2305, 0xff1ea7fb, 0x1499feff, 0x87438309, 0x2b443324, 0x5043f942, + 0xc0ff0000, 0xb1072532, 0x88100e27, 0xf0357e13, 0x1ff6c101, 0xb499f84d, + 0x87438309, 0x2b443324, 0x5043f942, 0xc4ff0000, 0xf161df32, 0xac4a14e9, + 0x14870004, 0x2a5e11a3, 0x5e2027f8, 0x4907f6e4, 0x423b3347, 0x2b10ae9d, + 0x0fae9d34, 0x31073102, 0x21032007, 0x13270127, 0x2bf6a95e, 0x05410343, + 0x5e011504, 0x0000f61a, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0xd007fc4e, 0x071adc53, + 0x07e153ed, 0x93420b4e, 0x018a9ff3, 0x34194219, 0x20f9c007, 0x0004afec, + 0xed074210, 0x30071401, 0x331f3c83, 0x4ca3103c, 0x1fec8320, 0xeb3343ab, + 0xffff3ea7, 0x334eabf7, 0xab34a508, 0x8e3cb502, 0x93fe4efc, 0x018a63f4, + 0xe1074319, 0x141aec53, 0x33e15332, 0x202ca308, 0x00000e83, 0x1fec831f, + 0xeb3320ab, 0xffff4ea7, 0xa5e2abf7, 0x8e41b54e, 0x000000fe, 0x0004afd4, + 0xfb63f54e, 0xd803df07, 0xc0071d07, 0xfff3d4be, 0xf393c403, 0x05018a14, + 0x11f5933c, 0xcc03018a, 0x235c0520, 0xc39924cc, 0x05f49348, 0x431d018a, + 0xc489f921, 0x52c28950, 0xffff3ea7, 0x3834c5f7, 0x1c331907, 0x3c32c510, + 0xffff4ea7, 0x83a207fe, 0xec49d5a1, 0x1e1c531d, 0xd618ac33, 0x03cd0719, + 0xa78027c4, 0xf7ffff3e, 0x42f83401, 0x4907040f, 0x53154c33, 0x44c01d4c, + 0x1945d02a, 0x010e46e0, 0xe07546d0, 0x1e021947, 0xc0f83111, 0xcd070e12, + 0xd01ec803, 0x42d44f26, 0x07ff1e55, 0x14cc03cf, 0x8907c21e, 0x8183ba07, + 0x0000bfa3, 0x8fe62000, 0xd90703bd, 0xd283c001, 0xd546fb05, 0x0400afa3, + 0xfa052000, 0x8962f493, 0x07420101, 0x7ec4031f, 0xd826feb0, 0x41a34b07, + 0xf405c001, 0xbda38506, 0xfb050401, 0x1f075201, 0x1efe977e, 0xbe0a0707, + 0x43ffee08, 0xf8f58efb, 0x03a2209c, 0xdfa3da07, 0x30000000, 0xa183a907, + 0x036aafe6, 0xc001b907, 0xfd05b283, 0x4d07b546, 0x04004da3, 0xf393f405, + 0x01018908, 0x031f0732, 0xfe567ec4, 0x4d07b7a6, 0xc00141a3, 0xa546f405, + 0x4da34d07, 0xf4050401, 0x1f075201, 0x397ec403, 0x534907fe, 0x07a40742, + 0x83a183b4, 0x01a7c6b2, 0x46fd05c0, 0xa34d07b5, 0x0504004d, 0xc1f493f4, + 0x42010188, 0xc4031f07, 0xe6fe0f7e, 0x07ff7ebf, 0x0141a34d, 0xe6f405c0, + 0xa3ff63af, 0x050401dd, 0xff5a5efd, 0xd907b907, 0xd283b183, 0xc001b7c6, + 0xd546fa05, 0x4da34a07, 0xf4050400, 0x8882f393, 0x07320101, 0x7ec4031f, + 0xd7a6fdd0, 0x41a34a07, 0xf405c001, 0x4a07b546, 0x04014da3, 0x5201f405, + 0xc4031f07, 0x07fdb37e, 0x07d253d9, 0x83bd079d, 0xc6b28391, 0x05c00197, + 0x07b546fa, 0x004da34a, 0x93f40504, 0x01883bf4, 0x1f074201, 0x897ec403, + 0x07b7a6fd, 0x0141a34a, 0x46f405c0, 0xa34a0795, 0x0504014d, 0x075201f4, + 0x7ec4031f, 0xd253fd6c, 0xbd079d07, 0xb2839183, 0xc00197c6, 0xb546fa05, + 0x4da34a07, 0xf4050400, 0x87f6f393, 0x07320101, 0x7ec4031f, 0xb7a6fd44, + 0x41a34a07, 0xf405c001, 0x4a079546, 0x04014da3, 0x5201f405, 0xc4031f07, + 0x07fd277e, 0x0742534d, 0x83d407b4, 0xc6d283b1, 0x05c001b7, 0x07d546fa, + 0x004da34a, 0x93f40504, 0x0187aff4, 0x1f074201, 0xfd7ec403, 0x6cdfe6fc, + 0xa34a07fe, 0x05c00141, 0x51bfe6f4, 0x01ada3fe, 0x5efa0504, 0x3a07fe48, + 0x00003fa3, 0xf3c51800, 0x074a0790, 0x014fa33a, 0xa3180004, 0x0004003f, + 0x94f4c518, 0x0798f3c5, 0xa33a074a, 0x0000004f, 0x013fa310, 0xc5100004, + 0xf3c59cf4, 0x074a07a0, 0x004fa33a, 0xa3100004, 0x0000003f, 0xa4f4c508, + 0x07a8f3c5, 0xa33a074a, 0x0004014f, 0x003fa308, 0x27080004, 0xacf4c560, + 0x07b0f3c5, 0x8e6ff698, 0x53490700, 0xf6438348, 0x07b9074c, 0x83b183d9, + 0x01b7c6d2, 0x46fa05c0, 0xa34a07d5, 0x0504004d, 0xfdf393f4, 0x32010186, + 0xc4031f07, 0x46fc4b7e, 0xa34a07de, 0x05c00141, 0x07b546f4, 0x014da34a, + 0x01f40504, 0x031f0752, 0xfc2e7ec4, 0x41e0341e, 0x42e000ad, 0xd90701ae, + 0xd183b907, 0xdf56b283, 0xd67f7c27, 0x8c2774bf, 0x86dff67f, 0x71bff601, + 0x5cdff601, 0x47bff601, 0x35dff601, 0xcbbff601, 0xe0610300, 0x53fd6664, + 0x766fe692, 0xff3ea7ff, 0x3401f7ff, 0xff6b42fc, 0xf453d307, 0x4001fc58, + 0xd4c54a27, 0xbe1b2740, 0x27ffec9c, 0x40d4c548, 0x32fcd301, 0xe31eff4d, + 0x0190f4c1, 0xe6f405c0, 0x98f3c1b4, 0xf493f305, 0x01018658, 0x7e1f0742, + 0x7007fba8, 0xbfc6c403, 0x90f4c18e, 0x41a3c001, 0xd4e6f415, 0x1594f3c1, + 0x075201f3, 0x7e14031f, 0x8007fb88, 0xdfe6c403, 0xf65eff75, 0x07b90700, + 0x83b183d9, 0xc1be66d2, 0xc001a8f4, 0xd4e6f405, 0x05b0f3c1, 0x09f493f3, + 0x42010186, 0x597e1f07, 0x037007fb, 0xc1db26c4, 0xc001a8f4, 0xf41541a3, + 0xf3c1b4e6, 0x01f315ac, 0x031f0752, 0xfb3a7e14, 0xc4038007, 0xdfe6bf76, + 0xc101ff39, 0x0807f211, 0x6e7ec403, 0xff2b5efb, 0xd67f7c27, 0x8c27cadf, + 0x1eb0a67f, 0x83d9073b, 0xfc605ed2, 0xb283b907, 0x07fcb35e, 0x55fb93d3, + 0x4a270189, 0x0740d4c5, 0xbe1b270b, 0x27ffebc0, 0x40d4c548, 0x32fcd301, + 0xe71efbd6, 0xdfa3da07, 0x28000000, 0x01fc5f5e, 0x07f201c1, 0x7ec40307, + 0xdfe6fb19, 0x9b1efed5, 0xf201c101, 0xc4030707, 0x5efb087e, 0xc101fec1, + 0x0807f211, 0xfa7ec403, 0xb2dfe6fa, 0x01e21efe, 0x07f201c1, 0x7ec40307, + 0xbfe6fae9, 0xdf1efe9d, 0xf211c101, 0xc4030807, 0xe6fad87e, 0x1efe88df, + 0x01c101df, 0x030707f2, 0xfac77ec4, 0xfe73bfe6, 0xb907df1e, 0xb183d907, + 0xbcd6d283, 0x967f7c27, 0x7f8c27d8, 0xc101b5a6, 0x0707f211, 0xa27ec403, + 0x5edfe6fa, 0x01c101fe, 0x030807f2, 0xfa937ec4, 0xc1fe505e, 0xc0019cf4, + 0xf40541a3, 0xf3c1b4e6, 0x01f305a0, 0x7e1f0752, 0x8007fa30, 0xc51ec403, + 0x019cf4c1, 0xe6f415c0, 0xa4f3c1d4, 0xf493f315, 0x010184c0, 0x031f0742, + 0xfa0e7e14, 0xc4037007, 0x00009e1e, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0xe007fc4e, 0x0b1aec53, 0xe1f4932e, 0x2c19016e, 0xd0074301, 0xafecc0f9, + 0x32c00004, 0x83120138, 0x4d071fec, 0xeb333007, 0x3320eca3, 0x1f3c8346, + 0x3c33e2ab, 0xab477310, 0xffdd83e3, 0xff3ea73f, 0x4f83f7ff, 0x03ffc000, + 0x4dab0833, 0x0cab3ea5, 0xfc8e34b5, 0x01c31201, 0x01002da3, 0xc01e1205, + 0x4107fe4e, 0xe1070833, 0x83202ca3, 0x1f00000e, 0x1c534633, 0x7320ab0f, + 0x001d8347, 0xff3ea7f8, 0xed83f7ff, 0x21ab3fff, 0xc0004f83, 0x4eab03ff, + 0x34b532a5, 0x0000fe8e, 0x0004afd4, 0xfb63f54e, 0xd803df07, 0xc0071d07, + 0xffd3b8be, 0xf393c403, 0x050169f8, 0xf5f5933c, 0xcc030169, 0x235c0520, + 0xc39924cc, 0xe9f49348, 0x431d0169, 0xc289f921, 0x50c48952, 0xffff3ea7, + 0x3834c5f7, 0xa2071907, 0x83101c33, 0x3c32c5a1, 0xffff4ea7, 0x18ac33fe, + 0x1dec49d5, 0xa31e1c53, 0x19d680ac, 0xc403cd07, 0x3ea78027, 0x01f7ffff, + 0x0f42f834, 0x33490704, 0x4c53154c, 0x2a44c01d, 0xe01945d0, 0xd0010e46, + 0x47e07546, 0x111e0219, 0x12c0f831, 0x03cd070e, 0x26d01ec8, 0x5542d44f, + 0xcf07ff1e, 0x1e14cc03, 0x078907c2, 0xa38183ba, 0x000000bf, 0xbd8fe620, + 0x01d90703, 0x05d283c0, 0xa3d546fb, 0x000400af, 0x93fa0520, 0x016943f4, + 0x1f074201, 0x917ec403, 0x07d826fe, 0x0141a34b, 0x06f405c0, 0x01bda385, + 0x01fb0504, 0x7e1f0752, 0x071efe78, 0xe9be0a07, 0xfb43ffcd, 0x9cf8f58e, + 0x0703a220, 0x00dfa3da, 0x07300000, 0xe6a183a9, 0x07036aaf, 0x83c001b9, + 0x46fd05b2, 0xa34d07b5, 0x0504004d, 0xe9f393f4, 0x32010168, 0xc4031f07, + 0xa6fe377e, 0xa34d07b7, 0x05c00141, 0x07a546f4, 0x014da34d, 0x01f40504, + 0x031f0752, 0xfe1a7ec4, 0x42534907, 0xb407a407, 0xb283a183, 0xc001a7c6, + 0xb546fd05, 0x4da34d07, 0xf4050400, 0x68a2f493, 0x07420101, 0x7ec4031f, + 0xbfe6fdf0, 0x4d07ff7e, 0xc00141a3, 0xafe6f405, 0xdda3ff63, 0xfd050401, + 0x07ff5a5e, 0x83d907b9, 0xc6d283b1, 0x05c001b7, 0x07d546fa, 0x004da34a, + 0x93f40504, 0x016863f3, 0x1f073201, 0xb17ec403, 0x07d7a6fd, 0x0141a34a, + 0x46f405c0, 0xa34a07b5, 0x0504014d, 0x075201f4, 0x7ec4031f, 0xd907fd94, + 0x9d07d253, 0x9183bd07, 0x97c6b283, 0xfa05c001, 0x4a07b546, 0x04004da3, + 0xf493f405, 0x0101681c, 0x031f0742, 0xfd6a7ec4, 0x4a07b7a6, 0xc00141a3, + 0x9546f405, 0x4da34a07, 0xf4050401, 0x1f075201, 0x4d7ec403, 0x07d253fd, + 0x83bd079d, 0xc6b28391, 0x05c00197, 0x07b546fa, 0x004da34a, 0x93f40504, + 0x0167d7f3, 0x1f073201, 0x257ec403, 0x07b7a6fd, 0x0141a34a, 0x46f405c0, + 0xa34a0795, 0x0504014d, 0x075201f4, 0x7ec4031f, 0x4d07fd08, 0xb4074253, + 0xb183d407, 0xb7c6d283, 0xfa05c001, 0x4a07d546, 0x04004da3, 0xf493f405, + 0x01016790, 0x031f0742, 0xfcde7ec4, 0xfe6cdfe6, 0x41a34a07, 0xf405c001, + 0xfe51bfe6, 0x0401ada3, 0x485efa05, 0xa33a07fe, 0x0000003f, 0x90f3c518, + 0x3a074a07, 0x04014fa3, 0x3fa31800, 0x18000400, 0xc594f4c5, 0x4a0798f3, + 0x4fa33a07, 0x10000000, 0x04013fa3, 0xf4c51000, 0xa0f3c59c, 0x3a074a07, + 0x04004fa3, 0x3fa31000, 0x08000000, 0xc5a4f4c5, 0x4a07a8f3, 0x4fa33a07, + 0x08000401, 0x04003fa3, 0x60270800, 0xc5acf4c5, 0x9807b0f3, 0x008e6ff6, + 0x48534907, 0x4cf64383, 0xd907b907, 0xd283b183, 0xc001b7c6, 0xd546fa05, + 0x4da34a07, 0xf4050400, 0x66def393, 0x07320101, 0x7ec4031f, 0xde46fc2c, + 0x41a34a07, 0xf405c001, 0x4a07b546, 0x04014da3, 0x5201f405, 0xc4031f07, + 0x1efc0f7e, 0xad41e034, 0xae42e000, 0x07d90701, 0x83d183b9, 0x27df56b2, + 0xbfd67f7c, 0x7f8c2774, 0x0186dff6, 0x0171bff6, 0x015cdff6, 0x0147bff6, + 0x0135dff6, 0x00cbbff6, 0x64e06103, 0x9253fd66, 0xff766fe6, 0xffff3ea7, + 0xfc3401f7, 0x07ff6b42, 0x55f453d3, 0x274001fc, 0x40d4c54a, 0x7dbe1b27, + 0x4827ffcc, 0x0140d4c5, 0x4d32fcd3, 0xc1e31eff, 0xc00190f4, 0xb4e6f405, + 0x0598f3c1, 0x39f493f3, 0x42010166, 0x897e1f07, 0x037007fb, 0x8ebfc6c4, + 0x0190f4c1, 0x1541a3c0, 0xc1d4e6f4, 0xf31594f3, 0x1f075201, 0x697e1403, + 0x038007fb, 0x75dfe6c4, 0x00f65eff, 0xd907b907, 0xd283b183, 0xf4c1be66, + 0x05c001a8, 0xc1d4e6f4, 0xf305b0f3, 0x65eaf493, 0x07420101, 0xfb3a7e1f, + 0xc4037007, 0xf4c1db26, 0xa3c001a8, 0xe6f41541, 0xacf3c1b4, 0x5201f315, + 0x14031f07, 0x07fb1b7e, 0x76c40380, 0x39dfe6bf, 0x11c101ff, 0x030807f2, + 0xfb667ec4, 0x27ff2b5e, 0xdfd67f7c, 0x7f8c27ca, 0x3b1eb0a6, 0xd283d907, + 0x07fc605e, 0x5eb283b9, 0xd307fcb3, 0x6936fb93, 0xc54a2701, 0x0b0740d4, + 0xa1be1b27, 0x4827ffcb, 0x0140d4c5, 0xd632fcd3, 0x07e71efb, 0x00dfa3da, + 0x5e280000, 0xc101fc5f, 0x0707f201, 0x117ec403, 0xd5dfe6fb, 0x019b1efe, + 0x07f201c1, 0x7ec40307, 0xc15efb00, 0x11c101fe, 0x030807f2, 0xfaf27ec4, + 0xfeb2dfe6, 0xc101e21e, 0x0707f201, 0xe17ec403, 0x9dbfe6fa, 0x01df1efe, + 0x07f211c1, 0x7ec40308, 0xdfe6fad0, 0xdf1efe88, 0xf201c101, 0xc4030707, + 0xe6fabf7e, 0x1efe73bf, 0x07b907df, 0x83b183d9, 0x27bcd6d2, 0xd8967f7c, + 0xa67f8c27, 0x11c101b5, 0x030707f2, 0xfa9a7ec4, 0xfe5edfe6, 0xf201c101, + 0xc4030807, 0x5efa8b7e, 0xf4c1fe50, 0xa3c0019c, 0xe6f40541, 0xa0f3c1b4, + 0x5201f305, 0x117e1f07, 0x038007fa, 0xc1c51ec4, 0xc0019cf4, 0xd4e6f415, + 0x15a4f3c1, 0xa1f493f3, 0x42010164, 0x14031f07, 0x07f9ef7e, 0x1ec40370, + 0x0000009e, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0xb007fa4e, 0x011abc53, 0x53eb0711, 0x07d107e1, + 0x33420b4e, 0x200718dc, 0xdc532633, 0x73c0071f, 0x4a19142c, 0x4107df66, + 0x07174c33, 0x5331833b, 0x43cb1f4c, 0xa0f9a4cb, 0x0004afec, 0x01e32d7b, + 0xf49303ab, 0x19014a6c, 0x07321043, 0x834007eb, 0x4c331f4c, 0x201ca310, + 0xab1fec83, 0x33eb3314, 0x4ea70e2c, 0xabf7ffff, 0xffcd831e, 0x002f833f, + 0x3303ffc0, 0xa52cab08, 0xb50aab41, 0xf9fa8e42, 0x04afeca0, 0x4ebc1e00, + 0x25f493fe, 0x4319014a, 0xec53e107, 0x5332141a, 0x074107e1, 0x33463332, + 0x3c53183c, 0x144c731f, 0x437b0833, 0x83202ca3, 0x1f00000e, 0xab1fec83, + 0x0e4c3320, 0x3ea7eb33, 0xabf7ffff, 0x004f83e2, 0x8303ffc0, 0xab3fff1d, + 0xb53ea541, 0x00fe8e34, 0x0004afd4, 0xfb63f54e, 0xd803df07, 0xc0071d07, + 0xffb378be, 0xf393c403, 0x050149b8, 0xb5f5933c, 0xcc030149, 0x235c0520, + 0xc39924cc, 0x93f92148, 0x0149a7f4, 0xc289431d, 0x33390752, 0x4ea7143c, + 0x07feffff, 0x101c3319, 0x49d50207, 0x3c531dec, 0x1e1c531f, 0x8350ce89, + 0x07356601, 0xa3383330, 0x2153803c, 0xffff4ea7, 0x384ec5f7, 0xbc33b007, + 0x3c42c518, 0x19d6b3ab, 0xc403cd07, 0x3ea78027, 0x01f7ffff, 0x0f42f834, + 0x33490704, 0x4c53154c, 0x2a44c01d, 0xe01945d0, 0xd0010e46, 0x47e07546, + 0x111e0219, 0x12c0f831, 0x03cd070e, 0x26d01ec8, 0x5542d44f, 0xcf07ff1e, + 0x1e14cc03, 0x078907c2, 0xa38183ab, 0x000000af, 0xbd8fe620, 0x01d90703, + 0x05d283c0, 0xa3d546fa, 0x000400bf, 0x93fb0520, 0x0148eff4, 0x1f074201, + 0x3d7ec403, 0x07d826fe, 0x0141a34a, 0x06f405c0, 0x01ada385, 0x01fa0504, + 0x7e1f0752, 0x071efe24, 0x95be0b07, 0xfb43ffad, 0x9cf8f58e, 0x0703a220, + 0x00dfa3db, 0x07300000, 0xe6a183a9, 0x07036aaf, 0x83c001b9, 0x46fd05b2, + 0xa34d07b5, 0x0504004d, 0x95f393f4, 0x32010148, 0xc4031f07, 0xa6fde37e, + 0xa34d07b7, 0x05c00141, 0x07a546f4, 0x014da34d, 0x01f40504, 0x031f0752, + 0xfdc67ec4, 0x42534907, 0xb407a407, 0xb283a183, 0xc001a7c6, 0xb546fd05, + 0x4da34d07, 0xf4050400, 0x484ef493, 0x07420101, 0x7ec4031f, 0xbfe6fd9c, + 0x4d07ff7e, 0xc00141a3, 0xafe6f405, 0xdda3ff63, 0xfd050401, 0x07ff5a5e, + 0x83d907a9, 0xc6d283a1, 0x05c001a7, 0x07d546fb, 0x004da34b, 0x93f40504, + 0x01480ff3, 0x1f073201, 0x5d7ec403, 0x07d7a6fd, 0x0141a34b, 0x46f405c0, + 0xa34b07a5, 0x0504014d, 0x075201f4, 0x7ec4031f, 0xd907fd40, 0x9d07d253, + 0x9183ad07, 0x97c6a283, 0xfb05c001, 0x4b07a546, 0x04004da3, 0xf493f405, + 0x010147c8, 0x031f0742, 0xfd167ec4, 0x4b07a7a6, 0xc00141a3, 0x9546f405, + 0x4da34b07, 0xf4050401, 0x1f075201, 0xf97ec403, 0x07d253fc, 0x83ad079d, + 0xc6a28391, 0x05c00197, 0x07a546fb, 0x004da34b, 0x93f40504, 0x014783f3, + 0x1f073201, 0xd17ec403, 0x07a7a6fc, 0x0141a34b, 0x46f405c0, 0xa34b0795, + 0x0504014d, 0x075201f4, 0x7ec4031f, 0x4d07fcb4, 0xa4074253, 0xa183d407, + 0xa7c6d283, 0xfb05c001, 0x4b07d546, 0x04004da3, 0xf493f405, 0x0101473c, + 0x031f0742, 0xfc8a7ec4, 0xfe6cdfe6, 0x41a34b07, 0xf405c001, 0xfe51afe6, + 0x0401bda3, 0x485efb05, 0xa33b07fe, 0x0000003f, 0x90f3c518, 0x3b074b07, + 0x04014fa3, 0x3fa31800, 0x18000400, 0xc594f4c5, 0x4b0798f3, 0x4fa33b07, + 0x10000000, 0x04013fa3, 0xf4c51000, 0xa0f3c59c, 0x3b074b07, 0x04004fa3, + 0x3fa31000, 0x08000000, 0xc5a4f4c5, 0x4b07a8f3, 0x4fa33b07, 0x08000401, + 0x04003fa3, 0x60270800, 0xc5acf4c5, 0x9807b0f3, 0x008e6ff6, 0x48534907, + 0x4cf64383, 0xd907a907, 0xd283a183, 0xc001a7c6, 0xd546fb05, 0x4da34b07, + 0xf4050400, 0x468af393, 0x07320101, 0x7ec4031f, 0xde46fbd8, 0x41a34b07, + 0xf405c001, 0x4b07a546, 0x04014da3, 0x5201f405, 0xc4031f07, 0x1efbbb7e, + 0xad41e034, 0xae42e000, 0x07d90701, 0x83d183a9, 0x27df56a2, 0xafd67f7c, + 0x7f8c2774, 0x0186dff6, 0x0171aff6, 0x015cdff6, 0x0147aff6, 0x0135dff6, + 0x00cbaff6, 0x64e06103, 0x9253fd66, 0xff766fe6, 0xffff3ea7, 0xfc3401f7, + 0x07ff6b42, 0x41f453d3, 0x274001fc, 0x40d4c54a, 0x29be1b27, 0x4827ffac, + 0x0140d4c5, 0x4d32fcd3, 0xc1e31eff, 0xc00190f4, 0xa4e6f405, 0x0598f3c1, + 0xe5f493f3, 0x42010145, 0x357e1f07, 0x037007fb, 0x8eafc6c4, 0x0190f4c1, + 0x1541a3c0, 0xc1d4e6f4, 0xf31594f3, 0x1f075201, 0x157e1403, 0x038007fb, + 0x75dfe6c4, 0x00f65eff, 0xd907a907, 0xd283a183, 0xf4c1ae66, 0x05c001a8, + 0xc1d4e6f4, 0xf305b0f3, 0x4596f493, 0x07420101, 0xfae67e1f, 0xc4037007, + 0xf4c1db26, 0xa3c001a8, 0xe6f41541, 0xacf3c1a4, 0x5201f315, 0x14031f07, + 0x07fac77e, 0x76c40380, 0x39dfe6af, 0x11c101ff, 0x030807f2, 0xfb397ec4, + 0x27ff2b5e, 0xdfd67f7c, 0x7f8c27ca, 0x3b1ea0a6, 0xd283d907, 0x07fc605e, + 0x5eb283b9, 0xd307fcb3, 0x48e2fa93, 0xc54a2701, 0x0a0740d4, 0x4dbe1b27, + 0x4827ffab, 0x0140d4c5, 0xd632fcd3, 0x07e71efb, 0x00dfa3db, 0x5e280000, + 0xc101fc5f, 0x0707f201, 0xe47ec403, 0xd5dfe6fa, 0x019b1efe, 0x07f201c1, + 0x7ec40307, 0xc15efad3, 0x11c101fe, 0x030807f2, 0xfac57ec4, 0xfeb2dfe6, + 0xc101e21e, 0x0707f201, 0xb47ec403, 0x9dafe6fa, 0x01df1efe, 0x07f211c1, + 0x7ec40308, 0xdfe6faa3, 0xdf1efe88, 0xf201c101, 0xc4030707, 0xe6fa927e, + 0x1efe73af, 0x07a907df, 0x83a183d9, 0x27acd6d2, 0xd8967f7c, 0xa67f8c27, + 0x11c101a5, 0x030707f2, 0xfa6d7ec4, 0xfe5edfe6, 0xf201c101, 0xc4030807, + 0x5efa5e7e, 0xf4c1fe50, 0xa3c0019c, 0xe6f40541, 0xa0f3c1a4, 0x5201f305, + 0xbd7e1f07, 0x038007f9, 0xc1c51ec4, 0xc0019cf4, 0xd4e6f415, 0x15a4f3c1, + 0x4df493f3, 0x42010144, 0x14031f07, 0x07f99b7e, 0x1ec40370, 0x0000009e, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x071e03dc, 0xab483341, + 0x07140741, 0x101c3332, 0x14ab3253, 0x071e3103, 0x24230105, 0xf3b80403, + 0x011d2506, 0xf2c80103, 0x0000fe0b, 0xf652f393, 0x44340100, 0x03ca864f, + 0xfff45300, 0x0b340501, 0x3a4fc4fe, 0x130003ca, 0x023cf453, 0x30273405, + 0xb8def493, 0x06439d01, 0xff1efe0b, 0xa7233f9b, 0xffffff2e, 0x0cac24d1, + 0x1027432e, 0x23d5071e, 0x11270cac, 0xf616f493, 0x4843c100, 0x04003d14, + 0x04003d27, 0xffff2ea7, 0xb024d1ff, 0xd5342e0c, 0x270cb023, 0x4400c111, + 0x062424d1, 0x20d5042e, 0x031e0624, 0x0ea715e6, 0x39fffb43, 0x9e44c604, + 0x0bfde218, 0xbefe4efe, 0x93fd5f72, 0x01b873f4, 0x24544499, 0xfe0e204c, + 0xfd10389e, 0x0f9efe0e, 0xfe4efd12, 0xb85af493, 0x54449901, 0xbe204c24, + 0x1efd101f, 0x11fabe05, 0x9efe0efd, 0x4efd5f50, 0x9d4127fe, 0xdb3e0604, + 0xfe8e0427, 0xf587f493, 0x27421900, 0xff4ea731, 0x439dfeff, 0x9326a60b, + 0x01b81ff4, 0x04544499, 0xe89e204c, 0xe99efd0f, 0xfe0b001c, 0xf493fc4e, + 0x1900f55d, 0xff3ea744, 0x3199ffff, 0x26329927, 0x34d145c6, 0x47560634, + 0x063834d1, 0x34994696, 0x4e45e610, 0xff4ea721, 0x44d1feff, 0x44860148, + 0xdea7a33e, 0xa7fff9cf, 0xfd4fffce, 0xc301d419, 0x41dc437b, 0xcd4ea70f, + 0x4419fff9, 0x437bc301, 0xbe2e41d8, 0x19fd86b0, 0x7bc301d4, 0x1741d843, + 0x2127d319, 0x1207c401, 0x31eb143b, 0x4ea7d31d, 0xc5fdcfff, 0x05466442, + 0xf49b4027, 0x38c4c50e, 0x4ea73127, 0xc5fdcfff, 0xfc8e6043, 0xf4933127, + 0x9d01b778, 0x3d5e6443, 0xa7fc4eff, 0xffffff4e, 0xc6274d99, 0x1e0027d4, + 0x9cb2be05, 0xaef493fc, 0x441900f4, 0xcea747c6, 0x19fff5ef, 0xce4f4bc4, + 0x20070b4d, 0x0c071d07, 0xfc9d79be, 0x4f4bc419, 0x0027423c, 0xfc93fc8e, + 0xa700f480, 0xfeffffde, 0xf08bc001, 0xd4990536, 0x1e47760b, 0x1504c8f4, + 0xfc9e3bbe, 0xffff4ea7, 0x0b4499fe, 0x45160127, 0x031e0027, 0x30270127, + 0xffff4ea7, 0x0b439dfe, 0xfb4efc8e, 0xb6f2fc93, 0x9db02701, 0x4fbe65cb, + 0xd0070008, 0x0d7e0c07, 0x2ad4ccfe, 0xffff4ea7, 0xb84bbdfe, 0x7ed4f61f, + 0x1f1efdcc, 0x1e1cd1c4, 0xbe0d070e, 0x07fc9de8, 0x5efb0e0c, 0xb57efe7b, + 0x1ed027fd, 0x05c49906, 0x0d074136, 0xfc4efb8e, 0xb6a6f493, 0x99302701, + 0x439d5442, 0x202c2465, 0xfd0e4bbe, 0x4bbe051e, 0xd007001b, 0x271804cc, + 0xff4ea730, 0x43bdfeff, 0x03441fb8, 0x27fd777e, 0xc4461ed0, 0xf0934302, + 0x0701b670, 0xfd967ec0, 0xd605c499, 0xff4ea748, 0x4411feff, 0xffff3ea7, + 0x2433d1ff, 0xf5448706, 0x000d1843, 0xa73127ff, 0xfdcfff4e, 0x1e6843c5, + 0x07d42810, 0x9d5ebe0d, 0x0e0c07fc, 0xfdf15efc, 0xfc8e0d07, 0xffff4ea7, + 0x094499fe, 0x43832027, 0x44333487, 0x43f9432b, 0xff00004d, 0x131e3103, + 0x0a0824f9, 0x4f4bff00, 0x142e408b, 0xfe0b0027, 0xf3582103, 0xfe0b0127, + 0x4ea7fc4e, 0x01fd7fff, 0x58c0074d, 0x070027d8, 0xa01cbe1c, 0x00ded8fc, + 0x93260400, 0x00f330f4, 0x31274219, 0xf326f493, 0xa6431d00, 0xa7302726, + 0xfd4fff4e, 0x43b50027, 0xfd51f7be, 0xfffe3fbe, 0x0000ded8, 0x31273f80, + 0xf302f493, 0xa7431d00, 0xfd4fff4e, 0x4ea74301, 0x87ffffff, 0x1142b933, + 0xf540270a, 0x02b04034, 0x9326e6ff, 0x00f2e0f4, 0x45064419, 0xfca1eabe, + 0x45be051e, 0xff1efc9b, 0xfffd6bbe, 0x0000ded8, 0xf4931702, 0x1900f2c1, + 0x2745e644, 0xb5f49331, 0x431d00f2, 0x0010e0be, 0x1b10dcd8, 0x4ea73127, + 0x07fdafff, 0xbe43550c, 0x27fce596, 0xc4f19309, 0x9b9efd98, 0x4ea7fd58, + 0xd1ffffff, 0xa60a1442, 0xff3ea725, 0x3441fdaf, 0x3405420b, 0xf54efc8e, + 0xffff5ea7, 0x6ef993ff, 0xf69300f2, 0xa701b514, 0xfeffffbe, 0xcfffaea7, + 0xef7ea7fd, 0x53d1fff5, 0x35a60a14, 0xafff2ea7, 0x0b2441fd, 0x99240543, + 0x47161054, 0xffeb0ea7, 0x59b4beff, 0x9e2cbefd, 0xeb0ea7fc, 0x84beffff, + 0x9419fd59, 0xc02744d6, 0x68be171e, 0x40270002, 0x2764649d, 0x270496c1, + 0x2704e6c0, 0x65649d41, 0x1ffdb4b9, 0x532f4cd8, 0x0cbe0027, 0xb4b9fc9f, + 0xd0070140, 0x0c5845a6, 0x83045330, 0xd3e4be01, 0x832d07fc, 0x2676102c, + 0x4c834d07, 0x274cab25, 0x27448600, 0x6bc00701, 0x833d07cf, 0x3556303c, + 0x1ffdb4b9, 0x130f4cd8, 0x1ffdbdbd, 0x24e635c6, 0xa4c54127, 0xc5412764, + 0xb2b960a4, 0x2cd81ffd, 0xb4992f30, 0x87438309, 0x2b443334, 0x5044f943, + 0xa6ff0000, 0x48b4d147, 0xc5412401, 0x111e64a4, 0x42544223, 0xe6265499, + 0xfc01c84f, 0x01c3202c, 0x1ffdb4b9, 0x1d104cd8, 0x46469419, 0xfffcacbe, + 0x40270cab, 0x41270486, 0xcf6bc407, 0xfc98d5be, 0x019f0ff6, 0xc5b6b811, + 0xf152f393, 0x27341900, 0x27448631, 0x07941930, 0x66df6bd3, 0x6564994c, + 0x45a67c19, 0x96056499, 0x992ebe45, 0x2704d6fc, 0x27031e41, 0x64619940, + 0xf610c2d8, 0x04649945, 0x43183027, 0x23073127, 0x2127031e, 0x41c34107, + 0x30274d8b, 0x31274486, 0xdf6bd307, 0xdfe6d28b, 0x94190135, 0x74194506, + 0x741d41a3, 0xf49b4027, 0xe9f2930e, 0x241900f0, 0x54d14656, 0x45960620, + 0x1ffdb3b9, 0x31833453, 0x3027031e, 0xd3079419, 0x4a06df6b, 0x11270127, + 0xe6fd437e, 0xd8741907, 0x3ea71941, 0xd1fbffff, 0x27021034, 0x104c1c30, + 0x43073127, 0x4f6b41c3, 0x4027031e, 0x30274d8b, 0x84f90b1e, 0xff000a08, + 0x4d8b3027, 0x31274486, 0x4f6b4307, 0x941947c6, 0x22be4506, 0x131efcd3, + 0x270f5499, 0x0ef39b30, 0x44873127, 0xb04043f5, 0x2ea7ff02, 0xd1fbffff, + 0xab021024, 0x5df393fd, 0x341900f0, 0xbe7e4fd6, 0x27fd5a2a, 0xc0041e20, + 0x24f92022, 0xff011ff8, 0x428747c6, 0x300044f1, 0x44d8ff02, 0x27420712, + 0x2b410335, 0x27461032, 0xf0210331, 0xa2c1daf3, 0x07302748, 0xc544a342, + 0xf39b48a4, 0x8b00070e, 0x48a2c5ff, 0xd168a3c5, 0xa70a1452, 0xfd4fff4e, + 0xa66443c5, 0xff3ea728, 0x3441fdaf, 0x7fff3ea7, 0xa7420bfd, 0xfdafff2e, + 0x34212405, 0x25104ce3, 0xa3341134, 0x3415104c, 0xfd59d3be, 0x9419fdeb, + 0x74194506, 0x741d41e3, 0xf49b4027, 0x9340270e, 0x00efc3f3, 0x675e341d, + 0x4ef58efd, 0x08f9befa, 0xff4ea700, 0x44b9feff, 0xd0071ffd, 0xbe2f4c1c, + 0xa70008a7, 0xffffff4e, 0x99264399, 0x3224274a, 0x0d1eb127, 0xa200b127, + 0xb4d6b027, 0x181e0027, 0xb22ef493, 0x54449901, 0x4c043027, 0x07312720, + 0x0741c343, 0xbe0f6b04, 0xa7000bb4, 0xffffff2e, 0xd4964127, 0x40ab4027, + 0x063623b9, 0x4496c127, 0x3706c027, 0x24bd4027, 0x4bbe0636, 0x0cab0007, + 0x04864027, 0xc4074127, 0xdea7cf6b, 0xb9ffffff, 0xc6063ad4, 0x9f19be44, + 0x3bd4b9fc, 0x27460606, 0xcdf49330, 0x439d01b1, 0x3bd3bd06, 0x27b4c606, + 0x27a49601, 0xff3ea700, 0x34b9ffff, 0x45060637, 0x34bd4027, 0x34be0637, + 0x0cab0000, 0x04864027, 0x04074127, 0x4ea7fa8e, 0xc1ffffff, 0x44b9fc43, + 0x03ca0100, 0xc2430b13, 0x0c830e40, 0xf903330f, 0x00007c00, 0x27fe0bff, + 0x4efe0b00, 0x71f493f5, 0xf0e301b1, 0x44990f6b, 0xe6f02508, 0x5e002744, + 0x3ea70291, 0xb9ffffff, 0x36063834, 0x15002745, 0x00b85ef0, 0xc0274027, + 0xbd28ac27, 0x5e063834, 0xcd070095, 0x47334d07, 0xc40bc533, 0x08c4c0f1, + 0xbc07ff00, 0xfca404be, 0x08c4c4f1, 0xbe23ff00, 0x83fff73c, 0x34070f4c, + 0x44873533, 0x4307342b, 0x432b4333, 0x860c43f1, 0x1b070005, 0x2a074307, + 0x10014403, 0x40051403, 0xf2a84403, 0xc564b1c1, 0xb4c1b431, 0xb834c568, + 0xc56cb0c1, 0xb1c1bc30, 0xdc31c570, 0x8352b489, 0x34c50f4c, 0x54b4c1c4, + 0xc1d434c5, 0x3bc55cbb, 0xfd4027d8, 0x0008b8d4, 0x4b4ea7ff, 0x4479fff7, + 0x0ea74566, 0xbefff749, 0x27fdda48, 0x4b0ea7c1, 0x84befff7, 0xd007fdda, + 0xffff0fe4, 0xff5cffff, 0x4ea7fc15, 0xd1ffffff, 0x930a0448, 0x01b08bf5, + 0x98e2f693, 0xd1f79300, 0x08070098, 0xfffee1be, 0x4c834007, 0x184ce418, + 0xc0070160, 0xf620cc83, 0x070157cf, 0x0f4c8348, 0x35333407, 0x342b4487, + 0x93339307, 0x9f03932b, 0x00058560, 0x99119499, 0x9dc10493, 0xab4733ac, + 0xa4d39d34, 0xd14094c1, 0x2b03fc53, 0xc5433343, 0x90c1c8d4, 0xfc50d540, + 0xc078be03, 0x0b9499fc, 0xc5ccd0c5, 0x4566d0dc, 0x4ea3d461, 0x65010000, + 0xb99499d4, 0xd4614546, 0x20004da3, 0xd489d465, 0xc442e490, 0x04949900, + 0x271d44d8, 0x28649d41, 0xf6169499, 0x98d1c148, 0xd4c17105, 0xc174159c, + 0x7025a0d0, 0x3800a25e, 0x1e412748, 0x9d402703, 0x40272864, 0x74057425, + 0x4d077415, 0x4c033607, 0x01282778, 0x05440341, 0xa8340331, 0x0c1c27f2, + 0x891a618d, 0x9c891a94, 0x5345531c, 0x24648dc5, 0x11266c8d, 0xc1c49b73, + 0xac079cd0, 0xa153030b, 0x0a0b1c07, 0xfd7d94be, 0xd4c17321, 0x0bb007a0, + 0x07040743, 0xbe0a0b1c, 0xc1fd7d81, 0x730198d4, 0x430b2007, 0xbd830407, + 0x2c3303ff, 0x0b1c0716, 0x0cbc330a, 0x62beb2ab, 0x4d27fd7d, 0x1c270bbc, + 0x2df40d2c, 0x834007f1, 0x010fff4d, 0x07b4abf0, 0xbe6b8516, 0x07fcd328, + 0xf1debe09, 0x5d5499fc, 0x0d074144, 0xbea40c03, 0x99fccf62, 0x44e60b94, + 0x549d4227, 0xbe080704, 0x03fca0a9, 0xfe945e81, 0xffff3ea7, 0x0434d1ff, + 0x1e48ce0a, 0x0a0438d5, 0xf49b4027, 0x0e33990e, 0x4fbf2ea7, 0x273138fd, + 0x53240541, 0xd6240331, 0x86f42132, 0xad6cbe46, 0x27f111fc, 0x8601ab40, + 0x6b412704, 0x11f4154f, 0x8ef0c3f0, 0x89fc4ef5, 0x0489280e, 0x83d10726, + 0xffffffdf, 0x07e49b0f, 0x09decac3, 0x24054027, 0x0f1e3405, 0x14072405, + 0xa8be0d07, 0xc005fd7c, 0x0e07ed07, 0xf54efc8e, 0xae96f393, 0x4439c101, + 0x9f83f163, 0x8000000f, 0x4c5037c1, 0xa3912390, 0xfffff09f, 0x399103ff, + 0x2e4ff634, 0x30345902, 0x0c27104c, 0x03bc5e16, 0x278431c1, 0x27f32530, + 0xf421102c, 0x343b3127, 0x418b4307, 0x43074616, 0xf39341ab, 0xc501ae4c, + 0x0a1e8434, 0x3103f321, 0xf2f0f325, 0xc1f121de, 0x719d4072, 0x99390744, + 0x49870622, 0x342b3533, 0x0745729d, 0x21f29343, 0x2dc101ae, 0x2b433344, + 0x3873c143, 0x333c7199, 0x420b1cdc, 0xf621d3ab, 0x43a9f135, 0x1d070458, + 0x045644a9, 0x1f836333, 0x0fffffff, 0x439bfc31, 0x055c61f5, 0x64f5ff00, + 0xff000560, 0xc20bc333, 0xa94422c1, 0xa9010ccb, 0x45010ec4, 0xb862f5f1, + 0xda000581, 0x473632b4, 0x27800c27, 0x0100001e, 0x5cbe2027, 0xac27fd52, + 0x08c0d510, 0x070f1e01, 0x08c0d114, 0x47143301, 0x516ebea4, 0x33f431fd, + 0x3e4aed43, 0x31000582, 0x333b07f4, 0x3844f143, 0x33000582, 0x93340b33, + 0x01ad87f4, 0x40791b07, 0x11033823, 0x58035307, 0x1e03f1f0, 0x073a011f, + 0x074acb4d, 0x1c4c532d, 0x2a2b3811, 0x20cc46f6, 0x23b12313, 0xfa0fe638, + 0x27da1e00, 0x008f27a0, 0x31800000, 0xe94333f4, 0x05823c44, 0x134bd200, + 0x4dee5401, 0x4f8300dd, 0x0fffffff, 0x056064f5, 0x4d07ff00, 0x071c4c53, + 0x87353334, 0x07342b44, 0x2bc333c3, 0x070c07c3, 0x600f033f, 0x07000585, + 0x032f071d, 0xfe3f7e34, 0x4606f411, 0x85acc4f1, 0x30870005, 0x4027340b, + 0x8cf43405, 0x07022810, 0x534dcb4a, 0x4ff61c4c, 0x4807021d, 0x4333f141, + 0x056041f5, 0x44f1ff00, 0xff00055c, 0x020741e2, 0x701e0527, 0x21012411, + 0x31053415, 0x4c342823, 0xf5433310, 0x0581bc43, 0xca382300, 0x4907e753, + 0x3987f131, 0x432b4533, 0x13333407, 0x81301f03, 0x33330005, 0x010c12a9, + 0xf421342b, 0x54152103, 0x12ad4333, 0x45f5010c, 0x000581bc, 0x3f035d05, + 0x00058130, 0x34b9f425, 0xf293043c, 0x0301ac74, 0x3c34bd41, 0x27245904, + 0x3d410331, 0x1e245d23, 0x93012719, 0x01ac5bf2, 0x23c1f121, 0x3b412784, + 0xc534eb41, 0x9b5e8423, 0x1f0c2701, 0x00054cbe, 0xeb074ea7, 0x053027fd, + 0x002f2743, 0x15158200, 0x0ef39b42, 0xac2afb93, 0xe4b63901, 0xc100df61, + 0xb3814074, 0x83c24801, 0x44bcc156, 0xffdf0ea7, 0x50dcbeff, 0x83dc07fd, + 0xb0990fdc, 0x07d33324, 0xf920271c, 0x000080da, 0xed47beff, 0x86c007fd, + 0x87749106, 0x07340b3a, 0x0330054a, 0x80d4fd41, 0xa7ff0000, 0xffffdf0e, + 0xfd5082be, 0x0627c4f6, 0x9901215e, 0x460724b3, 0xb485433b, 0x7cc1bc75, + 0xbdf29340, 0x238901ab, 0x71c4494a, 0x3f34ce2d, 0x28071d07, 0xbe1f0c27, + 0x070004c8, 0xa72c0738, 0xf7ffff1e, 0x24013253, 0x14d52403, 0xf3a80118, + 0xab8ef493, 0x81437101, 0x0bcc4942, 0xc5282b38, 0x4dc5407d, 0x8543754c, + 0x4a4c8d42, 0x22c1071e, 0x4072c54c, 0x39874907, 0x432b4533, 0x13331407, + 0x1f03142b, 0x00058560, 0xab56f093, 0xbe270701, 0x270004a3, 0x49f49332, + 0x433d01ab, 0xfb430ea7, 0xd567beff, 0x24d007fd, 0xffffff0f, 0x150c27ff, + 0x0700815e, 0x337c0940, 0xd041f143, 0x07ff0004, 0x1f0c272c, 0x39beb407, + 0xbe230004, 0x53fffb34, 0xa73707c2, 0xf7ffff2e, 0x34033401, 0x011824d5, + 0x0c27fca8, 0x0403be1f, 0x93740900, 0x01aaf3fc, 0xc3c1b405, 0x5873c568, + 0xd4fd4227, 0xff0004c0, 0xfb430ea7, 0xc60439ff, 0xd46ebe44, 0x274027fd, + 0x1ec43d00, 0x33f4311e, 0x304f0343, 0xa9000581, 0xd1010c43, 0x33010844, + 0x07340b33, 0x5e282323, 0xf143fdfb, 0xf84ef58e, 0x8ea7d027, 0x93fd4fff, + 0x01aa9ffa, 0xd127031e, 0xfaf30ea7, 0xd471beff, 0xe0b007fd, 0xffffff0f, + 0x0700daff, 0xf9143310, 0x00051c1d, 0x2013f1ff, 0x07ff0005, 0x0343334d, + 0x0581304f, 0x8c40c100, 0x00003f03, 0x03158000, 0x078849c1, 0x834907e1, + 0x34070f4c, 0x44873533, 0xc307342b, 0xc32bc333, 0x8560cf03, 0xc2c10005, + 0xe4ee23ac, 0x24c1fffa, 0x2413f1a8, 0xc6ff0005, 0x4c431b44, 0xa823c540, + 0x051e14f9, 0x24c5ff00, 0x5c0401c0, 0x3cfff04d, 0xff00004f, 0xc584110f, + 0xe479e024, 0xc49946a6, 0x274616b9, 0xb9c49d41, 0x935cf093, 0xa9f9befd, + 0x84a3c1fc, 0x4d3b4127, 0xa3c534eb, 0x0ccd9984, 0xcd9dd123, 0x23a4590c, + 0x27a45d41, 0x10b4fd40, 0xa7ff0005, 0xfffaf34e, 0x45664479, 0xfaf10ea7, + 0xd35ebeff, 0x27dff6fd, 0x44a4c1ff, 0xff2049ee, 0x0a071c07, 0xfcab1cbe, + 0x07ff155e, 0x4ef88e0d, 0xff4ea7fd, 0x4d99ffff, 0x26419927, 0xb92f1dce, + 0xa60d1444, 0x24f09345, 0x2d07fd9e, 0xfd49abbe, 0xbe0bd2c4, 0xc6fc927d, + 0x1e022706, 0xbed6160b, 0x46fc9212, 0x0e002705, 0xd1849efd, 0x4efd8efc, + 0x8df493fd, 0x43290318, 0x34ce4409, 0xf9f49335, 0x240701b9, 0x07c32c03, + 0x7f2ce334, 0x197f3ce3, 0x803c0334, 0x27f932c2, 0xddf093d0, 0xf2be01b9, + 0x0626fd45, 0xb9d2f093, 0xd375be01, 0x1ed127fc, 0x93d027e9, 0x01ba8ff4, + 0x99404399, 0x34ce4144, 0xce29be11, 0x270dabfc, 0x27048640, 0x6bd40741, + 0x8e0d07df, 0x1e03dcfd, 0x48334107, 0x140741ab, 0x1c333207, 0xab325310, + 0x1e310314, 0x23010507, 0xb8040324, 0x1d2506f3, 0xc8010301, 0x07fe0bf2, + 0xd840ab41, 0x151e0f43, 0x24231301, 0x14030305, 0x071e0403, 0x42534207, + 0xf4584103, 0x14192586, 0x041d1103, 0xf2a80103, 0x0105fe0b, 0xf2c80403, + 0x2253fe0b, 0x14012586, 0x04051403, 0xf2a80403, 0x0533fe0b, 0x180001f5, + 0x03f5ff02, 0xff021804, 0x0e234027, 0x35fde800, 0x000e0304, 0x02f5fde8, + 0xff021810, 0x181403f5, 0x0e23ff02, 0x35fde7f0, 0x4efe0b04, 0x27d007fc, + 0x07033343, 0xf53d07e3, 0x02120004, 0x47c107ff, 0x3312070d, 0x0034f133, + 0xdcff0210, 0x2087f848, 0x100024f1, 0x4ddcff02, 0x27f60800, 0xf5010334, + 0x02120023, 0xf54087ff, 0x02120043, 0x87e623ff, 0xf540273c, 0x02160034, + 0x0fec83ff, 0x1c333d07, 0x8333330e, 0xf000001f, 0x10ec333f, 0x34f5e1ab, + 0xff021400, 0x14043ef5, 0xf49bff02, 0x4efc8e0e, 0x07b207f6, 0x27a00791, + 0xf893406c, 0xa700e53c, 0xfdefff7e, 0xcb07471e, 0x0741bc10, 0x078401c6, + 0xc3d633d4, 0x23840541, 0xfefdb4de, 0x33fc74c1, 0x4c53184c, 0xf542cc1d, + 0x23032c07, 0x0d0723e3, 0x077e1907, 0x9b4027ff, 0x0c270ef4, 0x072a071f, + 0x7e3c071d, 0xac0bff06, 0x9c0bbc2b, 0x8eb8bfd6, 0xff2ea7f6, 0x031efdef, + 0x24c1f3e8, 0xdc3327fc, 0xf5fc6a4d, 0xfb4efe0b, 0xc007b107, 0x0c07e43e, + 0x1ea72b07, 0x0efefdf3, 0xfec05efb, 0xc007fb4e, 0xce3eb107, 0x3b071c07, + 0xa71f0c27, 0xfefdf32e, 0xb75efb0e, 0x114f27fe, 0xfb100000, 0xffff40f4, + 0xf505333f, 0x02180001, 0x0402f5ff, 0x27ff0218, 0x000e2330, 0x0335fde8, + 0x03234c27, 0xfde8000e, 0x181004f5, 0x02f5ff02, 0xff021814, 0xe7f00e23, + 0x0b0335fd, 0x0f0c83fe, 0x0e230333, 0x39ffff7e, 0x9e44c604, 0x0bfdd094, + 0x030333fe, 0xe8031e04, 0x0004f1f3, 0x27ff0210, 0x6a4ddc33, 0xfe0bf2fc, + 0x43270533, 0x180004f5, 0x02f5ff02, 0xff021804, 0x0e234027, 0x35fde800, + 0x000e0304, 0x01f5fde8, 0xff021810, 0x181402f5, 0x0e23ff02, 0x35fde7f0, + 0x4efe0b04, 0x07c007fc, 0x03d20702, 0x75be4c0c, 0x40a70005, 0x9d45d399, + 0xd49d47d4, 0x1a32c446, 0xc03ed499, 0x4713ff4c, 0xb94c0b44, 0x9d014843, + 0x44b946d3, 0xd49d0149, 0x00fc8e47, 0x00000001, 0x00000000, 0x00000001, + 0xff02b040, 0x0f6bf54e, 0x0fe6f063, 0xdea70184, 0xb9ffffff, 0x460635d4, + 0xdcc4be46, 0x270586fc, 0xbd612740, 0x1e0635d4, 0x27602703, 0xffcea7d0, + 0x7027ffff, 0xc396f993, 0xff8ea701, 0x5ea7fd7f, 0xb9fdcfff, 0xf40a2bc4, + 0x0122104c, 0x0cb5c4b9, 0x94994606, 0x9df1139a, 0x4c501a01, 0x010e5e10, + 0x0196f213, 0x930f072a, 0x01b7b7f1, 0xfccaa5be, 0x00fa0fe6, 0x4d24f409, + 0xf4290bba, 0xfb284ce0, 0x93062700, 0xfda340f1, 0x4307311e, 0x3707400b, + 0x00014f30, 0xf4537000, 0x4319ff64, 0x41c34307, 0x2f6b2407, 0xb77af193, + 0x61147101, 0x0a430b13, 0x2725b604, 0x57f19306, 0x0b9efda3, 0xc0b9fd49, + 0xfbab0a2a, 0xdc83d007, 0x073d070f, 0x3345334d, 0x23340b33, 0xfff5d43e, + 0x4a272107, 0x24032101, 0x34033105, 0xc2b9f4a8, 0xf3930a2b, 0x8101b734, + 0x0731613e, 0x0333714d, 0x33210301, 0x2ac0bd43, 0x2bc2bd0a, 0x944f030a, + 0x0b00059e, 0x0543151e, 0x9a949941, 0x41033027, 0x9b9a949d, 0xa6260ef3, + 0x0cb5c4b9, 0x84114244, 0x00004ea3, 0xeb841502, 0xff2ea7fb, 0x4027fd4f, + 0xf49b2301, 0x9921270e, 0x233b0ec4, 0xf45324cb, 0x4301feb8, 0x41272138, + 0x21533405, 0x340324c6, 0x4127f31e, 0x276054c5, 0x05f493d1, 0x479d01a5, + 0xfed95e06, 0x46ab4d07, 0x44860027, 0x0f6b0127, 0xf493171e, 0x8101b6a4, + 0xf4405143, 0x0000003f, 0x27ff0120, 0xff165e20, 0xf58ef043, 0x4ea7fb4e, + 0xb9ffffff, 0xb90cb64c, 0x070cb743, 0x1eb407d2, 0xb844f122, 0x07ff000c, + 0x2b14053e, 0xc83f6b40, 0x22f90d40, 0xff000cf8, 0xd21d0127, 0xb3bdfb8e, + 0x23070cb7, 0x070f2c83, 0x034287e3, 0xd2c3cee1, 0xfb8e0027, 0xffff3ea7, + 0xb734b9ff, 0xbd41030c, 0x0b0cb734, 0xa7f94efe, 0xfbffff3e, 0x02183ad1, + 0x9a073431, 0x3c1f9c53, 0x0000004f, 0x1ee02701, 0x103ed105, 0x9395b602, + 0x01c1bbf4, 0xc58043c1, 0x4e078443, 0x43e44383, 0xbea7009a, 0xb9ffffff, + 0xb90cb6b1, 0x070cb7b4, 0x07411b0e, 0x272f6b24, 0xfd93104c, 0x3301c190, + 0x422b1d0c, 0xc11f0c53, 0xc02780d3, 0xc1274210, 0x2b102cd4, 0x4f834a07, + 0x0fffffff, 0x2c832107, 0x33342b0f, 0x03428733, 0xb843f511, 0xfdff000c, + 0x000cf820, 0xb6b1bdff, 0x9b40270c, 0xc5160ef4, 0xb4bd4127, 0xd4c10cb4, + 0x90d3c188, 0x305b4103, 0x8b88d4c5, 0xe335e63c, 0xa7e8a3e3, 0xfbffff4e, + 0x02104ed5, 0xb4bd4127, 0x3616063b, 0xfceca6be, 0xe394d4c1, 0x94d4c543, + 0x9ff6f98e, 0xf39300f1, 0xa701c10c, 0xffffff4e, 0x0a2a4db9, 0x99803bc1, + 0xa0279a34, 0x2300815e, 0x07e21141, 0x031f6b14, 0xc6e00141, 0xc49d6d2f, + 0x10d2079a, 0x0000012f, 0x00df2701, 0x07010000, 0x833d0710, 0xa7370317, + 0xfde6ff4e, 0x07e3310b, 0x37e34005, 0x00274315, 0x2ea74035, 0x27fde6ef, + 0x24050e4c, 0x4d072315, 0xffff4f83, 0x4fa30fff, 0x80000000, 0x351c1c33, + 0xa741ab20, 0xfbffff3e, 0x021834d5, 0x0180c4c1, 0xc54d0be3, 0xe41180c4, + 0x4d2b3d0b, 0xe305e415, 0x41071d1e, 0xed07a127, 0xec83e42b, 0x03e3330f, + 0x059e94ef, 0xf6c30700, 0x9dff6e4f, 0xf4939a34, 0xc101c05c, 0xb4ce8044, + 0xff3ea70f, 0x3411fd7f, 0x00004ee3, 0x26341502, 0xff3ea7a8, 0x4127ffff, + 0x063534bd, 0x270f3399, 0x0ef49b40, 0x33874127, 0xb04034f5, 0xf98eff02, + 0xf49b4027, 0x99f98e0e, 0x47d81414, 0x8a049d1b, 0x13311441, 0x0b3c02c1, + 0x33430734, 0x9003c543, 0x2108242b, 0x0b3c04c5, 0x2b4007fe, 0x23f49b41, + 0x20071686, 0x4f9b2803, 0x4e382723, 0x9b242e04, 0xf31e25f3, 0x007f4f27, + 0xf49b4000, 0xa7fe0b21, 0xfdefff4e, 0x010442d1, 0x53182c33, 0x1b1e1d2c, + 0xc4890499, 0x41231231, 0x34874383, 0x432b4433, 0x4499400b, 0x9d45e661, + 0x03998801, 0x23130788, 0xdd23ca11, 0xfd4efe0b, 0xc43ed007, 0xf688d499, + 0x223f9b45, 0x2e234f9b, 0x9d402743, 0xfd8e8ad4, 0x9b2af09b, 0x100b2bf0, + 0x9b22f19b, 0x4f9b23f0, 0x104ca320, 0x9b20f49b, 0xfe0b23f0, 0xe3204f9b, + 0xf49b104c, 0x2b4f9b20, 0xefff3ea7, 0xd54327fd, 0xd1030034, 0xdc010034, + 0x3ea7fa48, 0xd1fdefff, 0xdc010034, 0xf808004d, 0x34d54427, 0x34d50300, + 0x20270304, 0x063c32d5, 0xeaff3ea7, 0x273205fd, 0x0400004f, 0x9b34150c, + 0x04990ef2, 0x27454688, 0x88029d40, 0x0b89049d, 0x100c5cfe, 0xdefef493, + 0xac41c100, 0x1007183c, 0x070f1c83, 0x0f4c8341, 0x2f274333, 0x80020100, + 0x2f6b247b, 0x24964127, 0xf3934027, 0x3300ded8, 0xac31c545, 0xc54c349d, + 0x0f9bc032, 0xc034c120, 0xab830ce3, 0x93fe0b04, 0x00debbf4, 0x538b4099, + 0x0b018302, 0x234f9bfe, 0x48134783, 0xf49b4800, 0x9bfe0b25, 0xf493230f, + 0xc100de9c, 0x43075043, 0x042b4333, 0x030b0373, 0xe81efe0b, 0x05234f9b, + 0x81f49304, 0x43c100de, 0x9903153c, 0x039db043, 0xaa439908, 0x9909039d, + 0x039dac43, 0x8b44990a, 0x0b0b049d, 0x93fe4efe, 0x00de5bf2, 0x9b4023c1, + 0x34ce234f, 0x8b24990f, 0xa3104c38, 0x249d204c, 0x93933e8b, 0x00de3ff0, + 0x998c0499, 0x43ab8a03, 0x278a049d, 0x8c049d40, 0x9b223f9b, 0x43ce234f, + 0xef22be0b, 0x2704c6fc, 0x93fe8e02, 0x00de17f0, 0x838b0499, 0x4c24f04c, + 0x8e002710, 0x9c04c1fe, 0xfe8ef48b, 0x9b274f9b, 0x4c30240f, 0x0b00a720, + 0x9b4103fe, 0x412325f4, 0x5b1f4c13, 0x0b012304, 0x99fc4efe, 0xd0073004, + 0xc02744d6, 0xc027781e, 0x4aa66c1e, 0x2389d499, 0x07438341, 0x87343334, + 0x0b342b44, 0x6134993d, 0x309947f6, 0x583ec160, 0x10074007, 0x15334333, + 0x1d0b142b, 0x33c11421, 0x0be42b5c, 0x99271ee3, 0x41dc8ad4, 0x32d49939, + 0x0731d299, 0x07018304, 0x33100730, 0x2b153333, 0x03340713, 0x1e24ce31, + 0x0b32d39d, 0x0720071d, 0xbe0d073e, 0x11fcf0d5, 0x0b433304, 0x88d499c4, + 0x42c8e027, 0x8e0c078e, 0x07f54efc, 0x070107d0, 0x2b720781, 0x235f9b02, + 0x9b1850ce, 0x42072c3f, 0xda604c03, 0x01070d34, 0x467e1207, 0x5ed027fd, + 0xd3c10115, 0xe3a00750, 0x073333a7, 0xcc432b4a, 0xa8071240, 0x4a07a7e3, + 0x402c432b, 0xf65ed127, 0x07702700, 0xfdae7e0d, 0x9931de99, 0x302730d4, + 0xd39d4e1b, 0x6b94078a, 0x8329079f, 0x07420721, 0x334333c2, 0x2b6907c5, + 0x0b6103c4, 0x509ececd, 0xc441c131, 0x43331333, 0x0a07b107, 0x0b14c399, + 0x07042bb4, 0xd84b2b45, 0x38072d37, 0x40083b2b, 0x30c818d6, 0x070d0722, + 0xfca57e1c, 0x41034907, 0x9932d49d, 0xab0714c4, 0xd1274483, 0xd0274486, + 0x1027d203, 0x0008721e, 0x070901da, 0x27991e96, 0xc1c02700, 0x4a0754d3, + 0x432b3333, 0xce2c40c8, 0xa3070938, 0xd4271027, 0xd2c14e1e, 0xff4ea738, + 0x43b9ffff, 0x24190a2a, 0x0d07344e, 0xb1be1807, 0xa807fcef, 0x1027a72b, + 0xc4412c1e, 0x33733007, 0x1c07430b, 0x9d90d4c5, 0x0d0732d9, 0xfcefacbe, + 0x1132d499, 0x9d41030c, 0x0d0732d4, 0x33fe547e, 0x0b1007c3, 0x07d0271c, + 0xfcae7e0a, 0x0807d536, 0x2e7e1707, 0x8e0d07fc, 0x203f9bf5, 0xdc16f293, + 0xac24c100, 0x24c14858, 0x830ce3c0, 0x430704ab, 0xa3104c83, 0x40ab0c4c, + 0x38c634cb, 0xd820f49b, 0x9b1e833c, 0x4cd8231f, 0x24c10d83, 0x4c229940, + 0x2432411b, 0x20274008, 0xdbdaf093, 0xfe7b5e00, 0xfb4efe0b, 0xfd93b007, + 0xc100dbcc, 0xd29940d4, 0x324b1b4c, 0x27400824, 0x070d0720, 0xfe5b7e1b, + 0x0344c007, 0xc5234f9b, 0xe01e40d4, 0xbe230f9b, 0xc1fcec67, 0x0d0744d1, + 0xfcedfcbe, 0xc4aad499, 0x4f9b1b41, 0x40d3c123, 0x4f50432b, 0x70000001, + 0x03234f9b, 0x0000004f, 0x40d4c5f0, 0x0d07c444, 0xfced11be, 0x07a50fd6, + 0x4efb8e0c, 0x93d007fd, 0x00db63f0, 0xfcecfdbe, 0xdb5af493, 0x4043c100, + 0x074c4299, 0x32432b4d, 0x27400824, 0x931d0720, 0x00db43f0, 0xe25efd0e, + 0x99fe4efd, 0xe0078a04, 0x994041dc, 0x04993103, 0x3734ce32, 0x9b224f9b, + 0x432b233f, 0x20604ccc, 0x93231f9b, 0x00db17f4, 0x994043c1, 0x41074c42, + 0x2432432b, 0x20274008, 0xfe0e0e07, 0x7efda45e, 0x4f9bfd19, 0x9b400b22, + 0xfe8e22f4, 0xa007f94e, 0x9b239f9b, 0xcf9b22bf, 0xe1fd9323, 0xd1c100da, + 0xc50d0744, 0x36be48da, 0x0d07fced, 0xfcec6dbe, 0x588ad499, 0x2b0b0741, + 0xc1f98e0c, 0xd29940d4, 0x52491b4c, 0x27402824, 0x07031ed0, 0xadf093d2, + 0xdc7e00da, 0xa5f093fa, 0x667e00da, 0x224f9bff, 0x2b233f9b, 0x31a4d243, + 0xda92f093, 0x8a049900, 0x992641dc, 0x48463004, 0x23310499, 0x07418341, + 0x33353334, 0xf9342b43, 0x04bea034, 0x104c5c00, 0x2d071907, 0xfcf054be, + 0x9b220f9b, 0x042b234f, 0xf54ef98e, 0xda56f493, 0x4c439900, 0x439df0a3, + 0x276f074d, 0x4c439d30, 0xb407c007, 0xffff5ea7, 0x936403ff, 0x01ba3ff7, + 0x99108c27, 0x4fe6a8c4, 0x54b9015c, 0x4fe60cb5, 0xf9ab0154, 0x07230f9b, + 0xbe2f0716, 0x26fff7e8, 0xc4c4c10c, 0x19804c24, 0xc145c6f4, 0x4cc4c8c4, + 0xf4191480, 0x110f41c4, 0x7e0223f0, 0xd007fe26, 0x1eccc8c5, 0x7ef0110d, + 0x4227fe1a, 0xc4c5d007, 0x91dff6cc, 0xf7f6be00, 0xe77dbeff, 0x00865efc, + 0xfce776be, 0x338474c1, 0x9bf41543, 0x432b233f, 0x116b40c8, 0x40b4c1fa, + 0x1b4cb299, 0x0824324a, 0x07202740, 0x7e1a070b, 0xd007fc51, 0x9b0b03c4, + 0xd227234f, 0x1e40b4c5, 0x230f9b4c, 0xfcea5abe, 0x0744b1c1, 0xebefbe0b, + 0xaab499fc, 0x9b1b41c4, 0xb3c1234f, 0x50432b40, 0x0000014f, 0x234f9b70, + 0x00004f03, 0xb4c5f000, 0x0bd4c440, 0x03be0b07, 0x05a6fceb, 0xd4e6a01e, + 0x1e0ad4c4, 0x27d42703, 0x8bc49d40, 0x181ef9eb, 0xfc8ac499, 0x27009046, + 0x9dd42740, 0x8a5e8bc4, 0xe82fbe00, 0xe0d007fc, 0xc4ff02d3, 0xc49910d2, + 0x830c078a, 0x8bc49d47, 0x1ef98d7e, 0x6adfd66d, 0x99234f9b, 0xc4c58ac3, + 0xc1315840, 0x433390c4, 0xf493191e, 0xc100d908, 0x3f9b4044, 0x232f9b22, + 0x4f03322b, 0x7fffff00, 0xc4c5432b, 0xc0c0c13c, 0x9d104c27, 0xca7e8bc4, + 0xbcc4c1fc, 0x00004fa3, 0xf49b4000, 0xc5402721, 0x1e1eb4c4, 0xb27e0027, + 0x230f9bfc, 0xfce98abe, 0x20000d27, 0xd6fdcf7e, 0x6d5e800f, 0x1ed227ff, + 0xb1f49386, 0x439900d8, 0x830d074d, 0x4c439df0, 0xfc4ef58e, 0xbaf6fc93, + 0x6cc4c101, 0x0c07dc07, 0x04f6f48b, 0x4610c499, 0x9d402742, 0xfc8e10c4, + 0xf4933127, 0x9d01bad8, 0xfe0b1043, 0x3f9b2007, 0x9b412724, 0x012725f4, + 0x0027300c, 0xf64df493, 0x6c24c5fc, 0xfd4efe0b, 0xd85afe93, 0xc1d00700, + 0x1f9b3ce2, 0x223f9b23, 0x422b4307, 0x32074008, 0x432b4107, 0xc11141c8, + 0x411b3ce4, 0xbe2348c4, 0xc6fcec27, 0x9b1b1e05, 0xe3c1214f, 0x56438bbc, + 0xe8d6be46, 0x04f493fc, 0x0027fcf6, 0x8e6cd4c5, 0x8e0427fd, 0xe3f64efd, + 0x9bd007f0, 0xc8be230f, 0x4f9bfce8, 0x233f9b22, 0x4dcc432b, 0x27103000, + 0xbe30000d, 0x0cfffd00, 0x9b30000d, 0x3f9b234f, 0x9b412724, 0x30c825f4, + 0x241f9b63, 0x1c534227, 0x25f49b1e, 0x27242f9b, 0x1b2c5345, 0xc025f49b, + 0x27543b26, 0xc42621c0, 0x211e3b25, 0x301228c0, 0x3129c428, 0x1aa61f1e, + 0x4ebe0d07, 0x091efcf9, 0x0d071966, 0xfd018abe, 0x221eb007, 0xa6be0d07, + 0xf51e0001, 0xf9be0d07, 0xed1efd10, 0xfebe0d07, 0xe51efd10, 0x1f7e0d07, + 0x27de1eff, 0x75f093b1, 0x02c100d7, 0x231f9b3c, 0x07223f9b, 0x08422b43, + 0x07320740, 0xc8432b41, 0x04c11141, 0xc4411b3c, 0x44be1348, 0x0606fceb, + 0x4f9b0b1e, 0xbc03c121, 0x4486438b, 0x4f9bb127, 0x233f9b22, 0x40cc432b, + 0x31f49315, 0x44c100d7, 0x233f9b3c, 0x4128432b, 0x1e0cbc27, 0xbabfe609, + 0xb6b3e000, 0x15f49300, 0x43c100d7, 0x4e409944, 0x37be030b, 0xb2e0fffb, + 0xb4c8009f, 0xf841be14, 0x530536ff, 0x5efee8f4, 0x0d07008a, 0xfd0563be, + 0x998ef693, 0x7864d101, 0x2745b610, 0x97be800c, 0x60d5fcb4, 0x68d11078, + 0x6ac11078, 0x49d96944, 0xe53cbed7, 0xbec107fc, 0x25fce536, 0x074907f0, + 0x05f293bc, 0x3a07fd9b, 0x1c270807, 0x15f70580, 0x3315befb, 0x89d269fd, + 0xc0278064, 0x6389424e, 0xced4497e, 0x41270e34, 0x9d80628d, 0xd4497c64, + 0x937e648d, 0x01992bf4, 0x107840d1, 0xfc9922be, 0x1b7e0d07, 0xf7b9befe, + 0x2705c6ff, 0x3cf493b0, 0xd4c5fcf4, 0x27031e6c, 0xc30b07b0, 0x9bf68ef0, + 0x3f9b274f, 0x204cd024, 0x9b412717, 0x4f9b25f4, 0x204c2724, 0x2725f49b, + 0x0000000f, 0x03fe0b80, 0x25f49b41, 0x4c134123, 0x07345b1f, 0x18015303, + 0x0b001331, 0x274f9bfe, 0x30240f9b, 0x00a7204c, 0x4103fe0b, 0x2325f49b, + 0x1f4c1341, 0x0123045b, 0xfd4efe0b, 0xa7bed007, 0x0636fffd, 0x01b8d4a9, + 0x41033027, 0xad15d39d, 0x8e01b8d4, 0x23f54efd, 0x55d007f2, 0xbec207f1, + 0x45ffffbd, 0x284f9bf0, 0x09ea4af4, 0x45234510, 0x4200c524, 0x09de44e4, + 0x864046f9, 0xd6bd0001, 0x1f9b01ba, 0x12d48928, 0x0d07144e, 0xfcfe0abe, + 0x09cf0ff6, 0xd67cd499, 0x1e302744, 0x7bd49912, 0x44863027, 0x43073127, + 0x340741c3, 0xd4993f6b, 0x9dd37df3, 0x467b86d3, 0x099a41f8, 0x9b7dd499, + 0x3c27242f, 0x5b342b20, 0x25f49b23, 0x244ed449, 0xf614d499, 0x4d00cb4f, + 0x7cd499d2, 0x3f9b4756, 0x9b412724, 0x30cc25f4, 0x248f9b0e, 0x5325f49b, + 0x81031f8c, 0x8327031e, 0x9b2dc5c4, 0x2dc4282f, 0x9b14ffff, 0x4c27243f, + 0x25f49b11, 0xe40f3c53, 0x0100003e, 0xf1410940, 0xd4b916b6, 0x45e604a6, + 0x4614d499, 0x277a1e45, 0x1e202730, 0x19312703, 0x1784ced4, 0x43ced459, + 0xced46912, 0xf1510d42, 0x14c6d439, 0x121e44c6, 0xd4994626, 0x5d4e7614, + 0x6dd81dd3, 0x3df251d2, 0x87d499d2, 0xd49946f6, 0x24cf9b8a, 0x9925f49b, + 0x4c1388d3, 0x26c45b20, 0xc4141e38, 0xd4991941, 0xbe46b68a, 0x99fffe6b, + 0xc00788d4, 0x83444586, 0xfffe5ebe, 0xc027051e, 0xd4210027, 0xd431c42e, + 0x991404ce, 0x458614d4, 0xf2030d07, 0x6d9ef50e, 0xdc25fd03, 0xd499d035, + 0x9b462689, 0x4586284f, 0xf2030d07, 0x279ef50e, 0xf093fffc, 0xc100d480, + 0x1f9b3c02, 0x223f9b23, 0x422b4307, 0x32074008, 0x432b4107, 0xc11341c8, + 0x411b3c04, 0x087248e4, 0xfce84ebe, 0x695e0626, 0x214f9b08, 0x8bbc03c1, + 0x5d4ff643, 0x86d49908, 0x2764d2c1, 0x27410031, 0x05249930, 0x342a3347, + 0x22062499, 0x99f09343, 0x015efd9b, 0x14d49907, 0x009a4ff6, 0xd49dd319, + 0x7ed189ef, 0x991a33c4, 0x45661924, 0x3a274127, 0x1eefd49d, 0x7cd4990e, + 0x11474496, 0x031e3027, 0xd39d3503, 0x28d18d22, 0x4de0de03, 0x033d0701, + 0x070193dd, 0x7f3ce32d, 0x237f2ce3, 0x014f73de, 0x3c033419, 0xf932c280, + 0x0765cc27, 0x034d073d, 0x014de03e, 0x4ab84e03, 0x012c0701, 0x05c12341, + 0x03440331, 0x07f29834, 0x032d070d, 0x0e03182c, 0x07014ab8, 0x0b69be1d, + 0x44d2c1fd, 0x41273027, 0x0484dcbd, 0x0485d3bd, 0x9da0d2c5, 0xd39d14d4, + 0x80d2c516, 0x9b1162c4, 0x4127243f, 0x5325f49b, 0xd39d1f3c, 0xd6071ef5, + 0x1ea02764, 0x243f9b2f, 0xf49b4127, 0x1a30cc25, 0x0328af9b, 0x21acf4a1, + 0x62c4076c, 0x28bf9b17, 0xbcd0b103, 0x5d5e1021, 0x74da9907, 0xdb996224, + 0x27031e75, 0xf7da9db0, 0xc0f8db9d, 0x4c270c62, 0xcbd49d10, 0xd49d40a7, + 0x039d07ca, 0x0701bc9d, 0xff1c2709, 0xbe202c27, 0x07ffecbd, 0xdc2d032d, + 0x07f23501, 0xff1c2702, 0xbe202c27, 0x20ffeca9, 0x5662e461, 0xb95d1e01, + 0x360484d4, 0x070d0747, 0xb80e031d, 0x1d03014a, 0x54be0486, 0x4127fd05, + 0x0484d4bd, 0x09071d07, 0x04861d03, 0xa0be2a07, 0x3f9bffec, 0x9b412724, + 0x30cc25f4, 0x070d070f, 0xbe2a0719, 0xf6fd00f0, 0xc106d80f, 0x2a0780d3, + 0x18070907, 0x00071dbe, 0x0100d0d5, 0x00fb0ff6, 0x0706b35e, 0xb8ce03cd, + 0xf231014a, 0x19070c07, 0x4b073a07, 0x0009a7be, 0x27243f9b, 0x25f49b41, + 0x070f30cc, 0x0719070d, 0x00aabe2a, 0x920ff6fd, 0x243f9b06, 0xf49b4127, + 0x0f30cc25, 0x0d07f131, 0x91be2b07, 0x0ff6fd00, 0xd3c10679, 0x072a0780, + 0xbe090718, 0xd50006be, 0xc10100d0, 0xf03180d3, 0x18072b07, 0x0006adbe, + 0x0100d4d1, 0x0104d0d5, 0x06424fe6, 0x063e01f8, 0x01dcd1b9, 0x41070c07, + 0xd49d4153, 0x06c9beca, 0x9d0f6b00, 0x0ce0cbd0, 0x99062310, 0x4626f5d4, + 0x01dcd1b9, 0xb7be0c07, 0xd09dfd04, 0xb9531ef2, 0xc401dcd2, 0x4d073c83, + 0x010c4d03, 0x19070c07, 0x4dbe3327, 0xd4990007, 0xb94b06ef, 0x0701dcd2, + 0x2c4d034d, 0x070c0701, 0xbe312719, 0x07000734, 0xdcd2b94d, 0x070c0701, + 0x03322719, 0x1e016c4d, 0x074d070d, 0x0719070c, 0x2c4d0338, 0x0712be01, + 0x86d49900, 0xc65e41c4, 0x03bd0767, 0x014ab8be, 0x0b072d07, 0x2d031907, + 0x1dbe0204, 0xc0070008, 0x1e1462c4, 0x273d0719, 0x4027102c, 0x020434d5, + 0xf2a83403, 0x3d07c027, 0x1e102c27, 0x07f13116, 0x030b072d, 0xbe02442d, + 0x330007f0, 0xc0ab100c, 0x40270b1e, 0x024434d5, 0xf2a83403, 0x01acdcd5, + 0x0200dcd5, 0xd3c14027, 0xffd4bd74, 0x003fd801, 0x11ffff00, 0x0d030d07, + 0x10270284, 0x02002d27, 0xfd2b39be, 0x8676d499, 0x99614044, 0x41e477d4, + 0x62e400e8, 0x2f9b00e4, 0xf4f20528, 0x99051f28, 0x4027ecd3, 0x3516f415, + 0xf3253127, 0x4f9b0e1e, 0x0948f428, 0x27f41505, 0x11f42543, 0x832783f4, + 0xab443347, 0xffd4bd42, 0x27ad0701, 0xf7ac9970, 0x27071707, 0x24331533, + 0xc1035027, 0xf275f165, 0x9900855e, 0x412486d4, 0x031ef271, 0x250bf261, + 0x2d032333, 0x2d0b0284, 0xe027b027, 0x2111e2c0, 0x2e3ec2f3, 0x2724bf9b, + 0x1fbc5341, 0x8625f49b, 0x291f9bb8, 0x07293f9b, 0x804c0341, 0x01004df4, + 0x4307049c, 0x07804c03, 0x004dd003, 0x8d5e1a01, 0x27b02704, 0x27e49641, + 0x871f0740, 0x01410b44, 0x3b112744, 0xc4002714, 0x990d801c, 0x41270623, + 0x34ab4e3b, 0x0706239d, 0x7d4e0b42, 0x03411d40, 0x99e3c4e1, 0xfcf85103, + 0xd4b9ff7b, 0x424401ba, 0xa1037103, 0xff5772e4, 0xe477d499, 0xc4008342, + 0xd4997f62, 0x033d0786, 0x4402843d, 0x03cd0741, 0x1e0304cd, 0x03cd0707, + 0x070384cd, 0x554c27ad, 0x4ab8ae03, 0xffd4bd01, 0x070a0701, 0xbe280719, + 0x31fd02c7, 0x070a07f1, 0xbe3c0728, 0x99fd02bb, 0x4bc6efd4, 0xbd03bd07, + 0x0a070284, 0x21271907, 0xa4be3b07, 0xcd07fd02, 0x0384cd03, 0x2127f131, + 0x0a073c07, 0xfd0292be, 0x19070a07, 0x22273b07, 0xfd0286be, 0x0a07f131, + 0x22273c07, 0xfd027abe, 0x3fe6f351, 0xd499018c, 0x5041e414, 0x27bd0701, + 0x4cbe0340, 0x1d07014c, 0x0716d49d, 0xb81e030b, 0xfebe014a, 0xd459fd03, + 0x4f9b4846, 0x9b412724, 0x3f9b25f4, 0x25f49b24, 0x00ee30ec, 0x0716d49d, + 0xbe10270b, 0x5efd052d, 0x3f9b00e0, 0x9b412724, 0x30ec25f4, 0xd49d00d4, + 0x27702716, 0x27902740, 0x9ba02780, 0xc7f428cf, 0xc3c00354, 0xc0c45431, + 0xc2d411c1, 0xc0761e1e, 0xc5d04cc5, 0x59c6c037, 0x02be691e, 0x0103fff9, + 0x0b071007, 0xfd081dbe, 0x1f9b1d1e, 0xbe0b0728, 0x1efd0542, 0xf8e7be12, + 0x9b0103ff, 0x1007282f, 0xacbe0b07, 0xa127fd05, 0xf603135e, 0x9b03077f, + 0x0b07281f, 0xfd04e6be, 0x015e7127, 0xf59ff603, 0xf146e002, 0xbe0b0702, + 0x27fd03b4, 0x02ee5e91, 0x02e28ff6, 0x07281f9b, 0x048fbe0b, 0x5e8127fd, + 0xff1e02dc, 0x91e0a104, 0xd1e102cc, 0xd9014c64, 0x014c54d4, 0x44871339, + 0xd2e1438b, 0x46014c4c, 0x27131945, 0xab433b41, 0x6cd4d924, 0x3127014c, + 0x343b4103, 0x41034207, 0x0b07432e, 0xfd059bbe, 0x4c64d1e1, 0x54d2d901, + 0x1339014c, 0x438b4287, 0x0b0745b6, 0xfd05cdbe, 0xd49d4127, 0x16d49916, + 0xd3e14d06, 0xe1014c50, 0x014c4cd4, 0xd4c543eb, 0x59361ea0, 0x9b4586d4, + 0x4227244f, 0x1e25f49b, 0x243f9b28, 0xf49b4127, 0x1d30cc25, 0xf428cf9b, + 0x000243c7, 0xbec304c1, 0x07fff805, 0x1042234c, 0x9bc60443, 0xc0d6284f, + 0x86edd499, 0x9b654645, 0x3330283f, 0x27021f5e, 0x64d4c133, 0x99eed39d, + 0xd2990544, 0x33340778, 0x2b444733, 0x294f9b34, 0x2f6b240b, 0xfa333c03, + 0x2701fb32, 0x7ad39940, 0xbdf6d29d, 0xbd01b0d4, 0xbd01fcd4, 0xbd01fdd4, + 0x9d01fed4, 0xd4bdfbd4, 0x3a2601b1, 0xf4283f9b, 0x9d01d333, 0xd3bdfbd3, + 0x31c001fc, 0x294f9b1f, 0x01fdd4bd, 0xbd294f9b, 0xb901fed4, 0xb901fed1, + 0xbd01fdd4, 0xbd01b0d1, 0x9901b1d4, 0x34d679d3, 0x0e1eb027, 0x2724bf9b, + 0x432b204c, 0xf39bb45b, 0x81f09325, 0x02c100cd, 0x231f9b3c, 0x07223f9b, + 0x08422b43, 0x07320740, 0xc8432b41, 0x04c11341, 0xe4411b3c, 0xbe017348, + 0x26fce14f, 0x016a5e06, 0xc1214f9b, 0x438bbc03, 0x015e4ff6, 0xe014d499, + 0x2700ef42, 0xefd39940, 0x04a6d4bd, 0x8626d489, 0x50444734, 0x9302014d, + 0xfd94adf0, 0xfc8fc6be, 0x9901335e, 0x45865ed4, 0x277bd499, 0x5e44e6c1, + 0xc0270124, 0x2786d399, 0xd465484c, 0x75d4d39d, 0x27c506d3, 0x6501284d, + 0xf3d499d4, 0x21204cd8, 0x067bd499, 0x64d3c147, 0xd49d4227, 0x6134a18e, + 0xe34303d3, 0x65340b43, 0x27061ed3, 0x8ed49d41, 0x897bd299, 0xd45984d3, + 0x8d8fd29d, 0x44c69cd3, 0x0d1e3027, 0x01bad4b9, 0x42043127, 0x32133027, + 0xd39dd439, 0x86302720, 0x99312744, 0xd39d16d4, 0xd9462624, 0x014c6dd4, + 0xd4994546, 0x9d45a33e, 0x0d073ed4, 0x0c031d07, 0x181c038c, 0xbe482c27, + 0xf6fc9575, 0x07009c0f, 0xf37abe0d, 0xc1c5e6fc, 0x4127bcd3, 0x2746349d, + 0x0ef49b40, 0x03bcd4c1, 0xd4c5484c, 0xad402760, 0x2701b8d4, 0x14d49d42, + 0x89b8d489, 0xf141bad3, 0xd1c5439b, 0x5541c2c4, 0xd4993027, 0x08d3d57b, + 0xc8d39d01, 0xd2c148e6, 0x68d3c164, 0x0760d1c1, 0x034b070d, 0xbe04a80d, + 0x41000484, 0x60d4c1f2, 0x4319420b, 0x0108d4d5, 0x07c8d39d, 0xfa0ebe0d, + 0x2603c4fc, 0x04a6d4b9, 0xd4bd4616, 0xf44104a6, 0x41274516, 0x04a6d4bd, + 0x0e1e0327, 0x0a1e0127, 0x061e0427, 0x9c5e4c07, 0x8ef203fc, 0x000000f5, + 0x00110421, 0x04d21344, 0x0b040709, 0x071218fe, 0x4efe0b04, 0x99d007fd, + 0x010730d4, 0x132734d6, 0xd499211e, 0x0c1c2731, 0x2e19191e, 0x4e072103, + 0x4d0b4433, 0xce854499, 0x4e470d41, 0x0103041d, 0x3407051e, 0xf3083103, + 0xfc4efd8e, 0xc307d107, 0x30272103, 0x291e1027, 0xec070419, 0xe45b4153, + 0x5c114c14, 0x1d40a7e1, 0x27121e04, 0xc4413b41, 0x414709d3, 0xe43bed07, + 0x34ab4e07, 0x01031103, 0x07d6f2f0, 0x4efc8e03, 0x993007fc, 0x0d61080c, + 0x94221cf4, 0x53210700, 0x33e20721, 0x99e00be4, 0x4ce086e4, 0x07008210, + 0x51c3c404, 0xd4114e06, 0x2412d221, 0xe4c12407, 0x8ce3c188, 0x142b1207, + 0x432b4207, 0x100c3027, 0x400c1013, 0x141a4013, 0x3f6b3127, 0x31c40a44, + 0x8e0b2752, 0xc4d459fc, 0xe499144a, 0x334ad885, 0x273045d8, 0x27348601, + 0x8e031300, 0x85e499fc, 0x121e37e6, 0x42d44623, 0x3342072a, 0x0b11d844, + 0x4499430b, 0x104adc85, 0x430b091e, 0xdc854499, 0x0c270a45, 0x27fc8e10, + 0x27fc8e07, 0x27fc8e06, 0xfc8e100c, 0x0000007f, 0xffffff80, 0xfffffc00, + 0x000003ff, 0x00000100, 0xf123f54e, 0x00619007, 0xd407f125, 0xb3071307, + 0xad7ec207, 0x99f015fe, 0x53240895, 0x071e1b07, 0x11831c07, 0xc1531103, + 0xcc03c433, 0x0b090784, 0xfe8e7e0c, 0xb3446007, 0x05103c27, 0x27061ef3, + 0xf405204c, 0x33c33b07, 0x8d07fa21, 0xf3357027, 0x441d53c4, 0x27ac19b3, + 0x071d1ed3, 0x53f32147, 0x19430b41, 0x07713c4c, 0x310d1edb, 0x19091efd, + 0x83dc07ac, 0x24d103d1, 0x0027ffcc, 0x5300925e, 0x07c433c1, 0x844c034c, + 0x040b0907, 0xc90b1d07, 0x99fe2f7e, 0x4d8b85c4, 0xce6f4fc6, 0xfd116c06, + 0xd02b1607, 0xdc48102b, 0x41f45380, 0x1e4d01ff, 0x80df2c0d, 0x53ffffff, + 0x01ff37f3, 0x801c483d, 0xff2af453, 0x0d1e4101, 0xff801f2c, 0xf353ffff, + 0x3101ff20, 0x0c530107, 0x73010b1f, 0x13000c01, 0x000d0300, 0x5a30be40, + 0x030d9bfd, 0x0673200c, 0xfc000f2c, 0xf453ffff, 0x121efefc, 0x04000dc8, + 0xf5f3530f, 0x1e3001fe, 0xf1f45307, 0x014001fe, 0x03800df3, 0x03820371, + 0x3573eea1, 0x8ef103ff, 0x000000f5, 0xffffff80, 0xa007f54e, 0x61070061, + 0xc2071327, 0x07fd8b7e, 0x27bc0770, 0x27902780, 0x46077f5c, 0x4d19490b, + 0xdc50d153, 0x05402712, 0x07561eb4, 0x0344334d, 0x0a07844c, 0x1327040b, + 0x07fd5f7e, 0x28c02bc7, 0xc50780cc, 0xcf2c0c1e, 0xffffff80, 0x01aef413, + 0x0bd4334c, 0x85d499da, 0x4127435c, 0x84ab493b, 0x0c530c07, 0x730c0b1f, + 0x13000c01, 0x031c0700, 0xbe40000d, 0x33fd597a, 0xcfab100c, 0xbc05c0ab, + 0xb4039103, 0x93109cc4, 0xf58e0807, 0x0999f54e, 0x61d00708, 0x07f22300, + 0x07190781, 0x076307a2, 0xfcf67e54, 0x1b07b007, 0x7d070d07, 0x99437c03, + 0x68be30dc, 0x2707fcf8, 0x1f07200b, 0x32074007, 0x03101c03, 0x19071e41, + 0x031e1d3e, 0xa8312311, 0x2b4c07f4, 0x0a410340, 0x27c5d6c0, 0x19091e41, + 0x1d210323, 0xa8110313, 0x1293c4f4, 0x0000bfc0, 0x070b8000, 0x0711231b, + 0xf821be0d, 0x072707fc, 0x2b200b4c, 0x07410340, 0x0a1f0732, 0x27c5d6c0, + 0x19091e41, 0x1d31033e, 0xa811031e, 0x1e0103f4, 0x1d231907, 0x23110313, + 0x07f0a821, 0x03cd077f, 0xcc03107c, 0x3393c454, 0x2f071807, 0x0d073027, + 0x07fc6a7e, 0x072c0710, 0x7e31270d, 0x2707fc5f, 0xb0071a07, 0x0d073027, + 0x07fc527e, 0x072c0710, 0x2b31270d, 0xfc457eb8, 0x3027351e, 0x2f071807, + 0xb4be0d07, 0x1007fcf9, 0x31272c07, 0xa8be0d07, 0xb007fcf9, 0x30272707, + 0x0d071a07, 0xfcf99abe, 0x2c071007, 0x31270d07, 0x8cbeb82b, 0xd007fcf9, + 0xd2d0da2b, 0x15dbce18, 0x1a070807, 0x83be2d07, 0x0556fd21, 0xae39a419, + 0xae1da43d, 0x1b070807, 0xffbe2607, 0x0a07fcf9, 0x25071d07, 0xfcf9f5be, + 0xf58ef203, 0xd007f54e, 0x81070019, 0x1407f123, 0x02c90ff6, 0x15053499, + 0x23d325d2, 0x3022a143, 0x1e302743, 0x0a33890a, 0x3202319b, 0x3fab3207, + 0x23d8d32d, 0x0b23e309, 0x05402728, 0x99d12124, 0x12990414, 0x1941c405, + 0x44234207, 0x991242d4, 0x45860814, 0x44a1d411, 0xd435432b, 0xd335031e, + 0x014123e0, 0x21c02454, 0x1922d472, 0x25c01c1e, 0x1a25d00d, 0x025f26e4, + 0x4d5e3027, 0x27e02702, 0x022a5e10, 0x995e3027, 0x1e102700, 0x2718074a, + 0x01e35e30, 0x21032c1d, 0xe307d421, 0x40894b0b, 0xdae10b08, 0xd4110a03, + 0x44a13103, 0x03e6e4ca, 0x03100b11, 0x99d421c1, 0x4cda0444, 0xa1d41112, + 0x0b41c244, 0x210b2807, 0xbc473027, 0xd411cb1e, 0x41e244a1, 0xc0270203, + 0xd421dc1e, 0x4099d311, 0x16328904, 0xc0070103, 0x03143b89, 0x53e02721, + 0x3c211ec1, 0x1e3027e1, 0x073c0703, 0x0318074b, 0x1d0b1e41, 0x03310313, + 0x27300e11, 0x03f49830, 0xf08107e1, 0xc05edef2, 0x04cc9901, 0x2c1d3103, + 0x2807d411, 0x230b44a1, 0x34cadc21, 0x04c999ed, 0xd321661e, 0xc947d411, + 0x4b89c30b, 0x08ca8914, 0x0a071b07, 0xfd570cbe, 0x1b076007, 0xfcbe0a07, + 0xcc89fd56, 0x07700718, 0xbe0c071b, 0x07fd56f5, 0x071b07a0, 0x56e5be0c, + 0xab6fabfd, 0xabafab7f, 0x1e10270f, 0x89d41119, 0x4e9b1444, 0x380b340b, + 0x3207391d, 0x2103370b, 0x03eb30d2, 0x0be10711, 0x27ae3ae6, 0x23ec1e20, + 0xff9fc491, 0x93ffffff, 0x1101365e, 0xa1d321d4, 0x083e9942, 0x89144a89, + 0x21031640, 0x051e3027, 0x141d4127, 0x130b1807, 0xf2983103, 0xc007d329, + 0x4e47ba07, 0xbe2b0123, 0xf305ce2b, 0xb1533127, 0x342bc153, 0xf0255407, + 0x0e074a07, 0x1b074123, 0x01232c07, 0x6b075123, 0x90277c07, 0xf435f315, + 0x32075d1e, 0x310b3a9b, 0x3419380b, 0x40274144, 0x9103341d, 0xce0e00cc, + 0x14861e61, 0xe5071123, 0x101e6107, 0xb1ce0666, 0x02f3310f, 0x11110331, + 0x27b107fe, 0xcc281e00, 0x72ce0ee0, 0x2324861e, 0x07f01121, 0x66101e72, + 0x0fc2cee6, 0x4202f421, 0x05072103, 0xe027c207, 0x100b051e, 0xf3012e0b, + 0x1ea093ca, 0x21d4317b, 0x994342dc, 0x1c1d08cc, 0xc499081e, 0x1d411308, + 0x03310314, 0xa1d41111, 0xe234ca44, 0xd4315a1e, 0x21143389, 0x0c4ec2dc, + 0xcc99329b, 0x1d300b08, 0x990c1e3c, 0x329b08c4, 0x4113300b, 0xe103341d, + 0xd3112103, 0xda163489, 0x1103d524, 0x4489d411, 0x2441d214, 0x20270107, + 0xe71e080b, 0x4431d421, 0x4419430b, 0x241d3103, 0x2807d411, 0x230b44a1, + 0x1eea34ca, 0x27ff1e03, 0x03d41d41, 0x4ef58ef1, 0x3bcf5bf0, 0x4efe2bdf, + 0xbe0f07fc, 0x0effd164, 0x0bf00efc, 0x004f27ff, 0x29100790, 0x004f2743, + 0x291007a0, 0xfc3d1044, 0x10ff1e03, 0x1e03fc4d, 0x2b0307ff, 0x03000c04, + 0x2703fc0d, 0x27010c41, 0x0b040740, 0x07fc4efe, 0x5644bec0, 0xff1ea7fd, + 0xc239fd4f, 0x41271301, 0x42ab433b, 0x4027c43d, 0xc50ef49b, 0xfc8e3814, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0xff011bc0, 0x0004d228, 0x00000200, 0x000001de, + 0x00000001, 0x00000000, 0xff011bcc, 0x0004d230, 0x00000200, 0x000001de, + 0x00000001, 0x00000000, 0xff011ba8, 0x0004d238, 0x00000008, 0x00000007, + 0x00000001, 0x00000000, 0xff011bb4, 0x0004d240, 0x00000008, 0x00000007, + 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x03020100, + 0x11100504, 0x15141312, 0x23222120, 0x31302524, 0x35343332, 0x43424140, + 0x50454544, 0x53525251, 0x55555454, 0x61616060, 0x62626261, 0x63636363, + 0x63636363, 0x63636363, 0x63636363, 0x03020100, 0x11100504, 0x15141312, + 0x23222120, 0x31302524, 0x35343332, 0x43424140, 0x51504544, 0x55545352, + 0x63626160, 0x71706564, 0x75747372, 0x83828180, 0x0489fd4e, 0xe40d89e8, + 0x4fab410b, 0x99e8048d, 0x4d2be70e, 0x1fab1407, 0x3ea7eaa6, 0xc1fdefff, + 0x1e2bcc34, 0x11e04cd8, 0x076615d0, 0xe8432723, 0xcc23c1f4, 0xf6e03cdc, + 0x4d0b4e07, 0x039d3027, 0xe4048de7, 0xffff3ea7, 0x9634adfe, 0x0718061f, + 0x3915d441, 0x9ddc01c1, 0x2407e704, 0xe4cfeea7, 0x9e0489fd, 0x40484f8b, + 0x01c5f2b0, 0xc1fd8edc, 0x0389bc04, 0x03410bec, 0xe4050c4c, 0x3027e315, + 0x35a00489, 0xf0140be3, 0xdf1ed8f2, 0xc51e4427, 0xfd4efd8e, 0x1f6b1007, + 0xdf03d187, 0x0004d324, 0x3f9b0853, 0x93d40110, 0x00d713f2, 0x432b2e51, + 0xe19dd405, 0x12249908, 0x4fff3ea7, 0x09e49dfd, 0xe44d2449, 0x69082499, + 0x0b321121, 0x05e46d41, 0x2707f6e2, 0x0ef49b40, 0xff8b0007, 0x30274027, + 0xe39de405, 0x102f9b08, 0x420bd401, 0xfd8ed405, 0x42734007, 0xf4e84103, + 0xfa4ee31e, 0xc0e60499, 0x14071343, 0x00e342e0, 0xf62244c0, 0xc1014c4f, + 0x471ea402, 0xefff4ea7, 0xc043c1fd, 0xa2e03cfc, 0x9d442700, 0x0489e604, + 0xe0048dc0, 0xefff4ea7, 0x9c43c1fd, 0x18e03cfc, 0xc0038901, 0x049d4027, + 0xc4038dca, 0xffff4ea7, 0x9243adfe, 0xa402c11f, 0x27a20489, 0xc5240b10, + 0x04c1a402, 0x1242c2a8, 0x0ba20e89, 0x07e402e2, 0xd004c1e4, 0xe3c24301, + 0xe6049953, 0x144e2027, 0x4ea73127, 0xc5fdcfff, 0x029d7043, 0x3a13c4e6, + 0x8b9e0489, 0x3240cc4f, 0x89c00c89, 0x0ec1e001, 0xffdea7a4, 0x04c1fde4, + 0xec0389b8, 0x4c034e0b, 0x15d4050c, 0x033107d3, 0xa0028931, 0x13074027, + 0x1fabd435, 0xc1cee20b, 0x99fa8ede, 0x4ff6cc04, 0x018900a2, 0xc00389a0, + 0x210b210b, 0x412b4207, 0x4eca3103, 0xc0038df6, 0xffff4ea7, 0x9043adfe, + 0xff3ea71f, 0x34a9feff, 0x0b891f94, 0xc40389c0, 0x4f8b4b1b, 0x61114ccc, + 0x07a40ec1, 0x9fcea713, 0xac27fde5, 0x8fdea70c, 0x04c1fde5, 0x054e0bb8, + 0x07ca15c4, 0x0f4c8341, 0x44333487, 0x2027432b, 0x4e23c235, 0x05fee2dc, + 0x07da15d4, 0x89410341, 0x1407a003, 0x1fabd235, 0xb1cee30b, 0xe60499ce, + 0x23271327, 0x99ff295e, 0x1427e604, 0x1f5e2427, 0x6b2407ff, 0xff245e2f, + 0x27e60499, 0x5e222712, 0x3ea7ff0e, 0x11d07fff, 0x57e4e234, 0x5e3e25ff, + 0x0000fef9, 0x0004d554, 0x0004d2f0, 0xff010668, 0x0000ffff, 0x0004d200, + 0xff0102d8, 0xff0102e8, 0x0004d208, 0xff0102e0, 0xff0104a8, 0x0004d210, + 0xff010678, 0xd007f54e, 0xd7edf193, 0xe9f09300, 0x2d0700cf, 0x0ce3f3e3, + 0x7f1ce37f, 0xc5f82c03, 0xf1c530f0, 0xa7f2a534, 0xffffff4e, 0x0a1443d1, + 0x0cf93fe6, 0x6fff3ea7, 0xa33411fd, 0x3415104c, 0xd3d6fe93, 0x331ea700, + 0x1401fefd, 0xe211e301, 0x41e8432b, 0x20e80d67, 0x42070d0f, 0x36333207, + 0x430b4433, 0x4487422b, 0xa14f1c27, 0x184e23f3, 0x2107fee4, 0x11234e01, + 0x44033e05, 0xf2983403, 0xd396f293, 0x11240100, 0x93410322, 0x00d38bf3, + 0x34052103, 0x41233215, 0x0d8f21ec, 0x4ea73301, 0x15fefd33, 0x89212743, + 0xd3a9fad1, 0x4ea701a8, 0xc5fdcfff, 0x312b6442, 0x23f8d199, 0x98d38d31, + 0x1bb61183, 0x0160d3d1, 0xce9dd499, 0x31e41e34, 0xf4930c6a, 0x9300d33c, + 0x00d32ffe, 0xe1054115, 0x4105e115, 0x0160d1b9, 0x079dd19d, 0xf932be0d, + 0x30f3c1fc, 0x1934f2c1, 0x803c0334, 0x89f632c2, 0xd4b998db, 0xd1b901ad, + 0xb43b0191, 0x0c0e14f0, 0x016cd7a9, 0x37071423, 0x1403313b, 0x03072b07, + 0x0fab2fab, 0x402b4207, 0xd6b94fab, 0xd48d0166, 0xda6ae09e, 0xe84f8b0c, + 0x270bdc40, 0xf0c12790, 0x230bc914, 0x5b0b0714, 0xa7140301, 0xfee01f3e, + 0x016adaa9, 0xd3a9d355, 0x40270104, 0x81272027, 0xd29da123, 0x0cd49d08, + 0xd44dd40d, 0xd89dd06d, 0x12d38d09, 0xd2b9ea87, 0xa10301ac, 0x0b7614f0, + 0x41073c07, 0x4423370b, 0x6ae0343b, 0x043b0cad, 0xd49d302b, 0x0732020b, + 0x87345b32, 0x2b2e0713, 0x03212313, 0xa7230b11, 0x23430702, 0x9dd22d41, + 0x41e80ad4, 0x0f6b0c80, 0x2d073123, 0x030d209d, 0x0bf3c021, 0x0df0534d, + 0x0d419dfe, 0x4b050401, 0x032c4c03, 0x044fc4b1, 0xf30004d6, 0xa9f9d499, + 0x070100d2, 0x83412334, 0x33330f4c, 0x00274333, 0x3e23a29b, 0x23fffef4, + 0xfffef44e, 0xdeb91247, 0xd3c5015b, 0xd0d4c5d4, 0xc5a2d18d, 0xd09da8da, + 0xa0d28dcd, 0xe6ccd09d, 0xa70acfef, 0xfeffff4e, 0x014143b9, 0x0ac23fe6, + 0xa7fad489, 0xdfffff3e, 0x01a8d2a9, 0xc5bcd3c5, 0x4103b8d3, 0x4127422e, + 0x99ccd49d, 0x4438f8d4, 0xd49d4127, 0x273027cd, 0xdcd3c540, 0xc5e6d49d, + 0xd3c5a4d3, 0xacd3c5b0, 0xc5b4d3c5, 0x0d07d8d3, 0x27fbe97e, 0x0000004f, + 0x90d3b980, 0xf0d4c501, 0x0b6b36e0, 0x89f6d489, 0x432bf4d3, 0x47334783, + 0x00004fa3, 0xd4c58000, 0x45f353f0, 0xf9f193fd, 0xf29300d1, 0x0100d220, + 0xc1f79335, 0xf11500d1, 0xd499f205, 0xd84fe609, 0x90d2b903, 0x08d49901, + 0x2f6b2423, 0x423bf485, 0x14873407, 0x312b3433, 0x342bdc49, 0xb9f4d189, + 0x870191d4, 0x033c07a3, 0x04d550af, 0x0b323b00, 0x4146e01c, 0x81ae4907, + 0x0da305f0, 0x0a709d73, 0x7c4d7e2d, 0x07f6d499, 0x83340b20, 0x9d432737, + 0x739d0c74, 0xf0d3c10b, 0x830f1c83, 0xab418723, 0x4524ab23, 0x0ad49972, + 0x2da3402e, 0x72450440, 0xd2a97409, 0x4f8b016e, 0x242b4433, 0x27412c10, + 0x7429402c, 0x0170d3a9, 0x44334f8b, 0x342b2703, 0x3c102353, 0x403c2741, + 0x33533703, 0x74412123, 0x31232783, 0x37832b33, 0x3c3324ab, 0x8123ab14, + 0xf67245f1, 0x8904ad1f, 0x4207ead2, 0x4ce24123, 0x1ea704a5, 0xa9feffff, + 0x891f9214, 0xc103c8d3, 0x4fab432b, 0x0720c4ca, 0x110d27b1, 0xfa5c7e64, + 0xbf7e0d07, 0x92b4a9fa, 0xc8d3891f, 0x4fab432b, 0x89e74cc2, 0xfe93ead2, + 0x0100d098, 0x03d349e4, 0xeae40541, 0x2704fe32, 0x0c749d41, 0x0fe6f081, + 0x74990507, 0xc043e40c, 0x60d4d102, 0x0041e001, 0xf6f18105, 0xa70aa51f, + 0xfef457be, 0xf89afc93, 0x01c211ff, 0x012101c3, 0x2b231134, 0xa541e841, + 0xa730e80a, 0x0b33870a, 0x7534013b, 0xe640e8f3, 0x11fe930a, 0xaa8900d1, + 0x60e4d108, 0x087a8d01, 0x022141e0, 0xf193f071, 0x0100d044, 0x41f2930e, + 0x4e0700d0, 0x4a331001, 0x4c532101, 0xf9040b1a, 0x03fb2c43, 0x19140b00, + 0x33141902, 0x43ab103c, 0x42ab2833, 0xedf87465, 0x05c91000, 0x0f001f27, + 0xee180200, 0xa3800000, 0x0000001f, 0x93730920, 0x00d0b3f0, 0x04898307, + 0x038f8bc8, 0x53ce0781, 0x83480bcb, 0xc1830f4c, 0xf3452407, 0x3c333c07, + 0x2924331b, 0xab448770, 0x07242b13, 0x556207a0, 0x89a18371, 0x6e230879, + 0xe6fee2dc, 0x0706e22f, 0x0c2c2326, 0xf393f235, 0x1900cfb1, 0xe6f35533, + 0x0704ee3f, 0x544f034a, 0xb50004d2, 0x254119f4, 0xe61ceef1, 0xc9cff604, + 0xeaafe606, 0x79f39306, 0x322900cf, 0x4f8b4007, 0x04e541e8, 0x3fe6f351, + 0x41e00549, 0xf09306f0, 0x1900cf70, 0xca4fe604, 0x070a0706, 0xc301834c, + 0x3340cb41, 0x07f13144, 0x213f6b34, 0xffbd2711, 0x65b33bff, 0x5b1b8bf1, + 0xe604c613, 0x9302d2cf, 0x00cffbf4, 0xeaea4489, 0x53074a84, 0x01fabbf3, + 0x61057638, 0x25f493f0, 0x400500cf, 0xbfabb107, 0xcf0ef093, 0x29030900, + 0xf6f04104, 0x2704d70f, 0x07ffff2d, 0x27420732, 0x0e012760, 0x27002739, + 0x27490e31, 0x27430730, 0x27290e31, 0x0e212730, 0x07202719, 0x190c3312, + 0x331a4c33, 0x1c33183c, 0x0e89ee1b, 0xab202702, 0xab43ab40, 0xab42ab41, + 0xd8748546, 0x0e0400ed, 0xcec6f393, 0xc6341900, 0xff9d2744, 0xe6f451ff, + 0x07042f4f, 0xe611831a, 0x9305331f, 0x00cea1f2, 0xce9ef493, 0x09230900, + 0x89f09344, 0xf29300ce, 0x2d00ce88, 0x2d230d0b, 0x93040d29, 0x00ce8bf0, + 0x0419f2b1, 0x4fe62c1d, 0xf33104f9, 0x44334107, 0x4f6b3221, 0xffff3da7, + 0x345b0907, 0x328b043b, 0xf2314007, 0x242543ab, 0x1546c596, 0xffff4de3, + 0x242549ab, 0x4c334e07, 0x1d4c5315, 0x03e443e0, 0x04ae44f4, 0x04d74fe6, + 0x811942c4, 0x12ec3374, 0x0aaa4da3, 0x0000ee83, 0x854eabc0, 0x11f47174, + 0xd1749544, 0xe00160d4, 0x7102e341, 0x01f281f1, 0x53148714, 0x2ff61a1c, + 0xf3930293, 0x11fff62c, 0x01343130, 0x0b031102, 0x05310b21, 0x93031502, + 0xfff617f1, 0x079843fa, 0x13011451, 0x44874103, 0x4205430b, 0x41271341, + 0x34f53387, 0xff023060, 0xe00c7499, 0xa7029e43, 0xebffff3e, 0x41dc3421, + 0x27c30716, 0x27c43541, 0x4f7e0f0c, 0x354027f7, 0xd8c321c4, 0xfe93ee31, + 0xd100ce6c, 0xe40160e4, 0x99013d41, 0xd4d10c52, 0x4fe60160, 0x282600a7, + 0xffff2ea7, 0xe824d1fe, 0x75f1931d, 0x130100cd, 0x24d54103, 0x31231de8, + 0x40271305, 0x990c549d, 0x4ff609d4, 0xf211016e, 0x660c2499, 0x60d4d148, + 0x9947b601, 0x22990b24, 0x0b44470a, 0xf9c40742, 0x011f9843, 0x68ce23ff, + 0x3ff6fee0, 0x749906b4, 0xa842f00c, 0xfdfe9305, 0xe4d100cd, 0x41c00160, + 0xa7735121, 0xebffff2e, 0x74612355, 0x73712465, 0x74812375, 0x913824c5, + 0x3c23c573, 0x24c574a1, 0x93724140, 0x00ccfbf0, 0x4ea70301, 0x45ebffff, + 0x5431c842, 0xf1114507, 0xf715f501, 0xf1057407, 0xe6fb495e, 0x99ff7a2f, + 0x53990b54, 0x0b44470a, 0xfd312743, 0x011f9843, 0xa74127ff, 0xfdcfff0e, + 0x997004c5, 0x375e0c52, 0x06f251ff, 0xf6c4d625, 0x27fdecaf, 0x0000002f, + 0xfde55e10, 0x10270d07, 0x27f5b77e, 0x89f4e843, 0xd489e4d3, 0xed43cee8, + 0x89ead089, 0xd389f6d4, 0x6ad1a9c8, 0xe2d28901, 0x400b310b, 0xd38d4103, + 0x9ed389c8, 0x41e3200b, 0x8de2d28d, 0x3f8bf6d4, 0xf84d30ec, 0x0bf4d489, + 0xf4d48d40, 0x27f8425e, 0x5effff8d, 0x5299fd48, 0xc323e40c, 0xff4ea7fe, + 0x5399ebff, 0x4841c10a, 0xf60b5499, 0x8700a33f, 0x6841f544, 0x5eff010b, + 0xd289fea6, 0x8f21e4ea, 0xf6f381fb, 0xa7fb893f, 0xfeffff1e, 0x1f9214a9, + 0x2bc8d389, 0xea4fab43, 0x07fb75c4, 0x110d27b1, 0xf5b07e64, 0x137e0d07, + 0x92b4a9f6, 0xc8d3891f, 0x4fab432b, 0x5ee74cc2, 0xd209fb53, 0x12eed129, + 0x4207060c, 0x4d0b4383, 0x4b0d4399, 0xc8230b3f, 0x12daf120, 0x073207ee, + 0x53338342, 0x9dd44d42, 0xd20d08d3, 0x160a7299, 0xead48927, 0x41237349, + 0x890d43d2, 0xd1899ed4, 0xe84f8be2, 0x99042b40, 0x42ee0ad4, 0x0d07fe4a, + 0xb57e1127, 0xfe405ef4, 0x41f54487, 0xff010b88, 0x99fe055e, 0xd36908d4, + 0x0b9ad289, 0xf824e243, 0xf6f081fa, 0x07fafd0f, 0xf5887e0d, 0xa7faf55e, + 0x8d302740, 0xf37508a4, 0x93fb285e, 0xfff3b3f2, 0x24312011, 0x02010311, + 0x210b310b, 0x03150205, 0xf39ef193, 0x0d34d2ff, 0x240b1421, 0x4027232b, + 0x02050415, 0x13011451, 0x44874103, 0x4205430b, 0x41271341, 0x34f53387, + 0xff023060, 0xe40c7499, 0x99fd6643, 0x30279cd4, 0x31274486, 0x6b0a7a99, + 0x954a073f, 0x874433f3, 0x2b432b3a, 0x87f3914a, 0x50cf03c4, 0xc60004d5, + 0x21aff634, 0x27c43105, 0x27449630, 0x07c44131, 0xe66f6b63, 0xe601ac4f, + 0x0701506f, 0x14bc03ba, 0xab478b07, 0xce618333, 0x100084f1, 0x0d27ff02, + 0xefe6100b, 0xc1510129, 0x53184c33, 0x1ff01d4c, 0x10000000, 0xc981052d, + 0x9ff64413, 0x4ff605f9, 0x4f7e00dc, 0x07d01ef4, 0x544f034a, 0xb50004d2, + 0x47f1b1f4, 0xe911194a, 0x04d24c42, 0x25400700, 0xec4f8bf1, 0x51fb1f41, + 0x1e4fe6f4, 0xff1d2702, 0x078107ff, 0xfb6a5eb1, 0x4a47f3b1, 0xd24c4bed, + 0x3c1d0004, 0xd25049ed, 0xf3310004, 0x4c334e07, 0x53392515, 0x43e41d4c, + 0x7481fc20, 0x8312ec33, 0xc00000ee, 0x0aff4da3, 0xfe714eab, 0xee117485, + 0x7e95f071, 0x70a50021, 0x27fc225e, 0x000fff1f, 0xfa385e02, 0x6c33f621, + 0xfb2f5e1d, 0xbe5e1383, 0xe9f193f8, 0x148900ca, 0x21f331ea, 0x5248e231, + 0x07682101, 0x47bfabb1, 0x5044e94a, 0x070004d2, 0xfaf75e34, 0x43334b07, + 0x44f1ce61, 0xff021000, 0xc151eda6, 0x00001ff0, 0x04571000, 0x81184c33, + 0x1d4c53c9, 0x9ff64413, 0x4be60581, 0xa433c4a1, 0x1808a4f5, 0xc489ff02, + 0x07c25126, 0x6b35333b, 0x0032f54f, 0x33ff0218, 0x3ef5104c, 0xff021804, + 0x00004fa3, 0x3e230400, 0x35fde800, 0x31c34134, 0x27430bc4, 0x45c43530, + 0xf6f391c3, 0x31fbd23f, 0x354123c4, 0xfbc95ec4, 0xfb7148f4, 0x4fa37481, + 0x40000000, 0x645e7485, 0x0f1ff6fb, 0x2dcff6ff, 0xff085efb, 0xc972f093, + 0x6bf29300, 0x0b0d00c9, 0xe05e290d, 0x80ecf8fa, 0x748100fc, 0x4fa37351, + 0x40000555, 0xf0003f83, 0x7485fdff, 0x2c5e7355, 0x9ba1e0fb, 0x65a1f401, + 0xd1f05301, 0xd1f153f4, 0xd1f253f4, 0x010b01f4, 0xe6290118, 0x01012f6f, + 0x11b40183, 0x3034eeb2, 0xe8420703, 0x07039140, 0x87353334, 0x07342b44, + 0x03390b4c, 0x2727104c, 0x34033001, 0x44034005, 0xb401f2a8, 0xb4054103, + 0xb3118415, 0x3c833103, 0x27b3150f, 0xa7ba0741, 0xfdcfff2e, 0xc514bc03, + 0xab476424, 0xfed66fe6, 0x83338b07, 0xa7fdf15e, 0xfee2271e, 0x1f5ef135, + 0xff8d27f9, 0xfead5eff, 0xf1933027, 0x1900c8c4, 0x4c32e914, 0xe60004d2, + 0xe6f9334f, 0xf6f92fcf, 0x93f92baf, 0x00c8a7f3, 0x215e3209, 0x1e3227f9, + 0x21f331da, 0xe6a4c631, 0x93fc26cf, 0x00c94ff0, 0xe2ea0489, 0x21fc1a48, + 0xf9625e68, 0xf910cfe6, 0xffff1d27, 0x555e8107, 0xff1d27f9, 0x078107ff, + 0xfe555eb1, 0x4c334e07, 0x1e4c531c, 0xecf87495, 0xe000a940, 0x09025b42, + 0x8b002774, 0x2741084f, 0x27742901, 0x084f8b20, 0x07212741, 0x81300740, + 0x1a3c3371, 0xab194c33, 0xab320743, 0x1b3c3314, 0x13ab208b, 0xab182c33, + 0x51718512, 0x12ec3374, 0x3fa33107, 0x40000aaa, 0x0000ee83, 0xa33eabc0, + 0x0000004f, 0x85745501, 0xf9e15e73, 0xb4018301, 0x34eeb211, 0x4207032c, + 0xffff4fe0, 0xfe4bffff, 0x21fece5e, 0x5b8b8b68, 0xf8b75e83, 0x0017a2c0, + 0x93ff1ea3, 0x00c793fb, 0xf98f8ea7, 0xc79ea7fe, 0x985efef7, 0x6df053fe, + 0x49f153f3, 0x69f253f3, 0x010b01f3, 0x5e290118, 0x7181fe83, 0xf3538e1e, + 0xf453f348, 0xfe53f348, 0x3b01f348, 0xe9014801, 0x27fe6a5e, 0xfa855e20, + 0x310b3103, 0x07e0d489, 0x2bcfabc3, 0xec4f8b4c, 0x07fbc641, 0xf17c7e0d, + 0x2be0d489, 0xc84f8b4c, 0x7299f241, 0xfbb15e0a, 0xc5fcd4c1, 0xd4c5bcd4, + 0xf55b5eb8, 0x412b4427, 0x243b3707, 0xd49d302b, 0x9832e20b, 0x5e3207f4, + 0x4427f493, 0x0b07412b, 0x385e043b, 0x279027f4, 0xf4255ec0, 0x016cd7a9, + 0x412b4427, 0x347b3707, 0xa7f3f35e, 0xfd6fff3e, 0x4ce33411, 0x5e341510, + 0xf093f308, 0x11ffef54, 0xddf29304, 0xfe9300c6, 0x05ffef60, 0x11211521, + 0x6df093e3, 0x4115ffef, 0x02114105, 0x31053115, 0x21052115, 0x27f37f5e, + 0x0bf49b40, 0xa70ef49b, 0xfdcfffbe, 0xaea79107, 0x27feffff, 0x4cb4c548, + 0xa3bd3227, 0xc0271ffb, 0x270efc9b, 0x68b4c541, 0x577e0527, 0xbd4027f0, + 0x9b1ffba4, 0xbcc50efc, 0x6cbcc54c, 0xc672f093, 0x01940100, 0x2b021103, + 0xa7410c43, 0xa320ec20, 0xa7c11ef2, 0xf2985e20, 0x3ea74827, 0xc5fdcfff, + 0x0c274c34, 0xf01c7e12, 0x4ea73027, 0xc5fdcfff, 0x43c54c43, 0xe6c4196c, + 0x1ef92d4f, 0x04d4d1dc, 0xead38901, 0x438b4183, 0x4fa34733, 0x80000000, + 0x5ef0d4c5, 0x1421f495, 0x240bfe81, 0x0e15232b, 0x5d5e0205, 0x2b3047f8, + 0xab420723, 0x9ed48d4f, 0x40e84f8b, 0x0103fef9, 0xcfabc007, 0x185e9127, + 0x2b4203f3, 0x15340542, 0xf26a5e31, 0x8c5e4027, 0x539ff6f3, 0x47043bf3, + 0x0cd89d33, 0xd89d302b, 0x0732020b, 0x032e0732, 0x27012721, 0xf3535e13, + 0x71851027, 0xa7fdd65e, 0xfcd15e40, 0xd49d4027, 0xfa125e09, 0xc8dafe93, + 0x23e43100, 0x5ee43541, 0xfc93f80f, 0x11ffee14, 0x01c301c2, 0xa7340121, + 0xfeec57be, 0x2311412b, 0xf55f41ec, 0x30ec30a7, 0x4827f55d, 0xcfff2ea7, + 0x4c24c5fd, 0x437e0827, 0xa74027ef, 0xfdcfff3e, 0xc54c34c5, 0x2a5e6c34, + 0x932e07f5, 0xfd7a78f0, 0xfd1487be, 0x4827ff1e, 0xcfff3ea7, 0x4c34c5fd, + 0x177e0b27, 0xa74027ef, 0xfdcfffee, 0xc54ce4c5, 0x445e6ce4, 0xf6f481fc, + 0x5300924f, 0x01f0effe, 0xb5fc93eb, 0xc211ffed, 0x2101c301, 0x23113401, + 0x410c412b, 0x30c830a7, 0x33430754, 0x0b343346, 0x093b0b34, 0x01c11130, + 0x03131112, 0x05310321, 0x31131512, 0x0d34d2c4, 0x240bc421, 0x4027232b, + 0x12051415, 0xc301c451, 0x44874103, 0x4205430b, 0x4127c341, 0x34f53387, + 0xff023060, 0x9908a08d, 0x4fe69cd4, 0xa08df4ad, 0xf4a75e34, 0x1ea74827, + 0xc5fdcfff, 0x0a274c14, 0x27ee817e, 0xff2ea740, 0x24c5fdcf, 0x6c24c54c, + 0x93ff7d5e, 0xffed43fc, 0xf717bea7, 0xff705efe, 0xd55e40a7, 0x0b42f0fc, + 0x07c4a1fa, 0xf504330a, 0x02180804, 0x26c489ff, 0x2b07c351, 0x4f6b2533, + 0x180023f5, 0x1207ff02, 0xa3104c33, 0x0000004f, 0x042ef504, 0x23ff0218, + 0xfde8001e, 0xc3a11435, 0x0ef5e30b, 0xff021808, 0x7126c489, 0xf54f6bc3, + 0x02180023, 0x104c33ff, 0x180429f5, 0x4fa3ff02, 0x04000000, 0xb65e1435, + 0x9e42d4fa, 0x00fabc5e, 0xff011bc0, 0x0004f488, 0x00000200, 0x000001de, + 0x00000001, 0x00000001, 0xff011bcc, 0x0004f490, 0x00000200, 0x000001de, + 0x00000001, 0x00000001, 0xff011ba8, 0x0004f498, 0x00000008, 0x00000007, + 0x00000001, 0x00000001, 0xff011bb4, 0x0004f4a0, 0x00000008, 0x00000007, + 0x00000001, 0x00000001, 0x4007fb4e, 0x6b174c53, 0x07c0074f, 0xc0d027b1, + 0x0741ff4c, 0xff3e8330, 0x4ba67fff, 0x0c230407, 0x1f0ccc77, 0x003ea32f, + 0x13078000, 0x01e82027, 0x4c23008c, 0x6940c897, 0xe43be307, 0xd03bd107, + 0x2d074e07, 0x49333e07, 0x73172c53, 0x24ab173c, 0x272831c8, 0x27fb8e00, + 0x773c2720, 0x07574c27, 0x07d47bd2, 0x07e37be2, 0x072d074e, 0x5349333e, + 0x3c73172c, 0xcc24ab17, 0x3536da31, 0xba602fd4, 0xc8d10ccc, 0xffffff3f, + 0x3fc0caff, 0xffffffff, 0x07b2051f, 0x21c0cc42, 0x01274013, 0xfb8eb405, + 0x2b204c27, 0x5be20740, 0xabe03b34, 0xd08e1ee3, 0x0000002f, 0xda1e9e80, + 0xfb8e0127, 0x30133007, 0x4c234307, 0x9840cc20, 0x2b204c27, 0x07020743, + 0x5b043bd1, 0x1ed0abd3, 0x930a968b, 0xfffef3f0, 0x21010211, 0x11032311, + 0x21053103, 0x04312315, 0x512243da, 0x03030104, 0x0b448741, 0x41410543, + 0x87412703, 0x6034f533, 0x0bff0230, 0xd9f093fe, 0xcd1efffe, 0x140b0421, + 0x4027132b, 0x21052415, 0xf84ed21e, 0xf005f0a3, 0x8207f009, 0x93070f8b, + 0x64bef115, 0xc007fd2e, 0x0f8bf049, 0xfd2e5abe, 0x0c071007, 0xfd2c17be, + 0xf029b007, 0x0f8bab07, 0xfd2e46be, 0xf069c007, 0x3cbe0f8b, 0x1007fd2e, + 0xf9be0c07, 0xdf27fd2b, 0x44800000, 0x1d07c007, 0xbc070b07, 0xfd2fddbe, + 0x272201c8, 0x071907d0, 0xfe7e7e0b, 0x1807c007, 0x757e0a07, 0xb60c8bfe, + 0x93042708, 0xfd776ff1, 0xfd14959e, 0x0c071d07, 0xafbed027, 0x0108fd2f, + 0x4d07d127, 0xd40741c3, 0xca1edf6b, 0x83dbdfc6, 0x4ef88ef0, 0xff4ea7fc, + 0x4ed1fdef, 0xd1070118, 0x8918ec33, 0x0389b602, 0x1dec53b2, 0xcea7d103, + 0x22fde39f, 0xf0e41432, 0xfc8e03fd, 0x07bc0489, 0xc2122b14, 0x04893b42, + 0x071402c0, 0xcc04c114, 0x0bdc0389, 0x05230b24, 0x89c115c2, 0x0389c002, + 0xb20489b6, 0x420b320b, 0x8dc80189, 0x048db603, 0x271103b2, 0xb6028940, + 0x35b20389, 0xc8018dc4, 0x41034e07, 0xef6be407, 0xfe4eaa1e, 0x02bc04a9, + 0x13534926, 0x0e893107, 0xd402c1c8, 0x24113fab, 0x1fab1407, 0x42f813c2, + 0x0e1027e1, 0xff655efe, 0x1fab1e2b, 0x5c5efe0e, 0x03fe8eff, 0x05331c0c, + 0x180001f5, 0x02f5ff02, 0xff021804, 0x0e234027, 0x35fde800, 0x4efe0b04, + 0x0dfe93f7, 0xe49900e4, 0x07f423a9, 0xce4fe671, 0x27b12700, 0x9007208c, + 0x9403a007, 0xc027d027, 0xf624ac03, 0x0700b3cf, 0x332c0709, 0x0b4f0725, + 0x07102724, 0x0b400738, 0x03441941, 0x224c1411, 0xf4cc4df9, 0x2d1d0004, + 0xf3402b0b, 0xc2c4c103, 0xff3ea7d3, 0x3421e7ff, 0x074f42dc, 0x13dc27c3, + 0x4fff0ea7, 0x103f9bfd, 0x5154e4c1, 0xc5432be2, 0x2d9d54e4, 0x12e49908, + 0x4909249d, 0x4d0111e4, 0x08e49924, 0x2105e369, 0x246d430b, 0xf4e84327, + 0x40273027, 0x249d2305, 0x103f9b08, 0x2154e4c1, 0xc5340bc2, 0x22d854e3, + 0x87df07bd, 0x03ef0717, 0xe40140dc, 0x14f50427, 0xff18002c, 0x40072727, + 0x43014e0b, 0x13f50403, 0xff18002c, 0xec03f278, 0xdfedce20, 0xf78ef403, + 0x4e5e0a07, 0x27b227ff, 0x335e108c, 0x1e0389ff, 0xe326f493, 0x20028900, + 0x41a93103, 0x21030210, 0x24333433, 0x021244a9, 0x271913c2, 0x2024ca30, + 0x012924ce, 0x002f2704, 0xab100000, 0x0532ab34, 0xcefe0b03, 0x3f272613, + 0x04000000, 0x01e242c2, 0xab202704, 0x0532ab34, 0x01fe0b03, 0x002f2704, + 0xab300000, 0x0532ab34, 0x27fe0b03, 0x0000003f, 0x4ebb1e0c, 0x3ed007fd, + 0xbdf49395, 0x43d100e2, 0x34d80290, 0x25402721, 0x27d415d4, 0x20d38940, + 0xd435d465, 0xd455d445, 0xd4013576, 0x00004ea3, 0x8ed40504, 0x2540a7fd, + 0x1ed415d4, 0x89f293df, 0x24d100e2, 0x41c001e4, 0xa8249935, 0x038949e6, + 0x9a248920, 0x892543c2, 0x23a91e04, 0x41230120, 0x4c83430b, 0x3324870f, + 0xf9422b44, 0x011d2843, 0x013546ff, 0x004da304, 0x0b040502, 0xff1f5efe, + 0xc107fc4e, 0xcf6bd007, 0xe38ef093, 0x00ad7e00, 0x2ea7c7a6, 0xa9feffff, + 0xa9014223, 0xce014424, 0x30277834, 0x1ffc23bd, 0xf49b4027, 0x6b1d070e, + 0x0301871f, 0x04f4f80f, 0x9bd85300, 0x0401103f, 0xe206f293, 0x2b2e5100, + 0x9d040543, 0x249908e1, 0xff3ea712, 0xe49dfd4f, 0x4d244909, 0x082499e4, + 0x32112169, 0xe46d410b, 0xdcf6e205, 0xf49b4027, 0x8b00070e, 0x272027ff, + 0x08e49d40, 0x3f9be205, 0x0b040110, 0x06040543, 0xff3ea7c6, 0x32bdfeff, + 0x40271ffc, 0x8e0ef49b, 0xbd3227fc, 0x271ffc23, 0x0ef49b40, 0x4ea73127, + 0xc5fdcfff, 0x7e5e6843, 0x734d07ff, 0xe8410342, 0x4ebb1ef4, 0x250499f9, + 0x4fe6c007, 0x1ea700a5, 0xd1fddfff, 0xe601c014, 0xd100944f, 0x71020c13, + 0xd1032502, 0x99021014, 0x0435270d, 0x021413d1, 0x03454027, 0x01a811d1, + 0xffff3ea7, 0x9d210bff, 0x02752504, 0x34b9d123, 0xdc830108, 0x68d4ee0f, + 0x27d33301, 0x20c38940, 0x010cd4f5, 0x2ea7ff00, 0x56ffffff, 0x0124b93e, + 0xff4ce001, 0x24b90131, 0xb4070101, 0x4b07db07, 0xd5334733, 0xde23d40b, + 0x07fff73c, 0x2720274d, 0x4205283c, 0xf3c84403, 0xd2c1c451, 0x61d40550, + 0xff4ea7c1, 0xd1c5fd4f, 0x33430164, 0x23ab103c, 0x1e50d2c5, 0x8e00271c, + 0x8e0127f9, 0x0124b9f9, 0x07d40701, 0x33d533b4, 0x23d40b47, 0xfff73cde, + 0x2d071c07, 0x2c031803, 0x01032794, 0x03130124, 0x05430b14, 0x88240324, + 0xffaea7f0, 0xae81fd4f, 0xffff9ea7, 0xd1a091fe, 0xd1012894, 0x33013093, + 0xc1e33303, 0xd1c154d2, 0x1b301b5c, 0x0b240b4e, 0x3090d513, 0x289ed501, + 0x54d2c501, 0x715cd1c5, 0x70d4c1c3, 0x0b50d2c1, 0x70d4c543, 0x0127a301, + 0x02ab033b, 0xc522c499, 0x4c5650d0, 0x9920c189, 0x110329c4, 0x992ac399, + 0x143b28c2, 0x2506132b, 0x1da31153, 0xc4998000, 0x27c39926, 0x92a94833, + 0x43ab0144, 0xab101c33, 0xff3ea741, 0x2103ffff, 0x010834d5, 0x92ad0127, + 0xf98e0144, 0x1b07a401, 0xab144c33, 0x50d0c504, 0xf6be0c07, 0x30a7fd00, + 0xffff4ea7, 0x0143bdff, 0x27a21e01, 0x03e8070e, 0xad7e1027, 0x4b0ea7fd, + 0x56befff7, 0xb007fd96, 0xa7e900c8, 0xffffff4e, 0x010140bd, 0x07febf5e, + 0x060d27b3, 0x7e102764, 0xb4b9fd88, 0x4dee0108, 0xee1efe89, 0xc007f84e, + 0xdfffbea7, 0x108c27fd, 0xdfb6fd93, 0x0c9c2700, 0x4fffaea7, 0xc5471efd, + 0x2f9b30b8, 0x38d4c110, 0x422bd351, 0x9d38d4c5, 0xd4990839, 0x09349d12, + 0xa111d449, 0xd499344d, 0x05d26908, 0x6d420b31, 0x9b402734, 0x00070ef4, + 0x349dff8b, 0x9b300508, 0xd3c1104f, 0x30b0c538, 0xd4c5430b, 0x7e0c0738, + 0x0fc6fdd3, 0x4ef88eb3, 0xffcea7fc, 0x4c27fdcf, 0x50c4c510, 0x017e1f6b, + 0xc54027fd, 0xc4c550c4, 0x4efc8e70, 0x96c107fb, 0x97bea709, 0xfd93fef9, + 0x11fff870, 0x01d301d2, 0x11340121, 0xc8412b23, 0x30c81e41, 0x3343071f, + 0x0b343346, 0x053b0b34, 0xa7fb8ec3, 0xfef717be, 0xf85efd93, 0xa7d51eff, + 0x27e01e30, 0x10270e0c, 0xc81e9e3e, 0xfc93fb4e, 0x0700def0, 0xffdea7bc, + 0xbd03e7ff, 0xd3210150, 0x40273158, 0xfb8ed435, 0x02b6c4b9, 0x10270b27, + 0xb90c4c38, 0x7602d0c4, 0x35412745, 0xfc7a7ed4, 0x0b07dd1e, 0x1efef77e, + 0xa7fc4ed6, 0xfeffff4e, 0x1f9043a9, 0x011804a9, 0x2bfc0ec1, 0xc83f8b34, + 0x01d11631, 0x1ec20100, 0xf802890f, 0x04ad4103, 0xe20b0118, 0xc55ef3f0, + 0x4ea7fc0e, 0xd1fdefff, 0xc1013001, 0xe1c2d044, 0x184c334a, 0xd41d4c53, + 0xd4274144, 0xcea7d42b, 0xd1fde4bf, 0xc2013404, 0x04d11941, 0x03a90110, + 0x410b014a, 0x02a9430b, 0xc405014c, 0x4027c215, 0x04a9c435, 0x03890140, + 0x0b4103f8, 0x4004ad13, 0x3001d501, 0xf0e10201, 0xfc8ecafd, 0xa9a11ec2, + 0x1e011804, 0xa9fd4e90, 0x07017e04, 0xc61f6b12, 0x4ea77b4f, 0xd1fdefff, + 0x8901244d, 0xdc33c603, 0xca048918, 0x2b1ddc53, 0xc402893d, 0x11c3430b, + 0x0bd803c1, 0x894fab21, 0x0e89b801, 0x8d3415b4, 0x048dc402, 0x47e1c2ca, + 0x0489dcd6, 0x2741c2bc, 0x03892407, 0x02212bc0, 0xc1230723, 0x0389d004, + 0x0b140bdc, 0x6f4ea713, 0x4105fde3, 0x01894215, 0xb40e89b8, 0x04894d35, + 0x072e07c0, 0x0bd12731, 0x8d340b24, 0x028db803, 0xc60d8db4, 0xdfabfd8e, + 0x1ec60d8d, 0xa9f74ef8, 0xa7014809, 0xfdefff8e, 0x7907910b, 0x07ad7fab, + 0xaea70148, 0xc1fde48f, 0x03b9dc8c, 0xcc330146, 0x1dcc5318, 0x04a93c2b, + 0x35060142, 0x04ad430b, 0x34070142, 0x43073c0b, 0x47ce4fab, 0x4dc4d462, + 0x4907e307, 0x432b3103, 0xbfabb407, 0xb30bd427, 0x01d1dc2b, 0x04d10138, + 0xc103013c, 0xd11941c2, 0xa9011404, 0x0b014a03, 0xa9430b41, 0x05014c02, + 0x27a215a4, 0x89a43540, 0xe103f804, 0x04d5410b, 0x4e070138, 0xbece4fab, + 0xc7fdf016, 0x0cbd471b, 0x4fab0146, 0x270c45d0, 0x5ef4e843, 0x0cbdff7b, + 0x4ea70146, 0xa9feffff, 0xa91f9643, 0x07014202, 0xfc422b43, 0xe980004d, + 0xa7820700, 0xfdefff4e, 0xb9f441c1, 0x33012304, 0x1c53181c, 0xa9412b1d, + 0x66011e02, 0xa7240b47, 0xfeffff4e, 0x1f9442ad, 0x011e02ad, 0x4ea73127, + 0xc5fdcfff, 0x32076c43, 0x4307310b, 0x47ce4fab, 0x5814d45b, 0xe103e307, + 0xd9079e2b, 0xc107dfab, 0xd103e123, 0xe43faea7, 0x0c9c27fd, 0xe42fbea7, + 0x834e07fd, 0x34870f4c, 0x432b4433, 0x010c01d1, 0xe2dc4e23, 0x1003d1fe, + 0x03a40501, 0x15310bc1, 0x352027a9, 0x15b305a2, 0xf80489b9, 0x410bb235, + 0x010c04d5, 0xfdf0e103, 0xa91c0748, 0xbd011a02, 0xce012301, 0x0ca94128, + 0x2cce011e, 0x0401d13a, 0xf80d8901, 0x012c0ed1, 0x7fffbea7, 0x072103d0, + 0x2504b932, 0x0b3fab01, 0x8623071d, 0x05b10544, 0xce380ee1, 0x03ade8c3, + 0x01d5011a, 0xf78e0104, 0xff7fc4e4, 0xf78eb41e, 0x185e8307, 0x000000ff, + 0x0004f4f0, 0x0004f4bc, 0x00aafafa, 0x00ffffff, 0x00ccffcc, 0xff011dd8, + 0xf423f54e, 0xd0072f07, 0x10272403, 0x4a273a27, 0x31232105, 0xf4b82403, + 0x1d031d07, 0xf3350150, 0xf1c5f325, 0x14d4b93c, 0x99de4902, 0x442308d1, + 0xdb694f6b, 0xa1077e07, 0xd889743b, 0x0ba43b98, 0x9ad089b1, 0x74863127, + 0xb43b3027, 0x27103c33, 0x27780e21, 0xa39a0720, 0xab20009d, 0x112c3393, + 0x0b0e4127, 0x92ab4027, 0x270f4c33, 0x27780e31, 0x3394ab30, 0x41270e3c, + 0x40270b0e, 0x4c3393ab, 0x26f19d0e, 0x8d20fe8d, 0xfb8d22f7, 0x27fa9d24, + 0xac5694ab, 0xc123c807, 0xce07ce02, 0xffff2ea7, 0x9224a9fe, 0x20d3a91f, + 0xab432b01, 0x25c4ca4f, 0x0c271027, 0xfbc17e16, 0x5e7e0d07, 0xff3ea7fc, + 0x34a9feff, 0xd3a91f92, 0x432b0120, 0x4cc24fab, 0x98d889e0, 0x044a7fe6, + 0xf489a576, 0xa344c624, 0xd108009d, 0x86013cd4, 0x30d4b945, 0xee412302, + 0xe203994a, 0xe603a487, 0x890666af, 0x3bee9ad3, 0xd4d1066b, 0x41c001e4, + 0xc0d3d120, 0x22f48902, 0x0b27f299, 0x47478343, 0xf9420b44, 0x011f9843, + 0xba31e4ff, 0x9ad38908, 0x06453bee, 0x089e7fe6, 0xfeb6f053, 0x4a070501, + 0x01e453d1, 0x41b94d0b, 0x31c002cc, 0x1cac035a, 0x33333a07, 0x100034f1, + 0xac23ff02, 0xe04cd81c, 0x27230711, 0xf1f4e843, 0x02100023, 0xe03cdcff, + 0xf2aff6f3, 0x71fe9304, 0xe011fff3, 0x0201e431, 0x210b0311, 0x0205310b, + 0x43fa0315, 0xe4510889, 0x4103e301, 0x430b4487, 0xe3414205, 0x33874127, + 0x306034f5, 0xd4d1ff02, 0x41e001e4, 0xafe605e9, 0xfc93048b, 0xa7fff34c, + 0xfeec57be, 0xc301c211, 0x34012101, 0x412b2311, 0x048b41e8, 0x048d30e8, + 0x01e4d4d1, 0x6b0b6387, 0x013541c0, 0xc0d2d164, 0x534a3302, 0xf49d1a4c, + 0x0b630128, 0x53338772, 0xf39d1a3c, 0x07ad0b29, 0xcca3bd47, 0x9d478302, + 0x63012af4, 0xf49d4027, 0x003dfc2b, 0xd1072f08, 0x1501e454, 0x8a41e0f9, + 0xbdf29305, 0x249900d9, 0x0d4fe6a8, 0x27f89903, 0x992bf799, 0x8ff62af4, + 0x448706f0, 0x0b684bf1, 0x54a9ff01, 0xf3890120, 0x83430b22, 0xc4070f4c, + 0x4487c433, 0xce23c42b, 0xe6fee2dc, 0x2705d27f, 0x24f48930, 0x4234f3b5, + 0xf4b54127, 0x40e86401, 0xf35305d4, 0xf493fd88, 0x0100d928, 0x38f4c53a, + 0x4ff6a419, 0xf489055f, 0xd34ff622, 0x71f05306, 0xb10901fd, 0xbe2fe6f2, + 0x6df35306, 0xd13a01fd, 0xf8029054, 0x93056344, 0x00d90bf6, 0xc2996e01, + 0x24cfe007, 0x6fff011d, 0x230c0705, 0xf4110c0c, 0x39333707, 0xf41543ab, + 0xfa35f925, 0x33040499, 0x4183102c, 0x07184c33, 0xab42ab3b, 0x4543ab3f, + 0x06c399f4, 0x9905c499, 0x3c830601, 0x3f4c833f, 0x9928f299, 0x4c330500, + 0xab36330c, 0x3f2c8334, 0xab3f1c83, 0x121c3332, 0x333f0c83, 0xf4c1180c, + 0xab31ab38, 0x8df09330, 0x420900d8, 0x48470001, 0xfe65f355, 0x42edf075, + 0x0004f4c8, 0x013481e0, 0x01307fe6, 0x01328ff6, 0xd876f493, 0x994b0d00, + 0xbd8307c3, 0xba53cc00, 0x07333ce3, 0x9d43ab4b, 0xf19907c4, 0x06c19d28, + 0x029054d1, 0x40274458, 0xf425f435, 0x01e4d4d1, 0xf3994140, 0x0ad49926, + 0x044334ee, 0x3627f499, 0x14d4b94f, 0x98d38902, 0xf2894423, 0xc2345b20, + 0xd4a92632, 0xd3a90144, 0x420b0140, 0xcfabc407, 0x3f8b3c2b, 0x071131cc, + 0xf9877e0d, 0x0140d4a9, 0x4f8b4c2b, 0xb9f141c8, 0xd802b6d4, 0x991a0c4c, + 0xf189b1d4, 0x8b412322, 0xb945f641, 0x2602d0d4, 0x98d48945, 0x061714ea, + 0x9926f399, 0x43ce0ad4, 0x22f1892a, 0xc298d489, 0xd4b92141, 0x4cd802b6, + 0xd499120c, 0x8b4123b1, 0xb9455641, 0xf602d0d4, 0x0706314f, 0x7e11270d, + 0xe97efa4d, 0xe6f311f8, 0xa7f22137, 0xe7ffff4e, 0xf0314255, 0xf1414065, + 0xf2514175, 0xf0614285, 0xf1714095, 0xcea741a5, 0x45e7ffff, 0x75d4b9c3, + 0x624ff601, 0x29d20902, 0x6812eed1, 0x83420702, 0x994d0b43, 0x3f4b0d43, + 0x20c8230b, 0xee12daf1, 0x42073207, 0x42533383, 0xd39dd44d, 0x5ed20d08, + 0xc20dfbd5, 0xfed28fe6, 0xd746f493, 0x99410900, 0x3b0707c2, 0xcc00bd83, + 0x53103c33, 0x8331abb8, 0x4b07332c, 0x42ab6305, 0x9907c49d, 0xc29d28f2, + 0x2bf39905, 0x5e04c39d, 0xf489fec0, 0x644fe622, 0x009da3fc, 0x6078ea10, + 0x9ad489fc, 0xcde3c907, 0x4bee0800, 0xf493058f, 0xd100d728, 0x0701e443, + 0xb94d0b4a, 0xc002cc40, 0xac035a31, 0x333a071c, 0x0034f133, 0x23ff0210, + 0x4cd81cac, 0x230711e0, 0xf4e84327, 0x100023f1, 0x3cdcff02, 0xafe6f3e0, + 0xfe930507, 0x11fff014, 0x01e431e1, 0x0b131112, 0x05300b20, 0xfa131512, + 0x51052b43, 0x03e301e4, 0x0b448741, 0x41420543, 0x874127e3, 0x6034f533, + 0x07ff0230, 0x0340270f, 0x15f47504, 0x025f5efc, 0x00009ea3, 0xfbb25e01, + 0xd6a6f093, 0x2004a900, 0x22f38901, 0x0b27fb99, 0x0f4c8343, 0xc4077b47, + 0xf4b071e9, 0x44870004, 0xc42bc433, 0x2330f1c5, 0xfee2dcce, 0xf62af499, + 0x870337bf, 0x6849f144, 0x01ff010b, 0x3740e864, 0x074b8703, 0xbcaf03ab, + 0xc50004f4, 0xa41934f4, 0x037f4ff6, 0xf622f489, 0x5303bb4f, 0x01fa6bf0, + 0x24f48908, 0x039d4fe6, 0xfa62f353, 0x54d13a01, 0x44d80290, 0x24cfe07a, + 0x87ff011d, 0x232c0700, 0xf8250c2c, 0xc499fa35, 0x33390707, 0x3fab104c, + 0xf34534ab, 0x99052299, 0xf39905c4, 0x3f2c8328, 0x333f4c83, 0x4633122c, + 0x3c8342ab, 0x5543ab3f, 0x34f4c1f4, 0x44f11707, 0x0004f4b4, 0xf4c01f03, + 0x12090004, 0x9d83190d, 0xf475cc00, 0xf2654907, 0xc49d4a53, 0x30f0c107, + 0x70ed4027, 0x0004f4c8, 0xc49dc00d, 0x28f19904, 0x5e05c19d, 0xf299fd34, + 0x070b0729, 0x7e228716, 0xcfe4f183, 0xff011d24, 0xf353ff7d, 0x3201f9d0, + 0x93ff795e, 0xffeeabfc, 0xc301c211, 0x34012101, 0xf457bea7, 0x11412bfe, + 0x7941ec23, 0xec30a7fb, 0x27fb7730, 0x7e102709, 0x595ef61f, 0x99fe93fb, + 0xe011ffee, 0x0201e431, 0x210b0311, 0x0205310b, 0x34f20315, 0xe421fb12, + 0x232b240b, 0x04154027, 0x035e0205, 0x3cf0c1fb, 0x09f3ba7e, 0xeed129d2, + 0x27fd9c21, 0x9dbc0740, 0xc42709d4, 0x27f63f7e, 0xb0b44540, 0xf6367efc, + 0x011ad3a9, 0x0148d4a9, 0x071734ce, 0x7e10270d, 0x4327f785, 0xd3a9f4e8, + 0xd4a9011a, 0x43ce0148, 0x14d3b9eb, 0x98d28902, 0x012cdcd1, 0x0120d1a9, + 0x0144d0a9, 0x342340a7, 0x01eedea9, 0x235bc405, 0x020b1e0b, 0x02b6d4b9, + 0x0120d1ad, 0x0144d0ad, 0x4f0c4cd8, 0x02d0d4b9, 0x471e45b6, 0x10270d07, + 0xa27e2127, 0xc4d489f6, 0xcecad289, 0xd4a9ef42, 0x48c602bc, 0x89b6d389, + 0x34cabcd4, 0x891a1e0c, 0xd489b6d3, 0x0e43c2bc, 0x11270d07, 0xa9efc67e, + 0x9602bcd4, 0xcad28941, 0xa7d8d3c1, 0x8d341540, 0xd4d1c4d2, 0xd38902c0, + 0x0b410398, 0x0341e343, 0xc0d4d5f4, 0x07f58e02, 0xf5b77e0d, 0xee9ad389, + 0xf8f999b3, 0xa3f99531, 0x2704009d, 0x030f0740, 0x15f47504, 0x35f425f9, + 0x55f445f4, 0x7ef465f4, 0xc95ef1bd, 0xe454d1fb, 0x27f91501, 0x7a41e460, + 0x070f07fa, 0x7e040316, 0xb15ef16b, 0x22f289fb, 0xfbba2fe6, 0x02c0d4d1, + 0x41233027, 0x4783420b, 0x43fd4447, 0xff011f98, 0x1f9943fd, 0x3127ff01, + 0xcfff4ea7, 0x6c43c5fd, 0xe0fb935e, 0x8901ce41, 0x4ff622f4, 0xf053017b, + 0x0901f810, 0x0fe6f0b1, 0x54d1018a, 0xf1530290, 0x1a01f808, 0xfaa144fc, + 0x0729f299, 0x27228716, 0xefa17e00, 0xd39ef693, 0x996e0100, 0xcfe407c2, + 0xff011d24, 0xf153fa95, 0x1001f7e4, 0x27fa915e, 0x24f48900, 0x4ff6f0b5, + 0x1127fa34, 0xf1b56401, 0xfa3040ec, 0x1f070027, 0x01f45a7e, 0x5df293f0, + 0x039900d3, 0x49f19344, 0x231d00d3, 0x99460499, 0x4c834503, 0x1f3c831f, + 0x43ab4533, 0xf1931309, 0x0500d334, 0x93020914, 0x00d327f1, 0xf77ef453, + 0x0138f1c5, 0x1123ce4a, 0x447e1027, 0x93f401ef, 0x00d30ff2, 0x240d4409, + 0x8e7e0807, 0xf9e25eed, 0x49f14487, 0xff010b88, 0x40ec6401, 0x0b07fccd, + 0xf07e1f07, 0x07f001f3, 0x440299ab, 0xf4bcaf03, 0xa21d0004, 0x99460499, + 0x4c834503, 0x1f3c831f, 0x43ab4533, 0xf3c53b87, 0x03870734, 0x04f4b08f, + 0xc1010900, 0x830934f2, 0xf530f1c5, 0x04f4b424, 0x0b13ce00, 0xd87e1b07, + 0x30f3c1ee, 0x0b07830d, 0x19ed287e, 0x854fe6a4, 0xaf41e0fc, 0x22f48900, + 0x00834ff6, 0xf6eaf453, 0xf4894801, 0x5346d624, 0x01f6e7f3, 0xfc805e3a, + 0x4bf14487, 0xff010b88, 0x09f9115e, 0x30f0c1c4, 0x537004ce, 0x01f6cbf2, + 0xfc645e2a, 0xf49d4127, 0xf8cd5e2b, 0xf6b6f153, 0x465e1801, 0xadf453fc, + 0x5e4a01f6, 0xf153f943, 0x1901f6a4, 0xc1f92e5e, 0xf29338f1, 0x0900d24c, + 0xce242913, 0xf0b15534, 0xf686f453, 0x0ff64901, 0xf2c1fe7a, 0x09c40938, + 0x3634ce23, 0xf67af453, 0x0c5e4a01, 0xc874e9f9, 0xc10004f4, 0x04ce30f0, + 0x5df25333, 0x5e2801f6, 0xf153ff72, 0x1a01f658, 0x27fbf55e, 0x5ea02790, + 0x8027f8e7, 0xe75ea027, 0x41f353fb, 0x5e3a01f6, 0xf353f8d7, 0x3901f638, + 0x53fe235e, 0x01f62ff1, 0xff405e18, 0xf61af153, 0xcb5e1501, 0x7e0d07f7, + 0xe55eed9a, 0x270827f9, 0xf2957e10, 0x93f7245e, 0xffeaf7fe, 0xe431e111, + 0x13111201, 0x300b200b, 0x13151205, 0xfafd34f2, 0x1a15e421, 0x232b240b, + 0xf05e1205, 0x15e421fa, 0x2b240b0a, 0x5e020523, 0x0d07f76e, 0x8e7e2027, + 0xf9c95ef3, 0x240be421, 0x4027232b, 0x12051415, 0xa3faca5e, 0x5e0400cd, + 0x0000fadb, 0x0000004f, 0x00000001, 0x00000000, 0x00020000, 0x07f54e00, + 0x071d07d0, 0x073d072d, 0x03f7234d, 0x0301500d, 0x03017c1d, 0x0302d42d, + 0x03018c3d, 0xc502944d, 0xf1c568f0, 0x58f2c54c, 0xc550f3c5, 0xbea748f4, + 0xd1ffffff, 0xe60a14b4, 0xa709bc4f, 0xfd5fffce, 0x4ca3c411, 0x93c41510, + 0x00d0c7f1, 0xfd330ea7, 0x010401fe, 0x2b121113, 0xf541e843, 0x1220e80b, + 0x0742070c, 0x33363332, 0x2b430b44, 0x7dfc5342, 0x014487ff, 0x184e23c1, + 0xf2c1fee4, 0x40f4c54c, 0x41073407, 0x11233e01, 0x34032e05, 0xf4982403, + 0xd07ef293, 0x11240100, 0x03410323, 0x15240531, 0xec412323, 0x930bc131, + 0x00d067f3, 0xbea73401, 0x25fefd33, 0x7edca9b4, 0x2cd3a901, 0xa7412702, + 0xfdcfffee, 0xc55cfcc5, 0x3c2b64e4, 0xd4b93123, 0xd3ad017c, 0x41f802bc, + 0xd4b9092c, 0x4cf802b6, 0xb9090a0c, 0xe602d0d8, 0xa909488f, 0xa902bcd2, + 0xc50336de, 0xd3b960f2, 0x21030231, 0xc130f3c5, 0xd3b930fb, 0xf26502b8, + 0xd4b92b3b, 0xf2650230, 0x02b9dcb9, 0xf265237b, 0xb934fcc5, 0x610339d1, + 0x35c37bf0, 0x33c13bfe, 0x38d2b944, 0xa5437b03, 0x60fbc1fc, 0x31270433, + 0x0334dca9, 0x313b013b, 0xf395f065, 0xfc25fbb5, 0xf0c13e07, 0x16deb95c, + 0x30dbd102, 0x38fec503, 0xc53cf0c5, 0x4fab64fb, 0x0af32ff6, 0xab07fc91, + 0xa153ac2b, 0xe030fec1, 0x270b61e2, 0x61f07500, 0x2b413bf7, 0x232ff674, + 0x64f9c10b, 0x9c2bfc91, 0x40279153, 0x7ff6f405, 0xd48d08b1, 0xeed78de8, + 0x8be8d489, 0x124f8b3f, 0xa9430743, 0x8d0336db, 0xbf8be8d4, 0x07eed489, + 0x54fbc53b, 0x31734f8b, 0x43074312, 0x89eed48d, 0xd589eedc, 0x64f4c1e8, + 0x0764fec1, 0x9b459b3c, 0x0b01273e, 0x0b013b4a, 0xc51027a3, 0xd4c544fc, + 0xe4dac5e0, 0x156cf0c5, 0x85cd07fd, 0xe6f281f1, 0xc1084a2f, 0xf381e4d8, + 0x34964127, 0xf2614027, 0xf371fe91, 0x347b247b, 0x6e07b207, 0x621bb32b, + 0xf281f3a1, 0xbe2b345b, 0x632b2f6b, 0xa807b32b, 0x08af2fe6, 0x8144f4c1, + 0xc17407f0, 0x7fab54f4, 0x1027407b, 0x9407472b, 0x9df0c19d, 0x9fabf2c1, + 0xd133b8c2, 0x070330d1, 0xbe082b0b, 0xc1fd297d, 0x0f6b64f4, 0xc09d409b, + 0x4a480bf0, 0x2340074b, 0xf0c49d41, 0xc1f0c499, 0x410364fa, 0xa49b4f6b, + 0xc49da80b, 0x994907f0, 0x4f8bf0c3, 0x43074312, 0x942b4f6b, 0xc49db907, + 0xe2bfabf0, 0xe606d56a, 0xd106d1bf, 0x070330d1, 0xbe0a2b06, 0xc1fd292d, + 0x0f6b64f4, 0x4a0b409b, 0x4af2c09d, 0x23400746, 0xf2c49d41, 0x27f2c499, + 0x9d410310, 0x4b07f2c4, 0x8bf2c399, 0x0743124f, 0xf0c29943, 0x720b4f6b, + 0x0bf2c49d, 0x11370774, 0xc13fabf4, 0xfec164fb, 0xea438d6c, 0x07c2beee, + 0x0338d4b9, 0x07ba42e0, 0xf111f081, 0x12030103, 0xf115f085, 0x02e4c103, + 0xd4d1feed, 0x3ea7032c, 0xd5fddfff, 0xd1022c34, 0xc10330d3, 0xcea734f2, + 0xd5fddfff, 0x530230c3, 0x34f2c522, 0xc1e0d2c1, 0xc2d530fb, 0xd3c1023c, + 0xd5f4b1e4, 0xb90240c3, 0xc102b8d2, 0x4b3b34fe, 0x4433e27b, 0xe783425b, + 0x3344f0c1, 0x4d8310ec, 0x5d833fff, 0xfec53fff, 0xff0d8334, 0x33e4ab1f, + 0xced5105c, 0x50ab0234, 0x0238c5d5, 0x99f2d499, 0xf1c1f1d2, 0x38fbc140, + 0x833f4c83, 0x13891f2c, 0xf0de9996, 0x33f3d099, 0x102c3348, 0xb4861127, + 0xfcc11027, 0x8342ab40, 0x317b3fec, 0x0c834eab, 0x89fe311f, 0x0c3394c2, + 0xff3d8318, 0xabf1213f, 0xff2d8340, 0xff0ea73f, 0x3c33fddf, 0xffed8310, + 0x4404d53f, 0x3332ab02, 0x1d8310ec, 0x03d53fff, 0xfe350224, 0xe1abf3b1, + 0x02280ed5, 0x0338d2b9, 0x34864127, 0xfbc14027, 0x184c333c, 0x31272383, + 0x3027b486, 0x3c3342ab, 0xd543ab19, 0xb9022004, 0xc10231d4, 0xd3b960f6, + 0x643b0232, 0x05403ff6, 0x01f0d1a9, 0xc0279027, 0xd2b9e027, 0x24f00215, + 0x242305c0, 0x025b0607, 0xd3a92403, 0x402701ee, 0xd49d3123, 0x4dd40d0c, + 0x88d4a9d4, 0xa73e0b01, 0xfee013be, 0xe027a127, 0xd06ddb55, 0x9d08de9d, + 0xd48d09da, 0xb9338712, 0xf00230db, 0xb9056b24, 0x0b01ead4, 0x3b24231c, + 0x9d4ae012, 0x07023b07, 0x9d402b41, 0x4b020bd2, 0x425b4b07, 0xe2872407, + 0x3123e22b, 0x320be103, 0x420702a7, 0xd32d4123, 0x070ad49d, 0x6c41e814, + 0x6b420707, 0x0741230f, 0x0d309d3d, 0xf4c03103, 0xd5b91d0b, 0x1e9d02cf, + 0x105fe60d, 0x0c61e805, 0x23760705, 0xa4d4a971, 0xe84f8b01, 0x2704df40, + 0x90d4d1c0, 0xf8fc4502, 0xdd01004d, 0xb8d3b904, 0x7b470702, 0x73240743, + 0x07020721, 0x07028334, 0x073283e2, 0x87838714, 0x07340790, 0x83e18302, + 0x47114711, 0x830483ee, 0xd1810b34, 0x0b02fcdc, 0x3333339e, 0x08d1d103, + 0x0b830b03, 0xe327e390, 0x9b4c9b47, 0x33843321, 0x0b840b94, 0x0cd4d192, + 0x00dad103, 0x53cb0703, 0x9bc49bc1, 0x60fec1ab, 0x037fac03, 0xd0a97fcc, + 0xace30320, 0x7fcce37f, 0x02f8d4d1, 0x0304d3d1, 0xae9bce9b, 0xa40b062b, + 0x0b12c30b, 0xf1c10b07, 0x081fe65c, 0x8df25304, 0xb9d1b9fa, 0x272e0102, + 0x726fe640, 0xe6302701, 0xe6015cef, 0x5301546f, 0x01fa77fb, 0x831253b2, + 0xab14ab17, 0xffeea713, 0x12abfddf, 0x01d4e1d5, 0xf041e025, 0x013c0ff6, + 0x01ecd4b9, 0x00914fe6, 0x0290d4d1, 0x01004dd8, 0x9cd4d151, 0xb8d0b901, + 0x14dbd102, 0xc04cd803, 0x73270720, 0x5e20e821, 0x1cd4d106, 0xd1237303, + 0x9b0318d3, 0xff1ea724, 0xc20bfddf, 0x01f413d5, 0x103b1827, 0xafbe0707, + 0x2ea7fd25, 0x27fddfff, 0xd824d544, 0x10d3d101, 0x0bb09b03, 0xbc23d5ab, + 0x27562601, 0x27648641, 0xff3ea740, 0x34d5fddf, 0xf4410198, 0xd4d146c6, + 0x4c58019c, 0xffbea7c0, 0xb9d5fddf, 0xbcd501e4, 0xcea701e8, 0xd5fddfff, + 0xd5019cca, 0xb901acc8, 0x8302b6da, 0xafe60cac, 0xd8b900b1, 0x8fe602d0, + 0xd4d100a9, 0xd3d10284, 0xdcd101c0, 0x4ce001c4, 0xf405d15a, 0x048c5b4c, + 0x04864ff6, 0x89e8d089, 0xde89ead2, 0x894007ee, 0x422becd1, 0x3e07439b, + 0xdfffbea7, 0xd5312bfd, 0x9b0114b4, 0x18b3d53c, 0x2b202b01, 0x1cb3d51e, + 0x1921c801, 0x0324d3a9, 0x0322d4a9, 0x402b302b, 0x32073212, 0x047240e8, + 0x045b43fa, 0x0027c027, 0xa91911c8, 0xa9032ad3, 0x2b0328d4, 0x124e2b3e, + 0xe8310731, 0xfa044e40, 0x27044343, 0x1e402720, 0xac5fe635, 0x5e2027fe, + 0xd4d1fead, 0x41fc01c0, 0x1e5efed1, 0xc33507ff, 0x33318331, 0x885e103c, + 0x22dca9fe, 0x24d0a903, 0x33460703, 0x2b042b44, 0x272027c4, 0xffeea740, + 0xecd5fddf, 0xe0d50150, 0xe2d50158, 0xe4d50144, 0x6fe60148, 0x3027022b, + 0xdfff0ea7, 0xacd4a9fd, 0x6403d502, 0xee42e001, 0xa7732703, 0xfddf231e, + 0x02d0d8b9, 0x5558fbc1, 0x615707f1, 0x06369bb3, 0xd18bc6ac, 0xd10284d4, + 0xd101c0da, 0x8901c4d9, 0xd089e8d3, 0xead189ee, 0x89f4de99, 0xdc99ecd2, + 0x5a4ce0f5, 0x4cf4036a, 0xe601c85b, 0x1e036a4f, 0x9b4007ff, 0x13499b3a, + 0x00401330, 0x31340773, 0x0bf251b4, 0xa824c543, 0xb4018506, 0x2405430b, + 0xf5f87123, 0xd4b90178, 0xd1a9017d, 0x34070184, 0x4c834123, 0xeed2a90f, + 0x33333301, 0x9be02743, 0xf43e2321, 0x4e23fffe, 0x47fffef4, 0xb9b02701, + 0xd501dfdc, 0xd502c4d7, 0xd5012cd3, 0x8d0128d4, 0xd2d5fad0, 0xdebd0100, + 0xdead0125, 0xd18d02cc, 0x24dbbdf8, 0x37cfe601, 0xff4ea701, 0x43b9feff, + 0x3fe60141, 0xdea9012a, 0x4ea7017e, 0x07dfffff, 0x2cd2a93e, 0x14d4d502, + 0x10d4d501, 0xee310301, 0xb903e123, 0x38017cd4, 0xbd412744, 0xb90125d4, + 0x890214d3, 0x402798d0, 0xd2893423, 0x7bd169f8, 0x38d4d503, 0xfcd4c501, + 0x0108d4d5, 0x0104d4d5, 0x010cd4d5, 0x0130d4d5, 0x1fe6029b, 0x400703a1, + 0x0304efe6, 0x0134d4d5, 0x013cd0d5, 0x627e0d07, 0xb6d4b9ea, 0x0c4c3802, + 0x02d0d4b9, 0x02ed4ff6, 0x357e0d07, 0x68f0c1ed, 0x27e93b7e, 0x75d4bd41, + 0x50d3d101, 0x50f4c101, 0x01122c27, 0x05440340, 0xa8340330, 0x88d2d1f2, + 0x7dd1b901, 0x8cd3d101, 0x87dbb902, 0xbcdca901, 0xb8deb902, 0x31d0b902, + 0x7ed4a902, 0x64d2d501, 0x77d1bd01, 0x35f25301, 0x68d3d5f7, 0x76dbbd01, + 0x70dcad01, 0x78debd01, 0x79d0bd01, 0x96211901, 0xb9112744, 0x890230d3, + 0xd2d198d4, 0x439b0154, 0xd3b94433, 0xd4d502cf, 0xf4c1016c, 0x7ad3bd48, + 0x72d1bd01, 0x01382701, 0x0544034b, 0xa824032b, 0xf71c5ef3, 0x02b6dab9, + 0xb403f451, 0xac834403, 0x5ef4550c, 0xd4d1fe1f, 0xdea90180, 0xd4d5017e, + 0xd4d50114, 0xf05e0110, 0xb44ce0fe, 0x4de0fe3d, 0x01b4010e, 0xa9fe325e, + 0x5e0326d3, 0xd489fdd4, 0x5946ee9a, 0xf0d1a903, 0x27902701, 0x5ee127c1, + 0xf253faba, 0x2101f68c, 0xb9f9555e, 0x2701ead4, 0xb9d1b9e1, 0x12d3a902, + 0x18202702, 0x7b212744, 0x07230732, 0xb8d3b946, 0x33210b02, 0xc6242b44, + 0xe3230334, 0x33400723, 0x33422b44, 0x004d8346, 0xfbcf5e03, 0x01c0d4d1, + 0xf3453127, 0xfb2742fc, 0x02fcd8d1, 0x0308d4d1, 0x91739707, 0x879b949b, + 0x07fb645e, 0xfaf75e76, 0x422b4427, 0x2107cb07, 0xd49d202b, 0xe2c43b0b, + 0x07faa52c, 0xfaa05e2c, 0x422b4427, 0x043b0607, 0xa9fa415e, 0xc502bcdc, + 0x0c5e60fc, 0xffeea7fa, 0xe411fd5f, 0x15104ce3, 0xf6455ee4, 0x7e68f0c1, + 0xd3b9e7b4, 0xd4d102ce, 0x342e01e4, 0x5fbe0d07, 0x0d07fcea, 0xfccf72be, + 0x017ed0a9, 0x0188d1a9, 0x8d5cf0c5, 0xab5e12d1, 0xbcdea9f6, 0x60fec502, + 0xc1f9c65e, 0xb75ee0d8, 0x278f07f7, 0x64f1c160, 0x64964127, 0xb7074027, + 0xfe91fca1, 0xc45bb45b, 0xc90bbe2b, 0x61030b07, 0xbcc20c2b, 0x2163be1c, + 0x64f4c1fd, 0x409b0fab, 0x4c0b800d, 0x4b0a0123, 0x8409800d, 0x840d4103, + 0x62c48203, 0xbcd1a9c1, 0xa9f20902, 0xc5017ed0, 0xf0c560f1, 0xe8d28d5c, + 0xd3a9f429, 0xd1b90336, 0xd48d0339, 0xf6f25eee, 0xf65cf0c1, 0xc1f8430f, + 0xfb8154f4, 0x43f24b7b, 0x4307f838, 0x4103fe11, 0xe6eae48d, 0x0702021f, + 0x9d410342, 0x215ef0c4, 0x5e4507f8, 0x4007f753, 0x4c3b3e3b, 0x07fca65e, + 0x9b3a9b40, 0xfc9d5e49, 0x4cc0ff1e, 0x4de042b4, 0x0138010e, 0x1e3bf31e, + 0x31272c3b, 0x312b4127, 0x805e422b, 0x07c407fc, 0xfba65e03, 0x43072407, + 0x27fbf45e, 0xfbb15e40, 0x8d5e4027, 0x070d07fb, 0xe820be16, 0xb6dab9fc, + 0x0cac8302, 0x89fc045e, 0xd289e8d0, 0xeede89ea, 0x2becd189, 0xff4ea720, + 0x329bfddf, 0x43d51e2b, 0x41070114, 0xbea74c9b, 0xd5fddfff, 0xd50118b4, + 0x5e011cb4, 0x0027fb35, 0xa7fcfb5e, 0xd1fc9330, 0xc31500c5, 0x017dd4b9, + 0x02bcd2a9, 0x41233407, 0x330f4c83, 0x23433333, 0xfffef43e, 0xfef44e23, + 0xd8d3c5ff, 0xb6d4d4c5, 0xd4dcc524, 0x02b4dea9, 0x8da6d089, 0xd389bede, + 0x070103be, 0x9b442720, 0xb0d49d23, 0x48273387, 0x8dc0d38d, 0xd49dbcd2, + 0x270303b1, 0x1fd8be14, 0xc0d389fd, 0x2ea74027, 0x8dd17fff, 0xd38dbad0, + 0xdcd48db4, 0x8dd0d2c5, 0xd48dc4d4, 0xc8d48dc2, 0x8dcad48d, 0xd48db6d4, + 0xb2d38db8, 0xc5c6d48d, 0x855eccd2, 0x5e4027fc, 0x4127fc60, 0x0124d4bd, + 0x27fc1a5e, 0xf8a25e10, 0xf8639ff6, 0x2147023b, 0x2b0cda9d, 0x0bda9d20, + 0x2b072b02, 0x01273103, 0x675ee327, 0x5e2703f8, 0x4027f9a1, 0xdfffcea7, + 0xe8d089fd, 0x89eede89, 0xd189ead2, 0x14c4d5ec, 0x18c4d501, 0x2b202b01, + 0x1cc4d51e, 0xfa435e01, 0x0a5e20a7, 0x202100f4, 0x5ea02722, 0xfac1f510, + 0x5ea15364, 0x4203f508, 0x2405432b, 0x385e2115, 0x68f0c1f4, 0x27e5477e, + 0x0bf49b40, 0x270ef49b, 0x7e112705, 0x2ea7e5a3, 0x93fefd33, 0x00c483fb, + 0xb3012401, 0x432bb211, 0x20a7410c, 0x5ee120c8, 0x2100f3c1, 0x273722c0, + 0xf4e05e90, 0x01ead4b9, 0xfca34ae4, 0x01f0d1a9, 0x11039127, 0xcfabc107, + 0xe1271123, 0x99f7555e, 0x4103f2c4, 0x5ef2c49d, 0xb407f620, 0xb13bb153, + 0x9c5efb75, 0x64f9c1f4, 0xa75e9153, 0x000000f4, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00004488, 0x0001c904, 0x000044dc, 0x0000454e, + 0x000045a3, 0x000046f2, 0x0000489c, 0x0002048e, 0x0002071a, 0x0000480a, + 0x00020551, 0x0002065d, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x000195f1, 0x000195f6, + 0x000195fe, 0x00019606, 0x0001960c, 0x00019613, 0x0001961e, 0x00019627, + 0x00019630, 0x00019634, 0x0001963a, 0x00019644, 0x0001964c, 0x0001965a, + 0x00019667, 0x0001966e, 0x0001967a, 0x00019684, 0x0001968f, 0x000195f1, + 0x0001969a, 0x000196a2, 0x000196aa, 0x000196ce, 0x000196ae, 0x000195fe, + 0x000196b7, 0x000196c1, 0x000196cb, 0x000196d5, 0x000196df, 0x000196e7, + 0x000196f0, 0x000196f6, 0x000196fd, 0x00019703, 0x0001970e, 0x00019718, + 0x000195f1, 0x0001969a, 0x0001971e, 0x00019722, 0x00019726, 0x00019694, + 0x000196ce, 0x00019731, 0x000195f1, 0x0001969a, 0x0001973f, 0x00019748, + 0x00019751, 0x00019755, 0x0001975c, 0x00019764, 0x0001976c, 0x00019775, + 0x0001977f, 0x0001978a, 0x000196ce, 0x00019794, 0x0001979e, 0x000197a8, + 0x000197b1, 0x000197bb, 0x000197c2, 0x000197cc, 0x00019731, 0x000197d9, + 0x000197e6, 0x000197e9, 0x000197f3, 0x000195f1, 0x0001969a, 0x000197fb, + 0x00019803, 0x000196ce, 0x00019731, 0x00019694, 0x0001976f, 0x00019811, + 0x0001980b, 0x0001981b, 0x0001982b, 0x00019834, 0x0001983c, 0x00019844, + 0x0001984d, 0x00019858, 0x00019865, 0x00019872, 0x000195f1, 0x0001969a, + 0x00019879, 0x00019884, 0x0001988c, 0x000196ce, 0x00019731, 0x00019890, + 0x00019898, 0x000198a3, 0x00019694, 0x000198ac, 0x000198b8, 0x000198c3, + 0x000198cd, 0x000198d8, 0x000198df, 0x000198ed, 0x000198fc, 0x000195f1, + 0x00019901, 0x000197e9, 0x00019906, 0x0001990a, 0x00019912, 0x0001991a, + 0x00019924, 0x000196c7, 0x00047414, 0x00047414, 0x00047414, 0x00047414, + 0x00047414, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, +}; +const int fw_h264dec_size = 271104; + +int get_fw_h264dec(unsigned char **data) +{ + *data = (unsigned char *)fw_h264dec; + return fw_h264dec_size; +} diff --git a/drivers/media/platform/canaan/vpu/fw_h264enc.c b/drivers/media/platform/canaan/vpu/fw_h264enc.c new file mode 100644 index 0000000000000..03d5fb572d2e2 --- /dev/null +++ b/drivers/media/platform/canaan/vpu/fw_h264enc.c @@ -0,0 +1,15101 @@ +// SPDX-License-Identifier: GPL-2.0-only +/* + * Copyright (c) 2024, Canaan Bright Sight Co., Ltd + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND + * CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, + * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, + * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + */ + +#include "mvx_firmware_cache.h" + +const unsigned int fw_h264enc[] __aligned(0x1000) = { + 0x0000eb5e, 0x02020305, 0x33363635, 0x32303137, 0x36322e48, 0x50422034, + 0x2f504d2f, 0x45205048, 0x646f636e, 0x00007265, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x34363248, 0x20434e45, + 0x31313734, 0x33646530, 0x30703172, 0x6530302d, 0x00306361, 0x00000000, + 0x00058400, 0x0005a000, 0x00000015, 0x001f8f33, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00069000, 0x00005aa8, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x01a70d27, + 0x6ea7f07b, 0x53fdcfff, 0x530207f0, 0x950183f1, 0x2760a561, 0x15602501, + 0x25002760, 0x9b601560, 0x6ea70ef0, 0x01fd4fff, 0x33110361, 0xc511a314, + 0x60c13861, 0xf810ce38, 0xffff1ea7, 0x213127ff, 0x99240714, 0x6c402416, + 0x27659680, 0x169d806c, 0x27612724, 0x0e210330, 0x07202762, 0x19520b51, + 0xce0b6650, 0x3826f042, 0x139d3327, 0xbd31270d, 0x2706aa13, 0x0ef09b00, + 0xa70f1099, 0xfd4fff6e, 0x600b0233, 0x274063c5, 0x0ef39b30, 0x4fff6ea7, + 0x3863c5fd, 0x10000d27, 0x871ef0e8, 0x01271225, 0x1399501d, 0x0353070c, + 0x0c139d31, 0x2c333207, 0x04f29b18, 0x0ea721a3, 0x05feffff, 0x9b202702, + 0x03150ef2, 0x2708059d, 0x9302000d, 0x05dbc3f1, 0x04002d27, 0x0706f09b, + 0xb5f193f1, 0x1001059a, 0x01270b36, 0xf0931005, 0x93059028, 0x058e23f3, + 0x011e03c2, 0x803c0331, 0x93f930ca, 0x058e13f3, 0x800ef293, 0x03210105, + 0x03310524, 0xf630ca34, 0x00024ebe, 0xf09b0027, 0x0276be0b, 0x27012700, + 0x06f09b10, 0xfd1eff8b, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x01a70d27, 0x6ea7f07b, + 0x93feffff, 0x00028cf1, 0x937f1ce3, 0x0015b2f2, 0x05b66001, 0x9bfa21d2, + 0x1c030ff1, 0xe3f21e80, 0x04f09b01, 0x02000d27, 0xe64ef193, 0x012d2705, + 0x06f09b20, 0x7dbef107, 0xff8b0002, 0x0000fd1e, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x01a70d27, 0x6ea7f07b, 0x93feffff, 0x00153af1, 0x937f1ce3, 0x001a04f2, + 0x05b66001, 0x9bfa21d2, 0x1c030ff1, 0xe3f21e80, 0x04f09b01, 0x02000d27, + 0x1bcef193, 0x022d2706, 0x06f09b20, 0x08bef107, 0xff8b0015, 0x0000fd1e, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x01a70d27, 0x6ea7f07b, 0x93feffff, 0x00198cf1, + 0x937f1ce3, 0x001bdaf2, 0x05b66001, 0x9bfa21d2, 0x1c030ff1, 0xe3f21e80, + 0x04f09b01, 0x02000d27, 0x344ef193, 0x032d2706, 0x06f09b20, 0x5abef107, + 0xff8b0019, 0x0000fd1e, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x01a70d27, 0x6ea7f07b, + 0x93feffff, 0x001b62f1, 0x937f1ce3, 0x001c36f2, 0x05b66001, 0x9bfa21d2, + 0x1c030ff1, 0xe3f21e80, 0x04f09b01, 0x02000d27, 0x3fcef193, 0x042d2706, + 0x06f09b20, 0x30bef107, 0xff8b001b, 0xf09bfd1e, 0x07fe0b06, 0x4efe0b0f, + 0x25fd93f5, 0xd0010000, 0xf08b0506, 0xf71ed403, 0xf54ef58e, 0x0016fd93, + 0x06d00100, 0x03f08b05, 0x8ef71ed4, 0x000000f5, 0x00000000, 0x00000000, + 0xf4abfa4e, 0x4b7af493, 0xa7f41b01, 0xfd9fff3e, 0x04024d27, 0x34153425, + 0x001d36be, 0xffff0ea7, 0xff1ea7ff, 0x031efd4f, 0x0499f2e8, 0x2713010e, + 0xd8437b26, 0xaea7f341, 0x11feffff, 0x1834f9a3, 0xe3ff000e, 0x1834fd41, + 0xa7ff000e, 0xfdcfffbe, 0xf093c127, 0x27058d2c, 0x64bcc510, 0x001dd2be, + 0xfcebf4ab, 0x001b94be, 0x0027f4ab, 0x001db0be, 0xf49b4027, 0x0ef49b0b, + 0xa3bd3227, 0xbcc51e94, 0x0ef49b40, 0x9fff3ea7, 0x64bcc5fd, 0x40273415, + 0x070ef49b, 0x1eff8b00, 0x000000f6, 0x00069b1c, 0x0005a8b8, 0x00001000, + 0x00000fff, 0x00000180, 0x000001e0, 0x00000080, 0x0000007f, 0xf1a3f54e, + 0x85eef493, 0xa7f41b01, 0xffffff3e, 0x96113499, 0x12349946, 0xf49345f6, + 0x190685c0, 0xbe34d643, 0x270115c3, 0x4ea70f3c, 0x35fdbfff, 0x5f2c2743, + 0x4fff4ea7, 0x3442c5fd, 0xa7b63c27, 0xfdefff4e, 0x0f0443d5, 0x011bd9be, + 0x8fff2ea7, 0x0a4e27fd, 0x24158000, 0x23253227, 0xeaf71ea7, 0x054027fd, + 0x003f2714, 0x1512c200, 0x0ef49b13, 0xffff2ea7, 0x112499ff, 0x0e8c4ff6, + 0xf6122499, 0x930e854f, 0x068557f4, 0x35464319, 0xf8242499, 0x0e797f4c, + 0x1ea7d127, 0x99ffffff, 0xcea71114, 0x03feffff, 0x11149d41, 0xc3d53327, + 0x0ea70148, 0x01fd4fff, 0x07b12703, 0x07233b2b, 0x993f6b32, 0x43070e12, + 0x149d42ab, 0x3c03c50e, 0xf49b4027, 0xbe01270e, 0xbd007d90, 0xd81e99c0, + 0x3814300c, 0x4ea7100c, 0xc5fdcfff, 0x4ea7684b, 0xc5fdcfff, 0xdfe6604b, + 0x0ea70e08, 0xd1ffffff, 0x060e2404, 0xff1ea748, 0x1341fdaf, 0x8fff2ea7, + 0x05340bfd, 0xe3242113, 0x2425104c, 0x3ca32311, 0x93231510, 0x0684bbfa, + 0x4fe6a419, 0x04990e63, 0x9b42e025, 0xadf29311, 0xf2550684, 0x3027a219, + 0xffff4ea7, 0x25439dff, 0x11722fe6, 0xffff4ea7, 0x2c43b9ff, 0x8c3ff615, + 0xff4ea711, 0x4101fd4f, 0x973af293, 0xd14d2705, 0x07342707, 0x15240502, + 0xbe212523, 0x27010f9a, 0x0ef49b40, 0xffffdea7, 0xff3ea7fe, 0xd2b9fd4f, + 0x34c50140, 0x1e2ff638, 0xeb0ea711, 0x48beffff, 0x33be0119, 0x0ea70099, + 0xbeffffeb, 0xab011918, 0xeb4127f3, 0xff4ea7f4, 0x43d1ffff, 0x35a60e24, + 0xafffbea7, 0x0bb441fd, 0xa7b40543, 0xffffff0e, 0xe6100499, 0x9304a14f, + 0x05e203f1, 0x4ff61419, 0x9027023d, 0xffffbea7, 0x99b4b9fe, 0x2f4cfc1e, + 0x2ea701e7, 0xb9feffff, 0xd81e9921, 0x9929301c, 0x43830924, 0x44332487, + 0x43f9422b, 0xff000050, 0x4ea736e6, 0xd1feffff, 0xe0014843, 0x07088531, + 0xf0422343, 0xa7088f42, 0xfeffff0e, 0x1e9904b9, 0x5c104cd8, 0xe1a6f193, + 0xe6141905, 0xff2ea74c, 0x2d99ffff, 0x1fdfe627, 0x93002708, 0x05e18ff3, + 0x48063419, 0xf1dfcea7, 0x07c319ff, 0xce4f4b43, 0x20070d4d, 0x0c071d07, + 0x004098be, 0x32fcc319, 0x30270126, 0x49ab4307, 0x44863027, 0x93073127, + 0x3ea79f6b, 0xd1feffff, 0xe0014834, 0xa70ad842, 0xfeffffbe, 0x9fe6ba11, + 0xd0270128, 0xe136f993, 0x39f09305, 0x0b1905e1, 0xf151bb46, 0xf1df4ea7, + 0x651399ff, 0x3ff64c19, 0x012703d7, 0x4399f451, 0x0fc2d864, 0xf09305d6, + 0x99068324, 0x43f80404, 0x430700a2, 0x4d8b41c3, 0x44863027, 0xd3073127, + 0xdfe6d183, 0xb5a6008e, 0xf1df3ea7, 0xa33419ff, 0x27341d41, 0x0ef49b40, + 0x3ff69319, 0x1ea700d6, 0xd1ffffff, 0xf6069014, 0xa700c94f, 0xfeffff2e, + 0x1e992db9, 0xd183d453, 0xe0c2f393, 0x563c1905, 0x18a4f9cf, 0x27ff000e, + 0xd64d8b30, 0x4307654f, 0x47a64f6b, 0x0777cff6, 0xffffbea7, 0x0fb499ff, + 0xf39b3027, 0x8731270e, 0x4043f544, 0xabff02b0, 0xe69419fd, 0xeb066c4f, + 0x81fb93fd, 0xb41905e0, 0x3ea745a6, 0x19fff1df, 0x1d41e334, 0x9b402734, + 0x40270ef4, 0x3e5e941d, 0x270127fe, 0x118bbe11, 0xcc0fc603, 0xf1df3ea7, + 0x273419ff, 0xc64d8b30, 0x31279d4f, 0xfd93991e, 0x0105e040, 0xf6f08bd0, + 0xa709e00f, 0xfeffffbe, 0x060bb499, 0x07412742, 0xff2ea734, 0x4027feff, + 0x249d3f6b, 0xfeb65e0b, 0xe012f993, 0x27941905, 0xd64fe6d1, 0x5ed027fe, + 0xd027fed1, 0x27ff435e, 0x7a96be00, 0x40b4b900, 0xf6d00701, 0x0702c04f, + 0x83b007c0, 0xbc8310cc, 0x07c67630, 0x254c834d, 0x302749ab, 0x31274486, + 0x9f6b9307, 0x0551bff6, 0xffff0ea7, 0x9904b9fe, 0x0f4cf81e, 0x0dbdfdde, + 0xd75e1e99, 0x158abefd, 0xff2ea703, 0x24b9feff, 0x91271e99, 0x90270496, + 0x1d2f4cf8, 0xff3ea706, 0x3499ffff, 0x27379926, 0x025e42e0, 0x025a72e0, + 0x40278027, 0xffffbea7, 0xa9b4bdff, 0xb302be06, 0xa70e5601, 0xffffff0e, + 0x0e2c03b9, 0x0e2f04b9, 0xd407431b, 0xdcd4df6b, 0xb3073a10, 0x111ea027, + 0xc49d4027, 0x03d10356, 0xf4a127b1, 0x05fc10dc, 0x4c834b07, 0x87c4070f, + 0x2bc43334, 0x33c42bc3, 0xd0ce23c3, 0x0c07fff1, 0x00baaebe, 0xf6d20fd6, + 0x2705d9af, 0x2749ab40, 0x27448630, 0xff2ea731, 0x24b9ffff, 0x3f6b06a6, + 0x4fe6f345, 0x40270134, 0x24bdd027, 0x0ea706a6, 0xbefffaa3, 0xa701b6f7, + 0xfd4fff6e, 0x0fe0e007, 0xffffffff, 0x40070106, 0x43332007, 0x242b2533, + 0x056c2af9, 0x23f1ff00, 0xff000570, 0x43334a07, 0x9b1c4f03, 0x4dc10006, + 0x003f0388, 0x15800000, 0x8449c1d3, 0x1907b207, 0x070f1c83, 0x33c10741, + 0x2bca3347, 0x48cf03c4, 0xc10006ab, 0xbe23d4c3, 0xc1fffa94, 0x4ff65034, + 0x24f10123, 0xff000574, 0xf95034c5, 0x00056e24, 0x6834c5ff, 0x4d5cd401, + 0x4f3cfff0, 0x0fff0000, 0x34c56411, 0x07410788, 0x33383331, 0x93430b44, + 0x06c8dff0, 0x412b0201, 0x420b4487, 0x11b041d1, 0x40d1b241, 0xb38911b4, + 0x0b210b14, 0xd5f15130, 0xd511b443, 0xc111b042, 0x41278013, 0x34eb4a3b, + 0x998013c5, 0xd1230ccd, 0x590ccd9d, 0x5d412314, 0xfd402714, 0x000560e4, + 0xa33ea7ff, 0x3479fffa, 0x00954ff6, 0xf293d736, 0xc106802c, 0x49ce4424, + 0x21f3530d, 0x073001fa, 0x7aafbe1c, 0xa7d12700, 0xfffaa30e, 0x01b5eebe, + 0x0fe4e007, 0xffffffff, 0xf441fefe, 0x4dab3027, 0x31274486, 0xf3453f6b, + 0xffffbea7, 0xaab4b9ff, 0x2c4ff606, 0xaf8ff609, 0x35002700, 0xff2ea7f0, + 0x24b9ffff, 0x450606a7, 0x24bd4027, 0xf35106a7, 0xe6083499, 0x27009c4f, + 0x27f44100, 0x8640ab30, 0x51312744, 0x6b4027f2, 0x64249d3f, 0x3fe69307, + 0x4127fba4, 0x7fa6f393, 0x65349d06, 0xa7fb975e, 0xfffaa10e, 0x01b52fbe, + 0xf1ff635e, 0x00057420, 0xec401bff, 0xc5fee740, 0x24f95030, 0xff00056e, + 0x5e6834c5, 0x0ea7fed8, 0xbeffffeb, 0xbe01146b, 0xa7009456, 0xffffeb0e, + 0x01143bbe, 0x93fb4a5e, 0x067f5bf2, 0xe6052499, 0x2703be4f, 0xfc1e5e00, + 0xa75e8127, 0x83b007fd, 0xbff630bc, 0xc0070482, 0x5e10cc83, 0x1127fd3d, + 0x10277496, 0x4e5ef135, 0xffbea7ff, 0xb4b9ffff, 0x4ff606a8, 0x00270474, + 0x2ea7f025, 0xd1ffffff, 0x150e1422, 0x00d95ef2, 0xd8879807, 0xd90b9433, + 0x13c2d3f9, 0x639dff00, 0xc4dbf14d, 0xe9ff0013, 0x0013c8d1, 0x946bc5ff, + 0x13c4d0f1, 0x618dff00, 0x3374be98, 0x2d7fbe01, 0x07402701, 0x005f27b0, + 0x073fe000, 0xe9350724, 0x0013c8da, 0xbe0b07ff, 0x07013e12, 0x070a07b0, + 0x334cbec1, 0x2d57be01, 0x07400701, 0x07240731, 0xbe0b071c, 0x07013a2a, + 0xbe040740, 0x9d011f3b, 0x40279a60, 0xd4edc027, 0xff0013c8, 0x13c4dcf5, + 0x3ebeff00, 0x4807003e, 0x940b4833, 0xc6daf393, 0x2b320106, 0xc5498798, + 0x420b7460, 0x11b043d1, 0x33786cc5, 0x7063c533, 0x36047499, 0x05749945, + 0x00854ff6, 0x3499f351, 0x7141c05d, 0x860b7499, 0x93422745, 0x067e47fb, + 0x1104b49d, 0x825dbef0, 0x03f01100, 0x11f01501, 0x0d95bef0, 0x83400703, + 0x4ce4184c, 0xfc01b418, 0x01af200c, 0x8c83f811, 0x0748070f, 0x33473378, + 0x03742b7a, 0x06ab487f, 0x11749900, 0x33047399, 0xd476c147, 0x639d34ab, + 0x5f74b94c, 0xe94ff602, 0x9274b9fe, 0x27980702, 0x943314dc, 0x649dd89b, + 0xfee75e4d, 0x0c030607, 0xa805be4c, 0xbe861e00, 0xe6003db5, 0x93ff770f, + 0x067c2ff4, 0x99084399, 0x31030944, 0x17831307, 0x14ee3123, 0x729906f0, + 0xb5f05307, 0x11fb93f7, 0x0401067c, 0xfd08b19d, 0x06998032, 0x27102700, + 0x053a27ca, 0x03c12341, 0x87f3b844, 0x0b243342, 0xd844f142, 0x93ff0003, + 0x058b1ff0, 0x7ea90405, 0x71b90232, 0x7da90343, 0x4e070230, 0x70d1410b, + 0x73a90220, 0x72a90212, 0xdc030214, 0x0f4c030f, 0x8af6fb93, 0x53445305, + 0x15b085d4, 0x45b225b3, 0x65bc55b4, 0xb9bd35b1, 0xd1023f74, 0x03035c73, + 0x24b48d48, 0x5324b489, 0x03318338, 0x01270fec, 0x00274a00, 0xb38d4007, + 0x33e45326, 0x9e3fe645, 0x531d0701, 0x53f71ff2, 0x03f71ffb, 0x01e80317, + 0xe3b0012d, 0x27e7e317, 0x5c4fe631, 0x11fb5301, 0xc6b401f7, 0x83340735, + 0x34e67f3c, 0x2b804c03, 0x9b210743, 0x0724332e, 0xc6308b32, 0x2b2d0b34, + 0x9b040723, 0x07304701, 0x0711031e, 0x83115343, 0x11237f4c, 0x3c0344e6, + 0x47342b80, 0x9be42b41, 0x834e07e0, 0x44e67f4c, 0x2b80ec03, 0x0b319be4, + 0xadf15332, 0x933e0bf6, 0x058a3ff2, 0x23751001, 0x00b216be, 0xa7fe3f5e, + 0xfeffff4e, 0x1e994dbd, 0x3127c586, 0xcfff4ea7, 0x6843c5fd, 0x4ea73127, + 0xc5fdcfff, 0x7b5e6043, 0xff1ea7f8, 0x14d1ffff, 0xf2110e14, 0xa72e24ce, + 0xfff95f0e, 0x0e1412d5, 0x01b1f3be, 0xf49b4027, 0xff4ea70e, 0x4399ffff, + 0xbf2ea70e, 0x3138fd4f, 0x24054127, 0x34c63153, 0xf31e2403, 0xbff6fb31, + 0xf0210161, 0x6a5e0f6b, 0x1381befc, 0xf9202701, 0x011e9424, 0x8747e6ff, + 0x0043f142, 0xd8ff0230, 0x21031334, 0xc40e25d4, 0x2227e621, 0x1e9424f9, + 0x40b6ff01, 0xcfff3ea7, 0x4431c1fd, 0x41072027, 0x34c542a3, 0x0ef29b44, + 0xff8b0007, 0xc54431c5, 0x0ea76432, 0xd1ffffff, 0xa70e2401, 0xfd4fff4e, + 0xa66442c5, 0xff2ea718, 0x2341fdaf, 0xafff4ea7, 0xa7310bfd, 0xfd8fff2e, + 0x24214305, 0x25104ce3, 0xa3231124, 0x2315103c, 0x011324be, 0x53f9125e, + 0x01f5b3f2, 0xfea55e24, 0x030f11be, 0xbef9e05e, 0x27003244, 0x27048631, + 0x5e030730, 0x75bef858, 0xe05e0032, 0x95fb53f7, 0x95f253f5, 0x011d07f5, + 0x03bd0120, 0x5e3027e1, 0x0ea7fe69, 0x39fff1d7, 0xff1ea704, 0x1bbdffff, + 0x44f60e2c, 0x165e4127, 0xb0eabefa, 0x5e412701, 0x4ea7fa0d, 0xc5fdcfff, + 0x7c5e6843, 0xbd0cbef7, 0xf89d5e00, 0xffffbea7, 0x26b499ff, 0x1cf844e6, + 0xa7f76620, 0xfd8fffde, 0x4c83d411, 0xbed41518, 0xa7011126, 0xfeffff4e, + 0x014143b9, 0x31273566, 0x7fff4ea7, 0x934345d0, 0x05d8f3f0, 0x4ff60419, + 0xf1ab044b, 0x24f92027, 0xff011e94, 0x043842f0, 0x43f14287, 0xff023000, + 0x042c34f8, 0x25f42103, 0x21c4028c, 0x1e2227e2, 0x827ebede, 0x27f12100, + 0x8601ab40, 0x6b412704, 0x5ef4254f, 0xc007fe8e, 0x0710cc83, 0x27c4860c, + 0x417dbe01, 0xf8b35e00, 0x1ea74027, 0xbdffffff, 0xbe06a814, 0x0700b55c, + 0x8b0ea7d0, 0x74befff2, 0x9c2701b0, 0xbc8d2712, 0x207c270b, 0x0fe0a007, + 0xffffffff, 0xca070192, 0x46334a07, 0xc40bc333, 0x0d84c0f1, 0xdc07ff00, + 0xf27cde23, 0x3710beff, 0x84c4f100, 0x07ff000d, 0x0f4c831d, 0x3a333407, + 0x342b4733, 0xac1c32f1, 0x39070006, 0x44034207, 0x14031b01, 0x44034b05, + 0xd171f3a8, 0xc292f093, 0x5c21c506, 0x0e01d381, 0x916023c5, 0x6424c5d4, + 0x2bc5dba1, 0x0ad48984, 0xc50f4c83, 0xd1316c24, 0x517c21c5, 0xc51d07d3, + 0xd3018023, 0x832c1c03, 0x43070f3c, 0x28332307, 0x420b4433, 0x2487432b, + 0xd4a13207, 0x34d53e0b, 0x3d0311dc, 0x472711b8, 0x14031b01, 0x34033b05, + 0x1ea7f4a8, 0xd1ffffff, 0x07184810, 0x0b011132, 0x0341073e, 0xe434ad41, + 0x1741c811, 0x3d033207, 0x3e0b11e8, 0x2bd12007, 0x24030108, 0x34033b05, + 0x1ea7f498, 0xd1ffffff, 0x51069013, 0x013123f2, 0xdc2bb9dc, 0xdd2db902, + 0x9013d502, 0xe824d106, 0xfe4cee02, 0x85f39300, 0x34d10679, 0x4cee0498, + 0xc02700d8, 0x32d8c301, 0xba31f820, 0xe3430700, 0xf8c30532, 0x00a3104c, + 0x40273027, 0x01acc4bd, 0x01adc3bd, 0x01a8c3d5, 0x018cc4b9, 0x01784fd6, + 0x0541a3c4, 0x0edbcec4, 0x4d07291e, 0xd4074103, 0xbdcedf6b, 0x834d071e, + 0x33340741, 0x2b443336, 0x33230734, 0xf1320b23, 0x069dfc34, 0xdb41dc00, + 0xf051bd07, 0x02dd0bbd, 0xa4fd4027, 0xff000d78, 0xf28b3ea7, 0x563479ff, + 0xa7d12748, 0xfff28b0e, 0x01aedabe, 0x0fe4a007, 0xffffffff, 0x1127fe72, + 0x1027d496, 0xcb5ef125, 0x890ea7f9, 0x75befff2, 0xd12701ae, 0xf80dd61e, + 0x1c07f72d, 0x1d03f001, 0x17be016c, 0x785e00b3, 0x030c07ff, 0x64be0c0c, + 0x655e00b3, 0xb372beff, 0x01f45100, 0xdc4bb9c3, 0xdd4db902, 0xff375e02, + 0x43073127, 0x34334633, 0xc407432b, 0xc40bc333, 0x9dfccf03, 0x155e0006, + 0x1e3027ff, 0xa73127e6, 0xfeffff4e, 0x270a439d, 0x0ef49b40, 0x4ea73127, + 0xc5fdcfff, 0x445e6043, 0x2a04e8fd, 0x2f1abef6, 0xff0ea700, 0x0499feff, + 0x9611270b, 0x07102744, 0xf6155e41, 0xf1eb4127, 0x01af4fe6, 0x013cb3be, + 0xffff3ea7, 0x263461ff, 0xa7c30747, 0xfd4fffde, 0xf49b4027, 0x38d4c50e, + 0x013c97be, 0x4256c461, 0xffff0ea7, 0x090399fe, 0x4fffbea7, 0xa7b201fd, + 0xffffffee, 0x990ee199, 0x338311ed, 0x423b4127, 0x14eb2307, 0x3387d123, + 0xe19d2433, 0x9d232b0e, 0x24f911ed, 0xff000050, 0x24f9c407, 0xff00004f, + 0x24fd4123, 0xff00004f, 0x00dddff6, 0x99090399, 0x432b44e4, 0x41e84f4b, + 0xc58600cf, 0x0698e4d1, 0xc525ec9d, 0xf49340e4, 0x010677b0, 0x07402741, + 0x0ce49d0e, 0x9d2ae49d, 0xe6be12ed, 0xb101002f, 0x8a5af293, 0xd24d2705, + 0x0c3c2707, 0x24050207, 0x21252315, 0x2d452c35, 0x0102b5be, 0xd576f193, + 0xb6141905, 0x9b40274b, 0xf49b0bf4, 0xff2ea70e, 0x2111feff, 0xbd104c27, + 0x271e6c24, 0x0013fd30, 0x27ff0000, 0x0ef49b40, 0xffff3ea7, 0x123499ff, + 0x00f64fe6, 0x4ea73127, 0xc5fd4fff, 0xff1e3043, 0xffff1ea7, 0xd61251ff, + 0x93402723, 0x05d527f3, 0x3027341d, 0x9b0bf39b, 0x4ea70ef3, 0x9dfd4fff, + 0x129d1012, 0x9b42010f, 0x31270ef3, 0x3b0e1499, 0xa734cb32, 0xfd4fbf2e, + 0x41273138, 0x31532405, 0x038b3fc6, 0xa7f21e24, 0xffffffce, 0xa70ec199, + 0xfff95d0e, 0x010f03be, 0xc49d4127, 0xff5e5e12, 0x76e2f393, 0x5ef35506, + 0xd027f26f, 0xbef18d5e, 0xbe002fb4, 0x27006d5d, 0xf1805ed1, 0xf1930827, + 0x9e016f7f, 0xbe010a4b, 0x5e003028, 0x4027f6d1, 0x27fe655e, 0x2e05be01, + 0x11f3ab00, 0x004ee3d4, 0xd4150400, 0xa35ef3eb, 0xa73127fb, 0xfdcfff4e, + 0xab6043c5, 0xf92027f1, 0x011e9424, 0x2542d0ff, 0x43f14287, 0xff023000, + 0x031a34d8, 0xc4255421, 0x2227e621, 0x4127e21e, 0x4ff6f1eb, 0x4327fe20, + 0xd01ef4e8, 0xf11e4027, 0x006ce8be, 0xbeff075e, 0xbe002fe2, 0xa700a047, + 0xfff95d3e, 0x341d4027, 0x3ea7343d, 0x01ffffdf, 0x07458634, 0xe8462723, + 0x562301f4, 0xff3ea733, 0x3401fd4f, 0xffdfbea7, 0xa34433ff, 0x27b40549, + 0xbe20000d, 0x93008913, 0x06be73fc, 0x0b07c005, 0x010ae3be, 0x4fe6c401, + 0x0ea7030f, 0x27fff28b, 0x0e7ebe12, 0xa7002701, 0xffffd74e, 0x403d401d, + 0x2ea7407d, 0x27ffffff, 0x2a209d40, 0xf1d7eea7, 0x93e41dff, 0x067513f3, + 0x319d10a7, 0x1824bd43, 0x25209d0e, 0x24c5e43d, 0x4024c53c, 0x9d26249d, + 0x24bd2724, 0x3827152c, 0x40272127, 0x0e1824fd, 0x2103ff00, 0xfe93f398, + 0x2706752c, 0x3e071b0c, 0x4007d027, 0x01233d05, 0xf4b83403, 0xcea74027, + 0xc1fd4fff, 0x3c2774c1, 0x27e43da2, 0x2127464c, 0xe445e335, 0x4d273227, + 0xe35d07c8, 0xe29de425, 0x55e09d2e, 0xe015e21d, 0x9d1be29d, 0xe09d1ae0, + 0x6f10e81c, 0x9d412702, 0x202730e4, 0x754ef093, 0x9d40a706, 0x02c57004, + 0x840d0374, 0x51f05501, 0x03fd51f3, 0xf355ff3c, 0x27330c27, 0x9d322740, + 0xe09d60e4, 0x58e39d63, 0x9d59e29d, 0xe29d61e0, 0x44e29d62, 0x9d2fe29d, + 0xe29d64e2, 0x65e29d66, 0xe48d4127, 0x51f45146, 0x2310a7f3, 0xe302834d, + 0xe18d7fdc, 0x34e2c55e, 0xc538e2c5, 0xe2c53ce2, 0x5ae18d40, 0xc55ce18d, + 0xe2c568e2, 0x4ce2c550, 0xe354e29d, 0xf4557f3c, 0xdc03d419, 0xf9d3c280, + 0x7657f493, 0x102c2706, 0x431d30a7, 0x4c03433d, 0xa7f2a010, 0xffffff4e, + 0x010143bd, 0x22be0027, 0xd0070042, 0xbe330c27, 0x93004219, 0x06c167fb, + 0x9d272b07, 0x8e27fa00, 0x271e0000, 0x6c271e7c, 0x1b1c271d, 0x40275b07, + 0xc0a7e027, 0x24053127, 0x9d18239d, 0x29950c24, 0x2d2528b5, 0x2d552015, + 0x278d2045, 0x1e268d1c, 0x9d202e8d, 0x219d1921, 0x1b219d1a, 0x03302cc5, + 0x2fc4342c, 0x0006e84c, 0xd53207c6, 0x9d01745c, 0x3d03685e, 0x20270238, + 0x32054627, 0xf4c83403, 0x93232c27, 0x06c19ff3, 0x42071027, 0x21233105, + 0xf4b83403, 0x4027f151, 0x02dc14bd, 0x12bd40a7, 0xb4d502dd, 0x3ea702b4, + 0x27ffffff, 0x32d5520c, 0xb2d51558, 0xf3930134, 0x27058378, 0x05400720, + 0x03012332, 0xa7f4b834, 0xffffff4e, 0x43bd3027, 0x40bd0e2c, 0x42bd0e2f, + 0x42bd0e2e, 0xf1510e2d, 0x184442bd, 0x02d012bd, 0x2744429d, 0x2142bd10, + 0xadf2510e, 0xd5184641, 0x9d166840, 0x219d0821, 0x9840d506, 0x9c40d506, + 0x5f3ea706, 0x311dfff9, 0x40ad313d, 0x3c270102, 0x0843bd0f, 0xbd20a701, + 0x27010942, 0x40adb0ec, 0x40d5010a, 0x40d50e14, 0x41bd0690, 0x3ea71528, + 0x27fffef3, 0x054e0720, 0x03e12332, 0xa7f4b834, 0x5f1ea720, 0x3ea7fffc, + 0x15ffffff, 0xbd402712, 0xd5167834, 0x0516743e, 0x6c3ed512, 0x703ed516, + 0x27212716, 0x4027113c, 0x167824fd, 0x2103ff00, 0x915ef398, 0x99d0b9ee, + 0x8304531e, 0x39f9be01, 0xeed75e00, 0x199c0d27, 0x002c71be, 0x7312f493, + 0x5e400506, 0xf193ee80, 0x55067314, 0x274027f1, 0x25049d30, 0x010a03ad, + 0x93ee6b5e, 0x016ba5f0, 0x010348be, 0x27ee6c5e, 0x72f19301, 0x789e016b, + 0xc4c10106, 0x004ef874, 0xfd8b0100, 0x7266f493, 0x304d9d06, 0x4efd855e, + 0x05f493fd, 0xf41b017a, 0x7fff3ea7, 0x024e27fd, 0x3425382a, 0xf2ab3415, + 0xf1eb1127, 0xffff2ea7, 0x05e827eb, 0x004f272e, 0x15030000, 0xa23e2724, + 0x23c50880, 0xff0ea75c, 0x4227e7ff, 0x20270405, 0xfd0b4ea7, 0x934225fe, + 0x06066ff3, 0x01c53215, 0x15420550, 0x69fd9342, 0x32050606, 0x0208d2d5, + 0x020cd2d5, 0xa70ef29b, 0xfdcfff3e, 0xeacaf493, 0x3534b5ff, 0x93323531, + 0xffeb3ff4, 0x453034c5, 0xa7324531, 0xfddfff1e, 0x14c54727, 0x5412c550, + 0x20004d27, 0x275814c5, 0xc530003d, 0x0ea75c13, 0xc5f3ffff, 0x02c5540e, + 0xff4ea754, 0x4215efff, 0x4ea73027, 0xadfeffff, 0xa71e3843, 0xfdeb771e, + 0x4f271205, 0x0c030000, 0x3ea71415, 0xa7fefcff, 0xfef59f4e, 0x01a8d3d5, + 0xf29bd445, 0xff3ea70e, 0x4327fdef, 0x024034d5, 0x04c10307, 0xfb48dc40, + 0x01d51427, 0x01d50240, 0x20270244, 0x06c002d5, 0xebbf3ea7, 0x273205fd, + 0x8300004f, 0x9b34150a, 0x3ea70ef2, 0x27fde6ef, 0x3405304c, 0x4f273215, + 0xa0000000, 0x01d53435, 0x02d50248, 0x432706c4, 0x024c04d5, 0xefff1ea7, + 0x4c14c1fd, 0x27fb48dc, 0x4c14d544, 0xb72ea702, 0x3027fdeb, 0x4f272305, + 0x0b030000, 0xf39b2415, 0xdf2ea70e, 0x4c27fde6, 0x15240531, 0x004f2723, + 0x35a00000, 0xd5332724, 0xa7027013, 0xfdefff1e, 0xdc7014c1, 0x4427fb48, + 0x027014d5, 0x027414d5, 0x13d53027, 0x2ea706d0, 0x05fdeb8f, 0x004f2723, + 0x15108200, 0x0ef39b24, 0x14d54327, 0x1ea70278, 0xc1fdefff, 0x48dc7814, + 0xd54427fb, 0xd5027814, 0x27027c14, 0xd413d530, 0x872ea706, 0x2305fdeb, + 0x00004f27, 0x241510c2, 0x270ef39b, 0x5014d543, 0xff0ea702, 0x04c1fdef, + 0xfb48dc50, 0x01d51427, 0x01d50250, 0x20270254, 0x065402d5, 0xebaf3ea7, + 0x273205fd, 0x8300004f, 0x9b34150b, 0x3ea70ef2, 0x27fde6af, 0x3405154c, + 0x4f273215, 0xa0000000, 0x01d53435, 0x02d50258, 0x43270650, 0x025c04d5, + 0xefff1ea7, 0x5c14c1fd, 0x27fb48dc, 0x5c14d544, 0xa72ea702, 0x3027fdeb, + 0x4f272305, 0x0fc20000, 0xf39b2415, 0x9f2ea70e, 0x4c27fde6, 0x15240514, + 0x004f2723, 0x35a00000, 0xd5332724, 0xa7026013, 0xfdefff0e, 0xdc6004c1, + 0x1427fb48, 0x026001d5, 0x026401d5, 0x02d52027, 0x3ea706cc, 0x05fdeb9f, + 0x004f2732, 0x15100200, 0x0ef29b34, 0xe66f3ea7, 0x334c27fd, 0x32153405, + 0x00004f27, 0x3435a000, 0x026801d5, 0x06c802d5, 0x04d54327, 0x1ea7026c, + 0xc1fdefff, 0x48dc6c14, 0xd54427fb, 0xa7026c14, 0xfdeb972e, 0x23053027, + 0x00004f27, 0x24151042, 0xa70ef39b, 0xfde65f2e, 0x05324c27, 0x27231524, + 0x0000004f, 0x272435a0, 0x0013d533, 0xff2ea703, 0x24d1fdef, 0x48dc0100, + 0xd54427fa, 0xd5030024, 0x27030424, 0x9423d530, 0xff2ea706, 0x2305fdea, + 0x00004f27, 0x24151340, 0xa70ef39b, 0xfde3ef2e, 0x05254c27, 0x93231524, + 0x036807f1, 0x00004f27, 0x1ce3a000, 0xff0ea77f, 0x2435feff, 0x014804d1, + 0x43c03627, 0x4a1ff418, 0xb40003a7, 0x0ff19b00, 0x014804d1, 0x27801c03, + 0xea43c436, 0x4fff3ea7, 0x7434c1fd, 0x009e40e8, 0xf6374ea7, 0xa72027fe, + 0xfeffffee, 0x0148e0d1, 0xad09429d, 0xa70142e2, 0xacd4d510, 0x9d302701, + 0x41450443, 0x3505429d, 0x0a429d41, 0x429d426d, 0x0e03c008, 0x46272e07, + 0x23d1f4e8, 0x33c40148, 0xff4ea7f6, 0xf393ffff, 0xd1060418, 0x07069842, + 0x971c0313, 0xf6374ea7, 0xe34205fe, 0x3ce37f1c, 0x0334197f, 0x31c2803c, + 0x262c27f9, 0x03f2f393, 0x07102706, 0x23310542, 0xb8340321, 0x8f4ea7f4, + 0xf093fee1, 0xc50602cc, 0xd4d598d2, 0xd2c50124, 0x78aebe9c, 0xe8ff1e03, + 0xff3a5ef3, 0xf87434c1, 0x0100004e, 0x4ea7ff5c, 0x27ebffff, 0xfffaf33e, + 0x010043d5, 0xb9a02e27, 0x0442d5ff, 0x963d2701, 0x0843d5af, 0xf32e2701, + 0x42d5f3f3, 0x3e27010c, 0xd5a0a0a0, 0x27011043, 0x9696962e, 0x011442d5, + 0xeedb3e27, 0x1843d5e3, 0x551e2701, 0x41d55555, 0x3d27011c, 0x43d55555, + 0x2e270120, 0xd5dbdbdb, 0xd5012442, 0x27012841, 0x4b4b4b3e, 0x012c43d5, + 0x0c182e27, 0x3042d51c, 0xd5102701, 0x27013441, 0xd5060c3d, 0x27013843, + 0x1818182e, 0x013c42d5, 0x014041d5, 0x014441d5, 0x06023e27, 0x4843d502, + 0x4c41d501, 0x033d2701, 0x5043d507, 0x022e2701, 0x42d50202, 0x41d50154, + 0x41d50158, 0xa15e015c, 0x93f94efe, 0x0618e3f3, 0x1f31f293, 0x7f3ce306, + 0x197f2ce3, 0x803c0334, 0x93f932c2, 0x0175b3f4, 0x3ea7f41b, 0x27fd6fff, + 0x2560024d, 0xab341534, 0xeb4127f2, 0x31f093f4, 0x4027061b, 0x3ea7e007, + 0x35ebffff, 0xa1f29334, 0xf993061a, 0x93061e40, 0x061b0ff1, 0x01dfed03, + 0x14152415, 0x94c52405, 0x9c94c598, 0xece31405, 0x7f0ce37f, 0x0c030419, + 0xf90ec280, 0x1af2f393, 0x27202706, 0x3205784c, 0xf4c83403, 0x1cc2fa93, + 0x033a0706, 0x07013fad, 0x7f3ce32a, 0x237f2ce3, 0x19013fad, 0x803c0334, + 0x27f932c2, 0xf39350dc, 0x27061ca0, 0x054d0720, 0x03d12332, 0x93f4b834, + 0x061dcffe, 0xeb1db227, 0x1c92f093, 0x161c2706, 0x3d272a27, 0x49273200, + 0xacc5c127, 0xbead05a0, 0x9300e900, 0x061cbff0, 0x27141c27, 0x3d272c2c, + 0x48274700, 0x00e8ebbe, 0xe973cea7, 0xfdf093ff, 0x1c27061c, 0x272b2717, + 0x2734003d, 0x4cacc549, 0xbe94adc5, 0x9300e8cc, 0x061d2bf0, 0x27151c27, + 0x3d272d2c, 0x48274800, 0xd5ecacc5, 0xbe0134ad, 0x9300e8b0, 0x061dfff0, + 0x27231c27, 0x3d273c2c, 0x4a271000, 0x00e89bbe, 0x1deef093, 0x241c2706, + 0x273d2c27, 0x2714003d, 0xe886be4a, 0xddf09300, 0x1c27061d, 0x3e2c2725, + 0x18003d27, 0x71be4a27, 0xf09300e8, 0x27061dcc, 0x2c27261c, 0x003d273f, + 0xbe4a271c, 0xa700e85c, 0xfdeb3f3e, 0x4f273d05, 0x0d830000, 0x9dc53415, + 0x849dc580, 0x75949dc5, 0x559d459d, 0x279d659d, 0x0ef19b10, 0x3d053803, + 0x00004f27, 0x34150e03, 0xa70ef19b, 0xfde4ef2e, 0x051f4c27, 0x272d1524, + 0x0000000f, 0xa72035a0, 0xfde4df3e, 0x34054103, 0x2ea73d15, 0x35fdeb2f, + 0x272d0530, 0x8300004f, 0x9b24150e, 0x20270ef1, 0xffff4ea7, 0x3a42adfe, + 0x7f3ea71e, 0x3219fee2, 0xe1ff4ea7, 0xa74219fe, 0xfee26b3e, 0xec274027, + 0x6e949d26, 0x278893c5, 0x054e0720, 0x03e12332, 0xa7f4b834, 0xfeffff2e, + 0x21ad1027, 0x40271e42, 0x02d424bd, 0xe1833ea7, 0x6b4ea7fe, 0x21adfee2, + 0x43551e3c, 0x1c4ef093, 0x9b4ea706, 0x21adfef9, 0x94c51e3e, 0x902ed58c, + 0x9ef90e1d, 0x4e049487, 0x93f4a3fd, 0x01740bf4, 0x3ea7f41b, 0x27fd5fff, + 0x9382024d, 0x062483fd, 0x2d073425, 0x1597dc03, 0xe33d0734, 0x3ce37f2c, + 0x97dc237f, 0x2c032419, 0xf923c280, 0x9326ec27, 0x06245ff3, 0x4e072027, + 0xe1233205, 0xf4b83403, 0xeb072ea7, 0x272e05fd, 0x0300004f, 0x9324150f, + 0x062437f1, 0xe1773ea7, 0x15d355fe, 0x271e051e, 0x0ef49b40, 0x2127f3ab, + 0x4ea7f2eb, 0xc5fddfff, 0x4ec5c44e, 0x003d27c8, 0xcc43c520, 0x015c42d5, + 0xffff3ea7, 0x343ed5fe, 0xff4ea71e, 0x4e35e7ff, 0xd4bd4027, 0x302704a0, + 0xf0934f07, 0x8d0623f4, 0xdeadd2d3, 0xd4d50100, 0xded50108, 0xded50498, + 0xded5049c, 0xde8d04f4, 0xd6de8dd4, 0x8dd8de8d, 0xde8ddade, 0xfade8df8, + 0xbefcde8d, 0x83054294, 0x1efd8ef4, 0xa7fc4eff, 0xfd9fff4e, 0xc0074d01, + 0xbe12d2d8, 0xa7019662, 0xfdcfff3e, 0x34c54027, 0x6034c540, 0x0710dc58, + 0x9efc0e0c, 0x8e000836, 0xa7fa4efc, 0xffffffae, 0x9fffbea7, 0xffdea7fd, + 0xcea7feff, 0xd1fdcfff, 0x260e24a4, 0xa3b41145, 0x061e104c, 0x4ce3b411, + 0xb9b41510, 0x3c1e99d4, 0x0027104c, 0xd4d1151e, 0x42e00148, 0xaebe0095, + 0x4127018c, 0x40270496, 0xd4110407, 0x0e1844f9, 0x4f4bff00, 0xd4b9423c, + 0x4c3c1e99, 0x99d4b910, 0x204cd81e, 0x09d49914, 0x34874383, 0x432b4433, + 0x005044f9, 0x4f76ff00, 0x119d0fd6, 0x1834f9d3, 0xa3ff000e, 0x1834fd41, + 0x27ff000e, 0x64c2c521, 0xab40c2c5, 0xbd4127f1, 0x271e94d4, 0x0ef39b30, + 0x9b64c2c5, 0x00070ef3, 0x4027ff8b, 0x1e94d4bd, 0xeb0ef39b, 0x40c0c5f1, + 0xc0c5d311, 0x1834f960, 0xe3ff000e, 0x1834fd41, 0xc5ff000e, 0x485e64c2, + 0x4efa8eff, 0x07a007f9, 0x27c207b1, 0x1c1e409c, 0xcc10dc07, 0x07d90741, + 0x8aedbe1d, 0x070a0701, 0x8acfbe1d, 0x0bcd2b01, 0x07ad0bbd, 0x8ec0760b, + 0x334087f9, 0xf9400b04, 0x0003cc40, 0x0f0c83ff, 0x0e230333, 0x9effff7e, + 0x930302e6, 0x05706ff2, 0xfeb33ea7, 0x304c27fe, 0x34033101, 0x24032105, + 0x4027f4a8, 0x0b0ef49b, 0xb32ea7fe, 0xf393fefe, 0x2705704c, 0x3101304c, + 0x21053403, 0xf4a82403, 0xf49b4027, 0xa7fe0b0e, 0xfdebff3e, 0x34054027, + 0x00004f27, 0x34150f82, 0xf49b4027, 0x4efe0b0e, 0xffbea7f8, 0x8007fdeb, + 0x0027c027, 0x9f27a107, 0x0f820000, 0x018abbbe, 0xb915bc05, 0xf49b4027, + 0xff3ea70e, 0x4427fde7, 0x3a153405, 0xe7ef4ea7, 0x053c35fd, 0x274a1548, + 0xbe4c3500, 0x05018a94, 0x27b915bc, 0x0ef49b40, 0x0027f88e, 0xfd4efe0b, + 0xffff4ea7, 0x094499fe, 0xffff1ea7, 0x034383ff, 0xd1348741, 0x33069012, + 0xf1432b44, 0x00004843, 0x2724c6ff, 0xd10d1e40, 0x27069c14, 0x27430a21, + 0x07420720, 0xabdf6bd4, 0x273027fe, 0xc0151e25, 0x34f91231, 0xff011e94, + 0x14f146a6, 0xff023000, 0x030b44d8, 0x28138731, 0x1e0127f2, 0x8b002703, + 0x8efeeb0d, 0x6bfe4efd, 0xbe05960f, 0x0e0010aa, 0x06529efe, 0x4efe8e00, + 0x070419fd, 0xc61f6bd0, 0xbe185645, 0x0e0006cd, 0x0f659efd, 0x93165600, + 0x018a58f3, 0xbab6f493, 0xbe430505, 0x270006c1, 0x8ed41d41, 0x07fd4efd, + 0x563f6bd1, 0xbe3a2626, 0xbe000616, 0x27000e18, 0x1e402701, 0x1f22c41e, + 0x4f4b0419, 0x00274220, 0xf493fd8e, 0x93018a1d, 0x05ba7bf3, 0x01273405, + 0xd41d4227, 0x0027fd8e, 0xfc4efd8e, 0xba6af493, 0x294e6905, 0xa7dea743, + 0x4209fee1, 0x0b08d199, 0x2bc007e3, 0x214049e2, 0x10c1ce42, 0xce09d499, + 0xd4490a42, 0xd469e42e, 0xa71904ce, 0xfd4fff4e, 0x4ea74311, 0x05fee1a7, + 0x084c9d43, 0x4d09429d, 0x8e406d4e, 0x07f94efc, 0x14bc23b0, 0x4b0b4147, + 0x30074209, 0x0999d107, 0x0724c624, 0x07241e01, 0x47410341, 0x270107e4, + 0xeb0b1c1c, 0x4c101d2b, 0x0311271d, 0x05f1f001, 0x531e3027, 0xe203e209, + 0x40072266, 0x3b0c4c23, 0x87330149, 0x071047c4, 0x0b21234b, 0x0dc30b41, + 0x07328742, 0x233c0b20, 0x2ba42712, 0x3b1b0b2d, 0x033301a9, 0xc40d0a21, + 0xffffffdf, 0x21270bff, 0x4127071e, 0xce05142d, 0xe1270123, 0xca2be03b, + 0x1223e30b, 0x0307f258, 0xf54ef98e, 0xf0c5f6a3, 0x24029954, 0x323b3127, + 0x0750f2c5, 0xc520074f, 0xf1c54cf3, 0x142c2358, 0x2740f4c5, 0xf1c1103c, + 0x05402740, 0xc5140314, 0xf38840f1, 0xf2c17207, 0x2310274c, 0xc53a2721, + 0xac2748f1, 0x60f2c50d, 0x8964f3c5, 0x75891878, 0xea82f01a, 0x4cf4c100, + 0x00e345ee, 0x0750f1c1, 0x233a074a, 0x3c230d4c, 0x3b413b0c, 0x54f1c131, + 0x12010487, 0xa123350b, 0x020bc387, 0xb8073127, 0x40273a3b, 0xa103c20b, + 0xd0079507, 0xb1036027, 0xc55cf3c5, 0x511e44f4, 0x1f070e01, 0x3a5b3e07, + 0x870f3c83, 0x01410b43, 0xc12b2642, 0x428b5cf4, 0x12074506, 0x031e2e07, + 0xf4c11e07, 0xce420b5c, 0xf4c11b41, 0x03c20544, 0x07338742, 0xc5320b2f, + 0xc40344f4, 0x91034027, 0x091e3405, 0xd403de05, 0x4e05031e, 0x61030403, + 0x0705fbf0, 0xc1211e3f, 0x92ca60f2, 0x074607a4, 0x2b410338, 0x96840a36, + 0x01312784, 0x05040304, 0xa8d403d4, 0x01dd1ef3, 0x05454634, 0x034027d4, + 0xc13405d4, 0x340340f2, 0xc1ed32ce, 0xa3ce58f3, 0x0e41270a, 0xc5402795, + 0xf4c148f4, 0x1a798d44, 0x748d481b, 0x64f1c118, 0x1123a103, 0x0364f1c5, + 0x001ff672, 0x48f0c1ff, 0xf58ef683, 0xffff3ea7, 0x7834d1ff, 0xd5400b06, + 0x0b067834, 0xa7fe0bfe, 0xffffff4e, 0x010042b9, 0x07fc40c1, 0x83400732, + 0x31030f4c, 0x4027121e, 0x14fd0103, 0xff00007c, 0x21234007, 0x070f4c83, + 0xf0133314, 0x091e03f3, 0x007e14f9, 0x4006ff00, 0xffff4ea7, 0x0042bdff, + 0xfc40c501, 0xfc4efe0b, 0xb43ec007, 0x0c0e4127, 0x04074027, 0xfc4efc8e, + 0xcf03c007, 0x03ffffff, 0x0000cf83, 0x1c07fc00, 0x3c272027, 0xf97fbe16, + 0xb34ea700, 0x3027fff9, 0xc5404cc5, 0x40c53c43, 0x4efc8e38, 0x23d007fa, + 0xc24714dc, 0xdc03cd0b, 0x24db9914, 0x4127ce09, 0xae074b3b, 0xa30b4223, + 0xa432d001, 0xfa8e0127, 0x3b0c2c23, 0x87e20b2b, 0x87040b4e, 0xec98be23, + 0x27412700, 0x9dca0d00, 0xfa8e31d4, 0x0399f74e, 0x3b412724, 0x07f06343, + 0x070a0174, 0x07f105d0, 0x877333b1, 0x27c00784, 0x07c24990, 0x871a070b, + 0xbe910322, 0x0b00ec62, 0x03b70ba8, 0x109cc4c2, 0x24d499e9, 0xc407de01, + 0xd49d4103, 0x03f40124, 0x07d405c6, 0x071f070d, 0x0531272c, 0xff6d7efe, + 0xd3b10596, 0x4c3b4127, 0xd3b5340b, 0xf78ef043, 0xf093fa4e, 0xbe01298c, + 0x9300f4e1, 0x01298cf0, 0x00f4d8be, 0xf9afbea7, 0x0cdc27ff, 0xb209a027, + 0xc2071d07, 0xf093cd3b, 0x07012996, 0xbeb2033c, 0x0b00f4b9, 0xc4d103ac, + 0x000670bf, 0xcea7e1ff, 0x89fff9b3, 0xf09332c1, 0xbe01299b, 0xa100f49d, + 0x07c3b1c1, 0x934a0721, 0x0129a2f0, 0xfa0e2a2b, 0x00f4889e, 0x08c1f64e, + 0x3c0cc138, 0x07240e99, 0x27b107d0, 0x27702790, 0x3c270c6c, 0x2b06071c, + 0x03031e36, 0x07222701, 0x5b203b4c, 0x5c2c0b40, 0x03f3f041, 0x2bc2041e, + 0x234007eb, 0x24470c4c, 0x21492d0b, 0x410b4e3b, 0x4487d301, 0x3807430b, + 0xa1273c0b, 0x11034305, 0x3e074a07, 0x214d403b, 0xc40b3703, 0x7127030a, + 0x91071902, 0x4e3b4a07, 0x94da4223, 0x07766614, 0x7e0d0713, 0x1007fc09, + 0xb97e0d07, 0x24de99fe, 0xa190cbca, 0x3cd3c1d4, 0x2b3cdbc5, 0xa54b0b43, + 0x4ef68ed4, 0x3c02c1fa, 0x074003c1, 0x0304a1d1, 0xe30fffdd, 0x2b0fffdd, + 0x2ba00732, 0x3800c1d4, 0xbd073766, 0xb307d302, 0xc20bcb07, 0x6abe1c07, + 0x0a0700f7, 0x357e1c07, 0x06db2bff, 0x7e0d07d6, 0x0a07fdf6, 0xfa0e1d07, + 0x8eff235e, 0x99fa4efa, 0xd0073104, 0xb307a207, 0x46c6c107, 0x26fc1d7e, + 0x070d0705, 0xfb877e1c, 0xd49d4027, 0x5e0fd631, 0x070bb2c0, 0xfdb07e0a, + 0xb3c00e66, 0x234c474f, 0xd299144c, 0x274d0b24, 0x09323b31, 0x22312344, + 0x1e3c0734, 0x03420711, 0x07c44247, 0x1e31033c, 0x03320705, 0x3b412738, + 0x07d1a143, 0x0b312334, 0x0b13eb13, 0x7e0d0714, 0xd489ff4b, 0x030d0732, + 0x8d1c0741, 0xfa0e32d4, 0x27fb245e, 0x4efa8e00, 0x07d207fa, 0x46b107a0, + 0x073d072a, 0xa72b071a, 0xfff9b30e, 0xa6fd7e7e, 0xb3cea707, 0xc099fff9, + 0x27222724, 0xbe070310, 0x07047710, 0x7e0c0710, 0xd61efda4, 0xf49b4027, + 0x07fa8e0e, 0x0c0c2740, 0x0103031e, 0x203b2127, 0xa7f824ca, 0xffffff3e, + 0x067834d1, 0x420b1027, 0x067834d5, 0xd99e2227, 0xfb4e0476, 0x1f9bb007, + 0xfff09312, 0xb2be0127, 0xb11100f2, 0x280cf093, 0xf2a7be01, 0x93b12100, + 0x012813f0, 0x00f29cbe, 0xf093b101, 0xbe01281a, 0x2700f291, 0x31db07c0, + 0x931c07d2, 0x01281bf0, 0x7ebec103, 0xd40300f2, 0xec0fccc4, 0xfb0e0b07, + 0xfff7529e, 0xfd4efe0b, 0xb486fd93, 0x0fd49905, 0x0d074686, 0xbe140c03, + 0x0701851f, 0x100c030d, 0x018516be, 0x40a73027, 0x250fd39d, 0x0ed39dd4, + 0xfd4efd8e, 0x12110419, 0xe103e447, 0x43273e87, 0x10310d39, 0x120034f5, + 0x31f1ff02, 0xff021000, 0x1c33200b, 0x1d1c5318, 0x4e071786, 0x43f14433, + 0xff021804, 0x44f14d87, 0xff021600, 0x242b232b, 0x202b1100, 0x0c1edcc4, + 0x53a04f9b, 0x4c83144c, 0x87242b0c, 0x0742273e, 0x0034f502, 0x8eff0212, + 0xbefe4efd, 0x0e01847b, 0x8c869efe, 0x27fc4e01, 0x21f49b40, 0xb3eaf393, + 0x27202705, 0x32051f4c, 0xf4c83403, 0xb3dafc93, 0x9d402705, 0xeebe0ec4, + 0x42270006, 0x2710c49d, 0x8d20094d, 0x4c2716c4, 0x15c49d23, 0xc49d4127, + 0x8d4a2714, 0x4c2712c4, 0x60c0c51e, 0x0e11c49d, 0x84259efc, 0x93f54e01, + 0x05b39ffe, 0x4960e8c1, 0x0ce489e3, 0x5007f6a3, 0xea3081c1, 0x0702c734, + 0xbe202718, 0xf6018b6c, 0x5102f10f, 0x3083c182, 0xf3c58db1, 0x81f20544, + 0x159027d4, 0x27d291f4, 0x25ffff6d, 0xc1d3a1f2, 0xf33544f2, 0x0710d489, + 0x03b407c2, 0xc50487b1, 0xf9c540f2, 0x01361e50, 0x514f6bc2, 0x50f4c523, + 0x2a092431, 0x4c03430b, 0xa1040b18, 0x3023c12e, 0x24116a4e, 0x040b4401, + 0x3e0b2429, 0x140b930b, 0xf4c16a07, 0xda410350, 0xc403ce17, 0x1e03fbf0, + 0x0ed7890e, 0x27ff4c27, 0x50f4c510, 0xd401e51e, 0x400bf955, 0xd101f445, + 0x140b0507, 0x0b241c03, 0x8a9cbe19, 0x5b0ff601, 0xbe050702, 0x5100025a, + 0x2744c684, 0x07141eb0, 0x61f19305, 0x2c270126, 0xbe30270c, 0x2700050d, + 0x3b070cbc, 0x1f070507, 0xbe182c27, 0xb10004fd, 0x18bc0381, 0x3b071c01, + 0x05072c07, 0x0004ecbe, 0x012a8389, 0x872307d9, 0x2b253343, 0xc1bc0b24, + 0xfbc550f4, 0x36920b54, 0xc5302745, 0x131e34f3, 0xc550f4c1, 0x439b34f9, + 0x35333407, 0x342b4333, 0x6207930b, 0xc150f4c1, 0x433350f2, 0x242b2533, + 0xc14cf2c5, 0x2f0754f3, 0x27182c03, 0x0b240340, 0xffed2763, 0x58f4c5ff, + 0xc538f4c5, 0xf2c55cf4, 0x00995e64, 0x0148f4c1, 0xceab094a, 0xa4110abe, + 0x0138f9c5, 0xc1940b44, 0xfb8d60f4, 0xc1f4651c, 0xf48538f4, 0xac51a431, + 0xc40bf9a5, 0xa4a1fc95, 0x0b30adc1, 0x58f4c1d4, 0xf4c5fdb5, 0x8da42930, + 0x76361ef4, 0x000444be, 0x0354f2c1, 0xf2c51c2c, 0xc1121e54, 0x360764f1, + 0x2c270507, 0x186c0318, 0x000428be, 0x2958f3c1, 0x0b3d0ba4, 0x58f3c59c, + 0xeb07740b, 0x07288489, 0x54f3c11f, 0x1c030507, 0x1c2c2718, 0xff7e74fa, + 0xc134f4c1, 0xf2c15cf3, 0x0b31034c, 0x34f4c542, 0x895cf3c5, 0xf2c12a84, + 0x1124da5c, 0x0744f7c1, 0xff3d27d6, 0xc56027ff, 0x7e1e3cf3, 0xc15cf4c1, + 0x448744f3, 0x0b34f2c1, 0x50f4c134, 0x24ab2833, 0xf3c57027, 0x60f2c548, + 0x7a01a31e, 0x093cf2c1, 0x1e24cea4, 0x1c01a111, 0x24be2c07, 0x3b070003, + 0x1a070507, 0x9abe2227, 0xa3090003, 0xf3c5dc0b, 0x21ac313c, 0x073d07a1, + 0xbe05072c, 0x51000303, 0x41cd0bab, 0x070507a1, 0xbe3c072b, 0x290002f3, + 0x0bdc07a4, 0x89940bdb, 0xbd072884, 0x05073d07, 0x94dab403, 0x036103a6, + 0x2a848974, 0x7027643a, 0x9027411e, 0xf4c1e21e, 0xa14c0140, 0x07c191cb, + 0x02bdbe2b, 0x30cac100, 0xc1b1bd0b, 0x2a070507, 0xacbe3b07, 0xc4290002, + 0xda0bdb07, 0x8489940b, 0x073d0728, 0xcf94da05, 0x0340f2c1, 0xc5240371, + 0x848940f2, 0x3147d22a, 0xe31e9027, 0x210b2387, 0x46f62401, 0x0c838051, + 0x2303330f, 0xffff7e0e, 0x02f79dbe, 0x1e0d0c27, 0xc124011a, 0x31033c88, + 0x48150027, 0x0b1ee34d, 0x11270507, 0x0188dcbe, 0xf6830327, 0xfc4ef58e, + 0x70bec007, 0xc0510185, 0xfd4efc8e, 0x07040499, 0xbe4806d0, 0x3901855f, + 0x9b45d6d4, 0xd475304f, 0x85314f9b, 0x9bfd8ed4, 0xd475484f, 0x85494f9b, + 0x4efd8ed4, 0xffcea7f9, 0xc4d1ffff, 0xb0070680, 0x91070999, 0x2744d60d, + 0xa7331ea1, 0xffffdf0e, 0x00f2c6be, 0x0680c4d1, 0x0674c3d1, 0x20274487, + 0x21273402, 0x1845c2bd, 0x1845c4b9, 0xa32744c6, 0xa127031e, 0xffdf0ea7, + 0xf27abeff, 0xf6d4a100, 0xdf0ea749, 0x90beffff, 0xb16100f2, 0x070c0c27, + 0x71eebe2a, 0xa7c00704, 0xffffdf0e, 0x00f257be, 0xcc05cde6, 0xa52cd499, + 0x9d4103dc, 0x0ea72cd4, 0xbeffffdf, 0x6100f263, 0x070907b1, 0x71c2be2a, + 0x2cd49904, 0x4487d3a1, 0xc007430b, 0x0ea74005, 0xbeffffdf, 0x0600f220, + 0x2cd499c7, 0x41033127, 0x412cd49d, 0x0b393bb4, 0x45002743, 0x27f98eb4, + 0xf98e150c, 0x0499f84e, 0x07820705, 0x6ba107b0, 0x404ff68f, 0xff9ea701, + 0x1499ffff, 0x391c9955, 0x0e2e9db9, 0x4d07c40b, 0x4f6b4c2b, 0x0ea74766, + 0xbefff1d5, 0xb902f652, 0x070e2e9d, 0x6b4c2b4d, 0x2744c64f, 0xa7f88e0b, + 0xffffffce, 0x0e2cc4b9, 0xa729d4ce, 0xfff1d70e, 0x02f62dbe, 0x0e2cc4b9, + 0x9119d4ce, 0xe33027c4, 0x04ffff4d, 0x0200004e, 0x0c273127, 0x44c3bd0c, + 0xa7f88e18, 0xffffff3e, 0x184434b9, 0x0c2744e6, 0x07f88e0c, 0xbd41034d, + 0xa70e2e34, 0xfff1d50e, 0x44c60439, 0x019227be, 0x4c834d07, 0x8724070f, + 0x2b243334, 0x33242b23, 0xd02e2323, 0xb295fff1, 0x0794a499, 0x54249d3a, + 0x3c03b491, 0x304c0370, 0x19270927, 0x01233e01, 0x34034e05, 0xf1984403, + 0x23512481, 0x33e3b425, 0xb89d4127, 0x05b49d06, 0xb055b335, 0xae99b045, + 0x07be9d1c, 0xb465a451, 0x9d1cae99, 0xa4c12d2e, 0x40a3c144, 0xa4c12435, + 0x45232548, 0x95ae9924, 0x99552e9d, 0x46561aa4, 0x9960a499, 0x44d619a3, + 0x32004127, 0x430b4027, 0x9924249d, 0x473639a4, 0xb41d4627, 0xb43d4927, + 0x2706b399, 0x2d040a4d, 0x103cc4b4, 0x1e031e0f, 0x27b451ff, 0x55440300, + 0x27f88eb4, 0x4ef88e00, 0x070451f7, 0x63320bc3, 0x07a007f0, 0xc2b107d2, + 0x03554634, 0x0a07421e, 0x2f071c07, 0x018419be, 0x4d07f301, 0x4307d302, + 0x031ef405, 0x7411f3e8, 0x4c333327, 0x1d4c5318, 0x41c84413, 0x05f301f0, + 0x2783158b, 0x05843540, 0x35931590, 0x0bf40194, 0x0bd42bb4, 0xa7101ec4, + 0xfdefff7e, 0xe7ff8ea7, 0xef9ea7fd, 0xdfd6fde7, 0xe8051eae, 0xa7061ef3, + 0xfdefff2e, 0x33272411, 0xfc6a4ddc, 0x8ef043ef, 0x51fa4ef7, 0x0bc30704, + 0x07f06332, 0x07d207a0, 0x2334c2b1, 0x1f1e0355, 0x01839dbe, 0x1b07f301, + 0xd3024d07, 0x24074307, 0xf9bef405, 0xf401017a, 0xd42bb40b, 0x1c07c40b, + 0x0a072f07, 0x43dadfd6, 0x4efa8ef0, 0x040499fb, 0x4a86d007, 0x01825ebe, + 0xdb91c027, 0xbc75dc55, 0xd151bc65, 0x97be0d07, 0xf2930183, 0x5105ad5c, + 0x7423c1d4, 0x24c5430b, 0x9d412774, 0x402756b4, 0x9d05dc9d, 0xfb8e04d4, + 0xc6040499, 0x71043947, 0x9b459603, 0x048130f3, 0x1e31f49b, 0x48f39b09, + 0xf49b0481, 0x837a9e49, 0x4efe0b01, 0x07c007fb, 0x8201beb1, 0x07c45101, + 0x554b0b0c, 0x9efb0ec4, 0x4e018360, 0x9bd007fc, 0xc1d848cf, 0xbe0d07fb, + 0x51018190, 0x17cc33d4, 0x4333402b, 0x071bcc53, 0x8e0c0b04, 0x93fc4efc, + 0x05ad5ffd, 0x26094d27, 0x625afc93, 0x6ad4ad05, 0xbd412702, 0x010269d4, + 0xbd4527c3, 0x160268d4, 0x000d2736, 0x27100708, 0xef16be20, 0x93c00500, + 0x05ad2bfc, 0x4616c401, 0x18180d27, 0x20271007, 0x00eeffbe, 0x0d07c005, + 0xf4933027, 0x030185cc, 0xd4052c0c, 0x9d09d39d, 0xfc8e08d3, 0xf093fe4e, + 0xbe05ad04, 0x0efffeff, 0x4e931efe, 0x07d007fc, 0x07c403c0, 0x030c071d, + 0x20272c1c, 0x01844bbe, 0x0c070676, 0xa2be1127, 0xf4930184, 0x0501858c, + 0x8e0327d4, 0x07f94efc, 0x99a007d0, 0xa4034902, 0x0a071d07, 0xbe2c1c03, + 0x07018420, 0xb70ff690, 0x270a0700, 0xbe02001d, 0x070183d6, 0xa70ff690, + 0xc4d49900, 0x070e41d8, 0x03b3be0d, 0xc4d49900, 0x2f1e41e3, 0x070e42d8, + 0x06c7be0d, 0xc4d49900, 0x1f1e42e3, 0x070e44d8, 0x0e69be0d, 0xc4d49900, + 0x0f1e44e3, 0x070f48d8, 0x0dfcbe0d, 0xc4d49900, 0xd49d48e3, 0xc4d499c4, + 0xd4994506, 0x4b41c049, 0xa181d499, 0x9d4103d3, 0x4d2781d4, 0x34450480, + 0xabbefb93, 0x890a0705, 0xb0be78bc, 0x0353fffe, 0x1127c00b, 0xbc8d0a07, + 0x83efbe78, 0xff3ea701, 0x4127ffff, 0x06a934bd, 0x270f3399, 0x0ef49b40, + 0x33874127, 0xb04034f5, 0xd499ff02, 0x934536c4, 0x018580f4, 0x0907d405, + 0xfd4ef98e, 0x0403d007, 0xfff7ccbe, 0xf4930324, 0x050184a0, 0x4efd8ed4, + 0xe1f493fe, 0x44010560, 0x3f1e4516, 0x061ef3e8, 0xefff2ea7, 0x272401fd, + 0x184c3333, 0xc01d4c53, 0xf493eb44, 0x010560c0, 0xff4ea743, 0x4305fde7, + 0x08001d27, 0x20274115, 0x3ea74235, 0xa7fde7ef, 0xf9f7ff4e, 0x31153405, + 0xf4933235, 0xb905ab94, 0x16027444, 0x001d2745, 0x93141e08, 0x05ae5ff4, + 0x07204489, 0x87143314, 0x03142b44, 0xf493181c, 0x0105ab6c, 0x1e451644, + 0x1ef3e83b, 0xff2ea706, 0x2401fdef, 0x4c333327, 0x1d4c5318, 0x93eb44c0, + 0x05ab4bf4, 0x4ea74301, 0x05fde7ff, 0x27411543, 0xa7423520, 0xfde7ef3e, + 0xe7ff4ea7, 0x153405f9, 0xbe323531, 0x93017b2b, 0x05ab27f4, 0xc6d14499, + 0x004d274d, 0xa0f49b01, 0x7fff2ea7, 0x19f193f9, 0x3c270560, 0x1024f180, + 0x0500ff23, 0x98240324, 0x9b4027f3, 0x4d270ef4, 0xf49b0500, 0x9b4427a0, + 0x14d1b8f4, 0xf49b0204, 0x0014d1bb, 0xbef49b02, 0x020814d1, 0x1ebaf49b, + 0x1ef3e805, 0xff2ea706, 0x2411fdef, 0x4ddc3327, 0x93effc6a, 0x05aac7f0, + 0xfd9efe0e, 0xfe4efffc, 0xf49b4427, 0xb5f49321, 0x4401055f, 0x3f1e4516, + 0x061ef3e8, 0xefff2ea7, 0x272401fd, 0x184c3333, 0xc01d4c53, 0x3ea7eb44, + 0xa7fde7ff, 0xf9f7ff4e, 0x1d273405, 0xf4930800, 0x01055f84, 0x27311540, + 0xa7323520, 0xfde7ef4e, 0x41154005, 0xf4934235, 0xb905aa68, 0x93027443, + 0x05aa5bf4, 0x01274401, 0x00273486, 0x4c060b33, 0x3b1e0516, 0x061ef3e8, + 0xefff2ea7, 0x272401fd, 0x184c3333, 0xc01d4c53, 0x3ea7eb44, 0xa7fde7ff, + 0xf9e7ff4e, 0xf4933405, 0x0105aa24, 0x27301541, 0xa7323520, 0xfde7ef4e, + 0x40154105, 0xf4934235, 0x9905aa10, 0x4fc6d144, 0x0df49375, 0x2407055f, + 0x020b2d03, 0x2ce33407, 0x7f3ce37f, 0x3c033419, 0xf932c280, 0xd8b84f9b, + 0xf940004d, 0x9b204c27, 0x4f9bb8f4, 0x004dd8b8, 0x4f9bf940, 0xd9f393bb, + 0x34d5055e, 0x4f9b0204, 0x0034d5be, 0xba4f9b02, 0x020834d5, 0x01004d27, + 0xa7a0f49b, 0xf97fff3e, 0x01802c27, 0x1034f534, 0x0300ff23, 0x27f29834, + 0x0ef49b40, 0x05004d27, 0x1ea0f49b, 0x384f9b07, 0x9bfb41d8, 0x41d8484f, + 0x89f093fb, 0x83be05a9, 0x4027fff8, 0xa721f49b, 0xfdefff2e, 0xf3e8031e, + 0x33272411, 0xfc6a4ddc, 0x65f493f6, 0x44b905a9, 0x45160274, 0xf3e8fe8e, + 0x2ea7061e, 0xc1fdefff, 0x33273c24, 0xfc6a4ddc, 0x4efe8eee, 0x07b007fa, + 0x9ba207d1, 0x41d8484f, 0x484f9bfb, 0xf49b42e3, 0x49b49948, 0x931f41c4, + 0x05ab9ffc, 0x0827c401, 0xf48b1027, 0x0c27c401, 0x8b102710, 0x27c401f4, + 0x8b112708, 0x81f493f4, 0xd53305ab, 0x44011a07, 0x08271dab, 0x4f9bf48b, + 0xfb41d848, 0x99484f9b, 0x42e37ab3, 0x43ab3347, 0x8e48f49b, 0x89f54efa, + 0xf0635404, 0x05580bc1, 0xe00989f4, 0xb489f801, 0x0f9c0312, 0xc114b289, + 0x9473f007, 0x03c18433, 0xe80ec1f4, 0xc1f80cc1, 0x05c1e406, 0x07842bec, + 0x33d00749, 0x27722b44, 0x0b272713, 0x0b8e0b63, 0x7e5c0b74, 0xfc93ff57, + 0x9905ab10, 0xc401cdd1, 0xf48b0827, 0x01ced199, 0x8b0827c4, 0x99c401f4, + 0x0827cfd1, 0x6153f48b, 0x51538153, 0xd4997153, 0x41f49bcc, 0x00cdd499, + 0x4cc4644c, 0x4127226e, 0x9941f49b, 0xf49b3fb4, 0x40b49941, 0x0141f49b, + 0x270127c4, 0x01f48b10, 0x270127c4, 0xb9f48b10, 0xd6011dd4, 0x1e202744, + 0xdcd4990c, 0x44862127, 0x21032027, 0xbd80d499, 0x240275d2, 0x1ea42743, + 0xd9d4990c, 0x4486a127, 0xa213a027, 0x23fcd399, 0x6b430731, 0x1431034f, + 0x04a10348, 0xb9a10336, 0x86011cd4, 0x27a10344, 0x41f49b44, 0xf641f29b, + 0x41f49b24, 0x21c43c1e, 0x80d39939, 0xaa5af493, 0xd9db9905, 0xc1274401, + 0xc0273304, 0x11270127, 0x1027b100, 0x4b07f48b, 0x4013c213, 0x2742f49b, + 0x42f49b40, 0x0341fc9b, 0x42fb9bb1, 0xf49bc210, 0x41fa9b42, 0xaa22fc93, + 0x27c40105, 0x8b102701, 0x23f401f4, 0x41f49b41, 0xf99b9123, 0x27c40141, + 0x8b112701, 0x27c401f4, 0x8b112701, 0x166656f4, 0x9655d686, 0x27c40175, + 0x8b102701, 0x931a1ef4, 0x05a9e7f4, 0x01274401, 0xf48b1127, 0x9b41f69b, + 0xf59b41f8, 0x41f79b41, 0x0134d4d1, 0x4ce31027, 0x004f00ff, 0x27020202, + 0x34d4b911, 0x6bb10701, 0x041027bf, 0x07112742, 0xc69f6b91, 0x1e3127b4, + 0x93390703, 0x05a9a3fc, 0x0127c401, 0xa3071127, 0x8bc8d8c1, 0x5ad4b9f4, + 0x46af6b01, 0x27c4014a, 0x8b112701, 0xb9c401f4, 0x27015bd1, 0xb9f48b08, + 0xc4015bd4, 0xa91fff4c, 0x01015ed1, 0x100c27c4, 0xc401f48b, 0x0160d1a9, + 0x1e100c27, 0x27c40107, 0x8b102701, 0x51fc93f4, 0xc40105a9, 0x10270127, + 0xc401f48b, 0x1a070127, 0xab86f48b, 0x0159d1b9, 0x0327c401, 0xc401f48b, + 0x01271907, 0xc401f48b, 0x1b070127, 0xb806f48b, 0x0135d1b9, 0x0827c401, + 0xd1b9f48b, 0xc4010136, 0xf48b0827, 0xd1b9c401, 0x08270137, 0xfa93f48b, + 0x0105a900, 0x270127a4, 0xb9f48b10, 0x66015cd4, 0x27a4014a, 0x8b112701, + 0x66d1a9f4, 0x27a40101, 0xf48b100c, 0x0164d1a9, 0x0c27a401, 0xa9f48b10, + 0x01016ad1, 0x100c27a4, 0xd1a9f48b, 0xa4010168, 0xc027491e, 0x4c534807, + 0x10cc3310, 0xc4abb807, 0xbc33a301, 0x334c0710, 0x0127104c, 0xbc531127, + 0x8bb4ab10, 0x27a401f3, 0x1027100c, 0xa401f48b, 0x27100c27, 0x8b80001d, + 0x27a401f4, 0x1b07100c, 0xf48b105b, 0xa4011b07, 0x0c271fab, 0x01f48b10, + 0x270127a4, 0x93f48b11, 0x05a867fc, 0x0127c401, 0xf48b1027, 0x0127c401, + 0xf48b1027, 0x0127c401, 0xf48b1027, 0x0127c401, 0xf48b1027, 0xa846f493, + 0x8b440105, 0x8ef043f4, 0x99fb4ef5, 0xb007d104, 0x4486c027, 0x1327c127, + 0x687e2827, 0xd0b499fc, 0x9941f49b, 0xf49bccb4, 0x15fd9341, 0xd40105a8, + 0x01271c07, 0xd401f48b, 0x10270127, 0xc027f48b, 0x9b41fc9b, 0xfc9b41fc, + 0x27d40141, 0x8b102701, 0x27d401f4, 0x8b102702, 0x42fc9bf4, 0x9b42fc9b, + 0xd40142fc, 0x11270127, 0xb199f48b, 0x27d401d3, 0x01f48b01, 0x270127d4, + 0x99f48b10, 0x4c00cdb4, 0x6e4cc464, 0xd2b19917, 0x0127d401, 0xd401f48b, + 0x10270127, 0x4027f48b, 0x9342f49b, 0x05a7a7f4, 0xf48b4401, 0xf54efb8e, + 0x077d0299, 0x450499b0, 0x275808c1, 0x27248651, 0x2744c650, 0x81111e70, + 0x86302784, 0x07312744, 0x0741c343, 0xc17f6b74, 0xb69960bd, 0xd9b999d7, + 0xa7277506, 0x4f1e2527, 0x26275e46, 0x10270b07, 0x93fb9a7e, 0x05a753fc, + 0x0827c401, 0xf48b1627, 0x0827c401, 0xf48b1127, 0xf49b4027, 0x27c40141, + 0x8b112701, 0x27c401f4, 0x8b102701, 0x27c401f4, 0x8b102702, 0x25fc93f4, + 0xc40105a7, 0xf48ba727, 0xf48bc401, 0x13272127, 0x21442e1e, 0x1227a527, + 0xb499261e, 0x994786dc, 0x434480b4, 0xe3d8b4c1, 0xc0ffff4d, 0x0300004e, + 0x27a62709, 0x1e102721, 0x27a62707, 0x07112721, 0xfb217e0b, 0xffffdd34, + 0x5e41fd9b, 0x3d0700a4, 0x3e543103, 0x07010000, 0x1e102743, 0x53430709, + 0x1c27104c, 0x004d3010, 0xa3485301, 0x104c3018, 0x14a34453, 0x42534430, + 0x421012a3, 0x210711a3, 0x530f2c03, 0x3be12724, 0x072103e1, 0x10dc2701, + 0xfff11fcc, 0x271affff, 0x07161e21, 0x110c0840, 0x41234d07, 0x330f4c83, + 0xf49b104c, 0x100c2340, 0x0307f240, 0x4d270e2b, 0xf49b8000, 0x10ec2740, + 0x21072c1e, 0x07111c08, 0x07122b2e, 0x104c2730, 0x315b422b, 0x343b2123, + 0x330f2c83, 0x3fab102c, 0xf39b32ab, 0x3b412740, 0x8b412341, 0xd311cc04, + 0x9941fa9b, 0xf49bd0b4, 0x25fd9341, 0xd40105a6, 0x27deb199, 0x06f48b08, + 0xd6b09976, 0xffff1d27, 0x0113fdbe, 0xb941f09b, 0x960275b4, 0x83818147, + 0x0000ff1f, 0x23104c80, 0x001fa311, 0x03ffffff, 0x27d40111, 0x99f48b08, + 0x4986dcb4, 0xd0d9b499, 0xb4992542, 0x2742207d, 0x99191e40, 0x43c480b4, + 0xdab49910, 0x990a43c4, 0x4447dbb4, 0x041e4223, 0x9bdbb499, 0x7b6642f4, + 0xa5b6fc93, 0x27c40105, 0x8b102701, 0xfcb399f4, 0x43073123, 0x31034f6b, + 0xc01142d0, 0x34440e33, 0x0100b4d1, 0x0d1e4124, 0x010a35c4, 0x270127c4, + 0x042e5e11, 0x255ec401, 0x1a5ff604, 0x7db49904, 0x930e42c4, 0x05a573f4, + 0x01274401, 0xf48b1127, 0xa566fa93, 0x27a40105, 0x8b102701, 0xfcb499f4, + 0x991241c4, 0x41e47db4, 0xb49901c3, 0xbc41e490, 0x00d05e01, 0x995442c4, + 0x41e47db4, 0x808101af, 0x0100b1d1, 0x011370be, 0xb4b90224, 0x4556011c, + 0x0090b499, 0x2041c442, 0xa51ef493, 0x27440105, 0x8b112701, 0x9b4227f4, + 0x402741f4, 0x2741f49b, 0x41f49b43, 0xb901ab5e, 0xe6011cb4, 0xfc016e4f, + 0xe0016a01, 0x5e016602, 0x43c400ac, 0xd183811b, 0x070100b4, 0x07110319, + 0x0b149b09, 0x1317be03, 0x480ff601, 0xc45c1e01, 0x83813844, 0x013d31e0, + 0x0100b4d1, 0x11031907, 0x149b0907, 0xf6be030b, 0x0c060112, 0xa4010124, + 0x02e40d1e, 0x92f00147, 0xa4010143, 0x11270127, 0x4027f48b, 0x1e41f49b, + 0x2f45c48c, 0x8c81d907, 0x0100b4d1, 0x1d07d103, 0x0c07149b, 0x0112c0be, + 0xb39905f6, 0xd9b499da, 0xa401432e, 0xf2ff5a5e, 0xe6010adc, 0x5e0106cf, + 0x46c4ff48, 0x00bcd149, 0x03190701, 0x9b808111, 0x1293be1c, 0xc4087601, + 0xb39910c2, 0xd9b499da, 0x00e143ee, 0xcc5ea401, 0x0dc3c400, 0x99dab399, + 0x43eed9b4, 0x3e1e00cf, 0x00c9c4f0, 0x00c50ff6, 0x99dab399, 0x43eed9b4, + 0xfd5e00bb, 0x3547c4fe, 0x04e08081, 0x19070087, 0x0100b4d1, 0x08c41103, + 0x27149b69, 0x123fbe08, 0x700fd601, 0x99dab399, 0x43ced9b4, 0x27a40167, + 0x8b112701, 0x9b4027f4, 0x331e41f4, 0xd15548c4, 0xc40100b4, 0x19073342, + 0x80811103, 0x0ebe1147, 0x0c360112, 0x99dab399, 0x43ced9b4, 0x27a40137, + 0x8b112701, 0x9b4027f4, 0x848141f4, 0x42274824, 0x27fea35e, 0xfe9e5e43, + 0x071943d0, 0x03808119, 0xbe149b11, 0x960111d9, 0xdab39905, 0xeed9b499, + 0x99ff1934, 0x43c480b4, 0x7db49923, 0x991d41c4, 0x4736ddb4, 0xa37af493, + 0x27440105, 0x8b112701, 0x9b4027f4, 0x412741f4, 0x93fe5b5e, 0x05a363f4, + 0x01274401, 0xf48b1027, 0xc47db499, 0xb4997d42, 0x4044c4fc, 0x31c08381, + 0x00b4d165, 0x03190701, 0x9b090711, 0xbe030b14, 0x44011175, 0x31f49301, + 0x440105a3, 0xf3930d1e, 0xc405a328, 0x34011202, 0x11270127, 0x4027f48b, + 0x2741f49b, 0x01251e41, 0xc4321e34, 0x49072845, 0x41038381, 0xc61f43d2, + 0xfdf49337, 0x440105a2, 0x11270127, 0x4027f48b, 0x9b41f49b, 0x432741f4, + 0x1e41f49b, 0xe1f4930e, 0x440105a2, 0x10270127, 0xb499f48b, 0x1b41c07d, + 0xe6dcb499, 0xd8b4c146, 0xffff4de3, 0x00004ee4, 0x99016903, 0x43e480b4, + 0xb4990162, 0x2042c4fc, 0xe490b499, 0x81014841, 0x424fe684, 0xa1f49301, + 0x440105a2, 0x11270127, 0x4627f48b, 0xc401235e, 0x92d07344, 0x8109073a, + 0x00b3d184, 0x07910301, 0x9b040b19, 0x10b7be13, 0x1202e401, 0x71f49301, + 0x440105a2, 0x11270127, 0x4227f48b, 0x2741f49b, 0x41f39b30, 0xf49b4327, + 0x5e412741, 0x91e400bd, 0x808100ed, 0x0100b1d1, 0x11470103, 0x011080be, + 0x00db01e4, 0xa23af493, 0x27440105, 0x27f48b11, 0x41f49b42, 0xf49b4027, + 0x9b332741, 0xf49b41f3, 0x00b35e41, 0xd14246c4, 0xf00100b4, 0x0700b044, + 0x81c103c9, 0x9b1c0780, 0x0ff4be14, 0x0b4c4701, 0x93d0074c, 0x05a1fbf3, + 0x011a40ce, 0x27012734, 0x81f48b11, 0x724dce84, 0xf49b4227, 0x9b402741, + 0x661e41f4, 0x7d1e3401, 0xd14a48c4, 0xd00100b4, 0xc9076c43, 0xc1038d81, + 0x149b1c07, 0xafbe0d07, 0xcc47010f, 0x9357c0ce, 0x05a1b7f3, 0x3401d824, + 0x3401321e, 0x11270127, 0x4227f48b, 0x2741f49b, 0x41f39b30, 0xf49b4327, + 0x41f49b41, 0x9b41f39b, 0x371e41f3, 0x812747c4, 0x2248c484, 0xa182f493, + 0x27440105, 0x8b112701, 0x9b4327f4, 0x422741f4, 0x2741f49b, 0x41f49b40, + 0x1e41f49b, 0x61f4930e, 0x440105a1, 0x10270127, 0xb499f48b, 0x164546d1, + 0xd5b49955, 0x2341f49b, 0xf69b1a6c, 0xd8b49942, 0x402745e6, 0x9b41f49b, + 0xf49b42f4, 0x27061e42, 0x41f49b41, 0xfc930b07, 0x03059e30, 0x78cb8904, + 0xfff122be, 0xb00b0353, 0x8e78cb8d, 0x07fc4ef5, 0x0dfc93d0, 0x081e05a1, + 0xdc234401, 0x27f48bff, 0xff1c2708, 0xdccc4c07, 0xc401efff, 0xf48b1d07, + 0xfc4efc8e, 0xd63ec107, 0xfc0e0c07, 0xf94ed01e, 0x26271027, 0x1cbea007, + 0xa1b9fff5, 0x05270262, 0x3e101c03, 0x07ba07de, 0x93c027da, 0x05a0c3f9, + 0x0175d1b9, 0x08279401, 0xf48bc103, 0xccc4d103, 0xd027ef10, 0xa0aafc93, + 0x010b1e05, 0x84b1b9c4, 0x8bd10301, 0x62a4b9f4, 0x03082702, 0xecd4dab1, + 0xa092f493, 0x8b440105, 0x4ef98ef4, 0x27b007f8, 0xbe262710, 0xd1fff4bf, + 0xb90124bc, 0x070128b9, 0xb9a183ac, 0x160129b8, 0x279520a5, 0x27031e16, + 0x2d0c2714, 0x27ff6d7e, 0x41f49b40, 0xa052fd93, 0x27d40105, 0x8b102701, + 0x27d401f4, 0x8b190707, 0x27d401f4, 0x8b1a0701, 0x07d401f4, 0x8b062718, + 0x01c153f4, 0x831c07d4, 0x8b012711, 0x01c153f4, 0x831c07d4, 0x8b012711, + 0x01c153f4, 0x831c07d4, 0x8b012711, 0x01c153f4, 0x831c07d4, 0x8b012711, + 0x27d401f4, 0x8b102701, 0x27d401f4, 0x8b102701, 0xc0a9b6f4, 0xb1b92995, + 0xd401012a, 0xf48b0427, 0x012bb1b9, 0x0427d401, 0xb1b9f48b, 0xd401012c, + 0xf48b0427, 0x012db1b9, 0x0427d401, 0xfc93f48b, 0x01059fc0, 0x270827c4, + 0x27f48b10, 0x41f49b41, 0x0127c401, 0xfc931027, 0x8b059fac, 0x8bc401f4, + 0x8bc401f4, 0x27f88ef4, 0x402b104c, 0x143b0123, 0x330f0c83, 0x1fab100c, + 0xf19b10ab, 0x07fe0b40, 0x1e310330, 0xfa4da308, 0xbcf49b03, 0x41070123, + 0x4183405b, 0xfe0bf370, 0xf3930f6b, 0x93059f64, 0x059f63f2, 0xf4130586, + 0x133405d7, 0x091e4df4, 0x05b5f413, 0x05f41334, 0xfe0b2405, 0x80004d27, + 0x2740f49b, 0x1e02203d, 0x22f39b10, 0xf49b4027, 0x8b00070e, 0x22f49bff, + 0xd8484f9b, 0x4f9bec41, 0x174c3348, 0x131b4c53, 0xa6478348, 0x83412345, + 0x4c330f4c, 0x40f49b10, 0x4d27fe0b, 0xf49b03fb, 0x403d27bc, 0x9b101e02, + 0x402722f3, 0x070ef49b, 0x9bff8b00, 0x4f9b22f4, 0xec41d848, 0x33484f9b, + 0x4c53174c, 0x8348131b, 0x0345e647, 0xfa3d2741, 0x9b041e03, 0xf4d0bcf3, + 0xf04efe0b, 0xdf3bcf5b, 0xfc4efe2b, 0xe3be0f07, 0xff1effe6, 0xfe0b0127, + 0xd007fd4e, 0x0886f73e, 0xe1b32ea7, 0x082499fe, 0x931a4dce, 0x064937f1, + 0x4fff4ea7, 0x9d4311fd, 0x1199082d, 0x9d230544, 0xfd8e0921, 0x491ef193, + 0x09239906, 0xce4414c1, 0xfd8edf43, 0xffff3ea7, 0x093499fe, 0xffff1ea7, + 0x034383ff, 0xd1348741, 0x33069012, 0xf1432b44, 0x00004843, 0xd12b16ff, + 0x27069c14, 0x2e34c201, 0x2027f1ab, 0x24f92846, 0xff011e94, 0x42874926, + 0x300043f1, 0x34d8ff02, 0x5021031d, 0xeb018325, 0xc4fe0bf1, 0x2103df21, + 0x1eda21c4, 0xab0027fa, 0x1e2027f1, 0xeb0027d0, 0x4efe0bf1, 0x860f6bfe, + 0xa1f49305, 0x43990648, 0x8e349605, 0xff467efe, 0x4fbe0366, 0xf29302d7, + 0xa7055650, 0xfefdf33e, 0x01304c27, 0x05340331, 0xa8240321, 0x9b4027f4, + 0xf3930ef4, 0x0105a65c, 0x61f49333, 0x43050648, 0xfa4efe8e, 0x1e62f093, + 0xd8a7be01, 0x62f09300, 0x9ebe011e, 0x4ea700d8, 0x49fff9b3, 0x77f09342, + 0xa207011e, 0x270cac33, 0x3a070c1c, 0x00d884be, 0xf9adbea7, 0x0ddc27ff, + 0x1d07b209, 0xcd3bc207, 0x1e54f093, 0x033c0701, 0xd867beb2, 0x03ac0b00, + 0x70bfc4d1, 0xe1ff0006, 0xf9b3cea7, 0x32c189ff, 0x1e59f093, 0xd84bbe01, + 0xb1c1a100, 0x072107c3, 0x60f0934a, 0x2a2b011e, 0x369efa0e, 0xfe4e00d8, + 0x00e1a9be, 0xffff3ea7, 0x933411fe, 0x011e7df0, 0x41f14487, 0xff001530, + 0x00d818be, 0x635efe0e, 0xa7fe4eff, 0xfdebef2e, 0x23053027, 0x00004e27, + 0x07241504, 0x0ef39be1, 0xefff3ea7, 0x0c34d1fd, 0x240c0301, 0x53184c33, + 0xec031d4c, 0x1444c424, 0x43272307, 0x23d1f4e8, 0x3c33010c, 0x1d3c5318, + 0xa7f034c0, 0xfde3df3e, 0x1d273005, 0x31150cbc, 0x32352027, 0xe3cf4ea7, + 0x154e05fd, 0xff3ea741, 0x4235fdef, 0x4c333451, 0x1d4c5318, 0x071244c4, + 0xe8432723, 0x332351f4, 0x3c53183c, 0xf234c01d, 0xe7bf4ea7, 0xbc0d03fd, + 0x2740050c, 0x150cbc2d, 0x35302742, 0xa7e20b43, 0xfde7af4e, 0x42154e05, + 0xfe8e4335, 0x4712f493, 0xa7400106, 0xffffff1e, 0x4eff505e, 0xffdea7fc, + 0x0227ffff, 0xdcd11027, 0x1ebe0690, 0xd4b902d6, 0x31270e20, 0x3027c486, + 0x308b4153, 0x438b41c3, 0x012744c6, 0x4ea7fc8e, 0x01fd4fff, 0x27002742, + 0x0ef49b40, 0xd3991127, 0xcb123b0e, 0xbf3ea713, 0x1138fd4f, 0x34054127, + 0x34031153, 0x312712d6, 0xcfff4ea7, 0x6043c5fd, 0xf193fc8e, 0x01068f14, + 0x7f0c0313, 0x8f06f493, 0x7f0ce306, 0x4201030b, 0x03071005, 0xfe0b020b, + 0x3ea7fe4e, 0x27ffffff, 0x0d329940, 0x06aa34bd, 0x20272410, 0x41f14287, + 0x00019b60, 0x009e0127, 0xfd4e00da, 0x4fff3ea7, 0x683dc1fd, 0x4de34d07, + 0x4fc4f00f, 0x56630100, 0x7434c14d, 0x00004ed8, 0x2ea77201, 0xa1d07fff, + 0x5324a121, 0x4c830c4c, 0x0f4cc00f, 0xa124a10f, 0x83285322, 0x23d40f2c, + 0xa1fd8e09, 0x8e23a124, 0xff1d83fd, 0xb0f0930f, 0x3227011d, 0x6abe4227, + 0x042700d6, 0x1ddaf193, 0xd99d9e01, 0xcdf09300, 0x56be011c, 0xf09300d6, + 0x27011cef, 0x6371021f, 0xd647be56, 0x931d0700, 0x011d04f0, 0x00d63cbe, + 0xf1930427, 0x9e011d1f, 0x2700d96f, 0x45f19304, 0x649e011d, 0xfa4e00d9, + 0xf093f523, 0xbe011dd5, 0x9300d619, 0x011de5f0, 0x00d610be, 0x4743fb93, + 0x32dea706, 0xa027fffc, 0xa1030d1e, 0x0310bc03, 0xacc014dc, 0xed076210, + 0xec01e123, 0x0000ced8, 0xb059e903, 0xb123b319, 0xb103b419, 0x9908b299, + 0xf20509b1, 0xe201f115, 0x2c53be39, 0x25218312, 0x53d119f2, 0xf13510cc, + 0x5507d2c1, 0x450e3bf0, 0xc1f065f2, 0x2c070bde, 0x23831a07, 0x1dc5f093, + 0x03c02701, 0x85fe75a1, 0x10bc03fc, 0x00d59cbe, 0xc414dc03, 0x93a010ac, + 0x011de2f0, 0x00d58cbe, 0xffffcea7, 0x00c1b9ff, 0xfcc2c101, 0x1de1f093, + 0xd577be01, 0xeef09300, 0x6ebe011d, 0xc1c100d5, 0x00cab9fc, 0xe2a10b01, + 0x0700c4a1, 0x00a35ed1, 0x007c21f9, 0x1fe6ff00, 0xe4070094, 0x4733ea33, + 0x007f23f9, 0xe42bff00, 0x008322f9, 0xef03ff00, 0x0006ab48, 0x1507e499, + 0x99f305f2, 0x210705e3, 0xe3c1f325, 0x99f33538, 0x300790e1, 0xe099f145, + 0x551d0791, 0x92ec99f0, 0x1dc9f093, 0x99fc6501, 0xfb7593eb, 0x8594ec99, + 0x95eb99fc, 0xec99fb95, 0x99fca596, 0xfbb597eb, 0xc598ec99, 0xeb9930fc, + 0x34fbc599, 0xc59aec99, 0xeb9938fc, 0x3cfbc59b, 0xc59cec99, 0xeb9940fc, + 0x44fbc59d, 0xc59eec99, 0xeb9948fc, 0x4cfbc59f, 0x00d4c0be, 0xadced103, + 0x834d071d, 0x24070f4c, 0x20f92333, 0xff00007e, 0xff4e0fe6, 0x007c21f9, + 0x4f5eff00, 0x8ef503ff, 0x93fc4efa, 0x068caffc, 0xc160cec1, 0xc2c154c1, + 0x64c38958, 0x6366c489, 0x93fe05f0, 0x011da3f0, 0x00d478be, 0x1de5f093, + 0xd46fbe01, 0x11c21900, 0xf8f093c3, 0x1027011d, 0x00d460be, 0x270ccc03, + 0x11c219d1, 0x931d07c3, 0x011de2f0, 0x4abed103, 0xcc0300d4, 0xead7c40c, + 0x1de4f093, 0x0ef04301, 0xd4379efc, 0x93fe4e00, 0x011df4f0, 0x00d42cbe, + 0x00dfd2be, 0x7efbf17e, 0xfe0efdfe, 0xfb4e841e, 0x27100499, 0xc14153d1, + 0xb1073803, 0xd43bc207, 0xbf6bd3ab, 0x1027cf6b, 0x27112c27, 0x8b413b41, + 0x8611034d, 0x9004994d, 0xe433e407, 0x9b1cef03, 0x4cc00006, 0xe3b915ff, + 0xe4b90184, 0x3b2b0185, 0xe4bd4c2b, 0xe3bd0185, 0x04990184, 0x33e40791, + 0x1cef03e4, 0xc000069b, 0xb915ff4c, 0xb90184e3, 0x2b0185e4, 0xbd4c2b3b, + 0xbd0185e4, 0x030184e3, 0xa8f2f002, 0xfc4efb8e, 0xdc83d007, 0xa7cd070f, + 0xffffdf0e, 0x40bec333, 0xc4f900d8, 0xff00007c, 0x1f104cdc, 0x0a330d07, + 0x0d2bd733, 0xfd104ca3, 0x00007cc4, 0x480f03ff, 0x270006ab, 0x7e202711, + 0x0ea7ff4e, 0xbeffffdf, 0xa700d7ec, 0xffffff4e, 0xa70e4199, 0xfff95d0e, + 0x159efc0e, 0xf49300db, 0x89068fc4, 0xfe0b5440, 0x427af493, 0x0b405906, + 0x07fa4efe, 0x07d007c1, 0x27f463b2, 0x6b102702, 0xd1f7bebf, 0x07c5d602, + 0xf64b8b40, 0x4301184f, 0xc4fa8ef4, 0xf193fac2, 0x07068ba8, 0xdbf39321, + 0x1d0302d3, 0xf49303d3, 0x0505a0a0, 0xe3310743, 0x3ce37f2c, 0xd31d237f, + 0x03241903, 0x23c2802c, 0x7df393f9, 0x2027068b, 0x05f54c27, 0xc8340332, + 0x3c4d27f4, 0x8d312702, 0x139d0814, 0x072027b2, 0x114c273f, 0x34033205, + 0x4227f4c8, 0x9d05f49d, 0xf49d07f4, 0x55f29306, 0x3f07068c, 0x01114c27, + 0x05340330, 0xa8240320, 0xd04c27f4, 0xd5483c27, 0xd502f414, 0xa702ac13, + 0x21f39320, 0x4827068e, 0x34033205, 0xf393f4c8, 0xa7068e34, 0x27a82720, + 0x23320548, 0xb83403a1, 0x934027f4, 0x06421ffc, 0x024714bd, 0x94f4f393, + 0xfdf49300, 0x0c07068a, 0x1315b127, 0xbe50c4c5, 0x9d02d0d7, 0xbbbe05cb, + 0xcb9d02d0, 0x04ca9d0d, 0xd41d4227, 0x4fff3ea7, 0x273201fd, 0x0ef49b40, + 0xffff3ea7, 0x0e3499ff, 0x323b3127, 0x2ea734cb, 0x38fd4fbf, 0x05412731, + 0x03315324, 0x2732d624, 0xff4ea731, 0xf443fdcf, 0x8e6043c5, 0xb5fc93fa, + 0xc4990641, 0x27473605, 0xa7d21d20, 0xffffff3e, 0xf4434027, 0x184634ad, + 0x184432bd, 0x457efa8e, 0x070686f8, 0xd061be0c, 0x05c49902, 0xbed94fc6, + 0x1e02d042, 0xd04dbed3, 0x6be91e02, 0x3330070f, 0x2b008734, 0x843f0330, + 0x190006e3, 0x0941c434, 0x01274227, 0xfe0b341d, 0xfe0b0027, 0xfc4efe0b, + 0xfcabd007, 0x3ea7cb76, 0xc1ffffff, 0x4dc2fc34, 0x3fdc2715, 0x0ea7c566, + 0xbeffffdf, 0xeb00d610, 0x8e0d07fc, 0x0033b9fc, 0xd24d1b01, 0xdc830e34, + 0xf9d3330f, 0x00007cdd, 0x27da1eff, 0xa7d61ed0, 0xffffdf0e, 0x00d60abe, + 0x4ea7bd1e, 0xb9ffffff, 0xc1010041, 0x1926fc40, 0x3c833007, 0xf933330f, + 0x00007e34, 0x074756ff, 0x03402721, 0x7c34fd01, 0x07ff0000, 0x0f3c8330, + 0x11233333, 0xa70ff2f0, 0xffffff4e, 0x010041bd, 0x0bfc40c5, 0x7e34f9fe, + 0xc6ff0000, 0x4ea7d44f, 0xbdffffff, 0xc5010041, 0xfe0bfc40, 0xf1932fab, + 0x03068914, 0x14890f2c, 0xab247364, 0x27242e3f, 0x07fe0b01, 0x0f4c0343, + 0x73661389, 0x0e002744, 0x0b012734, 0x93fd4efe, 0x0688ebfd, 0x8660d0c1, + 0xd3b4be08, 0x27402700, 0xd4c5152c, 0x273d0760, 0x05420710, 0x03212331, + 0x27f4b834, 0x66d28d40, 0x8e64d48d, 0xddf493fd, 0x4099063f, 0x0b0f4b64, + 0xb34ea7fe, 0x4149fff9, 0xf9ad0ea7, 0x0c1c33ff, 0x270d2c27, 0x04090f3c, + 0x423b0203, 0x2103140b, 0x4ea7f398, 0xa1fff9b3, 0x0b012b40, 0xa5f493fe, + 0x4099063f, 0xc6fe0b14, 0xd4079e04, 0x27010700, 0x201e2720, 0xd19e03d7, + 0xfd4e00d4, 0x1007d007, 0x934c2c27, 0x06427bf0, 0x00c75cbe, 0x0d070806, + 0x426ef393, 0x134c2706, 0x04030201, 0x34033205, 0x3127f4a8, 0x3fd6f493, + 0x0a439d06, 0xf493fd8e, 0x99063f54, 0xfe0b5440, 0x3f4af493, 0x5040c106, + 0xf493fe0b, 0xc1063f40, 0xfe0b4c40, 0x8c76f493, 0xb443d106, 0xff3f0402, + 0xfdffffff, 0x06e7fd01, 0x0b002700, 0x1df493fe, 0x4021063f, 0xf493fe0b, + 0x11063f14, 0x93fe0b40, 0x063f0bf4, 0x0b444099, 0x01f493fe, 0x4041063f, + 0xf94efe0b, 0xc107a007, 0x4714ac23, 0x091a0b11, 0x99d00713, 0x3e662409, + 0x40070c07, 0x3b0c4c23, 0x23d20149, 0x0be48731, 0x0b4387e2, 0x01130d4e, + 0x320cc24b, 0x493b4427, 0x30072047, 0x22231e07, 0xe007d407, 0x142b3123, + 0xd0132a0b, 0x3ccaec2b, 0x27012341, 0x0b403b41, 0x0d31274b, 0x23140523, + 0x581d0b22, 0x8e0b07fe, 0x034c07f9, 0x27244741, 0x0c071cec, 0xec2b2a0b, + 0x1a1d4cd4, 0x01031207, 0xfef02203, 0x07b02707, 0x09f98e0b, 0x1e31e613, + 0x1ee1278a, 0x1ee127bd, 0x930230e4, 0x01190af0, 0xf393fe0b, 0x27063ed0, + 0x5d309d40, 0x34c50027, 0x30fe0b60, 0x16f09302, 0xfe0b0119, 0x3e3ef393, + 0x1d402706, 0x2704c634, 0x27341d41, 0xa7fe0b00, 0xffffff4e, 0x0e2440d5, + 0x1ea70886, 0x41fdafff, 0xff2ea713, 0x300bfd8f, 0x24211305, 0x4ce30027, + 0x11242510, 0x103ca323, 0xfe0b2315, 0x8fff3ea7, 0x273411fd, 0x104ce300, + 0xfe0b3415, 0x3e66f493, 0x6840c506, 0x01830753, 0xffff4ea7, 0x45409dff, + 0xfe0b0027, 0x41234007, 0xc01442d0, 0x08c01104, 0x100c400e, 0x93200c20, + 0x0118b9f0, 0xf393fe0b, 0x99063e34, 0x408b5634, 0xf0934536, 0x0b0118ca, + 0x54309dfe, 0xfe0b0027, 0xf9b33ea7, 0x3434c1ff, 0x30c5040e, 0x0b002734, + 0x930230fe, 0x0118d1f0, 0x4ea7fe0b, 0x91d07fff, 0x103c3c43, 0x18eef093, + 0x93fe0b01, 0x063d77f3, 0x349d4027, 0x2704e614, 0x14349d41, 0xfe0b0027, + 0x02490469, 0xc03042ce, 0x2a201928, 0x1937f093, 0xa7fe0b01, 0xfd4fff4e, + 0xd87443c1, 0x0000003f, 0xf393eb01, 0x27063d40, 0x9d002741, 0x349d1732, + 0x16329d15, 0xf093fe0b, 0x0b0118dc, 0x930120fe, 0x011936f0, 0xf393fe0b, + 0x9d063d1c, 0x41271930, 0x349d0027, 0x27fe0b18, 0x10fe0b01, 0x0100000e, + 0xffff0d27, 0x3cfef493, 0x27401506, 0x30fe0b00, 0x38f09302, 0xfe0b0119, + 0x3ceaf493, 0x27403d06, 0x11fe0b00, 0x54032102, 0x3cd0a32c, 0xf0930f47, + 0x0b01196c, 0x3ef093fe, 0xfe0b0119, 0x3cc6f493, 0x45002706, 0x0b423543, + 0x000d3cfe, 0x74f09307, 0xfe0b0119, 0x93c80c3c, 0x011993f0, 0x0027fe0b, + 0xfc4efe0b, 0x3c9efc93, 0x21d00706, 0xc8dd83c4, 0x07d4ab07, 0x86d33e0d, + 0x25fc8e04, 0x4efc8ecd, 0x81fc93fc, 0xcd21063c, 0x0d07d0eb, 0x0486bc3e, + 0xcd25fc8e, 0x0430fc8e, 0x197bf093, 0x93fe0b01, 0x063c63f3, 0x309d4127, + 0x9d00271b, 0xfe0b1a34, 0x3c52f493, 0x2e409906, 0xf493fe0b, 0x99063c48, + 0xfe0b2f40, 0x3c3ef493, 0x5c408906, 0xf493fe0b, 0x89063c34, 0xfe0b5a40, + 0x3c2af493, 0x5e408906, 0xf493fe0b, 0x89063c20, 0xfe0b5640, 0xf0930230, + 0x0b01194a, 0x963127fe, 0xa7302704, 0xffffff4e, 0x43bd0027, 0xfe0b152c, + 0x893af393, 0x52348906, 0x4127044e, 0x8d69349d, 0x00275230, 0xf393fe0b, + 0x89068924, 0x044e5034, 0x349d4127, 0x50308d69, 0xfe0b0027, 0x890ef393, + 0x54348906, 0x4127044e, 0x8d69349d, 0x00275430, 0xf493fe0b, 0x890688f8, + 0xfe0b5240, 0x4c27fd4e, 0x07407b3e, 0x1841d8d0, 0xc04504c0, 0x01c05705, + 0x1303c02d, 0x3b96f493, 0x5d002706, 0x93fd8e4d, 0x0118f2f0, 0xb53efd8e, + 0x0fabc93e, 0x01030087, 0x00000ed0, 0xf0931501, 0x8e011918, 0xf8e87efd, + 0x93d206c8, 0x0118f1f0, 0x7b7efd8e, 0x93c61eff, 0x063b5bf4, 0x31272227, + 0x429d0027, 0x65439d44, 0xfd8e425d, 0x3b46f493, 0x27312706, 0x9d002722, + 0x425d5443, 0xf54efd8e, 0xf0c5f6e3, 0x24029958, 0x4f073127, 0xe007323b, + 0xc5404c03, 0xf3c554f2, 0x5cf1c54c, 0x0714ec23, 0x68f4c52f, 0x27103c27, + 0x03240540, 0xc1f3b824, 0x20274cf3, 0x4a273123, 0xc540fec5, 0x6c2748f2, + 0x60f3c50d, 0xc164f4c5, 0x238940f2, 0x1827891a, 0xf050f3c5, 0xc100b172, + 0x34ee4cf4, 0xf2c100aa, 0x23460754, 0x423b0d4c, 0x8758f2c1, 0x0b230104, + 0x007fe603, 0x50f4c101, 0xe260f2c1, 0x07010324, 0x54f2c146, 0x3b0c4c23, + 0x50f2c142, 0x420b6123, 0x81275487, 0x3027530b, 0xa207863b, 0x10076103, + 0x2744f3c5, 0x01c70790, 0x073f0702, 0x83465b42, 0xd4870f4c, 0x34013d0b, + 0xe48be807, 0x00854fe6, 0x3207b407, 0x3407e4d6, 0x4307b207, 0x4bce480b, + 0x03120577, 0x03040314, 0x48fcf091, 0x34013f07, 0x14054546, 0x14034027, + 0xf2c13405, 0xce340368, 0xf3c1ed32, 0x6936ce5c, 0xc144f4c1, 0x471b40f3, + 0x8d18348d, 0xf4c11a3a, 0x64f2c140, 0x21234203, 0xc540f4c5, 0x610364f2, + 0xff2d2ff6, 0xc348f0c1, 0xc1f58ef6, 0xa4ea60f4, 0x4907ff7f, 0x41033707, + 0x74ca392b, 0x017ee658, 0x05040302, 0xa8140312, 0x059a1ef3, 0xc18f1e32, + 0x4f0744f2, 0xd40b5305, 0x40272203, 0xa1035403, 0x0544f2c5, 0xff775ed4, + 0x2750f2c1, 0xc52a2e41, 0x8d1e48f4, 0xf4c54027, 0xc1861e48, 0x302750fa, + 0xf3c51007, 0xff5e5e44, 0x2750fac1, 0xc5100790, 0x9f1e44f9, 0xa81e3127, + 0xc007fc4e, 0x27f90d7e, 0x270c0e41, 0x8e040740, 0x07fc4efc, 0xffcf03c0, + 0x8303ffff, 0x000000cf, 0x271c07fc, 0x163c2720, 0x00ce1cbe, 0xf9b34ea7, + 0xc53027ff, 0x43c5404c, 0x3840c53c, 0xfa4efc8e, 0xdc23d007, 0x0bc24714, + 0x14dc03cd, 0x0924de99, 0x3b4127c0, 0x0bb0074e, 0x074223b3, 0x32d301a3, + 0x8e0127b4, 0x0c2c23fa, 0x020b2e3b, 0x030b0087, 0x33be2a87, 0x412700c1, + 0xcb0d0027, 0x8e31d49d, 0x99f74efa, 0x41272403, 0xf063433b, 0x0b018407, + 0xf1057007, 0x8333d107, 0xc0079487, 0xc249a027, 0x1b070d07, 0xa1032287, + 0x00c0fdbe, 0xd80bb90b, 0xacc4c203, 0x7499e910, 0x077c0124, 0x9d4103d4, + 0xf4012474, 0x7405d603, 0x1f070707, 0x31272d07, 0x6b7efc05, 0xb10596ff, + 0x3b412773, 0xb5340b4d, 0x8ef04373, 0x4efe0bf7, 0xff4ea7fd, 0x43b9ffff, + 0xd007152c, 0x3776df6b, 0x4bdaf493, 0xd43d2705, 0x07242707, 0x15430504, + 0x0e4d2542, 0xc4389efd, 0x58f09300, 0x52be0116, 0xdd1e00c9, 0xf493f54e, + 0xd10638fc, 0x0702d44a, 0x3cab71d0, 0x8e0027b4, 0x24ac89f5, 0x0c071b07, + 0x93fb5e7e, 0x063867f6, 0x07156499, 0x604fc650, 0x99166799, 0x78231768, + 0xbcd88823, 0xa9894a10, 0x20ab8922, 0x2e20d489, 0x22d489b4, 0x936c49ce, + 0x05482ff4, 0xdb8d4c79, 0x22d98d20, 0x9d47d59d, 0xd89d45d7, 0xf5aa7e46, + 0x9d22d489, 0xdc9d49d0, 0x1a639944, 0x4d140127, 0x002702d0, 0x34b60047, + 0x27fb9d7e, 0x89f58e01, 0xab8920a9, 0xc0b61e22, 0x120321cd, 0x0322cdd4, + 0x82cd2055, 0x81cd0001, 0x21cd4402, 0xff4ea701, 0x43c1fd4f, 0x003fdc74, + 0x51010000, 0x80277027, 0xd499811e, 0x9054ce47, 0xce45d499, 0xd4998a74, + 0x8484ce46, 0x7e49dc99, 0xc0eef540, 0xf393ff7b, 0x390547a8, 0x364fe634, + 0x993c79ff, 0xc4ee44d4, 0x2a5eff6e, 0x21cdc0ff, 0xcdd0b411, 0x03be1121, + 0x077fdfcd, 0xd44fab4c, 0xa21eb342, 0x82277227, 0x4eff315e, 0x6b1f6bfe, + 0xa716260f, 0xffffff3e, 0x166c34d1, 0x34d54103, 0x0786166c, 0xffff4ea7, + 0x6c40d1ff, 0x121c2716, 0x72be0123, 0x442700fb, 0x167804fd, 0x0027ff00, + 0xf493fe8e, 0x89068488, 0xfe0b5040, 0x011000d1, 0x83190c53, 0x4efe0b01, + 0x2204c4fe, 0x41071111, 0x4fd44123, 0x10000000, 0x1024d120, 0x0c21d501, + 0x004fa301, 0xd5800000, 0x8e011024, 0x930627fe, 0x0114e8f1, 0x00cb0a9e, + 0x1505f193, 0xcb019e01, 0x07f94e00, 0xc4b207c1, 0x01730c0c, 0x1102071d, + 0x3e19211a, 0x660a76a8, 0x3dd4c0da, 0x4d234a07, 0x4fd403e8, 0x3b9ac619, + 0xd1c30160, 0xc50110b4, 0xc311ecb3, 0x00004fa3, 0xb3c51000, 0xd5cc21f0, + 0xc50110b4, 0xf98ef4bc, 0xafc6d956, 0x930427dd, 0x011544f1, 0x00caaa9e, + 0x4d234907, 0x4f1403e8, 0x3b9ac619, 0x27b6a9c2, 0x65f19304, 0x909e0115, + 0x062700ca, 0x14d5f193, 0xca859e01, 0x93062700, 0x0114a2f1, 0x00ca7a9e, + 0xf1930427, 0x9e01156e, 0x4e00ca6f, 0x1a04c4fe, 0x11c81111, 0x1024d120, + 0x0821d501, 0x004fa301, 0xd5400000, 0x8e011024, 0x930627fe, 0x01156ff1, + 0x00ca469e, 0xf1930627, 0x9e0115a0, 0x4e00ca3b, 0x0c0cc4fe, 0xa5f49322, + 0x43c10636, 0x93389644, 0x054617f4, 0x431d3127, 0x43151301, 0x43251311, + 0x41351121, 0x0627fe8e, 0x1598f193, 0xca099e01, 0x93062700, 0x0115b9f1, + 0x00c9fe9e, 0x0cc4fe4e, 0xf2932444, 0x270545e4, 0x3d320741, 0x103c0324, + 0x01114c27, 0x05140310, 0xa8340330, 0x032479f4, 0x8e247d41, 0x930627fe, + 0x0115c6f1, 0x00c9ca9e, 0x2007fe4e, 0x15f40cc4, 0x45aef393, 0x27030705, + 0x03345d41, 0xafbe540c, 0xfe8e00bd, 0xf1930627, 0x9e0115d0, 0x4e00c9a3, + 0x7ed007fd, 0x0876f312, 0x0110d4d1, 0x4fa32027, 0x04000000, 0x0110d4d5, + 0xf4933027, 0xd50635f8, 0xd5064442, 0x8e064843, 0x930627fd, 0x0115cef1, + 0x00c96e9e, 0xc107fc4e, 0x04c4d207, 0xf2d87e29, 0xd4d10a16, 0xcc010114, + 0xd5104ca3, 0x270114d4, 0xc1f49320, 0x30270635, 0xd5d0dcc5, 0xd5064442, + 0x8e064843, 0x930627fc, 0x0115c6f1, 0x00c9329e, 0xf1930627, 0x9e0115ea, + 0x4e00c927, 0x07c107fc, 0x1804c4d2, 0xf6f2917e, 0x14d4d107, 0xa3cc0101, + 0xdcc5204c, 0x14d4d5d4, 0x27fc8e01, 0x90f19306, 0xfc9e0115, 0x062700c8, + 0x15b4f193, 0xc8f19e01, 0xc4fe4e00, 0x310f140c, 0xbd412711, 0xd5015024, + 0x8e014821, 0x930627fe, 0x0115d5f1, 0x00c8d29e, 0xe007fe4e, 0xe4540207, + 0xf1930627, 0x9e0115ea, 0x1900c8bf, 0x87420712, 0x2b443332, 0xca440343, + 0x2cd4e7e4, 0x03d14a11, 0x3f380110, 0x01000000, 0x4cc00419, 0x412745ff, + 0x40272496, 0x83184c33, 0xffffff3f, 0xd534abfe, 0x19011003, 0x19031d13, + 0x9d133914, 0x14190404, 0x9605039d, 0x87fe8e44, 0x1b443324, 0x03080324, + 0x9efe0e14, 0x2700bc62, 0xa9f19306, 0x589e0115, 0x062700c8, 0x15d7f193, + 0xc84d9e01, 0x54fe4e00, 0x93062704, 0x01161af1, 0x00c83e9e, 0x43071319, + 0x44034333, 0xd4eb04ca, 0x38864133, 0x0107e307, 0x04490369, 0x06274342, + 0x1667f193, 0xc8199e01, 0x0a038900, 0xca080489, 0x0803ed34, 0x24d1fe08, + 0x02070110, 0x00004fa3, 0x24d50800, 0x0c030110, 0x142c27d8, 0x00bbf1be, + 0x0627fe8e, 0x15f1f193, 0xc7e59e01, 0xe6fe4e00, 0x40141904, 0x0627ff4c, + 0x1653f193, 0xc7d19e01, 0xf308d000, 0x011020d1, 0x00000fd8, 0x19130100, + 0x54460624, 0x0627114c, 0x1672f193, 0xc7b19e01, 0x1d40a700, 0xc4131924, + 0xa325ff3c, 0x0000000f, 0x1020d501, 0x04149901, 0x9904249d, 0x249d0514, + 0x06149905, 0x9906249d, 0x219d0711, 0x27fe8e07, 0x9cf19306, 0x789e0116, + 0xfd4e00c7, 0x1007e107, 0x4c20ecd0, 0x4e860441, 0x4f660451, 0xc61a0489, + 0x04895f4f, 0x27414018, 0xc2f19306, 0x509e0117, 0x24b900c7, 0x4eb60138, + 0x32074127, 0x013824bd, 0x01183d03, 0x08274007, 0x44034d01, 0x34033d05, + 0x0e07f0a8, 0x03200c23, 0xfd0e201c, 0x27ff405e, 0x81f19306, 0x189e0116, + 0x062700c7, 0x16a9f193, 0xc70d9e01, 0x93062700, 0x0116caf1, 0x00c7029e, + 0xf1930627, 0x9e0116e8, 0x2700c6f7, 0x06f19306, 0xec9e0117, 0xfd4e00c6, + 0xec03e007, 0xa70d0354, 0x07200701, 0x7f2ce33e, 0x01a70d23, 0x197f3ce3, + 0x803c0334, 0x07f932c2, 0x2741073e, 0x4e01552c, 0x3e054403, 0xf2a83403, + 0x016703b9, 0x3ae63183, 0x01101ed1, 0x011414d1, 0x2f832e07, 0x03ffffff, + 0x273f4ce3, 0x1414d530, 0x5013bd01, 0x1012d501, 0x002f3801, 0x19010000, + 0xff4cc014, 0xbd402713, 0x8e013814, 0x9d4027fd, 0x039d5404, 0x89c21e58, + 0x03892202, 0x03047120, 0x3c031f2c, 0x580d991f, 0x35732573, 0xd8590099, + 0x0721104c, 0xce41034d, 0x40072d43, 0x42ce4103, 0xffef831b, 0x2702ffff, + 0x101ed540, 0x3814bd01, 0x07fd8e01, 0x07230742, 0x27d91e34, 0x30f19306, + 0x249e0117, 0x062700c6, 0x16caf193, 0xc6199e01, 0x4efe0b00, 0x07c107fc, + 0x6c08c4d2, 0xc57e0207, 0x6f0fd6fa, 0x00c8c011, 0x340ccc5b, 0x01e33e1c, + 0x0d1cc0c1, 0x0e1cc01f, 0x0c1cc02b, 0x93062737, 0x0117bbf1, 0x00c5e29e, + 0x3e330c27, 0xc4c101c5, 0xd1e30d1c, 0xbd0114d4, 0xa30111d0, 0x14d4d542, + 0xd1fc8e01, 0xbd0114d4, 0xa30112d0, 0x14d4d544, 0xd1fc8e01, 0xbd0114d4, + 0xa30110d0, 0x14d4d541, 0x27fc8e01, 0x27a71e00, 0x00f19306, 0x989e0117, + 0x062700c5, 0x1720f193, 0xc58d9e01, 0x07fc4e00, 0xc4c207d1, 0x02074e08, + 0x76fa3b7e, 0xc8d0010e, 0x0ccc3e00, 0xdd112e34, 0xcc31d0c8, 0xca2034dc, + 0x4e7e48d0, 0x00c0d5ff, 0x7e0d0701, 0xc4d1ff45, 0xc0d50114, 0x48a30104, + 0x0114c4d5, 0xdc27fc8e, 0x11dd1e33, 0x330c27dd, 0x27d1d0cc, 0x27d11ed0, + 0x27c41e00, 0x24f19306, 0x2c9e0117, 0x062700c5, 0x174bf193, 0xc5219e01, + 0x93042700, 0x011791f1, 0x00c5169e, 0xd107fc4e, 0x08c4c207, 0x7e020750, + 0x0eb6f9c4, 0x00c8d001, 0x340ccc40, 0xc8dd1130, 0xdccc33d0, 0xd0ca2234, + 0xfed77e4a, 0x07f8c0c5, 0xfecf7e0d, 0x0110c4d1, 0xa3fcc0c5, 0x0000004f, + 0x10c4d520, 0x27fc8e01, 0xdb1e33dc, 0x0c27dd11, 0xcfd0cc33, 0xcf1ed027, + 0xc21e0027, 0xf1930627, 0x9e01176a, 0x2700c4b3, 0xd2f19306, 0xa89e0116, + 0x042700c4, 0x1782f193, 0xc49d9e01, 0xc4fe4e00, 0x14114c08, 0x015242d4, + 0xfe3dc013, 0x24d127ff, 0x4fa30110, 0x02000000, 0x011024d5, 0x072b30c8, + 0x343ccc43, 0xc511110b, 0x21c5c824, 0x27fe8ecc, 0xf21e334c, 0x011024d1, + 0xffff4f83, 0x24d5fdff, 0x11110110, 0x8ecc21c5, 0x1e4027fe, 0x930627d9, + 0x01175ff1, 0x00c4429e, 0xf1930627, 0x9e011775, 0x4e00c437, 0xf03007fe, + 0x0100ec14, 0x23010704, 0x124ce004, 0x4cd00081, 0x4ce02313, 0xd400a119, + 0xe0321a4c, 0x00b1154c, 0xa5174ce0, 0x144cc000, 0x9306275c, 0x011792f1, + 0x00c3fe9e, 0xd4674ac0, 0x43c02d4b, 0x6749c071, 0x07e742c4, 0x0e140313, + 0xff4b5efe, 0x701b4cc0, 0x281b4cd0, 0x8d1c4ce0, 0x1d4cc400, 0x031307cd, + 0x5efe0e14, 0x4cc0fadd, 0x4cd02b0f, 0x4cc46b10, 0x1307b810, 0xfe0e1403, + 0x07f97e5e, 0x0e140313, 0xf9e65efe, 0x14031307, 0x5a5efe0e, 0x0e0207fb, + 0xf9fd5efe, 0x14031307, 0x995efe0e, 0x031307f9, 0x5efe0e14, 0x1307f88d, + 0x4c5efe0e, 0x031307f8, 0x5efe0e14, 0x1307faac, 0xfe0e1403, 0x07fde85e, + 0x0e140313, 0xf9fe5efe, 0xfe0e1307, 0x07f8f65e, 0x0e140313, 0xfe465efe, + 0x4e0c4cf0, 0x0e1307ff, 0xfd395efe, 0x14031307, 0x205efe0e, 0x930627fa, + 0x0116adf1, 0x00c33a9e, 0xe7e40f03, 0x04990006, 0x0e14ce4d, 0x274d019d, + 0x61f49331, 0x439d067c, 0x0b002769, 0xd1fc4efe, 0x07011003, 0x1c30ccd0, + 0x7c4af293, 0x0c01d106, 0x6024c101, 0x270d14ce, 0x69249d41, 0xd16021c5, + 0xd8011003, 0x0000003f, 0xd3c14f10, 0x2331e0ec, 0x21fc9301, 0xc4c1067c, + 0x27344e34, 0x34c3c541, 0xc169c49d, 0xc4c1f0d3, 0x27344e58, 0x58c3c541, + 0xc169c49d, 0xc4c1f4d3, 0xdb34ee5c, 0x33030700, 0x27032b03, 0xc51a2741, + 0xc49d5cc3, 0xf2c5be69, 0x58c0c500, 0x0110d3d1, 0x00003fd8, 0x931e2000, + 0x067bd3f3, 0xc1fcd2c1, 0xd1c13834, 0xae24eef8, 0x9d412700, 0x32c56934, + 0x3c31c538, 0x0114d4d1, 0x932248d8, 0x067baff3, 0x0104d2d1, 0xd14434c1, + 0xce0100d1, 0x41276b24, 0xc569349d, 0x31c54432, 0x40349d48, 0x0110d4d1, + 0x00004fd8, 0x93174000, 0x067b83f3, 0x0108d2d1, 0x4e6434c1, 0x9d412724, + 0x32c56934, 0x14d4d164, 0x2341dc01, 0x44dc423c, 0xb9fc8e13, 0x270111d1, + 0xfee67e01, 0x0114d4d1, 0xb9ef44d8, 0x270112d1, 0x5efc0e02, 0xd1b9fed4, + 0x00270110, 0xd1fecb7e, 0xd80114d4, 0xd41ed142, 0xce4834c1, 0x41279f14, + 0xc569349d, 0x31c54432, 0x40349d48, 0xd3d18f1e, 0x3d5e0110, 0x3c34c1ff, + 0xff5a14ee, 0x349d4127, 0x3832c569, 0x5e3c31c5, 0xfc93ff4c, 0xc1067b00, + 0x322734c4, 0xfedd43ee, 0x4efee25e, 0x079007f6, 0x810207d1, 0x752fc694, + 0x6e27b407, 0xa7fffffc, 0xfdefffae, 0xe3df7ea7, 0xcf8ea7fd, 0x9299fde3, + 0x5b4d072d, 0x3b312742, 0xa1410332, 0x87312392, 0x07420b44, 0x032307cd, + 0x07c38b21, 0x012c2be0, 0xfd0e1041, 0xe607ffff, 0x0709e2c2, 0x27051ee2, + 0xd1f3e833, 0x33010ca4, 0x4c53184c, 0xc844131d, 0x1c0bee41, 0x7e157105, + 0x74354027, 0x8e158b05, 0x0e2b8435, 0xbe0b0506, 0xa31ede0b, 0xefff3ea7, + 0x0c34d1fd, 0x6a4dd801, 0x230710fc, 0xf4e84327, 0x010c23d1, 0xfc6a3ddc, + 0x654027f4, 0x27f68e94, 0x4503b940, 0xa0049d02, 0x04993556, 0x9d4103b2, + 0xf453b204, 0x04152a19, 0xfe0b0027, 0xd007f54e, 0x6d7ef0a3, 0x80d4a9ea, + 0x82d3a902, 0x0f4c0302, 0x830f3c03, 0x01fff04e, 0xfff03e83, 0x74d4ad01, + 0x76d3ad02, 0x74d2a902, 0x76d3a902, 0x53442702, 0x07345324, 0x68d4bdbd, + 0x88d2ad02, 0x8ad3ad02, 0x66d4bd02, 0x67d4bd02, 0x03600702, 0xe00260bd, + 0x7e033f03, 0x4127ea12, 0x40270108, 0xd4bd4213, 0x7c7e0260, 0xd8d09ded, + 0x2c82f793, 0x46748906, 0xc5d8d399, 0x39d4dcd4, 0x4b430719, 0x3b31274f, + 0x543df834, 0xb902cb01, 0x030260d4, 0x60d4bd42, 0x88d1a902, 0x8ad2a902, + 0x65709902, 0x1933219b, 0xd5904c27, 0xb902a0d1, 0xad0260d1, 0x27028cd4, + 0x2703103d, 0xd09d484c, 0x8ed3adf8, 0x90d2d502, 0x94d4ad02, 0x62d1bd02, + 0x44b4c102, 0xff004ef8, 0x270274ff, 0xad01e44d, 0x270296d4, 0xa7dcbdc1, + 0x7e0b0702, 0x4c27ec7e, 0x8ad2a948, 0xacd4d502, 0x74d0a902, 0x80d4a902, + 0x76d1a902, 0x88daa902, 0x82d5a902, 0xbd342702, 0xad02e2dc, 0xad02bcd2, + 0xbd02bed4, 0xad02e1d3, 0xad02bada, 0xad02c0d5, 0xad02dcd0, 0xbd02ded1, + 0x7e02e0d3, 0xd09de93a, 0xf9f293b5, 0x22c10678, 0xb5dc9960, 0x9da4d2c5, + 0x7499b6dc, 0xf9d49d58, 0x62244696, 0xa6b6d499, 0x93042745, 0x01135df1, + 0x00bf969e, 0xf0ef597e, 0x0200340c, 0xd49d4027, 0xef427efa, 0x06340cf4, + 0x9d412702, 0xd49dfdd0, 0xef467efc, 0x03340cf4, 0x9d412702, 0xd49dffd0, + 0x0063e0fe, 0x86312702, 0x133027c4, 0x44b4c132, 0xff004e58, 0x934427ff, + 0x06787bf0, 0xf1930405, 0x11067874, 0x07810719, 0x204c2349, 0x01004df4, + 0x1001021b, 0xd4bd4f6b, 0xd0bd02e9, 0xf09302e8, 0x99067854, 0xd1b90d00, + 0xd2b902a5, 0xd0bd02a6, 0xd2bd02ea, 0xd1bd02ec, 0x73c102eb, 0xc5212734, + 0x74c1c0d3, 0xa9d3b938, 0xc4d4c502, 0x273c70c1, 0xc8d0c540, 0x9d4071c1, + 0xd2bd5cd3, 0x70190244, 0xd5ccd1c5, 0xd50250d4, 0xb9024cd4, 0xb902ead1, + 0x9902e9d4, 0xd58db6d3, 0x56d09dbc, 0x9dadd19d, 0x3546abd4, 0x027361e0, + 0x026f63e0, 0xd49d4027, 0x9d4327b8, 0xfb93a0d4, 0x99062b24, 0xf19354b4, + 0x27053a98, 0x27410031, 0x9d321330, 0x14195ed3, 0xb4994906, 0x07414054, + 0x9d410343, 0xd4995ed4, 0x9d44a3a0, 0x1011a0d4, 0x0100d0d5, 0xd2d51221, + 0x13310104, 0x0108d3d5, 0x47461439, 0x4d034d07, 0xf293010c, 0x27053a64, + 0x2001113c, 0x40052403, 0xf3a84403, 0x49e61459, 0x4054b499, 0x5ed49941, + 0xd49d4103, 0xa0d4995e, 0x48a33d07, 0x03a0d49d, 0x9301503d, 0x053a77f2, + 0x013d4c27, 0x05240321, 0xa8340331, 0x667499f4, 0x4fe64f4b, 0xf49300c5, + 0x99062a14, 0xf1936843, 0x9d06773c, 0xd39dacd3, 0x231401a8, 0xc742f043, + 0x000d2700, 0xed717e02, 0x02930ff6, 0xf8ead07e, 0x7102000d, 0x93302701, + 0x067713f2, 0x42e02411, 0xd499017c, 0x9345a6b5, 0x067703f0, 0x41e00401, + 0xc0270275, 0x9daad39d, 0xa27eaedc, 0x000d38ea, 0x9d412702, 0xb3c1aed4, + 0xc6348368, 0xdc9d7e3f, 0x8ef083b4, 0xac4d27f5, 0x96d4ad01, 0xfd8d5e02, + 0x3eaa3cf8, 0x60d4b9fd, 0xbd410302, 0x5e0260d4, 0x4127fd31, 0x7efad49d, + 0xd09ded4e, 0xed3e7efb, 0xfe340cf0, 0x9d4027fd, 0x457efcd4, 0x340cf0ed, + 0x4027fe01, 0xe4fed49d, 0x27fe0463, 0xfe075e34, 0xd4bd4327, 0xcb5e0260, + 0xa8d499fc, 0xc3acd399, 0x9d31c341, 0xd39da8d4, 0x71f193ac, 0x14010676, + 0x42f44323, 0x3027ff3d, 0x93ff595e, 0x06728bf4, 0x024744b9, 0x00cc4fe6, + 0x00fa42e0, 0xd39df083, 0x07f58eb4, 0x0fcc03c5, 0xca9bc473, 0xf3053c9b, + 0x93ea087e, 0x067647f2, 0xdbc1f015, 0x5820c1a4, 0x03e81d27, 0x00ed16be, + 0xffffbd03, 0xbc53a007, 0x9b800110, 0xbdf293bc, 0xe0270129, 0xc0141c27, + 0x03c05104, 0xca230156, 0x24111a3a, 0x21154cca, 0x104bca24, 0xf3012431, + 0x2489434a, 0xe2f31110, 0x03011a34, 0x142c03e1, 0x07d5f1f0, 0x0794024e, + 0x174ae049, 0x604bd401, 0x00bf45e0, 0x009246f0, 0x00b147e0, 0x00a747f0, + 0x009d48e0, 0x009349e0, 0x2401611e, 0x340b3447, 0x2401ae1e, 0x32533407, + 0xa41e340b, 0x75a6f493, 0x0d439906, 0xf29337f6, 0x1106759c, 0xe03c2724, + 0xfe8842e4, 0x5e103ca3, 0x4127fe82, 0xd49df083, 0x27f58eb4, 0x685e403c, + 0xb8d29dfe, 0xc0fd945e, 0xd4410f4c, 0xe01c104c, 0x00870c4c, 0x8e0c4cf0, + 0x0d4ce000, 0x4cc00083, 0xff1e720e, 0x5eb4d49d, 0x4ce0fe79, 0xf400a912, + 0x009a134c, 0x8f104ce0, 0x114ce000, 0xe31e0084, 0xd43a42c0, 0x41c02f43, + 0x27d81e27, 0xcf5e324c, 0x1e4c27fc, 0x27fcc95e, 0xc35e164c, 0x144c27fc, + 0x27fcbd5e, 0xb75e154c, 0x0d4c27fc, 0x27fcb15e, 0xfcac5e4a, 0xc01843c0, + 0xa71e0f44, 0x43234007, 0x276642d0, 0xfc965e4b, 0x5e0c4c27, 0x4b27fc92, + 0x27fc8d5e, 0x875e2a4c, 0x284c27fc, 0x27fc815e, 0x7b5e294c, 0x204c27fc, + 0x87fc755e, 0x0be4334e, 0x8e44f94e, 0x5e00019b, 0x4c27fee5, 0xfc605e1f, + 0x5e344c27, 0x4c27fc5a, 0xfc545e33, 0x13134cc0, 0x5e144c40, 0x4c27ff4e, + 0xfc445e3c, 0x5e3e4c27, 0x4c27fc3e, 0xfc385e3d, 0x315e4927, 0x271007fc, + 0xbb5d9e04, 0x93042700, 0x010f4af1, 0x00bb529e, 0xf64efe0b, 0xa3880ec1, + 0x276027f0, 0x07b30770, 0x15f605de, 0x07a207f7, 0x07840791, 0x1fdc73ce, + 0xc17802c1, 0xb1e07c03, 0x0b0700b2, 0x10070123, 0xbe1f1c73, 0x0700c7d3, + 0xbe2c073d, 0x0700c864, 0x1f4c7348, 0xe407d807, 0xe14bd00b, 0x00a9a1e8, + 0x1a070907, 0x21078027, 0x41073007, 0x531f2c33, 0x7332ab31, 0x07030741, + 0xcc810314, 0x4536e941, 0x00003fd4, 0x07e08000, 0x533d872d, 0x4e871e2c, + 0x230742ab, 0x871e2c53, 0x8712ab14, 0x4b030b03, 0x53e00714, 0xc1871eec, + 0x3b072b07, 0xb087ceab, 0x0b1f3c73, 0xbe1c4b0b, 0x0700c7f8, 0x203c2338, + 0x076330c8, 0x07637b61, 0xc8787b71, 0x4a074130, 0xf405437b, 0x387b3a07, + 0xf201f315, 0x0607f311, 0xcdbe1707, 0xf08300c7, 0x0e07f68e, 0x10070103, + 0xbe1f1c73, 0x0700c723, 0xbe2c073d, 0x0700c7b4, 0xece107d0, 0xe6ff5ba1, + 0x5e8027a9, 0x4c27ff7b, 0x07482b20, 0x3b39072a, 0x07385b24, 0xab230742, + 0x1ef20524, 0x204c27b0, 0x2107482b, 0x243b6007, 0x62ab685b, 0x9ff4921e, + 0x80000000, 0x8027ff24, 0x4eff465e, 0x6bb107fb, 0x51fc93bf, 0x0df90673, + 0x0006e7fd, 0x02c00140, 0x8e0d0726, 0xa0c4b9fb, 0xb9430602, 0x9902a3c0, + 0x0f4b19c4, 0x00c8040b, 0xc8d0072f, 0x27e3340c, 0x0d0733dc, 0x617efb8e, + 0x19c399e3, 0xc01f01c0, 0x02c41a03, 0xa1c4b9cd, 0xc64fc602, 0x02a4c0b9, + 0x030b0f4b, 0x27d300cc, 0x56b71ed0, 0xa2c4b9b1, 0xae4fc602, 0x02a5c0b9, + 0x030b0f4b, 0x27bb00cc, 0x009f1ed0, 0x00000064, 0xf793f54e, 0x010672d8, + 0x07f2a37c, 0xb9c736a0, 0xb9020800, 0x7e0359a1, 0xa0bdff6b, 0xacd50292, + 0xf283026c, 0x00b9f58e, 0xa1b90208, 0x547e0359, 0xbd4127ff, 0xbd0293a0, + 0x930294a4, 0x0625d7f3, 0xd14433c1, 0xd10364a1, 0x75017474, 0x6071d5f3, + 0xcf34ce02, 0x017473d5, 0x0208a2b9, 0x22e0f265, 0x74d107c3, 0x73d10288, + 0x72990284, 0xd5439b71, 0x9301cc74, 0x067267f1, 0x40272786, 0x31272027, + 0x021a14bd, 0x021813bd, 0x01c812d5, 0x021914bd, 0x01c412d5, 0x01d01cd1, + 0x7120c1c8, 0xbe1c07f0, 0xf600e8c6, 0x7e03630f, 0x0ceeedaa, 0x3027035c, + 0x73d54027, 0x74d501d4, 0x749901d8, 0x1dfd9371, 0x4ff60672, 0x8b7e06e8, + 0x87fe61ed, 0x8c43f14e, 0xc10006e9, 0x3ce07cd4, 0xd1072c33, 0xe80188d3, + 0x61033731, 0x3d2fe6f2, 0x6c74c103, 0x037542e0, 0x01a474b9, 0x71e6f393, + 0x99452606, 0x4ff67134, 0x4027069b, 0x7e72749d, 0x05e6e20e, 0x01a674b9, + 0x71caf393, 0x754ff606, 0x9d402706, 0xc37e7474, 0xb905e6e8, 0x9301a574, + 0x0671b3f3, 0x064f4ff6, 0x749d4027, 0x3474d173, 0xa1fd9301, 0x41e00671, + 0xf2610585, 0x0359abb9, 0x44f94287, 0x0006e98c, 0x0292a4bd, 0x023cddb9, + 0x0321adbd, 0x05de2fe6, 0xd5a073c1, 0xc10280a3, 0xa4d5a474, 0x4ea70284, + 0x99feffff, 0xd17e094c, 0x87c383e7, 0x2bc4334c, 0x4dcef9c4, 0x12ff0000, + 0x71e0070e, 0x23f471f1, 0x7c72d112, 0x23412b01, 0x99429b41, 0x70d1707d, + 0xe4d20184, 0x0b32470e, 0x2b430732, 0xda112342, 0xf471f64e, 0x4d2b4103, + 0x40070412, 0x031eaebd, 0x0254a4d5, 0x0258a1d5, 0x01987ed1, 0x0260aed5, + 0x01a871b9, 0x0297a1bd, 0x019c72d1, 0x01a473b9, 0x0264a2d5, 0x01ac74b9, + 0x029aa3bd, 0x0298a4bd, 0x01a07ed1, 0x01a571b9, 0x0268aed5, 0x01b072b9, + 0x029ba1bd, 0x0299a2bd, 0xb97c73c1, 0xd501a672, 0xc10278a3, 0x73d18074, + 0xa4d501b4, 0x71c1027c, 0x787ea930, 0xb874d101, 0x74a1d501, 0xa8a3d502, + 0x8873d102, 0x8caead01, 0xaca4d502, 0x9ca2bd02, 0x70a3d502, 0xbc74d102, + 0x2073d101, 0xb0a4d502, 0xc07ed102, 0x2474d101, 0xbcaed502, 0xc471d102, + 0xb4a3d501, 0xc0a1d502, 0xc872d102, 0xb8a4d501, 0xc4a2d502, 0xcc73d102, + 0x61f19301, 0xa3d50670, 0x74b902c8, 0xa4bd0218, 0x73d102cc, 0x74d101d4, + 0x7ed101d8, 0xa3d501d0, 0xa4d502d4, 0xaed502d8, 0xf39302d0, 0x07067214, + 0xd532014a, 0x1102dc42, 0xe04ed53e, 0xd5322102, 0x3102e442, 0xe84ed53e, + 0x03324102, 0x42d5143c, 0x4c0302ec, 0xfc3fc414, 0xd60006e9, 0x018c13d1, + 0x0248a3d5, 0x019014d1, 0xa4d5f361, 0x1ed1024c, 0xaed50194, 0x3ff60250, + 0x1499047c, 0x95a4bd86, 0x87129902, 0x0296a2bd, 0x23eb517e, 0x000d0801, + 0xff0c2701, 0x025ca0bd, 0x018074d1, 0x6fc6fc93, 0x004d1006, 0xff4c2701, + 0x025da4bd, 0xbd89c199, 0x89025ea1, 0x4ff620c4, 0xc2d104bc, 0xc4990258, + 0x88a2d571, 0x5cc3d102, 0x8ea4bd02, 0x2ca3d502, 0x60ceb903, 0xa4aebd01, + 0x64c1b902, 0xa5a1bd01, 0x68c2b902, 0xa6a2bd01, 0x72c39902, 0x0134ced1, + 0x028fa3bd, 0x1973c499, 0x90a4bdc3, 0x74c19902, 0xbd6cc2c1, 0x61025fa3, + 0xa0aed5f4, 0x91a1bd02, 0x6ca2d502, 0xbf4ff602, 0x9cccb903, 0x20acbd02, + 0x9471d103, 0xff4ea702, 0xa1d5ffff, 0x72d10324, 0x1c270298, 0x28a2d512, + 0x7440d103, 0xbe012316, 0xf900e5fd, 0x00167804, 0x19f193ff, 0x4586066f, + 0x018014d1, 0x14d54103, 0x14d10180, 0x30270180, 0x139d4123, 0x7812c171, + 0x14d5f371, 0x23ee0180, 0x7499040e, 0x88709989, 0x6eeaf393, 0x2b04e206, + 0x8034d1fc, 0x234ff601, 0x9df283fc, 0xf58e8930, 0xeeea497e, 0x61fcadc0, + 0xa74ff6f4, 0xfc985efc, 0x1ff6f161, 0x4027fccd, 0x023c74bd, 0xd1ea2d7e, + 0x93018074, 0x066eaff2, 0x04c246c6, 0x88239912, 0x30ea4007, 0x4cf404aa, + 0x9d049c3d, 0x40278924, 0x74d53027, 0x202701b8, 0xd56c74c1, 0xd5018070, + 0xd501b473, 0xe401bc72, 0x93fc8f42, 0x066e77f4, 0x71704399, 0x55432bf4, + 0x0f4c83f4, 0x24073407, 0x34332833, 0x342b320b, 0x69eef293, 0x87220106, + 0x0b430733, 0x95f24542, 0xac4eb9f3, 0xb044d111, 0x33fe1511, 0xe0f40543, + 0x9109c2e2, 0x0bf241f4, 0xb84ed142, 0xbc4cd111, 0x01edf011, 0xf4037c10, + 0x010001ee, 0xdd2703c6, 0x0d2711fd, 0x1027033a, 0x2e073e07, 0xbe1f3c73, + 0x2700c187, 0x4027803c, 0x414b300b, 0x1d072407, 0x53182c33, 0xab1c0b38, + 0x11130b32, 0x878107f3, 0x703bf133, 0x850006e9, 0x27db07f3, 0x73cb0790, + 0x1ff61fdc, 0x0b070644, 0x31071d07, 0x34ab4027, 0xc0073496, 0xf4116c07, + 0x61736b0b, 0x06654ff6, 0xfe41f491, 0x4dd14e0b, 0x7dd511c0, 0x3027021c, + 0x39ea4d47, 0x39ee0632, 0x4027062a, 0x08ee49ea, 0x08e649ee, 0x30274d07, + 0x39ea4153, 0x39ee0936, 0x0d07092e, 0x64be1a27, 0x402700e4, 0x0bd949ea, + 0x0bd149ee, 0xf381f411, 0x430b4433, 0xe7e44f03, 0x43d10006, 0xc30b01ec, + 0x4cd5c173, 0x6de801ec, 0x06970401, 0x04006d27, 0xfc81f441, 0xcf03fb91, + 0x0006e7e4, 0x74d1b40b, 0xc6d50290, 0xb2d1018c, 0x140711cc, 0x04073027, + 0xbe1f1c73, 0xd100c0ab, 0x07028c74, 0x73240734, 0x9cbe1f3c, 0xfe0100c0, + 0xced53007, 0xb2b90198, 0xe10711d0, 0xec334107, 0x103c5310, 0x01a8c2d5, + 0x20273eab, 0x27104c53, 0x0b80001d, 0x07424b31, 0x102c3324, 0xab103c53, + 0x25700132, 0xe5fd93f3, 0x04e0066c, 0xfe1102f3, 0x038feff6, 0xffff4ea7, + 0x4845d1ff, 0x03350718, 0x0705075d, 0x7f3ce325, 0x237f2ce3, 0x1905075d, + 0x803c0334, 0x91f932c2, 0x0bf141f4, 0xe444a941, 0x054fe611, 0x41fc9107, + 0xe8cd03f3, 0x07c30b11, 0x272c0714, 0x01902780, 0x0b402723, 0x03944b83, + 0x91f19824, 0x27fe41f6, 0x076e0b10, 0x35b027d5, 0x28251ef1, 0xf253650c, + 0x2301f994, 0x4f6b4307, 0x3108d49d, 0xe464a9fe, 0x03e30b11, 0x03fe35b1, + 0xf2d103c4, 0x0106b74b, 0x074027c1, 0x53318701, 0x40ab1e0c, 0x2c532307, + 0xab14871e, 0x0b038712, 0x07144b03, 0x1e2c5320, 0x42ab4187, 0x030b3087, + 0x2807144b, 0x39be3907, 0x300700c0, 0x27a501cc, 0x1e412731, 0xf6f161ac, + 0xd1017a1f, 0xf60198dc, 0x2701becf, 0x6473d1e0, 0x6c72d101, 0x2b430701, + 0xf9f19342, 0x400c066b, 0x41734013, 0x43274408, 0x40132312, 0x016012d1, + 0x240b342b, 0x13d54307, 0x12d50164, 0x41230160, 0x4203245a, 0x42074212, + 0x73994e0b, 0x6074d586, 0x87729901, 0x3407435a, 0x32074212, 0x01a872b9, + 0x016073d5, 0x0292a2bd, 0x023c73b9, 0x0359abb9, 0x0321a3bd, 0x011f4d27, + 0xd5e43c27, 0xd50280a4, 0x5e0284a3, 0xfe61fa22, 0xe651e1c0, 0xb900c5bf, + 0x4b029dc3, 0x9c74b93f, 0x1b4f4b02, 0x20a4bd43, 0xfc2f5e03, 0xbd841e99, + 0x990295ae, 0xa1bd8511, 0x855e0296, 0x713499fb, 0xf9ae4fe6, 0x349d4127, + 0xf9ab5e73, 0xe6733499, 0x27f9884f, 0x74349d41, 0x27f9855e, 0x72349d41, + 0x27f9665e, 0x20a4bd40, 0xfbef5e03, 0x30274027, 0xd4d5c027, 0xd4d5022c, + 0xd3d50238, 0xd3d50228, 0xdcd50234, 0x8b7e0230, 0xc11007e6, 0x30277cd2, + 0xbe1f1c73, 0x2700be83, 0x3cd4bd40, 0x20d0d502, 0x24d1d502, 0xc0dcd502, + 0xf8f95e01, 0xbddb337e, 0x5e031fa0, 0x14c1fb3e, 0xef41e46c, 0xc54227fb, + 0xe75e6c14, 0xd1049bfb, 0x470188d3, 0xd034f240, 0xbd4127f8, 0x5e023cd4, + 0xc3b9f8cb, 0x3f4b029e, 0x7eff3c5e, 0x02e4dafc, 0x3127f83a, 0x335ef365, + 0x01edd0f8, 0xdd274101, 0x0d27017c, 0x10270443, 0xd1fc875e, 0x990168d3, + 0xd09984d4, 0x07345a85, 0x07031240, 0xd5fe6143, 0x87016874, 0x8c44f94e, + 0xb90006e9, 0xbd0359ab, 0xb90292a4, 0xbd023c71, 0x5e0321a1, 0xdc27f8ec, + 0x9f0d271f, 0x5e102705, 0xdd27fc48, 0x0d27da1e, 0x10270272, 0xd1fc3b5e, + 0xe40130d4, 0xfe3d1e4c, 0x07e5b97e, 0x4cd1d130, 0x50d2d101, 0x070d0701, + 0xa80c034c, 0xd1f5a57e, 0xfa013cd4, 0xd1090940, 0x270138d4, 0x27041230, + 0xd1e30731, 0xfa014474, 0x9308fa04, 0x066a0ff4, 0x014043d1, 0xfdff30f2, + 0xfa5ee0a7, 0x3c4c27fd, 0x5e89249d, 0x4307fb62, 0x583d4cf0, 0x11ef1efb, + 0x1211e0f1, 0xd074d106, 0x93fe5101, 0x0669dff3, 0xd10de4d2, 0x16013434, + 0xd5412745, 0x7e013434, 0xfd93e542, 0x070669c8, 0x9874d130, 0x4c71d101, + 0x5072d101, 0x030d0701, 0x277ea80c, 0x3474d1f5, 0x5c70d501, 0x9141e001, + 0xacd2d105, 0xa8d3d101, 0x64d2d501, 0x60d3d501, 0x6073d101, 0x86749901, + 0x5a877299, 0x12420734, 0xd1430723, 0x99016473, 0x74d5847d, 0x74990160, + 0x073d5a85, 0x074312d4, 0xd5f411d3, 0xe401647d, 0x7efc8541, 0x1007e4d6, + 0x32bef051, 0x012400e0, 0x6952f493, 0x6c4dd506, 0x307dd101, 0xe4bc7e02, + 0x04170dee, 0x2ff6f211, 0x40270186, 0x74d53027, 0x74d50238, 0x73d501b8, + 0x72d50234, 0x73d50230, 0x72d501b4, 0xf79301bc, 0xd106691c, 0x0301c074, + 0x27440841, 0xd5f31143, 0xd501c074, 0xd501c473, 0xd101c873, 0xc801d07d, + 0xf05120d1, 0x7fbe1d07, 0x0ff600df, 0x637e012a, 0x230deee4, 0x27302701, + 0xd473d540, 0xd874d501, 0xd473d101, 0xd874d101, 0x27fd0101, 0x4b3d0be0, + 0xbc72d14e, 0xd473d501, 0xd874d501, 0xbdf99301, 0x20c80668, 0xb493d11b, + 0xb894d101, 0x0b210301, 0xd54e4b3d, 0xd501b493, 0xd501b894, 0xd101bc92, + 0xd102349b, 0xc102389c, 0x90d17c93, 0x91d10230, 0x92d10228, 0x4027022c, + 0xce4bbd0b, 0xe46bd32b, 0xe24bd10b, 0x98890103, 0x349bd520, 0x389cd502, + 0x3090d502, 0x289dd502, 0x2c9ed502, 0xc48ff602, 0xdbd87e02, 0xbf7ed007, + 0xf604c6db, 0x2703bcdf, 0x8c749d40, 0x4ff6f411, 0x1d27018c, 0x2c27011f, + 0xa074c1e4, 0x03a473c1, 0x0b310341, 0x53320b41, 0xd1315341, 0x51018472, + 0xa074c5f1, 0xfaa473c5, 0x93f62f12, 0x066817f4, 0x01d04dd1, 0x071dd1c8, + 0xbe1d0701, 0xf600de92, 0x7e03390f, 0x0deee376, 0x74c10332, 0xd5437330, + 0xd1018874, 0x01018874, 0x7c73c1fe, 0x432b4e0b, 0x018874d5, 0x4f083407, + 0x40000000, 0xffff3f27, 0xf4933fff, 0xd50667d0, 0x5e018843, 0x3b7ef5dc, + 0xe6d0eee3, 0xf6f111fe, 0x5efee01f, 0x73d1fed1, 0xf29301c4, 0xe80667b0, + 0xd1feaa30, 0x2101c824, 0x0b4103fe, 0xc824d53e, 0xc423d501, 0xfe955e01, + 0x1027f001, 0x4c534007, 0xab183318, 0x07280714, 0xbe083339, 0x5e00c39d, + 0x84e2f9aa, 0xf411f9d6, 0x4433f381, 0x4f03430b, 0x0006e7e4, 0x01dc43d1, + 0xc173c30b, 0x01dc4cd5, 0x11f9fd5e, 0x55f593f1, 0x7dd10667, 0x11e4021c, + 0x4c07f99e, 0x40e84b2b, 0x0487061a, 0x040b4433, 0x040b4087, 0xe1be1b07, + 0xb00700dd, 0x1c270d07, 0x310c0332, 0x00de06be, 0xf241f491, 0x420b0d1b, + 0x11c443d1, 0xcc1d03c2, 0xb91928bc, 0x03021954, 0x6b340741, 0x273b083f, + 0xbd40273a, 0xbd021a54, 0xe8021953, 0x052a29bc, 0x021a74b9, 0x66eef293, + 0x07410306, 0x083f6b34, 0x273a273b, 0x1924bd40, 0x1a23bd02, 0x1a74b902, + 0xd1f39302, 0x46f40666, 0x3dd10516, 0x175e021c, 0x406cecf9, 0x6c27f96c, + 0xf9665e40, 0xcf6bfc21, 0xbe47fe11, 0xe872b4e9, 0x4de00006, 0x01ecffff, + 0x01e84cee, 0xe407f181, 0xe87810f1, 0x2c070006, 0x02274ce2, 0xf0013007, + 0x41034207, 0x1d27d027, 0x2e1b011f, 0x05c9e4ea, 0x05c5efe6, 0x4c034307, + 0x003ee880, 0x00be0800, 0x419b4873, 0xd1033407, 0x03e2f248, 0x3fe60594, + 0xe0270590, 0x1d272027, 0x4307011f, 0xc8804c03, 0x0800003e, 0x73210379, + 0x07419b48, 0x7e2dce34, 0x41160402, 0x41534d07, 0xe1032402, 0x4f6b4e07, + 0x018c749d, 0x99fe81f1, 0xbced8c72, 0x0006e872, 0xe878e1f5, 0x749d0006, + 0xcf2fe68d, 0x1f4d27fd, 0xe43c2701, 0x13070407, 0x00004ec8, 0x4c032708, + 0x9b487380, 0x003ec840, 0x03110800, 0x3873803c, 0xf218319b, 0x23071407, + 0x9bfda85e, 0x803c0331, 0xef1e3873, 0x4c03409b, 0x1e487380, 0x9b4307d9, + 0x804c0341, 0x21034873, 0xd2ce3407, 0x8504c284, 0x2027e103, 0xff7ce6e4, + 0x851e4627, 0x419b4307, 0x73804c03, 0xff3e5e48, 0xf2352027, 0x5105f131, + 0x7efc505e, 0x0120d5dc, 0xe4d5d77e, 0x11fd3403, 0x1522e0f2, 0x9c7cd104, + 0x27d02701, 0x071027b0, 0xf1418728, 0x06ea2443, 0x0b110300, 0x07f288b3, + 0x533d074c, 0x0807184c, 0x2c073833, 0x283334ab, 0x10270103, 0x00b8d2be, + 0x30272b07, 0x3d4b2c0b, 0x00c168be, 0x01000dec, 0x0d270123, 0x73d10100, + 0x43470258, 0x040b430b, 0x70d50273, 0xd25e0258, 0x29f493fc, 0x42c10665, + 0x271d077c, 0x730d0730, 0x94be1f1c, 0x2c2700b8, 0x07302714, 0xbe610750, + 0x9300b920, 0x066507fe, 0x022cecd1, 0x91078007, 0x0228ebd1, 0x036ec1e8, + 0xdb074c07, 0x4c33ec07, 0x73d1531f, 0xfad4abe1, 0xee00aa9e, 0x0700a29e, + 0x2b460735, 0xd54e6b3d, 0xd5022073, 0x5e022474, 0x3f7efb8c, 0xd4d0eee0, + 0xf6f211fc, 0x5efcce2f, 0x7499fcc2, 0xfe8a5e8d, 0xf71a8de2, 0xfe81f411, + 0x4e0b4433, 0xe7e44f03, 0x43d10006, 0xc30b01e0, 0x4cd5c173, 0x375e01e0, + 0xd8067ef7, 0x6007f411, 0x02014ff6, 0x7ed5fe51, 0xf4010264, 0x028074d5, + 0x7efc2e5e, 0x02e4d4bc, 0x1127f63b, 0x345ef115, 0x44c4e2f6, 0x07f30103, + 0x5eec0724, 0x84e2fdd4, 0xf411f6d2, 0x4433f181, 0x4f03410b, 0x0006e7e4, + 0x01e443d1, 0xc173c30b, 0x01e44cd5, 0xe2f6e15e, 0x07ff5ed8, 0x2b460735, + 0x93496b38, 0x06642ff1, 0x022013d5, 0x022414d5, 0xe8fae35e, 0xdf04010d, + 0x000d27fe, 0xfed85e04, 0x0148d4d1, 0x02d304f2, 0x74d10127, 0xf1930170, + 0xf6066404, 0xd102b74f, 0xd1016414, 0x0b016c12, 0x6414d540, 0x072a2301, + 0x07241234, 0x70149932, 0x016413d5, 0x14d54153, 0x465e0170, 0x30d4d1fa, + 0x1e4ce801, 0xd0d1027f, 0xdbd1012c, 0x20870120, 0xe88c21f1, 0xdcd10006, + 0x41070124, 0x4c733107, 0x6bb32b1f, 0x270103c4, 0xdbd51e1c, 0xdcd50120, + 0x2bbe0124, 0xd0d500da, 0xfc01012c, 0x012874d1, 0x012072d1, 0x012473d1, + 0xdc73dc07, 0x0b04071f, 0x873d4b2c, 0x27010344, 0x4cf51e1c, 0x0006e88c, + 0x012072d5, 0x012473d5, 0x00d9f5be, 0x013074d1, 0x012870d5, 0x635ef693, + 0x1e4ce806, 0x2c07f971, 0x2c534d07, 0x0743331d, 0x3342ab3c, 0x07830733, + 0x6b8c2b94, 0xd5e0079d, 0xd5012068, 0x23012469, 0x76e0e8e1, 0xf12e8702, + 0x06e88c21, 0x07be0700, 0x2b233321, 0x73420721, 0xc2071f4c, 0xc80bd407, + 0xb123d94b, 0x01206cd5, 0x01246dd5, 0x0245b0e8, 0x21f12b87, 0x0006e88c, + 0x2147eb07, 0x4207210b, 0x071f4c73, 0x0b140702, 0x231d4b0c, 0x2060d5e1, + 0x2461d501, 0x16e0e801, 0xf14e8702, 0x06e88c42, 0x47db2700, 0x07320b32, + 0x1f4c7343, 0x414b300b, 0x012063d5, 0x012464d5, 0xe0c8e123, 0xf14e872a, + 0x06e88c40, 0x2071d100, 0x2472d101, 0x07400701, 0x1f4c7330, 0x424b310b, + 0x012073d5, 0x012474d5, 0x5ed6fdf0, 0xec03f8a9, 0x07d31e1e, 0x6474d1c0, + 0x51cd0b02, 0x2b3c07f0, 0x93312304, 0x066277fb, 0xfdf003e2, 0x1c070c2b, + 0x00d944be, 0xfde4d0e2, 0x027cb4b9, 0x3487f101, 0x4f6b4103, 0xea4c31f5, + 0xb4bd0006, 0x482a027c, 0xb4bd4027, 0xb8d1027c, 0x0d070280, 0xd0279027, + 0x42872027, 0xea4c43f1, 0x21030006, 0xf088d30b, 0x19074807, 0x33184c53, + 0x07080718, 0x2714ab2c, 0xbe083330, 0x0700b593, 0x07c107b0, 0x07390728, + 0xbe102706, 0x0700b583, 0x0b30272d, 0x07314b20, 0xbe1c070b, 0x9300be15, + 0x0661f3f2, 0x01010d08, 0x01000d27, 0x025c24d1, 0x3447fc21, 0x030b340b, + 0x40270273, 0x249dcf6b, 0x5c20d58c, 0xfb1a5e02, 0x021974b9, 0xfaef46f0, + 0xf4933027, 0xbd0661c0, 0x5e021843, 0x3dd1fae1, 0x4127021c, 0x021834bd, + 0xe2f3fd5e, 0x11f42f80, 0x33f281f4, 0x03420b44, 0x06e7e44f, 0xe843d100, + 0x73c30b01, 0xe84cd5c1, 0xf42c5e01, 0xb1f4c4d6, 0x4b07fc90, 0x4fd64cab, + 0x27d02768, 0xfc995ee0, 0x025494b9, 0x3487fe01, 0x4f6b4103, 0xea243ef5, + 0x94bd0006, 0x48ea0254, 0x4027fbd5, 0x025494bd, 0x03fbcc5e, 0x30d4d541, + 0xfdb05e01, 0xf7b341e8, 0x14d54123, 0xaa5e0170, 0x40d4d1f7, 0x12112701, + 0x07102740, 0x5e012301, 0x4013fd22, 0x01f9e55e, 0x5ed027f3, 0xe227fabe, + 0xa7f7025e, 0xf50f5ee1, 0x4c734c07, 0x5314071f, 0x20271f1c, 0x2c4b1b0b, + 0x31070207, 0x0c334207, 0x2731531f, 0xab202710, 0x2b417330, 0x07296b18, + 0x3ae407d3, 0x0842ee42, 0x0413e2fc, 0x073807fc, 0x4b350b49, 0x2073d546, + 0x2474d502, 0xf78e5e02, 0x9d5e4027, 0x1eec03fa, 0x03fde85e, 0xb95e1ebc, + 0x1eec03fd, 0x27fd885e, 0xfa3a5e21, 0xc027fa4e, 0xc833b107, 0x33181c53, + 0x9bc1abb8, 0x07d00723, 0x270b07a4, 0xbe1c0730, 0x6b00bcb1, 0x96b007af, + 0x872d07aa, 0x2b24334d, 0x332d0b24, 0x0c2f0324, 0x0700019d, 0x27002712, + 0x141133ec, 0x14031201, 0x3407420b, 0x0b1f3c53, 0x3a317334, 0x4001033b, + 0x07fa8efe, 0x334d872d, 0x0b242b24, 0x0324332d, 0x019f7c2f, 0x4ecd1e00, + 0xc5f563f5, 0xf09930f0, 0x39fd937c, 0x4f6b0660, 0xc540f4c5, 0xd48944f0, + 0x50d0891c, 0xf045f435, 0x891ed489, 0xf2c552d0, 0x51f29338, 0xf4550613, + 0x22c1f065, 0x20d48944, 0xc554d089, 0xf2253cf3, 0x7534f1c5, 0x99f085f4, + 0xdec118d4, 0x99f49564, 0xd3014cd0, 0xd2c1f0a5, 0x8ae0e834, 0x30d4c106, + 0x4eee1027, 0x4107067c, 0x140741c3, 0xd0c11f6b, 0x68d4993c, 0x2150f0c5, + 0xc1d811de, 0xd79938dc, 0x40db990c, 0xdac1d651, 0xc1d54148, 0x4ff644d9, + 0x412705d3, 0x06e323ee, 0x2407f021, 0x0ff64127, 0xf33105f8, 0x42abf041, + 0x03ee2127, 0xf351065c, 0x42abf061, 0x03ee2127, 0xf371065e, 0x42abf081, + 0x03ee2127, 0xf3910660, 0x42abf0a1, 0x03ee2127, 0xf3c10662, 0xab42ab50, + 0xee212714, 0x2706913e, 0xc51fe641, 0x2742ab05, 0x588cee31, 0x2743ab06, + 0x5a7bee21, 0x2742ab06, 0x5c6aee31, 0x2743ab06, 0x5e59ee21, 0x2742ab06, + 0x884ff630, 0x84d4d105, 0x30f0c102, 0x04eef305, 0x21270564, 0xf2c1f2b5, + 0x30f3c134, 0x0288d2d5, 0x0284d3d5, 0x5f16fd93, 0x0d1c2706, 0x2d073d07, + 0x07343c03, 0x23300141, 0x03200511, 0x98240334, 0x20d289f4, 0xf2154027, + 0x029cd1bd, 0x029ed4bd, 0xbd69d49d, 0x93029dd4, 0x065ee3fc, 0x055a2ff6, + 0xc4bd4327, 0xd4b9029c, 0xfc9302a0, 0x46065ed0, 0xa3c3b945, 0x9cc3bd02, + 0xa1c4b902, 0xb9454602, 0xbd02a4c4, 0xb9029dc4, 0x4602a2c4, 0xa5c0b945, + 0x9ec0bd02, 0xb9302702, 0xd502a6c4, 0x460294c3, 0xa8c2d145, 0x94c2d502, + 0xacc4b902, 0x98c3d502, 0xd1454602, 0xd502b0c3, 0x7e0298c3, 0x0506d4f6, + 0xc4bd4027, 0xf4c1029c, 0xc14d7630, 0x0cd634f0, 0x4027c005, 0x02b4d2d1, + 0x936cd4c5, 0x065e5ff3, 0xffff2fc0, 0x272affff, 0x19329d41, 0x02a234bd, + 0x029e32b9, 0x02a034bd, 0x02a134bd, 0x029d30b9, 0x029c34b9, 0x02a532bd, + 0x02a334bd, 0x02a430bd, 0xf58ef543, 0xf493d801, 0xc6065e24, 0x47b1b58f, + 0x30274291, 0xa0279707, 0x00002f30, 0x2f274000, 0x3fffffff, 0x42073027, + 0x02071307, 0x33104c53, 0x14ab101c, 0x07100c33, 0xbe3a0729, 0xf000ba0d, + 0x27049111, 0xffffff0f, 0xc5dba13f, 0xc0277cd0, 0xbff45007, 0x40000000, + 0x4b070445, 0x4c531c07, 0x101c3310, 0x29070b07, 0x0c3314ab, 0xbe3a0710, + 0xc100b9d9, 0xd0c530d2, 0x1820e880, 0xd825fa05, 0x73420706, 0x32071f4c, + 0x045741f0, 0xffff3f27, 0xf0933fff, 0xc10610d0, 0x6307440b, 0xd3c56373, + 0x88d6d530, 0x84dbd501, 0xe0c30701, 0x0704d784, 0xbe15070c, 0xe800d457, + 0x08052b01, 0x2701000d, 0xf493ff0c, 0x9d065d68, 0xd2998840, 0x89d29d88, + 0xa7d3c77e, 0xfeffff4e, 0x6b094399, 0x8733830f, 0x2b343343, 0x4d34f934, + 0x99ff0000, 0x400218d1, 0x04e00407, 0x03e0048b, 0x012304dc, 0x4f6b4007, + 0x42f00103, 0x04be0574, 0x010300d4, 0x2f6b2007, 0x0144f3c1, 0x70d29df4, + 0xf19343ab, 0x27065d10, 0x27448630, 0xabf4b131, 0x134fe643, 0x38f4c103, + 0x43330c07, 0x14d5460b, 0x01730188, 0x062404f2, 0x3027b123, 0x4127b20b, + 0x01002d27, 0x12d50027, 0x14c50194, 0x781bc56c, 0x9d71149d, 0x139d7413, + 0x73139d72, 0x018c12d5, 0x019012d5, 0x40873007, 0x430b3433, 0xe7e44f03, + 0x30270006, 0x01ec43d5, 0x01dc43d5, 0x01e043d5, 0x01e443d5, 0x01e843d5, + 0x03c40103, 0x40f0c1d8, 0x6127d421, 0x60270496, 0x5c8af293, 0xec40e806, + 0x11140704, 0x84219d24, 0x27344c08, 0x3407334c, 0x9d0c2499, 0x4fe68523, + 0x23510429, 0x049a30e8, 0x239d2441, 0x344cec86, 0x249d0470, 0x004d2787, + 0x5cd4d501, 0x58d4d502, 0x49fc9302, 0xbb7e065c, 0x2f02e8d7, 0xf6f21105, + 0xd1048c2f, 0x070294d4, 0xe84a26a5, 0x08046841, 0x4c27654c, 0x07c40764, + 0x1fcc73b4, 0x07d7957e, 0x27209b25, 0x070b0730, 0xaf8dbe1c, 0x642c2700, + 0x1dbe3027, 0x501200b0, 0xd4d1a007, 0x1a070258, 0x24073407, 0x3c730a07, + 0x1f1c731f, 0x00af6abe, 0x27807c27, 0x4b070b80, 0x07410718, 0x184c33b0, + 0xb4abb853, 0xc130f2c1, 0x460734f3, 0x1b070127, 0x99fb1b7e, 0xe00784d4, + 0x5bc2fa93, 0x07401206, 0x85a499e4, 0xe407e412, 0x0188a0d1, 0xd130a1c1, + 0x2b0294a9, 0x73210710, 0x42071f2c, 0x0c530107, 0x07473319, 0x3340ab31, + 0x4b370b37, 0x33240748, 0x3853182c, 0x019cabd5, 0x01acaed5, 0xa30732ab, + 0x91e89d46, 0x490703bd, 0x27659c08, 0xc407644c, 0xcc73b407, 0xd6dc7e1f, + 0x277cd4c1, 0x07409b30, 0x070b0724, 0xaed1be1c, 0x27302700, 0x61be642c, + 0xd4d100af, 0x30070298, 0x033345d6, 0x1a27030b, 0x00d1e7be, 0xa3123007, + 0xf2c1a307, 0x34f3c130, 0x1a074607, 0x757e0027, 0x7cd4c1fa, 0x0258ded1, + 0x3e071407, 0x04072e07, 0x731f3c73, 0x88be1f1c, 0x3c2700ae, 0x0b402780, + 0x07414b30, 0x182c3324, 0x32ab3853, 0xf2c11307, 0x34f3c130, 0x01274607, + 0x07fa3b7e, 0xd65c7ec0, 0x15190ccc, 0x0c271007, 0xd186be1e, 0x1500e800, + 0x100cec03, 0xc00b02f6, 0x03030c07, 0xd586d499, 0x0701acd0, 0xbdf29330, + 0x4012065a, 0x24993407, 0x07341287, 0x84249934, 0x40121207, 0x14990407, + 0x07041285, 0xa823d504, 0xac20d501, 0x982ad501, 0x9cded101, 0xe43c2701, + 0xd3c52e07, 0xacd3d1a4, 0xa7215301, 0x1f4d27c0, 0x84d1d101, 0xd5b02702, + 0xd50250d2, 0xd501a0de, 0xd501b0d3, 0xd50240d2, 0xd50244d2, 0xd50248d2, + 0x8d024cd2, 0xd4c58edc, 0x92dc8da0, 0x2790dc8d, 0x0100000e, 0xbd8ddb9d, + 0xbe0254db, 0xc100d11f, 0xd1d134f4, 0x41030288, 0x028cd0d5, 0x00000e27, + 0x34f4c501, 0x00d106be, 0xd534f2c1, 0x530290d0, 0x7cd2d521, 0xd58c7e01, + 0xdc894027, 0x80d0d52e, 0xd0d4d501, 0xd57c7e01, 0x0ce8c012, 0xd502191e, + 0x0101d0d0, 0xf5f193d4, 0x44e00659, 0xf4c101c1, 0x33f5433c, 0x78d4d543, + 0x93f58e01, 0x0659dff4, 0x439d3027, 0x05412768, 0x30f0c1f4, 0x0284d4d1, + 0xfaa040ee, 0x59c6f493, 0x8843d106, 0x34f0c102, 0x030e4027, 0xf4b54127, + 0x27fa8d5e, 0xfa775e31, 0xf041f331, 0x42ab4027, 0x30ee2127, 0x611efa0a, + 0x42ab4027, 0xc8ee3127, 0x905efa3d, 0xffbf2700, 0x273fffff, 0xfbb45ec0, + 0xe0c9c77e, 0xe0faa302, 0x2700bf01, 0x9ec4bd47, 0x27322702, 0x9cc3bd45, + 0x9dc4bd02, 0xfa905e02, 0x835e1127, 0x5e1027f9, 0x1ff6f986, 0x0ff0fb75, + 0x40000000, 0x645efb6d, 0xaf4ff6fb, 0x002ff0fb, 0xa7400000, 0xfb9e5efb, + 0xf061f351, 0x42ab2027, 0x30ee2127, 0xf371f9a6, 0x2027f081, 0x212742ab, + 0xf9a430ee, 0xf0a1f391, 0x42ab2027, 0x30ee2127, 0x2027f9a2, 0xab50f3c1, + 0x2714ab42, 0xa0e3ee21, 0x272c1ef9, 0x2743ab30, 0xaab7ee21, 0xab2027f9, + 0xee312742, 0x27f9a8a6, 0x2743ab30, 0xa695ee21, 0xab2027f9, 0xe6302742, + 0x5ef9a44f, 0x2027ff27, 0x1ff64127, 0x315ef971, 0x27f021ff, 0x27240740, + 0x1f0fe641, 0xff125ef9, 0x32274527, 0x029ec4bd, 0x029cc3bd, 0x27f9d95e, + 0xfb8e5e27, 0x8c538707, 0x1e8cd410, 0x88d89d4d, 0xe0fb395e, 0xe0010384, + 0x2700bf82, 0x10271e0c, 0x30272507, 0x00ac02be, 0x15d61134, 0x00000f10, + 0x0f274000, 0x3fffffff, 0x0baaf393, 0x443bc106, 0x63736007, 0xd0c5c007, + 0x88d6d530, 0x84dbd501, 0xfadd5e01, 0x395e2527, 0x070c07fb, 0xcf2dbe15, + 0x0f01cc00, 0xdb5e0127, 0x87239dfa, 0x5e86219d, 0x0ce8fbe5, 0x27facd79, + 0xc75e780c, 0x643c27fa, 0xd5504c27, 0x27013813, 0x14d53c3c, 0x13d50148, + 0x4c270140, 0x8013c16e, 0x14d52027, 0x4c27013c, 0x6c12d51e, 0x4414d501, + 0x3412d501, 0x4c13d501, 0x5012d501, 0x5c12d501, 0x7012d501, 0xfe005e01, + 0x5e334c27, 0xf493fb8e, 0xd50657e4, 0x5e01d04c, 0x0c27fde3, 0xfd085e0f, + 0x27780c27, 0xff425e10, 0x655e3027, 0x27b127fb, 0xfba25ec0, 0xef5e0027, + 0x27b127fc, 0xfc4f5ec0, 0x955e2427, 0xc7f27efa, 0x00ca01e0, 0xfb6d03e4, + 0x02004d27, 0x0258c4d5, 0x27fb625e, 0xfb135e40, 0x8c538707, 0x27b00710, + 0x104807c0, 0x4c271f8c, 0x2724071e, 0x070b0730, 0xaaf5be1c, 0x07900700, + 0x161134a1, 0x000f3016, 0x27400000, 0xffffff9f, 0x27a0273f, 0x07240740, + 0x1d0c5305, 0x15072333, 0x133320ab, 0x42070107, 0x331c0c53, 0xab310744, + 0x2b343340, 0xca426b31, 0x4ace234a, 0x6df2931d, 0x2bc1060a, 0x73690744, + 0xc5c90763, 0xd6d530d9, 0xdbd50188, 0x7a5e0184, 0xe293c2fe, 0xa4079307, + 0xf2c1dc1e, 0x34f3c130, 0x00274607, 0x557e1507, 0x86c499f6, 0x04074012, + 0x1287c499, 0x27040704, 0xacc4d540, 0x98c5d501, 0xa8c0d501, 0x9cc4d501, + 0xfc4f5e01, 0x01554d27, 0x0258c4d5, 0x27fa9e5e, 0xbcf19304, 0x909e00f1, + 0x10d5009d, 0xd95e0188, 0x63fb4ef9, 0x28fe99f0, 0x072cfc99, 0x07df6bd4, + 0x99fc054e, 0xfc9918fb, 0xf6657e14, 0x7134dc54, 0x363419f3, 0x9df2934e, + 0x40270656, 0x01a424bd, 0x8134cc54, 0xb6e419fe, 0xbd402749, 0x5401a524, + 0xf39134bc, 0x45963419, 0xf0434027, 0x01a624bd, 0x4027fb8e, 0xf043341d, + 0x23bd3127, 0x2bd501a6, 0xfb8e01b0, 0xe41d4027, 0x2cd54127, 0x24bd01ac, + 0xcc1e01a5, 0x341d4027, 0x564af293, 0xd5412706, 0xbd01a82d, 0x1e01a424, + 0xff3ea7a8, 0x34d1fdef, 0x4dd8010c, 0x0710fc6a, 0xe8432723, 0x0c23d1f4, + 0x6a3ddc01, 0x3ea7f4fc, 0x51fdefff, 0x6a4dd834, 0x23070efc, 0xf4e84327, + 0x3ddc2351, 0x0bf6fc6a, 0x27fe4efe, 0xbe122702, 0xa7029851, 0xffffff3e, + 0x0e2034b9, 0x408b4153, 0x01274138, 0x4ea7fe8e, 0x01fd4fff, 0x27002742, + 0x0ef49b40, 0x33991127, 0xcb123b0e, 0xbf3ea713, 0x1138fd4f, 0x34054127, + 0x34031153, 0x312712d6, 0xcfff4ea7, 0x6043c5fd, 0xfb4efe8e, 0xc321c207, + 0x2211c401, 0x1007b107, 0xf0a7f093, 0x9923be00, 0x93c23100, 0x00f0caf0, + 0x16be1027, 0xbf6b0099, 0xd127c403, 0x1d07c231, 0xf0b5f093, 0xbed10300, + 0x03009901, 0x0fdcc4c4, 0x27bd86ec, 0xffdea7c0, 0x091efdbf, 0xdc03c103, + 0x3ac8c020, 0x42c6d441, 0x42f14c87, 0x00019b40, 0xf0931c07, 0xbe00f095, + 0x410098d1, 0xa2f093d1, 0xc6be00f0, 0xd1510098, 0xf0a7f093, 0x98bbbe00, + 0x45402700, 0x03c103d4, 0xc8c420dc, 0x4df493c8, 0x43190566, 0xfb0e34e6, + 0x0ec46c5e, 0xc0685efb, 0x2007fe4e, 0xf0931027, 0x7e00f089, 0x2ea7ff56, + 0x27ffffff, 0xff3ea741, 0x24bdfd4f, 0x31010e21, 0xf49b4027, 0x0e23990e, + 0x213b2127, 0x3ea723cb, 0x38fd4fbf, 0x05412721, 0x03215334, 0x2722d634, + 0x7d78414f, 0x8ef4e801, 0x6bfd4efe, 0x9307060f, 0x00f04dfd, 0x0d072107, + 0x077e1127, 0x271d07ff, 0x9b759e01, 0x42fd9300, 0xe91e00f0, 0x01271007, + 0xfb4ed81e, 0x1127b007, 0xf039f093, 0x981bbe00, 0x93b11100, 0x00f046f0, + 0x009810be, 0xf093b121, 0xbe00f04d, 0x01009805, 0x54f093b1, 0xfabe00f0, + 0xb2310097, 0xf05bf093, 0xbe102700, 0x070097ed, 0x27d403db, 0x07d231c1, + 0x46f0931c, 0xc10300f0, 0x0097d8be, 0xccc4d403, 0x0b07ec0f, 0x9d1efb0e, + 0xeea7f94e, 0xa7ffffff, 0xfeffff1e, 0x992ae399, 0xa0070814, 0x43eeaf6b, + 0x2ea7018e, 0x79ffffd7, 0x2744d624, 0x79f98e02, 0x07247923, 0x274f4b93, + 0x7740e830, 0x07241901, 0x87438303, 0x2c4cf144, 0x99ff0000, 0xbc0744e4, + 0x9909149d, 0x0f6b0911, 0xd1071383, 0xd4334187, 0xbc83d42b, 0xb4de230f, + 0x0ff6ffff, 0xa6260151, 0x7fff4ea7, 0x353127d0, 0xe4423143, 0x07012d21, + 0x10ec53ec, 0x01590ff6, 0x2705d499, 0x084f4b20, 0x59212740, 0x03e1c3d4, + 0x5d3e0741, 0xa73183d4, 0xfeffff4e, 0x43bdb207, 0xbf6b0141, 0x3ea7bac6, + 0xc1ffffff, 0x08664032, 0x48534c07, 0x6b3c32c5, 0xf44fe64f, 0xa7240b00, + 0xffffff4e, 0xa74042c5, 0x4027203c, 0xd49dd325, 0xff4ea704, 0x42d5feff, + 0xa976013c, 0xffff4ea7, 0x9943b9fe, 0x27385c1e, 0xff4ea731, 0x4335d07f, + 0x7fff3ea7, 0xc03431d0, 0x23070c41, 0xf4e84327, 0x31c42331, 0xff0ea7f8, + 0x04b9feff, 0x45760141, 0x4ea73127, 0x45d07fff, 0x83190743, 0x11c40f1c, + 0xff2ea71b, 0x2499ffff, 0x03312744, 0x44249d41, 0x7fff4ea7, 0x4003bdd0, + 0xbe415501, 0x1900ca82, 0xd71ea7d3, 0x3103ffff, 0x1479d31d, 0x230f4c83, + 0xab240741, 0x6b28e62f, 0xd73ea72f, 0x327dffff, 0x41033459, 0x05e6345d, + 0xf49b4027, 0xff3ea70e, 0x34c5fd4f, 0x27b90638, 0xf98e100c, 0x41031419, + 0x1319141d, 0x34ce1439, 0x8314194b, 0xf1448743, 0x00002c42, 0x0f2c83ff, + 0x1e802ca3, 0x200c27bd, 0x0827f98e, 0x0127f98e, 0x3127f98e, 0xa7fe885e, + 0x0c5e202c, 0x14e4d1ff, 0x24e3990e, 0x0740e4c5, 0xcc4f4b43, 0xeb9d3e40, + 0xe6d47924, 0x27fe994f, 0x27f98e04, 0x07831e20, 0x83412341, 0x33348743, + 0xe9432b44, 0x00005244, 0x7d3027ff, 0x6dd35ddb, 0x3dd31dd4, 0x80ec38db, + 0xd49d4127, 0x05de9d04, 0xcefe7f5e, 0x0327c43b, 0xee43f193, 0x98f99e00, + 0xa7f64e00, 0xfddfff2e, 0x00004e27, 0x3416c120, 0x24d53027, 0x23d50208, + 0x4ea70208, 0x11fd4fff, 0xd413c142, 0x7007a107, 0x075432c5, 0xc1802790, + 0xac8934a0, 0x28a48926, 0x01089ba9, 0x0c33c49b, 0x07c00b1c, 0x049ed12b, + 0x01b6e601, 0xd040cbe4, 0x0000004f, 0x3b070b10, 0x2123e803, 0x00c6f3f8, + 0xd103d207, 0x28232e07, 0x28031d07, 0xf1f8d123, 0x420700c3, 0x43734e2b, + 0x4b1b4886, 0x010894ad, 0x3d07d786, 0x21012411, 0xe105e415, 0x4c542803, + 0x0b433310, 0x884ec547, 0xf338e803, 0x030da499, 0xd2980381, 0xc6078a84, + 0xffdf0ea7, 0x0fcc83ff, 0x0099b6be, 0xc3f9c333, 0xff00007c, 0x007ec4f9, + 0x38a3ff00, 0xc4fd4123, 0xff00007e, 0xffdf0ea7, 0x7cc3fdff, 0xbeff0000, + 0xc100996c, 0x0c8334a0, 0x2303330f, 0xffff7e0e, 0x4fd60439, 0xff3ea75e, + 0x3201fd4f, 0xf49b4027, 0xff3ea70e, 0x3499ffff, 0x3b31270e, 0xa734cb32, + 0xfd4fbf2e, 0x41273138, 0x31532405, 0x32d62403, 0x4ea73127, 0xc5fdcfff, + 0xf68e6043, 0x40cbe401, 0x00004ff4, 0xff2a1000, 0x01ff2f5e, 0xcb400723, + 0xf4030743, 0x0000004f, 0xeeff3110, 0x5eff25c3, 0xb9beff2a, 0x9e1e0139, + 0xfd93fc4e, 0x19060418, 0x680fc6d0, 0x2744d1c1, 0xa7202740, 0x0cd49d30, + 0x654ad38d, 0x0bd49dd2, 0x834cd2c5, 0x00000f1f, 0x6110c880, 0x276a01c0, + 0x9b0380cd, 0x033c07c1, 0x069b1c3f, 0x4232b900, 0x3031b910, 0x26412710, + 0xab46332c, 0x5ad49d41, 0x103c34b9, 0x03c6f293, 0x5bd49d06, 0x103134b9, + 0x46761027, 0x274423c1, 0x1d310340, 0x5c219d24, 0x8e4423c5, 0x4423c1fc, + 0x31031127, 0x241d4027, 0xc55c219d, 0xec1e4423, 0xbe1e4027, 0x1fa31123, + 0xfffffff0, 0x951e1103, 0xca33c107, 0xc12b1733, 0x009ab4be, 0x0098b8be, + 0x0098a7be, 0xab54c4f9, 0x4fd60006, 0x071c0781, 0x481f030d, 0x7e0006ab, + 0x725efdf1, 0x07fc4eff, 0xff367ec0, 0x0254c4d1, 0x5628f353, 0x00274103, + 0xc4d5c315, 0xfc8e0254, 0xc007fc4e, 0x00000f30, 0xf0934000, 0x8e00ec38, + 0xc02c7efc, 0xdc070fab, 0xdfab0103, 0xd103d09b, 0x0000de30, 0x40f09301, + 0xfc8e00ec, 0x997e0c07, 0x7e0d07c6, 0x0027c6aa, 0xfc4efc8e, 0x097ec007, + 0x1002c0c0, 0x202903c0, 0x62f09301, 0xfc8e00ec, 0x07f7c6d4, 0x7edfabdc, + 0x0fabc6b2, 0xd09bd103, 0xded0d103, 0x12010000, 0xec20f093, 0xc0fc8e00, + 0xf093e2c3, 0x8e00ec39, 0x7e0c07fc, 0x0d07c678, 0x27c65d7e, 0x00fc8e00, + 0x00001000, 0x08000000, 0x0000000f, 0x07c1f54e, 0x3c0dc138, 0x07240a99, + 0x27c107b0, 0x27502780, 0xddfc0c6c, 0x00a41000, 0x4d034d07, 0xc4ea2000, + 0x3c27009a, 0x2b06071b, 0x27010336, 0x3b4d0722, 0x0b405b20, 0x5b41dc2d, + 0x2755f3f0, 0x4a3b0f4c, 0xf4139487, 0x134e01b0, 0x4201aff4, 0x2b0b2247, + 0xb3012149, 0x490b4187, 0x3707430b, 0x11033d0b, 0x3a074305, 0x3703214d, + 0x030ade0b, 0x18025127, 0x41278107, 0x42234a3b, 0x5936841a, 0xa194dcca, + 0x3cb3c1b4, 0x2b3cbcc5, 0xa54c0b43, 0xc2f58eb4, 0x2007982c, 0x070c2c23, + 0x274a3b42, 0x3b9487e1, 0x07aa1ee0, 0x7e0b0713, 0x1007c28a, 0x5a7e0b07, + 0x24ba99c8, 0xff5cdcea, 0xf453c61e, 0x4e01ff34, 0x20270607, 0x851e9027, + 0x02c1fa4e, 0x4003c13c, 0x04a1d107, 0x0fffdd03, 0x0fffdde3, 0xb007322b, + 0x00c1d42b, 0xd634d638, 0x07fa8ed7, 0x243dcaad, 0xc20bca07, 0xa2be1c07, + 0x0b070095, 0xfd7e1c07, 0xc6da2bfe, 0x7e0d07d0, 0x0b07c791, 0xfa0e1d07, + 0x07feeb5e, 0x0bca07a3, 0xbe1c07c2, 0x0700957d, 0x7e1c070b, 0xda2bfed8, + 0xfa4eda1e, 0x07310499, 0x07a207d0, 0x56c107b3, 0x0cb2c04f, 0x497e0a07, + 0x5d0fc6c7, 0x475ab3c0, 0x144c234c, 0x0b24d199, 0x3b31274d, 0x23420931, + 0x2932c231, 0x41273c07, 0xd1a1433b, 0x31233407, 0x13eb130b, 0x0d07140b, + 0x89ff577e, 0x0d0732d4, 0x1c074103, 0x0e32d48d, 0xc1b05efa, 0x47034107, + 0x071ac4c2, 0x1e31033c, 0xc5647ece, 0x402706d6, 0xc431d49d, 0xa81e9fb2, + 0xfa8e0027, 0x38033107, 0x0d07b51e, 0x837e1c07, 0x9d4027c1, 0x0fc631d4, + 0x4efa8e81, 0xa7d007fd, 0xffffdf0e, 0x0095dabe, 0x6108d099, 0xbe2027d1, + 0x45041563, 0x110706d0, 0x19d201d3, 0x0b448734, 0x31400542, 0x19d455d4, + 0x1d410334, 0xdf0ea734, 0x89beffff, 0xd4410095, 0x44960027, 0x01c30127, + 0xfd8e0183, 0x0451fb4e, 0xd207c007, 0x42cab107, 0xdf3ea74a, 0x3b05fde3, + 0xc1413d15, 0x32352027, 0xe3cf4ea7, 0x154105fd, 0xff3ea74d, 0x4235fdef, + 0x010c34d1, 0xfc6a4dd8, 0x27230710, 0xd1f4e843, 0xdc010c23, 0xf4fc6a3d, + 0xc451c341, 0x03073d0b, 0x0d2b4d2b, 0xc345c455, 0x607efb8e, 0xb20fd6ff, + 0xfa4efb8e, 0xb0070e51, 0xd207c307, 0x4307a107, 0x4e073e02, 0xb451d415, + 0xdc154496, 0x853ed211, 0x08a6d005, 0x2c07d411, 0xd235242b, 0x01272516, + 0xfa8ed225, 0x140b1a07, 0x697e0b07, 0x27d025ff, 0x27049641, 0x8e040740, + 0x07fa4efa, 0x07a007d2, 0x8e27b6b1, 0xb3cea7fa, 0xc099fff9, 0x27102724, + 0xbe070322, 0x0704146f, 0x7e0c0710, 0x3d07c63d, 0x2b071a07, 0xf9b30ea7, + 0xc5ec7eff, 0x27d70fd6, 0x0ef49b40, 0xf54efa8e, 0x073412c1, 0x83d207c1, + 0x11990fdc, 0x27d33358, 0x23fd23b1, 0xffff84de, 0x70073b07, 0xf265d403, + 0xc2c1313b, 0x35a02750, 0x154027f3, 0x08f19dfd, 0x6707fa55, 0xd4230f07, + 0xf205f445, 0x61186c03, 0xfe917e79, 0x0ea70c16, 0xbeffffdf, 0xc100946b, + 0xd29950c0, 0x58c19904, 0x21230403, 0x99ff647e, 0xc0c159c1, 0x05d29954, + 0x27ff587e, 0xa7312740, 0xffffdf0e, 0x9d05d49d, 0x19be04d3, 0x04270094, + 0xf58efd03, 0xc159c499, 0xb43b54c3, 0xfac5fba5, 0x24f49d30, 0x0f07d503, + 0x8534c4c1, 0x1c0c03fd, 0xf375d523, 0xf4c5fab5, 0xfe297e34, 0x07980fc6, + 0x383c033f, 0x4c272027, 0x03320520, 0x89f4c834, 0x2fe628c2, 0x30270113, + 0x1d27960b, 0xc489ffff, 0xbcf9c526, 0xc5c0f3c5, 0xf3c5c4f1, 0xbcf1c1c8, + 0x34c61301, 0x360b3853, 0xe6ccf3c5, 0xc100d34f, 0xf4c1bcf8, 0xc4f9c1c8, + 0x84034487, 0xf4c55027, 0x008a5eb8, 0xac23fb41, 0x40bc0340, 0xfa55fb45, + 0xa640bc23, 0xccf8c155, 0x1c031807, 0xccf1c518, 0xfac58a09, 0x189acec4, + 0x4a07a203, 0x94874fab, 0x920b2f07, 0x233893c1, 0xc0f3c5a2, 0x0d633fc6, + 0xc18129ba, 0x8431c0f2, 0xb215b12d, 0x2b071607, 0x140b8321, 0x28030f07, + 0xe6fe217e, 0x41fee90f, 0x0b845171, 0x07834116, 0x0b2b070f, 0x242c0314, + 0x7e1c0c03, 0xf3c1fe06, 0x4cc4c1b8, 0x4b05430b, 0xc489b329, 0xd2530b26, + 0x9a073445, 0xacf4fa51, 0x07ff7340, 0xfd3d7e0f, 0xfeac0fe6, 0x655efa51, + 0x078111ff, 0x01160b0f, 0xfd727e12, 0xfe980fe6, 0xf0c58a09, 0x3890c5c0, + 0x1ec4fac5, 0x28c28983, 0x03c8f1c1, 0xc8f1c511, 0xc10d21d2, 0x3c03bcf3, + 0xbcf3c51c, 0x27ff085e, 0xfea65e00, 0xf063fd4e, 0xffdf0ea7, 0x92d1beff, + 0xa72f0700, 0xffe9730e, 0x3f072303, 0x2ce3f005, 0x7f3ce37f, 0x3c033419, + 0xf932c280, 0xe9730ea7, 0xb404b9ff, 0x274bc601, 0x1ed02730, 0x07f00110, + 0xb404b93d, 0x07310301, 0x2843d2d3, 0x34b9300b, 0x42d80164, 0x994d87e9, + 0x040b4231, 0x8a7e2127, 0x99f301fd, 0x41234034, 0x0140349d, 0x400499f0, + 0x27cd4fd6, 0xb82d2710, 0x730ea701, 0x1ebeffe9, 0x0ea70085, 0xbeffffdf, + 0x43009234, 0x4efd8ef0, 0x95f493f9, 0x240705fe, 0x073f2c03, 0xe3f06334, + 0x3ce37f2c, 0x0334197f, 0x32c2803c, 0x100c27f9, 0xfe76f393, 0x0720a705, + 0x23320540, 0xb8340301, 0x21fd93f4, 0x302705fd, 0x49e2f193, 0xa7212706, + 0x68129d40, 0xc566d49d, 0xd33d80d0, 0x9d0bd39d, 0xd35d0cd0, 0x129dd31d, + 0x039d0769, 0x07102c9d, 0xe33d0749, 0x3d037f4c, 0x4f54482c, 0x0006e348, + 0x030cf49b, 0x43ca804c, 0x9bc027f8, 0xbea70efc, 0x27fdeaf7, 0x27be210c, + 0xaf27028d, 0x12c20000, 0xba15bc05, 0xa70efc9b, 0xfde3df3e, 0x34054427, + 0x38002d27, 0x4ea73215, 0x35fde3cf, 0x1549053c, 0x210c2742, 0xf7be4c35, + 0xbc05028c, 0xfc9bba15, 0x24dcd50e, 0x91f49310, 0x240705fd, 0x073f2c03, + 0x7f2ce334, 0x197f3ce3, 0x803c0334, 0x93f932c2, 0x05fd7bf2, 0x40273827, + 0x2803240d, 0x2c23f3b8, 0x031207c4, 0x32077f1c, 0xe37f1ce3, 0x34197f3c, + 0xc2803c03, 0xf393f931, 0x2705fcd0, 0x204c2720, 0x34033205, 0x0ea7f4c8, + 0x27fffaf3, 0x94babe18, 0xa30ea700, 0x1427fffa, 0x0094afbe, 0x27802c27, + 0x330ea710, 0xd6befffa, 0x397e0083, 0x032f07fe, 0xaf4ea723, 0x3f07ffe7, + 0x2ce3f405, 0x7f3ce37f, 0x3c033419, 0xf932c280, 0xe7af4ea7, 0xc64001ff, + 0x8f2cbe04, 0x27f30100, 0x25f04340, 0x15340534, 0x4ef98e34, 0x834007f7, + 0x34070f4c, 0x3733a407, 0xa32baa33, 0x70079407, 0xab48af03, 0x0ea70006, + 0x33ffffdf, 0x07a89993, 0x0090b6be, 0xff849e23, 0x36fd93ff, 0xcea705fd, + 0x27fffc2b, 0x030e1e30, 0xdc0314cc, 0x14cfc010, 0x32ff0005, 0xc401c823, + 0x4e83c803, 0xc4030000, 0x0300004e, 0x16db19e3, 0xc6c401b0, 0xd459da4f, + 0x00ef4ff6, 0xcc03cb05, 0x03312714, 0xcfc410dc, 0xff000514, 0x153ff6d0, + 0xff8cc001, 0x8728071a, 0x0b243348, 0xcc43f142, 0xa3ff0003, 0x0300003e, + 0x03cc43f5, 0x9419ff00, 0x00d744fc, 0xe0ff8ce0, 0x33280700, 0x0b488724, + 0xd443f142, 0xe6ff0003, 0xc100ce3f, 0x420750a3, 0x9b1c4f03, 0x43d50006, + 0xa3990188, 0x15fd9358, 0x43bd05fb, 0xa3990186, 0x8c43bd5a, 0x04939901, + 0x018743bd, 0xc1059299, 0xa19954a0, 0xfafb7e59, 0x929d2027, 0x09a39905, + 0x13ff3cc0, 0x3f033433, 0x00069b1c, 0x018534b9, 0x34bd4123, 0x94590185, + 0x4123921d, 0xcea7945d, 0xb9ffffff, 0x030100c4, 0xbd412371, 0xc10100c4, + 0xc7c5d4a3, 0xd13219fc, 0x271024d1, 0xcb423b41, 0xc5302741, 0x0ea7d4a3, + 0xd5ffffdf, 0xbe1024d4, 0x99008f74, 0x0ea70ec1, 0x0efff95d, 0x92a29ef7, + 0x03d0c100, 0x2707d199, 0xfa877e21, 0x5903d0c1, 0x03d139d2, 0x7e212304, + 0x4027fa79, 0xf55ed45d, 0x270a07fe, 0x7e212710, 0x8ce4b696, 0x99ff24ff, + 0x47d60494, 0xfa56fd93, 0xff525e05, 0xffff4ea7, 0x0e4199ff, 0xf95d0ea7, + 0x9256beff, 0xfedb5e00, 0x9950a0c1, 0x21275aa1, 0xc1fa387e, 0x929950a0, + 0x58a19904, 0x21230403, 0x27fa287e, 0x1dfd9340, 0x949d05fa, 0xff165e04, + 0xfc93f74e, 0xa305fb94, 0x274027f0, 0xdf0ea730, 0x7c07ffff, 0xf34df405, + 0xa706f49d, 0xfffc2bae, 0x008eeebe, 0xd0278027, 0x1e407c23, 0x03d1030e, + 0xac0310cc, 0x10dce014, 0xba070094, 0xb401b823, 0x00004ed8, 0xc4192303, + 0xc3994886, 0xff3cc009, 0x0b4f0709, 0x1d412734, 0x0ac39934, 0x09ff3cc0, + 0x340b4f07, 0x341d4127, 0x45d6c419, 0xc39d30a7, 0x09c39d0a, 0xa4154027, + 0x4e83b401, 0xc4030000, 0x0300004e, 0x16c939a9, 0x86a40196, 0xf6c47945, + 0x0500884f, 0x098127a9, 0x923fd6c3, 0x2707b401, 0x00004ee3, 0x8db40503, + 0x40270aa3, 0xfaeaf393, 0x08a48d05, 0x2419372b, 0x03594dce, 0x03f3b021, + 0x10cc03d1, 0xe414ac03, 0xff7010dc, 0x061ed027, 0xd7c0d103, 0x0b4f071f, + 0xb643194d, 0x7e0d0732, 0x08abb7bb, 0x04864027, 0x84074127, 0x8f6bd103, + 0xa7e3d7c4, 0xffffdf0e, 0x008df3be, 0x4ea78666, 0x99ffffff, 0x0ea70e41, + 0xbefff95d, 0x8300911c, 0xa7f78ef0, 0x1e241d40, 0x99c011a3, 0x212708c1, + 0x11f8f87e, 0x59c279c0, 0x230403c1, 0xf8eb7e21, 0xc47d4027, 0x4eff5e5e, + 0xc1d007fb, 0x1d07f400, 0x07f9157e, 0x0704c6b0, 0xa7fb8e0b, 0xffffffce, + 0x0690c4d1, 0xf28b0ea7, 0xd54103ff, 0xbe0690c4, 0xc8012edd, 0x40073b00, + 0x36333007, 0x3334ddc1, 0xf5430b43, 0x000d844d, 0xfd4227ff, 0x000d7804, + 0xfe7e7eff, 0xc4bd4127, 0xc39906a8, 0x9b40270f, 0x41270ef4, 0x0b073387, + 0xb04034f5, 0xfb8eff02, 0x0000ff1e, 0x00000290, 0x000001e0, 0x00000200, + 0x00000180, 0x00069ca0, 0xff0003cc, 0x00069ac2, 0x3ea7f54e, 0x99ffffff, + 0xf3632734, 0x04884fe6, 0xf842f993, 0x08949905, 0x047c4ff6, 0x069830d1, + 0x069c3ad1, 0x010234a9, 0x010433a9, 0x1407a02b, 0xab66e307, 0x41834007, + 0x25332407, 0x242b4487, 0x35333207, 0x3e23322b, 0xa9fff954, 0xa9030a32, + 0x2b030834, 0x0be1071e, 0x2befab42, 0xec4f8b4e, 0x07042841, 0x2301031a, + 0xf5f1f8a1, 0xff4ea703, 0x40d5ffff, 0xa0270698, 0xf0a50027, 0xffff7ea7, + 0x39f593ff, 0x78d10640, 0x4807069c, 0x34074183, 0x44873533, 0xd307342b, + 0xd32bd533, 0x152978bd, 0xde230807, 0xbefff954, 0xf802870f, 0x07061704, + 0x0f4c8348, 0xca33c407, 0xc42b4733, 0xab48cf03, 0xc1990006, 0x101ce004, + 0xc4c10620, 0x4341e030, 0x34c3a906, 0x10c4a903, 0x4092d102, 0x1134ca06, + 0x0e2d73b9, 0x432b4207, 0x4f4b4223, 0x066041ec, 0x4605c499, 0x07c39947, + 0x3433f395, 0x3f03f3b5, 0x00069b1c, 0x018d34b9, 0x93ff4ce0, 0x99153603, + 0x4ff605c4, 0x3d070516, 0x3c034c07, 0xd84c034c, 0x01122c27, 0x0544034b, + 0xa834033b, 0x27c101f2, 0x05312742, 0x25d4bdd1, 0x26d3bd03, 0x17c39903, + 0xc12cc489, 0xcbc1d0c2, 0x1dd3bd34, 0x12d4ad03, 0x073d0703, 0x5cd2d54c, + 0xa4dbd502, 0x7c3d0302, 0x204d0301, 0x322c2701, 0x44034001, 0x34033005, + 0xc2d1f2a8, 0x3d0701e8, 0xd2d54c07, 0x3d030244, 0x4d030248, 0x242701ec, + 0x44034b01, 0x34033b05, 0x4409f2a8, 0xc1c1340d, 0x60d1d544, 0x07c29902, + 0x0320d2bd, 0xd530c3c1, 0xb902a8d3, 0xbd035ac4, 0x890324d4, 0xc1c12ecb, + 0x08dbad4c, 0x26c08903, 0x0264d1d5, 0x0304d0ad, 0x0728c289, 0xad1c070d, + 0x030306d2, 0x2702c40d, 0x1c03402c, 0x85febe90, 0x3c93c102, 0xd3d54c07, + 0x3d070274, 0x4d033403, 0x2c270200, 0x034b0112, 0x033b0544, 0xa9f2a834, + 0xad0330c1, 0xa9030cd1, 0xad0332c2, 0x7e030ed2, 0x0fabb6b6, 0x030ed0ad, + 0x03e50ff6, 0x0334c4a9, 0xd4ad3d07, 0x4c070310, 0x03943c03, 0x2702484d, + 0x4b013a2c, 0x3b054403, 0xf2a83403, 0x0342c4b9, 0x44863027, 0x94c13127, + 0x16d3bd50, 0x54449903, 0x0317d4bd, 0x0338c1b9, 0x0318d1bd, 0x0339c2b9, + 0x0319d2bd, 0x033cc3d1, 0x02c0d3d5, 0x0340c4b9, 0x031ad4bd, 0x0343cbb9, + 0x031bdbbd, 0x034cc0d1, 0x02b8d0d5, 0x0350c1d1, 0x02bcd1d5, 0xd550c2c1, + 0xc10268d2, 0xd3d554c3, 0xc4c1026c, 0x70d4d558, 0xb55b7e02, 0xd0bd0f6b, + 0x07c60344, 0xd5685bc1, 0xc10334db, 0xd0d55850, 0x51c10338, 0x3cd1d570, + 0x7452c103, 0x0340d2d5, 0x4c073d07, 0x02783d03, 0x275c4c03, 0x034b0129, + 0x033b0544, 0x99f2a834, 0xd1bd80c1, 0xc2b9029c, 0xd2bd0354, 0xc399031c, + 0x21d3bd18, 0x05c49903, 0x031ed4bd, 0x0359cbb9, 0x031fdbbd, 0x0356c0b9, + 0xbd38c1c1, 0xd50327d0, 0xb902acd1, 0x930355c2, 0x05f4c3fb, 0x0328d2bd, + 0xe61cb499, 0x5303004f, 0x01fcd3f3, 0xa0d4d534, 0x57c4b902, 0x29d4bd03, + 0x5cc0d103, 0xb0d0d503, 0x1bb19902, 0x0322d1bd, 0x0358c2b9, 0x0323d2bd, + 0xbdb8417e, 0xb9032bd0, 0xa7037cc3, 0xfd4fff2e, 0x0360d3bd, 0xc130b399, + 0xd3bd7424, 0x40e8032e, 0x3fe60282, 0xb49903e2, 0x2fd4bd60, 0x61b09903, + 0x0330d0bd, 0xbd62b199, 0x990331d1, 0xdbbd63bb, 0xc4b90332, 0xd4bd0360, + 0x4c060345, 0x036cc2d1, 0x0361c1b9, 0x0350d2d5, 0x0368c3d1, 0x0346d1bd, + 0x034cd3d5, 0x0370c4d1, 0x0354d4d5, 0x0364cbd1, 0xdbd54027, 0xc0d10348, + 0xd4bd0378, 0xd0d50347, 0xc2d1035c, 0xd2d50374, 0xc3b90358, 0xf293037d, + 0xbd063d58, 0x990361d3, 0x3027b424, 0x31274486, 0x032cd3bd, 0x27ad2499, + 0x27448600, 0xff4ea701, 0x92d1fd4f, 0x41110640, 0x069073d1, 0x03489489, + 0x0ad4ad21, 0x2dd0bd03, 0x27310303, 0x9073d540, 0xb072d506, 0x2874bd13, + 0x2071d515, 0x4092d515, 0x03480706, 0x9c74d541, 0x9b302706, 0xc4890ef3, + 0x4893892e, 0xf95f0ea7, 0x8d430bff, 0xb1274894, 0x01299bbe, 0xfba5a103, + 0xfc2ca2f0, 0x391ed127, 0x41834007, 0x25332407, 0x242b4487, 0x35333207, + 0x3e23322b, 0xa9fff954, 0xa9030a32, 0x0b030834, 0x8b4e2b42, 0xde41e84f, + 0xff4ea7fb, 0x40d5ffff, 0xa1e00698, 0xd027fbe4, 0xf3430d07, 0x34b9f58e, + 0x4ce4018e, 0x7efc68ff, 0xc689f998, 0x24cb8922, 0x0306c499, 0xbc030f6c, + 0x7364730f, 0x0344c6b4, 0xc1b153b1, 0xf4c534c4, 0x30f0c130, 0x83645489, + 0x03330f0c, 0xf930f0c5, 0x00007f01, 0xeef185ff, 0x7e025546, 0x568db2e9, + 0x665b8d64, 0xe66054c1, 0xc102704f, 0x46a65854, 0x35072407, 0x34191027, + 0x015542e0, 0x3c031103, 0x7ef2900c, 0x0ff6b04a, 0x1ea70230, 0x99feffff, + 0xc1890914, 0x8743832e, 0x2b443324, 0x4d43f942, 0x03ff0000, 0x1813e232, + 0xdf0ea702, 0x18beffff, 0xf2c10088, 0x27402730, 0x7f2ef930, 0x05ff0000, + 0x9df34df4, 0xf35306f4, 0xf453faa4, 0x3001faa4, 0x14014101, 0x00004ed8, + 0x02192903, 0x049928c6, 0xff4cc009, 0x0bbf070b, 0x0b43194b, 0x99421d23, + 0x4cc00a04, 0x2f070dff, 0x4319420b, 0x320b0219, 0x1c03431d, 0x100c0314, + 0x050c1fc4, 0x27c4ff00, 0x07272710, 0x19410b4f, 0x0731e043, 0x88110301, + 0xdf0ea7f2, 0x7dbeffff, 0x99890087, 0xff4ea748, 0x4211fd4f, 0x030ad9ad, + 0xffff3ea7, 0xbd4b27ff, 0xa1152834, 0xd51b27fd, 0xe4152032, 0xa7fec313, + 0xffffff3e, 0x069c34d1, 0xf95f0ea7, 0xd54103ff, 0xbe069c34, 0x5e012800, + 0x24c1fea8, 0x004ef874, 0xfd780100, 0x89fd795e, 0xd3ad5893, 0x9489030c, + 0xab410358, 0x58948d4f, 0x030ed3a9, 0xfc0643ee, 0xf4933027, 0x8d05f238, + 0xf95e5843, 0x5e4027fb, 0x0a7efd05, 0xe70fe6b2, 0xdf0ea7fa, 0x18beffff, + 0xc3990087, 0xdf0ea707, 0x3433ffff, 0x9ca03f03, 0x34190006, 0x341d4203, + 0x0086dbbe, 0x81fac15e, 0xee4147fb, 0x07fea7b4, 0x33418731, 0x27342b34, + 0xfdb10721, 0x06e38432, 0xe0bf6b00, 0xfe95ffbc, 0xf1b14b07, 0x44333b87, + 0xf091432b, 0x9ca91bfd, 0x4f030006, 0x0006e384, 0x20874311, 0x23f5210b, + 0xff0003d8, 0x24f54421, 0xff0003d0, 0x5e04c199, 0x4147fa65, 0xfef7e4ee, + 0xbf6bb107, 0xffdf0ea7, 0x8672beff, 0xffbcc400, 0xfef05eb8, 0x25271527, + 0xa7489989, 0xfd4fff4e, 0xd9ad4311, 0x4ea7030a, 0xbdffffff, 0xa1152842, + 0x2043d5fd, 0xfeed5e15, 0x069074d1, 0x94994816, 0x61fc9304, 0x42dc05f1, + 0x7e080714, 0xc499ae02, 0xa3122704, 0x9d222742, 0x0b1e04c4, 0x27271727, + 0x1327b71e, 0x4ea72327, 0x89fd4fff, 0x43114899, 0x030ad9ad, 0xffff4ea7, + 0xd5d127ff, 0xbd152043, 0x5e152842, 0x5489fe9f, 0xa8b4ee66, 0xfdae5efd, + 0xe0ae1f7e, 0x27fdcd02, 0x5e2b271b, 0x1c27ff7c, 0x5e21070c, 0x0427ff74, + 0xda8bf193, 0x84819e00, 0xb09b7e00, 0x0fe60f6b, 0x52c101b1, 0x5453c15c, + 0x89645189, 0x23f86654, 0x1703025c, 0x17e34803, 0xed2747e3, 0x0d271000, + 0x3cf80fff, 0xf8025220, 0x53025a32, 0x01f84ffb, 0x0d21d8b3, 0x2c832307, + 0x0324e67f, 0x322b803c, 0x649b6107, 0x26076433, 0x24c6208b, 0x622b6e0b, + 0x14072147, 0x1103239b, 0x02073107, 0x0c833153, 0xe631237f, 0x4701f40f, + 0x53411b43, 0x802c0341, 0x0407202b, 0x1007030b, 0xf035029b, 0x2333f431, + 0xf245460b, 0x2827f455, 0x89645489, 0x53c1665b, 0x23430358, 0x0343e331, + 0x9b4153b1, 0x0bb15313, 0x33b49b12, 0x7051c5b6, 0xf151f031, 0xbc03fb65, + 0x0b3103a0, 0x6850c5b1, 0x9b7456c5, 0xafd77eb3, 0x05460f6b, 0xf231f441, + 0xb40b422b, 0x0b071b07, 0xe5be2127, 0x50c50084, 0x7eb00760, 0x0f6bafb9, + 0x008a0fe6, 0xe65854c1, 0x27fcba4f, 0x75150730, 0x27f325f3, 0x834b07e0, + 0x3b071f4c, 0x3c0344e6, 0x07342b20, 0x074e0b43, 0x1f2c8324, 0x4c0324e6, + 0x15422b20, 0x83430714, 0x03077f4c, 0x0c0344e6, 0xc1042b80, 0xb0075854, + 0xf0313607, 0x4123349b, 0x340b409b, 0xf421f241, 0x320b3b0b, 0x4307340b, + 0xe67f4c83, 0x803c0344, 0x4227342b, 0x1325141d, 0xf221f071, 0x0103f361, + 0x54c1230b, 0x25f07558, 0x0c1c03f2, 0x04cae60b, 0xfc245e8d, 0xe65854c1, + 0x07fc324f, 0x1e102725, 0x0bfb6105, 0x833b07b0, 0x4b071f3c, 0x4c0334e6, + 0x51432b20, 0x0b2415f0, 0x83400704, 0x44e67f4c, 0x2b800c03, 0x1d422704, + 0x5854c124, 0x11032025, 0xca0c2c03, 0xdf5ecc14, 0x5c52c1fb, 0x895453c1, + 0x54896450, 0x8d23f866, 0x03140700, 0xe3180307, 0x2717e307, 0x271000bd, + 0xd80fffed, 0xf86b203c, 0x5300bc32, 0x01f69ff3, 0x0d21d834, 0x3c833407, + 0x0334e67f, 0x432b804c, 0x319b3007, 0x23073433, 0x24c62e8b, 0x322b3b0b, + 0xe09be407, 0x01072e47, 0x42070103, 0x4c830153, 0xe601237f, 0x802c0344, + 0x4047242b, 0x4e9b411b, 0x1c831407, 0x0314e67f, 0x412b804c, 0x230b209b, + 0xf255240b, 0x20276027, 0xf6351027, 0x495ef245, 0x5b32d8fe, 0xf63ef353, + 0x961e3401, 0x11031407, 0x2780bc27, 0x7c5e7fec, 0x1b4347ff, 0x07415341, + 0x07130b14, 0x35329b31, 0xfe125ef3, 0xec274103, 0x7f0c2780, 0xd8fdad5e, + 0xfb531332, 0xb301f608, 0x53fdb05e, 0x01f5fbfb, 0xfda75eb3, 0xf5fafb53, + 0x9e5eb301, 0xe9f353fd, 0x5e3401f5, 0xf353ff45, 0x3401f5e8, 0x4eff3c5e, + 0x41fa93fa, 0xa41905ee, 0x012b41e0, 0xffff4ea7, 0x004bb9ff, 0xfc4cc101, + 0xcbcabc0b, 0x273b1e10, 0x7cd4fd40, 0x03ff0000, 0x2ebccec1, 0xdc83dc07, + 0xf9d3330f, 0x00007cd4, 0x224c83ff, 0x27e142c4, 0x7ed4fd41, 0x07ff0000, + 0xf2197e0c, 0xd4fd4027, 0xff00007c, 0xcbcec103, 0x6df493d4, 0x240705ef, + 0x07ff2c03, 0x7f2ce334, 0x197f3ce3, 0x803c0334, 0x99f932c2, 0xfd9370a3, + 0xc005edcc, 0x3319ff3c, 0xa03f0334, 0x3900069c, 0x2320a734, 0x27343d41, + 0x70d29d40, 0x7e74d4c5, 0x0ea7f398, 0xbeffffdf, 0xc100829f, 0x3ea744dc, + 0x27ffffff, 0x0034bd40, 0x402d2701, 0xfc3cc501, 0x06943cd5, 0xfc330ea7, + 0xbe1027ff, 0x07007539, 0x844d034d, 0x27202701, 0x4205403c, 0xf3c84403, + 0xeef7f393, 0x65fd9305, 0x2c2705ed, 0x3d40a710, 0x03341d34, 0xf2a0103c, + 0xd63cd4c1, 0x7e002749, 0xd127abd3, 0xd1030d07, 0xc4abca7e, 0x40a7f7d7, + 0x0ea73027, 0xc5ffffdf, 0xa49d44ac, 0x74a3c570, 0x008203be, 0xd05efa0e, + 0x3ad199ef, 0xed5af093, 0x7e212705, 0x4027ed1d, 0x1e3cd4c5, 0x1d4227c1, + 0xe8ee7ea4, 0x4efecf5e, 0x010dd0fe, 0x2c272810, 0x2721030c, 0xcae23be1, + 0x3ea7f8e0, 0xd1ffffff, 0x07067834, 0x27e40b02, 0xd5222710, 0x0e06783e, + 0x01699efe, 0x0c2c2704, 0x1000ed27, 0xfb4edd1e, 0xb0070419, 0x44c61f6b, + 0xfb8e1596, 0x41271b16, 0xfb8eb41d, 0xecaef393, 0x93330105, 0x054a9bf4, + 0x2ea74305, 0x93fefdf3, 0x04fa67f3, 0x01304c27, 0x05340330, 0xa8240320, + 0x9b4027f4, 0xfb0e0ef4, 0x027b5a9e, 0x7da4f293, 0x6df49302, 0x3127054a, + 0xec7afd93, 0x9d420505, 0x0ea705d3, 0xbeffffdf, 0x27008167, 0x7e5a740d, + 0xfc93ff5f, 0x050634bc, 0xdf0ea7c0, 0x2dbeffff, 0xc3010081, 0x341d4027, + 0x4c034307, 0x2711279c, 0x411d1c2c, 0x4c031103, 0x07f2b09c, 0x732d0323, + 0x6c3d035a, 0xff4ea755, 0x43d5ffff, 0x2ce31848, 0x7f3ce37f, 0x3c033419, + 0xf932c280, 0xffff4ea7, 0x421d27ff, 0x4844d101, 0x07202718, 0x23420531, + 0xb8440311, 0x1b2c27f3, 0xd3c530a7, 0xdad2bd78, 0xffcea70f, 0xc1d5ffff, + 0xd2bd1858, 0xd2bd0fd8, 0x40270fd9, 0xc53cd1c5, 0xd1d544d1, 0xd49d1010, + 0x18d1bd0d, 0x50c1d510, 0x54c1d518, 0xee717e18, 0x270c4c27, 0xb82d2710, + 0x26d49d01, 0x9d24d49d, 0x0ea725d4, 0xbeffe973, 0x27007365, 0x2740000d, + 0xbe100720, 0xd500806c, 0x270520c0, 0x000d0321, 0x07372708, 0xf5433342, + 0x00052040, 0x032103ff, 0x6808000d, 0xff4ea7f3, 0x43c1fd4f, 0x33202768, + 0x40a7103c, 0x9d5bd49d, 0xd29d5cd2, 0x1c3c535a, 0x274635c0, 0x9320000d, + 0x063813f2, 0x4c271027, 0x27213513, 0x9dc127e1, 0x402756d4, 0x9d0c249d, + 0x332754de, 0x9d0d2c9d, 0xde9d0e21, 0x9d212555, 0x41275dd1, 0xad60d1c5, + 0x05482ed0, 0x2cd0ad23, 0x1d2c1548, 0xfe645eb4, 0x10000d27, 0xfb4eba1e, + 0xffffdea7, 0x10d499ff, 0xfb8e4486, 0xc027fbab, 0x9b0dfc9b, 0x3ea70efc, + 0x11fd8fff, 0xa3012734, 0x0400004e, 0x52be3415, 0x4ea70077, 0x01fd4fff, + 0x9d212743, 0xf4930fd3, 0x1d0548cc, 0x10d29d42, 0x9b0fd499, 0x31270efc, + 0x43f54487, 0xff02b040, 0xf093fbeb, 0x2705eabc, 0x5efb0e11, 0xfc4efdea, + 0xf9b3eea7, 0x34e4c1ff, 0x4606d107, 0xcea7d407, 0xa1fff9b3, 0x484dcac4, + 0x3ea7fc8e, 0x99feffff, 0xe2990934, 0x87438324, 0x2b443334, 0x4d41f943, + 0x03ff0000, 0x9b120328, 0x0b41271d, 0xa1423b10, 0xca140be3, 0xd1074013, + 0x00011fd0, 0xa7c01000, 0xfff9b3ce, 0xdf27c4a1, 0x10000000, 0xa7bad4c2, + 0xffffdf0e, 0x007f30be, 0x0ea70976, 0xbeffffdf, 0x07007f3f, 0x7e1d070c, + 0x0ea7e860, 0x0effffdf, 0x7f0a9efc, 0x07130700, 0x011ff0d1, 0x7f100000, + 0x07bd1eff, 0x0e1d070c, 0xe83e5efc, 0x0000000c, 0x00060000, 0x00001000, + 0xf393f54e, 0x0705ea08, 0x4433c1a1, 0x36c6f193, 0xc1f36306, 0xa3a56c14, + 0xe9f2f793, 0xc5f0b505, 0x7cc130f2, 0x2542c444, 0x017414d1, 0x991e4cce, + 0x0c1b7010, 0x83a8817e, 0x0c40180c, 0x130c2718, 0xf58ef343, 0xe9c6f093, + 0x440cc105, 0xffdf0ea7, 0x7eb5beff, 0xa8ac7e00, 0xffff3ea7, 0x093499fe, + 0x24874383, 0x422b4433, 0x004d43f9, 0x3403ff00, 0xc3ca300b, 0xdf0ea710, + 0x69beffff, 0x0b27007e, 0xf58ef343, 0x2c832c07, 0x3342070f, 0x7c43f943, + 0x07ff0000, 0x84ee23e4, 0x3ff6ffff, 0x020700a5, 0x27330a33, 0x0f03022b, + 0x0006ab48, 0xc5d404c1, 0x46e6340c, 0xf1934419, 0xd105e954, 0x27102412, + 0xcb343b31, 0x2413d532, 0x41f29310, 0x2dd105e9, 0x24d11024, 0x4dab1028, + 0x127b41f8, 0x41532027, 0x41dc2103, 0x3b1127fa, 0x07420712, 0x33353332, + 0x0b1dab43, 0x15f39343, 0x31d505e9, 0xf3931024, 0x01063168, 0xa7422b31, + 0xfd4fff2e, 0x44872311, 0x13c5140b, 0xd401c58c, 0x20a73027, 0xe39d4127, + 0x9de33d05, 0xe41d04e3, 0x029de27d, 0xff3ea707, 0x34b9ffff, 0x44b60100, + 0x03fc3cc5, 0x0034bd41, 0xdf0ea701, 0x9dbeffff, 0xf493007d, 0xc105e8c0, + 0x43994449, 0x8349070a, 0xd4070f4c, 0x4733da33, 0xdf03d42b, 0x0006ab48, + 0x93d4d7c1, 0x05e89ffb, 0x3fe6f795, 0xa499033a, 0x104ce00a, 0xb1b90332, + 0xf79302c9, 0x2704f2ec, 0x86b2b940, 0xcab0b902, 0x03740502, 0x03741518, + 0x5d080321, 0x85b3b971, 0xcbb1b902, 0x05729d02, 0xb2b9707d, 0xb0b902cc, + 0x31030288, 0x1b07713d, 0x1d04739d, 0x06729d70, 0x101c1d03, 0x07072827, + 0x006facbe, 0xa189c007, 0x0ea08910, 0x8930a289, 0x817e32a3, 0x964127a7, + 0xab4027c4, 0xb0b3a940, 0x6cb2c102, 0x44961127, 0x00271027, 0x0127230e, + 0x0284b3b9, 0x0709b499, 0x2720ab21, 0x27340e10, 0xab420711, 0xa54fe641, + 0x23090700, 0xa6a07e01, 0x0cf804e6, 0x7e11a720, 0x7459edd8, 0xe7e6f093, + 0x8402b905, 0x7e49f002, 0x27743911, 0x274200c1, 0x21cd03c0, 0xcdf39380, + 0x34c105e7, 0x2df99368, 0x4d830630, 0xb2070100, 0x275893c1, 0x27449681, + 0x47b10380, 0x0ea08988, 0x8910a189, 0xae8930a2, 0x2f3bee32, 0xed8a7e11, + 0x3002f293, 0x19372706, 0x1941e024, 0x0c2c0311, 0x94c1f3a0, 0xd54bee58, + 0xa6fb7e10, 0xc55c98c5, 0x9cc5589b, 0x75f09354, 0x711105e7, 0x02b004a9, + 0x02b97701, 0x01d50284, 0x04c51020, 0x1c07d56c, 0x09029d10, 0xe756f793, + 0xb9402705, 0x9d028570, 0x74b90a74, 0x709d0286, 0x36749d35, 0x028a70b9, + 0x028b74b9, 0xe736f393, 0x37709d05, 0xb938749d, 0xd1028c70, 0xa902c074, + 0xa902ac32, 0xb902b031, 0x9d028d33, 0x74c53970, 0xe6129b40, 0x0704f43f, + 0x33420732, 0x0b443338, 0x0b844743, 0x45810b41, 0x93402774, 0x05e6f7f7, + 0xffdf0ea7, 0x5474bdff, 0x7be5be48, 0xff2ea700, 0x29d1ffff, 0xc7070680, + 0x0f289ff6, 0x02b273a9, 0x02ac7ca9, 0xbd104c27, 0xbd184024, 0x9b184529, + 0xdf0ea7c3, 0x95beffff, 0xf093007b, 0xd105e6b8, 0xd102c001, 0xa902bc04, + 0x0b02b802, 0xf81d0314, 0xa9120b07, 0xd102ae03, 0x8702c402, 0xd50c5533, + 0x0b485802, 0x018df013, 0x270fce10, 0x31030c3c, 0x433b4127, 0x6bf848ca, + 0x79f7933f, 0x745105e6, 0x0724739d, 0x074c023c, 0x013df034, 0x270e9410, + 0x21030c2c, 0x423b4127, 0x07f843ca, 0x934f6b42, 0x05e653f0, 0xf025049d, + 0x7010011d, 0x0c3c270e, 0x41273103, 0x41ca433b, 0x6b4307f8, 0x35f1934f, + 0x149d05e6, 0x24149926, 0x270c4c14, 0xf2930c4c, 0x9905e624, 0x249d2521, + 0x0c1c1424, 0x930c1c27, 0x05e613f3, 0xe60ef793, 0x9a32a905, 0xcb74b902, + 0x9833a902, 0x9b422302, 0xff2d0323, 0x25719d03, 0x2a534f6b, 0x0e3742f0, + 0x320b3247, 0xf0933153, 0xb905e5e4, 0x07029302, 0xc901b9b0, 0x27259602, + 0x04bd104c, 0x2c270293, 0x03430710, 0x9b435347, 0x99430b41, 0x429b24b0, + 0x203b2127, 0x4553e207, 0x32274a33, 0x2325b199, 0x07e40be1, 0x3b413b43, + 0x0b201330, 0x02e28b43, 0x07e4074e, 0x7e00271e, 0xbca9fade, 0xb2a902ac, + 0xc30302ba, 0x7fff4ea7, 0x03c3e3d0, 0x274381c8, 0x28b28d40, 0x9b34b49d, + 0x273c2ac2, 0x34b49d41, 0xea30b4c1, 0xb90d794c, 0x9d0287b1, 0x0d0707b1, + 0xe55af293, 0x47dd0305, 0x03302702, 0xa702000d, 0x4c23c540, 0x074a248d, + 0xe32d0730, 0xdd237f2c, 0x3ce30247, 0x0334197f, 0x32c2803c, 0x30f2c1f9, + 0xb1be1a07, 0x1d070274, 0x01201d03, 0x11230d07, 0x07d80c03, 0xe3300721, + 0x11037f2c, 0x197f3ce3, 0x803c0334, 0x93f932c2, 0x05e503f3, 0x02d439d1, + 0x07122c27, 0x03300749, 0x47010c4c, 0x37054403, 0xf2a83403, 0xe4e6f293, + 0xd420d105, 0x6703b902, 0xe6318301, 0x03025d3f, 0x0701e7dd, 0xe331072d, + 0xdd237f2c, 0x3ce301e7, 0x0334197f, 0x32c2803c, 0x074007f9, 0x544c0331, + 0x01322c27, 0x05440347, 0xa8340337, 0xa5f193f2, 0x14d105e4, 0x44d102d4, + 0xd4d5017c, 0xd48901e8, 0xdf4d832a, 0x2ad48dff, 0x89a4bd7e, 0xd0bd14ab, + 0xbcf40360, 0x27017f21, 0x60d4bd40, 0x61d4b903, 0x0a4fe603, 0x27462702, + 0x09a49d10, 0xe608a499, 0x93015a4f, 0x05e45ff7, 0x02d473d1, 0x34d10027, + 0x20270164, 0x00004f1c, 0x21270800, 0x41c34207, 0x4486418b, 0x40070127, + 0xd4bd4f6b, 0x4fc601ec, 0x2c34b969, 0xedd4bd01, 0x5e4fc601, 0x2d071307, + 0xa3890027, 0x3014a912, 0x07430201, 0xad455343, 0x8901ee24, 0x14a912a3, + 0x43020132, 0x4c034307, 0xad45531f, 0x8901f024, 0x14a914a3, 0x43020134, + 0x45534307, 0x01f224ad, 0xa914a389, 0x02013614, 0x03430743, 0x45531f4c, + 0x01f424ad, 0x01edd3b9, 0x18030103, 0x03ca2803, 0xc9f093aa, 0x03d105e3, + 0xc00702d4, 0x016434d1, 0x00004ff8, 0x01750200, 0x011c34b9, 0x3076f193, + 0xa7202706, 0x1b149d30, 0x02b413d5, 0x02a312bd, 0xbd19149d, 0x9d02a012, + 0x41271a14, 0x037dd4bd, 0x7608a399, 0x20d4b935, 0xff4ce001, 0xd1c101a7, + 0xb19351e8, 0x079461f7, 0xc5285321, 0x31074073, 0xc5303c83, 0x21834474, + 0x24c63453, 0x33833203, 0x49534107, 0x240e4183, 0xf0b134a3, 0x7e95039d, + 0xd0d5a3b5, 0xf193033c, 0xb905e344, 0x89485411, 0xd1bdf0d4, 0xd4c5037c, + 0x024de030, 0xf40b5011, 0xc711034d, 0x824de000, 0xf40a4801, 0x1201834d, + 0x024de001, 0xf40b4a01, 0x1a01034d, 0x4b41e001, 0x27ff1e0c, 0xecd4bd40, + 0xff375e01, 0xfe870fe6, 0xd5a3377e, 0x07036cd0, 0xa3387ec0, 0x1c031b07, + 0xd515731f, 0x070368d0, 0x27021441, 0x07100202, 0x07c10b10, 0x70dcd504, + 0x68d1d503, 0xa675be03, 0x64d0d500, 0x08a49903, 0xf29345d6, 0xc105e2c0, + 0x23d54423, 0xf4934850, 0xd105e2b4, 0xd1485043, 0xd50370d1, 0xc10378d3, + 0x41074440, 0x032b4123, 0x992d04c2, 0x492608a4, 0x32be012b, 0xd4d100a6, + 0xd0d50368, 0x40c20374, 0xbd412717, 0x5e0361d4, 0x4027fe0d, 0x0120d4bd, + 0x0124d3bd, 0x27fdd95e, 0x61d4bd40, 0x5e112703, 0x4de0fdfc, 0x098f3104, + 0x31054df4, 0x4de000cd, 0x0bc91121, 0x11224df4, 0x4de000b2, 0x0bb71104, + 0xb9ff385e, 0x27016431, 0xa28a7e00, 0x02d4c4d1, 0x41b90127, 0x7d7e0165, + 0xd4c4d1a2, 0xb9022702, 0x7e016641, 0x8b5ea270, 0x034107fe, 0x8407404c, + 0x840b8153, 0x125e7445, 0x814de0fb, 0xd4093202, 0x1902824d, 0x02014de0, + 0xee5e0a34, 0x044de0fe, 0xe00a3601, 0x2a01214d, 0xfedf5e0a, 0x03014de0, + 0x4de00b50, 0x0b440321, 0x93fed05e, 0x05e1d7f2, 0x02d423d1, 0x34d1c207, + 0x4ff60120, 0x31b9fe4a, 0x00270164, 0xd1a20f7e, 0x2702d4c4, 0x6541b901, + 0xa2027e01, 0x02d4c4d1, 0x41b90227, 0xf57e0166, 0xbd4027a1, 0x5e037dd4, + 0x4de0fe1e, 0x0b191201, 0x21044de0, 0x825e0b0d, 0x024dc0fe, 0x4d341d80, + 0x4de08003, 0x08b58001, 0xe0fe705e, 0x9480214d, 0x224de008, 0x5e088880, + 0x4c27fe61, 0x5ad4bd15, 0xe9f99303, 0x943905e0, 0xd4894566, 0x104ca32a, + 0x272ad48d, 0x40d4bd40, 0x0c929903, 0xe146f793, 0x38d2bd05, 0xa1c37e03, + 0x0339d0bd, 0xe136f393, 0x6833c105, 0x0210d4a9, 0x035cd3d5, 0x0334d4ad, + 0x89547799, 0xd7bdead4, 0xfb930337, 0x83062dd0, 0xbdb30141, 0xe00336d4, + 0x34065f32, 0x0d31c033, 0x33e0ff1e, 0x34e00813, 0xf51e0809, 0xbd424c27, + 0x990345d4, 0x45a60db4, 0x2da2f493, 0xe0430106, 0x9908bd31, 0xd1a90cb0, + 0xd0bd020e, 0xb0210342, 0x0210dca9, 0x061b0fe6, 0x419b4c07, 0x061340e2, + 0x010b0123, 0x00a466be, 0xd0ad0fab, 0x0cce0334, 0x0701030b, 0xad41e340, + 0x930334d4, 0x06298bf4, 0x025f44b9, 0xd4bd0d07, 0xbb990359, 0x57dbbd0f, + 0xba7e7e03, 0x8912a489, 0xf1932ad2, 0xb105e088, 0x0e128df3, 0x021cd4d5, + 0x137d3359, 0x8d12a489, 0xa7891ad4, 0x6df49314, 0xd78d05e0, 0x16a0891c, + 0x891ed08d, 0xf09318a1, 0x8d05e05c, 0xa28920d1, 0x22d28d30, 0x8d32a389, + 0x449924d3, 0x9d302735, 0xa4990fd4, 0x27449636, 0x06d39d31, 0x27370799, + 0x43d7bd40, 0x0cd49d03, 0x810bd49d, 0x84d1c5a1, 0xd2c5a291, 0xc5a3a188, + 0xa4998cd3, 0x04d49d0a, 0x9d0ca799, 0xa1b105d7, 0xb13cd1c5, 0x38d2c5a2, + 0x990ba399, 0x33470aa4, 0x340b4183, 0x4f6b4307, 0x9910d49d, 0x1cdc5a01, + 0xd2992440, 0x1e24d804, 0xc35b0399, 0xd034ee41, 0x5c039907, 0x35664027, + 0xd4994526, 0xc341838a, 0x1e4f6b41, 0x9d402703, 0xa39916d4, 0x9d40a737, + 0xd49d08d3, 0x38a49909, 0xd49d3027, 0xb1f7b111, 0x4f7799f0, 0x0356d7bd, + 0x42e00459, 0x430705da, 0xd49d41c3, 0x95f19312, 0x118905df, 0x8df2b128, + 0xa3892cd1, 0x85f79310, 0x238d05df, 0x0ea4892a, 0x248d77b1, 0x04d09928, + 0x9dd0d7c5, 0x30271820, 0xd499a315, 0x32a28904, 0x41834253, 0x2c03245b, + 0x8342071f, 0xd3b91f4c, 0x4c130343, 0x4df09320, 0x102705df, 0x11273402, + 0x4227230b, 0xd49d3127, 0x17d19d14, 0x0715d39d, 0x99455342, 0xd48d0b03, + 0x463ff62e, 0x8d402702, 0xd38d62d4, 0x0ea18964, 0x02d402d1, 0xc162d18d, + 0xa3894400, 0xa424b910, 0x34d0c501, 0xe664d38d, 0xb905e54f, 0x9d019c22, + 0xf49380d2, 0x9905def8, 0xdbc10744, 0xdf0ea734, 0xd599ffff, 0xbef4a510, + 0x070073df, 0x0f2c832b, 0x72072333, 0x7e234027, 0x27ffff84, 0x7e23fd33, + 0xfdff0000, 0x00007f25, 0x8224fdff, 0x03ff0000, 0x99743d76, 0x150737a0, + 0xa499f065, 0x6501830c, 0x997623f0, 0x449607d6, 0x21fd05a6, 0xff00007f, + 0x09ff6ce0, 0x07d69d05, 0x9c6056fd, 0x74190006, 0x42a3423c, 0xf293741d, + 0x6105de84, 0xe6c20724, 0x9904d74f, 0x2fe680d2, 0xd3890109, 0x64d48962, + 0x056c21fc, 0x3027439b, 0xf3751487, 0x049d22fc, 0x04473027, 0x24fcf385, + 0xd489053f, 0x1cd3891a, 0x030f4c03, 0x34730f3c, 0x349b4473, 0xb1078027, + 0xb00bb303, 0xb3e3b30b, 0xcb0bcb47, 0x1000cd14, 0x1000cd27, 0xe7af4ea7, + 0xe64001ff, 0x1105d00f, 0x30c4c244, 0x05c70fe6, 0x06be1c07, 0x40070072, + 0x9ea74c26, 0x07ffe7af, 0x051b070c, 0xbe9c1594, 0xab00a1a3, 0x110c080f, + 0x27100c27, 0x23403b41, 0x27942541, 0xafeea730, 0x2c27ffe7, 0x21112710, + 0x3b4107e0, 0x8bc30743, 0x96cf6b40, 0x58310346, 0xdf0ea7f2, 0x9dbeffff, + 0x08270072, 0x07f4335e, 0xc02f4b2c, 0xffffff2f, 0x123be8ff, 0x41eb4007, + 0xe7af3ea7, 0x993425ff, 0x330180d1, 0x320b2b9b, 0x056f11f8, 0xd4c54307, + 0x5f12fc68, 0xc5402705, 0x14fc6cd4, 0x3027054b, 0xd3c5f271, 0x34d4c170, + 0xd2c5f381, 0x78d3c574, 0x9d7cd8c5, 0xd4c560dc, 0x2741275c, 0x04749d30, + 0x9905739d, 0x44c60ca4, 0x04d6f0a1, 0x16a6f161, 0x46873607, 0x430b3433, + 0xdd62f293, 0xd442f505, 0x59ff0003, 0x5d412374, 0x36a39974, 0x03853ff6, + 0xfc04d499, 0xc3037744, 0x6056fd51, 0xa700069c, 0xffffdf0e, 0x0071f7be, + 0xdd1af293, 0x07226105, 0x900c030d, 0x0744d2c5, 0x09f39320, 0xd00705dd, + 0x2ce34127, 0x0b349d7f, 0x0790dc23, 0x03341932, 0x32c2803c, 0x31f193f9, + 0x2c2705de, 0x6c6ebe40, 0x10a48902, 0xd48df0b1, 0x0ea78928, 0xdcd6f293, + 0x26d78d05, 0xdbc10079, 0x0dd09d44, 0x0b07f1b1, 0x93041199, 0x05dcbff7, + 0xc10ed19d, 0xac014023, 0xc110a489, 0xc30b30f2, 0x1a074487, 0x2dbec40b, + 0xa901026c, 0x4c0b4b07, 0xd4c59b0b, 0x4cd9c550, 0xdc92f393, 0x24339905, + 0xdc8af193, 0x58d39d05, 0x03267799, 0x9d03fccd, 0xf0b15ad7, 0x3b071161, + 0x3c0b0485, 0xd3c54105, 0x69f29354, 0x229905dc, 0x9d4d0725, 0x039559d2, + 0xcd033007, 0x3c0303fc, 0x5c4c0370, 0x47012927, 0x37054403, 0xf2a83403, + 0xb180d299, 0x3df393f1, 0x129d05dc, 0x48dcc594, 0xd15ad299, 0x2702bc34, + 0x3b4c0b31, 0x0b342b32, 0x10a289b4, 0xdc1ef493, 0x854b7505, 0x07268643, + 0x27102729, 0x89240540, 0x110310a3, 0x13da2403, 0x9b4027f3, 0xd0b90ef4, + 0xf7b10337, 0xdbf6f193, 0x1d709d05, 0xe60c1499, 0xb101504f, 0x34d2c1f1, + 0x5544d3c1, 0x3019c512, 0xa49913b5, 0xd5f09308, 0x149d05db, 0x09a79919, + 0x991a179d, 0x109d2400, 0xc1f1931b, 0x12d105db, 0x2df04858, 0x03a31001, + 0x030c3c27, 0x3b412731, 0xf842ca43, 0x4f6b4307, 0x270c4c14, 0x4f6b0c4c, + 0xf393f2b1, 0x9d05db98, 0x34411c24, 0xdb8ef793, 0x51242505, 0x3c23c177, + 0xd4d52735, 0x2031034c, 0xdb7af193, 0x50d0d505, 0x08339903, 0xd3bdc107, + 0x14c10354, 0x0f4c8344, 0x24073407, 0x34332833, 0xf293320b, 0x2b0623b4, + 0x87240134, 0x08a29933, 0x32bd340b, 0xaa9911ac, 0xbd202709, 0x8911ad3a, + 0x45532ad4, 0x34bd4183, 0xd49911af, 0xb432d505, 0xae34bd11, 0xd5f7b111, + 0xc111b032, 0xd3c13c74, 0x28449930, 0x0355d4bd, 0x9d341099, 0x31c018d0, + 0x9b7c7e66, 0xd0ad0fab, 0x07660332, 0xad58c189, 0x890330d1, 0x410358c4, + 0xc48d4fab, 0x32d3a958, 0xce34ee03, 0xe5f29302, 0x249905da, 0xe3312704, + 0x04249d42, 0x817e231d, 0x71f9bee2, 0xff4ea700, 0x4211fd4f, 0x3027f491, + 0x43c50027, 0x9042c568, 0xc55043c5, 0x295e5843, 0x34dcadf1, 0xfa055e03, + 0x5e4d4c27, 0x0d07f9b3, 0xc6e1c67e, 0x115e940f, 0xdf0ea7f1, 0x90beffff, + 0xd2c1006f, 0x83012734, 0x23330f2c, 0x007c24f9, 0x1d07ff00, 0x24fd44a3, + 0xff00007c, 0xc110d399, 0x315338d4, 0x1c03033b, 0x2704ab90, 0x11cc27e0, + 0x4e3b4127, 0x4cc6408b, 0x4cc01419, 0x44331dff, 0x9b1c4f03, 0x42b90006, + 0x43b90185, 0x21030184, 0x43bd3103, 0x42bd0184, 0x14390185, 0x1dff4cc0, + 0x4f034433, 0x00069b1c, 0x018542b9, 0x018443b9, 0x31032103, 0x018443bd, + 0x018542bd, 0x1203e103, 0x99aefcf0, 0x4cc007d4, 0x34872fff, 0x340b4433, + 0x03cc34f1, 0x4ee3ff00, 0xa3030000, 0x0200004e, 0x03cc34f5, 0xd4c1ff00, + 0x34d79944, 0x03d434f5, 0x37fdff00, 0xff0003cc, 0xffdf0ea7, 0x6eaebeff, + 0x93412700, 0x05d9cff0, 0x5e0c049d, 0x3127fddf, 0x47fa255e, 0x85040744, + 0xfb645ef4, 0xf616d499, 0xc3fc8e4f, 0xfd40a751, 0x069c6054, 0xfc815e00, + 0x07262099, 0xbe20271b, 0x6503ee2b, 0x1c0ff6c0, 0xfbc75efb, 0xdb12f393, + 0x27202705, 0x330ea7e0, 0x1c27fffc, 0x83040110, 0x0300004e, 0x21034836, + 0x863722d4, 0x03ea9624, 0x3c03140c, 0xa7f12810, 0xffffdf0e, 0x006e37be, + 0xcd5e0727, 0x004ec4ef, 0x19de0300, 0xd94fd634, 0x4e833421, 0xc4ffff00, + 0xffff004e, 0x1ee103cc, 0xa71027c8, 0xfffc33ee, 0x01100c27, 0x002e83e2, + 0x2fc60300, 0x03110365, 0xf07014ec, 0x9999ba1e, 0x80d99d55, 0x89fa1d5e, + 0xd4891cd8, 0x0f8c031a, 0x730f4c03, 0x9b447384, 0x5e380784, 0x439bfac2, + 0x10070487, 0x955ef075, 0x6e4c27fa, 0x27f7fa5e, 0xf45e644c, 0x164c27f7, + 0x27f77c5e, 0x765e144c, 0x104c27f7, 0x27f7705e, 0x6a5e0f4c, 0x1b4c27f7, + 0x27f7645e, 0x5e5e134c, 0x6b6107f7, 0xff6ce06f, 0x1607ff57, 0x36871433, + 0x34f1310b, 0xff0003cc, 0x03d432f5, 0x4ee3ff00, 0xa3030000, 0x0100004e, + 0x03cc34f5, 0xd499ff00, 0x1c1f0304, 0xfd00069b, 0x0003cd34, 0xf54027ff, + 0x0003d834, 0xbd20a7ff, 0xbd018e12, 0xf1018d12, 0x0003cc34, 0x004ee3ff, + 0x34f50400, 0xff0003cc, 0xed30a089, 0x0003dc30, 0x32a189ff, 0x03de31ed, + 0xba5eff00, 0x270c07f9, 0xa000001e, 0x11be2027, 0x4007006d, 0x71fa335e, + 0x0bf181f0, 0x5e310b30, 0xf471fab0, 0xa05e430b, 0x5e4027fa, 0x0427fa92, + 0xc1f1f193, 0x6ba99e00, 0x8d402700, 0x2e5e58c4, 0x0c4c27fd, 0x07fc735e, + 0x8342cb41, 0x2a41e445, 0x5c0399f8, 0x2705d499, 0x27340e20, 0xc3420721, + 0x5e418341, 0xb0b1f81a, 0xd47e1c07, 0xc5b0b597, 0x7c5e30bc, 0x0c4c27f2, + 0x27f6745e, 0x9e5e0c4c, 0x0c4c27f1, 0x27f17a5e, 0xf6635e4b, 0x5e5e4227, + 0x0d4c27f6, 0x27f6585e, 0x525e184c, 0x5e3247f6, 0x2c7ef1ce, 0xae74a998, + 0x27734102, 0x27049621, 0x3b439b20, 0x33040742, 0xbe1a2703, 0xa7009b3f, + 0x07302740, 0xacc6a95f, 0x55f42502, 0x15f405f3, 0x45f335f4, 0x000e03f3, + 0xb9070400, 0x5c03c027, 0x72cee90c, 0x0700019b, 0x9b4c0b45, 0xf04e05e6, + 0x261001ed, 0x45f15301, 0x271301ed, 0x07310371, 0xca433b47, 0x3f6bf64e, + 0x6f113cd0, 0x24271307, 0x200b213b, 0xffff2ee3, 0x002e3403, 0xf3530600, + 0x3201ed20, 0x4c0b4f07, 0xc3f94205, 0x00019b70, 0xc4032942, 0xaa0cccc4, + 0xf401b207, 0x01094be2, 0x4be2f411, 0xf42100ff, 0x00e64be2, 0xd706f493, + 0x5443bd05, 0xff4ea748, 0x42b9ffff, 0xf7931845, 0x5505d6f4, 0x2721837e, + 0xbdce0738, 0xd5184043, 0xbd06804b, 0x5e184542, 0x2e07f019, 0x47072253, + 0x2e0b1307, 0x24d2433b, 0x07310386, 0x5e1f6b13, 0x4027ff7e, 0x27f5585e, + 0x3e5e0c3c, 0x272027f0, 0xed8f5e11, 0xee5494c1, 0x93ef28c4, 0x061f0ff4, + 0xee5c43c1, 0x5eef1c83, 0x4c27ef1c, 0xf52f5e11, 0x2a5e4127, 0x194c27f5, + 0x27f5245e, 0x1e5e0e4c, 0x1a4c27f5, 0x27f5185e, 0xf5135e4a, 0x5e100c27, + 0x94c1ece8, 0xcec4ee54, 0x7e3e07ee, 0x0fe695b8, 0xc25eeeed, 0xf47479ee, + 0x93ee8049, 0x04e0bbf4, 0x32c04339, 0x01cd270e, 0xee7b5e80, 0x5e0f0c27, + 0xcd27ecb8, 0x6e5e8002, 0x21f153ee, 0x012e07ec, 0x21f75313, 0x012253ec, + 0x072e0b74, 0xff585e13, 0x33873227, 0x430b4f07, 0x33f94e31, 0x00019b70, + 0x27ff0b5e, 0x27ec1e31, 0x4ee81e30, 0x000e27fb, 0xf67e0200, 0xb3bea79b, + 0x4827fff9, 0x0524b49d, 0x001e27b0, 0x0b070200, 0x99d3437e, 0x0b0724bc, + 0x1c07c603, 0x27966d7e, 0xb54c3b41, 0x4efb8eb4, 0xff4ea7fd, 0x43b9ffff, + 0xd007152c, 0x93673fd6, 0x04e87bf1, 0x4d273327, 0x132507e0, 0x1c031405, + 0x0331070c, 0x21074f1c, 0xe37f3ce3, 0x1c237f2c, 0x0334195b, 0x32c2803c, + 0x27d8c6f9, 0x1415544c, 0xf3930d07, 0x2704e854, 0x0101144c, 0x31050403, + 0xf4a83403, 0xe836f093, 0x9efd0e04, 0x270060a2, 0x93141544, 0x04e833f3, + 0x4c272027, 0x03320514, 0x1ef4c834, 0x5ef093e0, 0xa6be00bf, 0x901e0065, + 0x4ea7fd4e, 0xb9ffffff, 0xf6152c43, 0xa700893f, 0xfeffff3e, 0x27093499, + 0x07438310, 0x87d433d4, 0x23d42b44, 0xffffb4de, 0xffd70ea7, 0x070479ff, + 0x4b310331, 0x4823874f, 0x83041940, 0x5114ce43, 0x002824f1, 0x4ea3ff00, + 0xf5800000, 0x00002824, 0xc41307ff, 0x69bed834, 0x31270099, 0x1904d39d, + 0x033027d4, 0x9bd41d41, 0x4ea70ef3, 0xc5fd4fff, 0xf39b3843, 0xff4ea70e, + 0x4399ffff, 0xbf2ea70e, 0x3138fd4f, 0x24054127, 0x24033153, 0xfd8e32d6, + 0x31033107, 0xf093bc1e, 0xbe00bed0, 0x5e006505, 0xfd4eff6f, 0xffff4ea7, + 0x2c43b9ff, 0xf6d00715, 0x8900ec3f, 0x4fe608d4, 0x49f400da, 0xd43100cb, + 0xfffe4ffc, 0x00b6ffff, 0xf40ad489, 0xa201004d, 0x98eebe00, 0xd70ea700, + 0x0439ffff, 0x432b0319, 0x397143cc, 0x08de8901, 0x0339d431, 0x330ad289, + 0x3103104c, 0xab0fec83, 0x33033de4, 0xab138328, 0x791187e2, 0x2c1ef504, + 0x27ff0000, 0x8345f631, 0x4e070fec, 0xff804fa3, 0x047dffff, 0xf49b4027, + 0xff2ea70e, 0x24c5fd4f, 0x013ba638, 0x9b402722, 0x3ea70ef4, 0x99ffffff, + 0x31270e34, 0x34cb323b, 0x4fbf2ea7, 0x273138fd, 0x53240541, 0x03354631, + 0x27f31e24, 0x93c61e30, 0x05d337f3, 0x03433499, 0x43349d41, 0x0127fd8e, + 0xbedcf193, 0x67719e00, 0x93042700, 0x00bea8f1, 0x0067669e, 0xf1930427, + 0x9e00be79, 0x2700675b, 0x46f19304, 0x509e00be, 0x04270067, 0xbe0df193, + 0x67459e00, 0x89013100, 0x03890a02, 0xd2f09308, 0xf6be00bd, 0x045e0063, + 0xa7fb4eff, 0xffffff4e, 0x152c43b9, 0xb007f123, 0x3fd6d107, 0x930f0765, + 0x00beabf1, 0xbe102c27, 0xe6005b0e, 0x35fc93dd, 0x4d2704e6, 0x3c2707e1, + 0x15c40584, 0x07cb25c3, 0x5d9cbe0d, 0x03200700, 0x0ccc0321, 0x43273f07, + 0x34033101, 0xc403c105, 0x3459f4a8, 0x1d073309, 0xc30dc45d, 0xe619f093, + 0x5accbe04, 0xf5f09300, 0x63be04e5, 0xf103005e, 0xfd93fb8e, 0x1e00be4f, + 0x31f093ad, 0x72be00be, 0x921e0063, 0xcea7fa4e, 0xb9ffffff, 0x23152cc4, + 0xf6d007f8, 0x9905314f, 0x4ff626c4, 0xdc21051f, 0x08030d07, 0x1a3fcce0, + 0x40ccd003, 0x4ecce042, 0xccd0032c, 0xcce0774f, 0xf002af56, 0x010757cc, + 0x2159cce0, 0x5accf403, 0xcce0032b, 0xe001a757, 0x016b58cc, 0x091bcce0, + 0x1cccf406, 0xc3e0054d, 0xcce005e7, 0x93018114, 0x00c193f1, 0xcce0381e, + 0xd002df23, 0xe06024cc, 0x02422dcc, 0xa92eccf0, 0x32cce000, 0xccf401e5, + 0xe003b333, 0x01a92ecc, 0xc12fccc4, 0x4007d031, 0xf0334c03, 0x0109674c, + 0xbea0f193, 0x7e0c0700, 0x791efed9, 0x5247cce0, 0x48ccf002, 0xcce000b4, + 0xf4016e4a, 0x034f4bcc, 0x5448cce0, 0x49ccc401, 0xf0d3318c, 0x93052d32, + 0x00c099f1, 0xcce0d01e, 0xf0020310, 0x00ad11cc, 0xa613cce0, 0x14ccf401, + 0xcce00391, 0xe401e311, 0xff6212cc, 0x057ed031, 0x07dc2196, 0xa61fd610, + 0xffff4ea7, 0x2c43b9ff, 0x4d3ff615, 0xcdf49304, 0x3d2704e4, 0x242707d3, + 0x43050407, 0x4c254215, 0x005d2dbe, 0xfa8ef803, 0xf227cce0, 0x28ccf401, + 0xcce00282, 0xe400d824, 0xff1a26cc, 0x21940b7e, 0x1e1007dc, 0x51cce0b9, + 0xccf40164, 0xe0035d52, 0x01524fcc, 0xfd50cce4, 0x0cd399fe, 0xd14ef493, + 0x60439d05, 0x991edc21, 0xa442cce0, 0x43ccf401, 0xcce0037f, 0xe4012040, + 0xfeda41cc, 0xf493d231, 0xc505d12c, 0xdc214042, 0xe0ff775e, 0xf4019cc4, + 0xe0024ec5, 0xe401a0c1, 0x31febbc2, 0x92c57ed0, 0x1007dc21, 0x7eff585e, + 0x2007a9b8, 0x42072f6b, 0x04ce4f4b, 0xb7f1931b, 0xea5e00bd, 0x93d331fe, + 0x05d0ebf4, 0xc546438d, 0xdc214843, 0x93ff335e, 0x061e1bf4, 0x439d3127, + 0xa542bd69, 0xa243bd02, 0x5edc2102, 0xd331ff1c, 0x051332f0, 0xc078f193, + 0xfeb35e00, 0xf493d231, 0x27061df4, 0xb042d531, 0x69439d02, 0x02ac43bd, + 0xf55edc21, 0x93bd7efe, 0x1007dc21, 0x99fee85e, 0xf4930cd3, 0x9d05d090, + 0xdc215843, 0x89fedb5e, 0xf4930cd2, 0x8d05d080, 0xdc215a42, 0x31fecb5e, + 0x034007d0, 0x4cf4334c, 0x7efe5f67, 0x2007a91c, 0x42072f6b, 0x40ee4f4b, + 0xf493ff65, 0x27061d98, 0x69439d31, 0x02a442bd, 0x02a143bd, 0x995edc21, + 0x41fc93fe, 0x0c0705d0, 0x0c031d07, 0x0c1c031e, 0xbe102c27, 0x27005832, + 0x1cc49d41, 0x795edc21, 0x7ed031fe, 0xdc219317, 0x6a5e1007, 0x93d331fe, + 0x05d013f4, 0x213c43c5, 0xfe5e5edc, 0xbc1ef193, 0xfdfb5e00, 0x930cd299, + 0x05cffbf4, 0x2161429d, 0xfe465edc, 0x4007d031, 0xf0334c03, 0x0315674c, + 0xbc2cf193, 0xfdd75e00, 0x4f7ed031, 0x07dc21cd, 0xfe235e10, 0x097ed031, + 0x07dc21cd, 0xfe175e10, 0xf493d231, 0x27061d00, 0xa842d531, 0x69439d02, + 0x02a643bd, 0x015edc21, 0xf0d331fe, 0x93027438, 0x00bde0f1, 0x31fd985e, + 0x8239f0d3, 0x41f19302, 0x8a5e00bd, 0x7ed031fd, 0xdc219265, 0xd65e1007, + 0x7ed031fd, 0xdc219368, 0xca5e1007, 0x7ed031fd, 0xdc21919c, 0xbe5e1007, + 0x93d231fd, 0x05cf67f4, 0x213842c5, 0xfdb25edc, 0x647ed031, 0x07dc2192, + 0xfda35e10, 0xbfb1f193, 0xfd435e00, 0x3cf0d331, 0x93021f20, 0x00bc4df1, + 0xc0fd345e, 0xd01e5bcc, 0xe4295bcc, 0xfcd65ccc, 0xf293d431, 0x2705cf28, + 0x6824c531, 0x2166239d, 0xfd6e5edc, 0xf493d231, 0xc505cf14, 0xdc215042, + 0x31fd5f5e, 0x05f493d3, 0x43c505cf, 0x5edc214c, 0xccc0fd50, 0xccd01629, + 0xcce41a29, 0x31fc972a, 0x90bd7ed0, 0x1007dc21, 0x93fd345e, 0x00bc1bf1, + 0x31fcd45e, 0x92687ed0, 0x1007dc21, 0xc0fd205e, 0xc6d014c6, 0x6dc9e41d, + 0x7ed031fc, 0xdc21911c, 0x0a5e1007, 0x7ed031fd, 0xdc2190c4, 0xfe5e1007, + 0x7ed031fc, 0xdc219045, 0xf25e1007, 0x4ccc40fc, 0x194dccd0, 0xbd82f193, + 0xfc8b5e00, 0x930cd289, 0x05ce8bf4, 0x215e428d, 0xfcd65edc, 0x930cd389, + 0x05ce7bf4, 0x215c438d, 0xfcc65edc, 0x1c38ccc0, 0x273eccc0, 0x0d33cce4, + 0x07d331fc, 0xf0412343, 0x93011348, 0x00bbb2f1, 0x31fc4c5e, 0x340cf0d0, + 0xf1930165, 0x5e00bb32, 0xd331fc3d, 0xce3ef493, 0x3443c505, 0x895edc21, + 0x1accc0fc, 0x22ccc016, 0x19cce41e, 0xd031fbd0, 0x2191817e, 0x5e1007dc, + 0xd031fc6d, 0x2191927e, 0x5e1007dc, 0xd031fc61, 0x2190787e, 0x5e1007dc, + 0xccc0fc55, 0xccd02253, 0xcce42e53, 0x93fb9f54, 0x05cdf3f2, 0x31442499, + 0x704fc6d3, 0x936d3fc6, 0x00bd06f1, 0x99fbd85e, 0xf4930cd2, 0x9d05cdd8, + 0xdc216342, 0x99fc235e, 0xf4930cd3, 0x9d05cdc8, 0xdc216243, 0xc0fc135e, + 0xd01d44cc, 0xe42744cc, 0xfb5a46cc, 0x39f4d331, 0xf493023f, 0x8d05cda8, + 0xdc215643, 0x31fbf35e, 0xff32f0d3, 0x15f19300, 0x8a5e00bb, 0x8df293fb, + 0x249905cd, 0x4bd33164, 0x934d064f, 0x00bb8df1, 0x9dfb745e, 0xdc216423, + 0x27fbc75e, 0x4ff19304, 0x6c9e00b9, 0x01110061, 0x03310221, 0xb906f093, + 0x5e1fbe00, 0xfac15e00, 0xbd9af093, 0x5e13be00, 0xfbab5e00, 0xcd46f493, + 0x2e439d05, 0x915edc21, 0x46238dfb, 0x895edc21, 0x933783fb, 0x05cd2ff4, + 0x2155439d, 0xfb7a5edc, 0xcd22f493, 0x2f439d05, 0x6d5edc21, 0x15f293fb, + 0x249905cd, 0x664f4b64, 0xeaf1934e, 0xfe5e00ba, 0x2bcce0fa, 0xccc0008e, + 0xcce4792c, 0x31fab21c, 0x21f493d3, 0x4325061a, 0x3d5edc21, 0x9ad37efb, + 0x1a22f393, 0x9d412706, 0x30d56934, 0xdc2102b4, 0x7efb275e, 0x2007a584, + 0x42072f6b, 0x04ee4f4b, 0xf1930086, 0x5e00b932, 0x239dfab5, 0x5edc2144, + 0xf293fb08, 0x2705ccb0, 0x59249d40, 0xfe313fe6, 0x249d4127, 0x5edc2159, + 0xf293faf0, 0x2705cc98, 0x30249d40, 0xfe193fe6, 0x249d4127, 0x5edc2130, + 0xd299fad8, 0xadf4930c, 0x429d0619, 0x5edc210f, 0xd331fac8, 0x934733d0, + 0x00bc80f1, 0x89fa605e, 0xda890cdb, 0x07b1230e, 0x034fab4b, 0x3b44d0b1, + 0xbbccf193, 0xfa475e00, 0x32f0d331, 0xf1930081, 0x5e00bc2b, 0xf493fa39, + 0x2706197c, 0x69439d31, 0x02a342bd, 0x02a043bd, 0x7d5edc21, 0x55f493fa, + 0x439d0619, 0x5edc210e, 0xa123fa70, 0x4fab4a07, 0x4cd0a103, 0xac231714, + 0xab4a0720, 0x20ac034f, 0x01004d30, 0xbb99f193, 0xf9f35e00, 0x4b07b323, + 0xb3034fab, 0x277642d0, 0x7e02000d, 0x10078f63, 0x008f1ff6, 0x9347b1c0, + 0x06190bfc, 0xc49d4127, 0x46a3d00d, 0xcb05ca15, 0x1d5edc21, 0xf5f293fa, + 0x40270618, 0xe60d249d, 0x27fd463f, 0x0d249d41, 0x055edc21, 0xddf293fa, + 0x40270618, 0xe60c249d, 0x27fd2e3f, 0x0c249d41, 0xed5edc21, 0xc5fc93f9, + 0x40270618, 0x1e0dc49d, 0x8c877eb9, 0xb5410cc8, 0x93403c27, 0x05cb7ff4, + 0xa91e4345, 0x02000d27, 0x078ed17e, 0x078a1e10, 0x801c2743, 0xf2930f07, + 0x2700b9d3, 0x55edbe38, 0x07032700, 0x5f599e1f, 0x5edc2100, 0xfe4ef949, + 0xffff4ea7, 0x2c43b9ff, 0x93379615, 0x05cb3bf3, 0x45063419, 0x341d4027, + 0x0427fe8e, 0xbbdaf193, 0x5f2d9e00, 0xbef09300, 0xe6be00bb, 0xdc1e005b, + 0xdea7fc4e, 0xb9ffffff, 0x21152cd4, 0x694fd60c, 0x4027c9f6, 0x1550dcd5, + 0x1554d4ad, 0xffff4ea7, 0x2c43b9ff, 0x603fd615, 0xde22f493, 0xe33d2704, + 0x07202707, 0x15430504, 0x9efc0e42, 0xd4005682, 0xd4d1dbc6, 0xdcad1550, + 0x4fd61554, 0x00cf27d0, 0x27101000, 0x1000804f, 0x50d4d510, 0x270c0715, + 0x802c2710, 0x0052e8be, 0x33563f27, 0xc3c51122, 0x9b402740, 0xa51e0ef4, + 0x2c070111, 0xbb6af093, 0x5b5fbe00, 0x938a1e00, 0x00bb8cf0, 0x07e31d27, + 0x005b50be, 0xfb4e931e, 0xffffcea7, 0x2cc4b9ff, 0x8e449615, 0x71f493fb, + 0x411905ca, 0xca1af393, 0x19f49305, 0x320105ca, 0xf0934301, 0xbe00bb73, + 0xb9005b21, 0xc6152cc4, 0x1f27da4f, 0x1007a000, 0x90000f27, 0x06be1007, + 0xb0070057, 0xc0001f27, 0x0f271007, 0x1007b000, 0x0056f4be, 0x1f27c007, + 0x1007e000, 0xd0000f27, 0xe2be1007, 0x30070056, 0x2c071b07, 0xbb63f093, + 0x9efb0e00, 0x4e005ad5, 0xff4ea7fd, 0x43b9ffff, 0xd007152c, 0xf2933a56, + 0x2704dd2c, 0x0507e04d, 0x2c3c2724, 0x24254427, 0x0d072315, 0x270c2c03, + 0x0303014a, 0x03230504, 0x93f4a824, 0x04dd07f0, 0x739efd0e, 0xf0930055, + 0xbe00bb53, 0x1e005a8d, 0xabfb4ec6, 0xa3d1070f, 0x071207f0, 0xb90dc0e3, + 0x0de0670b, 0x008d0bba, 0x0bbb0de0, 0x0dc000bd, 0xa7120bbc, 0xffffff4e, + 0x152c43b9, 0x00f63ff6, 0xfb8ef083, 0xffffcea7, 0x2cc4b9ff, 0x064ff615, + 0x1ad48901, 0x00b144f4, 0xffffcea7, 0x2cc4b9ff, 0xe24ff615, 0xd0d45100, + 0xc4b9d744, 0xd341152c, 0x79ce4fc6, 0x39311934, 0x93335932, 0x00bc31f0, + 0xfb0ef083, 0x005a149e, 0xffffbea7, 0x2cb3b9ff, 0x0e3ff615, 0x18d48901, + 0x40e84f8b, 0x3ff6008b, 0xd4c1021d, 0x9944c834, 0x152cb4b9, 0x4fc6d371, + 0xa7c11e90, 0xffffffbe, 0x152cb4b9, 0x017c4ff6, 0x44f0d471, 0xb4b9ff7c, + 0xd361152c, 0x4fe6d081, 0x030bff70, 0x01190479, 0x03590239, 0xf093f083, + 0x0e00bbce, 0x59b39efb, 0xff4ea700, 0x43b9ffff, 0x3fe6152c, 0xd301ff4c, + 0xf0932e07, 0x8300bce5, 0x9efb0ef0, 0xb9005995, 0xe6152cc4, 0x99ff4b4f, + 0xd29920d1, 0x22d39921, 0x9323d499, 0x00bd3ef0, 0x005978be, 0xf6ff335e, + 0x9101ef3f, 0x1144f0d4, 0xff765eff, 0x2e073007, 0xbd70f093, 0x0ef08300, + 0x59579efb, 0x51d14100, 0x38f093d2, 0x4abe00bd, 0x125e0059, 0x29f493ff, + 0xf29305c8, 0x0105c828, 0x93240143, 0x00bca1f0, 0x2ebe2e07, 0xc4b90059, + 0x4fe6152c, 0xd421fedd, 0xd201d111, 0xf093d331, 0xbe00ba23, 0xb9005915, + 0xe6152cc4, 0x89fec44f, 0xd28918d1, 0xa7f0931a, 0xfebe00bc, 0xb25e0058, + 0xddf493fe, 0xf29305c7, 0x0105c7dc, 0x93240143, 0x00b9bcf0, 0xe2be2e07, + 0xb3b90058, 0x3fe6152c, 0xd331fed5, 0xd201d111, 0xf093d421, 0xbe00b9d7, + 0xb90058c9, 0xe6152cb3, 0x41febc3f, 0xf9f093d2, 0xc20700b9, 0x42073207, + 0x070ccc53, 0x53335312, 0x2253104c, 0x3183c183, 0x41832183, 0x9abefc05, + 0xb3b90058, 0x3fe6152c, 0xd389fe8d, 0x18d18914, 0x9316d289, 0x00b9f7f0, + 0x005880be, 0x152cb3b9, 0xfe733fe6, 0x8944d189, 0xf09346d2, 0xbe00ba01, + 0xb9005869, 0x5e152cb3, 0xf493fe5d, 0x9305c744, 0x05c743f2, 0x24014301, + 0xbaf0f093, 0xbe2e0700, 0xb9005849, 0xe6152cb4, 0x21fe674f, 0x01d111d4, + 0x93d331d2, 0x00b93ef0, 0x005830be, 0x152cb4b9, 0xfe4e4fe6, 0xf093d341, + 0x0700bafc, 0x07c307e3, 0x53230713, 0xcc5314ec, 0x07e18310, 0x532a5341, + 0x83c18334, 0x83218341, 0x15fe0531, 0x57fbbefc, 0x2cb4b900, 0x194fe615, + 0x51d181fe, 0x71d361d2, 0x05f093d4, 0xe2be00bb, 0x055e0057, 0x71d391fe, + 0x93d281d1, 0x00ba06f0, 0x0057d0be, 0x152cb3b9, 0xfdd03fe6, 0xa130d3c1, + 0x93d2b1d1, 0x00ba12f0, 0x0057b8be, 0x152cb3b9, 0xfdb83fe6, 0xc13cd3c1, + 0xd2c134d1, 0x1cf09338, 0x9ebe00ba, 0xb3b90057, 0x3fe6152c, 0xd189fd9e, + 0x42d28940, 0xba1df093, 0x5787be00, 0xfd8c5e00, 0xd281d171, 0xb929f093, + 0x5777be00, 0x2cb3b900, 0x003fe615, 0xa1d191fe, 0x2ff093d2, 0x62be00b9, + 0xb3b90057, 0x3fe6152c, 0xdec1fdeb, 0x2cd18934, 0x892ed289, 0xd48930d3, + 0x21f09332, 0xfe0500b9, 0x005740be, 0x4efdce5e, 0x69f493fb, 0x42890616, + 0x0843890a, 0xb107c007, 0x0027322e, 0x54befb8e, 0xf3930052, 0x0105c608, + 0x0bd00734, 0x56340540, 0x860d0705, 0x8e0127d4, 0xff4ea7fb, 0x43b9ffff, + 0x31e6152c, 0x1b07c009, 0xbb48f293, 0x47f39300, 0x667e00bb, 0x4edb1efc, + 0x07f063fd, 0x39f193d0, 0x0f0704d3, 0x0726a23e, 0x4d24f409, 0xf4290bba, + 0x14284cc0, 0xf1930627, 0x9e00bb3c, 0x85005a03, 0x430027d0, 0x93fd8ef0, + 0x04d30ff2, 0x21512481, 0x00004fd4, 0x27182000, 0x71236100, 0x0a430b24, + 0x2707d614, 0xf6f19306, 0xd49e00ba, 0x410b0059, 0x4fd03027, 0x70000001, + 0x6b03071e, 0x07db1e0f, 0xd5f3930d, 0x4a2704d2, 0x34033201, 0x04030205, + 0x0127f4a8, 0x3127ae1e, 0xfb4ee01e, 0xc54ef493, 0xa7430105, 0xffffffbe, + 0x3123f063, 0x152cb2b9, 0x4305f005, 0xfc09d107, 0xfc0d2b36, 0x4d27f001, + 0xfc9307d6, 0x2704d8a8, 0x07c40530, 0xbec3151d, 0x070050dc, 0x5108be0c, + 0xd8d44100, 0x710f114c, 0xb94586d4, 0x030e2db4, 0x2db4bd41, 0x8ef0430e, + 0x930c07fb, 0x00bac9f2, 0xba5cf393, 0xfb7b7e00, 0xfc4eb91e, 0xf005f063, + 0xd107fc09, 0x0bbbcdc0, 0xd5f3930c, 0x340105c4, 0x34054123, 0xffff4ea7, + 0x2c43b9ff, 0x0d38b615, 0x93f001fc, 0x04d83ffc, 0x07d54d27, 0x1d073027, + 0xc315c405, 0x005088be, 0xf0430c07, 0x979efc0e, 0x0c070050, 0xba70f293, + 0x73f39300, 0x227e00ba, 0x63cd1efb, 0xb94d27f0, 0x483c270b, 0xf32df40d, + 0xf0011007, 0x931ef043, 0xf493f54e, 0xb905c540, 0xb902dd49, 0xee02dc46, + 0x0700f569, 0x07218329, 0x33420732, 0x2b463334, 0x33d40743, 0x07d40bd3, + 0xfcaf03ad, 0x0100069d, 0x103cf8a3, 0xe02700d2, 0xcbe9c247, 0xff001564, + 0x1560c4e9, 0xc8e9ff00, 0xff00155c, 0x47a6b7e6, 0x1d078806, 0x9b1c1f03, + 0x12b90006, 0x14b9048d, 0x4242048c, 0x43834307, 0xca6542c0, 0xa3015eb8, + 0x072b32d8, 0x1c2f032d, 0xd100069b, 0x2702e024, 0x2742e310, 0xe024d530, + 0x8d21bd02, 0x8c23bd04, 0xed402704, 0x00155cc4, 0x8821d5ff, 0x03490704, + 0x6b940741, 0x2469ce9f, 0x21832907, 0x42073207, 0x46333433, 0xd407432b, + 0xd40bd333, 0xaf03ad07, 0x00069dfc, 0x3cfca301, 0x07ff6f10, 0xd1f58e0e, + 0x07048815, 0x07420771, 0x33363332, 0x0b430b43, 0x46438945, 0xb3ca0407, + 0xff017e83, 0x048d74b9, 0x048c73b9, 0x24074103, 0x72bd2f6b, 0xe127048d, + 0x5ed323ca, 0x0027ff67, 0xfb4ef58e, 0x13b6f493, 0x49426906, 0x07d00743, + 0x27322eb1, 0xbefb8e00, 0x0700519e, 0x0907e6c0, 0xbb0dc0d0, 0xf3930c0b, + 0x0105c348, 0x05410334, 0xff4ea734, 0x43b9ffff, 0x3596152c, 0xc4c60c07, + 0xfb8e0127, 0x1b07fb8e, 0xb890f293, 0xfff39300, 0xae7e00b8, 0x4ee61ef9, + 0xff3ea7f8, 0x34b9feff, 0x4cf81e99, 0xa700d510, 0xffffff1e, 0x99093399, + 0x432b4414, 0x41e84f4b, 0xfb9300c2, 0x9905c2fc, 0xb29941bc, 0x2b4c0740, + 0x6b340742, 0x393fe63f, 0x83e20701, 0x03e333e7, 0x069a58ef, 0x44bd9900, + 0x008fefe6, 0x4fe4e401, 0x0000c5c8, 0x910700b1, 0xffd7aea7, 0x798b07ff, + 0x449399a4, 0x20274f4b, 0x010140e8, 0x422b4307, 0x0f6b0407, 0x10070323, + 0x03031f6b, 0x077b01ce, 0x87438341, 0x2b443324, 0x4f43f942, 0xf6ff0000, + 0x03410737, 0x6b140741, 0x8331071f, 0x33438733, 0xce342b34, 0x34f95401, + 0xff00004f, 0xe49940a6, 0x2b310704, 0xc83f4b34, 0xb4994c31, 0x96280742, + 0x99d12344, 0x30274024, 0x14074103, 0x239d1f6b, 0x40219d42, 0x2747c1ce, + 0x44bd9d30, 0x36f60027, 0xf493f88e, 0x9905c23c, 0x43994042, 0x6b322b41, + 0xa600273f, 0x8e012731, 0x04e499f8, 0x342b3007, 0x31cc3f4b, 0x42b499b6, + 0xa644bd9d, 0x11f49349, 0x429905c2, 0x2b3c0740, 0x1e3f6b32, 0x83e107d5, + 0x03e333e7, 0x069a58ef, 0x01ee8600, 0xc84fe0e4, 0x2c0000c5, 0x448d9dff, + 0xb49d4127, 0xff4ea742, 0x4499feff, 0x9de30109, 0xfc9304e4, 0xc005c1d4, + 0x00c5c83f, 0xcd9d2400, 0x8be40144, 0x40c399f4, 0x2b41c499, 0x6b340743, + 0x27871e3f, 0xfefe5e21, 0x9d44bd99, 0x655e44bd, 0x1ed123ff, 0x2b4c07da, + 0x6b340741, 0xff535e3f, 0xdea7f84e, 0xb9ffffff, 0xa3152cd4, 0x4c4ff6f0, + 0x49f89301, 0xd49905c2, 0x2e42e026, 0xf3aabe01, 0xff4ea700, 0x4bb9ffff, + 0x4cb90e2c, 0xbcce0e2f, 0xba9d2759, 0x28ac270b, 0x4c070c1e, 0xc4074103, + 0xbccecf6b, 0x833c0745, 0x43070f3c, 0x44332387, 0x432b422b, 0x04074333, + 0xde23d407, 0x23fff1d0, 0xfff1a80e, 0x00f31fbe, 0x4fc6d481, 0x754027ce, + 0x0dd465d4, 0x01fa2df9, 0x7e1d07f0, 0x4c07fbc6, 0xc4074103, 0xcbcecf6b, + 0xff2ea7bd, 0x2bbdffff, 0x2bbd0e2f, 0x81c10e2e, 0x9d302744, 0x839d0683, + 0xd08bbd08, 0x9821d502, 0x9824d106, 0xd530a706, 0x07069c24, 0x0923bddf, + 0x03402701, 0x0a24add4, 0x1421d501, 0x110b1e0e, 0x15f193f0, 0x737e04d0, + 0x930d07fb, 0x04d00bf1, 0x07fa967e, 0xa70156c0, 0xffffffde, 0x152cd4b9, + 0x00884ff6, 0xd426f493, 0xd83d2704, 0x05040707, 0xbe4c1543, 0x93004c8a, + 0x05c097f2, 0x27402499, 0x9d410330, 0x249d4223, 0xfd657e40, 0x064088b9, + 0xd8bd1d07, 0xdcbd0e2d, 0x21271678, 0x27113c27, 0x7824fd40, 0x03ff0016, + 0x27f39821, 0xd5f08340, 0xd5166814, 0xd5167414, 0xd5167014, 0x8e166c14, + 0x088499f8, 0xfecf4ff6, 0xf1930427, 0x9e00b652, 0x9300548f, 0x05c0fff8, + 0x9926d199, 0xf0930882, 0xbe00b60c, 0x5e00513d, 0xf093fea6, 0xbe00b681, + 0x5e005131, 0xfd4eff70, 0x061ef063, 0x237ef001, 0x55f193fb, 0x0f0704cf, + 0x07fc917e, 0x49f193d0, 0x015604cf, 0xffff4ea7, 0x2c43b9ff, 0x9339d615, + 0x04d36bf4, 0x07d73d27, 0x43050407, 0xcfbe4d15, 0xf293004b, 0x9905bfdc, + 0x30274024, 0x239d4103, 0x40249d42, 0x43fcaa7e, 0x93fd8ef0, 0x00b638f0, + 0x0050d0be, 0xfb4eca1e, 0xffffdea7, 0x2cd4b9ff, 0xf6f06315, 0x9900e74f, + 0x4ff626d4, 0xfc9300ec, 0x7e05c064, 0xcbb9fb1c, 0xcdb902dc, 0xdbce02dd, + 0x073d1e0e, 0x0741034d, 0xcedf6bd4, 0x4d0732bd, 0x34074183, 0x44333633, + 0x0307342b, 0x030b0333, 0x9dfc04f1, 0x43830006, 0x03d942c4, 0x069e080f, + 0xfac97e00, 0x41034d07, 0xdf6bd407, 0xb9d0dbce, 0xc60ec5c4, 0x07d02748, + 0x330d073d, 0x2b063334, 0x33400703, 0x03040b43, 0x06a17c0f, 0xfa9d7e00, + 0x0ec5c4b9, 0xd4dad103, 0x273027df, 0xd5202740, 0xd10648c3, 0x2702d4c1, + 0x44c2d530, 0xddc4bd06, 0xd8c3d502, 0xc5c4bd02, 0xdcc4bd0e, 0x2115e602, + 0xff3ea714, 0x4103ffff, 0x155834d5, 0xf1930f07, 0x7e04ca20, 0x07e6fb76, + 0x4dc0f409, 0x01ee0bbb, 0x0df193f0, 0xeb7e04ca, 0x930f07f9, 0x04ca03f1, + 0xb6fb597e, 0xfeb07e00, 0xfb8ef043, 0xb54ef093, 0x4fcfbe00, 0xff115e00, + 0xf1930427, 0x9e00b556, 0x4e0052ff, 0xffdea7fd, 0xd4b9ffff, 0x4e36152c, + 0x9926d199, 0x41ce27d4, 0xff3ea73c, 0x3499feff, 0x87438309, 0x2b443324, + 0x4d43f942, 0x23ff0000, 0x3738d431, 0xd49d4227, 0x8e120027, 0x71f493fd, + 0x439905be, 0x03202740, 0x42429d31, 0x0e40439d, 0xfb3d5efd, 0xf1930827, + 0x9e00b537, 0x930052a3, 0x00b521f0, 0x004f5cbe, 0x0827a71e, 0xb564f193, + 0x528d9e00, 0xa7fd4e00, 0xffffffde, 0x152cd4b9, 0xd2994a96, 0x27d49926, + 0x271f42ce, 0x27d49d40, 0xfd8e2486, 0xbe1af393, 0x40349905, 0x0342329d, + 0x40349d41, 0xe85efd0e, 0x930827fa, 0x00b549f1, 0x00524e9e, 0xb531f093, + 0x4f07be00, 0x4ec41e00, 0xffcea7fb, 0xc4b9ffff, 0xd007152c, 0xdc064f96, + 0xc4b9b027, 0xcbbd152c, 0x4f7606a4, 0xd14ef293, 0x27cd9d04, 0x07db4d27, + 0x24053427, 0x2d252315, 0xcd9d0207, 0x49a8be26, 0xb5f39300, 0x349905bd, + 0x423b9d40, 0x349d4103, 0x5efb0e40, 0xf493fa83, 0x9905be64, 0x20270443, + 0x439d32e3, 0x08429d04, 0x7e064d9d, 0xa91ed00b, 0xb511f093, 0xbe1d0700, + 0x1e004e91, 0x18f0939a, 0x1d0700b5, 0x004e84be, 0xfb4e9b1e, 0xffffcea7, + 0x2cc4b9ff, 0x93499615, 0x05bda7fb, 0xd486bd19, 0xc4b9fb8e, 0x4816152c, + 0xd0caf493, 0xdd3d2704, 0x05040707, 0xbe4d1543, 0x2700492e, 0x8eb41d41, + 0xf2fc7efb, 0xf093d21e, 0x2700ae75, 0xbe07dd1d, 0x1e004e39, 0xa7fb4ed4, + 0xffffffde, 0x152cd4b9, 0x00c24ff6, 0x7fff4ea7, 0xf84391d0, 0x00d1103c, + 0xff79e4be, 0xbcfef493, 0xf5f39305, 0x420105bc, 0xf0933101, 0xbe00b529, + 0x27004e01, 0x07a0001f, 0x000f2710, 0xbe100790, 0x070049ed, 0x001f27b0, + 0x271007c0, 0x07b0000f, 0x49dbbe10, 0x27c00700, 0x07e0001f, 0x000f2710, + 0xbe1007d0, 0x070049c9, 0x072c0730, 0x0cf0931b, 0xbebe00b5, 0x4127004d, + 0x4fff3ea7, 0x21d4bdfd, 0x2732010e, 0x0ef49b40, 0xd399c127, 0xcbc23b0e, + 0xbf3ea7c3, 0xc138fd4f, 0x34054127, 0xc4c6c153, 0xf31e3403, 0x78414f27, + 0xf4e8017d, 0xffff3ea7, 0x2c34b9ff, 0x93487615, 0x04cfe3f4, 0x07dc3d27, + 0x43050407, 0xfb0e4c15, 0x0048459e, 0xb43ef093, 0x4d5fbe00, 0xff365e00, + 0xad8bf093, 0xdc1d2700, 0x4d4fbe07, 0x27d11e00, 0x30f19304, 0x809e00b4, + 0xfc4e0050, 0xffff4ea7, 0x2c43b9ff, 0xbe397615, 0x16ff7cc5, 0xff4ea70a, + 0x43b9ffff, 0x3fd6152c, 0x89f49374, 0x3d2704cf, 0x202707d9, 0x43050407, + 0xfc0e4215, 0x0047e99e, 0xb488f093, 0x4d03be00, 0x93cd1e00, 0x05bb13f2, + 0x99092399, 0x34ce0824, 0x03430764, 0xf9478341, 0x0699803c, 0x09249d00, + 0xffdf0ea7, 0x5189beff, 0x333c0700, 0x0bcc8734, 0xccc4f1c3, 0xd8ff0003, + 0x0300004e, 0x03c3070d, 0x069ca0cf, 0xb6c41900, 0x93082747, 0x00b46ff1, + 0x004fee9e, 0xacdff093, 0xd91d2700, 0x4ca3be07, 0xff7f5e00, 0x0ea74223, + 0x1dffffdf, 0x511ebec4, 0xff635e00, 0xf1930827, 0x9e00b419, 0x4e004fc3, + 0xffbea7fb, 0xb4b9ffff, 0xc007152c, 0x4ff60d01, 0xdde0013a, 0x00e903ee, + 0x03efddd0, 0xf2dde024, 0xf400e303, 0x8d03f3dd, 0xf0dde000, 0xe0011803, + 0x0b03f1dd, 0x93042701, 0x00b462f1, 0x004f829e, 0x03ebdde0, 0xddd000c7, + 0xe07d03ec, 0xd303ecdd, 0xedddc400, 0xfd93e003, 0x9905bb18, 0x4e9644d4, + 0x2741de99, 0x831e0741, 0x9d133317, 0x1d0b44d4, 0xe66ef453, 0xd0991405, + 0xff3ea743, 0x109dfeff, 0x44b49904, 0x2b093299, 0xcc4f4b42, 0x4ea71141, + 0x79ffffd7, 0x07353643, 0x9d410340, 0x4e070414, 0xd3994103, 0x9d4f6b40, + 0x432b41d4, 0x49f44f6b, 0xfb8e00a8, 0x03f4dde0, 0xdde40081, 0xff7703f5, + 0xfb0e0c07, 0xc0efdb5e, 0x1d03e9dd, 0x03eadde4, 0xfd93ff65, 0x9905ba9c, + 0xf45341de, 0x1e07fc59, 0x13331783, 0x8d1e1d0b, 0xba86fd93, 0x41de9905, + 0xfbd1f453, 0x17831e07, 0x1d0b1333, 0x0eff775e, 0xfe405efb, 0xfb0e0c07, + 0x93e80b5e, 0x05ba63fd, 0x5341de99, 0x07faa1f4, 0x3317831e, 0x5e1d0b13, + 0xfd93ff54, 0x9905ba4c, 0xf45341de, 0x1e07f8ac, 0x13331783, 0x3d5e1d0b, + 0x5efb0eff, 0x0c07ef32, 0x3f5efb0e, 0x5efb0ee6, 0xf093fd05, 0x0700b32b, + 0x4b2fbe1d, 0xfebc5e00, 0xf1930427, 0x9e00b326, 0x4e004e5f, 0xff4ea7fe, + 0x4391d07f, 0x4e103cd8, 0x03c10471, 0x3802c134, 0x00004fd0, 0x0b347000, + 0x014fd443, 0x2bf00000, 0x813e32ca, 0x91475604, 0xa146d604, 0xb1465604, + 0xc145d604, 0x45363004, 0x963c04c1, 0x27fe8e44, 0x1cf19306, 0x109e00b4, + 0x0627004e, 0xb392f193, 0x4e059e00, 0x93062700, 0x00b357f1, 0x004dfa9e, + 0xf1930627, 0x9e00b3a5, 0x00004def, 0x00000012, 0x0000006c, 0x07b9f54e, + 0xd00702dc, 0x02dd00b9, 0x4007f563, 0xf0c5471b, 0xbe840738, 0xc1ff774c, + 0xf0b544d1, 0x1fe68f6b, 0x11230459, 0x4f834107, 0x80000003, 0x40e81103, + 0x448708e4, 0xabe044f1, 0x31070005, 0x00033f83, 0xf4a58000, 0x078130e8, + 0x4387f1a1, 0x41f5f2b1, 0x0005abe0, 0x03ea22e4, 0xf3953027, 0x02d8d4d1, + 0x82f4f485, 0xf2910137, 0x0d07ed07, 0x3d071d07, 0xed034d07, 0x0d030804, + 0x1d030654, 0x21030ec8, 0x02e03d03, 0x04a44d03, 0xc53cfec5, 0xf1c540f0, + 0x48f2c544, 0xc54cf3c5, 0xd4b950f4, 0x4fe60ec6, 0xd4b90113, 0x4fe60ec5, + 0xd4b9010b, 0x45060ec7, 0xd4bd4127, 0x47070ec4, 0x34074183, 0x44333633, + 0xd2b9342b, 0xc3070ec4, 0xc30bc333, 0x1c073207, 0x36332433, 0x322b1d0b, + 0x02e014d1, 0xe333e307, 0x2407e30b, 0x0e0721e3, 0x02e012d5, 0x03d10d0b, + 0x43e30654, 0x43ab3283, 0x02e014d5, 0x065403d1, 0x348344e3, 0x14d543ab, + 0xd3b902e0, 0x48e30ec7, 0x33333183, 0x14d543ab, 0x00d102e0, 0xcd030658, + 0x10d502ec, 0xf05302e4, 0xed03fecc, 0x2d070660, 0x04013d07, 0x3e0b2c0b, + 0x02eccd23, 0x0660ed23, 0x34033101, 0x24032105, 0x3e07f4a8, 0x4d034c07, + 0x3d0302e0, 0x0d0706a8, 0x040b1d07, 0x977e130b, 0xc7d4b985, 0x8e4ff60e, + 0xc4d4b900, 0xbd41030e, 0xb90ec4d4, 0x230ec5d4, 0x6b340741, 0xc5d3bd3f, + 0x2735960e, 0xc6d4bd40, 0xc4d3bd0e, 0x0340270e, 0xc7d4bd81, 0xf071030e, + 0x81ff0182, 0x38f3c1f4, 0x02dcd7bd, 0x4f6b432b, 0x029f48ea, 0x430d0c27, + 0x07f58ef5, 0x49f1930f, 0x5f7e04c4, 0xdc0fc6f4, 0x4dc0f409, 0xc01e0bb9, + 0x490bbb4d, 0x0bbc4dc4, 0xc1f1291a, 0xf09344f2, 0x7e04c428, 0x82f0848e, + 0xb81efeba, 0x4cc0f429, 0x06273f48, 0xb758f193, 0x4bed9e00, 0xbd412700, + 0x530ec4d4, 0xc1fdfbf1, 0xf3c13cf2, 0x01140140, 0x0534033e, 0xa824032e, + 0xff615ef4, 0xf2c1f129, 0xe5f09344, 0x8c7e04c3, 0x7782f087, 0xff755efe, + 0xc3d6f193, 0xfc134104, 0xeb08003d, 0xc9fe9301, 0xd1d104c3, 0xd0d10648, + 0xe4890644, 0x34f1c514, 0x0730f0c5, 0xb14ff61e, 0xadf09301, 0x048904c3, + 0xe6500744, 0x2300df4f, 0x83670771, 0x07360761, 0x33343346, 0x07432b46, + 0x0ba333a4, 0x0b3a07a4, 0x8c3bb93d, 0x03710304, 0x6bcb07b1, 0x8c3cbdcf, + 0xd1b12304, 0xbe048839, 0xeaff7b2a, 0x0700a50c, 0x334b072b, 0x0b233346, + 0x51fe5324, 0x01290bfd, 0x071507e4, 0x03100132, 0x03300514, 0x93f4a834, + 0x04c347f0, 0x04411a07, 0x13d11d0b, 0x4e8302fc, 0xab010000, 0xfc14d543, + 0x89034102, 0x3d834620, 0x43ab2000, 0x02fc14d5, 0xa93f0c38, 0xee030014, + 0x89018e40, 0x46074423, 0x4b0b4333, 0x87103c33, 0xf530ab44, 0x00156843, + 0xf52171ff, 0x0015a841, 0x272381ff, 0xe843f510, 0x91ff0015, 0xf5364722, + 0x00162842, 0x6030edff, 0x93ff0015, 0x04c2dbf4, 0x0c534041, 0xbe01830d, + 0xf0ff7f2b, 0x5efd6582, 0xff1efe63, 0x07180c89, 0x7bc1e0a0, 0xc00b4109, + 0x201102cd, 0x1103cdf4, 0xcdc00450, 0xf4150182, 0xa80183cd, 0x04cd2006, + 0x21cd0001, 0x02cde401, 0x0706b801, 0x0f1c531c, 0x4ea71626, 0xc1fd4fff, + 0x3ef87443, 0x34800000, 0xff4ea709, 0x43c1fd4f, 0x003f5c74, 0x40010000, + 0x200121cd, 0xfc1121cd, 0x092af0cc, 0x0281cde0, 0xb1fc04a8, 0xb2fc092b, + 0xb8fc093d, 0xb4f808a4, 0xa98900d4, 0xa49fe616, 0x14a38908, 0x08c93fe6, + 0xb692f293, 0x2c24a905, 0xc749ea48, 0x2e24a908, 0xca43ea48, 0xff1fe608, + 0x30bcfc03, 0xbcfc08fe, 0xfc0930c0, 0x1f0300bd, 0x91a47109, 0x004ff4a3, + 0x44700000, 0x93062706, 0x00b26df1, 0x0049e29e, 0x24832307, 0xfe4b2ff6, + 0x30271441, 0x20004de3, 0x138d1445, 0x46128d14, 0x5e44128d, 0xd2d1fe35, + 0xd4c10f98, 0x83210344, 0x0000034f, 0xe8f2a580, 0xa104f040, 0xf54487fe, + 0x05abe04e, 0xfdf75e00, 0xff7315be, 0x155ef095, 0x07f381fc, 0x0731830d, + 0x33263323, 0x07232b34, 0x0b433342, 0xe04d0342, 0x0b3d0702, 0x544c0334, + 0xd3d5040b, 0x567e02d4, 0x43002786, 0x1ef58ef5, 0x7e18beff, 0xa53027ff, + 0xfbc65ef0, 0x0000bef8, 0x93081f01, 0x04c173fe, 0x8918e489, 0x4f8b12ec, + 0x40e8c183, 0xf2c10533, 0x30f0c148, 0x2734f1c1, 0x5a78be30, 0xc601ab00, + 0x5acfe604, 0x83470703, 0x33340741, 0x2b443336, 0x33130734, 0x03130b13, + 0x0702e01d, 0xe03d2331, 0xd13d0b02, 0x0702e034, 0xa347e39d, 0xe034d542, + 0x44d2d102, 0x48d4d106, 0xab710306, 0x0b810324, 0x91250691, 0xa00ff6f0, + 0x03390703, 0xf2290c3c, 0xc0fefc93, 0x07030704, 0xbef3751c, 0xc1003cd2, + 0x090744f1, 0xc181e17e, 0xe0274cf2, 0x2473291b, 0x44334207, 0x340b3287, + 0x4307322b, 0x432b4933, 0xbc33b407, 0x13b40b12, 0xed6b47b0, 0x0015646e, + 0x209489ff, 0x155c64ed, 0xc0c1ff00, 0x5a0ff644, 0x14c48901, 0xc4414576, + 0x00004ef8, 0x01014c01, 0x20918994, 0x27104ce3, 0x052b0730, 0xac93bd94, + 0xad9ebd01, 0xf5253301, 0x00156821, 0xa890d5ff, 0xf5ce7101, 0x0015a82e, + 0xf5c081ff, 0x0015e820, 0xedc391ff, 0x00156061, 0x2823f5ff, 0x41ff0016, + 0x531127c0, 0x01830d0c, 0xff7cb2be, 0xffff1ea7, 0x7010d1ff, 0x3df25316, + 0x232101fa, 0x7837be01, 0x7804f900, 0xe0ff0016, 0xe0019a42, 0xd1041b41, + 0xe00644d4, 0xffffff4f, 0xbe03d5ff, 0x26ff7421, 0xff4ea708, 0x40d1ffff, + 0xfe531670, 0xe101fa08, 0x02be0123, 0x04f90078, 0xff001678, 0x02f241e0, + 0xbffef093, 0x07044104, 0x004dd8b0, 0x40270f04, 0xd3d53027, 0xd4d50644, + 0x04410648, 0x08004dfc, 0xdcd1016d, 0xd4d10644, 0x4cab0648, 0x01444ff6, + 0xbfcef193, 0x16118904, 0xbfc6f293, 0x4ed1ad04, 0x14228906, 0xbfbaf393, + 0x4cd2ad04, 0x18338906, 0xffff4ea7, 0x539c15ff, 0xd1f99bfe, 0x01167040, + 0x50d3ade1, 0x778fbe06, 0x7804f900, 0xe0ff0016, 0xd1028e44, 0xd10644d0, + 0xa10648d1, 0x27b127f2, 0x0b3027c0, 0xbe1c4b0b, 0xa700589a, 0xffffff2e, + 0x167024d1, 0x0644d0d5, 0xd1d54103, 0x24d50648, 0x82f01670, 0xf45ef9f6, + 0x939401fa, 0x05fc87f5, 0x05104ca3, 0x7704be94, 0x075401ff, 0xa34fe6a0, + 0x072a0701, 0x3346334a, 0x0b530123, 0x532b9b24, 0x0bf923fe, 0x01f07123, + 0xa892d5e4, 0x01320701, 0x05040301, 0xa8340331, 0x274127f4, 0xac94bd30, + 0xad93bd01, 0x46218901, 0x893f1c38, 0x41ee2094, 0x248900d4, 0x333b0744, + 0x3533104c, 0x34f541ab, 0xff001568, 0xfe932071, 0xf504bee8, 0x0015a830, + 0xf52481ff, 0x0015e834, 0xed2291ff, 0x00156061, 0x2832f5ff, 0x41ff0016, + 0x531127e0, 0x01830d0c, 0xff7b1abe, 0xffff1ea7, 0x7010d1ff, 0xa5f25316, + 0x232101f8, 0x769fbe01, 0x7804f900, 0xe4ff0016, 0x27fe6a42, 0xd5402730, + 0xd50644d3, 0x5e0648d4, 0x5cbefe6b, 0x0fe6ff73, 0xd3d1feb8, 0xb451064c, + 0xb389434e, 0x50d4a918, 0xa534ee06, 0xd53027fe, 0xd10644d3, 0x270644dc, + 0x48d4d540, 0xfe925e06, 0x3104cde0, 0xcdf4fbc7, 0x02723105, 0x1121cde0, + 0xcdf0fbbb, 0x03001122, 0x1201cde0, 0xcde4fbaf, 0x025f2104, 0x23fba65e, + 0xfc3fa331, 0x03ffffff, 0xf8765e31, 0xbcfcff1e, 0x070461c0, 0xbe1b070c, + 0xe4ff74ef, 0xc0014902, 0x120182cd, 0x1102cdc0, 0x02cd400d, 0x834c0701, + 0xb144e447, 0x30bcf803, 0x0627012e, 0xaf63f193, 0x45d59e00, 0xc5d4b900, + 0x079d070e, 0x33363334, 0x07342b44, 0x0b233323, 0x542d0323, 0x23120706, + 0x0b06541d, 0x5413d11d, 0xa3920b06, 0xd534e332, 0xb9065413, 0x030ec5d4, + 0xc5d4bd41, 0xfcb35e0e, 0x4fff4ea7, 0x7443c1fd, 0x00003efc, 0x27fb4d10, + 0x26f19304, 0x809e00ac, 0x02d00045, 0x07c00731, 0xa7473340, 0xffffdf0e, + 0xc40bc433, 0x0046dabe, 0xd47e0c07, 0xa75005c4, 0xffffdf0e, 0x0046a7be, + 0x2c075001, 0x7ebe1027, 0x2e5e0039, 0xb9ff1efe, 0xe60ec5d1, 0x07fc5c1f, + 0x33410731, 0x2b463334, 0x93240743, 0x04bd53fe, 0xf0c12333, 0x0be34150, + 0xf8200b24, 0x06022c34, 0xe34307c7, 0x0100004e, 0x2371e445, 0x00003ea3, + 0xb9237501, 0x270ec5d1, 0xbd312740, 0xbd0ec4d4, 0xe00ec6d3, 0x2701da13, + 0xc7d2bd20, 0xfc0b5e0e, 0x40273027, 0x0644d3d5, 0x0648d4d5, 0xd1fd035e, + 0xab0648d4, 0x254ff64c, 0xfd422701, 0x00167804, 0xfd615eff, 0x4fa34123, + 0xfffffffc, 0x135e4103, 0xa34123f7, 0xfffffc4f, 0x5e4103ff, 0xa189fb07, + 0xc81fe640, 0x42a08903, 0x03b60fe6, 0x0301cde0, 0xcdf402a2, 0x013f0302, + 0x0121cde0, 0xcdf40182, 0x02470122, 0x0102cde0, 0xcde402c0, 0x01440104, + 0x31874027, 0xf315b127, 0xf465f045, 0xf435f425, 0xaf07f455, 0xbc8af293, + 0x27e02704, 0xe2a403c0, 0x0701d0be, 0x014c0b4a, 0x3423c140, 0x02d830fa, + 0x4c034f07, 0x0b237110, 0xf444014c, 0x0000003f, 0x2701dc70, 0x91f19306, + 0x349e00ae, 0xd4d10044, 0x4fe40648, 0xffffffff, 0xf3a1fc23, 0x31234027, + 0x0644d3d5, 0xd4d53103, 0xf3a50648, 0x89fc0e5e, 0xe18916e2, 0x2ce38914, + 0x0b2ee489, 0x8d410b32, 0xe38d14e4, 0xfab85e16, 0x0644d3d1, 0x0648d4d1, + 0x20a710a7, 0x424b310b, 0x0644d3d5, 0x0648d4d5, 0xe0fbce5e, 0x640281cd, + 0x82cdf0f9, 0xe000a002, 0x580301cd, 0x21cd24f9, 0xf9515e03, 0x8001cdd4, + 0x93062751, 0x00a9dbf1, 0x0043b69e, 0x04fd4127, 0xff001678, 0x0bfc3e5e, + 0x014ff443, 0xb6f00000, 0xe43fe6f9, 0xf6a48102, 0xa102d34f, 0xf64ff6a4, + 0x34a4c101, 0xfa3544fc, 0x4c034907, 0x30a3890f, 0x43e24453, 0x0627fa27, + 0xaca1f193, 0x43719e00, 0x03cdf000, 0x07f8f680, 0xdf4d034c, 0xf04fab7f, + 0x1ef8ea42, 0x21cdc09d, 0xcdf44511, 0x01291122, 0x1102cde0, 0xcde00184, + 0xfec61104, 0x0321cde0, 0x0627015f, 0xad40f193, 0x43359e00, 0x01cde400, + 0x5eff7002, 0xcde4f8b7, 0xff671104, 0xb1f8ae5e, 0x2413e4f1, 0xbd2127fe, + 0x5e0ec7d2, 0x4007fa2d, 0x30274103, 0x21874153, 0xf215b127, 0xf365f445, + 0xf335f325, 0x8b5ef355, 0x531e07fe, 0x01f507fe, 0xc5f393e4, 0x100104ba, + 0x30051403, 0xf4a83403, 0xfe530207, 0x0c03f4f0, 0x93e4010c, 0x04baf3f1, + 0x3e013007, 0x1e053403, 0xf4a81403, 0xf0533007, 0x0401f4d4, 0xba92f193, + 0x031e0104, 0x033e0514, 0x71f4a834, 0xa3312724, 0x0100004e, 0x20272475, + 0xd4bd4027, 0xd3bd0ec4, 0xd2bd0ec6, 0xaa5e0ec7, 0xf62471f9, 0xa101274f, + 0x214ff624, 0x3424c101, 0x010f4ff6, 0xc403e103, 0xe3e42403, 0x91e2fe13, + 0x0627f91b, 0xad72f193, 0x42659e00, 0x0b409b00, 0x014ff443, 0x1cf00000, + 0xc624a1fe, 0x0627d74f, 0xacd3f193, 0x42499e00, 0x01cdc000, 0xcdc02c02, + 0xe47d0281, 0xfb0182cd, 0xfdb65efe, 0xf1930627, 0x9e00adef, 0xe000422b, + 0xa52104cd, 0x04cde0fd, 0xe4fd9f31, 0xdb1201cd, 0x034007fe, 0x53302741, + 0x55b22741, 0x15f365f4, 0x35f125f1, 0x5ef045f3, 0x3007fd92, 0x31034107, + 0x41534103, 0xb3273153, 0xf365f435, 0xf425f115, 0xf355f045, 0x07fd755e, + 0x53410340, 0x27314741, 0x65f315b3, 0x35f125f4, 0x55f045f1, 0xfd5c5ef4, + 0x31474027, 0x07fd475e, 0x47410340, 0x53202731, 0x25b22741, 0x65f455f3, + 0x35f315f2, 0x5ef045f2, 0x0627fd3a, 0xab03f193, 0x419d9e00, 0x93062700, + 0x00aaa0f1, 0x0041929e, 0xf1930627, 0x9e00a8dc, 0x27004187, 0x0bf19306, + 0x7c9e00a9, 0x06270041, 0xaba4f193, 0x41719e00, 0x93062700, 0x00ac4cf1, + 0x0041669e, 0xf1930627, 0x9e00ac19, 0x2700415b, 0x02f19306, 0x509e00a9, + 0x06270041, 0xa91bf193, 0x41459e00, 0x93062700, 0x00a92ef1, 0x00413a9e, + 0xf1930627, 0x9e00ac6e, 0x2700412f, 0x72f19304, 0x249e00a7, 0xc47e0041, + 0xf7c95ef2, 0xf1930427, 0x9e00a786, 0x27004113, 0xdff19306, 0x089e00a7, + 0x06270041, 0xa910f193, 0x40fd9e00, 0x93062700, 0x00a80ff1, 0x0040f29e, + 0xf1930627, 0x9e00aac5, 0x270040e7, 0x8ef19306, 0xdc9e00aa, 0x06270040, + 0xa931f193, 0x40d19e00, 0x93062700, 0x00a900f1, 0x0040c69e, 0xf1930627, + 0x9e00a998, 0x270040bb, 0x67f19306, 0xb09e00a9, 0xf54e0040, 0xd007f363, + 0xad1af093, 0xf2be7e05, 0x0ff6f0a5, 0xf29302de, 0xd105ad0c, 0xd102d429, + 0xd8016894, 0xd11c104c, 0xf001249b, 0x000000bf, 0x27080d40, 0xc53027c0, + 0xdcd530fc, 0xd3d5024c, 0x40270258, 0x02b5d4bd, 0xac62f293, 0x59249905, + 0x0d030d07, 0x4ff60260, 0xc9be02a0, 0x0ff6ff73, 0xd09d02ba, 0xff1ea75e, + 0x14d1ffff, 0xf3931668, 0x0305f97c, 0x69329941, 0x166814d5, 0x02bd2ff6, + 0x016494d1, 0x00004f38, 0xc0270400, 0x024cdcd5, 0xb5f8d399, 0x323fe6f3, + 0x99402703, 0xf495d8da, 0xff6985be, 0x4bbe5007, 0x9007ff70, 0xff6983be, + 0x033e02e0, 0xac6ef293, 0xd424d105, 0x56441102, 0x58d4d545, 0x4cd4d502, + 0xff4ea702, 0x40d1ffff, 0x1c271674, 0xbe012312, 0xf9006fed, 0x00167804, + 0xb142e0ff, 0x4a41e006, 0xf6f3b107, 0xf602a53f, 0x270384af, 0x6cd49d40, + 0x0653a1e0, 0x06a8a2e0, 0x2fe6f2b1, 0xa2e0031f, 0xa5e003c6, 0xa6e0079b, + 0xa7e0038c, 0xa8e00936, 0xf4b10b3d, 0xa2e044c6, 0x30270ac1, 0x0258d4b9, + 0x4123f385, 0x71037407, 0x71834183, 0xd0d1f475, 0x0fe60250, 0xf2930419, + 0xd105abe4, 0x0102d424, 0x83935349, 0x1703e091, 0x4ad3a907, 0x07422702, + 0x2b310325, 0x45d4bd20, 0x5ed1b902, 0xad402702, 0x9d0248d3, 0xd49db7d2, + 0xae1fe6b9, 0x989fe605, 0xa9f27107, 0x470248d6, 0xbd324747, 0xbd02fcd4, + 0xad031cd3, 0x23024ad6, 0x50d0d501, 0x8df29302, 0x24d105ab, 0x302702d4, + 0xd3c54871, 0xd0d3c5d4, 0x93384289, 0x05ab77fc, 0x89d0d2c5, 0xd4a93a43, + 0xf2810282, 0x02c0d4ad, 0xf6d4d3c5, 0xb904442f, 0xe00245db, 0xd10360b2, + 0x070258d3, 0x30f3c543, 0xd4bd4183, 0x5fe602b7, 0xb5960644, 0x02d4c4d1, + 0x3fe64311, 0x73be08b5, 0x1007ff73, 0x0254d0d1, 0x006eccbe, 0xd0d5050b, + 0xa1e002cc, 0xa2e007d0, 0xa5e007eb, 0xa6e00a17, 0xa7e00aa7, 0xa8e00b8a, + 0xb2e00959, 0xc1270334, 0x025fdcbd, 0xff6ae0be, 0x048e0fe6, 0xd4bd4127, + 0x848302b8, 0x84864127, 0x44334027, 0x02b6d4bd, 0x02d0d6ad, 0x02b4dbbd, + 0xb1e0ba66, 0xd4b90632, 0x4fe6025e, 0x9ff60425, 0xd2990421, 0xe521e0b7, + 0xe6a8e008, 0x27f3710b, 0xa3433b41, 0xd4d51c4c, 0xb2c402d8, 0x26f4811a, + 0x93141e48, 0x05aaa7f2, 0x02d424d1, 0x3ff64311, 0xdbd504b8, 0xd4d102d8, + 0x41030258, 0x0258d4d5, 0x3127a123, 0x3027b200, 0xf73af493, 0x0c449905, + 0xd49d2d07, 0x034027af, 0xad02f42d, 0x0702f8d4, 0x57d39d4a, 0x02fadbbd, + 0x6b44d2c5, 0x3842f04f, 0xffbea705, 0xbcd1ffff, 0x1c271674, 0x230c0712, + 0x6debbe02, 0xfd402700, 0x00167804, 0x93c103ff, 0x023d83f4, 0x1674bcd5, + 0xf0a1d415, 0xf58ef343, 0xff712bbe, 0xa77d0fc6, 0xffffff4e, 0x166840d1, + 0x23121c27, 0x6db7be01, 0x7804f900, 0xc0ff0016, 0x0d077142, 0xff7c9fbe, + 0xffff1ea7, 0x6814d1ff, 0xc1f39316, 0x410305f6, 0xd5693299, 0xe6166814, + 0xa9fd472f, 0xa90288d0, 0x99028ad1, 0xde99fbd4, 0xffdb99fd, 0xf68ef293, + 0xfadc0305, 0x250d2c99, 0x35d203fd, 0xc3d203fd, 0x45fe05c1, 0x27e027fd, + 0x3827222c, 0x15fedc23, 0x65fc55fb, 0x9fb37efe, 0x93fd075e, 0x05a9a7f3, + 0x02d434d1, 0x3fe64311, 0x4027ff77, 0x5e5ed49d, 0xf3b1fcd5, 0xfd5d31e4, + 0xfd59afe6, 0x024cd4d1, 0xfd514fe6, 0xa97ef293, 0xd424d105, 0xdcd1c102, + 0x0c074c11, 0x006d10be, 0x00d90fe6, 0x0acdc1fc, 0xd4bd4127, 0x2c5e02b5, + 0xd8da99fd, 0x4a07a123, 0xa1034f6b, 0x05a042f0, 0xf4954027, 0xff6649be, + 0x0fbe5007, 0x9007ff6d, 0xff6647be, 0xfcc602e4, 0xfcc25fe6, 0x0916a3e0, + 0x06f7a4e0, 0x0258dcd1, 0x0c071327, 0xbebe0123, 0x0f6b006c, 0x0c07f075, + 0x13270223, 0x006cb0be, 0x31277007, 0xf3857f6b, 0xe4fd155e, 0x93fce5a2, + 0x05a8fbf2, 0x02d424d1, 0xcfe64c11, 0x4ea7fce6, 0xd1ffffff, 0x27167440, + 0x0123121c, 0x006c80be, 0x167804f9, 0x41e0ff00, 0xf4b10714, 0x09744fe6, + 0x0258d0b9, 0x03d2d4b9, 0x242b2007, 0x21832123, 0x7007f275, 0x71834027, + 0xc35ef485, 0x4cd4d1fc, 0x784fe602, 0xa5f293fc, 0x24d105a8, 0xd1c102d4, + 0xbe4011dc, 0xf6006c39, 0x27fc620f, 0xb5d4bd44, 0xfc595e02, 0xa886f393, + 0xd434d105, 0x11150702, 0xce110340, 0xd4c10e01, 0xbe149bdc, 0xf6006c11, + 0xd106100f, 0xb90258d7, 0x2703c8d4, 0x75718320, 0x5ef285f4, 0xf393fc6a, + 0xd105a854, 0xc102d434, 0x4c11dcd1, 0xe6be0c07, 0x01fc006b, 0x02e0ff4e, + 0xcfe6ff4a, 0x4ea7fc2e, 0xd1ffffff, 0x27167440, 0x0123121c, 0x006bc8be, + 0x167804f9, 0x4596ff00, 0x03d2d4a9, 0xd4ad4103, 0xd4b903d2, 0xd3b90258, + 0x740703d2, 0x4123432b, 0xf4754183, 0x40277183, 0x0b5ef485, 0x5ed4b9fc, + 0x5c4fe602, 0x86412705, 0x03402794, 0xb7d4bd42, 0xe1f29302, 0x24d105a7, + 0x441102d4, 0x02ccd4d5, 0xcd5ec907, 0x4cdcd1fc, 0x62cfe602, 0xd5f47101, + 0x470250d5, 0xbd412734, 0xa70245d4, 0x1cd4bd40, 0xfcd3bd03, 0xff4ea702, + 0x40d1ffff, 0x1c271674, 0xbe012312, 0xf9006b41, 0x00167804, 0x8941e0ff, + 0x4ad4a906, 0xad410302, 0x270248d4, 0xb7d49d40, 0xa782f293, 0xd423d105, + 0x48d6a902, 0xa9321102, 0xad025cd1, 0xbd024ad6, 0xca025ed4, 0x41070d12, + 0xd4ad4123, 0xd1a9025c, 0xf493025c, 0xd105a758, 0x0702d443, 0x233349bc, + 0x5cd3adc1, 0x4cdcd502, 0x86312702, 0xa7302714, 0xffffff4e, 0x167440d1, + 0x27b9d39d, 0xcebe121c, 0x04f9006a, 0xff001678, 0x049641e0, 0x8e5e9027, + 0x58d0d1fb, 0xbe132702, 0x27006ab5, 0xb7d0bd31, 0xb8d3bd02, 0xd4c4d102, + 0x5fd3bd02, 0xd5441102, 0xe002ccd4, 0x200240a3, 0x45dbb9a4, 0xfbfc5e02, + 0x44274596, 0x02b7d4bd, 0x03c7dabd, 0xd1dcdcc1, 0x0302ccdb, 0x07c59b51, + 0x0b51230b, 0xbe1c0705, 0xd6006a6d, 0x0b07d40f, 0x68be1c07, 0x0183006a, + 0x0245dbb9, 0xd0bd0303, 0xd0bd03c7, 0xbb5e02b7, 0xd1a3e0fb, 0x23a4c002, + 0x02caa5e0, 0xe01ca6c0, 0xe0077ca7, 0x2707dba8, 0x07f27141, 0x3b373b34, + 0xd534ab42, 0x5e02d8d3, 0x4127fbd2, 0x3407f271, 0x473b323b, 0x3ca334ab, + 0xd8d3d518, 0xfbbc5e02, 0x735e4c07, 0x65f393fb, 0x34d105a6, 0x302702d4, + 0xd3bd4211, 0xd9d50245, 0x2ff6024c, 0x40270226, 0x0248d4ad, 0x024ad0ad, + 0x30a74027, 0x031cd3bd, 0x02fcd3bd, 0x9db7d49d, 0xf293b6d5, 0xd105a630, + 0xbd02d423, 0x49025ed4, 0xb9d49d33, 0x025cd3ad, 0x3506f3b1, 0xd4ad4027, + 0xd6a903d2, 0x40270248, 0xd4d59027, 0x765e0258, 0xe6f381fa, 0x7102123f, + 0x48d6a9f2, 0x47424702, 0xfcd4bd37, 0x1cd3bd02, 0x4ad6ad03, 0xfa515e02, + 0x4127f371, 0xd4d5433b, 0x435e02d8, 0xd5f393fb, 0x34d105a5, 0x421102d4, + 0xf9a62fe6, 0x061221e0, 0x07e0d1c1, 0xdcd3c142, 0x340e412b, 0xf99221ee, + 0xd49d4127, 0xadf3936c, 0x34d105a5, 0xd7d102d4, 0x44110258, 0x30272227, + 0xf2757183, 0xd4c5f385, 0xf9a45ee0, 0x2027c027, 0xd530fcc5, 0xd5024cdc, + 0x5e0258d2, 0xf393f945, 0xd105a57c, 0x1102d434, 0xaecff64c, 0xe0d3c101, + 0x31c03013, 0xdcd1c114, 0x02be0c07, 0x02e40069, 0xf4b1f938, 0xfc644fe6, + 0xffff4ea7, 0x7440d1ff, 0x121c2716, 0xe6be0123, 0x04f90068, 0xff001678, + 0x05a241e0, 0x03c4d3b9, 0xd7d1f375, 0x40270258, 0xf4857183, 0xb1f9395e, + 0xc62ff6f2, 0xe6f391fa, 0xc1fac03f, 0xf493ecd3, 0x8d05a49c, 0x4e274643, + 0xc5010000, 0xd3c5e8d4, 0xfaa75edc, 0x02d4c4d1, 0xd4d54411, 0xd35e02cc, + 0x58d4d1f9, 0xd5412302, 0x5e0258d4, 0xe7bef8ad, 0xc007ff61, 0x4b07cfab, + 0x4fabc103, 0xc103c49b, 0x0000cef4, 0x07f7de01, 0x6856be0b, 0xbe0c07ff, + 0x5eff6866, 0xd9bdf7cf, 0xe65e025e, 0xc24ff6f8, 0x45dbb9fd, 0xbd432702, + 0x5e02b7d4, 0xa1e0f9b6, 0xa2e0047d, 0xa3e00256, 0xa5e0056e, 0xa6e005cd, + 0xa7e00604, 0xa8e0065e, 0xf271069e, 0x423b4b07, 0x02d8d4d5, 0x93f9e95e, + 0x05a47bf2, 0x02d424d1, 0x4b11c507, 0xbccec103, 0xdcd4c131, 0x0b071c07, + 0x02be149b, 0x08660068, 0x04b7cbe2, 0x03cbd4b9, 0xbfe64726, 0xd2d104ad, + 0x73270258, 0x21832123, 0xf2753027, 0x4f5ef385, 0x58d7d1f8, 0x27332702, + 0x75718340, 0x5ef485f3, 0xd4a9f83e, 0xd5d5024a, 0x41030250, 0x024ad4ad, + 0x0248d4ad, 0x99fdd35e, 0x41e0b7d4, 0xf2710439, 0x3427a723, 0xd3bd4247, + 0x3a0702fc, 0x031cd4bd, 0xa7033f6b, 0x02c632f0, 0x0248d6a9, 0x71f85a5e, + 0x48d6a9f2, 0x47474702, 0xfcd4bd32, 0x1cd3bd02, 0xf8455e03, 0xf2714127, + 0x323b3407, 0x34ab473b, 0xd3d538a3, 0x135e02d8, 0xe0d2c1f9, 0xd4c13c07, + 0xee322bdc, 0xeefe6334, 0x5efe49c2, 0x94d1fe5c, 0x4cfc0168, 0x93012d20, + 0x05a3a3f2, 0x02d424d1, 0x11e8dcc1, 0xab2c0743, 0x8823ee2f, 0x95402704, + 0xff4ea7f4, 0x40d1ffff, 0x1c271674, 0xbe012312, 0xf900671d, 0x00167804, + 0xe24ff6ff, 0xdcd2c103, 0xd1e4d2c5, 0xf8016894, 0xf6de204c, 0xff6b9dbe, + 0xf6d6c0ea, 0xdcc5c127, 0xf6ce5ee8, 0x02ccd4d1, 0xf8404ff6, 0x42275027, + 0xd4bd3127, 0xd39d02b7, 0xe0d5c56c, 0xf830b2e4, 0xd1fb5f5e, 0xc102ccdc, + 0x4c07e0d5, 0x41e0452b, 0x42e0015c, 0xcfe601f9, 0x4c070292, 0x2bdcd3c1, + 0x6b34ee45, 0x8d5cee04, 0xbdf27104, 0xb103c6d2, 0xf73fe6f3, 0xdcd1c1f7, + 0x9abe0c07, 0x0fe60066, 0xf2c1f7ea, 0xd2d4b930, 0x07242b03, 0xbd318332, + 0xe402b7d3, 0x5ef7d9b2, 0xf293fb08, 0xd105a2d8, 0x1102d424, 0xcbcfe64c, + 0xdcd4c1f6, 0x11031507, 0x0c07149b, 0x006660be, 0x019b0fe6, 0x03cfd4b9, + 0x01934fe6, 0x030bc4f4, 0x0258d3d1, 0xf3754027, 0x03ccd7b9, 0x31833123, + 0xf485f375, 0x27f6a95e, 0xb7d4bd42, 0xfaab5e02, 0xdbd59027, 0xf65e024c, + 0xd50027f6, 0x5e02ccd0, 0xf293f75a, 0xd105a278, 0x1102d424, 0x03412743, + 0xe8d3c531, 0x012893d1, 0xc5f0d49d, 0xb85eecd3, 0xc9d3b9fe, 0x75402703, + 0xcad7b9f3, 0x5ef48503, 0xf271f65e, 0x03c4d4b9, 0x323b3b07, 0x243b2b07, + 0xd3d532ab, 0x9f5e02d8, 0x31f293f7, 0x24d105a2, 0x431102d4, 0x03d931e0, + 0x041432e0, 0x07dcd4c1, 0x07110315, 0x0b149b05, 0x65b3be03, 0x6002f000, + 0x4102e004, 0x58dcd104, 0x07132702, 0xbe01230c, 0x6b00659d, 0x07f0750f, + 0x2702230c, 0x658fbe13, 0x27700700, 0x857f6b21, 0xf5f45ef2, 0x03bca8e0, + 0x4207f371, 0x233b473b, 0x4ca342ab, 0xd8d4d51c, 0xf7185e02, 0xd49d4227, + 0xfea45e6c, 0x03c6d3b9, 0x0258d0b9, 0xfb5ef375, 0x27b6d6f8, 0xbd402735, + 0xbd03ccd3, 0xbd03cdd4, 0xbd02b7d3, 0x0703cfdb, 0xdcd4c1c5, 0xd5d1c103, + 0xc49b02cc, 0x1c070507, 0x00652cbe, 0x050708d6, 0x28be1c07, 0x01830065, + 0xd0bd0403, 0xd0bd03cc, 0xf39302b7, 0xd105a170, 0x9902d434, 0xd4bd0444, + 0xb1e403cd, 0xf293f656, 0xd105a15c, 0xb902d424, 0x9902b7d3, 0xd3bd0444, + 0xd4bd03d0, 0x3f5e03cf, 0x58d4d1f6, 0xd2d3b902, 0x2b202703, 0x854f6b43, + 0xf5385ef2, 0x0248d6a9, 0x945e7227, 0x9d4427f5, 0x035e6cd4, 0x58d7d1fe, + 0xccd4b902, 0x83202703, 0x85f47571, 0xf5205ef2, 0x024ad2a9, 0x0248d2ad, + 0x76f97a5e, 0xbd4327b7, 0x9302b7d4, 0x05a0f7f4, 0x02d443d1, 0xbd043399, + 0x5e03cbd3, 0xb1e4f5e2, 0xf293f5da, 0xd105a0e0, 0x9902d424, 0xd4bd0444, + 0xcb5e03cb, 0xcdf393f5, 0x34d105a0, 0xb50702d4, 0x11dcd3c1, 0x07b1034c, + 0x07139b1b, 0x6457be0c, 0x920fc600, 0x03cfd4b9, 0xea8b4fc6, 0xb9fdfbcb, + 0xe203cdd0, 0xd102c10c, 0xb90258d7, 0x2703ccd2, 0x75718330, 0x5ef385f2, + 0x3227f49e, 0xd3bd4127, 0xd49d02b7, 0xb7d4b96c, 0xc4d3bd02, 0xc5d4bd03, + 0xe0dcc503, 0x07fd645e, 0xdcd4c1c5, 0xd5d1c103, 0xc49b02cc, 0x1c070507, + 0x0063fcbe, 0x050706d6, 0xf8be1c07, 0x01830063, 0xd0bd0303, 0xd0bd03c8, + 0xb2f402b7, 0xd3b9f536, 0xd4b903c9, 0xd3bd02b7, 0xd4bd03ca, 0xb2e403c9, + 0x555ef526, 0x07f371f8, 0xa3433b4a, 0xd8d4d544, 0xf5845e02, 0xa016f293, + 0xd424d105, 0xdcd3c102, 0x15074c11, 0x05071103, 0x0c0b139b, 0x0063a0be, + 0x00b10fe6, 0x00adc1e0, 0xf6cac2e4, 0x0258d0d1, 0x01231327, 0x006388be, + 0x21270f6b, 0xf0757327, 0xeb5ef285, 0x47a723f3, 0xfcd4bd47, 0x07342702, + 0x1cd3bd4a, 0x034f6b03, 0xcd42f4a7, 0x48d6a9fb, 0x75322702, 0xf4215ef3, + 0x0258d7d1, 0x20274227, 0xf4757183, 0xb75ef285, 0x58d4b9f3, 0x85202702, + 0xf3a05ef2, 0x03c6d2b9, 0x5f5ef275, 0xe4d3c1fa, 0x5edcd3c5, 0xb6b6fc1f, + 0x40273427, 0x03ccd3bd, 0x03cfd4bd, 0x02b7d3bd, 0xe4f46d5e, 0x93f465b1, + 0x059f6bf2, 0x02d424d1, 0xbd044499, 0x5e03cfd4, 0xd0b9f456, 0x01230258, + 0x31833007, 0xf3750103, 0xd1f6915e, 0x270258d0, 0xbe022313, 0x070062e1, + 0x27332770, 0x757f6b41, 0x5ef485f3, 0xf371f342, 0x433b4b07, 0xd4d548a3, + 0x8b5e02d8, 0x714127f4, 0x3b3407f2, 0xab473b32, 0x103ca334, 0x02d8d3d5, + 0x99f4595e, 0x4fe6f0d4, 0xd3c1fb75, 0x6e23eee0, 0x8ca1e0fb, 0x66a2e401, + 0xecd4c1fb, 0xfb5f42f0, 0x3127232b, 0x4027f395, 0x9ddcd2c5, 0x525ef0d4, + 0x27f271fb, 0xa3423b41, 0xd4d53c4c, 0x1b5e02d8, 0x07f271f4, 0xa3423b4b, + 0xd8d4d548, 0xf4285e02, 0xf2714127, 0x323b3407, 0x34ab473b, 0xd5303ca3, + 0x5e02d8d3, 0xd4b9f3f6, 0x42e403c5, 0x3327fe16, 0x27fe135e, 0xb5d4bd45, + 0xf2615e02, 0x4b07f371, 0x4ca3433b, 0xd8d4d518, 0xf3ec5e02, 0xffff4ea7, + 0x7440d1ff, 0x121c2716, 0x12be0123, 0x04f90062, 0xff001678, 0xfb5b4fe6, + 0x03c4d3b9, 0xd3bd4127, 0xd5c503c5, 0x6cd49de0, 0x02b7d3bd, 0xd1fb445e, + 0x270258d0, 0xbe022313, 0x070061e5, 0x27342770, 0x757f6b41, 0x5ef485f3, + 0xf271f246, 0x423b4b07, 0xd5104ca3, 0x5e02d8d4, 0xf371f38e, 0x473b4207, + 0x42ab233b, 0xd53c4ca3, 0x5e02d8d4, 0xd4c1f35e, 0xa641e0dc, 0x58d0d100, + 0x23132702, 0x619fbe01, 0x270f6b00, 0x75742741, 0x5ef485f0, 0xf371f202, + 0x433b4b07, 0xd5304ca3, 0x5e02d8d4, 0xc4c2f34a, 0x58d7d14c, 0xd0d4b902, + 0x83202703, 0x85f47571, 0xf1dc5ef2, 0x0258d0d1, 0x01231327, 0x006160be, + 0x03c7d7b9, 0x41270f6b, 0xf485f075, 0xd1f1c15e, 0x270258d0, 0xbe022313, + 0xb9006145, 0x0703c7d2, 0x6b312770, 0x85f2757f, 0xf1a45ef3, 0x04c00c1b, + 0x4602c036, 0xf18401e4, 0x0258d4d1, 0xf4752027, 0x03ccd7b9, 0x41834123, + 0xf285f475, 0xc1f1815e, 0x4ff6ecd4, 0xd65efe7c, 0x272327f9, 0x75742731, + 0x5ef385f2, 0xd7d1f16a, 0xd3b90258, 0x402703cc, 0xf3757183, 0x575ef485, + 0x58d2d1f1, 0xb9f27502, 0x5e03ccd7, 0xfc4ef8f0, 0xf093c007, 0x7e059d30, + 0xf493e2d4, 0x27022da2, 0x8ec41500, 0x5bf04efc, 0x2bdf3bcf, 0x07fc4efe, + 0x9538be0f, 0x00ff1eff, 0xff1eff1e, 0x2d89fd4e, 0x07ed0752, 0x160dc23d, + 0x031014a9, 0x3407430b, 0x238d3fab, 0xcae30752, 0x2d89ef30, 0x5d402752, + 0x140ece24, 0x41034007, 0x4dce3027, 0x59237d18, 0x2a12bd22, 0x27fd8e03, + 0x07245d41, 0x27410340, 0xead4ce30, 0x237d3127, 0x12bd2259, 0xfd8e032a, + 0x03d1fa4e, 0xc00701a8, 0x024934b9, 0xd207b107, 0x008e4fe6, 0x1407e307, + 0xe4a9a027, 0xb4ca024e, 0x50e4a943, 0x3c4bc202, 0x024ce4a9, 0xe3d4c3c1, + 0x1f3c0343, 0x35534303, 0x024ae2a9, 0x4123432a, 0x89fc34c2, 0x020750c3, + 0x2a8703e3, 0x2d0b3123, 0x30073012, 0xc389232d, 0x12312350, 0x4d430743, + 0x03a10324, 0xb3f1f0e8, 0x8924a2c8, 0xd24908d1, 0x073812ca, 0x03d36942, + 0xdad02941, 0x43072543, 0x2d4403ca, 0xca4107d4, 0xd44d3512, 0xa1c4a123, + 0x49d42912, 0x27d46dd3, 0x08d38d41, 0xfa8ed41d, 0x4a07a027, 0xd41d4f6b, + 0xd14dfa8e, 0x2908d28d, 0x49d369d4, 0x08d189d2, 0xd46dd32d, 0x4207b61e, + 0xd44da123, 0x4007c91e, 0x4107d42d, 0x1ebc21c2, 0xa7f84eee, 0xffffff4e, + 0xd10a0399, 0x07010844, 0x6a3fc6b0, 0x4853a407, 0x9f6b9407, 0x0710ac53, + 0x27eb0703, 0x27c0a780, 0x58e299d0, 0x32874207, 0x340b4433, 0x13ff2cc0, + 0x03cc34f1, 0x1127ff00, 0x4ed81d3b, 0x26040000, 0xd103c1eb, 0xf0f0e103, + 0x2eb441d9, 0xceb43184, 0x4ea7204c, 0xc5f7ffff, 0x48c5444c, 0x45002748, + 0x8ebc35b8, 0xdb92cef8, 0x8c338d07, 0x1e8aab10, 0x8e0427d2, 0x27c027f8, + 0x4ecf1e80, 0xff3ea7fe, 0x4027ffff, 0x150034d5, 0x14f834d5, 0x14fc34d5, + 0x03080ea9, 0x016a02b9, 0x322b3e07, 0x3e0b2307, 0x4e2b4307, 0x07f641c8, + 0x0708330e, 0x530cbe12, 0xff4ea702, 0x40d5ffff, 0xfe8e13b4, 0x00000180, + 0x00000100, 0x00000080, 0x0499f54e, 0x07faa3da, 0x514ff660, 0x0c609908, + 0x016b64b9, 0xe090f0c5, 0xc1063d42, 0x67c1ac62, 0xa464c1a0, 0x6399f215, + 0xc1f31de3, 0xf025b060, 0x3de46199, 0xb462c1f1, 0x6399f235, 0xc1f35de5, + 0xf0c5bc60, 0xd547fa8c, 0x83470700, 0x34870f4c, 0x340b4433, 0x13c13df9, + 0x6cd1ff00, 0x9d870114, 0x13b83af1, 0x4907ff00, 0xec483e23, 0x47460bff, + 0x78f3c55c, 0xe29448c1, 0x07024fa5, 0x0bb433bd, 0x0b4b07b9, 0x2843d146, + 0xe0310801, 0xc2022ed1, 0x4b070fac, 0x43d1460b, 0x3108012c, 0x0262d1e0, + 0x41534c07, 0x070fa4c2, 0xd1460b4b, 0x08013043, 0x5ad1e031, 0x270c0702, + 0x526bbe1a, 0x0fa0c202, 0x460b4b07, 0x013443d1, 0xd1e03108, 0xb60b024e, + 0x0138b4d1, 0x020541e8, 0x01f6d1e0, 0x1a070807, 0xbed86b89, 0x070254f7, + 0x02200b2b, 0x072b07b2, 0xc144034f, 0x940b78f0, 0x05c464c1, 0x09039992, + 0x1f07421b, 0x0b0a0299, 0xc1321d31, 0x62c18cf3, 0x03340ba4, 0x8cf3c571, + 0xff2f72f2, 0x02a465d1, 0x030863a9, 0x472b4507, 0x016a61b9, 0x57f2349b, + 0x430701f7, 0x42e8412b, 0x623905af, 0xffff0ea7, 0x23212bff, 0x0803b921, + 0x83470701, 0x2c830f4c, 0x2ba4870f, 0x0b443332, 0x0f3c83a4, 0xec48ae23, + 0x8639f4ff, 0x09ad9908, 0x32874207, 0x432b4433, 0x422b9d87, 0x14f891f1, + 0x4487ff00, 0x011443f1, 0x48f1ff00, 0xff000118, 0x23071586, 0x4187280b, + 0x061b24ea, 0xffff4ea7, 0xb444d1ff, 0x07130713, 0x7cf4c504, 0x025436be, + 0xf474f0c5, 0x8310010d, 0x74f3c106, 0x01013df0, 0x4d27087f, 0x0d27017c, + 0x10270443, 0xb584f4c5, 0x30f1c5f0, 0x6bd14907, 0x460b0114, 0x479444c1, + 0xc5a5013b, 0xf4c59cf3, 0x4c53e280, 0x33cd0708, 0x07c90bc4, 0xd1460b4c, + 0x08012843, 0x57d1e031, 0x0f5bc206, 0x460b4c07, 0x012c43d1, 0xd1e03108, + 0x4b0709ac, 0x54c24153, 0x0b4c070f, 0x3043d146, 0xe0310801, 0x070981d1, + 0xbe1a270b, 0xc2025101, 0x4c070f50, 0x43d1460b, 0x31080134, 0x0973d1e0, + 0xc4d1c60b, 0x41e80138, 0xd1e00829, 0xf2c10807, 0x07f0b174, 0x30f1c132, + 0xbe1f3c73, 0x27025024, 0xc02780bc, 0xc14bb00b, 0x077cf0c1, 0x5375be18, + 0x84f2c102, 0x200b4c07, 0x53184c33, 0x07b4abb8, 0x80f0c112, 0x5cbe1b0b, + 0x6c890253, 0x03df07d8, 0x0bd90bd4, 0x07c0020c, 0x99d0050c, 0x3f0709a4, + 0x0b0aaa99, 0xc14a1d43, 0xf1c1c464, 0xa465d18c, 0x0b142b02, 0xc5710310, + 0xf1c598f4, 0x3675fa8c, 0xb9731e04, 0xf6011864, 0x07fdce4f, 0xfe165e83, + 0x9b14bc27, 0xfdc15ebd, 0x011863b9, 0x840735f6, 0xe4fe035e, 0xb9fdffd1, + 0xe4011863, 0x07fdf731, 0x0b43334c, 0xef4aea4c, 0xe24c8703, 0x5304dca4, + 0x01fcfff2, 0xfdde5e28, 0x011864b9, 0xfd9a4ff6, 0xd15e8307, 0x1864b9fd, + 0xa24ff601, 0x5e8307fd, 0x64b9fdc4, 0x4ff60118, 0x8307fdae, 0xc1fdb75e, + 0xf2c5c462, 0xc064c198, 0x011c60d1, 0x078cf2c1, 0x68f4c514, 0x2b6cf0c5, + 0x6301e812, 0x99200703, 0xf0c5a860, 0xc501033c, 0x02fa94f0, 0xf3c10201, + 0x07039b98, 0x68f4c1d0, 0x14071412, 0x02ad11e8, 0xbecd0c27, 0x0702526f, + 0x7060d1c0, 0x70f0c501, 0x02550ff6, 0xad071027, 0x3c07b027, 0xf145fd55, + 0xe888f3c5, 0xc1027e31, 0x0ff690f0, 0xf1c101f6, 0x981ff63c, 0x68f9c100, + 0x68991127, 0x279353a9, 0x270027d0, 0x34f1c520, 0x99ab6799, 0x74e0aa61, + 0x73e001f4, 0xf3c103d5, 0x98fcc18c, 0x092b031b, 0xc22b1f6b, 0x024f25be, + 0x2b6cf4c1, 0xa641e8c0, 0x73d9f003, 0x6bd15302, 0xe05d02df, 0xc1040773, + 0x825398f8, 0x02e6d5ea, 0x016b64b9, 0x022241e0, 0x021e43e0, 0x034564b9, + 0x4ff6dc07, 0xf0c10237, 0xc50d1288, 0xf1c188fd, 0xc5811288, 0x64c188f8, + 0x0060d1fc, 0x0461d101, 0xf46dc101, 0x48f86ec1, 0x6cf2c141, 0xee34f3c1, + 0xc102fc23, 0x4f0790f3, 0x4719430b, 0x41e8f441, 0x34070283, 0x27654c08, + 0x4307643c, 0x13074223, 0x03079407, 0x071f1c73, 0x1f9c7384, 0x3b072a07, + 0x024e17be, 0x27642c27, 0x3786be30, 0x33400700, 0x27040b44, 0x7bbe141c, + 0x00e8024e, 0xf151023f, 0x124cf0c5, 0x4cf1c501, 0xc5da6299, 0x2ff640f2, + 0x649903d2, 0x324fe6dc, 0xe16d9904, 0x5ae26c99, 0x12dc077d, 0xc1d707c7, + 0x2df640f2, 0x016a63b9, 0x030864a9, 0x394343c2, 0x2b150764, 0x83412343, + 0x34070f4c, 0x11232487, 0x322b3433, 0x2b0f1c83, 0x33218734, 0x0b338714, + 0xc121f921, 0xf1ff0013, 0x00011830, 0x1434f1ff, 0x87ff0001, 0xf5400b11, + 0x0014f814, 0xa465d1ff, 0x83450702, 0x24870f4c, 0x240b4433, 0x23f53027, + 0xff0013b8, 0x02a464d1, 0x1e231207, 0xd6ffec48, 0x64c1664f, 0x333447c4, + 0xf5340b43, 0x0013bc23, 0x7064d1ff, 0xc1456601, 0x23f588f3, 0xff0013bc, + 0x9d0a1d9d, 0xf0c1081d, 0x09109d90, 0x4ea70576, 0xd5ffffff, 0x07184c4d, + 0x8efa830d, 0x68f0c1f5, 0x538cf4c1, 0x27041b03, 0xbe03331a, 0xc1024d8e, + 0xf2c198f1, 0x98f3c194, 0xd107129b, 0x31f2102b, 0x1307fde5, 0xc1fde05e, + 0x24f588f4, 0xff0013bc, 0xf9c1af1e, 0x3cf2c168, 0x2ff69353, 0x312700ce, + 0xc5a96899, 0x679934f3, 0x27d027ab, 0xaa619900, 0xfe1074e4, 0xc168f3c1, + 0x31538cf4, 0x071043d2, 0x0b417343, 0x8cf3c143, 0x34121153, 0x11ec1153, + 0x1127fdf6, 0x45fdf15e, 0xd301e8f0, 0xec400701, 0x00f4650c, 0x04071407, + 0x271f1c73, 0x072d07b0, 0x4c8ebe3b, 0x27302702, 0xfdbe642c, 0x64d10035, + 0xad070174, 0x4fe63007, 0xfd550086, 0xec88f3c5, 0x27fd8631, 0x88f4c541, + 0x27fd7e5e, 0xfd5b5ec1, 0x07d469c1, 0xc3c1e81c, 0xbe090701, 0x07024fb7, + 0x071807d0, 0x4fadbe09, 0x4564b902, 0xe6800703, 0x07fdcd4f, 0x7860d11c, + 0xa4c1e801, 0x4f95be01, 0x5ed00702, 0xf8c1fdba, 0x5e825398, 0x02e4fd9c, + 0x1127f9c3, 0x5e90f1c5, 0xf011f9bb, 0x0798f4c1, 0xbe042b12, 0xe8024c86, + 0x9900b700, 0xf1c1a968, 0x3cfdc194, 0x089b2007, 0x5e34f1c5, 0x0433fd2c, + 0x1c27030b, 0x4c64be14, 0xe8fd5502, 0x12008e00, 0x070d070d, 0xe90cf230, + 0x5e3c07fc, 0x6399fce4, 0x98f4c1a8, 0x033cf3c5, 0x07439b31, 0x94f3c5d4, + 0x27fca45e, 0x4cf0c500, 0x27fdc75e, 0xa7102701, 0x5e90a780, 0x4c27fd90, + 0xff0a5e64, 0xfd1a73e4, 0x5ec88c27, 0xf153fd14, 0x1801f914, 0xc1f9f75e, + 0xf2c5c462, 0x07470798, 0x2b410315, 0x5d54fa17, 0x005fe007, 0x55800000, + 0x83470707, 0x24870f4c, 0x240b4433, 0x13c123f9, 0x7103ff00, 0x22f93556, + 0xff0013c2, 0xf100f21d, 0x27fc0c5e, 0xff755e00, 0x485e0027, 0x0473e4ff, + 0xd01efafd, 0xc81eee00, 0x6cf2c100, 0x1e6b0d2b, 0x3207242b, 0xbe1f3c73, + 0x070034a8, 0xe401e8d0, 0x1864b9fc, 0xbd4ff601, 0xbe1a2700, 0x07024b96, + 0x88f1c14d, 0x145a402b, 0x41070d0b, 0x00bf01fa, 0xf288f4c5, 0xc5fcbe84, + 0xb85e88f8, 0x98f8c1fc, 0xd9f08253, 0xd153fc6c, 0x5de2df6b, 0x455efc64, + 0x68f3c1ff, 0x538cf4c1, 0x1c34fa31, 0x2794f2fe, 0x5e1153fe, 0x0127fe22, + 0x385e1027, 0x534107fe, 0xe124e242, 0x073207f9, 0x033833df, 0x07d90bd4, + 0x4b63be03, 0xbed10102, 0x89024e13, 0xbe5ed86c, 0x0b4507fa, 0x05a4e24c, + 0x21f353f9, 0x5e3801f8, 0x1127f8fc, 0x27fe3c5e, 0xfe5b5e11, 0x078cf0c1, + 0xbe091b18, 0xc1024afe, 0xc00b98fc, 0xe2fbea5e, 0xc1ff38d0, 0x2ce888f2, + 0x27ff30c9, 0xf3c5c83c, 0xff275e88, 0xdbbe1527, 0x4d07024a, 0x2b88f2c1, + 0x4d24fa40, 0x070d0bff, 0x4520f242, 0x5e4007ff, 0x0ef4ff40, 0x62010001, + 0xfd4d2702, 0x3a0d2711, 0xc5102703, 0xf0b584f4, 0x5e30f1c5, 0x64b9f980, + 0x4ff60118, 0xf3c5f9a5, 0xf9ec5e80, 0x5ef7567e, 0x6399f7ad, 0x38f3c5ab, + 0x99e16d99, 0xf7a5e26c, 0x016d64b9, 0xf4c145e6, 0x39454690, 0x12f0a1f4, + 0xc1f4a540, 0x1a2670f1, 0x9640f2c1, 0x90f3c129, 0x64d138f6, 0x48360174, + 0xc188f4c1, 0x04ee4cf0, 0xf21102b1, 0x654cf3c1, 0xc823f2f2, 0xa1470701, + 0x124103f0, 0xc1f4a540, 0x34e038f3, 0xf1a10143, 0x011cd1f2, 0xd85e7d07, + 0xdd6499fb, 0xfbcb4ff6, 0xf690f4c1, 0x3905584f, 0x6cf1c1f0, 0x8594f2c1, + 0xa812eef0, 0x0864d104, 0x8c42e801, 0x3cf1c104, 0x048519f0, 0xf281f319, + 0x31e8322b, 0x64b905e5, 0x3173016c, 0x242b4f4b, 0x3c27230b, 0x95f27533, + 0xab6499f3, 0xe038f4c5, 0xc105b944, 0x15c670f1, 0x017464d1, 0x019c41e0, + 0x01844fe6, 0xc1e16d99, 0x23e038f2, 0x64b9029b, 0x46460345, 0x034664b9, + 0xf2714586, 0x32faf381, 0xf39505ba, 0x6c99f071, 0x82d0f2e2, 0x91fda501, + 0x6fd2f2f2, 0xc12d0701, 0x32e038f3, 0xf1c10229, 0x4412c090, 0x0790f3c1, + 0xc143870f, 0x400b6cf1, 0x11e84011, 0x3ff6020c, 0xf3210208, 0x34e2f411, + 0xf4810200, 0x32070307, 0x2312f2a1, 0x61c13207, 0xd062c1cc, 0xc164f1c5, + 0xf2c588f1, 0x5d01e260, 0x3743fa01, 0xa1f3a501, 0xad17eef1, 0xecf1a101, + 0xfeb6191c, 0xe490f2c1, 0xb9feaf21, 0xe4011864, 0x81fea741, 0x124123f4, + 0xa14d07d4, 0x9943f2f3, 0x5ef4a5fe, 0xf7a1fe94, 0xfabd7cf2, 0xb85e7c07, + 0x0d1c27fa, 0xf3e83107, 0x010804b9, 0x4c83422b, 0x6a49f00f, 0xc1ee1ef7, + 0x41e4ec64, 0xf4c1feba, 0x99460b90, 0xf4a5f044, 0xe490f4c1, 0x39fea941, + 0x07f0a1f3, 0xda432343, 0x33030904, 0x03124007, 0xf4a54307, 0x27fe915e, + 0xcd9b14cc, 0x27f7c45e, 0x2d271f1c, 0x3027059f, 0xb584f1c5, 0x30f3c5f2, + 0xb9f7835e, 0x86011863, 0xf331e436, 0x334b07f7, 0xe24b0b43, 0x27016254, + 0xc501804d, 0xdf5e80f4, 0xdbd1e4f7, 0x1863b9f7, 0x07df1e01, 0x073b072a, + 0xbe190708, 0x270247fc, 0x3027642c, 0x00316bbe, 0x10f2f161, 0xf2a1fe2b, + 0xfe2572f2, 0x205ef7a5, 0x1e1d27fe, 0x722d27da, 0xc5302702, 0xf2b584f1, + 0x5e30f3c5, 0xf411f720, 0xf24cf2c1, 0x99fe7742, 0x3c27e16d, 0x5ef39533, + 0x6d99fe6f, 0x5efd75e1, 0xf291fe67, 0xfe912cf2, 0x8c5e2c07, 0xa5f171fe, + 0x7c1cf2f1, 0x5efca5fe, 0x1007fe77, 0xc560f0c1, 0xf4c5a0f3, 0x4aedbea4, + 0x88f2c102, 0xc1a0f3c1, 0x02c2a4f4, 0x1534ce18, 0xdf1e4103, 0xc288f1c1, + 0xf2a13c10, 0x071324da, 0xfe9b5e32, 0xf4a13407, 0xfe9343f2, 0x8e5e3407, + 0xc11007fe, 0xf3c564f0, 0xa4f4c5a0, 0x024aaebe, 0xc188f1c1, 0xf4c1a0f3, + 0x1010c2a4, 0x24cef2a1, 0x1e41230b, 0x12f0a1dd, 0xf2400704, 0x1efe6034, + 0xa14707cc, 0xf24223f1, 0xa5fd4941, 0xfd445ef4, 0x0790f2c1, 0x0b42873f, + 0xc1421143, 0xf4c18cf3, 0x0b342b98, 0x3e30ec32, 0x230707fe, 0xf2f0a501, + 0xa5fe34d0, 0xfe2f5efd, 0x035e4707, 0x90f4c1fe, 0xfdd44ff6, 0xe63cf0c1, + 0x5efdd30f, 0x64b9fe13, 0x4fe60118, 0x785efcb2, 0x1864b9f6, 0x894ff601, + 0xfca45ef6, 0x011864b9, 0xfc9c4fe6, 0x87f64d5e, 0x4854e24b, 0x000d2703, + 0x80f0c501, 0xc1f6795e, 0x31e090f3, 0xf2c1038e, 0x5b21e86c, 0x68f0c1fd, + 0x538cf3c1, 0x3630f203, 0x90f4c103, 0x01054ff6, 0xd43cf0c1, 0xf4190b08, + 0x4103f171, 0xf4754112, 0xf291f171, 0xf3711232, 0xf0c1f395, 0x2701e490, + 0x3cf3c1fd, 0xc15539d0, 0xf0c16cf2, 0x73320798, 0x10271f3c, 0x024653be, + 0x31072007, 0x012060d1, 0x012461d1, 0xc544f0c5, 0x31fa48f1, 0xf1c10120, + 0x1513ee48, 0x07420701, 0x1d4c5313, 0x13330207, 0x033314ab, 0x134b020b, + 0x30272a27, 0x002f93be, 0xfa48f2c1, 0xee00ea12, 0xd100df12, 0xd1010061, + 0xc5010462, 0xf2c550f1, 0x27010754, 0x27120730, 0x2f6ebe2a, 0x98f3c100, + 0xc58cf4c1, 0x61c15cf1, 0x0b2347bc, 0x0b141b23, 0x73410712, 0x21071f4c, + 0xf0c53407, 0xf861c158, 0xc1f460c1, 0x200bfc64, 0x41c8314b, 0x6cf4c127, + 0xf4c14876, 0x1a41fa54, 0x0f14ee03, 0x54f4c103, 0x02f343fa, 0x02e834ee, + 0xfa54f4c1, 0xee02b414, 0xc102a914, 0x41533cf4, 0xfc5445e2, 0xf181f081, + 0x11030123, 0xf195f075, 0xc1fc455e, 0x21e490f2, 0xf481ff08, 0x4323f371, + 0xf4754312, 0xf091f481, 0x04124a03, 0xf1c1f495, 0x94f2c16c, 0xfeea21ee, + 0x45075123, 0x870f4c83, 0x0b443334, 0xc132f934, 0x03ff0013, 0xd12ff651, + 0x91f419fe, 0x124a03f3, 0x71f49534, 0xf2f091f4, 0x75fed040, 0xfecb5ef0, + 0xe244f4c1, 0x81ff1e40, 0x750123f0, 0xff155ef0, 0xfeeb02e2, 0x4c0cf481, + 0x234c2723, 0x4212f271, 0xf371f475, 0x34f2f491, 0xf475fefb, 0xb9fef65e, + 0x81016c64, 0x2b4f4bf2, 0x333c2724, 0xf395f275, 0xd1fb885e, 0xe8011061, + 0xd1009711, 0xbe010c60, 0x8102455a, 0x070312f3, 0x0864d103, 0x6f42c801, + 0x64b9f219, 0x3207016c, 0x302b4f4b, 0x3fcc042b, 0xfffffffb, 0x07430b39, + 0x1f1c5314, 0x1173140b, 0x4207100b, 0x4323f175, 0xf4754112, 0xf081f471, + 0xf0754012, 0xfff73fcc, 0x2725ffff, 0xf195331c, 0xf471f391, 0xfb2343f2, + 0x1e5ef375, 0x754207fb, 0x124323f0, 0x71f47540, 0x12f381f1, 0x03f37513, + 0xc8f29523, 0x27da342c, 0xf295332c, 0x64b9d31e, 0x4f4b016c, 0xf075042b, + 0x95330c27, 0xfaeb5ef0, 0x765ef081, 0x90f4c1ff, 0x392741c0, 0x331c27f3, + 0x64b9f385, 0x4f4b016c, 0x6099f475, 0xc5430bab, 0x6d9938f0, 0x95f475e1, + 0xfadd5ef1, 0xaa5e1127, 0x075123f8, 0x0f4c8345, 0x44333487, 0x32f9340b, + 0xff0013c1, 0x2f265103, 0x4027f339, 0x03230307, 0xf075f385, 0xf4754012, + 0xc5ab6199, 0x12c038f1, 0x3414c037, 0x95334c27, 0x105cf0f4, 0x64b9fa98, + 0x4fe6032b, 0x4307fa90, 0x4103f191, 0xf4951412, 0xfa822ff6, 0x43e2f419, + 0xf291fa7c, 0x24f24103, 0xf495fa74, 0x07fa6f5e, 0x95030303, 0x19cb1ef0, + 0xcaf339f4, 0x4027a734, 0xf419a31e, 0x4323f071, 0xfa4140f2, 0x3c5ef475, + 0x6c62b9fa, 0x4bf08101, 0x07320b2f, 0x1f4c5343, 0x4173430b, 0x040b022b, + 0x75331c27, 0x5ef195f0, 0xf481fa11, 0xf495f475, 0xc1fa435e, 0x4b0b9cf4, + 0xf33454e2, 0xc5801c27, 0x2b5e80f1, 0x8cf4c1f3, 0xfce804f2, 0xc16cf3c1, + 0x34d294f4, 0x90f0c11b, 0xf41906f6, 0x1412f191, 0xf171f495, 0x12f2f291, + 0xf275fcca, 0xc1fcc55e, 0x21c490f2, 0x81f391ee, 0x953412f4, 0x71f481f4, + 0xd24323f0, 0xf475dd04, 0xf4c1d91e, 0x0441e86c, 0x98f4c1fd, 0x5388f0c1, + 0x6a40ee42, 0x71f419fc, 0x6241f2f1, 0x5ef475fc, 0xf3c1fc5d, 0x5430e250, + 0x50f2c1fd, 0x2b54f3c1, 0x07316b20, 0x5cf3c113, 0x135a0207, 0xfd3d31ee, + 0xe258f2c1, 0x81fd3620, 0x23f481f3, 0x75410331, 0x5ef495f3, 0xf4c1fd27, + 0x1524e250, 0x81f071fd, 0x751012f1, 0x91f271f1, 0x1023f2f3, 0x5ef375fd, + 0xf4c1fd0b, 0xee04e250, 0x0cf481fc, 0x4c27234c, 0x12f07123, 0x71f47540, + 0xf2f291f1, 0x75fcee12, 0xfce95ef2, 0x06d1f54e, 0x4ea701a8, 0x07ffffff, + 0xa46ad190, 0x5840d102, 0x2bf06315, 0x05a183a0, 0x07ca47f2, 0x0125332a, + 0x5cc4e9f8, 0x07ff0015, 0x075107b2, 0xb9843373, 0x23032561, 0xffea98be, + 0x23f14586, 0xff001568, 0x008b34ee, 0xc3e9fd01, 0xff001560, 0xd433d10b, + 0xe929d3c2, 0x00155cc4, 0x1e344aff, 0x5cc4e91f, 0xc2ff0015, 0x0d271243, + 0x95be641a, 0xc3e90224, 0xff001560, 0xd1e73dca, 0x0101a896, 0xab4007b0, + 0x0484ea4f, 0x07b01102, 0xea4fab40, 0x21023b84, 0xab4007b0, 0x3584ea4f, + 0x07b03102, 0xea4fab40, 0x41022f84, 0xab4007b0, 0x2984ea4f, 0x07b05102, + 0xea4fab40, 0x61022384, 0xab4007b0, 0x1d84ea4f, 0x07b07102, 0xea4fab40, + 0x1e021784, 0x60c4e9ff, 0xeeff0015, 0xc1ff6f43, 0x9ec1b09d, 0xc09cc1b8, + 0xc1b494c1, 0x92c1bc93, 0x9bd59bc4, 0x0bc59be5, 0x0be30bd4, 0xd094c1c2, + 0x2b646389, 0xff2ea748, 0x24d5fddf, 0x3d8301c8, 0x3fe68000, 0x25d50155, + 0x64b901fc, 0x4cc00320, 0x94891dff, 0x03f10150, 0x9b43e343, 0xd892c141, + 0x41534533, 0x3ea7420b, 0xc5fddfff, 0x37077434, 0x07137c03, 0x7f3ce327, + 0x237f2ce3, 0x3419137c, 0xc2803c03, 0x4707f932, 0x35272027, 0x44034205, + 0x93d1f3c8, 0x34b901a8, 0x4fe60248, 0x34b900e4, 0x4cc00320, 0x928955ff, + 0xff3ea750, 0x2303fdef, 0xe38834c1, 0x33f10123, 0x184c3325, 0x4c53129b, + 0xc111531d, 0x9ec1c890, 0x1344c4d8, 0x4327d307, 0xd3c1f4e8, 0x183c3388, + 0xc01d3c53, 0x4ea7f134, 0x0bfde5df, 0x15400501, 0x35302742, 0xa71e0b43, + 0xfde5cf4e, 0x42154105, 0xfd014335, 0xd1532707, 0x1d070907, 0x997e2a03, + 0x07d5a6ec, 0x0711231d, 0x7e270709, 0x94c1ec8c, 0x004da3dc, 0xdc94c520, + 0xc60a7399, 0x74897d3f, 0x0c72890e, 0x83127389, 0x890fff4d, 0x2d831071, + 0x4c330fff, 0xff3d8310, 0x3342ab0f, 0x2ea7103c, 0x83fddfff, 0xd50fff1d, + 0xab020024, 0x0423d531, 0xa894d102, 0x2043b901, 0xff3cc003, 0xff3ea71c, + 0x34c1fdef, 0x6a4dd88c, 0x23070ffc, 0xf4e84327, 0xdc8c23c1, 0xf5fc6a3d, + 0x01a893d1, 0x83643489, 0x5680004d, 0xff4ea745, 0x4cc5fddf, 0x8ef043e4, + 0xdc2dc5f5, 0x5ee02ec5, 0x9489feaa, 0x27440850, 0xff4d8343, 0x104c330f, + 0xdfff3ea7, 0x0034d5fd, 0x0434d502, 0x279b1e02, 0x2561b940, 0x33a33303, + 0x100c5314, 0x96bea40b, 0x4a870240, 0xc1b09dc1, 0x9cc1b89e, 0xf1051bc0, + 0x00162841, 0xa843f1ff, 0xf1ff0015, 0x0015e842, 0x9bc09bff, 0x0be09bd0, + 0x0be20bd3, 0xfe2f5ec1, 0xbe1e4127, 0xba1e4227, 0xb61e4327, 0xb21e4427, + 0xae1e4527, 0xaa1e4627, 0xa61e4727, 0x3ea7fe4e, 0x11fd7fff, 0x004de334, + 0xa7341508, 0xfd4fff3e, 0x40273201, 0x270ef49b, 0xf52287e1, 0x02b0402e, + 0xff1ea7ff, 0x4427fdcf, 0x14c53007, 0xd0382348, 0x21274232, 0xffff3ea7, + 0x9632bdfe, 0x9b40271e, 0x1ec50ef4, 0x21d2be64, 0xa7202702, 0xfeffff3e, + 0x1e9632bd, 0xf49b4027, 0xff3ea70e, 0x34c5fdcf, 0x6834c548, 0x7fff2ea7, + 0xa32411fd, 0x1508004d, 0x27fe8e24, 0x4ebe1e22, 0xa813d1fd, 0x99d00701, + 0x02070c34, 0xe06a4fc6, 0x99008b41, 0x4fd61034, 0xbe162768, 0xe8023fb1, + 0xcc008302, 0x30076305, 0x35334087, 0x300b342b, 0x432b4387, 0x2c274447, + 0x073d07d3, 0x833b330d, 0x029b7f0c, 0x9b123c53, 0x800c0334, 0x53803c03, + 0x10385308, 0x0c27800c, 0x7f0c837f, 0x0000df83, 0x430701e0, 0x3d100dab, + 0x4d274000, 0x4d833fff, 0x47333fff, 0xfd8e04ab, 0x27924c27, 0xba1ec12c, + 0x27ae4c27, 0xb21ed32c, 0x30070427, 0x35334087, 0x300b342b, 0x432b4387, + 0x9b1e4447, 0x27ba4c27, 0x961eda2c, 0x015c4d27, 0x14d18d1e, 0x100701a8, + 0xd10c4299, 0x7602a043, 0x0932292c, 0x07410733, 0x834b3301, 0x029b7f0c, + 0x9b124c53, 0x800c0343, 0x53804c03, 0x10485308, 0x0c27800c, 0x7f0c837f, + 0x00001f83, 0x01ab01e0, 0x40004d10, 0x3fff4d27, 0x3fff4d83, 0x04ab4733, + 0x21c0fe0b, 0x10449916, 0x32894546, 0x0833890a, 0x3289b41e, 0x0c33890e, + 0x3269ac1e, 0xa61e3349, 0x01a814d1, 0x42991007, 0xa043d10c, 0x292c7602, + 0x07330932, 0x33010741, 0x7f0c834b, 0x4c53029b, 0x03439b12, 0x4c03800c, + 0x53085380, 0x800c1048, 0x837f0c27, 0x1f837f0c, 0x01e00000, 0x4d1001ab, + 0x4d274000, 0x4d833fff, 0x47333fff, 0xfe0b04ab, 0x991621c0, 0x45461044, + 0x890a3289, 0xb41e0833, 0x890e3289, 0xac1e0c33, 0x33493269, 0xfc4ea61e, + 0x1227c007, 0x8cfef093, 0x1677be00, 0x93c11100, 0x008d0bf0, 0x00166cbe, + 0xf093c121, 0xbe008d12, 0x01001661, 0x19f093c1, 0x56be008d, 0xc2310016, + 0x8d20f093, 0xbe102700, 0x41001649, 0x13f093c2, 0x1127008d, 0x00163cbe, + 0xf093c251, 0x27008d06, 0x162fbe12, 0x93c26100, 0x008cf9f0, 0x22be1327, + 0xc2710016, 0x8cecf093, 0xbe142700, 0x81001615, 0xdff093c2, 0x1527008c, + 0x001608be, 0xf093c291, 0x27008cd2, 0x15fbbe16, 0x93c2a100, 0x008cc5f0, + 0xeebe1727, 0xc2b10015, 0x8cb8f093, 0xbe182700, 0xc10015e1, 0xf09330c2, + 0x27008caa, 0x15d3be19, 0x34c2c100, 0x8c9cf093, 0xbe1a2700, 0xc10015c5, + 0xf09338c2, 0x27008c8e, 0x15b7be1b, 0x3cc2c100, 0x8c80f093, 0x0c1c2700, + 0x0015a8be, 0x9340c2c1, 0x008c71f0, 0xbe0d1c27, 0xc1001599, 0xf09344c2, + 0x27008c62, 0x8abe0e1c, 0xff1e0015, 0x0199fa4e, 0xbed0070c, 0x270244c8, + 0x27302740, 0x0dd49db0, 0xa7a0d3c5, 0xfeffffae, 0xc1a0d2c1, 0x32c2a4d3, + 0xa8d4c137, 0xd4c5420b, 0xc5430aa0, 0xdcc1a0d3, 0xa0d3c1f4, 0x34c2c411, + 0x0cd1991f, 0x92be0d07, 0xd0d10224, 0x1e2701ac, 0xbe01f40c, 0x11021f3c, + 0xa0d4c1c3, 0xc1e334ca, 0xd3c1f8d2, 0x0b2411a8, 0x48241543, 0x38a4a9b8, + 0xad41031e, 0xd11e38a4, 0x0301a8d3, 0x123489b1, 0xb4da4803, 0xff2ea79c, + 0x23a9feff, 0x24a90144, 0x34ce0142, 0xd1c2071a, 0x2701acd0, 0xbe64181d, + 0xa9021ef0, 0xa90144c3, 0xce0142c4, 0x4027ea43, 0x8e0ef49b, 0x5bf04efa, + 0x2bdf3bcf, 0x07fc4efe, 0xe76ebe0f, 0x0efc0eff, 0x4eff0bf0, 0x3bcf5bf0, + 0x4efe2bdf, 0xbe0f07fc, 0x1efffe2e, 0x07fb4eff, 0xfd89beb0, 0x07d007fe, + 0x95f09310, 0x9abe008b, 0xd7460014, 0x0b1ec027, 0xc103d201, 0x00148cbe, + 0x1c07d403, 0x8b87f093, 0xedcbda00, 0x0000fb8e, 0xe407fe4e, 0xe30b4623, + 0x330f4c83, 0x023d0e3c, 0x3f83011d, 0x3ff00000, 0x20271333, 0xab104c33, + 0x0012f543, 0xf5ff0214, 0x02140414, 0x270e2dff, 0x0ef49b40, 0xff1efe8e, + 0xf94eff1e, 0xc107a007, 0x4714ac23, 0x091a0b11, 0x99d00713, 0x3e662409, + 0x40070c07, 0x3b0c4c23, 0x23d20149, 0x0be48731, 0x0b4387e2, 0x01130d4e, + 0x320cc24b, 0x493b4427, 0x30072047, 0x22231e07, 0xe007d407, 0x142b3123, + 0xd0132a0b, 0x3ccaec2b, 0x27012341, 0x0b403b41, 0x0d31274b, 0x23140523, + 0x581d0b22, 0x8e0b07fe, 0x034c07f9, 0x27244741, 0x0c071cec, 0xec2b2a0b, + 0x1a1d4cd4, 0x01031207, 0xfef02203, 0x07b02707, 0x09f98e0b, 0x1e31e613, + 0x1ee1278a, 0x1ee127bd, 0xe3f54ee4, 0x58f0c5f6, 0x27240299, 0x3b4f0731, + 0x03e00732, 0xf2c5404c, 0x4cf3c554, 0x235cf1c5, 0x2f0714ec, 0x2768f4c5, + 0x4027103c, 0x24032405, 0xf3c1f3b8, 0x2320274c, 0xc54a2731, 0xf2c540fe, + 0x0d6c2748, 0xc560f3c5, 0xf2c164f4, 0x1a238940, 0xc5182789, 0x72f050f3, + 0xf4c100b1, 0xaa34ee4c, 0x54f2c100, 0x4c234607, 0xc1423b0d, 0x048758f2, + 0x030b2301, 0x01007fe6, 0xc150f4c1, 0x24e260f2, 0x46070103, 0x2354f2c1, + 0x423b0c4c, 0x2350f2c1, 0x87420b61, 0x0b812754, 0x3b302753, 0x03a20786, + 0xc5100761, 0x902744f3, 0x0201c707, 0x42073f07, 0x4c83465b, 0x0bd4870f, + 0x0734013d, 0xe6e48be8, 0x0700854f, 0xd63207b4, 0x073407e4, 0x0b4307b2, + 0x774bce48, 0x14031205, 0x91030403, 0x0748fcf0, 0x4634013f, 0x27140545, + 0x05140340, 0x68f2c134, 0x32ce3403, 0x5cf3c1ed, 0xc16936ce, 0xf3c144f4, + 0x8d471b40, 0x3a8d1834, 0x40f4c11a, 0x0364f2c1, 0xc5212342, 0xf2c540f4, + 0xf6610364, 0xc1ff2d2f, 0xf6c348f0, 0xf4c1f58e, 0x7fa4ea60, 0x074907ff, + 0x2b410337, 0x5874ca39, 0x02017ee6, 0x12050403, 0xf3a81403, 0x32059a1e, + 0xf2c18f1e, 0x054f0744, 0x03d40b53, 0x03402722, 0xc5a10354, 0xd40544f2, + 0xc1ff775e, 0x412750f2, 0xf4c52a2e, 0x278d1e48, 0x48f4c540, 0xfac1861e, + 0x07302750, 0x44f3c510, 0xc1ff5e5e, 0x902750fa, 0xf9c51007, 0x279f1e44, + 0xa7a81e31, 0xffffff4e, 0x010041b9, 0x26fc40c1, 0x83300719, 0x33330f3c, + 0x007e34f9, 0x4756ff00, 0x40272107, 0x34fd0103, 0xff00007c, 0x3c833007, + 0x2333330f, 0x0ff2f011, 0xffff4ea7, 0x0041bdff, 0xfc40c501, 0x34f9fe0b, + 0xff00007e, 0xa7d44fc6, 0xffffff4e, 0x010041bd, 0x0bfc40c5, 0x07fc4efe, + 0x27a13ec0, 0x270c0e41, 0x8e040740, 0x07fa4efc, 0x14dc23d0, 0xcd0bc247, + 0x9914dc03, 0xc00924de, 0x4e3b4127, 0xb30bb007, 0xa3074223, 0xb432d301, + 0xfa8e0127, 0x3b0c2c23, 0x87020b2e, 0x87030b00, 0x08b4be2a, 0x27412700, + 0x9dcb0d00, 0xfa8e31d4, 0x0399f74e, 0x3b412724, 0x07f06343, 0x070b0184, + 0x07f10570, 0x878333d1, 0x27c00794, 0x07c249a0, 0x871b070d, 0xbea10322, + 0x0b00087e, 0x03d80bb9, 0x10acc4c2, 0x247499e9, 0xd4077c01, 0x749d4103, + 0x03f40124, 0x077405d6, 0x071f0707, 0x0531272d, 0xff6b7efc, 0x73b10596, + 0x4d3b4127, 0x73b5340b, 0xf78ef043, 0xb007fb4e, 0xf0931327, 0xbe008818, + 0x110010f9, 0x25f093b1, 0xeebe0088, 0xb1210010, 0x882cf093, 0x10e3be00, + 0x93b10100, 0x008833f0, 0x0010d8be, 0xf093b231, 0x2700883a, 0x10cbbe10, + 0x03db0700, 0x31c127d4, 0x931c07d2, 0x008825f0, 0xb6bec103, 0xd4030010, + 0xec0fccc4, 0xfb0e0b07, 0x00fc675e, 0x00001000, 0x08000000, 0x0000000f, + 0x07c1f54e, 0x3c0dc138, 0x07240a99, 0x27c107b0, 0x27502780, 0xddfc0c6c, + 0x00a41000, 0x4d034d07, 0xc4ea2000, 0x3c27009a, 0x2b06071b, 0x27010336, + 0x3b4d0722, 0x0b405b20, 0x5b41dc2d, 0x2755f3f0, 0x4a3b0f4c, 0xf4139487, + 0x134e01b0, 0x4201aff4, 0x2b0b2247, 0xb3012149, 0x490b4187, 0x3707430b, + 0x11033d0b, 0x3a074305, 0x3703214d, 0x030ade0b, 0x18025127, 0x41278107, + 0x42234a3b, 0x5936841a, 0xa194dcca, 0x3cb3c1b4, 0x2b3cbcc5, 0xa54c0b43, + 0xc2f58eb4, 0x2007982c, 0x070c2c23, 0x274a3b42, 0x3b9487e1, 0x07aa1ee0, + 0x7e0b0713, 0x1007fbae, 0x7d7e0b07, 0x24ba99fe, 0xff5cdcea, 0xf453c61e, + 0x4e01ff34, 0x20270607, 0x851e9027, 0x02c1fa4e, 0x4003c13c, 0x04a1d107, + 0x0fffdd03, 0x0fffdde3, 0xb007322b, 0x00c1d42b, 0xd634d638, 0x07fa8ed7, + 0x503dcaad, 0xc20bca07, 0x46be1c07, 0x0b070013, 0xfd7e1c07, 0xc6da2bfe, + 0xffdf03d0, 0x0703ffff, 0x00cf83cd, 0x03fc0000, 0x000001df, 0x071c07fc, + 0x2720270d, 0x4ebe163c, 0x3ea70013, 0xc5fff9b3, 0x40273830, 0x0b071d07, + 0xc5403cc5, 0xfa0e3c34, 0x07febf5e, 0x0bca07a3, 0xbe1c07c2, 0x070012f5, + 0x7e1c070b, 0xda2bfeac, 0xfa4eae1e, 0x07310499, 0x07a207d0, 0x56c107b3, + 0x0cb2c04f, 0x6e7e0a07, 0x5d0fc6fd, 0x475ab3c0, 0x144c234c, 0x0b24d199, + 0x3b31274d, 0x23420931, 0x2932c231, 0x41273c07, 0xd1a1433b, 0x31233407, + 0x13eb130b, 0x0d07140b, 0x89ff2b7e, 0x0d0732d4, 0x1c074103, 0x0e32d48d, + 0xfaa85efa, 0x47034107, 0x071ac4c2, 0x1e31033c, 0xfb2f7ece, 0x402706d6, + 0xc431d49d, 0xa81e9fb2, 0xfa8e0027, 0x38033107, 0x0d07b51e, 0x7b7e1c07, + 0x9d4027fa, 0x0fc631d4, 0x4efa8e81, 0x07d207fa, 0xb6b107a0, 0xa7fa8e27, + 0xfff9b3ce, 0x2724c099, 0x03222710, 0x9ccdbe07, 0x07100703, 0xfd227e0c, + 0x1a073d07, 0x0ea72b07, 0x7efff9b3, 0x0fd6fcd1, 0x9b4027d7, 0xfa8e0ef4, + 0x04a1fb4e, 0xd007f063, 0x14ceb107, 0x1001992c, 0xc15bcb07, 0xcc87c183, + 0xc461cd0b, 0x0f072127, 0xa03ef405, 0xa110d199, 0x3b4127d2, 0x27242b41, + 0xa5c36530, 0xd9b2ced2, 0xfb8ef043, 0xcf5bf04e, 0xfe2bdf3b, 0x0f07fc4e, + 0xfff9e5be, 0xf00efc0e, 0xf04eff0b, 0xdf3bcf5b, 0xfc4efe2b, 0x0dbe0f07, + 0xff1efffd, 0xb007fb4e, 0xfef6eabe, 0x1007d007, 0x858ef093, 0x0dfbbe00, + 0x27d74600, 0x010b1ec0, 0xbec103d2, 0x03000ded, 0x931c07d4, 0x008580f0, + 0x8eedcbda, 0x1eff1efb, 0x99fa4eff, 0xc1071e04, 0x18ff4cc0, 0x44333487, + 0x34f1340b, 0xff0003cc, 0x00004ea3, 0xcc34f504, 0x99ff0003, 0x0a311f04, + 0x070f4c83, 0x33248734, 0x2b322b34, 0xf1338734, 0x00011434, 0x183bf1ff, + 0xd0ff0001, 0x1410014d, 0x00014ef4, 0x27009f01, 0x2711fddd, 0x27033a0d, + 0xf0111e10, 0x9a01014d, 0x7cdd2700, 0x430d2701, 0x07102704, 0x73240734, + 0xc9be1f3c, 0x3c27045b, 0x0b402780, 0x07414b30, 0x8304072a, 0x0c330f2c, + 0xab385318, 0x87db0b30, 0x0b243312, 0xf5d30b12, 0x0013b81d, 0xff2ea7ff, + 0x4d27fddf, 0x24d50800, 0x10270208, 0x020821d5, 0x4fff3ea7, 0x073211fd, + 0x333c074c, 0x0b433336, 0xa442f543, 0x27ff000d, 0x78c4fd42, 0xa7ff000d, + 0xffffff2e, 0x24bd4127, 0x239906a8, 0x0ef19b0f, 0x33874127, 0xb04034f5, + 0xfa8eff02, 0xda1edd27, 0x02720d27, 0x745e1027, 0x1fdc27ff, 0x059f0d27, + 0x685e1027, 0xa73027ff, 0xfddfff4e, 0xb9b443c5, 0xa9016404, 0x23014003, + 0x8d343b44, 0xfe0b9a03, 0xb007fb4e, 0xf0931427, 0xbe008464, 0x11000cad, + 0x71f093b1, 0xa2be0084, 0xb121000c, 0x8478f093, 0x0c97be00, 0x93b10100, + 0x00847ff0, 0x000c8cbe, 0xf093b231, 0x27008486, 0x0c7fbe10, 0x03db0700, + 0x31c127d4, 0x931c07d2, 0x008471f0, 0x6abec103, 0xd403000c, 0xec0fccc4, + 0xfb0e0b07, 0x4efe825e, 0x3a04b9f8, 0x27d00701, 0xb64ae030, 0x9d462302, + 0x4f6ba8d3, 0x42143027, 0x43073127, 0xd49d4f6b, 0x64d8b9a9, 0x65d9b901, + 0x62daa901, 0x53448601, 0x60dca9a1, 0xb9412701, 0x070447d2, 0x40d0a934, + 0x23b80701, 0x3b1c07b4, 0x23493b38, 0x3edea921, 0x3b2a0b01, 0x2311230b, + 0x0b412331, 0x074a0b3c, 0x3ba107c2, 0x5bb007eb, 0x5b495b38, 0x53a553c9, + 0x5bbfab25, 0xa8d09918, 0x8d9cd38d, 0xd18d9ed4, 0xa0dc8da2, 0x8da6da8d, + 0xde8da4d2, 0x9adb8d98, 0x4b4704e6, 0x279ad48d, 0xbd3d0740, 0x0304afd4, + 0x9901303d, 0xd4bd4334, 0x33990492, 0x6fd4b944, 0x93d3bd01, 0x47d3b904, + 0x91d3bd04, 0xb9455604, 0xe60170d4, 0x2701eb4f, 0x3c27744c, 0x02d4adb8, + 0x04d3ad01, 0x91d4b901, 0xff0ea704, 0x4c33e7ff, 0x004f8316, 0xa3070000, + 0x8480024e, 0xd3b90405, 0xd1b90493, 0xd4b90138, 0x3c830492, 0x0021273f, + 0x83202712, 0x36333f4c, 0x2c3334ab, 0x1532ab0c, 0xdcd4d103, 0xdc44f803, + 0x111d2700, 0x6fd4b930, 0x70d3b901, 0x83438301, 0x33373333, 0xa343ab45, + 0xa940004d, 0xab0190d2, 0xff3ea741, 0x34c5e7ff, 0x002d8350, 0xd1260680, + 0xf801acd4, 0x27013e41, 0xafd4bd40, 0xa7402704, 0xfddfff2e, 0xb9c424c5, + 0xa90491d4, 0xa90162d0, 0x0b0160de, 0x0f0c0304, 0x40270473, 0x013cd3b9, + 0xbd0fec03, 0xad0490d4, 0x7304ecd0, 0x733fc6e4, 0x016fd4b9, 0x010f4fe6, + 0x044cdcb9, 0x01e02d27, 0x03dcd3d1, 0x01003d83, 0x2c033506, 0x7f2ce37f, + 0x44334e07, 0x04dcd4d5, 0x01143fe6, 0xbe07e703, 0x4b07b7e3, 0x32074823, + 0x429b4333, 0x26333333, 0x01acd1d1, 0x04e0d3d5, 0x04e4d2d5, 0x04e8d4d5, + 0x12f8e723, 0x07030167, 0x07e3b433, 0x10003d27, 0x0fff2da7, 0x04dcdbd5, + 0x2700e15e, 0x5e10111d, 0x2e15ff25, 0x01b023d5, 0xefff3ea7, 0xd54327fd, + 0x0702d834, 0xd804c103, 0x27fb48dc, 0xd801d514, 0xdc01d502, 0xd5302702, + 0xa7067003, 0xfdeb272e, 0x4f272305, 0x02040000, 0xf39b2415, 0xe001d50e, + 0x7403d502, 0xd5432706, 0xa702e404, 0xfdefff3e, 0xdce434c1, 0x4427fb48, + 0x02e434d5, 0x3ea71027, 0x05fdeb1f, 0x004f2731, 0x15030400, 0x0ef19b34, + 0xe48f2ea7, 0x1c4c27fd, 0x21152405, 0x00000f27, 0x2035a000, 0xe47f3ea7, + 0x054103fd, 0x35311534, 0xd1f88e30, 0xf80188d4, 0xfec3c04c, 0xd4bd4027, + 0xba5e04af, 0x70d4b9fe, 0xed4ff601, 0x4cdcb9fe, 0x802d2704, 0xfeea5e01, + 0x276c4c27, 0xd4ad903c, 0xd3ad0102, 0x165e0104, 0x5e3127fe, 0x2e9bfd49, + 0x04e0d2d5, 0xa7803c27, 0xd4d17f2c, 0x312304dc, 0x300b049b, 0xc4334c87, + 0x4c0b328b, 0x04d8d3d5, 0xdfff0ea7, 0xd843f1fd, 0x27ff0003, 0x9802d520, + 0xe803c501, 0x02d50e15, 0xd4b901b0, 0x4fe6013c, 0x02c5fef8, 0xd54127fc, + 0xd1010004, 0xb903dcd2, 0x07016fd4, 0x70d3b912, 0x33118301, 0xa3438316, + 0x834a3311, 0x3314ab33, 0x13ab0c3c, 0x01002d18, 0x00001ea3, 0xb401c504, + 0x27febf5e, 0xa710003d, 0x1e0fff2d, 0x5bf04e86, 0x2bdf3bcf, 0x07fc4efe, + 0xfb23be0f, 0x0efc0eff, 0x4eff0bf0, 0x3bcf5bf0, 0x4efe2bdf, 0xbe0f07fc, + 0x1efffc30, 0x1e2103ff, 0x19031918, 0x03010314, 0x0d34ce11, 0x11230123, + 0x14190019, 0xfe0b042b, 0x0027f230, 0xfe4efe0b, 0x40ab4107, 0x43d83007, + 0x01151e0f, 0x0524231e, 0x0314033e, 0x07071e34, 0x03425342, 0x86f45841, + 0x03141925, 0x03341d11, 0x8ef2a831, 0x07fd4efe, 0x2903dce0, 0x072624d0, + 0x073f6b31, 0xab483343, 0x07320743, 0x533423e4, 0x10ec3332, 0x3103e4ab, + 0x4e054007, 0x44032423, 0xe407f3b8, 0x40272103, 0x311d031e, 0x340b3e07, + 0xf2a84103, 0x0000fd8e, 0x04110321, 0x04014342, 0x411d430b, 0x41030421, + 0xfe0b0425, 0x00000030, 0xf2e3f54e, 0x5f079307, 0xb0273f07, 0x3a037027, + 0x82074027, 0x5c036027, 0x95fb850c, 0x05f3a5f7, 0x25f115f0, 0x01c85ef4, + 0x1c40b7b6, 0x3e0f0725, 0x01ba5eb8, 0x40276807, 0x61237027, 0xf485b127, + 0xa95ef795, 0x301c2301, 0x4f6b4107, 0xd4301c03, 0x7536184a, 0x27301c24, + 0x47f38531, 0x0b733347, 0x301c2374, 0x855e710b, 0x6c1ce001, 0x1cd40180, + 0x1ce0206d, 0x54010663, 0x1ce0641c, 0xe4015a25, 0x01632d1c, 0x1cc0261e, + 0x1ce42964, 0x1e015869, 0x731ce022, 0x1c3400f6, 0x701ce474, 0x131e0149, + 0x0f751cc0, 0x3e781ce4, 0x27081e01, 0x5ef49541, 0x9001013c, 0xc4641c00, + 0xcc0a691c, 0x00130b00, 0x071eb127, 0x2b751cc4, 0xd007b027, 0x0d07a027, + 0xbabe1a27, 0x00f9003a, 0x0001a460, 0x4a0b4507, 0x1a27401d, 0xacbe0d07, + 0xd007003a, 0x07e6a103, 0xa027dd1e, 0x4c834007, 0xf935070f, 0x01a46c44, + 0x1d3a0b00, 0x03045334, 0x270176a1, 0x91c707b0, 0x2bca2bf3, 0x813a76cb, + 0x6647a6f4, 0x270f07b7, 0xc57e2d1c, 0x1eb027fe, 0x96f3810e, 0x071d0734, + 0xfeb67e0f, 0xdc27041e, 0x07c12320, 0xbdf3534c, 0x014103fe, 0xe241cc31, + 0x0f07b546, 0x7e2d1c27, 0xda07fe98, 0xd50bd123, 0xd139061e, 0xa1fe8b7e, + 0x07d123f4, 0xf3d4ce0f, 0x061edc07, 0x23fe7b7e, 0x270f07d1, 0xd1cc201c, + 0x01591ef4, 0x03c90791, 0x7e0f07c4, 0x9c07fe64, 0x9d01611e, 0xb02774d6, + 0x0d070b1e, 0x000089be, 0xb02bb707, 0x34e6f391, 0x457e171e, 0x07b123fe, + 0x0741034b, 0x201c270f, 0x1ef041cc, 0xfe327e04, 0x0f07d419, 0xd1031407, + 0xdb0742b6, 0x217e061e, 0x07d123fe, 0x201c270f, 0x03f4d1cc, 0x07141e94, + 0xfe0e7e0f, 0x61190d1e, 0x057e6103, 0xc20f07fe, 0xb027f568, 0x81198103, + 0xfe361ff6, 0x10270f07, 0x21fdef7e, 0x23f2c3f0, 0xa3f58e01, 0x15f305f0, + 0x63fe4ef4, 0x033f07f0, 0x7ef30538, 0xf043fdec, 0xf083fe0e, 0x3007fe0b, + 0x01030419, 0x032b4396, 0xfb4efe0b, 0xeea7f063, 0x05fd4fff, 0x07c007f2, + 0x01b307d1, 0x123f9be4, 0x44334103, 0xab38e2c1, 0x1023ce34, 0xffe30ea7, + 0x0a95beff, 0xe8101e00, 0xa7061ef3, 0xffffe32e, 0x36272401, 0xf1294276, + 0x1303d409, 0x12732407, 0x03fc4d10, 0x0107ff1e, 0xc4090103, 0x322b3407, + 0x03fc4d10, 0x310cff1e, 0x03fc3d03, 0x87ec30da, 0x104c0342, 0x4d0bf301, + 0x21034305, 0x03fc2d04, 0x01072027, 0x01033b07, 0x3401111e, 0x14052103, + 0x2d103403, 0x2d2303fc, 0x128703fc, 0x0b101c03, 0x0df0301d, 0xe30ea7d2, + 0x0401ffff, 0xf5be44c6, 0x40270009, 0x270ef49b, 0xff4ea731, 0xf043fd4f, + 0xfb8e43a5, 0xf005f063, 0x20073107, 0xe0001f27, 0x0f271007, 0x1007d000, + 0x2f5ef043, 0x05f063ff, 0x073107f0, 0x001f2720, 0x271007c0, 0x07b0000f, + 0x5ef04310, 0x0409ff16, 0xf40df063, 0x30070449, 0xf201f42d, 0x0f273803, + 0x10079000, 0xa0001f27, 0xf0431007, 0x4efef55e, 0x07a007fa, 0xbeb10701, + 0x07fffede, 0x0dfc9330, 0x35030486, 0x0c072307, 0x07da4d27, 0x24231b07, + 0x050c0c03, 0x15ca25c4, 0xfc14bec3, 0x3e0c07ff, 0x4eff1eae, 0xfdf493f7, + 0x438905c3, 0x0a428908, 0x322b8007, 0x300c7107, 0x03fc3d03, 0x002734d6, + 0x4287f78e, 0xd0124ce9, 0x93071007, 0xac07c303, 0x9123b207, 0xb103a273, + 0x4de9c323, 0x1007d010, 0x270ca9d2, 0x9df19308, 0x843e007d, 0x8c2da907, + 0x84298d0d, 0x0bb9dd24, 0x66484cc4, 0xdd24141e, 0x4cc40bba, 0x0a1e5c28, + 0x0bbbdd00, 0x0bbcddc4, 0x07802951, 0x23070b37, 0x7f3ce301, 0x197f0ce3, + 0x803c0334, 0xc6f930c2, 0x071707a7, 0xfcbd103a, 0xfcbd2303, 0xf14b8703, + 0x07d01044, 0x05b10310, 0x38140314, 0xfcbd10f3, 0xfcbd2303, 0x55f39303, + 0x3b8d05c3, 0x003f270a, 0x271007e0, 0x8e3b2d01, 0x930627f7, 0x007d36f1, + 0x1eff067e, 0x290329a5, 0xfc3d1014, 0x10ff1e03, 0x1e03fc4d, 0x2b0307ff, + 0x03000c04, 0x0b03fc0d, 0x004f27fe, 0x29100790, 0x070f6b44, 0xfc4d1034, + 0xfc3d2303, 0x004f2703, 0x291007b0, 0xfdf29344, 0x230d05c2, 0x4d103407, + 0x3d2303fc, 0x4f2703fc, 0x1007d000, 0x234d4429, 0x03fc4d10, 0x03fc4d23, + 0xa608248d, 0x004f270b, 0x291007a0, 0x10340744, 0x2303fc4d, 0x2703fc3d, + 0x07c0004f, 0x2d442910, 0x10340723, 0x2303fc4d, 0x2703fc3d, 0x07e0004f, + 0x6d442910, 0xfc4d1023, 0xfc4d2303, 0x0a248d03, 0xf84efe0b, 0xc296f493, + 0x29430905, 0x2b900742, 0x03300c32, 0xd603fc3d, 0x8e002734, 0xe94287f8, + 0x0790124d, 0x03a30710, 0x07bd07d3, 0x73a123c2, 0x23c103b2, 0x1048e9d3, + 0xd2100790, 0x08270dba, 0x7c3af193, 0xfe217e00, 0x9805ba07, 0xdc509d15, + 0x930827c5, 0x007c6ff1, 0x06fe0e7e, 0x030907b8, 0x103b0708, 0x2303fccd, + 0x8703fccd, 0x1044f14c, 0x03100790, 0x030405c1, 0x10f33804, 0x2303fccd, + 0x9303fccd, 0x05c217f3, 0x3f273c2d, 0x1007a000, 0x3c2d0127, 0xf74ef88e, + 0xc202f493, 0x69434905, 0x2b900742, 0x0c710732, 0xfc3d0330, 0x2734d603, + 0x87f78e00, 0x124ce942, 0x071007b0, 0x07c303a3, 0x23b2078c, 0x038273a1, + 0xe9c323b1, 0x07b0104d, 0x0d8ad210, 0xf1930827, 0x7e007ba4, 0x8a07fd8b, + 0x9d0d9c2d, 0xdd249429, 0x4cc40bb9, 0x141e7448, 0x0bbadd24, 0x6a284cc4, + 0xdd000a1e, 0xddc40bbb, 0x295f0bbc, 0xf94c5094, 0xf1930827, 0x7e007bd3, + 0x9029fd57, 0x070b3707, 0x3ce30123, 0x7f0ce37f, 0x3c033419, 0xf930c280, + 0x170787c6, 0xbd103807, 0xbd2303fc, 0x4b8703fc, 0xb01044f1, 0xb1031007, + 0x14031405, 0xbd10f338, 0xbd2303fc, 0xf39303fc, 0x6d05c14c, 0x003f273b, + 0x271007c0, 0x8e3b2d01, 0x930627f7, 0x007b94f1, 0x1efcfe7e, 0xff2ea797, + 0x2401fd4f, 0x03123f9b, 0xc1443341, 0x34ab3822, 0x320e0027, 0xfe0b0127, + 0xf205f0e3, 0xf425f315, 0x3ea7fa4e, 0xa9ffffff, 0x63155434, 0x07d007f0, + 0xad4fe6a1, 0xa940fa00, 0x5034d100, 0xa14fe615, 0xe6bb3e00, 0x122f9b07, + 0x4fff4ea7, 0xa74301fd, 0xffffe71e, 0x14013433, 0x38a343d6, 0x130532ab, + 0x0ea70a1e, 0xbeffffe7, 0x2700063f, 0x100000cf, 0x44cbc110, 0xffff4ea7, + 0x5040d1ff, 0xff4ea715, 0x4401fd4f, 0x37333b07, 0x4c03030b, 0x9b041d30, + 0xddf9124f, 0x0001a5ec, 0x3d304c03, 0x273f0704, 0x0d5d204c, 0x3c03047d, + 0x07040318, 0x7b1c272a, 0x0dbef305, 0xd007fff9, 0xc4c107a6, 0x033b0748, + 0x48c4c541, 0x0348c4c1, 0xff3d1031, 0xc530270f, 0xc4c144c3, 0xe70ea744, + 0xa9beffff, 0x031e0005, 0x0d07d027, 0xfa0ef043, 0xfe0bf0c3, 0x3401fa4e, + 0xb107c307, 0x4fc4a207, 0xffffffff, 0x27100727, 0x2706012d, 0xa43d2702, + 0xe9ccbe01, 0xccd007fe, 0x0d271000, 0xbfbe0106, 0xf493fee9, 0x050485f4, + 0x01cd0540, 0xff1fc0c1, 0x1dffffff, 0x3a072b07, 0xa3be0527, 0x00ccfee9, + 0x060d2710, 0xe998be01, 0xcdf493fe, 0x40050485, 0xfe4efa8e, 0x0007b6be, + 0xf0002f27, 0x3d271007, 0x051e04e3, 0xf4e84307, 0x42c42401, 0x9efe0ef8, + 0x4e0007bd, 0x9bb027fb, 0xcf270efb, 0x1007f000, 0xc3053127, 0xf49b4027, + 0xff4ea70e, 0x43a5fd4f, 0xc031c13e, 0xfb8ecb05, 0xc027fb4e, 0x270efc9b, + 0x07f000bf, 0x05312710, 0x9b4027b3, 0x4ea70ef4, 0xa5fd4fff, 0x059c3e43, + 0x4efb8ebc, 0xe70ea7fe, 0xc3beffff, 0x30270004, 0xf0004f27, 0x43051007, + 0xfe4efe8e, 0xe6fe307e, 0x122f9b07, 0x4fff4ea7, 0xa74301fd, 0xffffe71e, + 0x14013433, 0x38a343d6, 0x130532ab, 0x0ea7fe8e, 0x0effffe7, 0x04b19efe, + 0x05f12300, 0x25f215f1, 0x4ef435f3, 0xff4ea7fb, 0x4491d07f, 0xb007f063, + 0x8b104cf8, 0x7efdab00, 0x07e6fde5, 0xa7122f9b, 0xfd4fff4e, 0x1ea74301, + 0x33ffffe7, 0xd6140134, 0xab38a343, 0x1e130532, 0xe70ea70a, 0x68beffff, + 0x4ea70004, 0x01fd4fff, 0x00cf2744, 0x031007f0, 0x3c27304c, 0x0cc49d20, + 0x9b0dc39d, 0xc39d124f, 0x304c030f, 0x3c033f07, 0x272b0714, 0x9d03f01d, + 0x0f270ec4, 0x1007f010, 0x45bef305, 0x4127fff7, 0x0f27c415, 0x1007f00c, + 0xfff955be, 0xc0250103, 0xa7feff7e, 0xffffe70e, 0x0003ebbe, 0xf043fdeb, + 0xf103fb0e, 0xf84efe0b, 0x00004f27, 0x4a011010, 0xc14048c1, 0x4cc14449, + 0x07ca2a48, 0x07051edc, 0xa7d123dc, 0xffffffbe, 0x1550b4d1, 0x4556da2b, + 0x78e0f093, 0xff237e00, 0x1550b1d1, 0x78faf093, 0xff177e00, 0x33568fc4, + 0xd4571122, 0x520fff9d, 0x2907de26, 0x18073c07, 0x7900f093, 0x074a0700, + 0xfef77e9b, 0xbd07ca07, 0x42be1f1e, 0x94d10032, 0x20071550, 0x240b2733, + 0x45862419, 0xf0931c07, 0x7e00790c, 0xc103fed5, 0x0c07b123, 0x0fff1d27, + 0xffffbfc4, 0x0bd4ffff, 0x004f27da, 0x05101000, 0xa7f88e4d, 0xffffff4e, + 0x155044d1, 0x4f2747c6, 0x10100000, 0x44034101, 0x44034201, 0x44034301, + 0xf0934401, 0x5e0078d2, 0xfe0bfe91, 0x4207f54e, 0x4013f563, 0x6107a207, + 0x52478007, 0x70279107, 0x1e50f4c5, 0x03b30935, 0xf839bed1, 0x03c00bff, + 0x270c07b2, 0xf293501c, 0x0e0078cc, 0xe6d9cead, 0xc41d4027, 0xf0931707, + 0x070078c2, 0xfe4b7e2f, 0x0b50f4c1, 0x0b940b7a, 0x0967c285, 0xd027b807, + 0xce1ecf07, 0xf58ef543, 0x6207f54e, 0x7107f523, 0x50079207, 0xa1076013, + 0x301e8027, 0xd103b319, 0xfff7e2be, 0xb103c00b, 0x1c270c07, 0x83f29350, + 0x9d0e0078, 0x27e6dace, 0x1d180740, 0x6bf093c4, 0x2f070078, 0x0bfdf47e, + 0xc2a60b89, 0xb8070b78, 0xd027b50b, 0xd11ecf07, 0xf58ef503, 0xb007f94e, + 0xa207d107, 0xfcab9307, 0xe6fbd47e, 0x122f9b07, 0x4fff4ea7, 0xa74301fd, + 0xffffe71e, 0x14013433, 0x38a343d6, 0x130532ab, 0x0ea70a1e, 0xbeffffe7, + 0x27000257, 0x07f0004f, 0x15322710, 0x453a0343, 0x9d43254d, 0x499d144a, + 0x7e4b3515, 0xd007fcff, 0xffe70ea7, 0x020ebeff, 0xc6fceb00, 0x272b07d5, + 0x0702020d, 0xe650be1d, 0x8e0d07fe, 0x07fb4ef9, 0xabb107c0, 0xfb677efd, + 0x2f9b07e6, 0xff4ea712, 0x4301fd4f, 0xffe71ea7, 0x013433ff, 0xa343d614, + 0x0532ab38, 0xa70a1e13, 0xffffe70e, 0x0001eabe, 0xf0003f27, 0x43271007, + 0x48273415, 0x34253c35, 0x987e3b45, 0xa7c007fc, 0xffffe70e, 0x0001a7be, + 0x0c07fdeb, 0xfc4efb8e, 0x0d66d007, 0x0e7efcab, 0x9b07e6fb, 0x4ea7122f, + 0x01fd4fff, 0xe71ea743, 0x3433ffff, 0x43d61401, 0x32ab38a3, 0x0a1e1305, + 0xffe70ea7, 0x0191beff, 0x004f2700, 0x271007f0, 0x25431534, 0x7e4d3543, + 0x0ea7fc68, 0xbeffffe7, 0xeb000154, 0x4efc8efc, 0x07f123fc, 0x93c007d1, + 0x007741f1, 0x2c270f07, 0xf3ecbe10, 0x93d4f6ff, 0x007dcefd, 0x87be0d07, + 0xf393fff6, 0x07047f08, 0xda4d2720, 0x03e30707, 0x3405140c, 0x3c253015, + 0xec032103, 0x273f070c, 0x03310143, 0x03e10534, 0x59f4a8e4, 0x07330934, + 0xf4f0931d, 0xe45d047e, 0xa3bee30d, 0xf093fff3, 0xbe047ecc, 0x1efff73a, + 0xa7fc4eff, 0xffffff4e, 0x152c44b9, 0xc107d007, 0xf09345e6, 0x070076de, + 0xbe2c071d, 0x07fffc3d, 0xbe1c070d, 0x96fffec9, 0x93022705, 0x0076e5f1, + 0x8eff665e, 0xa7f84efc, 0xffffff8e, 0x152c84b9, 0xb1079007, 0xd307a207, + 0xf0934666, 0x070076d5, 0x072b0719, 0xbe4d073a, 0x07fffc01, 0x27d214cd, + 0x070907c2, 0x072a071b, 0xfe12be3c, 0x2c84b9ff, 0xa6d00715, 0xddf09345, + 0x1d070076, 0xfffbdcbe, 0x0227d576, 0x76e5f193, 0x27121e00, 0x234c3b41, + 0x864d8b41, 0x93012745, 0x0076e0f1, 0x96fefa5e, 0x00df50a7, 0x07200000, + 0xd04b0b4d, 0x0000014f, 0x01272370, 0x76e8f193, 0x50e21e00, 0x000000df, + 0x0b4d0770, 0x014f504b, 0x27f00000, 0xfef19301, 0xc91e0076, 0xf88e0d07, + 0x5e0c3c27, 0x4027ff59, 0xfe0b0405, 0xf49b4027, 0x0b04050e, 0x9b0201fe, + 0x4ea7123f, 0x01fd4fff, 0x33002744, 0xab48a344, 0x27420e43, 0x4efe0b01, + 0x9bc007fa, 0x4ea7123f, 0x01fd4fff, 0x33a4074d, 0xabd8a3d4, 0xe8031ed3, + 0x27cb01f4, 0xbeb35646, 0x01002f50, 0x963027c4, 0x9bcd0544, 0xabc50ef3, + 0xcec40138, 0xfa8ee4d4, 0x4ea73027, 0xd5feffff, 0x0b013843, 0x124f9bfe, + 0x34872407, 0x232b2533, 0x001421f1, 0x3f9bff01, 0x0b410310, 0x33148731, + 0x1423f545, 0x2bff0100, 0xff3ea741, 0x3311fd4f, 0x000044f1, 0x1207ff01, + 0x23f5342b, 0xff010020, 0xfff41e23, 0x682e23fe, 0x4727feff, 0x14031301, + 0x24032305, 0xfe0bf4a8, 0x4fff4ea7, 0xff3ea7fd, 0x4181feff, 0x32d14491, + 0x30d10128, 0x13330130, 0x211b4333, 0x34d5041b, 0x32d50130, 0x31d50124, + 0x30d50128, 0xfe0b012c, 0xfe0bfe0b, 0x7f6af493, 0x0b407504, 0x334007fe, + 0x2b008745, 0x0c41f540, 0xf5ff0100, 0x05af2841, 0x07fe0b00, 0x87453340, + 0xf5402b00, 0x01001041, 0x2c41f5ff, 0x0b0005af, 0x334087fe, 0x23042b05, + 0xfeff680e, 0xfc4efe0b, 0x078ccc27, 0xf31ea72c, 0xf093feff, 0xbe047df4, + 0x07fff16e, 0x671ea72c, 0xf093feff, 0xbe047e70, 0x93fff15e, 0x047ef3f0, + 0xfedb1ea7, 0x102c27fe, 0x4b9efc0e, 0xfe4efff1, 0x7dc2f493, 0xf6441904, + 0x9300a24f, 0x047dbbf4, 0x2c032407, 0xe334078b, 0x3ce37f2c, 0x0334197f, + 0x32c2803c, 0xa1f393f9, 0x2027047d, 0x05234c27, 0xc8340332, 0x1df493f4, + 0x2407047e, 0x078b2c03, 0x7f2ce334, 0x197f3ce3, 0x803c0334, 0x27f932c2, + 0xf293233c, 0x27047e00, 0x05430710, 0x03312321, 0x93f4b824, 0x047e7bf4, + 0x43054335, 0x43254315, 0xf3932027, 0x27047e7c, 0x0332054a, 0x27f4c834, + 0x27252730, 0xb834f540, 0xf50005af, 0x05af2834, 0x2c34f500, 0xf50005af, + 0x05afb434, 0x1c3c0300, 0x3127f200, 0x7d1ef493, 0x93431d04, 0x047da7f1, + 0xa78c2c27, 0xfeff670e, 0xfff08dbe, 0x7d0af193, 0x8c2c2704, 0xfff30ea7, + 0xf07cbefe, 0x11f193ff, 0x2c27047e, 0xdb0ea710, 0x6bbefefe, 0xfe0efff0, + 0xa7fe6f5e, 0xfd4fff4e, 0x4ea74311, 0xd5feffff, 0x0b013443, 0xff3ea7fe, + 0x4ea7feff, 0x11fd4fff, 0x3834d141, 0x3432d101, 0x2b410b01, 0x3834d542, + 0x9bfe0b01, 0x3407124f, 0x44873533, 0x4ea7342b, 0x11fd4fff, 0x2434f142, + 0x2bff0100, 0x2434f542, 0x0bff0100, 0x124f9bfe, 0x25332407, 0x242b4487, + 0x4fff4ea7, 0xf14411fd, 0x01002423, 0xf5430bff, 0x01002424, 0x93fe0bff, + 0x047d97f2, 0xff673ea7, 0x014727fe, 0x05340331, 0xa8240321, 0xff4ea7f4, + 0x44d1feff, 0xf3930138, 0x95047d78, 0x014a2734, 0x05340332, 0xa8040302, + 0xa7fe0bf4, 0xffffff3e, 0x270d309d, 0xaa34bd41, 0x0f339906, 0xf49b4027, + 0x8741270e, 0x4034f533, 0x1eff02b0, 0x07fc4eff, 0x2c76bec0, 0xff1ea700, + 0xc319fd4f, 0x41271201, 0x34eb423b, 0x4027c31d, 0xc50ef49b, 0xfc8e3814, + 0xc007fb4e, 0x27beb107, 0xc219002c, 0x2bab4027, 0xc43dc21d, 0x402705e6, + 0xa70ef49b, 0xfd4fff3e, 0x273834c5, 0x0ef49b40, 0xffff4ea7, 0x0e4399ff, + 0x4fbf1ea7, 0x38328bfd, 0x05412731, 0x03315314, 0x8e32d614, 0x0d0499fb, + 0x070c0399, 0x0744c623, 0x99041e34, 0x43070e03, 0x400b4123, 0x99044499, + 0x45960e00, 0x3028321b, 0xfe0b0307, 0xfe0b030b, 0xb027fb4e, 0x0b9dc007, + 0x0ec19d0c, 0x0b9d2107, 0x0310270d, 0xef1fbe04, 0x3dcb1dff, 0x03cb5dcb, + 0x8ecb3dc2, 0x07fc4efb, 0xfbcc27d0, 0x76be0d07, 0x004c009d, 0xf4e84c07, + 0xfc8ef31e, 0xd007fc4e, 0x07fbcc27, 0x9d5fbe0d, 0x07004c00, 0x1ef4e84c, + 0x6bfc8ef3, 0x9315361f, 0x007312f0, 0x4087fe0b, 0xb67840f1, 0x04860001, + 0xf0931434, 0x0b007883, 0x0b4187fe, 0x104c2340, 0xfe0b4001, 0x0087f74e, + 0xb6940af1, 0x0bf10001, 0x0001b678, 0xf093c107, 0x070072e7, 0x2772071a, + 0xf72fbe90, 0x1e8027ff, 0x03cd011c, 0x66c40391, 0x93b201d6, 0x0072daf0, + 0x3d071a07, 0xfff714be, 0xb4038d0b, 0x07e397ce, 0x9328071a, 0x0072d1f0, + 0xfe9ef70e, 0xfa4efff6, 0x23082a99, 0x87d207f1, 0xf1ac8631, 0x01b67833, + 0x34348600, 0x08f393a4, 0x0a1e0078, 0x430b4a87, 0x01104c23, 0x09de9943, + 0xdb69dc49, 0xfe054187, 0xfb25fc15, 0xb69442f1, 0xdd010001, 0x4a071007, + 0x729ff093, 0xbefd3500, 0x1efff6b1, 0x09249922, 0xde492c69, 0xb69432f1, + 0x10070001, 0x72f4f393, 0xbaf09300, 0xfe050072, 0x8ebefc15, 0xf103fff6, + 0xfc4efa8e, 0xffffcea7, 0x63c101f7, 0xe3f093f0, 0x76be0072, 0xc121fff6, + 0x72f6f093, 0xf66bbe00, 0x48c1c1ff, 0x7308f093, 0xf65fbe00, 0x44c1c1ff, + 0x731af093, 0xf653be00, 0xffcea7ff, 0xc181efff, 0x7328f093, 0xf643be00, + 0x93c1a1ff, 0x00733bf0, 0xfff638be, 0xffffcea7, 0x93c121eb, 0x007349f0, + 0xfff628be, 0x9364c1c1, 0x00735bf0, 0xfff61cbe, 0xffffcea7, 0x93c101e7, + 0x007369f0, 0xfff60cbe, 0x9350c1c1, 0x00737bf0, 0xfff600be, 0xf093c121, + 0xbe00738e, 0xc1fff5f5, 0xf09354c1, 0xbe0073a0, 0xc1fff5e9, 0xf09358c1, + 0xbe0073b2, 0xc1fff5dd, 0xf0935cc1, 0xbe0073c4, 0xa7fff5d1, 0xfbffffce, + 0x0628c1d1, 0x73d0f093, 0xf5bfbe00, 0x30c1d1ff, 0xeaf09301, 0xb2be0073, + 0xc1d1fff5, 0xf0930208, 0xbe007404, 0xd1fff5a5, 0x930420c1, 0x00741ef0, + 0xfff598be, 0x0468c1d1, 0x7438f093, 0xf58bbe00, 0xff4ea7ff, 0x41c1f3ff, + 0x4ef09334, 0x7abe0074, 0xcea7fff5, 0x31fddfff, 0x5cf093c1, 0x6abe0074, + 0xc1c1fff5, 0x4cc2c148, 0xc16cc3c1, 0xcec170c4, 0x62f09340, 0xfe050074, + 0xfff550be, 0xffffcea7, 0x48c1d1fe, 0x48c2d101, 0x81f09301, 0x22870074, + 0xb6682f03, 0x32be0001, 0xc1b9fff5, 0xf0930140, 0xbe00748d, 0x99fff525, + 0xf09309c1, 0xbe00749d, 0xb9fff519, 0x931e99c1, 0x0074acf0, 0xfff50cbe, + 0x0144c1a9, 0x74bbf093, 0xf4ffbe00, 0x42c1a9ff, 0xd6f09301, 0xf2be0074, + 0x4ea7fff4, 0xd1fdefff, 0x930f0041, 0x0074e7f0, 0xfff4e0be, 0x0003d7be, + 0x4fff4ea7, 0x114c01fd, 0x931c0742, 0x0074edf0, 0xfff4c8be, 0x10270c07, + 0xe1b32ea7, 0xfdc07efe, 0x11270c07, 0xe1a72ea7, 0xfdb47efe, 0x13270c07, + 0xe18f2ea7, 0xfda87efe, 0x14270c07, 0xe1832ea7, 0xfd9c7efe, 0x15270c07, + 0xe1772ea7, 0xfd907efe, 0xffffcea7, 0x08c1d1ff, 0x10c2d115, 0x0cc3d115, + 0x1cc4d115, 0xc1f09315, 0x6ebe0074, 0xc2d1fff4, 0xc1d11518, 0xf0931514, + 0x430074d2, 0x9efc0ef0, 0x4efff459, 0xffbea7f8, 0xb1c1fd4f, 0x93f1236c, + 0x0074ccf0, 0xfff444be, 0x00042ebe, 0xf0931007, 0xa70074e4, 0xffffffce, + 0xfff430be, 0x9311c199, 0x0074faf0, 0xfff424be, 0xb211ba01, 0xf0931a07, + 0xbe007512, 0x07fff415, 0xa716270a, 0xffeadf2e, 0xa7fd0d7e, 0xfffffb0e, + 0x01030919, 0x4ea70a19, 0x03fffffe, 0x19421901, 0x0341030b, 0x190e1901, + 0x19410343, 0x93c11944, 0x007507f0, 0xf905fe35, 0xfb25fa15, 0xfff3d4be, + 0x930fc199, 0x007536f0, 0xfff3c8be, 0x9310c199, 0x007551f0, 0xfff3bcbe, + 0x06a8c2d1, 0x06acc3d1, 0x06a4c1d1, 0x7563f093, 0xf3a7be00, 0x90c1d1ff, + 0x89f09306, 0x9abe0075, 0xc1d1fff3, 0xf0930698, 0xbe0075a3, 0xd1fff38d, + 0x93069cc1, 0x0075bdf0, 0xfff380be, 0x9327c199, 0x0075d8f0, 0xfff374be, + 0x9326c199, 0x0075f3f0, 0xfff368be, 0x0e14c1d1, 0x760df093, 0xf35bbe00, + 0x2dc1b9ff, 0x27f0930e, 0x4ebe0076, 0xc1b9fff3, 0xf0930e2c, 0xbe007644, + 0xd1fff341, 0x9313b0c1, 0x007661f0, 0xfff334be, 0x0102c1a9, 0x767ef093, + 0x0f1c8300, 0xfff324be, 0x0108c1b9, 0x7695f093, 0xf317be00, 0x09c1b9ff, + 0xaff09301, 0x0abe0076, 0xc1a9fff3, 0xf093010a, 0xbe0076c9, 0xd1fff2fd, + 0x931858c1, 0x0076e3f0, 0xfff2f0be, 0x1844c1b9, 0x7703f093, 0xf2e3be00, + 0x45c1b9ff, 0x1df09318, 0xcea70077, 0xbeffe973, 0xb9fff2d1, 0x9301b4c1, + 0x007732f0, 0xfff2c4be, 0x9340c199, 0x00774bf0, 0xb6be8c07, 0xc027fff2, + 0x14f9661e, 0xff0017f0, 0x180030f1, 0x32f1ff00, 0xff0016e0, 0x172033f1, + 0x42d8ff00, 0x2bb30749, 0xcad027b2, 0xb0070923, 0xb22bb103, 0x4187d307, + 0x180043f1, 0xeb07ff00, 0xed0b3103, 0x172049f1, 0x42f1ff00, 0xff00168c, + 0x771bf093, 0xe044f100, 0x27ff0016, 0x27e30ea0, 0x053a07a1, 0x25fb15f9, + 0xf24fbefd, 0x07c103ff, 0x4084991c, 0x31871f6b, 0xa79014ca, 0xffffffce, + 0x0e2ec1b9, 0x7736f093, 0xf22fbe00, 0x2fc1b9ff, 0x50f0930e, 0x22be0077, + 0xc1b9fff2, 0xf0930e2c, 0xbe00776a, 0x93fff215, 0x007788f0, 0xfff20cbe, + 0x930cc199, 0x00778df0, 0xfff200be, 0x932ac199, 0x0077a8f0, 0xfff1f4be, + 0x9312c199, 0x0077c3f0, 0xfff1e8be, 0x9344c199, 0x0077def0, 0xfff1dcbe, + 0x933cc1c1, 0x0077f9f0, 0xfff1d0be, 0x9340c1c1, 0x007814f0, 0xfff1c4be, + 0x0694c1d1, 0x782ef093, 0xf1b7be00, 0x4cf093ff, 0xaebe0078, 0x0ea7fff1, + 0xbefffaf3, 0x07fff9b1, 0x4cf09310, 0x9abe0078, 0x0ea7fff1, 0xbefffaa3, + 0x07fff99d, 0x67f09310, 0x86be0078, 0xc027fff1, 0x3c874c07, 0x432b4433, + 0x44874c2b, 0x011042f1, 0x1c07ff00, 0x7877f093, 0xbec10300, 0xc4fff165, + 0xa7de10cc, 0xfeffff4e, 0x93094b99, 0x00787cf0, 0xcb07b383, 0xc4334b87, + 0xc1f9c42b, 0xff000050, 0xffb8ce23, 0xf13bbeff, 0x39c403ff, 0x82f093c1, + 0x2ebe0078, 0xc159fff1, 0x789ff093, 0xf123be00, 0x87b103ff, 0x2bb4334b, + 0x48b1f1b4, 0x93ff0000, 0x0078b0f0, 0xf80ef103, 0xfff1089e, 0xf4e3f64e, + 0x7c46f093, 0xf0fbbe00, 0x277127ff, 0xf14d87d0, 0x02100044, 0x953787ff, + 0x0034f1f4, 0xa5ff0210, 0x3cf491f4, 0x40a7e04c, 0x4d070b1e, 0x44f14433, + 0xff02180c, 0xf4a1f4b5, 0xa7e04c3c, 0x070b1e40, 0xf1443347, 0x02180c44, + 0x30f4c5ff, 0x2738dc30, 0x87091e40, 0x0044f14d, 0xc5ff0216, 0x7c3034f4, + 0x1e402738, 0xf1478709, 0x02160044, 0x38f4c5ff, 0xf4c54027, 0x40f4c53c, + 0xc544f4c5, 0xf29148f4, 0xf4b1f3a1, 0x00004f38, 0x10a72000, 0x4d070b1e, + 0x41f14433, 0xff021804, 0x3830f4c1, 0x0000004f, 0x1e60a720, 0x3347070b, + 0x0446f144, 0xc1ff0218, 0x41073cfe, 0x0740fcc1, 0x44fbc11d, 0xc148fac1, + 0xf8c134f9, 0x53fd5538, 0x93d20311, 0x007bcaf0, 0xf605f775, 0xfc25fe15, + 0xfa45fb35, 0xf885f965, 0x1ebe7203, 0xdce4fff0, 0xc3ff2450, 0x27f68ef4, + 0x110ed30f, 0x4efe0b47, 0x074207f6, 0x07930782, 0x533007a2, 0x4fab102c, + 0xe2073fab, 0x6007e39b, 0xb0077107, 0x0c531407, 0x9b349b10, 0x0b430710, + 0x104c53e1, 0x209be40b, 0x2e031e02, 0x07010000, 0x33b99b4e, 0xa79b10ec, + 0x07104c53, 0x073fabd2, 0x0bba0bce, 0x07c30bd4, 0x0b0c071b, 0x4ef68e1d, + 0x27c027f5, 0xe00000df, 0x072c0741, 0x07a0073d, 0x20ecbeb1, 0x1f00c800, + 0x3d072027, 0x0a071b07, 0x001e4cbe, 0x04074007, 0x94be5107, 0x0f03001f, + 0x80000000, 0x1b07f58e, 0x84be0a07, 0xf58e001f, 0xf1a3f54e, 0xc307b207, + 0xe307d207, 0x01bd10e8, 0xf3553027, 0x01c9c0e8, 0xbd07a107, 0xeff65007, + 0xd1e200ac, 0xdef400cc, 0xe4010000, 0x00ddf401, 0x2703a001, 0x202c2740, + 0x345b3b07, 0xb76c33f9, 0x12070001, 0x16e6132b, 0x07204c27, 0x07412b25, + 0x3b245b3a, 0xaba20731, 0x3b513ba3, 0x539b07b1, 0x1907109c, 0x64be0a07, + 0x80070022, 0x0a071907, 0x002254be, 0x4507ab07, 0xab100c33, 0x104c53af, + 0x04abc807, 0xc062ca9b, 0x81230b0b, 0x0cea0b0a, 0xc01b0354, 0x0c071907, + 0x002232be, 0x1907d007, 0x22be0c07, 0x45070022, 0xab100c33, 0xabed074f, + 0x82ea9b04, 0x230b0be0, 0x020b2ad1, 0x07d123e0, 0x104c3348, 0x04ab0d07, + 0x0b1e4027, 0xe1e22e07, 0x002700ca, 0xf3514027, 0x74076007, 0x35c61407, + 0x40273027, 0x416b302b, 0x14070307, 0xf58ef183, 0x0127d596, 0xd4be1027, + 0xb0070021, 0x0000bef0, 0xf400f301, 0x000000bf, 0x2702b001, 0x4207102c, + 0x345b3b07, 0xb76c33f9, 0x82070001, 0x8ff6832b, 0x4b0701dc, 0x9b07ca07, + 0xcb2b4fab, 0x35109c53, 0x078127f4, 0xbe0c0719, 0x07002193, 0x071907a0, + 0x2183be0c, 0x31450700, 0x100c33fc, 0xab104c53, 0x62ca9b04, 0x230b0bc0, + 0xea0b0aa1, 0x1b028e0c, 0x071907c0, 0x2165be0c, 0x07d00700, 0xbe0c0719, + 0x07002155, 0x33fe3145, 0x4fab100c, 0xed9b04ab, 0x0b0be082, 0x0b2ad123, + 0xd123e002, 0x4c334a07, 0xab0d0710, 0x5e480704, 0xeed0ff3e, 0x63010000, + 0x0000eff4, 0x021b0100, 0x07101c27, 0x5b320741, 0x6c33f934, 0x070001b7, + 0xd6832b81, 0x2a0a628f, 0xff105bea, 0x40270127, 0x27ff0d5e, 0x2b402730, + 0x07416b30, 0x5540a714, 0xec0307f4, 0x27fe3bc0, 0x27d30730, 0x07f35140, + 0x2b3f0be4, 0x55ec6bdb, 0xfe265ef3, 0x0100bdf4, 0x402701d1, 0x5e202c27, + 0xedf4ff10, 0x01a30100, 0x1c274027, 0xf49f1e20, 0x000000df, 0x27019c01, + 0x4207102c, 0x27fe1b5e, 0x382b203c, 0x435b4b07, 0x9407283b, 0xca0792ab, + 0xd9074a07, 0xc35b2507, 0x3b10dc53, 0xab235b48, 0x071d0724, 0xbef2150c, + 0x45002083, 0x071d07f0, 0x2073be0c, 0x07f41100, 0x33fc41a9, 0xafab100c, + 0x3b104c53, 0x9b04abb8, 0xc2fb05ca, 0xf44113c0, 0x4123090b, 0x096af445, + 0x4123c042, 0x090bf445, 0x1d07c01b, 0x44be0c07, 0xb0070020, 0x0c071d07, + 0x002034be, 0x0c33f411, 0x074fab10, 0x9bd4abd0, 0x0bad42ab, 0xe2b123d9, + 0x4101309d, 0x33fc01f4, 0xb4ab104c, 0xf401eb07, 0x0710ec53, 0xab4fab1b, + 0x530e071f, 0x210710cc, 0x149b049b, 0x30072c9b, 0x320b4107, 0x07104c53, + 0x2b340b2d, 0x02ec9b2a, 0x00ee0303, 0x43070100, 0x0b104c53, 0xb12eeae4, + 0x9a2eee00, 0x270b0700, 0xfddc5e40, 0x4c27b83b, 0x07482b20, 0x073a07ca, + 0x5b25079b, 0x3b245bc4, 0x109c5338, 0x190723ab, 0xf2250c07, 0x001faebe, + 0x1907a007, 0x9ebe0c07, 0x3b07001f, 0x3fabf421, 0x53100c33, 0xc307104c, + 0x40abf335, 0xc4a2ca9b, 0xa1234b0b, 0xc4224b4a, 0x4b0ba123, 0x1907c41b, + 0x78be0c07, 0xd007001f, 0x0c071907, 0x001f68be, 0xf231f421, 0xab100c33, + 0x9b04ab4f, 0x0b20a22d, 0x4ad1230b, 0x2320220b, 0x070b0bd1, 0x104c334a, + 0xc007583b, 0xc22b8d07, 0xa85e84ab, 0x074307fd, 0x104c3331, 0x25073fab, + 0x430b283b, 0xff5742e2, 0x01230b07, 0x2f5e4027, 0x274827fd, 0xfe5e181c, + 0x184c27fd, 0x815e2827, 0x184c27fc, 0x515e2827, 0x184c27fd, 0xe65e1827, + 0x274827fd, 0x415e182c, 0x274827fd, 0x615e182c, 0xd0ade2fc, 0x23d90bfe, + 0xfec95eb1, 0x0b0b8123, 0x23fca95e, 0x5e0b0ba1, 0xf54efd6f, 0xb207f2e3, + 0xd207c307, 0x10e8e307, 0x202701ab, 0xc0e8f2a5, 0xbd070194, 0xa1077007, + 0xe265efd6, 0xf000e0d1, 0x010000de, 0xdff401b0, 0x01000000, 0x2c27039a, + 0x07420710, 0xf9045b0b, 0x01b76c03, 0x2b420700, 0xad4ff643, 0x75102701, + 0x53db07f1, 0x1d0710dc, 0x80be0a07, 0xc007001e, 0x0a071d07, 0x001e70be, + 0x47076b07, 0x0c336fab, 0x104c5310, 0x04abc69b, 0x0b0bc062, 0xc0020b2a, + 0xc01b0b0b, 0x0700ef5e, 0x26e1c2ce, 0x91078007, 0xf115f005, 0x1fc6f1a1, + 0x11f00165, 0x273027f1, 0x6b302b40, 0x07030741, 0x15f30514, 0x8ef2c3f4, + 0x00eef0f5, 0x01340100, 0x0000eff4, 0x03180100, 0x07102c27, 0x5b3c0742, + 0x6c33f934, 0x070001b7, 0xf6d32bd2, 0x0a013ddf, 0x157bcaca, 0x3a072707, + 0x3c2b2b2b, 0x27e24127, 0xa307030e, 0x7207a42b, 0xf705f1a1, 0x8707fa15, + 0x1fd69a07, 0x11f0019d, 0x8ef2c3f1, 0x27d596f5, 0xbe102701, 0x07001dcf, + 0x00bef0b0, 0x00b80100, 0x0000bff4, 0x02c00100, 0x07102c27, 0x5b0b0742, + 0x6c03f904, 0x070001b7, 0xf6532b52, 0x0701d95f, 0x07db07ca, 0x2b10276b, + 0x10dc53cb, 0xf1756fab, 0x0c071d07, 0x001d8ebe, 0x1d07a007, 0x7ebe0c07, + 0x4707001d, 0x53100c33, 0xa69b104c, 0xa04204ab, 0x0b0a0b0b, 0x02910aea, + 0xca2bc007, 0x0c071d07, 0x001d62be, 0x1d07a007, 0x52be0c07, 0x4707001d, + 0xab100c33, 0xaba69b4f, 0x0ba06204, 0x020b2a0b, 0x2b0b0ba0, 0x07f1710a, + 0x27815b80, 0x15f80590, 0xfeea5ef9, 0x40273027, 0xe407d307, 0xec6bdb2b, + 0x27fe615e, 0x2b402730, 0x07416b30, 0xa7140703, 0x5ef3a530, 0xbdf4fe4a, + 0x021c0100, 0x2c274027, 0xff4b5e20, 0x0100ddf4, 0x40270206, 0x5e202c27, + 0xedf4fe53, 0x01d80100, 0x2c274027, 0xfecf5e20, 0x2707f475, 0x5b204c13, + 0x07f47124, 0x07343b3a, 0x3ba3aba2, 0x5e743bb4, 0x4c27fe41, 0x254d2b20, + 0x07f021f4, 0x07405b4b, 0x073d3b3c, 0x0753ab54, 0x07ca0747, 0x5b3a0765, + 0x533d3bc0, 0x405b106c, 0x160743ab, 0xf4550c07, 0x001c9abe, 0x1607f095, + 0x8abe0c07, 0xf451001c, 0xfc911507, 0x0c331fab, 0x104c5310, 0x7d3bbd3b, + 0x04abf185, 0xfb35c19b, 0xc0c2f745, 0x0bf29113, 0x95212305, 0x42056af2, + 0x952123c0, 0x1b050bf2, 0x071607c0, 0x1c55be0c, 0x07a00700, 0xbe0c0716, + 0x51001c45, 0x100c33f4, 0x4fabf781, 0xb4abb007, 0x7b427a9b, 0xa123b50b, + 0x015a5be2, 0x3a07f491, 0xab104c33, 0x31c30734, 0x533fabf4, 0xfe3110cc, + 0xa3074fab, 0xec530c07, 0x9b130710, 0x9ba49b04, 0x0720071e, 0x53210b4a, + 0x1b07104c, 0x240b3c07, 0x3e9b172b, 0x3e030202, 0x07010000, 0x104c5342, + 0x32070307, 0x3c33040b, 0xab4a0710, 0x0b23074f, 0x8910ea24, 0x0801ee00, + 0x5e011b01, 0xb53b0095, 0x4c134507, 0x07ca0720, 0x07db073a, 0x53c45b27, + 0x245b10dc, 0x23ab353b, 0x0c071d07, 0xf575f265, 0x001baabe, 0x1d07a007, + 0x9abe0c07, 0xf461001b, 0x6fab6b07, 0x53100c33, 0xa69b104c, 0xa46240ab, + 0x4b2a4b0b, 0x4b0ba402, 0xca2bc407, 0x0c071d07, 0x001b7abe, 0x1d07a007, + 0x6abe0c07, 0xf461001b, 0xab100c33, 0xaba69b4f, 0x0ba06204, 0x020b2a0b, + 0x070b0ba0, 0x2b753bc0, 0xfdbe5eca, 0x3007f431, 0x352b421b, 0x42c20127, + 0x07302b63, 0x07032b01, 0x41f44124, 0x27422bf1, 0x27140a31, 0x21301b30, + 0x074d5bf0, 0x07203b23, 0xab930784, 0x059d5b82, 0x5ef915f8, 0x4827fcd0, + 0x5e182c27, 0x4c27fcf9, 0x5e282718, 0x4c27fc67, 0x5e282718, 0x4c27fce9, + 0x5e282718, 0x4827fd41, 0x5e182c27, 0x4827fc4f, 0x5e182c27, 0x4027fd31, + 0x27fcf15e, 0x0b9b1e00, 0xfd6e5e0b, 0xfea67be2, 0xb50ba123, 0x41fe9f5e, + 0x7932eaf3, 0x1e0027ff, 0x63f54e89, 0x07f035f1, 0xf6d207b1, 0xe200b83f, + 0xf400f621, 0x0100002e, 0x2df401c8, 0x037a0100, 0x2c274027, 0x5b3d0720, + 0x6c33f934, 0x070001b7, 0x66e32be2, 0x27f231e7, 0x4e2b204c, 0xf431245b, + 0x3e3b3b07, 0x4e3bb207, 0xf435b3ab, 0xad07de3b, 0x0710ac53, 0xbe0b071a, + 0x07001a6b, 0x071a0790, 0x1a5bbe0b, 0x07f43100, 0x100c336d, 0x4c536fab, + 0xabc90710, 0x62c69b04, 0x230d0bc0, 0xea0d0a91, 0x1b033a0c, 0x071a07c0, + 0x1a39be0c, 0x07b00700, 0xbe0c071a, 0x31001a29, 0x100c33f4, 0x3b074fab, + 0x369b04ab, 0x0d0b3082, 0x0d2ab123, 0xb1233002, 0x4c334907, 0xab0b0710, + 0x07402704, 0x07700714, 0x8ef14384, 0xea2307f5, 0xf000fb13, 0x0100003e, + 0x3ff400e6, 0x01000000, 0x1c2702a8, 0x07410710, 0xf9345b32, 0x01b76c33, + 0x2b610700, 0x016ff663, 0x312b2a01, 0xcd4deaf4, 0x27012700, 0x07140740, + 0x43840770, 0x96f58ef1, 0x27012725, 0x19b5be10, 0xf0d00700, 0x010000de, + 0xdff400ba, 0x01000000, 0x2c270270, 0x07420710, 0xf9345b3d, 0x01b76c33, + 0x2b920700, 0x939ff693, 0x07cb0701, 0x2b6d07ad, 0x10ac53cd, 0x51276fab, + 0x0c071a07, 0x001976be, 0x1a079007, 0x66be0c07, 0xf4310019, 0x53100c33, + 0xc907104c, 0xc69b04ab, 0x0d0bc062, 0x0d0a9123, 0x02500cea, 0x1a07c01b, + 0x48be0c07, 0xb0070019, 0x0c071a07, 0x001938be, 0x0c33f431, 0x074fab10, + 0x9b04ab3b, 0x0b308236, 0x2ab1230d, 0x2330020d, 0x334907b1, 0x0b07104c, + 0x450704ab, 0x70071407, 0xf1438407, 0x3df4f58e, 0x01ce0100, 0x1c274027, + 0xff1d5e20, 0x40270027, 0x70071407, 0xf1438407, 0xddf4f58e, 0x01ca0100, + 0x2c274027, 0xff495e20, 0x00002ff4, 0x01c20100, 0x07102c27, 0xfe375e42, + 0x2b203c27, 0x5b4d0736, 0x07263b43, 0x31a2aba4, 0x07cb07f2, 0x5b4b079a, + 0x3b235bc3, 0x109c5346, 0x190724ab, 0xf2150c07, 0x0018aabe, 0x19075007, + 0x9abe0c07, 0x3a070018, 0x3fabf411, 0x53100c33, 0xc307104c, 0xf345d63b, + 0xc59b04ab, 0xc0a2fd05, 0x51230a0b, 0xc0220a4a, 0x0a0b5123, 0x1907c01b, + 0x70be0c07, 0xb0070018, 0x0c071907, 0x001860be, 0x0c33f411, 0xabf94110, + 0xabd0074f, 0x429b9bd4, 0x23da0b9d, 0x39ade2b1, 0x33450701, 0xb4ab104c, + 0xf401eb07, 0x0110ec53, 0xab1b07fc, 0x071fab4f, 0x10cc530e, 0x049b2107, + 0x2c9b149b, 0x41073007, 0x4c53320b, 0x0b2d0710, 0x9b292b34, 0x030302ec, + 0x010000ee, 0x4c534307, 0xeae40b10, 0xee00b32e, 0x07009c2e, 0x5e40270b, + 0xd93bfe35, 0x31204c27, 0x07492bf2, 0x07ad07cb, 0x5bc45b3b, 0x53393b24, + 0x23ab10ac, 0x0c071a07, 0xd8bef225, 0x50070017, 0x0c071a07, 0x0017c8be, + 0x6d07f421, 0xab100c33, 0x104c536f, 0x40abc507, 0xc4a2c69b, 0x51234d0b, + 0xc4224d4a, 0x4d0b5123, 0x1a07c41b, 0xa4be0c07, 0xb0070017, 0x0c071a07, + 0x001794be, 0x0c33f421, 0x074fab10, 0x9b04ab2b, 0x0b20a226, 0x4ab1230d, + 0x2320220d, 0x070d0bb1, 0x33f33145, 0xc007104c, 0x393b5b07, 0x54abc22b, + 0xed5ef335, 0x314307fd, 0x333107f2, 0x3fab104c, 0x430b263b, 0xff5542e2, + 0x01230b07, 0x14074027, 0x84077007, 0xf58ef143, 0x27184c27, 0xfd595e18, + 0x1c274827, 0xfd515e18, 0x27184c27, 0xfd915e28, 0x2c274827, 0xfc875e18, + 0x2c274827, 0xfd815e18, 0x27184c27, 0xfc775e28, 0xfec79de2, 0xb123da0b, + 0x23fec05e, 0x5e0d0b91, 0x9123fcc3, 0xad5e0d0b, 0xd00401fd, 0x13011342, + 0x44c032b0, 0xa4342049, 0x3c32c042, 0x45c61411, 0x01071127, 0x3284fe0b, + 0x42c60411, 0x010710a7, 0x0311fe0b, 0x344e1411, 0x10a73106, 0x0221f11e, + 0x42da1421, 0x31247af4, 0xca103104, 0x0442eb04, 0xa7ce3fd6, 0x27d81e10, + 0x0b010710, 0xc934c4fe, 0x04111111, 0xbb1e142b, 0x0301fb4e, 0x012f32d0, + 0x2842d014, 0x00fb34e0, 0xc42144c0, 0x32c42242, 0x1123051d, 0x21241504, + 0x31242504, 0x11243504, 0x07141103, 0x15438b02, 0x07fb8e24, 0xc0fb8e01, + 0x0c21fa32, 0xec071421, 0x0b31e42b, 0xde071331, 0xc867e0c8, 0xfa4c20ec, + 0x07008c4c, 0x11b027c4, 0xce141100, 0x0f667404, 0x30c83b2b, 0x1540277e, + 0x352c2524, 0x07213123, 0xd4412341, 0xffffff4f, 0x2321163f, 0x31231147, + 0x21354107, 0x41232325, 0xffff4fd0, 0x27ee3fff, 0xc8240543, 0x02072810, + 0xd1c8fb8e, 0x3b412752, 0x8b41234e, 0x86d02743, 0x5bd12744, 0x1e3dab3e, + 0xcce013a7, 0x1e9920ec, 0x1e3b1be2, 0x072421a6, 0x83315331, 0x0313ab11, + 0x35020741, 0x8e242521, 0x0b1b07fb, 0x25201513, 0x1e21352c, 0x5e3027b3, + 0x3013ff77, 0x24154127, 0x23352c25, 0xdfe6801e, 0x4127ff67, 0x41234e3b, + 0xce0b4b8b, 0x4486d027, 0xbe5bd127, 0x505ebdab, 0x2a44e4ff, 0x111311ff, + 0x2234ee04, 0x09f093ff, 0xfb8e006e, 0x30070001, 0x3c534007, 0x1f4c5317, + 0x14152007, 0x2e833f6b, 0xd67fffff, 0x2728c639, 0x7d3ca743, 0x42071405, + 0x47331325, 0x00004f74, 0x44474000, 0x4fd03123, 0x40000000, 0x351325f6, + 0x27fe0b14, 0x0b140542, 0xff3cc0fe, 0x23273316, 0x2fa37f3c, 0x40000000, + 0x12354327, 0x14051325, 0x2516fe0b, 0x14054427, 0x0e83fe0b, 0x46100000, + 0x05412705, 0x0b123514, 0x1e1005fe, 0x63f54ef9, 0x051f07f1, 0x071403f0, + 0xff7a7e0f, 0x4027f341, 0x22532307, 0x42abf011, 0xf231f121, 0xbe1e3c33, + 0x07000c79, 0x8ef14351, 0xa3fb4ef5, 0x03bf07f2, 0x15f005b8, 0x070f07f1, + 0xff4a7e1b, 0xcc03cf07, 0x030f0718, 0x7e1c0704, 0x0b07ff3c, 0xba7e1c07, + 0x8ef283fd, 0x310401fb, 0xd0021103, 0x44c06442, 0xf6420057, 0x27402735, + 0x3304ab00, 0x02ab1f2c, 0x0021fe0b, 0xff820fc8, 0xcc5bffff, 0x0739800c, + 0x7f4c8343, 0xc07f0c03, 0x031e404c, 0x30c83f3c, 0x53430721, 0x830f6b47, + 0x7fffff4e, 0xab170c33, 0x1f2c3304, 0xfe0b02ab, 0xe3803cd8, 0x1e403c03, + 0x033153de, 0x27db1e01, 0x000f2740, 0x1e7f8000, 0xa34307a9, 0x1000004e, + 0xffff4e83, 0x000f277f, 0x1e7f8000, 0x820f1395, 0xccffffff, 0x27531a0c, + 0x23403b41, 0x27438b41, 0x27448610, 0x07305b11, 0x0701ab03, 0x7f4c8340, + 0x3c404cc0, 0x4c034007, 0x5334073f, 0xd0012737, 0x0000004f, 0x43072040, + 0xffff4e83, 0x170c337f, 0x07ff505e, 0x404c0340, 0x37533407, 0x4fd40127, + 0x40000000, 0x1e0027e2, 0x270027de, 0xdcd81e30, 0x07e1800c, 0x27375330, + 0x000f1441, 0x27400000, 0x1e040740, 0x23fe4ec2, 0x07f005f1, 0x25f1150f, + 0x7ef335f2, 0xf103fef9, 0xfd4efe8e, 0xdf07f163, 0xf005d403, 0x0f071d07, + 0x21fe137e, 0x963027f4, 0x07312744, 0x7ef3250d, 0xf143fed5, 0xfc4efd8e, + 0xcf07f2a3, 0xf005c803, 0x0f07f115, 0xed7e1c07, 0x03df07fd, 0x0f0718dc, + 0x1d070403, 0x21fddf7e, 0x1622d0f2, 0x12f0f161, 0xf4310081, 0x43cbf371, + 0x2400f435, 0x6e1822c4, 0x7e0c0712, 0xf283fe91, 0xf093fc8e, 0x7e006bbc, + 0xf283fe85, 0x14c0fc8e, 0x3912c05d, 0xf481f241, 0x242bf351, 0xf245f191, + 0x21231342, 0x3347f245, 0x00002f27, 0x00274000, 0x2a1f4c27, 0x2b02ab31, + 0x47215331, 0x07f49833, 0x7f4c8340, 0x12404cc0, 0xae1ef055, 0x0c074427, + 0x3a7ef425, 0x8ef283fe, 0x800cdcfc, 0x033166ec, 0x0ce3400c, 0x1ef0557f, + 0x1e0d0791, 0x0740278f, 0x55f4450c, 0x4e851ef4, 0x07f3a3fc, 0x05c803cf, + 0x07f115f0, 0x7e1c070f, 0xdf07fd34, 0x0718dc03, 0x0704030f, 0xfd267e1d, + 0x4290f421, 0x32d0f361, 0xdc44e024, 0xcc34e000, 0x1642c400, 0xf471f331, + 0x340e2027, 0x0c072127, 0xd27ef235, 0x8ef383fd, 0x1632c4fc, 0xf471f331, + 0x340e2027, 0x0d072127, 0xba7ef275, 0x8ef383fd, 0x91f251fc, 0x273027f0, + 0xeef5be10, 0x41f381ff, 0x0bd107f4, 0x27420343, 0x30f4c530, 0xf471f3b5, + 0x2107f331, 0x4127342e, 0x3d07f4b5, 0xc11a20cc, 0x215330f4, 0x31384103, + 0x0fa30153, 0x80000000, 0x20c83207, 0x30f4c5ee, 0x00002fd4, 0xc1234000, + 0x091e30f4, 0x2fb40047, 0x40000000, 0x41232247, 0xa3f200cc, 0xd0004721, + 0x0000002f, 0xf4c5ef40, 0x83420730, 0x4cc07f4c, 0x0f071440, 0x0c034327, + 0x34f2c528, 0x2e7ef4a5, 0x8ef383fd, 0x802cdcfc, 0x030126ea, 0x2ce3402c, + 0xe4e01e7f, 0x93ff4f42, 0x006a47f0, 0xe4ff3d5e, 0x93ff2b32, 0x006a3bf0, + 0x4eff315e, 0x07f3a3fb, 0x05b803bf, 0x07f115f0, 0x7e1b070f, 0xcf07fc20, + 0x0718cc03, 0x0704030f, 0xfc127e1c, 0x2f07f471, 0x1c0741c3, 0x07282c03, + 0x7ef4750b, 0xce7efae4, 0x8ef383fc, 0xa3fb4efb, 0x03bf07f3, 0x15f005b8, + 0x070f07f1, 0xfbe67e1b, 0xcc03cf07, 0x030f0718, 0x7e1c0704, 0x2f07fbd8, + 0x2c031c07, 0x7e0b0728, 0x9a7efab0, 0x8ef383fc, 0x23fc4efb, 0x054327f1, + 0x08c127f4, 0x36c02700, 0x05422706, 0x150f07f4, 0xfc7b7efc, 0xfc8ef103, + 0xd007c876, 0x071e4c27, 0x35f4250d, 0x115bbefd, 0xc8012300, 0x4c27e001, + 0x2bd03b1e, 0x25fd3540, 0x40d31ef4, 0x0000000f, 0x13d00780, 0x27d61ed0, + 0x0000000f, 0x4ec61ecf, 0x07f2a3fc, 0x05c803cf, 0x07f115f0, 0x7e1c070f, + 0xdf07fb5c, 0x0718dc03, 0x0704030f, 0xfb4e7e1d, 0x42d0f421, 0x90f46110, + 0x070c0742, 0xf9c37e1d, 0xfc8ef283, 0xf91e0127, 0xf163fe4e, 0xf0051f07, + 0x0f071403, 0x11fb277e, 0x274244f4, 0x8ef14300, 0xf842d0fe, 0xf4314440, + 0x88f140c8, 0xf4211f4c, 0x0f2747c6, 0x80000000, 0xfe8ef143, 0xf321f041, + 0x5b1e4c13, 0xd63fc604, 0xf1430013, 0x0f27fe8e, 0x7fffffff, 0xfe8ef143, + 0xf2a3fe4e, 0x1f07f115, 0x1803f005, 0xd57e0f07, 0x070f07fa, 0x0304031f, + 0xc97e181c, 0x90f421fa, 0x27f46142, 0x83423000, 0x27fe8ef2, 0x8ef28301, + 0xa3fc4efe, 0x03cf07f2, 0x15f005c8, 0x070f07f1, 0xfaa27e1c, 0xdc03df07, + 0x030f0718, 0x7e1d0704, 0xf421fa94, 0x611042d0, 0x074290f4, 0x7e1d070c, + 0xf283f909, 0x0127fc8e, 0xfc4ef91e, 0xcf07f2a3, 0xf005c803, 0x0f07f115, + 0x697e1c07, 0x03df07fa, 0x0f0718dc, 0x1d070403, 0x21fa5b7e, 0x1042d0f4, + 0x4290f461, 0x1d070c07, 0x83f8d07e, 0x27fc8ef2, 0x4ef91e01, 0x07f2a3fc, + 0x05c803cf, 0x07f115f0, 0x7e1c070f, 0xdf07fa30, 0x0718dc03, 0x0704030f, + 0xfa227e1d, 0x42d0f421, 0x90f46110, 0x070c0742, 0xf8977e1d, 0xfc8ef283, + 0xf91e00a7, 0xf2a3fc4e, 0xc803cf07, 0xf115f005, 0x1c070f07, 0x07f9f77e, + 0x18dc03df, 0x04030f07, 0xe97e1d07, 0xd0f421f9, 0xf4611042, 0x0c074290, + 0x5e7e1d07, 0x8ef283f8, 0x1e00a7fc, 0xa3fc4ef9, 0x03cf07f2, 0x15f005c8, + 0x070f07f1, 0xf9be7e1c, 0xdc03df07, 0x030f0718, 0x7e1d0704, 0xf421f9b0, + 0x611042d0, 0x074290f4, 0x7e1d070c, 0xf283f825, 0x0127fc8e, 0xfd4ef91e, + 0xd007f123, 0x42270676, 0x0f07f405, 0xf4154027, 0x03fa547e, 0x27fd8ef1, + 0x1e3c2743, 0xf325f405, 0x36bef035, 0x0123000f, 0xc61c00c8, 0x4c27dd0f, + 0x3b402b1e, 0x07f425d0, 0x3540270f, 0x7ef415fd, 0xf103fa25, 0x2007fd8e, + 0x41272013, 0x4123423b, 0x30274d8b, 0xd25b4636, 0xab1e4c27, 0x35402b3d, + 0x1ef425f3, 0x1e3127a6, 0x01fd4eee, 0x1342d004, 0x32b01301, 0x205d44c0, + 0xc042a434, 0x14114832, 0x112745c6, 0xfd8e0107, 0x04113284, 0x10a742c6, + 0xfd8e0107, 0x14110311, 0x3106344e, 0xf11e10a7, 0x14210221, 0xdaf442da, + 0x0d311524, 0x10310e41, 0x1eca1141, 0x141ecee6, 0xe16ee12a, 0x3fd60d42, + 0x1e10a7c2, 0x071027cc, 0xc2fd8e01, 0x3fd6ebd0, 0xc4b01ecc, 0x1111b534, + 0x142b0411, 0xf54ea71e, 0x5027f1a3, 0x03016027, 0xf645f535, 0x7107c007, + 0x8027b207, 0x32d09027, 0xf014012f, 0xe0017d42, 0xe0024b34, 0xc4017544, + 0x32c42442, 0x0732071b, 0x01252740, 0x05440341, 0xa8340331, 0x11c311f2, + 0x8bcb0774, 0x07b41543, 0x8ef1830c, 0x4b32e0f5, 0x210e2101, 0x41fe2514, + 0x07023103, 0x05f315ae, 0x31a42bf2, 0x071e411d, 0xdfa0e83a, 0x40accc00, + 0x7c31e84c, 0x233a0701, 0xf355203c, 0x60275027, 0x01dc30e8, 0x14074127, + 0x2127133b, 0x0a3b0207, 0x40a730a7, 0x414b300b, 0x4e8b3d8b, 0x34c634ab, + 0x60275127, 0x40e8f451, 0x8e0701a4, 0x9e07845b, 0xd5079a5b, 0xd8abe607, + 0x111ee9ab, 0x43faf321, 0x10270106, 0xf4252027, 0xf215f105, 0x7411c011, + 0x00db04ee, 0x00cc0fe6, 0xf411f301, 0x2e071d07, 0x246b132b, 0x00f220e8, + 0xb4154027, 0xb135f421, 0xb245b425, 0xbd41bc31, 0x40a730a7, 0x4d4b3c0b, + 0x00004fd4, 0xe0311000, 0xffffff4f, 0x2100c00f, 0x534c07b1, 0x3d471f4c, + 0x2c4734ab, 0xb235b345, 0xbd41bc31, 0x30a71123, 0xb12540a7, 0x4d4b3c0b, + 0x00004fd0, 0x271e1000, 0xd4b40543, 0x000000df, 0xcb072c20, 0xf1830c07, + 0xa013f58e, 0x6d40acec, 0xff1f5eff, 0xffff4fc4, 0xd0b70fff, 0xffffff3f, + 0x4327b0ff, 0xdfd0b405, 0x20000000, 0x073c07d6, 0x1f0c330d, 0x31532027, + 0xbe214d07, 0x30ab1c07, 0x02074153, 0x118304ab, 0xe103cb07, 0xb04513ab, + 0x0c07f183, 0xbe25b135, 0xc707f58e, 0xf1830c07, 0xf101f58e, 0x1d2bf211, + 0x395e2e6b, 0x11f101ff, 0x0bb015f2, 0x072e4b1d, 0x07f221d2, 0x35b225c1, + 0x5ebd45bc, 0xd027ff73, 0x015ee027, 0xff3ff4ff, 0x64ffffff, 0xff395eff, + 0x3027fd21, 0x312b4027, 0x2127426b, 0xbd25b215, 0xb445b335, 0xe6ff075e, + 0x21fedb3f, 0x232a07f3, 0x3a0b202c, 0xf325f255, 0x10270027, 0x009120e8, + 0x64074127, 0x2127623b, 0x5a3b5207, 0x30a7f201, 0x350b40a7, 0x328b464b, + 0x428bf211, 0x34c634ab, 0x10270127, 0x30c8f351, 0x5bf41150, 0x11f43543, + 0x5bf431f3, 0xab23073a, 0x4521ab40, 0x15f405f3, 0xfe825ef2, 0x2b204c27, + 0x071e074a, 0x5b143b8d, 0x5e81ab8a, 0x3c27fe52, 0x2b412720, 0x5b14073a, + 0xfe205e13, 0xfdd944e4, 0x04111311, 0xfdd134ee, 0x644efc93, 0xfdc95e00, + 0x11204c27, 0x2bf301f2, 0x5b243b4a, 0x0742073a, 0x3524ab23, 0x27a11ef2, + 0x4127203c, 0x64073a2b, 0x6b5e635b, 0x11f84eff, 0x0709010a, 0x533a07ba, + 0x3c531fbc, 0x07b18314, 0x15ea0703, 0xff0d831b, 0x07c02707, 0x83d90781, + 0x0fffffee, 0x49070e16, 0x45164eab, 0x14054227, 0x4327f88e, 0x03fd3da7, + 0x13251405, 0x1e074907, 0x33184c53, 0xab090718, 0xd4083314, 0x0000001f, + 0xe3071d10, 0x41472007, 0xab1f2c53, 0x07304742, 0x23140703, 0x004fd0e1, + 0xe9100000, 0x80358e25, 0xf88e8145, 0x07ff0dc0, 0x07290728, 0x182c534e, + 0x42ab4833, 0x2fa32407, 0x10000000, 0x38333907, 0x03ff0d23, 0x23271245, + 0x12051025, 0xf88e1335, 0x4eab4907, 0x44274516, 0xf88e1405, 0x30274e07, + 0x00004e83, 0x8634ab08, 0x05412735, 0x458d3514, 0x05f88e8e, 0x4ef71e13, + 0x07f1e3f5, 0x071f0751, 0x07180340, 0x15f4050f, 0xff237ef5, 0xf461f351, + 0x1f831307, 0x3fffffff, 0x04872027, 0xab1e3c53, 0x8630ab12, 0x2131a314, + 0x41f131f0, 0xf6d7bef2, 0x8ef1c3ff, 0xa3f54ef5, 0x03af07f3, 0xc10710ac, + 0x1a07b007, 0xf3350f07, 0x5307f225, 0xfb05fc15, 0xda7ecf07, 0x24cc03fe, + 0x08030f07, 0xce7e1c07, 0x070a07fe, 0xfbab7e1c, 0xf58ef383, 0x0401f64e, + 0xa0279027, 0x0e410d31, 0x42f00811, 0x44e000c9, 0x424000ba, 0x4eab4d07, + 0x002747f6, 0x38071027, 0x43073183, 0x271f4c33, 0x07b00730, 0xabb3abc1, + 0x070b07c4, 0x21f68e1c, 0x020fe800, 0xb1fffffc, 0x000dec00, 0x07008504, + 0x273f6b3d, 0xff0d0340, 0x803cc003, 0x7f3c2756, 0xd30b4027, 0xefd0e44b, + 0x20000000, 0x072e0716, 0x334e073d, 0x31531f2c, 0x415332ab, 0xe407d307, + 0x20070103, 0x0d074e07, 0x2d831e07, 0x185307ff, 0x4c333207, 0xab085318, + 0x33e10704, 0x2027143c, 0xee83d007, 0x070fffff, 0xab130702, 0x5e1eab0d, + 0x4fd6ff76, 0x833d07a9, 0xab01003d, 0xa73fc634, 0x27803c27, 0x4bd30b40, + 0x00efd0e4, 0xb3200000, 0x00279c1e, 0x00001f27, 0x4b5e7ff0, 0xa34e07ff, + 0x0800004e, 0xee83e407, 0x070fffff, 0xa30d071e, 0xf000001f, 0xff305e7f, + 0xfc020f13, 0x0cecffff, 0x0700ba39, 0x201c2310, 0x70276027, 0x00b510e8, + 0xc4074127, 0x2127c13b, 0xb03bb207, 0x40a730a7, 0x4c4b3b0b, 0x4e8b3d8b, + 0x34c634ab, 0x70276127, 0x009f10e8, 0x915b9e07, 0xd9abd607, 0x3d07ae07, + 0xe707a05b, 0xeaab3f6b, 0x3cc04027, 0x3c274480, 0x0b40277f, 0x074e4b3d, + 0x182c3324, 0x4f14c127, 0x10000000, 0x0307c027, 0x14070853, 0x185302ab, + 0x3d833c07, 0x430707ff, 0x4c33e107, 0x07302714, 0xffee83d0, 0x03070fff, + 0x0dab1407, 0x975e1eab, 0xbb4fd6fe, 0x3d833d07, 0x40270100, 0x3cb634ab, + 0x4c334e07, 0x14c12718, 0x000000ef, 0x07c02710, 0x0708530d, 0x5304ab1e, + 0x27b61e18, 0x270027c0, 0x27ae1e10, 0x4127203c, 0xc407302b, 0x475ec35b, + 0x204c27ff, 0x3e07402b, 0x343b9d07, 0x93ab905b, 0x27ff575e, 0x6a5e803c, + 0x63f54eff, 0x07f005f1, 0x25f1150f, 0x45f335f2, 0xfe0a7ef4, 0xf1435107, + 0xf54ef58e, 0xdf07f1e3, 0x4007d803, 0x0f075107, 0xf4051d07, 0xae7ef515, + 0x27f431fc, 0x27449630, 0x350d0731, 0xfdde7ef3, 0xf1c35107, 0xf54ef58e, + 0xc107f3e3, 0xb0071f07, 0x07101c03, 0x35f2250f, 0x05fc15f3, 0xfc7f7efb, + 0xdc03df07, 0x030f0724, 0x7e1d0708, 0xf241fc71, 0x911622d0, 0x0912f0f1, + 0xa1f45101, 0x5543cbf3, 0xc42400f4, 0x12ae1f22, 0x0c030f07, 0xfd8e7e10, + 0xf3c35107, 0xf093f58e, 0x7e006068, 0x5107fd80, 0xf58ef3c3, 0x00df14e0, + 0x617f12c0, 0x81f4b1f1, 0xc1142bfc, 0xf16534f8, 0xf7c1fb71, 0x84c8ea30, + 0x7d8cce00, 0x273d4c27, 0x00af2790, 0x27100000, 0xc5602750, 0xd50738f4, + 0x4a07e607, 0xeaabd9ab, 0x8a1f4c33, 0x548ccec8, 0x6e075d07, 0xc86bb72b, + 0x21532907, 0x4b0724ab, 0x471f4c53, 0xc114ab1c, 0x3a0738f4, 0x31534123, + 0xf4c50b47, 0x07920738, 0x07b007a3, 0xbf4fd6c1, 0x3f6b3507, 0x3cc04027, + 0xf5753880, 0x615ef685, 0x270f07ff, 0x100c0344, 0xe97ef445, 0xc35107fc, + 0xcaf58ef3, 0xa91eb3b7, 0x07827bc2, 0x534c472b, 0x42ab1f2c, 0x11233b47, + 0xc407b307, 0x6d5ef165, 0xc74fd6ff, 0x3d833507, 0x34ab0100, 0x07bc3fd6, + 0xc641ab40, 0x3c27b54f, 0x0b402780, 0x07464b35, 0xff5ce353, 0xa31e6407, + 0x0a5e0d07, 0x270f07ff, 0x27402730, 0x100c0320, 0xf485f375, 0xf65ef265, + 0xe3f54efe, 0x03af07f5, 0xb00710ac, 0x0f07c107, 0xf3351a07, 0xfc15f225, + 0x2a7efb05, 0x03df07fb, 0x0f0724dc, 0x1d070803, 0x41fb1c7e, 0x914290f4, + 0x2632d0f3, 0x01f344e0, 0x01e334e0, 0x511842c4, 0x27f4a1f3, 0x27340e20, + 0x550a0721, 0xfc367ef2, 0xf5c35107, 0x32c4f58e, 0xa1f35118, 0x0e2027f4, + 0x07212734, 0x7ef2a50d, 0x5107fc1c, 0xf58ef5c3, 0x7130fbc1, 0x27a027f7, + 0xc12b0760, 0x360734fc, 0x07071a07, 0xffe2eabe, 0x30275b07, 0xfbc5bc07, + 0x50f3c54c, 0xc554f0c5, 0xf0c158f1, 0x50f1c14c, 0xf8813a07, 0xc8be2707, + 0xc027ffe2, 0xa1079007, 0x36072507, 0x1c070807, 0xffe2b6be, 0xe107d007, + 0xea4bd90b, 0xeaeab807, 0xaeee00fd, 0x102700f5, 0xc154f3c1, 0x910758f4, + 0x930bad07, 0x7027a44b, 0xa4ea8027, 0xf4c100f9, 0x2c4aee58, 0x50f3c101, + 0x074cf2c1, 0x071c070b, 0xe275bebe, 0x61f3b1ff, 0x0bc027f4, 0x27440343, + 0x40f4c530, 0xa13cf3c5, 0x0bf351f4, 0x0bc14bb0, 0x2ec84bb7, 0xc5412734, + 0xcfd03cf4, 0x20000000, 0x40fec13f, 0x1b074c07, 0x531f4c33, 0x072c0711, + 0x5314ab0a, 0x1f0c3321, 0xb1d8e103, 0x07390715, 0x5331534a, 0x0730ab41, + 0xa39307a4, 0x000000af, 0x07b10780, 0x002fd4c2, 0xc9200000, 0xd440fec5, + 0x000000cf, 0xfec13110, 0x53490740, 0x2b071f4c, 0x14ab1a47, 0x471f2c53, + 0x4742ab4c, 0x0709473b, 0x23c407b3, 0x59a0c8e1, 0xa1079007, 0x0000cfd0, + 0xc5d71000, 0x3b0740fe, 0x40273f6b, 0x49803cc0, 0x43270f07, 0xc5380c03, + 0xfcc544fb, 0x38f4c548, 0x07facb7e, 0x8ef5c351, 0x0b9de2f5, 0xc11027ff, + 0xf4c154f3, 0x07910758, 0x4b930bad, 0x277027a4, 0x0b4ae281, 0x273127ff, + 0x4b730b40, 0xff075e84, 0xb30731a3, 0xa11ec407, 0x07b64fd6, 0x003d833b, + 0xd634ab01, 0x4907ab3f, 0x4fc64aab, 0x803c27a4, 0x3b0b4027, 0xb3074c4b, + 0x07ffbce3, 0xe2921ec4, 0x1efed439, 0x3a42e4c1, 0x45f093fe, 0x265e005d, + 0x1432e4fe, 0x39f093fe, 0x1a5e005d, 0xe3f54efe, 0x03af07f4, 0xc10710ac, + 0x1a07b007, 0xf3350f07, 0xfc15f225, 0xcf07fb05, 0x03f8f47e, 0x0f0724cc, + 0x1c070803, 0xa1f8e87e, 0xc32f07f4, 0x031c0741, 0x0a07382c, 0x2f7ef4a5, + 0xfa127ef6, 0xf4c35107, 0xf54ef58e, 0xaf07f4e3, 0x0710ac03, 0x07b007c1, + 0x350f071a, 0x15f225f3, 0x07fb05fc, 0xf8af7ecf, 0x0724cc03, 0x0708030f, + 0xf8a37e1c, 0x1c072f07, 0x07382c03, 0xf5f07e0a, 0x07f9d37e, 0x8ef4c351, + 0x63fb4ef5, 0x054327f1, 0x08b127f4, 0x36b02700, 0x05422707, 0x150f07f4, + 0xf9b27efb, 0x41073007, 0x14070307, 0xfb8ef143, 0x4007bb36, 0xd0270407, + 0x4c27c407, 0x35f4253c, 0xbefd45f0, 0x07000425, 0x1d1c0310, 0x23cf11c8, + 0x2300c803, 0x403b4c07, 0x4c07f445, 0x3b3c3c27, 0x35312b41, 0x1ef325f4, + 0x000fc0b5, 0x1a800000, 0x40134007, 0x4c27bf1e, 0x07412b20, 0x5b3d072c, + 0xab313b24, 0x1ef34532, 0x273027d2, 0xe000004f, 0x4e961ec1, 0x07f3a3f5, + 0x10dc03df, 0x51074007, 0x1d070f07, 0xc307f405, 0xf225f335, 0xbf07f515, + 0x03f7e47e, 0x0f0724bc, 0x1b070803, 0x41f7d87e, 0x1042d0f4, 0x4290f491, + 0x1b070d07, 0x83f4ac7e, 0x27f58ef3, 0x4ef91e01, 0x07f1e3f5, 0x071f0751, + 0x07180340, 0x15f4050f, 0xf7ab7ef5, 0x4244f421, 0xf1c30027, 0x42d0f58e, + 0x414440f8, 0xf140c8f4, 0x311f4c88, 0x274946f4, 0x0000000f, 0x8ef1c380, + 0x3cec27f5, 0x4e07e42b, 0xc8204c23, 0xf2611c40, 0x045b0207, 0x4fc6f431, + 0xc30013ca, 0x27f58ef1, 0xffffff0f, 0x8ef1c37f, 0x27f261f5, 0x4e2b204c, + 0x343b3207, 0xf3514307, 0x0e5b0307, 0xd51e04ab, 0xf3a3f54e, 0x1f075107, + 0x1c034007, 0x050f0710, 0x07b207f4, 0x25f335c3, 0x7ef515f2, 0x0f07f729, + 0x08031f07, 0x7e241c03, 0xf441f71d, 0xf4914290, 0x42300027, 0xf58ef383, + 0xf3830127, 0xf54ef58e, 0xdf07f3a3, 0x0710dc03, 0x07510740, 0x051d070f, + 0x35c307f4, 0x15f225f3, 0x7ebf07f5, 0xbc03f6e9, 0x030f0724, 0x7e1b0708, + 0xf441f6dd, 0x911042d0, 0x074290f4, 0x7e1b070d, 0xf383f3b1, 0x0127f58e, + 0xf54ef91e, 0xdf07f3a3, 0x0710dc03, 0x07510740, 0x051d070f, 0x35c307f4, + 0x15f225f3, 0x7ebf07f5, 0xbc03f6a5, 0x030f0724, 0x7e1b0708, 0xf441f699, + 0x911042d0, 0x074290f4, 0x7e1b070d, 0xf383f36d, 0x0127f58e, 0xf54ef91e, + 0xdf07f3a3, 0x0710dc03, 0x07510740, 0x051d070f, 0x35c307f4, 0x15f225f3, + 0x7ebf07f5, 0xbc03f661, 0x030f0724, 0x7e1b0708, 0xf441f655, 0x911042d0, + 0x074290f4, 0x7e1b070d, 0xf383f329, 0x00a7f58e, 0xf54ef91e, 0xdf07f3a3, + 0x0710dc03, 0x07510740, 0x051d070f, 0x35c307f4, 0x15f225f3, 0x7ebf07f5, + 0xbc03f61d, 0x030f0724, 0x7e1b0708, 0xf441f611, 0x911042d0, 0x074290f4, + 0x7e1b070d, 0xf383f2e5, 0x00a7f58e, 0xf54ef91e, 0xdf07f3a3, 0x0710dc03, + 0x07510740, 0x051d070f, 0x35c307f4, 0x15f225f3, 0x7ebf07f5, 0xbc03f5d9, + 0x030f0724, 0x7e1b0708, 0xf441f5cd, 0x911042d0, 0x074290f4, 0x7e1b070d, + 0xf383f2a1, 0x0127f58e, 0xf54ef91e, 0xa027f163, 0x8027b027, 0x06b69027, + 0xf4054227, 0x40270f07, 0xd97ef415, 0x435107f6, 0x27f58ef1, 0x274327d0, + 0xc0073c3c, 0xf325f405, 0xfd45f035, 0x000154be, 0x1c031007, 0x2c10c81d, + 0x23d21fc6, 0x8200e803, 0x3b4c0700, 0x07f44540, 0x27413b4c, 0xf4353c3c, + 0x0f07312b, 0xf3254027, 0x917ef415, 0x435107f6, 0x07f58ef1, 0x07e013e1, + 0x200c230e, 0x70276027, 0x274200c8, 0x3bb40741, 0x072127b0, 0xa7ae3ba2, + 0x0b40a730, 0x8b4b4b3a, 0xab4d8b3c, 0x2734c634, 0xc8702761, 0x8d074000, + 0x9d07805b, 0x47079e5b, 0x073c2c27, 0x2b49ab36, 0x3538ab21, 0x25f445f3, + 0xff5a5ef2, 0x27203c27, 0x073e2b41, 0x1eb35bb4, 0x204c27b9, 0x2c07412b, + 0x245b3d07, 0x32ab313b, 0x745ef345, 0x204c27ff, 0x3d074e2b, 0x343b8c07, + 0x83ab8e5b, 0xfe4eb51e, 0x100c0088, 0x21271013, 0x4e9efe0e, 0x00130000, + 0x21271068, 0x000044be, 0xfe8e0013, 0xf31e1013, 0x00c8fd4e, 0xc8d02712, + 0x20271410, 0x00002cbe, 0x0013d486, 0x0013fd8e, 0x10ccd127, 0x271013ee, + 0x07d4d641, 0x27e41ed4, 0x1ed40740, 0x9e2127de, 0x27000009, 0x00039e20, + 0xc2fe4e00, 0x10c83601, 0x27412733, 0x1147203c, 0x01c24447, 0x07f3f021, + 0x26e63027, 0x10ccfe8e, 0x2a3027ee, 0xab012b01, 0x53415334, 0xb642d611, + 0x8e030721, 0x274066fe, 0x27e91e30, 0x1e302741, 0x000ed4e3, 0xd4170100, + 0x3a01000d, 0x035b3027, 0xb76c00f9, 0x4c270001, 0x0b041b20, 0x000fb0fe, + 0x27010000, 0x035b183c, 0xb76c00f9, 0x48270001, 0xfe0b041b, 0x07104c27, + 0xf9035b34, 0x01b76c00, 0x0b041b00, 0x5b3827fe, 0x6c00f903, 0x270001b7, + 0x041b184c, 0x1ea7fe0b, 0x01fd4fff, 0x122f9b14, 0x44334103, 0xab3813c1, + 0x27322e24, 0xabfe0b00, 0x3812c5f3, 0xce3814c1, 0xf3ebf842, 0xfe0b0127, + 0xd33efe4e, 0x0c270576, 0x9efe0e20, 0x8e000005, 0x07fb4efe, 0xb4adbeb0, + 0x07d007fe, 0xc5f09310, 0xbebe0058, 0xd746ffcb, 0x0b1ec027, 0xc103d201, + 0xffcbb0be, 0x1c07d403, 0x58b7f093, 0xedcbda00, 0x0000fb8e, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x0001cc2e, 0x000051ba, 0x000051ba, 0x000051ba, 0x42746e49, 0x0a3a6675, + 0x6c202000, 0x5f32676f, 0x65676170, 0x7a69735f, 0x20202065, 0x5f6d756e, + 0x65676170, 0x66282073, 0x29656572, 0x2020000a, 0x30252020, 0x20206432, + 0x20202020, 0x20202020, 0x35252020, 0x28202064, 0x62206425, 0x73657479, + 0x55000a29, 0x6f6c626e, 0x6e696b63, 0x65722067, 0x657a6973, 0x25203a73, + 0x54000a64, 0x6c61746f, 0x6c6c6120, 0x7461636f, 0x25206465, 0x28206438, + 0x64657375, 0x2c642520, 0x666e7520, 0x61656572, 0x20656c62, 0x202c6425, + 0x65657266, 0x29642520, 0x2a2a000a, 0x52202a2a, 0x25435341, 0x42412064, + 0x2054524f, 0x2a2a2a2a, 0x2020000a, 0x20204350, 0x203d2020, 0x30257830, + 0x000a7838, 0x52532020, 0x20202020, 0x7830203d, 0x78383025, 0x2020000a, + 0x20524146, 0x203d2020, 0x30257830, 0x000a7838, 0x5b522020, 0x5d643225, + 0x30203d20, 0x38302578, 0x00000a78, 0x4649424d, 0x34363248, 0x00010001, + 0x3602f114, 0xf1144a03, 0x4a033602, 0x68e97fe4, 0x36ff35fa, 0x21173307, + 0x00150217, 0x31000901, 0x390576db, 0x41f54ef3, 0x310c3e01, 0x321149fc, + 0x2b094012, 0x431a001d, 0x68095a10, 0x68ec7fd2, 0x4ef34301, 0x3e0141f5, + 0x5fef56fa, 0x2d093dfa, 0x51fa45fd, 0x370660f5, 0x56fb4307, 0x3a005802, + 0x5ef64cfd, 0x45043605, 0x580051fd, 0x4afb43f9, 0x50fb4afc, 0x3a0148f9, + 0x3f002900, 0x3f003f00, 0x560453f7, 0x48f96100, 0x3e03290d, 0x4efc2d00, + 0x7ee560fd, 0x65e762e4, 0x52e443e9, 0x53f05eec, 0x5beb6eea, 0x5df366ee, + 0x280c7fe3, 0x3b0e330b, 0x2cfe4cfa, 0x34002d00, 0x3bfe40fd, 0x4bfc46fc, + 0x18034df7, 0x30002a00, 0x3bfa3700, 0x53f447f9, 0x1dfd3a01, 0x260124ff, + 0x37fa2b02, 0x40003a00, 0x1dfc4600, 0x2a071f05, 0x3afe3b01, 0x51fd48fd, + 0x05083a00, 0x120e0e0a, 0x28021b0d, 0x46fd3a00, 0x23f942fa, 0x2df82af9, + 0x38f430fb, 0x3efb3cfa, 0x66ef52f8, 0x77e257f5, 0x5af64afd, 0xf11461f5, + 0x55f84ffa, 0x4cf842f8, 0xf114f114, 0xf114f114, 0x59fb5cf9, 0x6cf360f9, + 0x1c0b55fe, 0x28024efa, 0x2c034bff, 0x31004df9, 0x2e003602, 0x2c023205, + 0x330244fd, 0x2f003201, 0x27042a06, 0x3e0251fc, 0x2e063f01, 0x360046fc, + 0x36034300, 0x3a023902, 0x3f044cfe, 0xf114f114, 0xf114f114, 0xf114f114, + 0x41ff2efd, 0x5df739ff, 0x3306230b, 0x39064004, 0x35073d01, 0x3406230b, + 0x37061912, 0x2d0b180c, 0x240e1d0d, 0x3508240d, 0x52ff5df6, 0x370749f9, + 0x4efd49fe, 0x2e0f2e0d, 0x1f163109, 0x54ff64f9, 0x5cf74afd, 0x7ee957f8, + 0x07193509, 0xf91e3502, 0x031c3505, 0x041c3dfe, 0x00203800, 0xff223800, + 0x061e3ff3, 0x061e3cfb, 0x09203eff, 0x131f3904, 0x1b1a45fa, 0x1e1a3904, + 0x1425270e, 0x221c3304, 0x4611440d, 0xf114f114, 0xf114f114, 0xf114f114, + 0x3c063605, 0x45063b06, 0x43014003, 0x3b053d01, 0x43093f09, 0xf114f114, + 0xf114f114, 0xf114f114, 0x440030ff, 0x58f845fc, 0x1e103207, 0x20122710, + 0x23122c05, 0x1d163404, 0x1f18300b, 0x26173cfb, 0x2b123bff, 0x29143b00, + 0x3f0b2116, 0x3b092c05, 0x40092b0e, 0x5eff4eff, 0x59fe3c00, 0x6cf74509, + 0x47f94ffc, 0x46f745fb, 0x44f642f8, 0x45f449ed, 0x43f146f0, 0x46ed3eec, + 0x41ea42f0, 0xf1143fec, 0xf71afe09, 0xf927f721, 0x032dfe29, 0x1b2d0931, + 0xf1143b24, 0xf114f114, 0xf114f114, 0xf114f114, 0x0b0e6af3, 0x0e0b6af0, + 0x0b0957f6, 0x0b1272eb, 0x09156eee, 0xfe1762f2, 0xf1206eea, 0xf1206aeb, + 0xeb2267ee, 0xe9276beb, 0xdf2a6ce9, 0xe12970e6, 0xe42e60f6, 0xf4265ff4, + 0x1d155bfb, 0xf114f114, 0xe82d5df7, 0xd3355eea, 0xe63056fb, 0xd5414309, + 0xed2b50fc, 0xf62755f6, 0x091e46ff, 0x1a123c07, 0x1b143a09, 0x39003d05, + 0x52f2320c, 0x4bfb320f, 0x61ed3112, 0x7ddd3611, 0xf114f114, 0xf114f114, + 0x001b290a, 0x001c2e07, 0xfc1f33ff, 0x061b3107, 0x08223408, 0x0a1e2909, + 0x16182f06, 0x13213702, 0x2016290d, 0x1f1a2c0a, 0x29153206, 0x2c1a3505, + 0x2f17310d, 0x41103f04, 0x470e4006, 0xf114f114, 0x3c0845fe, 0x3f063bfe, + 0x41114606, 0xf114f114, 0x18152c0a, 0x14171f09, 0x171a2b0c, 0x201b3503, + 0x171c220e, 0x181c260a, 0x281734fd, 0x2018280d, 0x1d1c2011, 0x2a172c07, + 0x39132607, 0x3516320d, 0x3d16390a, 0x560b2b1a, 0xf114f114, 0xf114f114, + 0x51fa55fb, 0x51f94df6, 0x49ee50ef, 0x53f64afc, 0x43f747f7, 0x42f83dff, + 0x3b0042f2, 0xf1143b02, 0xf221f315, 0xfe2ef927, 0x063c0233, 0x2237113d, + 0xf1143e2a, 0xf114f114, 0xf114f114, 0xf1140000, 0x3602f114, 0xf1144a03, + 0x4a033602, 0x68e97fe4, 0x36ff35fa, 0x19163307, 0x00100022, 0x290409fe, + 0x410276e3, 0x4ff347fa, 0x32093405, 0x360a46fd, 0x1613221a, 0x02390028, + 0x451a2429, 0x65f17fd3, 0x47fa4cfc, 0x34054ff3, 0x5af34506, 0x2b083400, + 0x52fb45fe, 0x3b0260f6, 0x57fd4b02, 0x380164fd, 0x55fa4afd, 0x51fd3b00, + 0x5ffb56f9, 0x4dff42ff, 0x56fe4601, 0x3d0048fb, 0x3f002900, 0x3f003f00, + 0x560453f7, 0x48f96100, 0x3e03290d, 0x33070f0d, 0x7fd95002, 0x60ef5bee, + 0x62dd51e6, 0x61e966e8, 0x63e877e5, 0x66ee6eeb, 0x20197fdc, 0x36153115, + 0x47f170e9, 0x35003df9, 0x4df542fb, 0x54f750f7, 0x27fd65eb, 0x3df935fb, + 0x4df14bf5, 0x6be75bef, 0x2cf64cf5, 0x39f634f6, 0x48f03af7, 0x45fc45f9, + 0x22f74202, 0x1f0b2001, 0x37fe3405, 0x490043fe, 0x04073403, 0x0811080a, + 0x25031310, 0x49fb3dff, 0x180047fb, 0x2afe24ff, 0x39f734fe, 0x41fc3ffa, + 0x7fde57f6, 0x7ae46fe7, 0x56f74afb, 0xf11459f8, 0x4efc46ff, 0x52f943fc, + 0xf114f114, 0xf114f114, 0x59fb5000, 0x5cfc5ef9, 0x2d0467f3, 0x1c0a5bf3, + 0x1f0a59f7, 0xf5215cf2, 0xd5344cf8, 0x0f1257f4, 0x001c6ee9, 0xea2369e8, + 0xe7264ef6, 0x002270ec, 0xee2763ef, 0xf4207fb2, 0xa2667fba, 0x00007fce, + 0xf1387fd2, 0xf114f114, 0xf114f114, 0xf114f114, 0x41002700, 0x7fdd54f1, + 0xfc2142fc, 0x0a1d4efb, 0xfb2547fc, 0xe33348f8, 0xf7273b02, 0xde3437ff, + 0xc64546f9, 0xc1434bfa, 0xfb2c59f8, 0x072077de, 0xe3374bfd, 0x01201420, + 0x0000161e, 0x241b7fd4, 0x68f449fe, 0x7fe15bf7, 0xe7213600, 0xe2223dfb, + 0xe4243a00, 0xe4263cff, 0xe5263dfd, 0xee2243f8, 0xf02354e7, 0xf2224af2, + 0xf82041fb, 0xfa253405, 0x00233902, 0x0a1e3d00, 0x121c45f7, 0x191a46f5, + 0x291d3712, 0xf114f114, 0xf114f114, 0xf114f114, 0x38073703, 0x3d083707, + 0x4b0047fc, 0x48023a00, 0x4d083d07, 0xf114f114, 0xf114f114, 0xf114f114, + 0x440035fd, 0x58f74af9, 0x230e2909, 0x1f121912, 0x23112009, 0x1e152b05, + 0x2d112f09, 0x2a142c00, 0x2d123300, 0x1a1b2e02, 0x36102613, 0x420742fc, + 0x3810260f, 0x490b2a0c, 0x430a2209, 0x74f65900, 0x51fa55fb, 0x51f94df6, + 0x49ee50ef, 0x53f64afc, 0x43f747f7, 0x42f83dff, 0x3b0042f2, 0xf1143b02, + 0xf320f611, 0xfb31f72a, 0x03400035, 0x1b420a44, 0xf114392f, 0xf114f114, + 0xf114f114, 0xf114f114, 0xfa137eeb, 0xfa127ce9, 0x000e6eec, 0xf41a7ee6, + 0xf01f7ce7, 0xe72169ef, 0xea2179e5, 0xe42575e5, 0xe22766ef, 0xe22a75e6, + 0xd62f74e5, 0xdc2d7adf, 0xde315ff6, 0xef2964f2, 0x09205ff8, 0xf114f114, + 0xb9456fef, 0xc13f72e4, 0xc04259fa, 0xb64d50fe, 0xd93652fc, 0xdd3455f7, + 0xf62951f8, 0x002448ff, 0xff284005, 0x0e1e4301, 0x1a1c3809, 0x25174500, + 0x370c4501, 0x410b4507, 0xf114f114, 0xf114f114, 0xdf2545f9, 0xdc2743fa, + 0xdb284df0, 0xe22640fe, 0xdf2e3d02, 0xe22a43fa, 0xe82840fd, 0xe3313902, + 0xf42641fd, 0xf62842fd, 0xfd263e00, 0xfb2e3309, 0x141f42ff, 0x1e1d47fe, + 0x2c194bfe, 0xf114f114, 0x300c46ff, 0x310b48f7, 0x2d1a3c0e, 0xf114f114, + 0x16162510, 0x16172f00, 0x151b2312, 0x1421250b, 0x1c1a290c, 0x181e290a, + 0x221b3002, 0x2a12290c, 0x2719290d, 0x32123b00, 0x460c3203, 0x36152813, + 0x470e4203, 0x530b3212, 0xf114f114, 0xf114f114, 0x4cfd51fd, 0x4efa48f9, + 0x44f248f4, 0x4cfa46fd, 0x3efb42fb, 0x3dfc3900, 0x36013cf7, 0xf1143a02, + 0xf320f611, 0xfb31f72a, 0x03400035, 0x1b420a44, 0xf114392f, 0xf114f114, + 0xf114f114, 0xf1140000, 0x3602f114, 0xf1144a03, 0x4a033602, 0x68e97fe4, + 0x36ff35fa, 0x101d3307, 0x000e0019, 0x3efd33f6, 0x101a63e5, 0x66e855fc, + 0x39063905, 0x390e49ef, 0x0a142814, 0x0036001d, 0x610c2a25, 0x75ea7fe0, + 0x55fc4afe, 0x390566e8, 0x58f25dfa, 0x37042cfa, 0x67f159f5, 0x391374eb, + 0x54043a14, 0x3f016006, 0x6af355fb, 0x4b063f05, 0x65ff5afd, 0x4ffc3703, + 0x61f44bfe, 0x3c0132f9, 0x3f002900, 0x3f003f00, 0x560453f7, 0x48f96100, + 0x3e03290d, 0x58f72207, 0x7fdc7fec, 0x5ff25bef, 0x56e754e7, 0x5bef59f4, + 0x4cf27fe1, 0x5af367ee, 0x21157fdb, 0x3d113213, 0x52ea73e8, 0x35003ef7, + 0x55f23b00, 0x5ef359f3, 0x39f264eb, 0x47f543f4, 0x55eb4df6, 0x68e958f0, + 0x30f852f6, 0x42f83df8, 0x4bf246f9, 0x53f74ff6, 0x45ea4ffc, 0x3afe4bf0, + 0x4ef33a01, 0x51fc53f7, 0x26fa51f3, 0x3afa3ef3, 0x49f03bfe, 0x56f34cf6, + 0x25f947f7, 0x31f52cf8, 0x3bf438f6, 0x43f73ff8, 0x7fe35cf5, 0x7fdb62f1, + 0x6cee5cf4, 0xf11463f3, 0x57f653f7, 0x4ff644fa, 0xf114f114, 0xf114f114, + 0x4c05500b, 0x4e055402, 0x270456fc, 0x2a0058f4, 0x220752fb, 0x1d0b48fd, + 0x1f0843fc, 0x250648f8, 0x2a0759f0, 0x280345f7, 0x21083bff, 0x2b0d4205, + 0x240d3904, 0x2f0447fc, 0x370347fe, 0x3a023a02, 0x3c064aff, 0xf114f114, + 0xf114f114, 0xf114f114, 0x3d0437fa, 0x7fdb53f2, 0x2c082cfc, 0x2c0b45ff, + 0x2a0e3e00, 0x300733f9, 0x38042ffc, 0x34042afa, 0x250d29fd, 0x310935fa, + 0x3a134c08, 0x300a4ef7, 0x2d0c53f5, 0x45003409, 0x21144300, 0x3f085afb, + 0x68f54ffb, 0x7fe25bf5, 0xee234301, 0xe72148f1, 0xfd1c4bfb, 0x0a1850f8, + 0x001b53eb, 0xf22240eb, 0xd4341ff3, 0xe82740e7, 0x11135ee3, 0x191f4b09, + 0x1d243f11, 0x21184af8, 0x0f2223fb, 0x141e1bfe, 0x49165b0d, 0xf114f114, + 0xf114f114, 0xf114f114, 0x4ffe4100, 0x5cfc4800, 0x22144103, 0x1f1345f9, + 0x2c1b4d08, 0xf114f114, 0xf114f114, 0xf114f114, 0x440338fa, 0x62f347f8, + 0x101342f6, 0x240f3e03, 0x240f44fd, 0x1c1551ec, 0x15191e00, 0x141e0701, + 0x0c1f17fd, 0x101b4aeb, 0x2a184210, 0x5d007ce9, 0x380e2511, 0x390fee2c, + 0x261ade32, 0x7fe87fea, 0x4af84efd, 0x48f648f7, 0x47f44bee, 0x46fb3ff5, + 0x48f24bef, 0x35f843f0, 0x34f73bf2, 0xf11444f5, 0xf61efe09, 0xff21fc1f, + 0x0c1f0721, 0x261f1725, 0xf1144014, 0xf114f114, 0xf114f114, 0xf114f114, + 0xf3117fea, 0xf7107fe7, 0xf41178e7, 0xeb1b7fe5, 0xe22572ed, 0xd82975e9, + 0xd72a76e7, 0xd13075e6, 0xe02771e8, 0xd82e76e4, 0xcd3478e1, 0xd72e7cdb, + 0xd9345ef6, 0xed2b66f1, 0x0b2063f6, 0xf114f114, 0xc93d6af3, 0xd2387fce, + 0xce3e5cfb, 0xbd513911, 0xec2d56fb, 0xfe235ef3, 0x0f1c5bf4, 0x01224dfe, + 0x01274700, 0x111e49ff, 0x26144004, 0x2d1251f9, 0x360f4005, 0x4f00390f, + 0xf114f114, 0xf114f114, 0xf0244301, 0xf2254400, 0xef2543f6, 0x01204401, + 0x0f224d00, 0x0f1d4002, 0x19184400, 0x16224efb, 0x101f3707, 0x12233b05, + 0x1c1f4102, 0x2921360e, 0x1c242c0f, 0x2f1b3c05, 0x3e154602, 0xf114f114, + 0x1f124cfe, 0x1a1356ee, 0x1824460c, 0xf114f114, 0x17184005, 0x101b46f4, + 0x1e18370b, 0x1d1f3805, 0x29164500, 0x2a164102, 0x3c104afa, 0x340f3605, + 0x3c0e3607, 0x4e034cfa, 0x7bf052f5, 0x35154dfe, 0x38164dfe, 0x3d192a19, + 0xf114f114, 0xf114f114, 0x4af84efd, 0x48f648f7, 0x47f44bee, 0x46fb3ff5, + 0x48f24bef, 0x35f843f0, 0x34f73bf2, 0xf11444f5, 0xf61efe09, 0xff21fc1f, + 0x0c1f0721, 0x261f1725, 0xf1144014, 0xf114f114, 0xf114f114, 0xf1140000, + 0x3602f114, 0xf1144a03, 0x4a033602, 0x68e97fe4, 0x36ff35fa, 0x00003307, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x3f002900, 0x3f003f00, 0x560453f7, 0x48f96100, 0x3e03290d, 0x37010b00, + 0x7fef4500, 0x520066f3, 0x6beb4af9, 0x7fe17fe5, 0x5fee7fe8, 0x72eb7fe5, + 0x151f7fe2, 0x32191f1f, 0x2afa47fd, 0x36fd32fb, 0x3a003efe, 0x48fe3f01, + 0x1bfb43fb, 0x2cfe27fd, 0x40f02e00, 0x4ef644f8, 0x37f15cf4, 0x3efa3cf6, + 0x49f441fc, 0x50f94cf8, 0x54ec61f5, 0x49fa4ff5, 0x56f34afc, 0x61f560f3, + 0x21fb4ef8, 0x35fe30fc, 0x47f33efd, 0x56f44ff6, 0x17ff4bfd, 0x2b012201, + 0x37fe3600, 0x40013d00, 0x5bf74aff, 0x56f64dfa, 0x6eef58f7, 0xf11475ed, + 0x61f25af3, 0x5cf74400, 0xf114f114, 0xf114f114, 0x73f47bef, 0x73f57af0, + 0x00185df9, 0x090f57f5, 0x19084dfd, 0x120d47fb, 0x090f3ffc, 0x130d44fc, + 0x250a54f4, 0x120c3ef9, 0x1d0641f9, 0x21143d08, 0x1e0f3805, 0x2d0442fe, + 0x3a014001, 0x3e003d00, 0x3d074efe, 0xf114f114, 0xf114f114, 0xf114f114, + 0x44fe3ff4, 0x68f354f1, 0x260c3201, 0x2d0b3407, 0x270f230a, 0x2a0b2c00, + 0x2c0d260b, 0x2d102d01, 0x290c2e00, 0x310a2c05, 0x221e111f, 0x2a123301, + 0x370a3207, 0x3311131c, 0x2e112110, 0x59003e0e, 0x5df846fd, 0x7fe25af6, + 0xed1a6cf3, 0xef1664f1, 0xef1a65f3, 0xe71e5bf3, 0xec1c5ef4, 0xe92158f6, + 0xe52554f0, 0xe92156f6, 0xe42853f9, 0xef2657f3, 0xf5215eed, 0xf1284601, + 0xfa294800, 0x01264afb, 0x11293b12, 0xf114f114, 0xf114f114, 0xf114f114, + 0x61fa4aff, 0x7fec5bf9, 0xfa1e66f8, 0x031b64f1, 0x161a5f00, 0xf114f114, + 0xf114f114, 0xf114f114, 0x52fb38fc, 0x7dea4cf9, 0xf0254bfc, 0xfc234802, + 0xf8264bf5, 0xfd2647fd, 0x03252e0f, 0x052645f3, 0x002a3e00, 0x10234100, + 0x16272515, 0x300e48f1, 0x251b3909, 0x3c153610, 0x440c3e00, 0x6102480c, + 0x70ec78ef, 0x55f572ee, 0x59f25cf1, 0x51f147e6, 0x440050f2, 0x38e846f2, + 0x32e844e9, 0xf1144af5, 0xf31af317, 0xf231f128, 0x062d032c, 0x3621222c, + 0xf1145213, 0xf114f114, 0xf114f114, 0xf114f114, 0x060f5dfa, 0x130654fa, + 0x10074ff8, 0x0e0c4200, 0x0d1247ff, 0x0b0d3e00, 0x0f0d3cfe, 0x100f3bfe, + 0x170c4bfb, 0x170d3efd, 0x140f3afc, 0x1a0e42f7, 0x2c0e4fff, 0x28114700, + 0x2f114403, 0xf114f114, 0x11182c0a, 0x15153ef9, 0x1619240f, 0x1b1f280e, + 0x1d161b10, 0x23131d0c, 0x320e2c01, 0x390a2414, 0x3f072012, 0x4dfe2a05, + 0x52fc3001, 0x5efd3e0a, 0x45092e11, 0x6df44009, 0xf114f114, 0xf114f114, + 0xdd2468f4, 0xde2461f5, 0xe62060f0, 0xe22558f9, 0xe02c55f8, 0xee2255f9, + 0xf12255f7, 0xf12858f3, 0xf9214204, 0xfb234dfd, 0x00214cfd, 0x02264cfa, + 0x0d213a0a, 0x23174cff, 0x3a0d53ff, 0xf114f114, 0xfd1d63f9, 0x001a5ff2, + 0x1e165f02, 0xf114f114, 0xf91f4c00, 0xf1234afb, 0xfd224600, 0x03224bf5, + 0xff244401, 0x05224100, 0x0b2049f2, 0x05233e03, 0x0c223e04, 0x0b2744ff, + 0x1d1e4bf3, 0x1a22370b, 0x271d4005, 0x4213460c, 0xf114f114, 0xf114f114, + 0x61f36af2, 0x5af45af1, 0x49f658ee, 0x56f24ff7, 0x46f649f6, 0x42fb45f6, + 0x3afb40f7, 0xf1143b02, 0xf518f615, 0xff1cf81c, 0x091d031d, 0x241d1423, + 0xf114430e, 0xf114f114, 0xf114f114, 0xf1140000, 0x42746e49, 0x0a3a6675, + 0x6c202000, 0x5f32676f, 0x65676170, 0x7a69735f, 0x20202065, 0x5f6d756e, + 0x65676170, 0x66282073, 0x29656572, 0x2020000a, 0x30252020, 0x20206432, + 0x20202020, 0x20202020, 0x35252020, 0x28202064, 0x62206425, 0x73657479, + 0x55000a29, 0x6f6c626e, 0x6e696b63, 0x65722067, 0x657a6973, 0x25203a73, + 0x54000a64, 0x6c61746f, 0x6c6c6120, 0x7461636f, 0x25206465, 0x28206438, + 0x64657375, 0x2c642520, 0x666e7520, 0x61656572, 0x20656c62, 0x202c6425, + 0x65657266, 0x29642520, 0x656e000a, 0x705f7478, 0x745f6369, 0x61705f6f, + 0x20657372, 0x20202020, 0x000a7525, 0x6d726946, 0x65726177, 0x72657620, + 0x6e6f6973, 0x656f6420, 0x6f6e2073, 0x616d2074, 0x20686374, 0x64726168, + 0x65726177, 0x46000a21, 0x776d7269, 0x20657261, 0x706d6f63, 0x64656c69, + 0x726f6620, 0x72657620, 0x6e6f6973, 0x25783020, 0x0a783830, 0x72614800, + 0x72617764, 0x65722065, 0x74726f70, 0x20202073, 0x76202020, 0x69737265, + 0x30206e6f, 0x38302578, 0x46000a78, 0x776d7269, 0x20657261, 0x73726576, + 0x206e6f69, 0x73656f64, 0x746f6e20, 0x74616d20, 0x68206863, 0x77647261, + 0x20657261, 0x73726576, 0x006e6f69, 0x64726168, 0x65726177, 0x656f6420, + 0x6f6e2073, 0x75732074, 0x726f7070, 0x6e652074, 0x69646f63, 0x4c00676e, + 0x54435f45, 0x253a4c52, 0x4e202c78, 0x45524f43, 0x78253a53, 0x494c202c, + 0x4f435f43, 0x4e5f4552, 0x253a4d55, 0x48202c64, 0x4f435f57, 0x4e5f4552, + 0x253a4d55, 0x000a2064, 0x61766e69, 0x2064696c, 0x64726168, 0x65726177, + 0x726f6320, 0x756e2065, 0x7265626d, 0x6e203a73, 0x65626d75, 0x666f2072, + 0x72616820, 0x65726164, 0x726f6320, 0x73692065, 0x6c6c6920, 0x6c616765, + 0x66655200, 0x6e657265, 0x70206563, 0x75746369, 0x74206572, 0x656c6261, + 0x6469000a, 0x203a2020, 0x20617473, 0x20657375, 0x20666572, 0x20317970, + 0x20327970, 0x20706d63, 0x20746d66, 0x5f69626d, 0x20727470, 0x69626d20, + 0x6761705f, 0x73287365, 0x29657a69, 0x74702020, 0x6f742072, 0x6f623a70, + 0x25000a74, 0x3a206433, 0x64332520, 0x64332520, 0x64332520, 0x64332520, + 0x64332520, 0x64332520, 0x64332520, 0x20702520, 0x36252020, 0x64252864, + 0x20202029, 0x253a7025, 0x4c000a70, 0x20657669, 0x74636970, 0x20657275, + 0x6c626174, 0x4e000a65, 0x3a206d75, 0x20642520, 0x6c4f2020, 0x74736564, + 0x0a642520, 0x78646900, 0x73203a20, 0x75206174, 0x70206573, 0x64696369, + 0x66657220, 0x6c206469, 0x73656e69, 0x20636e79, 0x20666572, 0x76696c20, + 0x66657265, 0x20202073, 0x65722020, 0x69703266, 0x25000a63, 0x3a206433, + 0x64332520, 0x64332520, 0x25202020, 0x20206433, 0x64332520, 0x25202020, + 0x25206436, 0x20206433, 0x30257830, 0x25207838, 0x25206433, 0x25206433, + 0x25206433, 0x25206433, 0x25206433, 0x25206433, 0x25206433, 0x25206433, + 0x25206433, 0x25206433, 0x25206433, 0x25206433, 0x25206433, 0x25206433, + 0x25206433, 0x000a6433, 0x76697250, 0x20657461, 0x62666572, 0x3a6b6e61, + 0x6c6f6320, 0x3020726f, 0x20782578, 0x5f78616d, 0x66667562, 0x20737265, + 0x6d207525, 0x25207762, 0x626d2075, 0x75252068, 0x73616220, 0x64615f65, + 0x30207264, 0x38302578, 0x20000a78, 0x64692020, 0x74732078, 0x65722061, + 0x64615f66, 0x20207264, 0x77626d20, 0x626d2020, 0x20000a68, 0x33252020, + 0x33252075, 0x78302075, 0x78383025, 0x6528000a, 0x6f20646e, 0x72702066, + 0x74617669, 0x65722065, 0x6e616266, 0x7564206b, 0x0a29706d, 0x44495600, + 0x46204f45, 0x54532057, 0x20455441, 0x504d5544, 0x636e4520, 0x7265646f, + 0x3632483d, 0x73000a34, 0x6f2d7465, 0x70207470, 0x69666f72, 0x676e696c, + 0x7261203a, 0x756d2067, 0x62207473, 0x20302065, 0x3120726f, 0x74657300, + 0x74706f2d, 0x63736520, 0x6e697061, 0x61203a67, 0x6d206772, 0x20747375, + 0x30206562, 0x20726f20, 0x65730031, 0x706f2d74, 0x616e2074, 0x6620756c, + 0x616d726f, 0x55203a74, 0x6f6e6b6e, 0x66206e77, 0x616d726f, 0x65730074, + 0x706f2d74, 0x616e2074, 0x6620756c, 0x616d726f, 0x55203a74, 0x7075736e, + 0x74726f70, 0x66206465, 0x616d726f, 0x65730074, 0x706f2d74, 0x78652074, + 0x65736f70, 0x66657220, 0x61726620, 0x3a73656d, 0x67726120, 0x73756d20, + 0x65622074, 0x6f203020, 0x00312072, 0x2d746573, 0x2074706f, 0x6f707865, + 0x72206573, 0x66206665, 0x656d6172, 0x4e203a73, 0x7320746f, 0x6f707075, + 0x64657472, 0x726f6620, 0x6f727020, 0x74636574, 0x73206465, 0x69737365, + 0x00736e6f, 0x2d746573, 0x2074706f, 0x66666964, 0x6e657265, 0x74732074, + 0x6d616572, 0x74696220, 0x74706564, 0x6e207368, 0x7320746f, 0x6f707075, + 0x64657472, 0x74657300, 0x74706f2d, 0x636e6520, 0x2065646f, 0x65727473, + 0x62206d61, 0x65647469, 0x3a687470, 0x736e7520, 0x6f707075, 0x64657472, + 0x6c617620, 0x73006575, 0x6f2d7465, 0x63207470, 0x6d6f7268, 0x6f665f61, + 0x74616d72, 0x6863203b, 0x616d6f72, 0x726f6620, 0x2074616d, 0x20746f6e, + 0x70707573, 0x6574726f, 0x73002e64, 0x6f2d7465, 0x6d207470, 0x666e6962, + 0x756f206f, 0x74757074, 0x7261203a, 0x756d2067, 0x62207473, 0x20302065, + 0x3120726f, 0x74657300, 0x74706f2d, 0x20766d20, 0x72616573, 0x72206863, + 0x65676e61, 0x6e69203a, 0x696c6176, 0x20782064, 0x00677261, 0x2d746573, + 0x2074706f, 0x7320766d, 0x63726165, 0x61722068, 0x3a65676e, 0x766e6920, + 0x64696c61, 0x61207920, 0x73006772, 0x6f2d7465, 0x6d207470, 0x79742062, + 0x203a6570, 0x61766e49, 0x2064696c, 0x72746e69, 0x65732061, 0x7463656c, + 0x006e6f69, 0x2d746573, 0x2074706f, 0x7420626d, 0x3a657079, 0x766e4920, + 0x64696c61, 0x746e6920, 0x73207265, 0x63656c65, 0x6e6f6974, 0x74657300, + 0x74706f2d, 0x42475220, 0x206f7420, 0x3a565559, 0x736e7520, 0x6f707075, + 0x64657472, 0x646f6d20, 0x65730065, 0x706f2d74, 0x6f682074, 0x70207473, + 0x6f746f72, 0x206c6f63, 0x6e697270, 0x203a7374, 0x20677261, 0x7473756d, + 0x20656220, 0x726f2030, 0x73003120, 0x6f2d7465, 0x47207470, 0x7420504f, + 0x3a657079, 0x736e5520, 0x6f707075, 0x64657472, 0x70797420, 0x65730065, + 0x706f2d74, 0x4f472074, 0x79742050, 0x203a6570, 0x61766e69, 0x0064696c, + 0x2d746573, 0x2074706f, 0x20504f47, 0x65707974, 0x6e69203a, 0x696c6176, + 0x4f472064, 0x69732050, 0x5300657a, 0x69646e65, 0x4a20676e, 0x445f424f, + 0x45555145, 0x0a444555, 0x6f725700, 0x7320676e, 0x20657a69, 0x6220666f, + 0x65666675, 0x61705f72, 0x5f6d6172, 0x6d617266, 0x61725f65, 0x73006574, + 0x6f2d7465, 0x66207470, 0x656d6172, 0x74617220, 0x75203a65, 0x7075736e, + 0x74726f70, 0x61206465, 0x57006772, 0x676e6f72, 0x7a697320, 0x666f2065, + 0x66756220, 0x20726566, 0x61726170, 0x6172206d, 0x635f6574, 0x72746e6f, + 0x42006c6f, 0x6b636f6c, 0x6e6f6320, 0x75676966, 0x69746172, 0x28206e6f, + 0x20494f52, 0x5220726f, 0x2029776f, 0x6e6e6163, 0x7320746f, 0x51207465, + 0x6f742050, 0x68746567, 0x77207265, 0x20687469, 0x65746172, 0x6e6f6320, + 0x6c6f7274, 0x74657300, 0x74706f2d, 0x74696220, 0x74617220, 0x66203a65, + 0x7420726f, 0x20657079, 0x2c46464f, 0x72617420, 0x20746567, 0x65746172, + 0x6f687320, 0x20646c75, 0x7a206562, 0x006f7265, 0x2d746573, 0x2074706f, + 0x20746962, 0x65746172, 0x6e75203a, 0x70707573, 0x6574726f, 0x616d2064, + 0x69622078, 0x74617274, 0x65730065, 0x706f2d74, 0x69622074, 0x61722074, + 0x203a6574, 0x75736e75, 0x726f7070, 0x20646574, 0x67726174, 0x72207465, + 0x00657461, 0x6e6f7257, 0x69732067, 0x6f20657a, 0x75622066, 0x72656666, + 0x72617020, 0x66206d61, 0x7220726f, 0x20657461, 0x746e6f63, 0x206c6f72, + 0x20445248, 0x66667562, 0x73207265, 0x00657a69, 0x75736e55, 0x726f7070, + 0x20646574, 0x20445248, 0x66667562, 0x73207265, 0x2c657a69, 0x73756d20, + 0x65622074, 0x203d3e20, 0x6e450031, 0x65646f63, 0x72617020, 0x66206d61, + 0x656d6172, 0x63617020, 0x676e696b, 0x6973203b, 0x7420657a, 0x73206f6f, + 0x6c6c616d, 0x6e45002e, 0x65646f63, 0x72617020, 0x66206d61, 0x656d6172, + 0x63617020, 0x676e696b, 0x6163203b, 0x6e6f206e, 0x6220796c, 0x65732065, + 0x6f662074, 0x68742072, 0x69662065, 0x20747372, 0x6d617266, 0x45002e65, + 0x646f636e, 0x61702065, 0x206d6172, 0x6f6c6f63, 0x64207275, 0x72637365, + 0x69747069, 0x203b6e6f, 0x657a6973, 0x6f6f7420, 0x616d7320, 0x002e6c6c, + 0x6f636e45, 0x70206564, 0x6d617261, 0x65737520, 0x61642072, 0x72206174, + 0x73696765, 0x65726574, 0x73203a64, 0x20657a69, 0x206f6f74, 0x6c616d73, + 0x45002e6c, 0x646f636e, 0x61702065, 0x206d6172, 0x20706f67, 0x65736572, + 0x6e203a74, 0x7320746f, 0x6f707075, 0x64657472, 0x726f6620, 0x662d6220, + 0x656d6172, 0x45002e73, 0x646f636e, 0x61702065, 0x206d6172, 0x65736572, + 0x6f672074, 0x79642070, 0x696d616e, 0x73203a63, 0x20657a69, 0x77207369, + 0x676e6f72, 0x6e45002e, 0x65646f63, 0x72617020, 0x67206d61, 0x7220706f, + 0x74657365, 0x6e796420, 0x63696d61, 0x796c6c61, 0x6f6e203a, 0x75732074, + 0x726f7070, 0x20646574, 0x20726f66, 0x72662d62, 0x73656d61, 0x6e45002e, + 0x65646f63, 0x72617020, 0x65206d61, 0x7320636e, 0x73746174, 0x73203a20, + 0x20657a69, 0x77207369, 0x676e6f72, 0x6e45002e, 0x65646f63, 0x72617020, + 0x72206d61, 0x6f696765, 0x203a736e, 0x657a6973, 0x6f6f7420, 0x616d7320, + 0x002e6c6c, 0x6f636e45, 0x70206564, 0x6d617261, 0x67657220, 0x736e6f69, + 0x756e203a, 0x7265626d, 0x20666f20, 0x69676572, 0x20736e6f, 0x6e6e6163, + 0x6520746f, 0x65656378, 0x36312064, 0x636e4500, 0x2065646f, 0x61726170, + 0x6572206d, 0x6e6f6967, 0x63203a73, 0x6f6e6e61, 0x65622074, 0x65737520, + 0x6f742064, 0x68746567, 0x77207265, 0x20687469, 0x20776f72, 0x65736162, + 0x6c622064, 0x206b636f, 0x666e6f63, 0x72756769, 0x6f697461, 0x4500736e, + 0x646f636e, 0x61702065, 0x206d6172, 0x6e616863, 0x72206567, 0x61746365, + 0x656c676e, 0x73203a73, 0x20657a69, 0x206f6f74, 0x6c616d73, 0x45002e6c, + 0x646f636e, 0x61702065, 0x206d6172, 0x6e616863, 0x72206567, 0x61746365, + 0x656c676e, 0x6e203a73, 0x65626d75, 0x666f2072, 0x67657220, 0x736e6f69, + 0x6e616320, 0x20746f6e, 0x65637865, 0x32206465, 0x636e4500, 0x2065646f, + 0x61726170, 0x6863206d, 0x65676e61, 0x63657220, 0x676e6174, 0x3a73656c, + 0x766e6920, 0x64696c61, 0x6f6f6320, 0x6e696472, 0x73657461, 0x45564d00, + 0x4655425f, 0x5f524546, 0x454e4547, 0x5f4c4152, 0x45505954, 0x4f4c425f, + 0x435f4b43, 0x49464e4f, 0x203a5347, 0x7373656d, 0x20656761, 0x657a6973, + 0x6f6f7420, 0x616d7320, 0x002e6c6c, 0x5f45564d, 0x46465542, 0x475f5245, + 0x52454e45, 0x545f4c41, 0x5f455059, 0x434f4c42, 0x4f435f4b, 0x4749464e, + 0x6f722053, 0x75207377, 0x6d6f636e, 0x63203a70, 0x6f6e6e61, 0x65622074, + 0x65737520, 0x6f742064, 0x68746567, 0x77207265, 0x20687469, 0x69676572, + 0x6f2d6e6f, 0x6e692d66, 0x65726574, 0x4d007473, 0x425f4556, 0x45464655, + 0x45475f52, 0x4152454e, 0x59545f4c, 0x425f4550, 0x4b434f4c, 0x4e4f435f, + 0x53474946, 0x6e75203a, 0x70707573, 0x6574726f, 0x6c622064, 0x206b636f, + 0x666e6f63, 0x74206769, 0x00657079, 0x5f45564d, 0x46465542, 0x475f5245, + 0x52454e45, 0x203a4c41, 0x657a6973, 0x6f6f7420, 0x616d7320, 0x74206c6c, + 0x6572206f, 0x68206461, 0x65646165, 0x4d002e72, 0x425f4556, 0x45464655, + 0x45475f52, 0x4152454e, 0x62203a4c, 0x65666675, 0x6f702072, 0x65746e69, + 0x73692072, 0x4c554e20, 0x4d002e4c, 0x425f4556, 0x45464655, 0x45475f52, + 0x4152454e, 0x62203a4c, 0x65666675, 0x69732072, 0x6920657a, 0x657a2073, + 0x002e6f72, 0x5f45564d, 0x46465542, 0x475f5245, 0x52454e45, 0x203a4c41, + 0x666e6f63, 0x73206769, 0x20657a69, 0x7a207369, 0x2e6f7265, 0x45564d00, + 0x4655425f, 0x5f524546, 0x454e4547, 0x5f4c4152, 0x45505954, 0x4f4c425f, + 0x435f4b43, 0x49464e4f, 0x203a5347, 0x75622061, 0x72656666, 0x73616820, + 0x726c6120, 0x79646165, 0x65656220, 0x6573206e, 0x6620746e, 0x7420726f, + 0x20736968, 0x74636970, 0x2e657275, 0x45564d00, 0x4655425f, 0x5f524546, + 0x454e4547, 0x3a4c4152, 0x736e7520, 0x6f707075, 0x64657472, 0x70797420, + 0x6e692065, 0x45564d20, 0x4d4f435f, 0x55425f4d, 0x4e495f46, 0x44415f51, + 0x002e5244, 0x5f45564d, 0x46465542, 0x475f5245, 0x52454e45, 0x545f4c41, + 0x5f455059, 0x434f4c42, 0x4f435f4b, 0x4749464e, 0x6f722053, 0x75207377, + 0x6d6f636e, 0x6e203a70, 0x6c6f635f, 0x6f642073, 0x6e207365, 0x6d20746f, + 0x68637461, 0x65687420, 0x63697020, 0x65727574, 0x64697720, 0x4d006874, + 0x425f4556, 0x45464655, 0x45475f52, 0x4152454e, 0x59545f4c, 0x425f4550, + 0x4b434f4c, 0x4e4f435f, 0x53474946, 0x776f7220, 0x6e752073, 0x706d6f63, + 0x5f6e203a, 0x73776f72, 0x656f6420, 0x6f6e2073, 0x616d2074, 0x20686374, + 0x20656874, 0x74636970, 0x20657275, 0x67696568, 0x57007468, 0x676e6f72, + 0x7a697320, 0x666f2065, 0x66756220, 0x20726566, 0x61726170, 0x6172206d, + 0x63206574, 0x72746e6f, 0x71206c6f, 0x6c420070, 0x206b636f, 0x666e6f63, + 0x72756769, 0x6f697461, 0x5228206e, 0x6f20494f, 0x6f522072, 0x63202977, + 0x6f6e6e61, 0x65732074, 0x50512074, 0x676f7420, 0x65687465, 0x69772072, + 0x51206874, 0x2c492050, 0x00422c50, 0x2d746573, 0x2074706f, 0x203a7071, + 0x6e6b6e55, 0x206e776f, 0x6d617266, 0x79742065, 0x57006570, 0x676e6f72, + 0x7a697320, 0x666f2065, 0x66756220, 0x20726566, 0x61726170, 0x6172206d, + 0x635f6574, 0x72746e6f, 0x705f6c6f, 0x6d617261, 0x29492820, 0x6f6c4200, + 0x63206b63, 0x69666e6f, 0x61727567, 0x6e6f6974, 0x4f522820, 0x726f2049, + 0x776f5220, 0x61632029, 0x746f6e6e, 0x74657320, 0x20505120, 0x65676f74, + 0x72656874, 0x74697720, 0x61722068, 0x63206574, 0x72746e6f, 0x70206c6f, + 0x6d617261, 0x65730073, 0x706f2d74, 0x61722074, 0x63206574, 0x72746e6f, + 0x70206c6f, 0x6d617261, 0x7071203a, 0x6e696d5f, 0x6e616320, 0x20746f6e, + 0x65637865, 0x71206465, 0x616d5f70, 0x49282078, 0x72570029, 0x20676e6f, + 0x657a6973, 0x20666f20, 0x66667562, 0x70207265, 0x6d617261, 0x74617220, + 0x6f635f65, 0x6f72746e, 0x61705f6c, 0x006d6172, 0x2d746573, 0x2074706f, + 0x65746172, 0x6e6f6320, 0x6c6f7274, 0x72617020, 0x203a6d61, 0x6d5f7071, + 0x63206e69, 0x6f6e6e61, 0x78652074, 0x64656563, 0x5f707120, 0x0078616d, + 0x6f636e45, 0x70206564, 0x6d617261, 0x3b707120, 0x7a697320, 0x6f742065, + 0x6d73206f, 0x2e6c6c61, 0x636e4500, 0x2065646f, 0x61726170, 0x7065206d, + 0x66695f72, 0x656d6172, 0x616e655f, 0x20656c62, 0x756c6176, 0x756d2065, + 0x62207473, 0x20302065, 0x3120726f, 0x564d002e, 0x55425f45, 0x52454646, + 0x5241505f, 0x73204d41, 0x20657a69, 0x206f6f74, 0x6c616d73, 0x55002e6c, + 0x7075736e, 0x74726f70, 0x65206465, 0x646f636e, 0x61702065, 0x206d6172, + 0x4d206e69, 0x435f4556, 0x5f4d4d4f, 0x5f465542, 0x5f514e49, 0x52444441, + 0x6970002e, 0x726f5f63, 0x5f726564, 0x5f746e63, 0x65707974, 0x6e6f203a, + 0x7320796c, 0x6f707075, 0x4c207472, 0x6f205044, 0x32482066, 0x6e203436, + 0x6800776f, 0x65343632, 0x203a636e, 0x72662042, 0x20656d61, 0x20746f6e, + 0x73736f70, 0x656c6269, 0x74697720, 0x61422068, 0x696c6573, 0x7020656e, + 0x69666f72, 0x7400656c, 0x73206f6f, 0x6c6c616d, 0x44524820, 0x66756220, + 0x20726566, 0x657a6973, 0x2a2a2a00, 0x7325202a, 0x2a2a2a20, 0x4350202a, + 0x7830203a, 0x20207825, 0x3a525320, 0x25783020, 0x20202078, 0x3a524146, + 0x25783020, 0x20000a78, 0x32255b52, 0x3d205d64, 0x25783020, 0x0a783830, + 0x616d2000, 0x72657473, 0x64252320, 0x20732520, 0x726f6261, 0x0a646574, + 0x20202000, 0x4c554146, 0x30203a54, 0x0a782578, 0x20202000, 0x44444146, + 0x30203a52, 0x0a782578, 0x54415700, 0x4f444843, 0x72692047, 0x41520071, + 0x41204353, 0x54524f42, 0x554d4d00, 0x4f424120, 0x2a005452, 0x202a2a2a, + 0x43534152, 0x41206425, 0x54524f42, 0x2a2a2a20, 0x20000a2a, 0x20435020, + 0x3d202020, 0x25783020, 0x0a783830, 0x53202000, 0x20202052, 0x30203d20, + 0x38302578, 0x20000a78, 0x52414620, 0x3d202020, 0x25783020, 0x0a783830, + 0x52202000, 0x6432255b, 0x203d205d, 0x30257830, 0x000a7838, 0x63746157, + 0x676f6468, 0x6e794400, 0x63696d61, 0x61686320, 0x2065676e, 0x74206e69, + 0x6e206568, 0x65626d75, 0x666f2072, 0x726f6320, 0x69207365, 0x6f6e2073, + 0x75732074, 0x726f7070, 0x00646574, 0x2d746573, 0x2074706f, 0x72662070, + 0x73656d61, 0x6e49203a, 0x696c6176, 0x72612064, 0x656d7567, 0x7300746e, + 0x6f2d7465, 0x50207470, 0x61724620, 0x3a73656d, 0x766e6920, 0x64696c61, + 0x504f4720, 0x7a697320, 0x65730065, 0x706f2d74, 0x20422074, 0x6d617246, + 0x203a7365, 0x61766e69, 0x2064696c, 0x20504f47, 0x657a6973, 0x74657300, + 0x74706f2d, 0x66204220, 0x656d6172, 0x4e203a73, 0x7320746f, 0x6f707075, + 0x64657472, 0x206f6400, 0x20746f6e, 0x70707573, 0x2074726f, 0x465f454d, + 0x435f454d, 0x43494255, 0x5345525f, 0x646e7520, 0x43207265, 0x49464e4f, + 0x53414d47, 0x51455f4b, 0x73692049, 0x6c616620, 0x68006573, 0x65343632, + 0x203a636e, 0x41424143, 0x6f6e2043, 0x6f702074, 0x62697373, 0x7720656c, + 0x20687469, 0x65736142, 0x656e696c, 0x6f727020, 0x656c6966, 0x6e655300, + 0x676e6964, 0x4f525020, 0x53534543, 0x000a4445, 0x65636552, 0x64657669, + 0x49575320, 0x0a484354, 0x63655200, 0x65766965, 0x4f4a2064, 0x6c662042, + 0x3d736761, 0x66207525, 0x656d6172, 0x75253d73, 0x726f6320, 0x253d7365, + 0x4a000a75, 0x6d20626f, 0x61737365, 0x203a6567, 0x626d754e, 0x6f207265, + 0x6f632066, 0x20736572, 0x206e6163, 0x20746f6e, 0x7a206562, 0x2e6f7265, + 0x626f4a00, 0x73656d20, 0x65676173, 0x754e203a, 0x7265626d, 0x20666f20, + 0x65726f63, 0x6f742073, 0x616c206f, 0x2e656772, 0x626f4a00, 0x73656d20, + 0x65676173, 0x6e55203a, 0x70707573, 0x6574726f, 0x6c662064, 0x20736761, + 0x2e746573, 0x626f4a00, 0x73656d20, 0x65676173, 0x754e203a, 0x7265626d, + 0x20666f20, 0x6d617266, 0x74207365, 0x6c206f6f, 0x65677261, 0x6f6e002e, + 0x61707320, 0x69206563, 0x6f6a206e, 0x75712062, 0x00657565, 0x5f544553, + 0x4954504f, 0x66204e4f, 0x656c6961, 0x25203a64, 0x00000a73, 0x562f3556, + 0x32482d37, 0x4e453436, 0x00203a43, 0x69636552, 0x64657665, 0x54455320, + 0x54504f5f, 0x204e4f49, 0x61746164, 0x7a69735f, 0x75252065, 0x74706f20, + 0x646e695f, 0x25207865, 0x72612075, 0x78302067, 0x78383025, 0x6553000a, + 0x6f697373, 0x706f206e, 0x6e6f6974, 0x61632073, 0x6e6f206e, 0x6220796c, + 0x68632065, 0x65676e61, 0x6e692064, 0x4f545320, 0x44455050, 0x61747320, + 0x002e6574, 0x6d726946, 0x65726177, 0x20736920, 0x20746f6e, 0x70707573, + 0x2074726f, 0x73696874, 0x74706f20, 0x206e6f69, 0x70692d2d, 0x6c616e65, + 0x645f7974, 0x65730063, 0x706f2d74, 0x70712074, 0x6c65645f, 0x695f6174, + 0x203a705f, 0x75736e55, 0x726f7070, 0x20646574, 0x756c6176, 0x65730065, + 0x706f2d74, 0x70712074, 0x6c65645f, 0x695f6174, 0x203a705f, 0x756c6156, + 0x6f742065, 0x6962206f, 0x65730067, 0x706f2d74, 0x70712074, 0x6c65645f, + 0x695f6174, 0x725f625f, 0x203a6665, 0x75736e55, 0x726f7070, 0x20646574, + 0x756c6176, 0x65730065, 0x706f2d74, 0x70712074, 0x6c65645f, 0x695f6174, + 0x725f625f, 0x203a6665, 0x756c6156, 0x6f742065, 0x6962206f, 0x65730067, + 0x706f2d74, 0x69662074, 0x20646578, 0x203a5051, 0x75736e75, 0x726f7070, + 0x20646574, 0x756c6176, 0x6e650065, 0x656c6261, 0x7369765f, 0x3a6c6175, + 0x67726120, 0x6e617220, 0x6d206567, 0x20747375, 0x66206562, 0x206d6f72, + 0x6f742030, 0x00313320, 0x646e6162, 0x74646977, 0x696c2068, 0x3a74696d, + 0x746f6e20, 0x70757320, 0x74726f70, 0x73006465, 0x6f2d7465, 0x6d207470, + 0x6e5f7861, 0x635f6d75, 0x7365726f, 0x6e49203a, 0x696c6176, 0x61762064, + 0x0065756c, 0x5f746573, 0x5f636e65, 0x5f656d66, 0x75636962, 0x5f636962, + 0x3a736964, 0x67726120, 0x73756d20, 0x65622074, 0x6f203020, 0x00312072, + 0x746c2d2d, 0x6f6d5f72, 0x6d206564, 0x20747375, 0x62206562, 0x656c2065, + 0x74207373, 0x206e6168, 0x5f52544c, 0x45444f4d, 0x5055535f, 0x54524f50, + 0x4d554e5f, 0x6c2d2d00, 0x6d5f7274, 0x2065646f, 0x206e6163, 0x20746f6e, + 0x666e6f63, 0x77206769, 0x20687469, 0x65722d2d, 0x62725f66, 0x206e655f, + 0x2d2d0031, 0x5f72746c, 0x69726570, 0x6320646f, 0x6e206e61, 0x6320746f, + 0x69666e6f, 0x69772067, 0x2d206874, 0x6665722d, 0x5f62725f, 0x31206e65, + 0x69616600, 0x6f74206c, 0x74657320, 0x636e6520, 0x6174735f, 0x6d5f7374, + 0x3a65646f, 0x67726120, 0x73756d20, 0x65622074, 0x206e6920, 0x202c305b, + 0x41005d37, 0x52455353, 0x25202854, 0x3d3e2064, 0x6e696d20, 0x72665f69, + 0x5f656d61, 0x5f78616d, 0x6d676573, 0x73746e65, 0x202c2920, 0x206f6f74, + 0x20676962, 0x696e696d, 0x6172665f, 0x6d5f656d, 0x735f7861, 0x656d6765, + 0x2873746e, 0x20296425, 0x65730021, 0x6e655f74, 0x65735f63, 0x756d5f74, + 0x5f69746c, 0x5f737073, 0x3a737070, 0x67726120, 0x73756d20, 0x65622074, + 0x6f203020, 0x00312072, 0x6d726946, 0x65726177, 0x20736920, 0x20746f6e, + 0x70707573, 0x2074726f, 0x73696874, 0x74706f20, 0x206e6f69, 0x70692d2d, + 0x6c616e65, 0x615f7974, 0x6c75676e, 0x2d007261, 0x6665722d, 0x5f62725f, + 0x31206e65, 0x6e616320, 0x746f6e20, 0x6e6f6320, 0x20676966, 0x68746977, + 0x6c2d2d20, 0x6d5f7274, 0x0065646f, 0x2d746573, 0x2074706f, 0x34363268, + 0x3a636e65, 0x736e5520, 0x6f707075, 0x64657472, 0x74706f20, 0x206e6f69, + 0x65646e69, 0x65730078, 0x706f2d74, 0x55203a74, 0x7075736e, 0x74726f70, + 0x41206465, 0x70204356, 0x69666f72, 0x7300656c, 0x6f2d7465, 0x203a7470, + 0x75736e55, 0x726f7070, 0x20646574, 0x20435641, 0x6576656c, 0x6573006c, + 0x706f2d74, 0x32682074, 0x6e653436, 0x63203a63, 0x74736e6f, 0x70692072, + 0x20646572, 0x7473756d, 0x20656220, 0x726f2030, 0x73003120, 0x6f2d7465, + 0x68207470, 0x65343632, 0x203a636e, 0x41424143, 0x6e652043, 0x656c6261, + 0x756d2064, 0x62207473, 0x20302065, 0x3120726f, 0x74657300, 0x74706f2d, + 0x36326820, 0x636e6534, 0x6163203a, 0x20636162, 0x74696e69, 0x63646920, + 0x73756d20, 0x65622074, 0x202c3020, 0x6f202c31, 0x00322072, 0x5f544553, + 0x4954504f, 0x4f204e4f, 0x63202c4b, 0x69666e6f, 0x6e696d72, 0x46000a67, + 0x776d7269, 0x20657261, 0x6e207369, 0x7320746f, 0x6f707075, 0x74207472, + 0x20736968, 0x6974706f, 0x2d206e6f, 0x6570692d, 0x746c616e, 0x6c705f79, + 0x72616e61, 0x63655200, 0x65766965, 0x44492064, 0x415f454c, 0x000a4b43, + 0x20746f47, 0x454c4449, 0x4b43415f, 0x74697720, 0x74756f68, 0x6e657320, + 0x44492074, 0x002e454c, 0x65636552, 0x64657669, 0x42454420, 0x202c4755, + 0x2d67736d, 0x7461643e, 0x69735f61, 0x253d657a, 0x6c202c64, 0x6c657665, + 0x0a64253d, 0x6e657300, 0x676e6964, 0x73657220, 0x736e6f70, 0x6f632065, + 0x25206564, 0x49000a64, 0x20454c44, 0x6c646928, 0x65735f65, 0x745f746e, + 0x6f685f6f, 0x25207473, 0x69202c75, 0x6675626e, 0x746e635f, 0x2c752520, + 0x74756f20, 0x5f667562, 0x20746e63, 0x0a297525, 0x20202000, 0x69617661, + 0x6f77206c, 0x20736472, 0x63206e69, 0x206d6d6f, 0x75657571, 0x203a7365, + 0x2067736d, 0x69207525, 0x6675626e, 0x20752520, 0x6274756f, 0x25206675, + 0x53000a75, 0x69646e65, 0x5220676e, 0x52464645, 0x0a454d41, 0x20732500, + 0x6d207325, 0x62206576, 0x65666675, 0x72662072, 0x20656d61, 0x626e6928, + 0x635f6675, 0x2520746e, 0x6f202c75, 0x75627475, 0x6e635f66, 0x75252074, + 0x20000a29, 0x68202020, 0x5f74736f, 0x646e6168, 0x3020656c, 0x38302578, + 0x38302578, 0x73752078, 0x645f7265, 0x5f617461, 0x20676174, 0x30257830, + 0x30257838, 0x000a7838, 0x20202020, 0x6d617266, 0x6c665f65, 0x20736761, + 0x30257830, 0x74207838, 0x2520706f, 0x6f622075, 0x75252074, 0x736f6520, + 0x20752520, 0x206a6572, 0x000a7525, 0x20202020, 0x6d726f66, 0x30207461, + 0x34302578, 0x69762078, 0x6c626973, 0x75252065, 0x0a752578, 0x20202000, + 0x6e696d20, 0x72665f69, 0x5f656d61, 0x25282079, 0x75252d75, 0x20000a29, + 0x70202020, 0x656e616c, 0x78302073, 0x78383025, 0x7830202c, 0x78383025, + 0x2020000a, 0x69732020, 0x2073657a, 0x202c7525, 0x000a7525, 0x20202020, + 0x706f7263, 0x75252078, 0x6f726320, 0x25207970, 0x66612075, 0x775f6362, + 0x2062735f, 0x25207525, 0x66612075, 0x705f6362, 0x6d617261, 0x78302073, + 0x78383025, 0x2020000a, 0x65702020, 0x30206b65, 0x32302578, 0x32302578, + 0x32302578, 0x32302578, 0x20000a78, 0x70202020, 0x656e616c, 0x706f745f, + 0x25783020, 0x20783830, 0x30257830, 0x30207838, 0x38302578, 0x20000a78, + 0x70202020, 0x656e616c, 0x746f625f, 0x25783020, 0x20783830, 0x30257830, + 0x30207838, 0x38302578, 0x20000a78, 0x73202020, 0x64697274, 0x20207365, + 0x20642520, 0x25206425, 0x20000a64, 0x6d202020, 0x25207861, 0x75257875, + 0x7325000a, 0x20732520, 0x2065766d, 0x66667562, 0x62207265, 0x74737469, + 0x6d616572, 0x6e692820, 0x5f667562, 0x20746e63, 0x202c7525, 0x6274756f, + 0x635f6675, 0x2520746e, 0x000a2975, 0x20202020, 0x73746962, 0x61657274, + 0x6c665f6d, 0x20736761, 0x30257830, 0x65207838, 0x2066736f, 0x65207525, + 0x2520666f, 0x6f652075, 0x75252073, 0x666f6520, 0x25207362, 0x74732075, + 0x20737461, 0x000a7525, 0x20202020, 0x72646461, 0x25783020, 0x20783830, + 0x6f6c6c61, 0x75252063, 0x66666f20, 0x20752520, 0x6c6c6966, 0x0a752520, + 0x20732500, 0x6d207325, 0x62206576, 0x65666675, 0x61702072, 0x656d6172, + 0x2c726574, 0x70797420, 0x75252065, 0x7325000a, 0x20732520, 0x2065766d, + 0x66667562, 0x67207265, 0x72656e65, 0x28206c61, 0x75626e69, 0x6e635f66, + 0x75252074, 0x756f202c, 0x66756274, 0x746e635f, 0x29752520, 0x2020000a, + 0x79742020, 0x25206570, 0x63202c75, 0x69666e6f, 0x69735f67, 0x2520657a, + 0x20000a75, 0x63202020, 0x69666e6f, 0x78302067, 0x78323025, 0x25783020, + 0x20783230, 0x30257830, 0x30207832, 0x32302578, 0x20000a78, 0x62202020, + 0x65666675, 0x74705f72, 0x78302072, 0x78383025, 0x7562202c, 0x72656666, + 0x7a69735f, 0x75252065, 0x6f48000a, 0x70207473, 0x746e6972, 0x66756220, + 0x20726566, 0x4f525245, 0x25202e52, 0x73252073, 0x65766d20, 0x66756220, + 0x20726566, 0x68746977, 0x6b6e7520, 0x6e776f6e, 0x646f6320, 0x75252065, + 0x6f47000a, 0x554f0074, 0x54555054, 0x766e4900, 0x64696c61, 0x74756f20, + 0x20747570, 0x66667562, 0x002e7265, 0x61766e49, 0x2064696c, 0x66667562, + 0x69207265, 0x564d206e, 0x4f435f45, 0x425f4d4d, 0x4f5f4655, 0x5f515455, + 0x52444441, 0x78652820, 0x74636570, 0x6d206465, 0x625f6576, 0x65666675, + 0x69625f72, 0x72747374, 0x296d6165, 0x6553002e, 0x6e69646e, 0x4e490067, + 0x00545550, 0x65636552, 0x64657669, 0x54554f20, 0x5f545550, 0x53554c46, + 0x74732048, 0x20657461, 0x6f207525, 0x75707475, 0x6c625f74, 0x656b636f, + 0x75252064, 0x754f000a, 0x74757074, 0x756c6620, 0x6f206873, 0x20796c6e, + 0x6f6c6c61, 0x20646577, 0x6e656877, 0x6f747320, 0x64657070, 0x726f202c, + 0x74666120, 0x72207265, 0x6f707365, 0x2065736e, 0x5145535f, 0x434e4555, + 0x41505f45, 0x454d4152, 0x53524554, 0x6e655300, 0x676e6964, 0x54554f20, + 0x5f545550, 0x53554c46, 0x0a444548, 0x6e655300, 0x676e6964, 0x504e4920, + 0x465f5455, 0x4853554c, 0x000a4445, 0x65636552, 0x64657669, 0x504e4920, + 0x465f5455, 0x4853554c, 0x4e49000a, 0x5f545550, 0x53554c46, 0x6e6f2048, + 0x6120796c, 0x776f6c6c, 0x77206465, 0x206e6568, 0x53206e69, 0x50504f54, + 0x73204445, 0x65746174, 0x6552002e, 0x76696563, 0x47206465, 0x4d000a4f, + 0x525f4556, 0x45555145, 0x435f5453, 0x5f45444f, 0x203a4f47, 0x72702041, + 0x6f697665, 0x73207375, 0x65746174, 0x61727420, 0x7469736e, 0x206e6f69, + 0x73207369, 0x6c6c6974, 0x6e657020, 0x676e6964, 0x6f4e002e, 0x626f6a20, + 0x206e6920, 0x20626f6a, 0x75657571, 0x52002e65, 0x69656365, 0x20646576, + 0x504f5453, 0x564d000a, 0x45525f45, 0x53455551, 0x4f435f54, 0x535f4544, + 0x3a504f54, 0x70204120, 0x69766572, 0x2073756f, 0x74617473, 0x72742065, + 0x69736e61, 0x6e6f6974, 0x20736920, 0x6c697473, 0x6570206c, 0x6e69646e, + 0x43002e67, 0x676e6168, 0x74732065, 0x20657461, 0x25206f74, 0x53000a64, + 0x69646e65, 0x5320676e, 0x45544154, 0x4148435f, 0x2045474e, 0x5f77656e, + 0x74617473, 0x75253d65, 0x7453000a, 0x20657461, 0x6e616863, 0x70206567, + 0x69646e65, 0x7320676e, 0x65746174, 0x2064253d, 0x646e6570, 0x3d676e69, + 0x000a6425, 0x65636552, 0x64657669, 0x4d554420, 0x4d000a50, 0x525f4556, + 0x45555145, 0x435f5453, 0x5f45444f, 0x504d5544, 0x746f6e20, 0x6c6c6120, + 0x6465776f, 0x726f6620, 0x6f727020, 0x74636574, 0x73206465, 0x69737365, + 0x2e736e6f, 0x72626e00, 0x66756220, 0x73726566, 0x6c656820, 0x25203a64, + 0x6e692075, 0x20747570, 0x6f207525, 0x75707475, 0x61000a74, 0x6c696176, + 0x726f7720, 0x69207364, 0x6f63206e, 0x71206d6d, 0x65756575, 0x6d203a73, + 0x25206773, 0x6e692075, 0x20667562, 0x6f207525, 0x75627475, 0x75252066, + 0x6552000a, 0x76696563, 0x50206465, 0x0a474e49, 0x636e6500, 0x6665722d, + 0x6172662d, 0x203a656d, 0x65206f6e, 0x736f7078, 0x66206465, 0x656d6172, + 0x206f7420, 0x656c6572, 0x00657361, 0x6e697028, 0x69202967, 0x7265746e, + 0x206c616e, 0x6f727265, 0x69772072, 0x72206874, 0x662d6665, 0x656d6172, + 0x7478652d, 0x74636172, 0x206e6f69, 0x6863656d, 0x73696e61, 0x63002e6d, + 0x2065646f, 0x6425203d, 0x7254000a, 0x69736e61, 0x6e6f6974, 0x46494620, + 0x766f204f, 0x6c667265, 0x5500776f, 0x7075736e, 0x74726f70, 0x6d206465, + 0x61737365, 0x63206567, 0x2e65646f, 0x206f4e00, 0x62746e69, 0x73206675, + 0x65636170, 0x726f6620, 0x73616d20, 0x20726574, 0x65766173, 0x65726120, + 0x65530061, 0x6e69646e, 0x57532067, 0x48435449, 0x495f4445, 0x65000a4e, + 0x722d636e, 0x662d6665, 0x656d6172, 0x6f6e203a, 0x6e652074, 0x6867756f, + 0x746e6920, 0x616e7265, 0x6c73206c, 0x0073746f, 0x6e69424d, 0x69206f66, + 0x7475706e, 0x746f6e20, 0x6c6c6120, 0x6465776f, 0x726f6620, 0x6f727020, + 0x74636574, 0x73206465, 0x69737365, 0x002e6e6f, 0x6e69424d, 0x69206f66, + 0x7475706e, 0x66756220, 0x20726566, 0x20736168, 0x656c6c69, 0x206c6167, + 0x61636f6c, 0x6e6f6974, 0x64614200, 0x69424d20, 0x206f666e, 0x75706e69, + 0x75203b74, 0x5f646573, 0x657a6973, 0x74732820, 0x65646972, 0x295d315b, + 0x73756d20, 0x6f6e2074, 0x65622074, 0x72616c20, 0x20726567, 0x6e616874, + 0x78616d20, 0x7a69735f, 0x73282065, 0x64697274, 0x5d305b65, 0x42000a29, + 0x4d206461, 0x666e6942, 0x6e69206f, 0x20747570, 0x66667562, 0x002e7265, + 0x73206f4e, 0x6f707075, 0x66207472, 0x7420726f, 0x20736968, 0x66667562, + 0x63207265, 0x726f6c6f, 0x726f6620, 0x2e74616d, 0x72616800, 0x72617764, + 0x6f642065, 0x6e207365, 0x7320746f, 0x6f707075, 0x41207472, 0x20434246, + 0x75706e69, 0x6e650074, 0x69646f63, 0x6e20676e, 0x7320746f, 0x6f707075, + 0x64657472, 0x20666f20, 0x73696874, 0x2d303120, 0x20746962, 0x75706e69, + 0x6f662074, 0x74616d72, 0x72616800, 0x72617764, 0x6f642065, 0x6e207365, + 0x7320746f, 0x6f707075, 0x4d207472, 0x465f4556, 0x414d524f, 0x55595f54, + 0x30323456, 0x3130505f, 0x564d0030, 0x55425f45, 0x52454646, 0x4152465f, + 0x465f454d, 0x5f47414c, 0x45544e49, 0x43414c52, 0x65732045, 0x49203a74, + 0x7265746e, 0x6563616c, 0x6e652064, 0x65646f63, 0x746f6e20, 0x70757320, + 0x74726f70, 0x002e6465, 0x67616c46, 0x45564d20, 0x4655425f, 0x5f524546, + 0x4d415246, 0x4c465f45, 0x425f4741, 0x465f544f, 0x54535249, 0x6f687320, + 0x20646c75, 0x20746f6e, 0x73206562, 0x002e7465, 0x67616c46, 0x45564d20, + 0x4655425f, 0x5f524546, 0x4d415246, 0x4c465f45, 0x425f4741, 0x505f544f, + 0x45534552, 0x7320544e, 0x6c756f68, 0x6f6e2064, 0x65622074, 0x74657320, + 0x754d002e, 0x68207473, 0x20657661, 0x69736976, 0x5f656c62, 0x6d617266, + 0x69775f65, 0x20687464, 0x2e30203e, 0x73754d00, 0x61682074, 0x76206576, + 0x62697369, 0x665f656c, 0x656d6172, 0x6965685f, 0x20746867, 0x2e30203e, + 0x73697600, 0x656c6269, 0x6172665f, 0x775f656d, 0x68746469, 0x6f6f7420, + 0x72616c20, 0x76006567, 0x62697369, 0x665f656c, 0x656d6172, 0x6965685f, + 0x20746867, 0x206f6f74, 0x6772616c, 0x6f520065, 0x69746174, 0x6e206e6f, + 0x7320746f, 0x6f707075, 0x64657472, 0x726f6620, 0x42464120, 0x6e692043, + 0x2e747570, 0x61635300, 0x676e696c, 0x746f6e20, 0x70757320, 0x74726f70, + 0x66206465, 0x4120726f, 0x20434246, 0x75706e69, 0x4d002e74, 0x6f727269, + 0x676e6972, 0x20736920, 0x20746f6e, 0x70707573, 0x6574726f, 0x6f662064, + 0x46412072, 0x69204342, 0x7475706e, 0x4641002e, 0x70204342, 0x656e616c, + 0x69203020, 0x6f6e2073, 0x6e692074, 0x6c617620, 0x6d206469, 0x726f6d65, + 0x65722079, 0x6e6f6967, 0x4641002e, 0x70204342, 0x656e616c, 0x73203020, + 0x20657a69, 0x756f6873, 0x6e20646c, 0x6220746f, 0x657a2065, 0x002e6f72, + 0x43424641, 0x746f6220, 0x206d6f74, 0x6e616c70, 0x6f702065, 0x65746e69, + 0x68732072, 0x646c756f, 0x76616820, 0x65622065, 0x7a206e65, 0x2e6f7265, + 0x42464100, 0x6c702043, 0x20656e61, 0x69732031, 0x7320657a, 0x6c756f68, + 0x65622064, 0x72657a20, 0x41002e6f, 0x20434246, 0x75706e69, 0x5f203a74, + 0x74646977, 0x6e695f68, 0x7075735f, 0x6c627265, 0x736b636f, 0x6f6f7420, + 0x616d7320, 0x66206c6c, 0x6620726f, 0x656d6172, 0x61635300, 0x676e696c, + 0x746f6e20, 0x70757320, 0x74726f70, 0x66206465, 0x7020726f, 0x616e616c, + 0x6e692072, 0x2e747570, 0x746f5200, 0x6f697461, 0x6163206e, 0x6f6e206e, + 0x65622074, 0x6e6f6420, 0x6f662065, 0x3a342072, 0x2e323a32, 0x78616d00, + 0x6172665f, 0x775f656d, 0x68746469, 0x6f687320, 0x20646c75, 0x6c206562, + 0x65677261, 0x68742072, 0x7a206e61, 0x2e6f7265, 0x78616d00, 0x6172665f, + 0x685f656d, 0x68676965, 0x68732074, 0x646c756f, 0x20656220, 0x6772616c, + 0x74207265, 0x206e6168, 0x6f72657a, 0x6e55002e, 0x70707573, 0x6574726f, + 0x6c702064, 0x72616e61, 0x66756220, 0x20726566, 0x6f6c6f63, 0x6f662072, + 0x74616d72, 0x7453002e, 0x65646972, 0x6f6f7420, 0x616d7320, 0x74206c6c, + 0x6f68206f, 0x6d20646c, 0x665f7861, 0x656d6172, 0x6469775f, 0x002e6874, + 0x6e616c70, 0x6f745f65, 0x756d2070, 0x62207473, 0x6e692065, 0x6d656d20, + 0x2079726f, 0x69676572, 0x46206e6f, 0x454d4152, 0x2e465542, 0x616c7000, + 0x625f656e, 0x7320746f, 0x6c756f68, 0x65622064, 0x72657a20, 0x6f66206f, + 0x6f6e2072, 0x6e692d6e, 0x6c726574, 0x64656361, 0x72747320, 0x2e6d6165, + 0x64644100, 0x73736572, 0x20666f20, 0x73756e75, 0x70206465, 0x656e616c, + 0x6f687320, 0x20646c75, 0x7a206562, 0x2e6f7265, 0x72745300, 0x20656469, + 0x7520666f, 0x6573756e, 0x6c702064, 0x20656e61, 0x756f6873, 0x6220646c, + 0x657a2065, 0x002e6f72, 0x7473754d, 0x76616820, 0x69762065, 0x6c626973, + 0x72665f65, 0x5f656d61, 0x74646977, 0x3d3c2068, 0x78616d20, 0x6172665f, + 0x775f656d, 0x68746469, 0x545f002e, 0x505f504f, 0x45534552, 0x6f20544e, + 0x455f2072, 0x4f5f444e, 0x54535f46, 0x4d414552, 0x73756d20, 0x65622074, + 0x74657320, 0x6e49002e, 0x696c6176, 0x75622064, 0x72656666, 0x206e6920, + 0x5f45564d, 0x4d4d4f43, 0x4655425f, 0x514e495f, 0x4444415f, 0x65282052, + 0x63657078, 0x20646574, 0x5f65766d, 0x66667562, 0x665f7265, 0x656d6172, + 0x20726f20, 0x5f65766d, 0x66667562, 0x705f7265, 0x6d617261, 0x34002e29, + 0x2d203032, 0x3234203e, 0x6f632032, 0x7265766e, 0x6e6f6973, 0x746f6e20, + 0x70757320, 0x74726f70, 0x002e6465, 0x43534152, 0x41520030, 0x00314353, + 0x43534152, 0x41520032, 0x00334353, 0x43534152, 0x44530034, 0x5600414d, + 0x00414d44, 0x00464552, 0x41544146, 0x52455f4c, 0x5f524f52, 0x45444e55, + 0x454e4946, 0x41460044, 0x5f4c4154, 0x4f525245, 0x46415f52, 0x495f4342, + 0x5455504e, 0x524f435f, 0x54505552, 0x54414600, 0x455f4c41, 0x524f5252, + 0x4246415f, 0x45525f43, 0x4f435f46, 0x50555252, 0x41460054, 0x5f4c4154, + 0x4f525245, 0x534c5f52, 0x435f4449, 0x5f4c5254, 0x4358414d, 0x5f45524f, + 0x5f544f4e, 0x00544553, 0x00033430, 0x0000fdfd, 0x0000fdfd, 0x0000fdfd, + 0x00019a8c, 0x00019a92, 0x00019a98, 0x00019a9e, 0x00019aa4, 0x00019aaa, + 0x00019aaf, 0x00019ab4, 0x00019ab8, 0x00019ace, 0x00019aed, 0x00019b0a, + 0x03100000, 0x026c000c, 0x01a4001e, 0x00000040, 0x00000063, 0x000005cd, + 0x0000018c, 0x00010040, 0x00000080, 0x00000063, 0x000005cd, 0x0000018c, + 0x00020040, 0x000000c0, 0x0000018c, 0x00000bb8, 0x00000384, 0x00030080, + 0x00000180, 0x0000018c, 0x00001770, 0x00000948, 0x00040080, 0x00000300, + 0x0000018c, 0x00002e68, 0x00000948, 0x00050080, 0x000007d0, 0x0000018c, + 0x00002e68, 0x00000948, 0x00060080, 0x00000fa0, 0x00000318, 0x00004d58, + 0x00001290, 0x00070100, 0x00000fa0, 0x00000654, 0x00004f1a, 0x00001fa4, + 0x00080100, 0x00002710, 0x00000654, 0x00009e34, 0x00001fa4, 0x00090100, + 0x000036b0, 0x00000e10, 0x0001a5e0, 0x00004650, 0x000a0200, 0x00004e20, + 0x00001400, 0x00034bc0, 0x00005000, 0x000b0200, 0x00004e20, 0x00002000, + 0x0003c000, 0x00008000, 0x000c0200, 0x0000c350, 0x00002000, 0x0003c000, + 0x00008000, 0x000d0200, 0x0000c350, 0x00002200, 0x0007f800, 0x00008800, + 0x000e0200, 0x00020f58, 0x00005640, 0x00090000, 0x0001af40, 0x000f0200, + 0x0003a980, 0x00009000, 0x000f0000, 0x0002d000, 0x00100200, 0x0003a980, + 0x00009000, 0x001fa400, 0x0002d000, 0x00110200, 0x0003a980, 0x00022000, + 0x003fc000, 0x000aa000, 0x00122000, 0x00075300, 0x00022000, 0x007f8000, + 0x000aa000, 0x00132000, 0x000c3500, 0x00022000, 0x00ff0000, 0x000aa000, + 0x00142000, 0x0006d883, 0x00068843, 0x00063805, 0x0005e7c8, 0x000598df, + 0x000549f6, 0x00050eca, 0x0004d39c, 0x00048dcf, 0x00044800, 0x000401d4, + 0x0003bbac, 0x00038a2c, 0x000358ac, 0x00031b8f, 0x0002de73, 0x0002a605, + 0x00026d9a, 0x0002460a, 0x00021e7b, 0x0001ef3b, 0x0001bffb, 0x000196d7, + 0x00016db6, 0x0001510f, 0x0001346c, 0x0001140a, 0x0000f3ac, 0x0000da64, + 0x0000c11c, 0x0000b1a1, 0x0000a229, 0x000091d7, 0x00008185, 0x00007521, + 0x000068c0, 0x00005fdf, 0x00005700, 0x00004dfd, 0x000044fb, 0x00003d80, + 0x00003605, 0x000030fb, 0x00002bf1, 0x000026b6, 0x0000217b, 0x00001dc5, + 0x00001a12, 0x0000174f, 0x0000148d, 0x00001288, 0x00001083, 0x0048fc31, + 0x0039695a, 0x002d2957, 0x00238678, 0x001bf1f8, 0x0015fb83, 0x00114ac0, + 0x000d9a36, 0x000ab333, 0x00086abb, 0x00069ef8, 0x0005354f, 0x000418d2, + 0x00033908, 0x000288fd, 0x0001fe83, 0x00019194, 0x00013be4, 0x0000f87d, + 0x0000c378, 0x000099c3, 0x000078f3, 0x00005f24, 0x00004ad7, 0x00003adf, + 0x00002e4f, 0x0000246e, 0x00001ca6, 0x0000168a, 0x000011bb, 0x00000df1, + 0x00000af8, 0x000008a1, 0x000006c8, 0x00000557, 0x00000433, 0x0000034d, + 0x00000297, 0x0000020a, 0x0000019a, 0x00000143, 0x000000fd, 0x000000c8, + 0x0000009c, 0x0000007b, 0x00000061, 0x0000004a, 0x0000003b, 0x0000002e, + 0x00000024, 0x0000001c, 0x00000017, 0x00059bae, 0x000552ae, 0x000509ae, + 0x0004c0ae, 0x000478dc, 0x0004310a, 0x0003f188, 0x0003b208, 0x00037203, + 0x00033200, 0x0002f34f, 0x0002b49f, 0x00027f2e, 0x000249bd, 0x00021714, + 0x0001e46e, 0x0001b2c5, 0x0001811c, 0x00015a29, 0x00013336, 0x00010de9, + 0x0000e89a, 0x0000caae, 0x0000acc3, 0x00009771, 0x0000821f, 0x00006d4d, + 0x0000587b, 0x00004aca, 0x00003d17, 0x0000355c, 0x00002da1, 0x0000272c, + 0x000020b3, 0x00001c3b, 0x000017c3, 0x000014bb, 0x000011b3, 0x00000f5f, + 0x00000d0a, 0x00000b6c, 0x000009cd, 0x000008e4, 0x000007fd, 0x0000073b, + 0x00000678, 0x000005fb, 0x0000057d, 0x00000521, 0x000004c8, 0x00000485, + 0x00000443, 0x000734bd, 0x0006def6, 0x00068931, 0x0006336c, 0x0005e1cd, + 0x0005902c, 0x00055269, 0x000514a6, 0x0004cb85, 0x00048266, 0x000438da, + 0x0003ef4d, 0x0003bba6, 0x000387fd, 0x000347f8, 0x000307f1, 0x0002cd6c, + 0x000292e6, 0x000269bd, 0x00024097, 0x00020ed2, 0x0001dd0d, 0x0001b16e, + 0x000185cf, 0x0001675f, 0x000148ee, 0x000126f6, 0x000104fb, 0x0000ea64, + 0x0000cfcf, 0x0000bf92, 0x0000af57, 0x00009e4d, 0x00008d45, 0x0000806c, + 0x00007392, 0x00006a66, 0x00006138, 0x000057e9, 0x00004e9a, 0x000046cd, + 0x00003f00, 0x000039a9, 0x00003454, 0x00002ec3, 0x00002931, 0x0000252e, + 0x0000212c, 0x00001e14, 0x00001afd, 0x000018b3, 0x00001669, 0x00065fec, + 0x00060f92, 0x0005bf38, 0x00056edf, 0x0005213d, 0x0004d39c, 0x00048f2c, + 0x00044abd, 0x00040536, 0x0003bfae, 0x00037b80, 0x00033752, 0x0002fd78, + 0x0002c39f, 0x00028c3d, 0x000254da, 0x00021e17, 0x0001e752, 0x0001bc4a, + 0x00019143, 0x00016540, 0x0001393d, 0x0001153d, 0x0000f13b, 0x0000d700, + 0x0000bcc5, 0x0000a2b3, 0x000088a1, 0x000075d7, 0x0000630d, 0x000057bb, + 0x00004c6c, 0x00004273, 0x0000387b, 0x00003161, 0x00002a45, 0x0000255f, + 0x00002076, 0x00001c76, 0x00001878, 0x00001576, 0x00001271, 0x00001085, + 0x00000e9a, 0x00000cf1, 0x00000b48, 0x00000a31, 0x0000091a, 0x0000084d, + 0x00000780, 0x00000717, 0x000006b1, 0x0006123d, 0x0005c39a, 0x000574f6, + 0x00052652, 0x0004d9df, 0x00048d6e, 0x000448f1, 0x00040473, 0x0003bf64, + 0x00037a54, 0x000336f1, 0x0002f38f, 0x0002ba0d, 0x0002808a, 0x00024a7d, + 0x00021471, 0x0001df21, 0x0001a9d2, 0x00017f78, 0x0001551c, 0x00012c4a, + 0x00010378, 0x0000e2c0, 0x0000c205, 0x0000aa94, 0x00009321, 0x00007c12, + 0x00006500, 0x000055df, 0x000046bd, 0x00003e29, 0x00003594, 0x00002e61, + 0x0000272c, 0x0000220f, 0x00001cf1, 0x0000196e, 0x000015ec, 0x0000133b, + 0x0000108a, 0x00000ea6, 0x00000cc3, 0x00000bb8, 0x00000aae, 0x000009cf, + 0x000008f1, 0x0000086c, 0x000007e6, 0x00000788, 0x00000726, 0x000006ec, + 0x000006ae, 0x2a2a2a2a, 0x53415220, 0x20642543, 0x524f4241, 0x2a2a2054, + 0x000a2a2a, 0x43502020, 0x20202020, 0x7830203d, 0x78383025, 0x2020000a, + 0x20205253, 0x203d2020, 0x30257830, 0x000a7838, 0x41462020, 0x20202052, + 0x7830203d, 0x78383025, 0x2020000a, 0x32255b52, 0x3d205d64, 0x25783020, + 0x0a783830, 0x00000000, 0x000116ab, 0x000116ab, 0x000116ab, 0x000116ab, + 0x63617453, 0x7461206b, 0x0a702520, 0x61747300, 0x25206b63, 0x3d206434, + 0x25783020, 0x0a783830, 0x00000000, 0x2a2a2a2a, 0x53415220, 0x20642543, + 0x524f4241, 0x2a2a2054, 0x000a2a2a, 0x43502020, 0x20202020, 0x7830203d, + 0x78383025, 0x2020000a, 0x20205253, 0x203d2020, 0x30257830, 0x000a7838, + 0x41462020, 0x20202052, 0x7830203d, 0x78383025, 0x2020000a, 0x32255b52, + 0x3d205d64, 0x25783020, 0x0a783830, 0x00000000, 0x00011d4a, 0x00011d4a, + 0x00011d4a, 0x00011d4a, 0x63617453, 0x7461206b, 0x0a702520, 0x61747300, + 0x25206b63, 0x3d206434, 0x25783020, 0x0a783830, 0x00000000, 0x2a2a2a2a, + 0x53415220, 0x20642543, 0x524f4241, 0x2a2a2054, 0x000a2a2a, 0x43502020, + 0x20202020, 0x7830203d, 0x78383025, 0x2020000a, 0x20205253, 0x203d2020, + 0x30257830, 0x000a7838, 0x41462020, 0x20202052, 0x7830203d, 0x78383025, + 0x2020000a, 0x32255b52, 0x3d205d64, 0x25783020, 0x0a783830, 0x00000000, + 0x00012273, 0x00012273, 0x00012273, 0x00012273, 0x000000a0, 0x000000b0, + 0x000000d0, 0x000000e0, 0x00000100, 0x00000120, 0x00000140, 0x00000160, + 0x000001a0, 0x000001c0, 0x00000200, 0x00000240, 0x00000280, 0x000002c0, + 0x00000340, 0x00000380, 0x00000400, 0x00000480, 0x00000500, 0x00000580, + 0x00000680, 0x00000700, 0x00000800, 0x00000900, 0x00000a00, 0x00000b00, + 0x00000d00, 0x00000e00, 0x00001000, 0x00001200, 0x00001400, 0x00001600, + 0x00001a00, 0x00001c00, 0x00002000, 0x00002400, 0x00002800, 0x00002c00, + 0x00003400, 0x00003800, 0x00004000, 0x00004800, 0x00005000, 0x00005800, + 0x00006800, 0x00007000, 0x00008000, 0x00009000, 0x0000a000, 0x0000b000, + 0x0000d000, 0x0000e000, 0x33323130, 0x37363534, 0x00003938, 0x33323130, + 0x37363534, 0x62613938, 0x66656463, 0x72726f43, 0x65747075, 0x6e692064, + 0x20747570, 0x75657571, 0x49002e65, 0x6c61766e, 0x62206469, 0x65666675, + 0x65682072, 0x72656461, 0x206e6920, 0x5f45564d, 0x4d4d4f43, 0x4655425f, + 0x54554f5f, 0x44415f51, 0x002e5244, 0x206f6f54, 0x6772616c, 0x65722065, + 0x73657571, 0x656d2074, 0x67617373, 0x54002e65, 0x6c206f6f, 0x65677261, + 0x66756220, 0x20726566, 0x7373656d, 0x2e656761, 0x766e4900, 0x64696c61, + 0x66756220, 0x20726566, 0x4d206e69, 0x435f4556, 0x5f4d4d4f, 0x5f465542, + 0x5f514e49, 0x52444441, 0x564d002e, 0x3a505245, 0x5f6d6172, 0x6e697270, + 0x66756274, 0x20736920, 0x20746f6e, 0x69617661, 0x6c62616c, 0x000a2e65, + 0x5245564d, 0x72203a50, 0x705f6d61, 0x746e6972, 0x75645f66, 0x6620706d, + 0x206d6f72, 0x70257830, 0x5052000a, 0x4d554454, 0x6c663a50, 0x253d6761, + 0x69202c78, 0x7865646e, 0x2c75253d, 0x5f727720, 0x3d746e63, 0x202c7525, + 0x635f6472, 0x253d746e, 0x000a2e75, 0x252d5746, 0x25203a75, 0x564d0073, + 0x3a505245, 0x67616c66, 0x2c78253d, 0x78646920, 0x2c75253d, 0x5f727720, + 0x3d746e63, 0x202c7525, 0x635f6472, 0x253d746e, 0x000a2e75, 0x34302520, + 0x38250078, 0x73253a78, 0x2520000a, 0x00783230, 0x1007f000, 0x49574558, + 0x35565644, 0x2d37562f, 0x34363248, 0x3a434e45, 0x65720020, 0x657a6973, + 0x7470203a, 0x78302072, 0x78383025, 0x77656e20, 0x7a69735f, 0x75252065, + 0x766d000a, 0x656d5f65, 0x65725f6d, 0x657a6973, 0x6c616d00, 0x3a636f6c, + 0x7a697320, 0x75252065, 0x616d202c, 0x75252078, 0x6572202c, 0x6e6f6967, + 0x2c752520, 0x676f6c20, 0x6c615f32, 0x206e6769, 0x000a7525, 0x6c6c616d, + 0x203a636f, 0x75746572, 0x64656e72, 0x25783020, 0x6d000a70, 0x6d5f6576, + 0x615f6d65, 0x636f6c6c, 0x6c6c4100, 0x7461636f, 0x6d206465, 0x726f6d65, + 0x61682079, 0x72772073, 0x20676e6f, 0x67696c61, 0x6e656d6e, 0x78450074, + 0x74636570, 0x61206465, 0x636f6c6c, 0x64657461, 0x6d656d20, 0x2079726f, + 0x50206e69, 0x45544f52, 0x44455443, 0x67657220, 0x2e6e6f69, 0x70784500, + 0x65746365, 0x6c612064, 0x61636f6c, 0x20646574, 0x6f6d656d, 0x69207972, + 0x5246206e, 0x42454d41, 0x72204655, 0x6f696765, 0x6e002e6e, 0x7720746f, + 0x69746961, 0x2500676e, 0x64692073, 0x635f656c, 0x656c6379, 0x25000a73, + 0x2d252073, 0x20733831, 0x64353125, 0x7325000a, 0x746f5420, 0x695f6c61, + 0x20656c64, 0x20202020, 0x25202020, 0x0a643531, 0x726f6300, 0x64252065, + 0x20732520, 0x30322d25, 0x6f632073, 0x253d6564, 0x70206433, 0x253d6369, + 0x70206433, 0x705b736f, 0x283d5d75, 0x2c643325, 0x29643325, 0x6b6c6320, + 0x0a64253d, 0x726f6300, 0x64252065, 0x20732520, 0x30322d25, 0x20202073, + 0x20202020, 0x70202020, 0x253d6369, 0x70206433, 0x705b736f, 0x283d5d75, + 0x2c643325, 0x29643325, 0x6f6e000a, 0x65732074, 0x61772074, 0x6e697469, + 0x4f530067, 0x45525f43, 0x54532e46, 0x53555441, 0x20202020, 0x20202020, + 0x78302020, 0x000a7825, 0x5f434f53, 0x2e464552, 0x464e4f43, 0x20204749, + 0x20202020, 0x20202020, 0x78257830, 0x4f53000a, 0x45525f43, 0x494c2e46, + 0x45524556, 0x20202046, 0x20202020, 0x78302020, 0x000a7825, 0x5f434f53, + 0x2e464552, 0x504f5453, 0x4b53414d, 0x20202020, 0x20202020, 0x78257830, + 0x4f53000a, 0x434d5f43, 0x4154532e, 0x20205452, 0x20202020, 0x20202020, + 0x78302020, 0x000a7825, 0x5f434f53, 0x532e434d, 0x55544154, 0x20202053, + 0x20202020, 0x20202020, 0x78257830, 0x4f53000a, 0x52545f43, 0x54532e46, + 0x53555441, 0x20202020, 0x20202020, 0x78302020, 0x000a7825, 0x5f434f53, + 0x2e465254, 0x53474244, 0x55544154, 0x20202053, 0x20202020, 0x78257830, + 0x4f53000a, 0x42445f43, 0x54432e4c, 0x20204c52, 0x20202020, 0x20202020, + 0x78302020, 0x000a7825, 0x5f434f53, 0x2e4c4244, 0x4c525443, 0x20202031, + 0x20202020, 0x20202020, 0x78257830, 0x4f53000a, 0x42445f43, 0x54532e4c, + 0x53555441, 0x20202020, 0x20202020, 0x78302020, 0x000a7825, 0x5f434f53, + 0x2e4c4244, 0x54415453, 0x20315355, 0x20202020, 0x20202020, 0x78257830, + 0x4f53000a, 0x42445f43, 0x54532e4c, 0x53555441, 0x20202032, 0x20202020, + 0x78302020, 0x000a7825, 0x5f434f53, 0x2e4c4244, 0x54415453, 0x20335355, + 0x20202020, 0x20202020, 0x78257830, 0x4f53000a, 0x49425f43, 0x52545354, + 0x2e4d4145, 0x41424341, 0x54532e44, 0x53555441, 0x20202020, 0x30202020, + 0x0a782578, 0x434f5300, 0x5449425f, 0x45525453, 0x4d2e4d41, 0x54494244, + 0x41564153, 0x20204c49, 0x20202020, 0x78302020, 0x000a7825, 0x5f434f53, + 0x53544942, 0x41455254, 0x45442e4d, 0x54435f46, 0x20204c52, 0x20202020, + 0x20202020, 0x25783020, 0x53000a78, 0x425f434f, 0x54535449, 0x4d414552, + 0x564d482e, 0x44455250, 0x4154532e, 0x20535554, 0x20202020, 0x78257830, + 0x4f53000a, 0x49425f43, 0x52545354, 0x2e4d4145, 0x42414348, 0x532e4441, + 0x55544154, 0x20202053, 0x30202020, 0x0a782578, 0x434f5300, 0x2e454d5f, + 0x54415453, 0x20205355, 0x20202020, 0x20202020, 0x25783020, 0x53000a78, + 0x565f434f, 0x2e414d44, 0x5f515249, 0x54415453, 0x20205355, 0x30202020, + 0x0a782578, 0x4f532000, 0x44565f43, 0x6520414d, 0x3d305f71, 0x64207825, + 0x3d305f71, 0x65207825, 0x3d315f71, 0x64207825, 0x3d315f71, 0x73207825, + 0x635f6372, 0x3d6c7274, 0x000a7825, 0x52414853, 0x525f4445, 0x702e4d41, + 0x5f657069, 0x74617473, 0x20202065, 0x28207525, 0x0a297325, 0x41485300, + 0x5f444552, 0x2e4d4152, 0x6c5f7369, 0x5f747361, 0x65726f63, 0x0a752520, + 0x41485300, 0x5f444552, 0x2e4d4152, 0x5f626f6a, 0x73616870, 0x20202065, + 0x0a752520, 0x41485300, 0x5f444552, 0x2e4d4152, 0x5f626f6a, 0x74617473, + 0x20202065, 0x0a782520, 0x41485300, 0x5f444552, 0x2e4d4152, 0x7074756f, + 0x735f7475, 0x70697274, 0x635f7365, 0x6c706d6f, 0x64657465, 0x0a752520, + 0x41485300, 0x5f444552, 0x2e4d4152, 0x71657261, 0x7274735f, 0x73657069, + 0x7373695f, 0x20646575, 0x000a7525, 0x414d4453, 0x5541462e, 0x2020544c, + 0x20202020, 0x20202020, 0x20202020, 0x78257830, 0x7453000a, 0x73757461, + 0x20666f20, 0x636f6c62, 0x2064656b, 0x6b736174, 0x6f662073, 0x6f632072, + 0x25206572, 0x63203a75, 0x253d6b6c, 0x000a2075, 0x74617473, 0x25207375, + 0x6f742078, 0x64252070, 0x746e6320, 0x20642520, 0x756e636d, 0x7825206d, + 0x626d000a, 0x3d6d756e, 0x72207825, 0x766d656d, 0x0a78253d, 0x434f5300, + 0x5359535f, 0x4c525443, 0x4e56532e, 0x20564552, 0x20202020, 0x20202020, + 0x20202020, 0x20202020, 0x000a7825, 0x525f5746, 0x20205645, 0x20202020, + 0x20202020, 0x20202020, 0x20202020, 0x20202020, 0x20202020, 0x25202020, + 0x53000a78, 0x49535345, 0x525f4e4f, 0x612e4d41, 0x76697463, 0x6f635f65, + 0x20736572, 0x20202020, 0x20202020, 0x75252020, 0x6946000a, 0x61776d72, + 0x73206572, 0x75746174, 0x666f2073, 0x73616d20, 0x20726574, 0x726f6328, + 0x64252065, 0x63203a29, 0x253d6b6c, 0x000a2064, 0x53534553, 0x5f4e4f49, + 0x2e4d4152, 0x6d726966, 0x65726177, 0x6e695f73, 0x6573755f, 0x20202020, + 0x25202020, 0x25202c64, 0x25202c64, 0x25202c64, 0x25202c64, 0x25202c64, + 0x25202c64, 0x25202c64, 0x53000a64, 0x49535345, 0x525f4e4f, 0x6d2e4d41, + 0x65747361, 0x6f635f72, 0x20206572, 0x20202020, 0x20202020, 0x75252020, + 0x4553000a, 0x4f495353, 0x41525f4e, 0x616d2e4d, 0x72657473, 0x6c6c615f, + 0x7461636f, 0x20206465, 0x20202020, 0x0a642520, 0x53455300, 0x4e4f4953, + 0x4d41525f, 0x73616d2e, 0x5f726574, 0x6e676973, 0x20736c61, 0x20202020, + 0x20202020, 0x78383025, 0x38302520, 0x30252078, 0x000a7838, 0x53534553, + 0x5f4e4f49, 0x2e4d4152, 0x74636970, 0x73657275, 0x5f6e695f, 0x65706970, + 0x20202020, 0x25202020, 0x53000a64, 0x49535345, 0x525f4e4f, 0x702e4d41, + 0x5f657069, 0x5f636970, 0x6c696174, 0x20202020, 0x20202020, 0x75252020, + 0x4553000a, 0x4f495353, 0x41525f4e, 0x69702e4d, 0x705f6570, 0x685f6369, + 0x20646165, 0x20202020, 0x20202020, 0x0a752520, 0x53455300, 0x4e4f4953, + 0x4d41525f, 0x6e65702e, 0x676e6964, 0x6174735f, 0x20206574, 0x20202020, + 0x20202020, 0x000a7525, 0x53534553, 0x5f4e4f49, 0x2e4d4152, 0x73736573, + 0x5f6e6f69, 0x74617473, 0x20202065, 0x20202020, 0x25202020, 0x53000a75, + 0x49535345, 0x525f4e4f, 0x632e4d41, 0x6c706d6f, 0x64657465, 0x6369705f, + 0x65727574, 0x20202073, 0x75252020, 0x4553000a, 0x4f495353, 0x41525f4e, + 0x756f2e4d, 0x74757074, 0x6675625f, 0x5f726566, 0x64616568, 0x6172665f, + 0x2020656d, 0x000a7525, 0x53534553, 0x5f4e4f49, 0x2e4d4152, 0x7074756f, + 0x625f7475, 0x65666675, 0x65685f72, 0x20206461, 0x20202020, 0x75252020, + 0x4553000a, 0x4f495353, 0x41525f4e, 0x69702e4d, 0x72757463, 0x695f7365, + 0x65757373, 0x6f745f64, 0x7069705f, 0x20202065, 0x000a7525, 0x53534553, + 0x5f4e4f49, 0x2e4d4152, 0x6576696c, 0x7274735f, 0x5f657069, 0x64616568, + 0x20202020, 0x25202020, 0x53000a75, 0x49535345, 0x525f4e4f, 0x6c2e4d41, + 0x5f657669, 0x69727473, 0x745f6570, 0x2e6c6961, 0x65646e69, 0x75252078, + 0x4553000a, 0x4f495353, 0x41525f4e, 0x696c2e4d, 0x735f6576, 0x70697274, + 0x61745f65, 0x702e6c69, 0x64696369, 0x0a752520, 0x53455300, 0x4e4f4953, + 0x4d41525f, 0x76696c2e, 0x74735f65, 0x65706972, 0x6961745f, 0x65722e6c, + 0x20207966, 0x000a7525, 0x53534553, 0x5f4e4f49, 0x2e4d4152, 0x5f636e65, + 0x74617473, 0x74735f73, 0x6761726f, 0x6c732e65, 0x6d5f746f, 0x206b7361, + 0x0a752520, 0x53455300, 0x4e4f4953, 0x4d41525f, 0x6f74732e, 0x6e697070, + 0x6f6e5f67, 0x20626f5f, 0x20202020, 0x20202020, 0x000a7525, 0x53534553, + 0x5f4e4f49, 0x2e4d4152, 0x5f736964, 0x725f6269, 0x7a697365, 0x20202065, + 0x20202020, 0x25202020, 0x6d000a64, 0x725f7861, 0x64697365, 0x5f6c6175, + 0x65676170, 0x20202073, 0x20202020, 0x20202020, 0x20202020, 0x000a6425, + 0x65676170, 0x756f635f, 0x2020746e, 0x20202020, 0x20202020, 0x20202020, + 0x20202020, 0x20202020, 0x0a642520, 0x61702000, 0x695f6567, 0x7865646e, + 0x20642520, 0x65207025, 0x7974706d, 0x20642520, 0x695f7277, 0x25207864, + 0x64722064, 0x7864695f, 0x20642520, 0x67617020, 0x65725f65, 0x30735f6d, + 0x20642520, 0x65676170, 0x6d65725f, 0x2031735f, 0x000a6425, 0x53534553, + 0x5f4e4f49, 0x2e4d4152, 0x7074756f, 0x625f7475, 0x65666675, 0x656e5f72, + 0x20207478, 0x25202020, 0x53000a75, 0x49535345, 0x525f4e4f, 0x6f2e4d41, + 0x75707475, 0x75625f74, 0x72656666, 0x6961745f, 0x2020206c, 0x75252020, + 0x4553000a, 0x4f495353, 0x41525f4e, 0x756f2e4d, 0x74757074, 0x6675625f, + 0x5f726566, 0x64616568, 0x20202020, 0x0a752520, 0x202d2d00, 0x74697773, + 0x6e696863, 0x2d2d2067, 0x4553000a, 0x4f495353, 0x41525f4e, 0x656e2e4d, + 0x625f7478, 0x5f746f6f, 0x656b6f74, 0x2020206e, 0x20202020, 0x0a752520, + 0x53455300, 0x4e4f4953, 0x4d41525f, 0x626f6a2e, 0x6575715f, 0x742e6575, + 0x6e656b6f, 0x20202020, 0x20202020, 0x000a7525, 0x53534553, 0x5f4e4f49, + 0x2e4d4152, 0x5f626f6a, 0x69746361, 0x20206576, 0x20202020, 0x20202020, + 0x25202020, 0x53000a75, 0x49535345, 0x525f4e4f, 0x6a2e4d41, 0x705f626f, + 0x65736168, 0x756f635f, 0x7265746e, 0x20202020, 0x75252020, 0x4553000a, + 0x4f495353, 0x41525f4e, 0x6f6a2e4d, 0x74735f62, 0x5f747261, 0x20636970, + 0x20202020, 0x20202020, 0x0a752520, 0x53455300, 0x4e4f4953, 0x4d41525f, + 0x626f6a2e, 0x646e655f, 0x6369705f, 0x20202020, 0x20202020, 0x20202020, + 0x000a7525, 0x53534553, 0x5f4e4f49, 0x2e4d4152, 0x65727473, 0x705f6d61, + 0x685f6369, 0x20646165, 0x20202020, 0x25202020, 0x2d000a75, 0x6c73202d, + 0x20656369, 0x75657571, 0x2d207365, 0x53000a2d, 0x49535345, 0x525f4e4f, + 0x662e4d41, 0x5f6f6669, 0x63696c73, 0x6f6a5f65, 0x20202062, 0x20202020, + 0x64252020, 0x746e6520, 0x73656972, 0x4553000a, 0x4f495353, 0x41525f4e, + 0x69662e4d, 0x735f6f66, 0x6563696c, 0x6d6f635f, 0x74656c70, 0x20202065, + 0x20642520, 0x72746e65, 0x0a736569, 0x656d2000, 0x7274735f, 0x5f657069, + 0x20736f70, 0x64253d69, 0x736f7020, 0x0a64253d, 0x76696c00, 0x6f6a5f65, + 0x733e2d62, 0x63746977, 0x65725f68, 0x73657571, 0x20202074, 0x20202020, + 0x20202020, 0x0a752520, 0x76696c00, 0x6f6a5f65, 0x723e2d62, 0x65757165, + 0x64657473, 0x6d756e5f, 0x5f726562, 0x635f666f, 0x7365726f, 0x0a752520, + 0x76696c00, 0x6f6a5f65, 0x633e2d62, 0x7365726f, 0x6f6f625f, 0x20646574, + 0x20202020, 0x20202020, 0x20202020, 0x0a752520, 0x76696c00, 0x6f6a5f65, + 0x703e2d62, 0x5f657069, 0x74697773, 0x20206863, 0x20202020, 0x20202020, + 0x20202020, 0x0a752520, 0x52545300, 0x004d4145, 0x43494c53, 0x4d002045, + 0x20202045, 0x41525400, 0x0020534e, 0x5054554f, 0x50005455, 0x51455049, + 0x41570020, 0x4f005449, 0x52524556, 0x31004e55, 0x41505453, 0x50004547, + 0x44494349, 0x544e4900, 0x00465542, 0x4556494c, 0x53524150, 0x4c004445, + 0x43455649, 0x00504d4f, 0x49434950, 0x5845444e, 0x4c414e00, 0x504e4900, + 0x45004349, 0x554f434e, 0x46554254, 0x45525000, 0x51455356, 0x46455200, + 0x4b4e4142, 0x5345525f, 0x4f005445, 0x55505455, 0x4c465f54, 0x00485355, + 0x44524c43, 0x45004250, 0x445f434e, 0x505f5045, 0x52004349, 0x535f4e55, + 0x45544154, 0x494c5300, 0x465f4543, 0x004f4649, 0x4556494c, 0x494c535f, + 0x44004543, 0x45555145, 0x45004555, 0x4555514e, 0x43004555, 0x52004c4f, + 0x44495345, 0x004c4155, 0x45544942, 0x4553434e, 0x49420051, 0x434e4554, + 0x00465542, 0x4d434e45, 0x464e4942, 0x4143004f, 0x42434142, 0x00535449, + 0x50564d48, 0x00444552, 0x4f424552, 0x4445544f, 0x4f525000, 0x43005342, + 0x544e554f, 0x50560053, 0x00434239, 0x56455250, 0x4152465f, 0x4500454d, + 0x55425458, 0x52454646, 0x50495000, 0x52004445, 0x52464645, 0x00454d41, + 0x4556494c, 0x544f4c53, 0x424f4a00, 0x49575300, 0x00484354, 0x49464552, + 0x00454c44, 0x45504950, 0x49415244, 0x4f52004e, 0x46554257, 0x424f4a00, + 0x544f4c53, 0x574f5200, 0x4e554f43, 0x00524554, 0x00465252, 0x414d4456, + 0x00435253, 0x4e415254, 0x524f4653, 0x5252004d, 0x41524646, 0x4100454d, + 0x00514552, 0x495f454d, 0x00454c44, 0x414d4456, 0x5254535f, 0x00455049, + 0x4f4c4f43, 0x42520043, 0x465f4655, 0x4853554c, 0x444e4500, 0x4152465f, + 0x5200454d, 0x54535f43, 0x4d005441, 0x5f494e49, 0x4d415246, 0x55425f45, + 0x424d0046, 0x4f464e49, 0x004e495f, 0x4e49424d, 0x4f5f4f46, 0x52005455, + 0x44495345, 0x5f4c4155, 0x0054554f, 0x52504f54, 0x4d00574f, 0x52540043, + 0x51524946, 0x4d445300, 0x44005741, 0x54535045, 0x45504952, 0x4c424400, + 0x4f4c535f, 0x424d0054, 0x51524949, 0x52494300, 0x00465542, 0x5249424d, + 0x00444145, 0x56455250, 0x49525453, 0x50004550, 0x4f434349, 0x5400504d, + 0x4d004652, 0x464e4942, 0x45485f4f, 0x52454441, 0x4c424400, 0x52444c5f, + 0x4d445600, 0x52545341, 0x00455049, 0x414d4456, 0x544f4c53, 0x52545300, + 0x5f455049, 0x504d4f43, 0x58495000, 0x4c5f4e49, 0x0044414f, 0x5f574f52, + 0x524f5453, 0x4d530045, 0x424d5f56, 0x4f464e49, 0x4c424400, 0x0053425f, + 0x5f465254, 0x524f5453, 0x4f435f45, 0x5254004d, 0x54535f46, 0x45504952, + 0x504d4f43, 0x52544300, 0x504f004c, 0x50004e45, 0x45535241, 0x504d4f43, + 0x534f4500, 0x534f4500, 0x4655425f, 0x4f455200, 0x52454452, 0x41524600, + 0x4953454d, 0x5000455a, 0x49535948, 0x00000044, 0x004e5552, 0x00424a50, + 0x00545753, 0x00424a43, 0x0005a000, 0x0005a04c, 0x00000000, 0x0005a098, + 0x0005a0f4, 0x0005a130, 0x0005a17c, 0x0001b331, 0x0001b338, 0x00000000, + 0x0001b33f, 0x0001b345, 0x0001b34c, 0x0001b353, 0x44532020, 0x2020414d, + 0x61747320, 0x30737574, 0x20202020, 0x74617473, 0x20317375, 0x207c2020, + 0x6c637273, 0x20206e65, 0x6c747364, 0x7c206e65, 0x70747320, 0x7c206e65, + 0x70747320, 0x7c206469, 0x76656420, 0x65702023, 0x6e69646e, 0x20000a67, + 0x32255b20, 0x20205d64, 0x78383025, 0x25202020, 0x20783830, 0x207c2020, + 0x20643625, 0x64362520, 0x25207c20, 0x25206432, 0x7c206432, 0x78322520, + 0x78322520, 0x23207c20, 0x25206425, 0x20202c64, 0x20642523, 0x000a6425, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x02020100, 0x03030303, 0x04040404, + 0x04040404, 0x05050505, 0x05050505, 0x05050505, 0x05050505, 0x06060606, + 0x06060606, 0x06060606, 0x06060606, 0x06060606, 0x06060606, 0x06060606, + 0x06060606, 0x07070707, 0x07070707, 0x07070707, 0x07070707, 0x07070707, + 0x07070707, 0x07070707, 0x07070707, 0x07070707, 0x07070707, 0x07070707, + 0x07070707, 0x07070707, 0x07070707, 0x07070707, 0x07070707, 0x08080808, + 0x08080808, 0x08080808, 0x08080808, 0x08080808, 0x08080808, 0x08080808, + 0x08080808, 0x08080808, 0x08080808, 0x08080808, 0x08080808, 0x08080808, + 0x08080808, 0x08080808, 0x08080808, 0x08080808, 0x08080808, 0x08080808, + 0x08080808, 0x08080808, 0x08080808, 0x08080808, 0x08080808, 0x08080808, + 0x08080808, 0x08080808, 0x08080808, 0x08080808, 0x08080808, 0x08080808, + 0x08080808, 0x63617453, 0x7461206b, 0x0a702520, 0x61747300, 0x25206b63, + 0x3d206434, 0x25783020, 0x0a783830, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x80908090, 0x00100010, 0x81918191, 0x01110111, + 0x85958595, 0x05150515, 0x85958595, 0x05150515, 0x80908090, 0x00100010, + 0x81918191, 0x01110111, 0x85958595, 0x05150515, 0x85958595, 0x05150515, + 0x00204060, 0x02224262, 0x0a2a4a6a, 0x0a2a4a6a, 0x00204060, 0x02224262, + 0x0a2a4a6a, 0x0a2a4a6a, 0x01000000, 0x01010101, 0x01010101, 0x01010101, + 0x01010101, 0x01010101, 0x01010101, 0x01010101, 0x02020201, 0x02020202, + 0x02020202, 0x02020202, 0x02020202, 0x02020202, 0x02020202, 0x02020202, + 0x00020202, 0x844e0920, 0x844e0924, 0x844e0922, 0x844e0926, 0x844e0921, + 0x844e0925, 0x844e0923, 0x844e0927, 0x844e3fe8, 0x844e3fe8, 0x844e3fe8, + 0x844e3fe8, 0x844e3fe8, 0x844e3fe8, 0x844e3fe8, 0x844e3fe8, 0x8401ffe0, + 0x8400fff0, 0x8400dff8, 0x8400dffc, 0x00000000, 0x00004000, 0x00008000, + 0x0000c000, 0x00001000, 0x00005000, 0x00009000, 0x0000d000, 0x00000100, + 0x00004100, 0x00008100, 0x0000c100, 0x00001100, 0x00005100, 0x00009100, + 0x0000d100, 0x849e0a60, 0x849e0068, 0x849e0a24, 0x849e002c, 0x849e0a42, + 0x849e004a, 0x849e0a06, 0x849e000e, 0x849e0a61, 0x849e0069, 0x849e0a25, + 0x849e002d, 0x849e0a43, 0x849e004b, 0x849e0a07, 0x849e000f, 0x815fff01, + 0x815ff820, 0x815fc143, 0x80efc140, 0x80efc163, 0x80efc162, 0x80efc141, + 0x80efc141, 0x824fffe0, 0x824ff960, 0x824ff961, 0x824e5368, 0x824e5369, + 0x824e536a, 0x824e536b, 0x82429b78, 0x81bffba0, 0x81bffba1, 0x81b72db0, + 0x83c7ffe0, 0x83c6fff0, 0x83c6dff8, 0x83c6dbfc, 0x83c6db7e, 0x83c1ffe0, + 0x83c0bff0, 0x83c09ff8, 0x83c09bfc, 0x83c09b7e, 0x83c09b7f, 0x40ab4107, + 0x1e0f43d8, 0x23130115, 0x03030524, 0x1e040314, 0x53420707, 0x58410342, + 0x192586f4, 0x1d110314, 0xa8010304, 0x05fe0bf2, 0xc8040301, 0x53fe0bf2, + 0x01258622, 0x05140314, 0xa8040304, 0x33fe0bf2, 0x0001f505, 0xf5ff0218, + 0x02180403, 0x234027ff, 0xfde8000e, 0x0e030435, 0xf5fde800, 0x02181002, + 0x1403f5ff, 0x23ff0218, 0xfde7f00e, 0xfe0b0435, 0xd007fc4e, 0x03334327, + 0x1d07c107, 0x120004f5, 0xe307ff02, 0x13330d47, 0x100014f1, 0x48dcff02, + 0x033427f8, 0x0013f501, 0x87ff0212, 0x0043f540, 0x23ff0212, 0x273c87e6, + 0x0034f540, 0x83ff0216, 0x3d070fec, 0x330e2c33, 0x002f8333, 0x333ff000, + 0xe2ab10ec, 0x140034f5, 0x3ef5ff02, 0xff021404, 0x8e0ef49b, 0x07f64efc, + 0x079107b2, 0x406c27a0, 0x31aef893, 0xff7ea704, 0x451efdef, 0xbc10cb07, + 0x01c60741, 0x33d40784, 0x0541c3d6, 0x74de2384, 0x7411fefe, 0x53184c33, + 0x42cc1d4c, 0x032c07f6, 0x0723e323, 0x7e19070d, 0x4027ff17, 0x270ef49b, + 0x072a0700, 0x7e3c071d, 0xac0bff17, 0x9c0bbc2b, 0x8ebabfd6, 0xff2ea7f6, + 0x031efdef, 0x2411f3e8, 0x4ddc3327, 0x0bf6fc6a, 0x07fb4efe, 0x3ec007b1, + 0x070c07e5, 0xb31ea72b, 0xfb0efefe, 0x4efed25e, 0x07c007fb, 0x07cf3eb1, + 0x273b071c, 0xb32ea700, 0xfb0efefe, 0x27feca5e, 0x0000114f, 0xa0f49b10, + 0x01f50533, 0xff021800, 0x180402f5, 0x3027ff02, 0xe8000e23, 0x270335fd, + 0x0e03234c, 0xf5fde800, 0x02181004, 0x1402f5ff, 0x23ff0218, 0xfde7f00e, + 0xfe0b0335, 0x330f0c83, 0x7e0e2303, 0x0439ffff, 0x019e44c6, 0xfe0b0014, + 0x04030333, 0xf3e8031e, 0x100004f1, 0x3327ff02, 0xfc6a4ddc, 0x33fe0bf2, + 0xf5432705, 0x02180004, 0x0402f5ff, 0x27ff0218, 0x000e2340, 0x0435fde8, + 0xe8000e03, 0x1001f5fd, 0xf5ff0218, 0x02181402, 0xf00e23ff, 0x0435fde7, + 0xfe4efe0b, 0x0002a4be, 0x302706f6, 0xffff4ea7, 0x6043bdfe, 0x0af3131e, + 0x306af493, 0x8e430504, 0xbefe4efe, 0xf60002fa, 0xa7302706, 0xfeffff4e, + 0x1e6043bd, 0x930af313, 0x04304bf4, 0xfe8e4305, 0x1cbefe4e, 0x04cc000b, + 0xa730271b, 0xfeffff4e, 0x1e6043bd, 0x130d03c4, 0xf493a9f3, 0x05043028, + 0x8e002743, 0xa7fc4efe, 0xffffff4e, 0xc6274d99, 0x1e0027d4, 0x74c0be05, + 0xff4ea7fe, 0x4411feff, 0x0e1843f9, 0xc407ff00, 0xce233f4b, 0x2efff1e8, + 0x1e0027d3, 0x07300710, 0xdf0ea72d, 0x1c07fff1, 0xfe753cbe, 0x07e6c119, + 0xffff3ea7, 0xbd4127ff, 0x9906a434, 0x40270f33, 0x270ef49b, 0xf5338741, + 0x02b04034, 0x27123cff, 0x93fc8e00, 0x042fb7fc, 0xffffdea7, 0x8bc001fe, + 0x990536f0, 0x47760ad4, 0x04c8f41e, 0x7534be15, 0xff4ea7fe, 0x4499feff, + 0x1601270a, 0x1e002745, 0x27012703, 0xff4ea730, 0x439dfeff, 0xa7fc8e0a, + 0xfdebef3e, 0x32052027, 0x00004e27, 0x27341504, 0x0ef49b40, 0x32053823, + 0x00004f27, 0x34150803, 0xf49b4027, 0x4efe0b0e, 0x390e19fd, 0x333e070d, + 0x27012933, 0xf50e0743, 0x02120034, 0x470333ff, 0x0004f13e, 0xdcff0210, + 0x2427f848, 0x02f53103, 0xff021200, 0x41073387, 0x120032f5, 0x4a03ff02, + 0x30272d87, 0x160023f5, 0x4c83ff02, 0x532e070f, 0x33233316, 0x4c33141c, + 0xf541ab10, 0x02140023, 0x0424f5ff, 0x9bff0214, 0xfd8e0ef3, 0xfe93fc4e, + 0x99042ef0, 0xed995ce0, 0x2bd0ce5d, 0x8748e2c1, 0x50e4c13d, 0x172031f1, + 0x420bff00, 0x180032f1, 0x410bff00, 0x34f5428b, 0xff001720, 0xd4fd4027, + 0xff0017e0, 0x3087471e, 0xf148e1c1, 0x00172034, 0x0032f1ff, 0x0bff0018, + 0x27428b41, 0x2034f5c0, 0xfdff0017, 0x0017e00c, 0x50e1c1ff, 0x4d871806, + 0x172043f1, 0x42f1ff00, 0xff001800, 0x328b310b, 0x172043f5, 0xdcfdff00, + 0xff0017e0, 0x2e72f493, 0x27434904, 0x27310320, 0x0f429d00, 0xfc8e434d, + 0xf293fe4e, 0x29042e5c, 0x09236924, 0xa7340b21, 0xfd4fff4e, 0x312b4e11, + 0xe1a74ea7, 0x08409dfe, 0x434d4e05, 0x22992349, 0x9d436d08, 0x08530942, + 0x402705b6, 0x070ef49b, 0x1eff8b00, 0x73400709, 0xe8410342, 0xa74ea7f4, + 0x3027fee1, 0x439d4305, 0x93fe8e08, 0x042e0bf1, 0x966c12c1, 0x08149928, + 0xdfff3ea7, 0x0c4c33fd, 0x00004ea3, 0x0834d510, 0x0832d502, 0xff4ea702, + 0x4411fd4f, 0x0b6c14c5, 0xa7fe4efe, 0xfffaa30e, 0x001194be, 0x0627002c, + 0xf393fe8e, 0xc1042dcc, 0x31896034, 0x2844890c, 0xe0072007, 0xe5332333, + 0xe22b419b, 0x236834c5, 0xfffa94ee, 0x27643c03, 0x03320146, 0x03e20534, + 0x27f4a8e4, 0x6004fd42, 0xa7ff0005, 0xffffff3e, 0x34bd4127, 0x339906a6, + 0x9b40270f, 0x41270ef4, 0x34f53387, 0xff02b040, 0x30270027, 0x2d72f493, + 0x0e439d04, 0xfa4efe8e, 0x2d66fd93, 0x0edc9904, 0xf660dac1, 0xa700c5cf, + 0xfffaf30e, 0x0010c6be, 0x0fc4b007, 0xffffffff, 0xff4ea727, 0x4411feff, + 0xffff3ea7, 0x9433d1ff, 0xf5448706, 0x00153043, 0xa73127ff, 0xfdcfff4e, + 0x43c50527, 0xa7fa8e64, 0xfd4fff4e, 0xdcc54401, 0x66d49d6c, 0x43334007, + 0x2906f393, 0xd0f09304, 0x41f10430, 0xff000520, 0x051c42f1, 0x3ce3ff00, + 0x7f0ce37f, 0x3c033419, 0xf930c280, 0x2ceafc93, 0x60c0c104, 0xfe70a6be, + 0xb4fd4027, 0xff000510, 0xfaf34ea7, 0x664479ff, 0xf10ea745, 0xf5befffa, + 0x4127000f, 0xcdc13027, 0x0ec49d60, 0xd499c32d, 0x104cc018, 0x28d18919, + 0xbe34d0c1, 0xabff9de7, 0x89c04d0f, 0x040b4cd4, 0x1e0cc08d, 0x0cc38d06, + 0xf393c34d, 0x27042c94, 0x0e349d44, 0x0027a451, 0xaa993425, 0x8d402750, + 0x40277834, 0xc5643a9d, 0xfa8e7434, 0xd107fd4e, 0x12c21111, 0x0104193e, + 0x0b4533d3, 0x39211b32, 0x0043f501, 0xf5ff0218, 0x02180442, 0x233027ff, + 0xfde8004e, 0x4e034335, 0xf5fde800, 0x02181041, 0x1442f5ff, 0x27ff0218, + 0xf04e2320, 0x4335fde7, 0x212b031e, 0xeba6de21, 0x1b26d131, 0xe20b0419, + 0x211b4533, 0x4ef50139, 0xff021800, 0x180442f5, 0x3027ff02, 0xe8004e23, + 0x034335fd, 0xfde8004e, 0x181041f5, 0x42f5ff02, 0xff021814, 0xe7f04e23, + 0x8e4335fd, 0x93fd4efd, 0x042be7fd, 0x4960d2c1, 0x0cd489d3, 0x2a3020c1, + 0x8e032734, 0x0fd499fd, 0x002744c6, 0x4387fd8e, 0x0001040b, 0x1c270ce6, + 0xfa85be40, 0xfdad7eff, 0x0c030d07, 0x401c2720, 0xfffa60be, 0x0760d4c1, + 0x3c44c10d, 0xd4951d07, 0x03100c03, 0x2027441c, 0x07ff237e, 0x031d070d, + 0x1c03140c, 0x7e202728, 0x4127ff14, 0xd49d0027, 0x51fd8e0f, 0x0f0c8320, + 0x0e230333, 0xbeffff7e, 0x2701725e, 0xfd8e0d0c, 0x4f9bfe4e, 0xfb41d848, + 0x43270219, 0x33333207, 0x120034f5, 0x31f1ff02, 0xff021000, 0x1c33e247, + 0x1d1c5318, 0x002714d6, 0x04391e1e, 0x44872533, 0x180423f1, 0x0299ff02, + 0x0040f107, 0x23ff0216, 0x3b030b11, 0x87010b12, 0xf542273e, 0x02120034, + 0x4efe8eff, 0x07d007fd, 0x19a63e0d, 0x473527d4, 0x33110314, 0x0043f543, + 0x87ff0212, 0xf5432731, 0x02120034, 0x0032f1ff, 0x33ff0210, 0x2c53182c, + 0x0726a61d, 0x99443341, 0x44f107d3, 0xff021804, 0x233b2123, 0x3187240b, + 0x34f54227, 0xff021200, 0x100034f1, 0x48dcff02, 0xac20cef8, 0xd451d119, + 0x422b3107, 0xd4553333, 0x34f13403, 0xff021000, 0x07f848dc, 0x33d23931, + 0xf5442733, 0x02120034, 0x873107ff, 0x33402722, 0x0024f533, 0x03ff0216, + 0x29432734, 0x0034f5d0, 0x07ff0212, 0x0024f123, 0xdcff0210, 0x4007f848, + 0x4a033427, 0x120023f5, 0x4c83ff02, 0x5321070f, 0x33233306, 0x3027140c, + 0xab104c33, 0x0023f540, 0xf5ff0214, 0x02140424, 0x0ef39bff, 0xfc4efd8e, + 0xcf9bd007, 0xfbc1d848, 0x5317cc33, 0x40271bcc, 0x074af49b, 0xff157e0d, + 0xd051c353, 0xc383c413, 0xd0550c2b, 0xfc4efc8e, 0xd33ec007, 0xc49d4027, + 0x04c49d05, 0xfc4efc8e, 0x31070e31, 0xe1c2d207, 0x2b00210b, 0x05010be1, + 0x91fc8e2e, 0x99412701, 0x3e2b2d12, 0x4123423b, 0xc38bc407, 0x4103325b, + 0x310312a1, 0x33874c2b, 0x320bd405, 0x9ebe3001, 0x0c0bfe71, 0xfe4efc8e, + 0x63060499, 0xc4e107f0, 0xd012104c, 0xe4230f14, 0x24271f07, 0xfe053027, + 0xfe7bf0be, 0xfe8ef043, 0xd007fa4e, 0xd2390019, 0x33333007, 0x34f54427, + 0xff021200, 0x22873007, 0x33334027, 0x160024f5, 0x3403ff02, 0xd2294327, + 0x34f5f063, 0xff021200, 0x14f11307, 0xff021000, 0x07f848dc, 0x03342742, + 0x0013f54a, 0x83ff0212, 0x30070f4c, 0x33332653, 0x27142c33, 0x104c33c0, + 0x3cf542ab, 0xff021400, 0x140434f5, 0xfc9bff02, 0x31db510e, 0x624bc2d4, + 0x4333d419, 0x100044f1, 0x4c33ff02, 0x1d4c5318, 0x074f44c0, 0x070d072f, + 0xff147e1b, 0x2f10f201, 0x01000001, 0x00002f27, 0xd4190100, 0x4533d339, + 0x43f5f205, 0xff021800, 0x180442f5, 0x4e23ff02, 0x35fde800, 0x004e034c, + 0x40f5fde8, 0xff021810, 0x181442f5, 0x4e23ff02, 0x35fde7f0, 0x0bf4014c, + 0xcad331b4, 0xd4417bb3, 0x07764fc6, 0x2bc30bc4, 0x00af27cb, 0x1e010000, + 0xfeb47e4d, 0x1f10f101, 0x01000001, 0x1c021a07, 0xd4191c07, 0x4533d339, + 0x43f5f105, 0xff021800, 0x180441f5, 0x2027ff02, 0xe8004e23, 0x034235fd, + 0xfde8004e, 0x181040f5, 0x41f5ff02, 0xff021814, 0x4e23f301, 0x35fde7f0, + 0x2bb30b42, 0x070d07c3, 0xa62f071b, 0x33d419c6, 0x0044f143, 0x33ff0210, + 0x4c53184c, 0x9a44c41d, 0xdb55f043, 0xfc4efa8e, 0xc107d007, 0x22fce37e, + 0x8e00270c, 0x7e0d07fc, 0xd151fd2b, 0x1c0bd431, 0x1027412a, 0x142b031e, + 0x14cad441, 0x0715460b, 0x77d1be0d, 0x07044cfe, 0xfe767e0d, 0xfc8e0027, + 0x2f6bfc4e, 0x7dbed007, 0xc007fe78, 0xd4990636, 0x27459604, 0x04d49d41, + 0x557e0d07, 0x8e0c07fe, 0x49fd4efc, 0x6b42070d, 0xe3dad63f, 0x27043543, + 0x06039d46, 0x4927041d, 0x043d3127, 0x27060299, 0x25040a4d, 0x9d0d5501, + 0x042d0403, 0x0d450d95, 0x2405039d, 0x4427102c, 0xfd0e0455, 0x8efe135e, + 0x99fa4efd, 0xb1070404, 0xbf6bd007, 0x677e4b46, 0x91d451fd, 0x75a027dc, + 0x964127c4, 0x654027b4, 0x06b407ca, 0x07d15147, 0xfdc47e0d, 0x278af493, + 0xc1d35104, 0x320b7442, 0x277443c5, 0x56cb9d40, 0x9d05da9d, 0xfa8e04d4, + 0x27eef393, 0xd1349904, 0x442746e6, 0x99b8f49b, 0x44477a34, 0x2748f49b, + 0x0000114f, 0x990f1e11, 0x44477a34, 0x2748f49b, 0x0000114f, 0xa0f49b14, + 0x40004e27, 0xa3f49b01, 0xebe72ea7, 0x054027fd, 0x003f2724, 0x15088300, + 0x0ef49b23, 0x24052803, 0x00003f27, 0x23150903, 0x030ef49b, 0x27240528, + 0x8300003f, 0x9b231509, 0x2ea70ef4, 0x05fdebc7, 0x003f2724, 0x150a0300, + 0x0ef49b23, 0x2772f493, 0xd3439904, 0x337d4499, 0x4c33103c, 0xa343ab15, + 0x0003024f, 0xff3ea70c, 0x34d5fbff, 0x42270404, 0x043034d5, 0xfe0bfe0b, + 0xb007fb4e, 0x89ff537e, 0xd40754b4, 0x4433d633, 0xd986d42b, 0xdc2afc93, + 0x16c00103, 0x270d4706, 0x27c0001d, 0x6902be20, 0x210c1eff, 0x0f4dcec4, + 0x1ebe1d47, 0xc005ff68, 0xcd250d0b, 0xb499c015, 0x894c66d1, 0x202754b4, + 0x4c104203, 0x932127ab, 0x0429d3f3, 0x072a4c27, 0x74b2bd13, 0x20348d02, + 0xd307e027, 0xd4890427, 0x074e9b20, 0x33248734, 0x23322b34, 0xf9e8003e, + 0x144d1305, 0x1803e103, 0x071ef018, 0xb4bd4027, 0x40270274, 0xd57fb399, + 0xd5026cb4, 0xc00270b4, 0x8719ff3c, 0x0b343343, 0xd444f143, 0x01ff0003, + 0x70b4d543, 0xd5430b02, 0x99026cb4, 0x0027d1b4, 0x01274486, 0xfe899bbe, + 0x2707f413, 0x8eb40500, 0x99fd4efb, 0xd0074404, 0x27104c44, 0x7cf49300, + 0x1c1efe79, 0x58840489, 0x0027104c, 0x7a6cf493, 0x990d1efe, 0x45a6c404, + 0xf4930027, 0x05fe7989, 0x99fd8ed4, 0x1d074902, 0x1c030403, 0xfdaabe2c, + 0x2706f6ff, 0xd1d39940, 0x0277d4bd, 0xf41334e6, 0x13041e48, 0xd40505f4, + 0xfc4efd8e, 0x95bec007, 0xd0070003, 0x1e1403c0, 0x22f39b2c, 0xf49b4027, + 0x8b00070e, 0x22f49bff, 0x3d27051e, 0x4f9b0220, 0xe641d848, 0x04030c07, + 0xbebe1127, 0xf453fffd, 0xc405fea8, 0xfc8e0d07, 0xc007fc4e, 0x00007fbe, + 0x03c0d007, 0x9b2d1e14, 0x402722f3, 0x070ef49b, 0x9bff8b00, 0x041e22f4, + 0x9b403c27, 0x4dd8b84f, 0x07e54000, 0x2704030c, 0xfd7fbe11, 0x69f453ff, + 0x07c405fe, 0x4efc8e0d, 0x9b4427fc, 0xfd9321f4, 0xa70425a0, 0xfeffffce, + 0x0d07d401, 0xc499f48b, 0xa644960a, 0x9b402702, 0xfc8e21f4, 0x2473209b, + 0x212c210b, 0x071e2127, 0x277f2c08, 0x42477e2c, 0x077f4c23, 0x1f0c7304, + 0xfe0b04cb, 0xf493f64e, 0x070424e0, 0x894849d0, 0x0cc1540b, 0xf8e7be60, + 0xf67007ff, 0x0702bb0f, 0x2e489b4b, 0x5e31274c, 0xd4b90209, 0xd6c10277, + 0xe24ff658, 0x7dd49901, 0x36d5d399, 0x41fb9345, 0x0b1effa4, 0xba33b307, + 0x6120bf03, 0x0ea70001, 0x27f9e7ff, 0x002d2710, 0xd7d99908, 0xff59d8be, + 0x0274d4b9, 0x00ce4fe6, 0x27def293, 0x93102704, 0x0427d3f0, 0x04893427, + 0x0d419b20, 0x20048924, 0x42031103, 0x2803242d, 0x4027f358, 0xefff2ea7, + 0x22049dfd, 0xf3e8031e, 0x273c24c1, 0x184c3333, 0xc01d4c53, 0x3ea7f144, + 0x27fdebc7, 0x27320520, 0x0300004f, 0x9b34150a, 0x3ea70ef2, 0x27fde71f, + 0x27340544, 0x9318180d, 0x04249bf4, 0x30154101, 0xe70f4ea7, 0x053235fd, + 0xa7401541, 0xfdefff1e, 0x351a3c27, 0x07051e42, 0xc1f4e843, 0x4cdc3c14, + 0x3ea7f6e0, 0xc1fdefff, 0x48dc3c34, 0xd54427fb, 0x27023834, 0x1034d540, + 0xd5432706, 0xa7023c34, 0xfdefff3e, 0xdc3c34c1, 0x4427fb48, 0x023c34d5, + 0xebc72ea7, 0x054027fd, 0x003f2724, 0x150a0300, 0x0ef49b23, 0xf4933027, + 0x9d0426b0, 0x4d274743, 0xf49b0100, 0xffaea7a0, 0xb179f97f, 0x1f4bb059, + 0x0f4b2907, 0x99fe8f7e, 0xc00705b1, 0x4b04b099, 0x4b29071f, 0xfe7e7e0f, + 0x4007b139, 0x4c33b019, 0x071f4b10, 0x4bc83329, 0x7ec4ab0f, 0xb199fe68, + 0x99c0ab07, 0x1f4b06b0, 0x29070f4b, 0x33fe577e, 0xc0ab180c, 0xa403ac05, + 0xafc4b803, 0xff068200, 0x9b4027aa, 0x4d270ef4, 0xf49b0500, 0x9b4427a0, + 0x4d27b8f4, 0xf49b01fe, 0x270d07bb, 0x0302001d, 0xfad4be04, 0xaf0ff6ff, + 0xbe0d0700, 0x27fe7e7a, 0x1e02403d, 0x22f39b10, 0xf49b4027, 0x8b00070e, + 0x22f49bff, 0xd8484f9b, 0x4f9bec41, 0x174c3348, 0x131b4c53, 0xc6478348, + 0x07240747, 0x7f1c2734, 0x081e2103, 0x03fa4da3, 0x23bcf49b, 0x5b410731, + 0x70418343, 0xd7d299f2, 0x273f6399, 0x0b439b46, 0xc5f49324, 0x429d0425, + 0xbd412745, 0x270277d4, 0x7dd49930, 0xc454d189, 0xd2d11442, 0x2986026c, + 0x420b4887, 0x28d64201, 0x8d5e7727, 0x0745d600, 0x070d0723, 0x070abe38, + 0xc41a1e00, 0x23070d41, 0x38070d07, 0x0046fbbe, 0x20270b1e, 0x48070d07, + 0x0086efbe, 0x70070428, 0xf3935f1e, 0x0704226c, 0x0c338948, 0xd0274103, + 0xd127430e, 0x4da34d07, 0xf49b03fc, 0x1ed6b6bc, 0x22f39b38, 0xf49b4027, + 0x8b00070e, 0x22f49bff, 0x3d27051e, 0x4f9b0240, 0xe641d848, 0x33484f9b, + 0x4c53174c, 0x8348131b, 0x0345e647, 0xfa3d2741, 0x9b041e03, 0xf4d0bcf3, + 0xfff323be, 0x7327d486, 0xf68e0707, 0xf493f94e, 0x07042208, 0x894949d0, + 0x0cc1540b, 0xf60fbe60, 0xc4a007ff, 0xf4931803, 0x61042570, 0x9b44a644, + 0xf49341f4, 0x010424e0, 0x1ef48b44, 0x7b0fd67e, 0x499b4b07, 0x31274c2e, + 0xd4b94a1e, 0xdcc10277, 0x0746d658, 0x2704030d, 0xbe02001d, 0x76fff96a, + 0xbe0d070e, 0x93fe7d12, 0x04252ff3, 0x4c272027, 0x03320512, 0x99f4c834, + 0xc399d7d2, 0x9b46273f, 0x93240b43, 0x042513f4, 0x273c429d, 0x77d4bd41, + 0xd1302702, 0xc6026cd2, 0x0b498725, 0xd6420142, 0x1ea72724, 0x54d18916, + 0x49070d07, 0x00c65bbe, 0xa0070428, 0x6dbe051e, 0x0a07fff2, 0xf04ef98e, + 0xdf3bcf5b, 0xfc4efe2b, 0x12be0f07, 0xfc0efe64, 0xff0bf00e, 0x0d99fb4e, + 0x99c00704, 0xd496050b, 0x0ea7fb8e, 0xbeffffdf, 0xd0ff63bf, 0xc0010fd2, + 0x1b072d07, 0x21230403, 0xfeceb8be, 0x1c27c001, 0xbe21270c, 0xa7fecead, + 0xffffdf0e, 0xff6377be, 0xc4154027, 0xfb8ec405, 0x2ea7f54e, 0xb9ffffff, + 0xa30e2c21, 0x2f25b9f2, 0xeef1650e, 0x0702ef15, 0x0f4c8345, 0x3487c407, + 0xc32bc433, 0xc333c42b, 0xf1d0ce23, 0x56c499ff, 0x02d24fe6, 0xc871c741, + 0xc699c961, 0x107c1855, 0x00007ea3, 0x51c48110, 0x254ff6c3, 0x24cd9903, + 0xca210c07, 0xa0becb31, 0x0fe6ff07, 0xc3510356, 0xcb35ca25, 0xe324cd9d, + 0x02d30733, 0x07d80738, 0x070c0719, 0xbead072d, 0x0bfe9ff3, 0x07c961a9, + 0x0b49073d, 0xbf43e248, 0x2b430702, 0x2bd80749, 0x033d07d4, 0x0703ff3d, + 0xe33a5327, 0x1004112e, 0xc2453fab, 0xc38dc475, 0xff3ea726, 0x3499ffff, + 0x86b12726, 0xf6b02784, 0x9d02514f, 0x1d2754c4, 0x3c270bba, 0x2df10d28, + 0x25c69df3, 0x1c07f001, 0xff07a9be, 0x0264dff6, 0x0c030c07, 0xfede7e28, + 0xe654c499, 0xf802084f, 0x0203107c, 0x01ffbff6, 0xcb31c451, 0xca2143e3, + 0xc1144c23, 0xf4554cc2, 0xfb45fa35, 0x9948c1c1, 0xc3c124cb, 0xc1620750, + 0x610b3ccd, 0x630bfb25, 0x0305dfe6, 0x8330c4c1, 0xb4870f4c, 0xb40b4433, + 0x2336c489, 0xffe7a4be, 0x8910b48d, 0xba8d38ca, 0x9b6fe612, 0xe3870701, + 0x1000008e, 0x10007dfc, 0x3123018e, 0x11232123, 0xf285f375, 0x7027f195, + 0x9cbe0c07, 0x0fe6ff06, 0x2607016e, 0x272bf351, 0x2302c181, 0xaea72307, + 0xd1fdefff, 0x33010ca4, 0x4c53184c, 0xcc44131d, 0x33271941, 0x3ea7f3e8, + 0xd1fdefff, 0x33010c34, 0x4c53184c, 0xc844131d, 0x4ea7e941, 0x05fde3df, + 0x2742154d, 0xdfaea740, 0xa435fde3, 0xe3cf3ea7, 0x141c03fd, 0x32153105, + 0xe3cfaea7, 0xc12123fd, 0xa4353cc3, 0xad0ba207, 0x3fe62103, 0xf4910185, + 0x4dea430b, 0xd3ea017d, 0x4aea01c6, 0x42070233, 0x41272486, 0xc4c19407, + 0xf6e20740, 0x27016f4f, 0x44c3c100, 0xf47136a6, 0x4dca430b, 0x7fd3ea0d, + 0xfa4aea01, 0x1e120701, 0xa3102703, 0x0100008e, 0xc845720b, 0x48076742, + 0x04114de3, 0x4127c445, 0x40270496, 0x31274447, 0x30271496, 0x338749ab, + 0xb12543ab, 0xbe05b435, 0x1ea7b015, 0xd1fdefff, 0x81010c14, 0x184c33c1, + 0x131d4c53, 0x1941cc44, 0xf3e83327, 0xefff3ea7, 0x0c34d1fd, 0x184c3301, + 0x131d4c53, 0xe941c844, 0xe3df4ea7, 0x274b05fd, 0x4a1514ac, 0x43353027, + 0xe3cf4ea7, 0x154105fd, 0xffaea74a, 0x4335fdef, 0x010ca4d1, 0xfc6a4dd8, + 0xe8432713, 0xff1ea7f4, 0x13d1fdef, 0x3ddc010c, 0x21effc6a, 0x9d4027f3, + 0xc46524c3, 0xf331f441, 0xd20bc435, 0x0bba4d27, 0x27142c03, 0xc27528ac, + 0xf44dc325, 0xf011fa6d, 0xafbe1c07, 0x6702ff05, 0x10008df8, 0x4027fe84, + 0x9954c49d, 0xbea734c3, 0x21ffe7af, 0x3b4127b2, 0x2542ab43, 0x034507b4, + 0x6b540741, 0xff1ea75f, 0x15bdffff, 0xf3610e2f, 0xfd1553ee, 0xf2830027, + 0xc499f58e, 0xaf4fe654, 0x834707fd, 0xe410104d, 0xfda4104c, 0xfda0bff6, + 0x0097dfe6, 0x0bba4d27, 0x0d28bc27, 0x9dfb2df4, 0xf00125c6, 0x43be1c07, + 0x4027ff05, 0xcd75c485, 0xc745ca65, 0xd027b91e, 0xc8753027, 0x575ec745, + 0x27e027fd, 0x40c4c190, 0xfe954fe6, 0x340bf381, 0xfe8d3dea, 0xea28d4ca, + 0x07009d3a, 0xfe835e02, 0x932a33e3, 0xf25e932b, 0x5ea027fc, 0x4acafd05, + 0x86a3ea59, 0x2b1127fe, 0x5e1a0b13, 0x3acafe7f, 0x5ca4ea64, 0x2b0127fe, + 0x5e0a0b04, 0x4acafe55, 0xaea3ca42, 0xe32be127, 0x4e07ea0b, 0x9407ec36, + 0x0c27a41e, 0x8ef2830e, 0xba4d27f5, 0x27f40d0b, 0x470728ac, 0x4ce3fa2d, + 0x9dc44511, 0xf00125c6, 0xa7be1c07, 0x015eff04, 0x2b1407fd, 0x5e110313, + 0xe407fe2b, 0xe103e32b, 0xefc64e07, 0x074127c2, 0xff635e94, 0x042b0307, + 0xf65e0103, 0x031407fd, 0x5e1d2b11, 0x0307fe07, 0x0d2b0103, 0x07fde45e, + 0x2be103e4, 0xd64e07ed, 0x9407d4ef, 0xc1ff385e, 0xdff640cd, 0xcdc1fcf8, + 0xfcf25e44, 0xc007fc4e, 0xff8ea5be, 0xc419c339, 0x43ab1307, 0x4027c41d, + 0x05e6c43d, 0xf49b4027, 0xff3ea70e, 0x34c5fd4f, 0x9b402738, 0x4ea70ef4, + 0x99ffffff, 0x2ea70e43, 0x8bfd4fbf, 0x27313831, 0x53240541, 0xd6240331, + 0x4efc8e32, 0xbed007fd, 0x99ff8e88, 0x44b60cd4, 0x070ed499, 0x07012304, + 0x993d0b30, 0x42c40434, 0x9d41270b, 0xd09d0434, 0xa7141e0c, 0xfd4fff4e, + 0x4301d239, 0x433b4127, 0xd43d42ab, 0x402700a7, 0xa70ef49b, 0xfd4fff3e, + 0x8e3834c5, 0x07fd4efd, 0x8e3ebed0, 0x0dd499ff, 0xd49944b6, 0x2304070e, + 0x0b300701, 0x0434993d, 0x41274596, 0x9d04349d, 0x181e0dd0, 0x22032d07, + 0x4fff4ea7, 0x012139fd, 0x3b412743, 0x3d41ab43, 0x2700a724, 0x0ef49b40, + 0x4fff3ea7, 0x3834c5fd, 0x0000fd8e, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0xf2a3f54e, 0xd207f085, 0x1fabf281, 0x33542289, 0x6b040319, 0x45c307df, + 0xf31cbef2, 0xe6e007ff, 0x5e042704, 0x31271410, 0x3027d496, 0x4027f375, + 0x07b6f49b, 0x8721832c, 0xf1fd8142, 0x05a30043, 0xbdf09300, 0x4ea703d0, + 0x21fde79f, 0x74ddb901, 0x15430502, 0xa7fd6541, 0xfde78f3e, 0x4c274e35, + 0x15340516, 0x213e3531, 0x7f3ea701, 0x4103fde7, 0x340521c3, 0x22f12287, + 0x0005a300, 0x4ea73115, 0x35fde76f, 0x1542053e, 0x714e3541, 0x27e546fe, + 0x150f220d, 0x27071ef0, 0x1501221d, 0x41fd11f1, 0x00dde3f2, 0xe1f49303, + 0x4499041d, 0x00dda345, 0xe3212410, 0xa30800dd, 0x072000dd, 0x19cc33c4, + 0xffffaea7, 0x00be27fb, 0x101e4000, 0x2722fb9b, 0x55be0f0c, 0x4027ffec, + 0xd122f49b, 0xd80420a4, 0xdcabeb41, 0x0424add5, 0xf49b4027, 0x93fd110e, + 0x041debf3, 0x0800dde3, 0x34053415, 0xdda39027, 0xfe812000, 0xf935fd95, + 0xee99f925, 0x79f293d2, 0x7ea7041d, 0x9df9e7f3, 0x085e122e, 0xe6f06111, + 0x9301a80f, 0x041dbff2, 0x07222399, 0x833103d9, 0x33430733, 0xe844e943, + 0xab0005f0, 0x0cd4cedf, 0x1622239d, 0x2744c635, 0x27031ea1, 0x95f493a0, + 0x4299041d, 0x07f14122, 0xe9433342, 0x05f0e843, 0x03112300, 0xab430732, + 0x3232234f, 0xab410741, 0x6ad4ce4f, 0x07673fc6, 0x83112312, 0x33210713, + 0xe42f0323, 0x490005f0, 0x79f49323, 0xe307041a, 0x3387e433, 0x4c012001, + 0x2ea7e32b, 0x1efdefff, 0xc1f3e803, 0x33273824, 0x53184c33, 0x44c01d4c, + 0xe91333f1, 0x05f0ea14, 0x1f2ea700, 0x1407fde7, 0x44871433, 0x2005142b, + 0x00272115, 0x20353c07, 0xe70f4ea7, 0x053e0bfd, 0x35411543, 0x05f19340, + 0x1299041d, 0x33420722, 0x49410b43, 0xee406943, 0x41009ad3, 0x0b3d07f4, + 0xf2420330, 0x41008e43, 0x201489f3, 0x302b3403, 0x42031307, 0x34071d2b, + 0x3fab4107, 0x43024fab, 0xe2071307, 0xe383e103, 0x3e070223, 0xd00b3333, + 0x19daf493, 0x07c10704, 0xf142010d, 0x05f0e43b, 0xabcfab00, 0xff1ea70f, + 0x031efdef, 0x1401f3e8, 0x4c333327, 0x1d4c5318, 0x07f244c0, 0x33308740, + 0x0b432b44, 0xa72c0742, 0xfde7ff3e, 0x24331c87, 0x3405212b, 0x10273215, + 0x3ea73135, 0x05fde7ef, 0x0732153b, 0x0343334e, 0x05f0e44f, 0x6d313500, + 0xc6404d4c, 0x234707ab, 0x41010c4c, 0xe7ff3ea7, 0x113105f9, 0x21321542, + 0x01342544, 0xf34ea773, 0x4305f9e7, 0x4d157d11, 0x47257721, 0x121e7407, + 0x2722f39b, 0x0ef49b40, 0xff8b0007, 0x1e22f49b, 0x003d2705, 0xb74f9b80, + 0x9be640c8, 0xe907b71f, 0xfe05e103, 0xf241f001, 0xef83e107, 0x07ffffff, + 0x40072042, 0xf49b4383, 0x074107b6, 0x83210731, 0x8301e04d, 0x831e003d, + 0x01e0002e, 0x4496d127, 0x4d07d027, 0x34960127, 0x30070027, 0x2496d127, + 0xf031d027, 0x0fab2d07, 0x4447f055, 0x23333387, 0x1c180027, 0xab01271e, + 0xab43ab40, 0x001e5842, 0x1f3c0600, 0x07f80000, 0x1e104ca3, 0x00ef180a, + 0xa307f800, 0x3ea7204c, 0xc1fbffff, 0x04076c3c, 0xf4930f6b, 0x9d041b2c, + 0xec474440, 0x281fe0c8, 0x1e1027c0, 0x6c34c136, 0x14073027, 0x1c531a33, + 0x004f181a, 0x27080000, 0x1e430731, 0x331c0712, 0x1a1c531a, 0xcf184027, + 0x08000000, 0x4f6b4127, 0x4ea74546, 0xc1fbffff, 0xde076c44, 0x201ddc53, + 0x1e4027d4, 0x334c0715, 0x4c53104c, 0x0030271e, 0x07312741, 0x6b41c343, + 0xc5f2934f, 0x2399041a, 0x9b13ee45, 0x760db600, 0xf6f4514d, 0x2700884f, + 0xf081104c, 0x9944249d, 0x2327d404, 0x2c03249b, 0x07311b1a, 0x133f4b42, + 0x47435240, 0x1e340b42, 0x47323a07, 0x07342b42, 0x474f4b43, 0x23412824, + 0x13031e21, 0x6b320720, 0x75f4933f, 0x0127041a, 0xf2813c1e, 0x2499311b, + 0x9b2327d4, 0x1a2c0324, 0x3f4b4207, 0x43524013, 0x340b4247, 0x323a071e, + 0x342b4247, 0x4f4b4307, 0x41282447, 0x031e2123, 0x32072013, 0xf4933f6b, + 0x27041a38, 0x45419d00, 0x1e11439d, 0x27402711, 0x11249d00, 0x4027081e, + 0x2711249d, 0x54d6e400, 0x331c0707, 0xb007101c, 0x071c1c53, 0xf608330c, + 0x9305791f, 0x041a03fe, 0x2744e399, 0x53430723, 0x104c8341, 0xe49d43ab, + 0x414c2744, 0x2713e49d, 0x0303034f, 0x49e29d03, 0xc54ce4c5, 0xe29d50e1, + 0x34e1c546, 0xc538e1c5, 0xf3933ce1, 0x35041a00, 0x27002c31, 0x01285e41, + 0x4c334c07, 0x1e4c5316, 0xe39d3027, 0x50e49d4c, 0x0100cdf8, 0x4ea70082, + 0xc1fbffff, 0x73996c40, 0x05729904, 0x0754e499, 0x55e199d0, 0xb9603f03, + 0xdc730001, 0x8b340b10, 0x602f030f, 0x070001b9, 0x83210b4d, 0x190fff4d, + 0x33300731, 0x22190e4c, 0x3fff3d83, 0x1c3343ab, 0x3341ab1a, 0x42ab1c2c, + 0x0f8be455, 0x0013000c, 0x0c300fab, 0x210c2721, 0x0f6b031e, 0x197ef493, + 0x07401d04, 0x0c0f8b0d, 0xab001300, 0x210c300f, 0x1e210c27, 0x930f6b03, + 0x041963fd, 0xcdf8d03d, 0x008a0200, 0xffff4ea7, 0x6c40c1fb, 0x1972fe93, + 0x08739904, 0xe139e419, 0x07097299, 0x603f03e0, 0x730001b9, 0x340b10ec, + 0x2f030f8b, 0x0001b960, 0x210b4e07, 0x0fff4d83, 0x30073119, 0x190e4c33, + 0xff3d8322, 0x1a1c333f, 0x41ab43ab, 0xab1c2c33, 0xe9f19342, 0x14150418, + 0x000c0f8b, 0x0fab0013, 0x27210c30, 0x031e210c, 0xf2930f6b, 0x5d0418f0, + 0x8b0e0720, 0x13000c0f, 0x300fab00, 0x0c27210c, 0x6b031e21, 0xd7f3930f, + 0x303d0418, 0x2ea74027, 0xc1fbffff, 0xeefc6c2e, 0x37800000, 0x334e0701, + 0x4c53164c, 0x81f3931e, 0x349d0418, 0x9d402751, 0xedf84d34, 0x00860100, + 0x936c20c1, 0x04189ffd, 0x19067499, 0x077399d2, 0x4f03d139, 0x0001b960, + 0x420bd007, 0xb9603f03, 0xdc730001, 0x8b310b10, 0x0741190f, 0x8332194d, + 0x070fff4d, 0x0e4c3330, 0x3fff3d83, 0xab1a1c33, 0x3341ab43, 0x42ab1c2c, + 0x183af193, 0x8b142504, 0x13000c0f, 0x300fab00, 0x0c27210c, 0x6b031e21, + 0x41f2930f, 0x209d0418, 0x8b0d0704, 0x13000c0f, 0x300fab00, 0x0c27210c, + 0x6b031e21, 0x29f4930f, 0x403d0418, 0x0200edf8, 0x4ea70090, 0xc1fbffff, + 0x73996c40, 0x0ffe930a, 0xfd930418, 0x39041808, 0x99d459e1, 0xe0070b72, + 0xb9603f03, 0xec730001, 0x8b340b10, 0x602f030f, 0x070001b9, 0x83210b4e, + 0x190fff4d, 0x33300731, 0x22190e4c, 0x3fff3d83, 0xab1a1c33, 0x3341ab43, + 0x42ab1c2c, 0x17a6f193, 0x8b143504, 0x13000c0f, 0x300fab00, 0x0c27210c, + 0x6b031e21, 0xadf2930f, 0x209d0417, 0x8b0e0706, 0x13000c0f, 0x300fab00, + 0x0c27210c, 0x6b031e21, 0x97f3930f, 0x303d0417, 0x2ea74027, 0xc1fbffff, + 0xeefc6c2e, 0x3a800000, 0x333e0701, 0xf193163c, 0x53041740, 0x40271e3c, + 0x9d4e149d, 0xedf85213, 0x00860100, 0x175efd93, 0x6c20c104, 0x1299d419, + 0x99d33956, 0xd0075711, 0xb9604f03, 0x420b0001, 0xb9603f03, 0xdc730001, + 0x8b310b10, 0x0741190f, 0x8332194d, 0x070fff4d, 0x0e4c3330, 0x3fff3d83, + 0xab1a1c33, 0x3341ab43, 0x42ab1c2c, 0x16f6f193, 0x8b144504, 0x13000c0f, + 0x300fab00, 0x0c27210c, 0x6b031e21, 0xfdf2930f, 0x209d0416, 0x8b0d0708, + 0x13000c0f, 0x300fab00, 0x0c27210c, 0x6b031e21, 0xe9f4930f, 0x403d0416, + 0x0200edf8, 0x4ea70093, 0xc1fbffff, 0xf3936c40, 0x930416cc, 0x0416c9fd, + 0xf1933259, 0x390416e6, 0x071419d3, 0x031139e0, 0x01b9602f, 0x603f0300, + 0x730001b9, 0x240b10ec, 0x0f8b310b, 0x21194e07, 0x0fff4d83, 0x30073219, + 0x830e4c33, 0x333fff3d, 0x43ab1a1c, 0x2c3341ab, 0x9342ab1c, 0x04165ff1, + 0x0f8b1455, 0x0013000c, 0x0c300fab, 0x210c2721, 0x0f6b031e, 0x1666f293, + 0x0a209d04, 0x0f8b0e07, 0x0013000c, 0x0c300fab, 0x210c2721, 0x0f6b031e, + 0x1654f393, 0x27303d04, 0xff2ea740, 0x2ec1fbff, 0x00eefc6c, 0x013f8000, + 0x3c333e07, 0xf9f19316, 0x3c530415, 0x9d40271e, 0x139d4f14, 0x00edf853, + 0x93008801, 0x041617fd, 0x996c20c1, 0xd29904d4, 0x39139908, 0x1199d007, + 0x604f033d, 0x0b0001b9, 0x603f0342, 0x730001b9, 0x310b10dc, 0x41190f8b, + 0x32194d07, 0x0fff4d83, 0x4c333007, 0xff3d830e, 0x1a1c333f, 0x41ab43ab, + 0xab1c2c33, 0xadf19342, 0x14650415, 0x000c0f8b, 0x0fab0013, 0x27210c30, + 0x031e210c, 0xf2930f6b, 0x9d0415b4, 0x0d070c20, 0x000c0f8b, 0x0fab0013, + 0x27210c30, 0x031e210c, 0xf4930f6b, 0x3d0415a4, 0x00edf840, 0xa703a402, + 0xfbffff4e, 0x936c40c1, 0x041583f3, 0x1584fd93, 0x0a349904, 0x93063299, + 0x04157dfe, 0xe139d339, 0x2f03e007, 0x0001b960, 0xb9603f03, 0xec730001, + 0x0b240b10, 0x070f8b31, 0x8321194e, 0x190fff4d, 0x33300732, 0x3d830e4c, + 0x1c333fff, 0xab43ab1a, 0x1c2c3341, 0xf19342ab, 0x75041514, 0x0c0f8b14, + 0xab001300, 0x210c300f, 0x1e210c27, 0x930f6b03, 0x04151bf2, 0x070e209d, + 0x0c0f8b0e, 0xab001300, 0x210c300f, 0x1e210c27, 0x930f6b03, 0x04150df3, + 0x0e5e303d, 0x0a4fe603, 0x00ce1803, 0xb7464000, 0x14b6f393, 0x9d432704, + 0x44274634, 0x2749349d, 0x349d404c, 0x01b55e13, 0x149ef493, 0x9d302704, + 0x34271343, 0x5e46439d, 0x00e801a3, 0xcefc015c, 0x55400000, 0x81fe9301, + 0xe3990414, 0x07202744, 0x83415343, 0x43ab104c, 0x2744e49d, 0x46e49d43, + 0x9d414c27, 0x402713e4, 0xc54ce29d, 0xe29d34e4, 0x00cdf849, 0xa7008201, + 0xfbffff4e, 0x996c40c1, 0x72990473, 0x54e49905, 0xe199d007, 0x603f0355, + 0x730001b9, 0x340b10dc, 0x2f030f8b, 0x0001b960, 0x210b4d07, 0x0fff4d83, + 0x30073119, 0x190e4c33, 0xff3d8322, 0x3343ab3f, 0x41ab1a1c, 0xab1c2c33, + 0x8be45542, 0x13000c0f, 0x300fab00, 0x0c27210c, 0x6b031e21, 0x25fe930f, + 0xe01d0414, 0x0f8b0d07, 0x0013000c, 0x0c300fab, 0x210c2721, 0x0f6b031e, + 0x140af193, 0xf8103d04, 0x8a0200cd, 0xff4ea700, 0x40c1fbff, 0x0873996c, + 0x1416fd93, 0x99d41904, 0xe0070972, 0x3f03d139, 0x0001b960, 0x0b10ec73, + 0x030f8b34, 0x01b9602f, 0x0b4e0700, 0xff4d8321, 0x0731190f, 0x0e4c3330, + 0x3d832219, 0x1c333fff, 0xab43ab1a, 0x1c2c3341, 0xf19342ab, 0x15041390, + 0x0c0f8b14, 0xab001300, 0x210c300f, 0x1e210c27, 0x930f6b03, 0x041397f2, + 0x0e07205d, 0x000c0f8b, 0x0fab0013, 0x27210c30, 0x031e210c, 0xf3930f6b, + 0x3d04137e, 0x334c0730, 0x4c53164c, 0x39f3931e, 0x349d0413, 0x017b5e50, + 0x0000ced8, 0xfd932640, 0x86041328, 0x404c27b6, 0x2713d49d, 0x46d49d43, + 0xd49d4427, 0x27251e49, 0x13d49d40, 0xd49d4427, 0xcc191e46, 0xf3931600, + 0x27041300, 0x349d404c, 0x9d432713, 0x44274634, 0x2749349d, 0x3df49330, + 0x43050413, 0x40274315, 0x0704749d, 0x7d440347, 0x5d433d43, 0x08739d43, + 0x437d4403, 0x435d433d, 0x0701105e, 0xc1fd933c, 0x3c830412, 0x57e0c83f, + 0x0710d39d, 0xa710272d, 0xfbffffee, 0x34270d07, 0x0c0514d6, 0xe4c1061e, + 0x0124056c, 0x53110324, 0x03240546, 0x93f34024, 0x04128ff2, 0x07442399, + 0x83415343, 0x43ab104c, 0x2744249d, 0x46249d40, 0x27102399, 0x249d404c, + 0xb63fe613, 0x444c2700, 0x5e13249d, 0x4c0700ad, 0x07104c33, 0x10d39d0c, + 0x331e4c53, 0xde99140c, 0x4841c444, 0x4e072007, 0x531a2c53, 0x87210344, + 0xd8240b44, 0x070c0fec, 0x0f4ca34e, 0x0344d49d, 0xd3990c2c, 0x07212344, + 0x83415343, 0x43ab104c, 0x2744d49d, 0x46d49d41, 0x2710d399, 0xd29d414c, + 0x13d49d48, 0x4c273ea6, 0xa74c1e45, 0xfbffff4e, 0xc16c42c1, 0x41c16c43, + 0x334e076c, 0x83415336, 0x03f0003e, 0x0fc02d83, 0xab104c83, 0x534eab23, + 0x1c331a0c, 0x8320ab0c, 0xfc00001e, 0x2744d49d, 0x9d21ab42, 0xd39946d4, + 0x504c2710, 0xd49dd205, 0x27350613, 0xd49d544c, 0x41fe0113, 0x400ec2f0, + 0x41034e07, 0xfd11042e, 0xfd91161e, 0xfc9b121e, 0x0f0c2722, 0xffe03bbe, + 0xf49b4027, 0xa70b1e22, 0xfbffffbe, 0x0000ce27, 0x20b4d140, 0xdf41d804, + 0x0000dfa3, 0xbdd5fe00, 0x40270424, 0x070ef49b, 0x83f17169, 0x69f49363, + 0x68330411, 0x29444999, 0xa3173672, 0x1e7fff2d, 0x22f39b12, 0xf49b4027, + 0x8b00070e, 0x22f49bff, 0x3d27051e, 0x4f9b0240, 0xe641d848, 0x37c6f331, + 0x27ba3f9b, 0x9b03fc4d, 0x5307bcf4, 0xe30c7c23, 0x2dffff5d, 0x0352ab73, + 0x091e0c7c, 0x5fa35207, 0x7fff0000, 0x1112f393, 0x46349904, 0x020241e0, + 0x42e04130, 0x4e5e026a, 0x83743903, 0x47430343, 0xbcf49b44, 0x06123499, + 0x53743946, 0x03438344, 0x4447554c, 0x01bcf49b, 0x83430733, 0x2082084e, + 0x82084e24, 0x0f4f2720, 0x1e844e00, 0x83430740, 0x44870f4c, 0xb9a444f1, + 0xf49b0001, 0x073653bc, 0x0f4c8343, 0x44f14487, 0x0001b9a4, 0x53bcf49b, + 0x83430736, 0x44870f4c, 0xb9a444f1, 0xf49b0001, 0x833453bc, 0x34f13c3c, + 0x0001b9a4, 0x93bcf49b, 0x041087f4, 0x43074311, 0x82084e83, 0x084e2420, + 0x4f272082, 0x844e000f, 0x4307401e, 0x870f4c83, 0xa444f144, 0x9b0001b9, + 0x3653bcf4, 0x4c834307, 0xf144870f, 0x01b9a444, 0xbcf49b00, 0x43073653, + 0x870f4c83, 0xa444f144, 0x9b0001b9, 0x3453bcf4, 0xf13c3c83, 0x01b9a434, + 0xbcf49b00, 0x102af493, 0x07432104, 0x084e8343, 0x4e242082, 0x27208208, + 0x4e000f4f, 0x07401e84, 0x0f4c8343, 0x44f14487, 0x0001b9a4, 0x53bcf49b, + 0x83430736, 0x44870f4c, 0xb9a444f1, 0xf49b0001, 0x073653bc, 0x0f4c8343, + 0x44f14487, 0x0001b9a4, 0x53bcf49b, 0x3c3c8334, 0xb9a434f1, 0xf49b0001, + 0xcdf493bc, 0x4331040f, 0x4e834307, 0x24208208, 0x2082084e, 0x000f4f27, + 0x401e844e, 0x4c834307, 0xf144870f, 0x01b9a444, 0xbcf49b00, 0x43073653, + 0x870f4c83, 0xa444f144, 0x9b0001b9, 0x3653bcf4, 0x4c834307, 0xf144870f, + 0x01b9a444, 0xbcf49b00, 0x3c833453, 0xa434f13c, 0x9b0001b9, 0xf293bcf4, + 0x99040f70, 0x74391023, 0x33f13387, 0x0001b9e4, 0x830f4c33, 0x0600004e, + 0xf49b430b, 0x442499bc, 0x4c837319, 0x8734530f, 0xf1338744, 0x01ba3444, + 0xf433f100, 0x0b0001b9, 0xbcf49b43, 0x23997419, 0x03438344, 0x34534d4c, + 0x3fe64447, 0x41a30082, 0x27bcf49b, 0x0c7419d1, 0x53d02732, 0x03438342, + 0x4447514c, 0x671e4dab, 0x9ca37439, 0x03438340, 0xa3444743, 0xbcf49b41, + 0x03fc4d27, 0x99bcf49b, 0x42074832, 0x32074173, 0x327342cb, 0x44d843ab, + 0x03420715, 0x104c0844, 0x4fa34403, 0x80605380, 0x1ebcf49b, 0x2324080e, + 0x802fa324, 0x9b806e0b, 0xf493bcf2, 0x99040ebc, 0x74391043, 0x33f13387, + 0x0001b9e4, 0x830f4c33, 0x0600004e, 0xf49b430b, 0x5e8907bc, 0x743900eb, + 0x43838907, 0x6da34303, 0x44471000, 0x9b808ca3, 0x7439bcf4, 0x43834453, + 0x47554c03, 0x9b41a344, 0x3301bcf4, 0x4e834307, 0x24208208, 0x2082084e, + 0x000f4f27, 0x401e844e, 0x4c834307, 0xf144870f, 0x01b9a444, 0xbcf49b00, + 0x43073653, 0x870f4c83, 0xa444f144, 0x9b0001b9, 0x3653bcf4, 0x4c834307, + 0xf144870f, 0x01b9a444, 0xbcf49b00, 0x3c833453, 0xa434f13c, 0x9b0001b9, + 0xf293bcf4, 0x99040e1c, 0x74391023, 0x33f13387, 0x0001b9e4, 0x830f4c33, + 0x0600004e, 0xf49b430b, 0x442499bc, 0x4c837319, 0x8734530f, 0xf1338744, + 0x01ba3444, 0xf433f100, 0x0b0001b9, 0xbcf49b43, 0x23997419, 0x03438344, + 0x34534d4c, 0x37464447, 0xf49b41a3, 0x19e127bc, 0x27320c74, 0x834253e0, + 0x514c0343, 0x4eab4447, 0x1ebcf49b, 0x93ff1e03, 0x040daffd, 0x99729fc6, + 0xd29911dc, 0x27c53047, 0x07031e45, 0xf144874c, 0x01bad443, 0x96412700, + 0x33402724, 0x430b114c, 0xd0bcf49b, 0x4c073ec5, 0xd4074523, 0xbd07df6b, + 0xdb7faf27, 0x0c1e83c6, 0x07bcfa9b, 0x0745234d, 0x07df6bd4, 0xbe15270b, + 0x87ff7b9b, 0x1b400b40, 0x6b45234c, 0xe1d4ce4f, 0x44f14d87, 0x0001bac0, + 0x93bcf49b, 0x040d43f4, 0x9d114099, 0x191e4740, 0xd49d4027, 0x9b121e47, + 0x402722f3, 0x070ef49b, 0x9bff8b00, 0x051e22f4, 0x02403d27, 0xd8484f9b, + 0xf69be641, 0xbaf59bb4, 0x61b9f89b, 0x621fc6f1, 0x0d62f493, 0x22449904, + 0x4103f251, 0x43334383, 0xf0e844e9, 0x42230005, 0x1e1542ce, 0x1ef3e805, + 0xff2ea706, 0x2411fdef, 0x4ddc3327, 0x93effc6a, 0x040d33f4, 0x33224499, + 0xe44f0343, 0x690005f0, 0x0b444943, 0x23f35143, 0x1643ce43, 0xf3e8051e, + 0x2ea7061e, 0xc1fdefff, 0x33273c24, 0xfc6a4ddc, 0xa5f493ee, 0x4d99040c, + 0x3d915313, 0x1341997d, 0x990c7399, 0x92f90d74, 0x0001b900, 0x99f99153, + 0x0001b940, 0x410b320b, 0x749df221, 0x0c739d0d, 0xfe31791d, 0xe1032103, + 0xf9012fab, 0xf225fe35, 0x210c7c03, 0xeef141f0, 0x1eeef410, 0x22fd9b12, + 0xbe0f0c27, 0x27ffdaf4, 0x22f49b40, 0xcea70b1e, 0x27fbffff, 0x200000de, + 0x0420c4d1, 0x1edf42d8, 0x22f39b12, 0xf49b4027, 0x8b00070e, 0x22f49bff, + 0x3d27051e, 0x4f9b0240, 0xe641d848, 0x23ba4f9b, 0xf2610c7c, 0x2fe6742d, + 0xf3930131, 0x99040c68, 0x41032234, 0x14074383, 0x13831123, 0x23332107, + 0x0b22349d, 0x93234923, 0x04096bf4, 0xe433e307, 0x20013387, 0xe32b4d01, + 0xefff2ea7, 0xe8031efd, 0x3824c1f3, 0x4c333327, 0x1d4c5318, 0x33f144c0, + 0xea14e913, 0xa70005f0, 0xfde71f2e, 0x14331407, 0x142b4487, 0x21152005, + 0x3d070027, 0x4ea72035, 0x0bfde70f, 0x1543053e, 0x35302741, 0xf5f19340, + 0xf093040b, 0x27040bf4, 0x201489e4, 0x439b2307, 0x1489040d, 0x03238320, + 0x9d042d42, 0x31032212, 0xfe200803, 0x01030207, 0x83201489, 0x33200703, + 0x93420323, 0x0408dff3, 0xf0e42df1, 0xe4070005, 0xefab3101, 0xefff2ea7, + 0xe8031efd, 0x272401f3, 0x184c3333, 0xc01d4c53, 0x4e07f244, 0xe7ff3ea7, + 0x332e87fd, 0x05422b44, 0x27341531, 0xa7313510, 0xfde7ef2e, 0x24152d05, + 0x43334007, 0xf0e44f03, 0x30270005, 0x434d4e6d, 0xf4932135, 0xa7040b68, + 0xfdefff0e, 0x1e22439d, 0xc1f3e803, 0x33273c04, 0xfc6a4ddc, 0xe8051ef5, + 0xa7061ef3, 0xfdefff2e, 0x33272411, 0xfc6a4ddc, 0x03f081ef, 0xbe02680d, + 0x27ffd87f, 0xdf4ea735, 0x2ea7fded, 0x05fdefff, 0xe8031e43, 0x272481f3, + 0x0a4ddc33, 0x4327f6fc, 0x021824d5, 0xefff0ea7, 0xdc0461fd, 0x1427fc48, + 0x021801d5, 0x021c01d5, 0x03d53027, 0x2ea70658, 0x05fdebe7, 0x004f2723, + 0x15088300, 0x0ef39b24, 0x022001d5, 0x065c03d5, 0x04d54327, 0x3ea70224, + 0x91fdefff, 0xfc48dc34, 0x34d54427, 0x2ea70224, 0x27fdebdf, 0x27240540, + 0x0300003f, 0x9b231509, 0x00270ef4, 0xf58ef283, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0xf2e3f54e, 0xd207f095, + 0x1fabf291, 0x33542289, 0x6b040319, 0x45c307df, 0xb31cbef2, 0xe6e007ff, + 0x5e042704, 0x312715b4, 0x3027d496, 0x4027f385, 0x07b6f49b, 0x8721832c, + 0x0043f142, 0x930005a3, 0x0390bff0, 0xe79f4ea7, 0x050121fd, 0x15f39143, + 0x7433b941, 0xa7f35502, 0xfde78f3e, 0x4c274e35, 0x15340516, 0x213e3531, + 0x7f3ea701, 0x4103fde7, 0x340521c3, 0x22f12287, 0x0005a300, 0x4ea73115, + 0x35fde76f, 0x1542053e, 0x814e3541, 0x274546f4, 0x650f22ed, 0x27071efe, + 0x6501220d, 0x41fd61f0, 0x00dde3f1, 0xe1f49303, 0x449903dd, 0x00dda345, + 0xe3112410, 0xa30800dd, 0x072000dd, 0x19cc33c4, 0xffffaea7, 0x00be27fb, + 0x101e4000, 0x2722fb9b, 0x55be0f0c, 0x4027ffac, 0xd122f49b, 0xd80420a4, + 0xdcabeb41, 0x0424add5, 0xf49b4027, 0x93fe610e, 0x03ddebf3, 0x0800ede3, + 0x34053415, 0xeda39027, 0xf0912000, 0xdd82f293, 0x35fea503, 0x07f925f9, + 0xd2009952, 0xe7f37ea7, 0x345c03f9, 0x5e12209d, 0xf15112a7, 0x01a81fe6, + 0xddbaf293, 0x22239903, 0x3103d907, 0x43073383, 0x44e94333, 0x0005f0e8, + 0xd4cedfab, 0x22239d0c, 0x44c63516, 0x031ea127, 0xf493a027, 0x9903dd90, + 0xf1412242, 0x43334207, 0xf0e843e9, 0x11230005, 0x43073203, 0x32234fab, + 0x41074132, 0xd4ce4fab, 0x673fc66a, 0x11231207, 0x21071383, 0x2f032333, + 0x0005f0e4, 0xf4932349, 0x0703da74, 0x87e433e3, 0x01200133, 0xa7e32b4c, + 0xfdefff2e, 0xf3e8031e, 0x273824c1, 0x184c3333, 0xc01d4c53, 0x1333f144, + 0xf0ea14e9, 0x2ea70005, 0x07fde71f, 0x87143314, 0x05142b44, 0x27211520, + 0x353c0700, 0x0f4ea720, 0x3e0bfde7, 0x41154305, 0xf1934035, 0x9903dd00, + 0x42072212, 0x410b4333, 0x40694349, 0x009ad3ee, 0x3d07f441, 0x4203300b, + 0x008e43f2, 0x1489f341, 0x2b340320, 0x03130730, 0x071d2b42, 0xab410734, + 0x024fab3f, 0x07130743, 0x83e103e2, 0x070223e3, 0x0b33333e, 0xd5f493d0, + 0xc10703d9, 0x42010d07, 0xf0e43bf1, 0xcfab0005, 0x1ea70fab, 0x1efdefff, + 0x01f3e803, 0x33332714, 0x4c53184c, 0xf244c01d, 0x30874007, 0x432b4433, + 0x2c07420b, 0xe7ff3ea7, 0x331c87fd, 0x05212b24, 0x27321534, 0xa7313510, + 0xfde7ef3e, 0x32153b05, 0x43334e07, 0xf0e44f03, 0x31350005, 0x404d4c6d, + 0x4707abc6, 0x010c4c23, 0xff3ea742, 0x3205f9e7, 0x3e154e11, 0x34254421, + 0x4ea77001, 0x05f9e7f3, 0x15711140, 0x25772141, 0x1e740747, 0x22f39b12, + 0xf49b4027, 0x8b00070e, 0x22f49bff, 0x3d27051e, 0x4f9b8000, 0xe640c8b7, + 0x07b71f9b, 0x41210329, 0x05e107f3, 0xffef83f2, 0x4207ffff, 0x83420732, + 0xb6f49b43, 0x31074107, 0x4d832107, 0x3d8301e0, 0x2e831e00, 0x2701e000, + 0x27449601, 0x27400700, 0x27349601, 0x27300700, 0x27249601, 0x31200700, + 0xab4447f0, 0x87f0150f, 0x27233333, 0x1e1c1800, 0x40ab0127, 0x42ab43ab, + 0x00001e58, 0x001f3c06, 0xa307f800, 0x0a1e104c, 0x0000ef18, 0x4ca307f8, + 0xff3ea720, 0x3cc1fbff, 0x6b04076c, 0x29f4930f, 0x409d03db, 0xc8ec4744, + 0xc0281fe0, 0x361e1027, 0x276c34c1, 0x33140730, 0x1a1c531a, 0x00004f18, + 0x31270800, 0x121e4307, 0x1a331c07, 0x271a1c53, 0x00cf1840, 0x27080000, + 0x464f6b41, 0xff4ea745, 0x44c1fbff, 0x53de076c, 0xd4201ddc, 0x151e4027, + 0x4c334c07, 0x1e4c5310, 0x41003027, 0x43073127, 0x4f6b41c3, 0xdac2f293, + 0x45239903, 0x009b13ee, 0x4d760db6, 0x4ff6f411, 0x4c270088, 0x9df09110, + 0x04994424, 0x9b2327d4, 0x1a2c0324, 0x4207311b, 0x40133f4b, 0x42474352, + 0x071e340b, 0x4247323a, 0x4307342b, 0x24474f4b, 0x21234128, 0x2013031e, + 0x3f6b3207, 0xda72f493, 0x1e012703, 0x1bf2913c, 0xd4249931, 0x249b2327, + 0x071a2c03, 0x133f4b42, 0x47435240, 0x1e340b42, 0x47323a07, 0x07342b42, + 0x474f4b43, 0x23412824, 0x13031e21, 0x6b320720, 0x35f4933f, 0x002703da, + 0x9d45419d, 0x111e1143, 0x00274027, 0x1e11249d, 0x9d402708, 0x00271124, + 0x06f0d6e4, 0x1c331c07, 0x53b00710, 0x0c071c1c, 0x1ff60833, 0xfe930525, + 0x9903da00, 0x232744e3, 0x41534307, 0xab104c83, 0x44e49d43, 0x9d414c27, + 0x4f2713e4, 0x03030303, 0xc549e29d, 0xe1c54ce4, 0x46e29d50, 0xc534e1c5, + 0xe1c538e1, 0x2c51353c, 0x5e412700, 0x4c070118, 0x53164c33, 0x30271e4c, + 0x9d4ce39d, 0xcdd850e4, 0xa7770100, 0xfbffff4e, 0x996c40c1, 0x72990473, + 0x54e49905, 0xe199d007, 0x603f0355, 0x730001b9, 0x340b10dc, 0x2f030f8b, + 0x0001b960, 0x210b4d07, 0x0fff4d83, 0x30073119, 0x190e4c33, 0xff3d8322, + 0x3343ab3f, 0x41ab1a1c, 0xab1c2c33, 0x8be45542, 0x13000c0f, 0x300fab00, + 0x0c27210c, 0x6b031e21, 0x07501d0f, 0x0c0f8b0d, 0xab001300, 0x210c300f, + 0x1e210c27, 0x3d0f6b03, 0x00cdf850, 0xa7008502, 0xfbffff4e, 0x936c40c1, + 0x03d97ffe, 0x19087399, 0x99e139e4, 0xe0070972, 0xb9603f03, 0xec730001, + 0x8b340b10, 0x602f030f, 0x070001b9, 0x83210b4e, 0x190fff4d, 0x33300731, + 0x22190e4c, 0x3fff3d83, 0xab1a1c33, 0x3341ab43, 0x42ab1c2c, 0xd8f6f193, + 0x8b141503, 0x13000c0f, 0x300fab00, 0x0c27210c, 0x6b031e21, 0x07505d0f, + 0x0c0f8b0e, 0xab001300, 0x210c300f, 0x1e210c27, 0x930f6b03, 0x03d8e9f2, + 0x4027203d, 0xffff2ea7, 0x6c2ec1fb, 0x0000eefc, 0x07012280, 0x164c334e, + 0x931e4c53, 0x03d893f3, 0x2751349d, 0x4d349d40, 0x0100edd8, 0x6c20c17b, + 0x19067499, 0x07739952, 0xd0075139, 0xb9604f03, 0x420b0001, 0xb9603f03, + 0xdc730001, 0x8b310b10, 0x0741190f, 0x8332194d, 0x070fff4d, 0xff3d8330, + 0x0e4c333f, 0x1c3343ab, 0x3341ab1a, 0x42ab1c2c, 0xd852f393, 0x8b342503, + 0x13000c0f, 0x300fab00, 0x0c27210c, 0x6b031e21, 0x04509d0f, 0x0f8b0d07, + 0x0013000c, 0x0c300fab, 0x210c2721, 0x0f6b031e, 0xd846f493, 0xf8403d03, + 0x860200ed, 0xff4ea700, 0x40c1fbff, 0x0a73996c, 0xd82cfe93, 0x59e13903, + 0x0b729954, 0x3f03e007, 0x0001b960, 0x0b10ec73, 0x030f8b34, 0x01b9602f, + 0x0b4e0700, 0xff4d8321, 0x0731190f, 0x0e4c3330, 0x3d832219, 0x1c333fff, + 0xab43ab1a, 0x1c2c3341, 0xf19342ab, 0x3503d7c8, 0x0c0f8b14, 0xab001300, + 0x210c300f, 0x1e210c27, 0x9d0f6b03, 0x0e070650, 0x000c0f8b, 0x0fab0013, + 0x27210c30, 0x031e210c, 0xf2930f6b, 0x3d03d7be, 0xa7402720, 0xfbffff2e, + 0xfc6c2ec1, 0x800000ee, 0x3e070125, 0x93163c33, 0x03d767f1, 0x271e3c53, + 0x4e149d40, 0xd852139d, 0x7b0100ed, 0x196c20c1, 0x56129954, 0x11995339, + 0x03d00757, 0x01b9604f, 0x03420b00, 0x01b9603f, 0x10dc7300, 0x0f8b310b, + 0x4d074119, 0x4d833219, 0x30070fff, 0x3fff3d83, 0xab0e4c33, 0x1a1c3343, + 0x2c3341ab, 0x9342ab1c, 0x03d723f3, 0x0f8b3445, 0x0013000c, 0x0c300fab, + 0x210c2721, 0x0f6b031e, 0x0708509d, 0x0c0f8b0d, 0xab001300, 0x210c300f, + 0x1e210c27, 0x930f6b03, 0x03d71bf4, 0xedf8403d, 0x00890200, 0xffff4ea7, + 0x6c40c1fb, 0xd700fe93, 0x93e33903, 0x03d71df1, 0x14195259, 0x1139e007, + 0xb9602f03, 0x3f030001, 0x0001b960, 0x0b10ec73, 0x8b310b24, 0x194e070f, + 0xff4d8321, 0x0732190f, 0x0e4c3330, 0x3fff3d83, 0xab1a1c33, 0x3341ab43, + 0x42ab1c2c, 0xd696f193, 0x8b145503, 0x13000c0f, 0x300fab00, 0x0c27210c, + 0x6b031e21, 0x0a509d0f, 0x0f8b0e07, 0x0013000c, 0x0c300fab, 0x210c2721, + 0x0f6b031e, 0xd690f293, 0x27203d03, 0xff2ea740, 0x2ec1fbff, 0x00eefc6c, + 0x012a8000, 0x3c333e07, 0x35f19316, 0x3c5303d6, 0x9d40271e, 0x139d4f14, + 0x00edd853, 0x20c17d01, 0x0454996c, 0x99085299, 0xd0073913, 0x033d1199, + 0x01b9604f, 0x03420b00, 0x01b9603f, 0x10dc7300, 0x0f8b310b, 0x4d074119, + 0x4d833219, 0x30070fff, 0x3fff3d83, 0xab0e4c33, 0x1a1c3343, 0x2c3341ab, + 0x9342ab1c, 0x03d5eff3, 0x0f8b3465, 0x0013000c, 0x0c300fab, 0x210c2721, + 0x0f6b031e, 0x070c509d, 0x0c0f8b0d, 0xab001300, 0x210c300f, 0x1e210c27, + 0x930f6b03, 0x03d5ebf4, 0xedf8403d, 0x03f00200, 0xffff4ea7, 0x6c40c1fb, + 0xd5d0fe93, 0x99e33903, 0xfe930652, 0x3903d5ca, 0x0a5499e1, 0x2f03e007, + 0x0001b960, 0xb9603f03, 0xec730001, 0x0b240b10, 0x070f8b31, 0x8321194e, + 0x190fff4d, 0x33300732, 0x3d830e4c, 0x1c333fff, 0xab43ab1a, 0x1c2c3341, + 0xf19342ab, 0x7503d560, 0x0c0f8b14, 0xab001300, 0x210c300f, 0x1e210c27, + 0x9d0f6b03, 0x0e070e50, 0x000c0f8b, 0x0fab0013, 0x27210c30, 0x031e210c, + 0xf2930f6b, 0x3d03d55e, 0x03645e20, 0x03604fe6, 0x0000ce18, 0x93b74640, + 0x03d507f3, 0x349d4327, 0x9d442746, 0x4c274934, 0x13349d40, 0x9301a55e, + 0x03d4eff4, 0x439d3027, 0x9d342713, 0x935e4643, 0x4c00e801, 0x00cefc01, + 0x01454000, 0xd4d2fe93, 0x44e39903, 0x43072027, 0x4c834153, 0x9d43ab10, + 0x432744e4, 0x2746e49d, 0xe49d414c, 0x9d402713, 0xe4c54ce2, 0x49e29d34, + 0x0100cdd8, 0xff4ea777, 0x40c1fbff, 0x0473996c, 0x99057299, 0xd00754e4, + 0x0355e199, 0x01b9603f, 0x10dc7300, 0x0f8b340b, 0xb9602f03, 0x4d070001, + 0x4d83210b, 0x31190fff, 0x4c333007, 0x8322190e, 0xab3fff3d, 0x1a1c3343, + 0x2c3341ab, 0x5542ab1c, 0x0c0f8be4, 0xab001300, 0x210c300f, 0x1e210c27, + 0x1d0f6b03, 0x8b0d0750, 0x13000c0f, 0x300fab00, 0x0c27210c, 0x6b031e21, + 0xf8503d0f, 0x850200cd, 0xff4ea700, 0x40c1fbff, 0x75fe936c, 0x739903d4, + 0x39e41908, 0x097299e1, 0x3f03e007, 0x0001b960, 0x0b10ec73, 0x030f8b34, + 0x01b9602f, 0x0b4e0700, 0xff4d8321, 0x0731190f, 0x0e4c3330, 0x3d832219, + 0x1c333fff, 0xab43ab1a, 0x1c2c3341, 0xf19342ab, 0x1503d3ec, 0x0c0f8b14, + 0xab001300, 0x210c300f, 0x1e210c27, 0x5d0f6b03, 0x8b0e0750, 0x13000c0f, + 0x300fab00, 0x0c27210c, 0x6b031e21, 0xdff2930f, 0x203d03d3, 0x4c334c07, + 0x1e4c5316, 0xd39af393, 0x50349d03, 0xd801e15e, 0x400000ce, 0x89fd9326, + 0xb68603d3, 0x9d404c27, 0x432713d4, 0x2746d49d, 0x49d49d44, 0x4027251e, + 0x2713d49d, 0x46d49d44, 0x00cc191e, 0x61f39316, 0x4c2703d3, 0x13349d40, + 0x349d4327, 0x9d442746, 0x30274934, 0xd39ef493, 0x15430503, 0x9d402743, + 0x47070474, 0x437d4403, 0x435d433d, 0x0308739d, 0x3d437d44, 0x5e435d43, + 0x2c070176, 0xd322fd93, 0x3f2c8303, 0x2779e0c8, 0x10d29d30, 0xc554d3c5, + 0x402758d3, 0x0704749d, 0x7d440347, 0x5d433d43, 0x08739d43, 0x437d4403, + 0x435d433d, 0x10272d07, 0xffffeea7, 0x270d07fb, 0x0514d634, 0xc1061e0c, + 0x24056ce4, 0x11032401, 0x24054653, 0xf3402403, 0xd2cef293, 0x44239903, + 0x41534307, 0xab104c83, 0x44249d43, 0x249d4027, 0x10239946, 0x9d414c27, + 0x3fe61324, 0x4c2700fa, 0x13249d45, 0x0700f15e, 0x104c334c, 0x0710d29d, + 0x072707ec, 0x1e4c5317, 0x0314ec33, 0xc4180324, 0x40276841, 0xc554d4c5, + 0x302758d4, 0x7d04739d, 0x5d243d24, 0x08749d24, 0x143d147d, 0xd399145d, + 0x072e0744, 0x1a2c5343, 0x21034453, 0x240b4487, 0x0c0f3cd8, 0x4ca34307, + 0x44d49d0f, 0x990c2c03, 0x212344d3, 0x41534307, 0xab104c83, 0x44d49d43, + 0xd49d4127, 0x10d39946, 0x9d414c27, 0xd49d48d2, 0x733fc613, 0x1e454c27, + 0xc540276b, 0xd4c554d4, 0x9d302758, 0x247d0473, 0x245d243d, 0x7d08749d, + 0x5d143d14, 0x44d09914, 0xffff4ea7, 0x6c42c1fb, 0xc16c43c1, 0x40076c41, + 0x41533633, 0xf0003e83, 0xc02d8303, 0x104c830f, 0x40ab23ab, 0x331aec53, + 0x2eab0c1c, 0x00001e83, 0x44d49dfc, 0x21ab4227, 0x9946d49d, 0x4c2710d3, + 0x9dd20551, 0x350613d4, 0x9d554c27, 0xfe0113d4, 0x0ec2f041, 0x034e0740, + 0x61042e41, 0xa1161efd, 0x9b121efd, 0x0c2722fc, 0xa036be0f, 0x9b4027ff, + 0x0b1e22f4, 0xffffbea7, 0x00ce27fb, 0xb4d14000, 0x41d80420, 0x00dfa3df, + 0xd5fe0000, 0x270424bd, 0x0ef49b40, 0x19079383, 0xf2811833, 0xd162f493, + 0x29f17503, 0x44499976, 0x449927f6, 0x1843d446, 0x7fff6da3, 0xf39b121e, + 0x9b402722, 0x00070ef4, 0xf49bff8b, 0x27051e22, 0x9b02403d, 0x41d8484f, + 0x86f331e6, 0xba3f9b37, 0x03fc4d27, 0x23bcf49b, 0x732d0c7c, 0xffff3de3, + 0x7c0363ab, 0x93111e0c, 0x03d10ff4, 0x14464499, 0x006fa343, 0x937fff00, + 0x03d0fffd, 0xe046d499, 0x54028d42, 0xe0468643, 0x5e021341, 0x43e004d9, + 0x44e00375, 0xce5e04c0, 0x53743904, 0x474b0346, 0xbcf49b44, 0x9b1d4c27, + 0x4503bcf4, 0x99bcf49b, 0x460612d4, 0x44537439, 0x4c034383, 0x9b444755, + 0xd301bcf4, 0x4e834307, 0x24208208, 0x2082084e, 0x000f4f27, 0x401e844e, + 0x4c834307, 0xf144870f, 0x01b9a444, 0xbcf49b00, 0x43073653, 0x870f4c83, + 0xa444f144, 0x9b0001b9, 0x3653bcf4, 0x4c834307, 0xf144870f, 0x01b9a444, + 0xbcf49b00, 0x3c833453, 0xa434f13c, 0x9b0001b9, 0xf493bcf4, 0x1103d05c, + 0x83430743, 0x2082084e, 0x82084e24, 0x0f4f2720, 0x1e844e00, 0x83430740, + 0x44870f4c, 0xb9a444f1, 0xf49b0001, 0x073653bc, 0x0f4c8343, 0x44f14487, + 0x0001b9a4, 0x53bcf49b, 0x83430736, 0x44870f4c, 0xb9a444f1, 0xf49b0001, + 0x833453bc, 0x34f13c3c, 0x0001b9a4, 0x93bcf49b, 0x03cffff4, 0x43074321, + 0x82084e83, 0x084e2420, 0x4f272082, 0x844e000f, 0x4307401e, 0x870f4c83, + 0xa444f144, 0x9b0001b9, 0x3653bcf4, 0x4c834307, 0xf144870f, 0x01b9a444, + 0xbcf49b00, 0x43073653, 0x870f4c83, 0xa444f144, 0x9b0001b9, 0x3453bcf4, + 0xf13c3c83, 0x01b9a434, 0xbcf49b00, 0xcfa2f493, 0x07433103, 0x084e8343, + 0x4e242082, 0x27208208, 0x4e000f4f, 0x07401e84, 0x0f4c8343, 0x44f14487, + 0x0001b9a4, 0x53bcf49b, 0x83430736, 0x44870f4c, 0xb9a444f1, 0xf49b0001, + 0x073653bc, 0x0f4c8343, 0x44f14487, 0x0001b9a4, 0x53bcf49b, 0x3c3c8334, + 0xb9a434f1, 0xf49b0001, 0x45f293bc, 0x239903cf, 0x87743910, 0xe433f133, + 0x330001b9, 0x4e830f4c, 0x0b060000, 0xbcf49b43, 0x19442499, 0x0f4c8373, + 0x44873453, 0x44f13387, 0x0001ba34, 0xb9f433f1, 0x430b0001, 0x19bcf49b, + 0x44239974, 0x4c034383, 0x4734534d, 0xd03fe644, 0x9b41a302, 0xe127bcf4, + 0x320c7419, 0x4253e027, 0x4c034383, 0xab444751, 0x02b55e4e, 0x9ca37439, + 0x03465340, 0x9b44474b, 0x4c27bcf4, 0xbcf49b1d, 0xf49b4603, 0xfc4d27bc, + 0xbcf49b03, 0x0748d299, 0x07417342, 0x7342cb32, 0xd843ab32, 0x42071544, + 0x4c084403, 0xa3440310, 0x1293604f, 0xbcf49b81, 0x24080e1e, 0x2fa32423, + 0x811e5360, 0x93bcf29b, 0x03ce87f4, 0x39104399, 0xf1338774, 0x01b9e433, + 0x0f4c3300, 0x00004e83, 0x5e430b06, 0x74390243, 0x4653f071, 0x10000da3, + 0x4b03b907, 0x4447f075, 0x9b80bca3, 0x4c27bcf4, 0xbcf49b1d, 0xf49b4503, + 0x537439bc, 0x03438344, 0x4447554c, 0xf49b41a3, 0x07d301bc, 0x084e8343, + 0x4e242082, 0x27208208, 0x4e000f4f, 0x07401e84, 0x0f4c8343, 0x44f14487, + 0x0001b9a4, 0x53bcf49b, 0x83430736, 0x44870f4c, 0xb9a444f1, 0xf49b0001, + 0x073653bc, 0x0f4c8343, 0x44f14487, 0x0001b9a4, 0x53bcf49b, 0x3c3c8334, + 0xb9a434f1, 0xf49b0001, 0xddf293bc, 0x239903cd, 0x87743910, 0xe433f133, + 0x330001b9, 0x4e830f4c, 0x0b060000, 0xbcf49b43, 0x19442499, 0x0f4c8373, + 0x44873453, 0x44f13387, 0x0001ba34, 0xb9f433f1, 0x430b0001, 0x19bcf49b, + 0x44239974, 0x4c034383, 0x4734534d, 0xa3374644, 0xbcf49b41, 0x74191127, + 0x1027320c, 0x43834253, 0x47514c03, 0x9b41ab44, 0x665ebcf4, 0x53743901, + 0x474b0346, 0xbcf49b44, 0x8749d499, 0x8044f144, 0x9b0001ba, 0xd499bcf4, + 0x3943c449, 0x874cd499, 0x7444f144, 0x9b0001ba, 0xd499bcf4, 0xf144874d, + 0x01ba7444, 0xbcf49b00, 0x874ed499, 0x7444f144, 0x9b0001ba, 0xd499bcf4, + 0xf144874f, 0x01ba7444, 0xbcf49b00, 0xf49bd451, 0x49d499bf, 0x43c044e6, + 0x995a1e20, 0xd29934d3, 0x33430735, 0x43ab104c, 0x3c333207, 0x3343ab18, + 0xc542ab28, 0x501e54d4, 0xf49bd471, 0x9bd491bf, 0xd4b1bff4, 0x99bff49b, + 0xd39940d4, 0x41d09938, 0x333cde99, 0xd299104c, 0x3dd19939, 0x0c3334ab, + 0xab4eab18, 0xab283330, 0xab183340, 0xc541ab32, 0x141e54d3, 0xf39bff1e, + 0x9b402722, 0x00070ef4, 0xf49bff8b, 0x15061e22, 0x403c2774, 0xd8b84f9b, + 0xe340004d, 0xcc92f293, 0x44249903, 0x4c837319, 0x8734530f, 0xf1338744, + 0x01ba3444, 0xf433f100, 0x0b0001b9, 0xbcf49b43, 0x23997419, 0x03438344, + 0x34534d4c, 0x37464447, 0xf49b41a3, 0x192127bc, 0x27320c74, 0x83425320, + 0x514c0343, 0x42ab4447, 0x93bcf49b, 0x03cc43f3, 0x86123499, 0x44349949, + 0x240f4cd8, 0x44537439, 0x4c034383, 0x9b444755, 0x141ebcf4, 0x46537439, + 0x44474b03, 0xf49b41a3, 0x1e6fabbc, 0x07ff1e03, 0x0dfd93b9, 0x9fc603cc, + 0x11dc9972, 0x3047d299, 0x1e4527c5, 0x874c0703, 0xd443f144, 0x270001ba, + 0x27249641, 0x114c3340, 0xf49b430b, 0x3ec5d0bc, 0x45234c07, 0xdf6bd407, + 0x8f27ad07, 0x83c6db7f, 0xf89b0c1e, 0x234d07bc, 0x6bd40745, 0x270a07df, + 0x39f9be15, 0x0b4087ff, 0x234c1b40, 0xce4f6b45, 0x4d87e1d4, 0xbac044f1, + 0xf49b0001, 0xa1f493bc, 0x439903cb, 0x47439d11, 0x4027191e, 0x1e47d49d, + 0x22f39b12, 0xf49b4027, 0x8b00070e, 0x22f49bff, 0x3d27051e, 0x4f9b0240, + 0xe641d848, 0xf49bf471, 0xbaf69bb4, 0x51b9fb9b, 0x62efc6fe, 0xcbbef493, + 0x22449903, 0x4103f011, 0x43334383, 0xf0e844e9, 0x42230005, 0x1e1540ce, + 0x1ef3e805, 0xff2ea706, 0x2411fdef, 0x4ddc3327, 0x93effc6a, 0x03cb8ff4, + 0x11224499, 0x034333f1, 0x05f0e44f, 0x49436900, 0x23430b44, 0x1641ce43, + 0xf3e8051e, 0x2ea7061e, 0xc1fdefff, 0x33273c24, 0xfc6a4ddc, 0x01f493ee, + 0x429903cb, 0x3d915313, 0x13419972, 0x990c7399, 0x92f90d74, 0x0001b900, + 0x99f99153, 0x0001b940, 0x410b320b, 0x749df221, 0x0c739d0d, 0xf331791d, + 0x31032103, 0xf9012fab, 0xf225f335, 0x210c7c03, 0xeefe41f4, 0x1eed55e4, + 0x22fd9b12, 0xbe0f0c27, 0x27ff9950, 0x22f49b40, 0xcea70b1e, 0x27fbffff, + 0x200000de, 0x0420c4d1, 0x1edf42d8, 0x22f39b12, 0xf49b4027, 0x8b00070e, + 0x22f49bff, 0x3d27051e, 0x4f9b0240, 0xe641d848, 0x23ba4f9b, 0xf0510c7c, + 0x0fe6742d, 0xf3930131, 0x9903cac4, 0x41032234, 0x14074383, 0x13831123, + 0x23332107, 0x0b22349d, 0x93234923, 0x03c7c7f4, 0xe433e307, 0x20013387, + 0xe32b4d01, 0xefff2ea7, 0xe8031efd, 0x3824c1f3, 0x4c333327, 0x1d4c5318, + 0x33f144c0, 0xea14e913, 0xa70005f0, 0xfde71f2e, 0x14331407, 0x142b4487, + 0x21152005, 0x3d070027, 0x4ea72035, 0x0bfde70f, 0x1543053e, 0x35302741, + 0x51f19340, 0xf09303ca, 0x2703ca50, 0x201489e4, 0x439b2307, 0x1489040d, + 0x03238320, 0x9d042d42, 0x31032212, 0xfe200803, 0x01030207, 0x83201489, + 0x33200703, 0x93420323, 0x03c73bf3, 0xf0e42df1, 0xe4070005, 0xefab3101, + 0xefff2ea7, 0xe8031efd, 0x272401f3, 0x184c3333, 0xc01d4c53, 0x4e07f244, + 0xe7ff3ea7, 0x332e87fd, 0x05422b44, 0x27341531, 0xa7313510, 0xfde7ef2e, + 0x24152d05, 0x43334007, 0xf0e44f03, 0x30270005, 0x434d4e6d, 0xf4932135, + 0xa703c9c4, 0xfdefff0e, 0x1e22439d, 0xc1f3e803, 0x33273c04, 0xfc6a4ddc, + 0xe8051ef5, 0xa7061ef3, 0xfdefff2e, 0x33272411, 0xfc6a4ddc, 0x03f091ef, + 0xbe02680d, 0x27ff96db, 0xdf4ea735, 0x2ea7fded, 0x05fdefff, 0xe8031e43, + 0x272481f3, 0x0a4ddc33, 0x4327f6fc, 0x021824d5, 0xefff0ea7, 0xdc0461fd, + 0x1427fc48, 0x021801d5, 0x021c01d5, 0x03d53027, 0x2ea70658, 0x05fdebe7, + 0x004f2723, 0x15088300, 0x0ef39b24, 0x022001d5, 0x065c03d5, 0x04d54327, + 0x3ea70224, 0x91fdefff, 0xfc48dc34, 0x34d54427, 0x2ea70224, 0x27fdebdf, + 0x27240540, 0x0300003f, 0x9b231509, 0x00270ef4, 0xf58ef2c3, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0xf2e3f54e, 0xc207f095, 0x1fabf291, 0x33542289, + 0x07040319, 0x45b307d4, 0x731cbef2, 0x07bf6bff, 0x2704e6e0, 0x17405e04, + 0xf49b4027, 0x832d07b6, 0xf1428721, 0x05a30043, 0xc5f09300, 0x4ea70350, + 0x21fde79f, 0x91430501, 0xb94115f3, 0x55027433, 0x8f3ea7f3, 0x4e35fde7, + 0x05164c27, 0x35311534, 0xa701213e, 0xfde77f3e, 0x21c34103, 0x22873405, + 0xa30022f1, 0x31150005, 0xe76f4ea7, 0x053e35fd, 0x35411542, 0x91c6464e, + 0x031c07f0, 0x680d0318, 0xbe202702, 0xc6ff6e80, 0x274127b5, 0x850f22cd, + 0x1efc65f4, 0x27e0270b, 0x8501220d, 0x61f065fe, 0xe3f141fd, 0x930300dd, + 0x039dcff4, 0xa3454499, 0x241000dd, 0x00dde311, 0x00dda308, 0x33c40720, + 0xaea719cc, 0x27fbffff, 0x400000be, 0xfb9b101e, 0x0f0c2722, 0xff6c43be, + 0xf49b4027, 0x20a4d122, 0xeb41d804, 0xadd5dcab, 0x40270424, 0x610ef49b, + 0xd9f393fc, 0xcde3039d, 0x34150800, 0x90273405, 0x2000cda3, 0xf293fe91, + 0xa5039d70, 0x25f935fc, 0x995207f9, 0x7ea7d2ee, 0x03f9e7f3, 0x2e9d345c, + 0x14235e12, 0x0fe6f051, 0xf29301a8, 0x99039da8, 0xd9072223, 0x33833103, + 0x43334307, 0xf0e844e9, 0xdfab0005, 0x9d0cd4ce, 0x35162223, 0xa12744c6, + 0xa027031e, 0x9d7ef493, 0x22429903, 0x4207f141, 0x43e94333, 0x0005f0e8, + 0x32031123, 0x4fab4307, 0x41323223, 0x4fab4107, 0xc66ad4ce, 0x1207673f, + 0x13831123, 0x23332107, 0xf0e42f03, 0x23490005, 0x9a62f493, 0x33e30703, + 0x013387e4, 0x2b4c0120, 0xff2ea7e3, 0x031efdef, 0x24c1f3e8, 0x33332738, + 0x4c53184c, 0xf144c01d, 0x14e91333, 0x0005f0ea, 0xe71f2ea7, 0x331407fd, + 0x2b448714, 0x15200514, 0x07002721, 0xa720353c, 0xfde70f4e, 0x43053e0b, + 0x40354115, 0x9ceef193, 0x22129903, 0x43334207, 0x4349410b, 0xd3ee4069, + 0xf441009a, 0x300b3d07, 0x43f24203, 0xf341008e, 0x03201489, 0x07302b34, + 0x2b420313, 0x0734071d, 0xab3fab41, 0x0743024f, 0x03e20713, 0x23e383e1, + 0x333e0702, 0x93d00b33, 0x0399c3f4, 0x0d07c107, 0x3bf14201, 0x0005f0e4, + 0x0fabcfab, 0xefff1ea7, 0xe8031efd, 0x271401f3, 0x184c3333, 0xc01d4c53, + 0x4007f244, 0x44333087, 0x420b432b, 0x3ea72c07, 0x87fde7ff, 0x2b24331c, + 0x15340521, 0x35102732, 0xef3ea731, 0x3b05fde7, 0x4e073215, 0x4f034333, + 0x0005f0e4, 0x4c6d3135, 0xabc6404d, 0x4c234707, 0xa741010c, 0xf9e7ff3e, + 0x42113105, 0x44213215, 0x73013425, 0xe7f34ea7, 0x114305f9, 0x214c157c, + 0x07472577, 0x9b121e74, 0x402722f3, 0x070ef49b, 0x9bff8b00, 0x051e22f4, + 0x80003d27, 0xc8b74f9b, 0x1f9be640, 0x03e907b7, 0x01fe05e1, 0x07f241f0, + 0xffef83e1, 0x4207ffff, 0x83400720, 0xb6f49b43, 0x31074107, 0x4d832107, + 0x3d8301e0, 0x2e831e00, 0x2701e000, 0x274496c1, 0x274c07c0, 0x27349601, + 0x27300700, 0x272496c1, 0x07f031c0, 0x150fab2c, 0x874447f0, 0x27233333, + 0x1e1c1800, 0x40ab0127, 0x42ab43ab, 0x00001e58, 0x001f3c06, 0xa307f800, + 0x0a1e104c, 0x0000ef18, 0x4ca307f8, 0xff3ea720, 0x3cc1fbff, 0x6b04076c, + 0x15f4930f, 0x409d039b, 0xc8ec4744, 0xc0281fe0, 0x361e1027, 0x276c34c1, + 0x33140730, 0x1a1c531a, 0x00004f18, 0x31270800, 0x121e4307, 0x1a331c07, + 0x271a1c53, 0x00cf1840, 0x27080000, 0x464f6b41, 0xff4ea745, 0x44c1fbff, + 0x53de076c, 0xd4201ddc, 0x151e4027, 0x4c334c07, 0x1e4c5310, 0x41003027, + 0x43073127, 0x4f6b41c3, 0x9aaef293, 0x45239903, 0x009b13ee, 0x4d760db6, + 0x4ff6f411, 0x4c270088, 0x9df09110, 0x04994424, 0x9b2327d4, 0x1a2c0324, + 0x4207311b, 0x40133f4b, 0x42474352, 0x071e340b, 0x4247323a, 0x4307342b, + 0x24474f4b, 0x21234128, 0x2013031e, 0x3f6b3207, 0x9a5ef493, 0x1e012703, + 0x1bf2913c, 0xd4249931, 0x249b2327, 0x071a2c03, 0x133f4b42, 0x47435240, + 0x1e340b42, 0x47323a07, 0x07342b42, 0x474f4b43, 0x23412824, 0x13031e21, + 0x6b320720, 0x21f4933f, 0x0027039a, 0x9d45419d, 0x111e1143, 0x00274027, + 0x1e11249d, 0x9d402708, 0x00271124, 0x06f0d6e4, 0x1c331c07, 0x53b00710, + 0x0c071c1c, 0x1ff60833, 0xfe930525, 0x990399ec, 0x232744e3, 0x41534307, + 0xab104c83, 0x44e49d43, 0x9d414c27, 0x4f2713e4, 0x03030303, 0xc549e29d, + 0xe1c54ce4, 0x46e29d50, 0xc534e1c5, 0xe1c538e1, 0x2c51353c, 0x5e412700, + 0x4c070118, 0x53164c33, 0x30271e4c, 0x9d4ce39d, 0xcdd850e4, 0xa7770100, + 0xfbffff4e, 0x996c40c1, 0x72990473, 0x54e49905, 0xe199d007, 0x603f0355, + 0x730001b9, 0x340b10dc, 0x2f030f8b, 0x0001b960, 0x210b4d07, 0x0fff4d83, + 0x30073119, 0x190e4c33, 0xff3d8322, 0x3343ab3f, 0x41ab1a1c, 0xab1c2c33, + 0x8be45542, 0x13000c0f, 0x300fab00, 0x0c27210c, 0x6b031e21, 0x07501d0f, + 0x0c0f8b0d, 0xab001300, 0x210c300f, 0x1e210c27, 0x3d0f6b03, 0x00cdf850, + 0xa7008502, 0xfbffff4e, 0x936c40c1, 0x03996bfe, 0x19087399, 0x99e139e4, + 0xe0070972, 0xb9603f03, 0xec730001, 0x8b340b10, 0x602f030f, 0x070001b9, + 0x83210b4e, 0x190fff4d, 0x33300731, 0x22190e4c, 0x3fff3d83, 0xab1a1c33, + 0x3341ab43, 0x42ab1c2c, 0x98e2f193, 0x8b141503, 0x13000c0f, 0x300fab00, + 0x0c27210c, 0x6b031e21, 0x07505d0f, 0x0c0f8b0e, 0xab001300, 0x210c300f, + 0x1e210c27, 0x930f6b03, 0x0398d5f2, 0x4027203d, 0xffff2ea7, 0x6c2ec1fb, + 0x0000eefc, 0x07012280, 0x164c334e, 0x931e4c53, 0x03987ff3, 0x2751349d, + 0x4d349d40, 0x0100edd8, 0x6c20c17b, 0x19067499, 0x07739952, 0xd0075139, + 0xb9604f03, 0x420b0001, 0xb9603f03, 0xdc730001, 0x8b310b10, 0x0741190f, + 0x8332194d, 0x070fff4d, 0xff3d8330, 0x0e4c333f, 0x1c3343ab, 0x3341ab1a, + 0x42ab1c2c, 0x983ef393, 0x8b342503, 0x13000c0f, 0x300fab00, 0x0c27210c, + 0x6b031e21, 0x04509d0f, 0x0f8b0d07, 0x0013000c, 0x0c300fab, 0x210c2721, + 0x0f6b031e, 0x9832f493, 0xf8403d03, 0x860200ed, 0xff4ea700, 0x40c1fbff, + 0x0a73996c, 0x9818fe93, 0x59e13903, 0x0b729954, 0x3f03e007, 0x0001b960, + 0x0b10ec73, 0x030f8b34, 0x01b9602f, 0x0b4e0700, 0xff4d8321, 0x0731190f, + 0x0e4c3330, 0x3d832219, 0x1c333fff, 0xab43ab1a, 0x1c2c3341, 0xf19342ab, + 0x350397b4, 0x0c0f8b14, 0xab001300, 0x210c300f, 0x1e210c27, 0x9d0f6b03, + 0x0e070650, 0x000c0f8b, 0x0fab0013, 0x27210c30, 0x031e210c, 0xf2930f6b, + 0x3d0397aa, 0xa7402720, 0xfbffff2e, 0xfc6c2ec1, 0x800000ee, 0x3e070125, + 0x93163c33, 0x039753f1, 0x271e3c53, 0x4e149d40, 0xd852139d, 0x7b0100ed, + 0x196c20c1, 0x56129954, 0x11995339, 0x03d00757, 0x01b9604f, 0x03420b00, + 0x01b9603f, 0x10dc7300, 0x0f8b310b, 0x4d074119, 0x4d833219, 0x30070fff, + 0x3fff3d83, 0xab0e4c33, 0x1a1c3343, 0x2c3341ab, 0x9342ab1c, 0x03970ff3, + 0x0f8b3445, 0x0013000c, 0x0c300fab, 0x210c2721, 0x0f6b031e, 0x0708509d, + 0x0c0f8b0d, 0xab001300, 0x210c300f, 0x1e210c27, 0x930f6b03, 0x039707f4, + 0xedf8403d, 0x00890200, 0xffff4ea7, 0x6c40c1fb, 0x96ecfe93, 0x93e33903, + 0x039709f1, 0x14195259, 0x1139e007, 0xb9602f03, 0x3f030001, 0x0001b960, + 0x0b10ec73, 0x8b310b24, 0x194e070f, 0xff4d8321, 0x0732190f, 0x0e4c3330, + 0x3fff3d83, 0xab1a1c33, 0x3341ab43, 0x42ab1c2c, 0x9682f193, 0x8b145503, + 0x13000c0f, 0x300fab00, 0x0c27210c, 0x6b031e21, 0x0a509d0f, 0x0f8b0e07, + 0x0013000c, 0x0c300fab, 0x210c2721, 0x0f6b031e, 0x967cf293, 0x27203d03, + 0xff2ea740, 0x2ec1fbff, 0x00eefc6c, 0x012a8000, 0x3c333e07, 0x21f19316, + 0x3c530396, 0x9d40271e, 0x139d4f14, 0x00edd853, 0x20c17d01, 0x0454996c, + 0x99085299, 0xd0073913, 0x033d1199, 0x01b9604f, 0x03420b00, 0x01b9603f, + 0x10dc7300, 0x0f8b310b, 0x4d074119, 0x4d833219, 0x30070fff, 0x3fff3d83, + 0xab0e4c33, 0x1a1c3343, 0x2c3341ab, 0x9342ab1c, 0x0395dbf3, 0x0f8b3465, + 0x0013000c, 0x0c300fab, 0x210c2721, 0x0f6b031e, 0x070c509d, 0x0c0f8b0d, + 0xab001300, 0x210c300f, 0x1e210c27, 0x930f6b03, 0x0395d7f4, 0xedf8403d, + 0x03f00200, 0xffff4ea7, 0x6c40c1fb, 0x95bcfc93, 0x06529903, 0xfe93c339, + 0x390395b6, 0x0a5499e1, 0x2f03e007, 0x0001b960, 0xb9603f03, 0xec730001, + 0x0b240b10, 0x070f8b31, 0x8321194e, 0x190fff4d, 0x33300732, 0x3d830e4c, + 0x1c333fff, 0xab43ab1a, 0x1c2c3341, 0xf19342ab, 0x7503954c, 0x0c0f8b14, + 0xab001300, 0x210c300f, 0x1e210c27, 0x9d0f6b03, 0x0e070e50, 0x000c0f8b, + 0x0fab0013, 0x27210c30, 0x031e210c, 0xf2930f6b, 0x3d03954a, 0x03645e20, + 0x03604fe6, 0x0000ce18, 0x93b74640, 0x0394f3f3, 0x349d4327, 0x9d442746, + 0x4c274934, 0x13349d40, 0x9301a55e, 0x0394dbf4, 0x439d3027, 0x9d342713, + 0x935e4643, 0x4c00e801, 0x00cefc01, 0x01454000, 0x94befe93, 0x44e39903, + 0x43072027, 0x4c834153, 0x9d43ab10, 0x432744e4, 0x2746e49d, 0xe49d414c, + 0x9d402713, 0xe4c54ce2, 0x49e29d34, 0x0100cdd8, 0xff4ea777, 0x40c1fbff, + 0x0473996c, 0x99057299, 0xd00754e4, 0x0355e199, 0x01b9603f, 0x10dc7300, + 0x0f8b340b, 0xb9602f03, 0x4d070001, 0x4d83210b, 0x31190fff, 0x4c333007, + 0x8322190e, 0xab3fff3d, 0x1a1c3343, 0x2c3341ab, 0x5542ab1c, 0x0c0f8be4, + 0xab001300, 0x210c300f, 0x1e210c27, 0x1d0f6b03, 0x8b0d0750, 0x13000c0f, + 0x300fab00, 0x0c27210c, 0x6b031e21, 0xf8503d0f, 0x850200cd, 0xff4ea700, + 0x40c1fbff, 0x61fe936c, 0x73990394, 0x39e41908, 0x097299e1, 0x3f03e007, + 0x0001b960, 0x0b10ec73, 0x030f8b34, 0x01b9602f, 0x0b4e0700, 0xff4d8321, + 0x0731190f, 0x0e4c3330, 0x3d832219, 0x1c333fff, 0xab43ab1a, 0x1c2c3341, + 0xf19342ab, 0x150393d8, 0x0c0f8b14, 0xab001300, 0x210c300f, 0x1e210c27, + 0x5d0f6b03, 0x8b0e0750, 0x13000c0f, 0x300fab00, 0x0c27210c, 0x6b031e21, + 0xcbf2930f, 0x203d0393, 0x4c334c07, 0x1e4c5316, 0x9386f393, 0x50349d03, + 0xd801e15e, 0x400000ce, 0x75fd9326, 0xb6860393, 0x9d404c27, 0x432713d4, + 0x2746d49d, 0x49d49d44, 0x4027251e, 0x2713d49d, 0x46d49d44, 0x00cc191e, + 0x4df39316, 0x4c270393, 0x13349d40, 0x349d4327, 0x9d442746, 0x30274934, + 0x938af493, 0x15430503, 0x9d402743, 0x47070474, 0x437d4403, 0x435d433d, + 0x0308739d, 0x3d437d44, 0x5e435d43, 0x2c070176, 0x930efd93, 0x3f2c8303, + 0x2779e0c8, 0x10d29d30, 0xc554d3c5, 0x402758d3, 0x0704749d, 0x7d440347, + 0x5d433d43, 0x08739d43, 0x437d4403, 0x435d433d, 0x10272d07, 0xffffeea7, + 0x270d07fb, 0x0514d634, 0xc1061e0c, 0x24056ce4, 0x11032401, 0x24054653, + 0xf3402403, 0x92baf293, 0x44239903, 0x41534307, 0xab104c83, 0x44249d43, + 0x249d4027, 0x10239946, 0x9d414c27, 0x3fe61324, 0x4c2700fa, 0x13249d45, + 0x0700f15e, 0x104c334c, 0x0710d29d, 0x072707ec, 0x1e4c5317, 0x0314ec33, + 0xc4180324, 0x40276841, 0xc554d4c5, 0x302758d4, 0x7d04739d, 0x5d243d24, + 0x08749d24, 0x143d147d, 0xd399145d, 0x072e0744, 0x1a2c5343, 0x21034453, + 0x240b4487, 0x0c0f3cd8, 0x4ca34307, 0x44d49d0f, 0x990c2c03, 0x212344d3, + 0x41534307, 0xab104c83, 0x44d49d43, 0xd49d4127, 0x10d39946, 0x9d414c27, + 0xd49d48d2, 0x733fc613, 0x1e454c27, 0xc540276b, 0xd4c554d4, 0x9d302758, + 0x247d0473, 0x245d243d, 0x7d08749d, 0x5d143d14, 0x44d09914, 0xffff4ea7, + 0x6c42c1fb, 0xc16c43c1, 0x40076c41, 0x41533633, 0xf0003e83, 0xc02d8303, + 0x104c830f, 0x40ab23ab, 0x331aec53, 0x2eab0c1c, 0x00001e83, 0x44d49dfc, + 0x21ab4227, 0x9946d49d, 0x4c2710d3, 0x9dd20551, 0x350613d4, 0x9d554c27, + 0xfc0113d4, 0xecc2fe41, 0x034c0740, 0x614e2e41, 0xa1161efd, 0x9b121efd, + 0x0c2722fc, 0x6022be0f, 0x9b4027ff, 0x0b1e22f4, 0xffffbea7, 0x00ce27fb, + 0xb4d14000, 0x41d80420, 0x00dfa3df, 0xd5fe0000, 0x270424bd, 0x0ef49b40, + 0x09079383, 0xf1810833, 0x914ef493, 0x29f07503, 0x44489976, 0x449917f6, + 0x1843d446, 0x7fff6da3, 0xf39b121e, 0x9b402722, 0x00070ef4, 0xf49bff8b, + 0x27051e22, 0x9b02403d, 0x41d8484f, 0x86f231e6, 0xba3f9b27, 0x03fc4d27, + 0x23bcf49b, 0x732d0c7c, 0xffff3de3, 0x7c0363ab, 0x93111e0c, 0x0390fbf4, + 0x14464499, 0x006fa343, 0x937fff00, 0x0390ebf2, 0xe0462499, 0x5402b342, + 0xe0468643, 0x5e022641, 0x43e00653, 0x44e003ae, 0x485e0639, 0x53743906, + 0x184c0346, 0xf49b4447, 0x837439bc, 0x1b4c0343, 0x41a34447, 0x27bcf49b, + 0xb72dbd4f, 0xbcf49b81, 0x9b404c27, 0x2499bcf4, 0x39460612, 0x83445374, + 0x554c0343, 0xf49b4447, 0x072301bc, 0x084e8343, 0x4e242082, 0x27208208, + 0x4e000f4f, 0x07401e84, 0x0f4c8343, 0x44f14487, 0x0001b9a4, 0x53bcf49b, + 0x83430736, 0x44870f4c, 0xb9a444f1, 0xf49b0001, 0x073653bc, 0x0f4c8343, + 0x44f14487, 0x0001b9a4, 0x53bcf49b, 0x3c3c8334, 0xb9a434f1, 0xf49b0001, + 0x35f493bc, 0x43110390, 0x4e834307, 0x24208208, 0x2082084e, 0x000f4f27, + 0x401e844e, 0x4c834307, 0xf144870f, 0x01b9a444, 0xbcf49b00, 0x43073653, + 0x870f4c83, 0xa444f144, 0x9b0001b9, 0x3653bcf4, 0x4c834307, 0xf144870f, + 0x01b9a444, 0xbcf49b00, 0x3c833453, 0xa434f13c, 0x9b0001b9, 0xf493bcf4, + 0x21038fd8, 0x83430743, 0x2082084e, 0x82084e24, 0x0f4f2720, 0x1e844e00, + 0x83430740, 0x44870f4c, 0xb9a444f1, 0xf49b0001, 0x073653bc, 0x0f4c8343, + 0x44f14487, 0x0001b9a4, 0x53bcf49b, 0x83430736, 0x44870f4c, 0xb9a444f1, + 0xf49b0001, 0x833453bc, 0x34f13c3c, 0x0001b9a4, 0x93bcf49b, 0x038f7bf4, + 0x43074331, 0x82084e83, 0x084e2420, 0x4f272082, 0x844e000f, 0x4307401e, + 0x870f4c83, 0xa444f144, 0x9b0001b9, 0x3653bcf4, 0x4c834307, 0xf144870f, + 0x01b9a444, 0xbcf49b00, 0x43073653, 0x870f4c83, 0xa444f144, 0x9b0001b9, + 0x3453bcf4, 0xf13c3c83, 0x01b9a434, 0xbcf49b00, 0x8f1ef293, 0x10239903, + 0x33877439, 0xb9e433f1, 0x4c330001, 0x004e830f, 0x430b0600, 0x99bcf49b, + 0x73194424, 0x530f4c83, 0x87448734, 0x3444f133, 0xf10001ba, 0x01b9f433, + 0x9b430b00, 0x7419bcf4, 0x83442399, 0x4d4c0343, 0x44473453, 0x04363fe6, + 0xf49b41a3, 0x19c127bc, 0x27320c74, 0x834253c0, 0x514c0343, 0x4cab4447, + 0x39041b5e, 0x408ca373, 0x46534307, 0x47184c03, 0xbcf49b44, 0x3c033383, + 0xa333471b, 0xbcf39b31, 0x2dbd4f27, 0xf49b81b7, 0x414c27bc, 0x27bcf49b, + 0x9b03fc4d, 0x2299bcf4, 0x73420748, 0xcb320741, 0xab327342, 0x1544d843, + 0x44034207, 0x03104c08, 0x604fa344, 0x9b820293, 0x0e1ebcf4, 0x24232408, + 0x53602fa3, 0xf29b820e, 0x4df493bc, 0x4399038e, 0x87743910, 0xe433f133, + 0x330001b9, 0x4e830f4c, 0x0b060000, 0x03965e43, 0xfe717439, 0xeda34653, + 0xb8071000, 0x75184c03, 0xa34447fe, 0xf49b80bc, 0x837439bc, 0x1b4c0343, + 0x41a34447, 0x27bcf49b, 0xb72dbd4f, 0xbcf49b81, 0x9b404c27, 0x7439bcf4, + 0x43834453, 0x47554c03, 0x9b41a344, 0x2301bcf4, 0x4e834307, 0x24208208, + 0x2082084e, 0x000f4f27, 0x401e844e, 0x4c834307, 0xf144870f, 0x01b9a444, + 0xbcf49b00, 0x43073653, 0x870f4c83, 0xa444f144, 0x9b0001b9, 0x3653bcf4, + 0x4c834307, 0xf144870f, 0x01b9a444, 0xbcf49b00, 0x3c833453, 0xa434f13c, + 0x9b0001b9, 0xf293bcf4, 0x99038d90, 0x74391023, 0x33f13387, 0x0001b9e4, + 0x830f4c33, 0x0600004e, 0xf49b430b, 0x442499bc, 0x4c837319, 0x8734530f, + 0xf1338744, 0x01ba3444, 0xf433f100, 0x0b0001b9, 0xbcf49b43, 0x23997419, + 0x03438344, 0x34534d4c, 0x37464447, 0xf49b41a3, 0x190127bc, 0x27320c74, + 0x83425300, 0x514c0343, 0x40ab4447, 0x5ebcf49b, 0x743902a7, 0x4c034653, + 0x9b444718, 0x7439bcf4, 0x83492399, 0x1b4c0343, 0xe01e33c0, 0xf600b534, + 0x4700b53f, 0x9b41a344, 0x2499bcf4, 0xf1448750, 0x01bab044, 0x00a25e00, + 0x41a34447, 0x27bcf49b, 0xb72dbf4f, 0xbcf49b81, 0xc04c2499, 0x4c271443, + 0xbcf49b49, 0x87502499, 0x9444f144, 0x1e0001ba, 0x484c2704, 0x93bcf49b, + 0x038cbff3, 0xc04d3499, 0x4c271443, 0xbcf49b49, 0x87513499, 0x9444f144, + 0x1e0001ba, 0x484c2704, 0x93bcf49b, 0x038c9bf3, 0xc04e3499, 0x4c271443, + 0xbcf49b49, 0x87523499, 0x9444f144, 0x1e0001ba, 0x484c2704, 0x93bcf49b, + 0x038c77f3, 0xc04f3499, 0x4c271443, 0xbcf49b49, 0x87533499, 0x9444f144, + 0x1e0001ba, 0x484c270c, 0x4447071e, 0xff1e031e, 0x93bcf49b, 0x038c4bfd, + 0xc049d499, 0x44e05843, 0x4ff6012e, 0xd4990117, 0x51413850, 0xbff49bd4, + 0x9934d399, 0x430735d2, 0xab104c33, 0x33320743, 0x43ab183c, 0x42ab2833, + 0x1554d4c5, 0x50d49974, 0xd4614238, 0x99bff49b, 0xd29936d3, 0x33430737, + 0x43ab104c, 0x3c333207, 0x3343ab18, 0xc542ab28, 0xc45e58d4, 0x50d49900, + 0xd4514138, 0x99bff49b, 0xcd0751d4, 0x381ccc03, 0x9bd47141, 0xd499bff4, + 0x93415852, 0x038bdff1, 0xf49b1441, 0x53d499bf, 0xc4414138, 0x99bff49b, + 0xd39940d4, 0x41d09938, 0x99104c33, 0xde9939d2, 0x3334ab3c, 0xd199180c, + 0xab28333d, 0xab30ab4e, 0x3340ab32, 0xc541ab18, 0x741554d3, 0x0750d499, + 0x3824232c, 0x9bd46142, 0xd499bff4, 0x033c0751, 0x81423834, 0xbff49bd4, + 0x3852d499, 0x9b244142, 0xd499bff4, 0x41423853, 0xbff49b34, 0x9342d499, + 0x038b91fc, 0x993ad399, 0xc23943d0, 0x99104c33, 0xfc933ede, 0xab038b82, + 0x180c3334, 0x4eabc139, 0x283330ab, 0x40ab32ab, 0xd3c51833, 0x2541ab58, + 0x1e141e74, 0x22f39bff, 0xf49b4027, 0x8b00070e, 0x22f49bff, 0x3c27041e, + 0xb84f9b40, 0x40004dd8, 0x05f293e5, 0x2499038b, 0x83731944, 0x34530f4c, + 0x33874487, 0xba3444f1, 0x33f10001, 0x0001b9f4, 0xf49b430b, 0x997419bc, + 0x43834423, 0x534d4c03, 0x46444734, 0x9b41a337, 0xe127bcf4, 0x320c7419, + 0x4253e027, 0x4c034383, 0xab444751, 0xbcf49b4e, 0x8ab6f393, 0x12349903, + 0x349949a6, 0x0f4cd844, 0x53743925, 0x03438344, 0x4447554c, 0x1ebcf49b, + 0x53743915, 0x184c0346, 0x41a34447, 0xabbcf49b, 0x1e031e6f, 0x93b807ff, + 0x038a7ffd, 0x99728fc6, 0xd29911dc, 0x27c53047, 0x07031e45, 0xf144874c, + 0x01bad443, 0x96412700, 0x33402724, 0x430b114c, 0xd0bcf49b, 0x4c073ec5, + 0xd4074523, 0xad07df6b, 0xdb7f9f27, 0x0c1e83c6, 0x07bcf99b, 0x0745234d, + 0x07df6bd4, 0xbe15270a, 0x87fef86b, 0x1b400b40, 0x6b45234c, 0xe1d4ce4f, + 0x44f14d87, 0x0001bac0, 0x93bcf49b, 0x038a13f4, 0x9d114099, 0x191e4740, + 0xd49d4027, 0x9b121e47, 0x402722f3, 0x070ef49b, 0x9bff8b00, 0x051e22f4, + 0x02403d27, 0xd8484f9b, 0xf171e641, 0x9bb4f19b, 0xfb9bbaf6, 0xc6f251b9, + 0xf493622f, 0x99038a30, 0xf3112244, 0x43834103, 0x44e94333, 0x0005f0e8, + 0x43ce4223, 0xe8051e15, 0xa7061ef3, 0xfdefff2e, 0x33272411, 0xfc6a4ddc, + 0x01f493ef, 0x4499038a, 0x33fc1122, 0xe44f0343, 0x690005f0, 0x0b444943, + 0xce432343, 0x051e16c4, 0x061ef3e8, 0xefff2ea7, 0x3c24c1fd, 0x4ddc3327, + 0x93eefc6a, 0x038973f4, 0x53134e99, 0x997e3d81, 0x73991341, 0x0d74990c, + 0xb90082f9, 0x81530001, 0xb94088f9, 0x320b0001, 0xf221410b, 0x9d0d749d, + 0x781d0c73, 0x2103f031, 0x2fab0103, 0xf035f901, 0x7c03f225, 0x41f1210c, + 0xd921eef2, 0x9b121eeb, 0x0c2722fd, 0x57c2be0f, 0x9b4027ff, 0x0b1e22f4, + 0xffffcea7, 0x00de27fb, 0xc4d12000, 0x42d80420, 0x9b121edf, 0x402722f3, + 0x070ef49b, 0x9bff8b00, 0x051e22f4, 0x02403d27, 0xd8484f9b, 0x4f9be641, + 0x0c7c23ba, 0x742df351, 0x01313fe6, 0x8936f393, 0x22349903, 0x43834103, + 0x11231407, 0x21071383, 0x349d2333, 0x49230b22, 0x39f49323, 0xe3070386, + 0x3387e433, 0x4d012001, 0x2ea7e32b, 0x1efdefff, 0xc1f3e803, 0x33273824, + 0x53184c33, 0x44c01d4c, 0xe91333f1, 0x05f0ea14, 0x1f2ea700, 0x1407fde7, + 0x44871433, 0x2005142b, 0x00272115, 0x20353d07, 0xe70f4ea7, 0x053e0bfd, + 0x27411543, 0x93403530, 0x0388c3f1, 0x88c2f093, 0x89e42703, 0x23072014, + 0x040d439b, 0x83201489, 0x2d420323, 0x22129d04, 0x08033103, 0x0207fe20, + 0x14890103, 0x07038320, 0x03233320, 0xadf39342, 0x2df10385, 0x0005f0e4, + 0x3101e407, 0x2ea7efab, 0x1efdefff, 0x01f3e803, 0x33332724, 0x4c53184c, + 0xf244c01d, 0x3ea74e07, 0x87fde7ff, 0x2b44332e, 0x15310542, 0x35102734, + 0xef2ea731, 0x2d05fde7, 0x40072415, 0x4f034333, 0x0005f0e4, 0x4e6d3027, + 0x2135434d, 0x8836f493, 0xff0ea703, 0x439dfdef, 0xe8031e22, 0x3c04c1f3, + 0x4ddc3327, 0x1ef5fc6a, 0x1ef3e805, 0xff2ea706, 0x2411fdef, 0x4ddc3327, + 0x91effc6a, 0x680d03f0, 0x554dbe02, 0xa73527ff, 0xfdeddf4e, 0xefff2ea7, + 0x1e4305fd, 0x81f3e803, 0xdc332724, 0xf6fc0a4d, 0x24d54327, 0x0ea70218, + 0x61fdefff, 0xfc48dc04, 0x01d51427, 0x01d50218, 0x3027021c, 0x065803d5, + 0xebe72ea7, 0x272305fd, 0x8300004f, 0x9b241508, 0x01d50ef3, 0x03d50220, + 0x4327065c, 0x022404d5, 0xefff3ea7, 0xdc3491fd, 0x4427fc48, 0x022434d5, + 0xebdf2ea7, 0x054027fd, 0x003f2724, 0x15090300, 0x0ef49b23, 0xf2c30027, + 0x0000f58e, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x07030200, 0x0d110804, 0x0e091205, 0x0b100f0a, 0x24212001, 0x282c2522, + 0x29262d23, 0x132b2a27, 0x14191806, 0x1c2e151a, 0x1d162f1b, 0x0c1f1e17, + 0x111e1d03, 0x0825121f, 0x09132620, 0x020b0a14, 0x15222110, 0x04271623, + 0x05172824, 0x01070618, 0x192b2a29, 0x0c2e1a2c, 0x0d1b2f2d, 0x000f0e1c, + 0x06080400, 0x0e0c0a02, 0x00000010, 0x00170500, 0x0005f146, 0x0005f10c, + 0xf0e3f54e, 0x19339007, 0x83070403, 0xc407b207, 0xff32adbe, 0xd0078f6b, + 0x042704e6, 0x27048f5e, 0xb6f49b40, 0x21832c07, 0x87d29c99, 0x0041f142, + 0x930005a3, 0x031053fe, 0x5e56f493, 0x9f3ea703, 0xe021fde7, 0x05164c9d, + 0x27301531, 0x3d35164c, 0xe78f3ea7, 0x153405fd, 0x213d3530, 0x7f3ea7e1, + 0x4103fde7, 0x340521c3, 0x22f12287, 0x0005a300, 0x4ea73115, 0x35fde76f, + 0x1542053d, 0x464d3541, 0x071b07b6, 0x03180309, 0x2702680d, 0x2e0ebe20, + 0x278546ff, 0x050f220d, 0x27071ef0, 0x0501222d, 0x89fd01f2, 0xdde35493, + 0xf4930300, 0x99035de4, 0xdda33c44, 0x31241000, 0x0800dde3, 0x2000dda3, + 0xcc33c407, 0xffaea719, 0xbe27fbff, 0x1e400000, 0x22fb9b10, 0xbe0f0c27, + 0x27ff2bd8, 0x22f49b40, 0x0420a4d1, 0xabeb41d8, 0x24add5dc, 0x9b402704, + 0xf7010ef4, 0x7de38833, 0xb0270800, 0x5d92fc93, 0x007da303, 0x036ea720, + 0x5127f9e8, 0x8000ad27, 0xfb15f825, 0x9b02b75e, 0x402722fa, 0x070ef49b, + 0x9bff8b00, 0x4f9b22f4, 0xec40c8b7, 0x07b71f9b, 0x5494898b, 0x8103e107, + 0xffffef83, 0x485207ff, 0x43834807, 0x07b6f49b, 0x07310741, 0xe04d8321, + 0x003d8301, 0x002e831e, 0x012701e0, 0x00274496, 0x01274007, 0x00273496, + 0x01273007, 0x00272496, 0x44472007, 0x23333387, 0x1c180027, 0xab01271e, + 0xab43ab40, 0x001e5842, 0x1f3c0600, 0x07f80000, 0x1e104ca3, 0x00ef180a, + 0xa307f800, 0xf311204c, 0x0717c49d, 0x0709072e, 0xbe3fab1c, 0x89000304, + 0x48d25494, 0x2e422351, 0x1efd014b, 0x1ed70719, 0x002e2715, 0xf29b4000, + 0x0f0c2722, 0xff2ae3be, 0xf49b4027, 0xff3ea722, 0x34d1fbff, 0x41d80420, + 0x00dfa3e1, 0xd5fe0000, 0x2704243d, 0x0ef49b40, 0x4d27141e, 0xf49b0220, + 0x9b402722, 0x00070ef4, 0xf49bff8b, 0x484f9b22, 0xc6e841d8, 0x1ed02754, + 0x39df9b09, 0x053a4f9b, 0xd8c40164, 0x2710804c, 0x61641540, 0x035127c4, + 0x5ec46541, 0x94990196, 0x6145667d, 0x41f49bc4, 0xc4654027, 0x4c33c401, + 0x1d4c5315, 0x00d043e0, 0x4fc64454, 0x9442e07c, 0x01275e00, 0x012347f4, + 0x1c070907, 0x000638be, 0x443dc499, 0x7d949944, 0x1e3541c4, 0x164cc40b, + 0x7d94992f, 0x532942c4, 0x01fd7ff0, 0x53f29303, 0x9199035c, 0x2b01277d, + 0x19114423, 0x1e455634, 0x19124409, 0x27441034, 0x58310300, 0x27031ef2, + 0x17c49901, 0x920044f9, 0xf49b0002, 0x16c49941, 0x00b64fe6, 0xf817c499, + 0x00ae0f4c, 0x00aa0fe6, 0xf49b4027, 0x00a25e40, 0x9b3dc499, 0xc49941f4, + 0x41f49b14, 0x4b15c499, 0x42f49b4f, 0x02001d27, 0x9900ad5e, 0xf49b3dc4, + 0x40fa9b41, 0xfd0ef053, 0x34010301, 0x02004d38, 0x1e40fa9b, 0xc04d830f, + 0xa3463303, 0x0300004e, 0x0340f49b, 0x1c3fc434, 0xdf0005f1, 0xc499411e, + 0x41f49b3d, 0xe616c499, 0x9b402744, 0xf35340f4, 0x3201fcd4, 0x14272301, + 0x43073653, 0x330f4c83, 0x38380c4c, 0x1e40fa9b, 0x004ea309, 0xf49b0300, + 0x20365340, 0xc42403f1, 0x05f11c2f, 0xc499d700, 0x41f49b14, 0xf917c499, + 0x02923044, 0x41f49b00, 0x4617c499, 0x15c49945, 0xf49b4f4b, 0x1e102742, + 0x27ff1e16, 0x9b02200d, 0x402722f0, 0x070ef49b, 0x9bff8b00, 0x4f9b22f4, + 0xe841d848, 0x4127f211, 0x40272496, 0xc3994733, 0x39fd9b17, 0xf29b6211, + 0x83f0213a, 0x33473f3c, 0x31ab30ab, 0xf39b34ab, 0x33b38338, 0xb4fb9bb8, + 0xf2115027, 0x21036403, 0xb807f215, 0x07549489, 0xfad403d6, 0x1efd51b4, + 0x22fc9b12, 0xbe0f0c27, 0x27ff28d0, 0x22f49b40, 0xbea70b1e, 0x27fbffff, + 0x200000ce, 0x0420b4d1, 0x1edf42d8, 0x22f39b12, 0xf49b4027, 0x8b00070e, + 0x22f49bff, 0x3d27051e, 0x4f9b0220, 0xe641d848, 0x4f9b5536, 0x05d4233a, + 0x030907d4, 0xbe02680d, 0x27ff278f, 0xdf4ea735, 0x2ea7fded, 0x05fdefff, + 0xe8031e43, 0x272481f3, 0x0a4ddc33, 0x4327f6fc, 0x021824d5, 0xefff0ea7, + 0xdc0461fd, 0x1427fc48, 0x021801d5, 0x021c01d5, 0x03d53027, 0x2ea70658, + 0x05fdebe7, 0x004f2723, 0x15088300, 0x0ef39b24, 0x022001d5, 0x065c03d5, + 0x04d54327, 0x3ea70224, 0x91fdefff, 0xfc48dc34, 0x34d54427, 0x2ea70224, + 0x27fdebdf, 0x27240540, 0x0300003f, 0x9b231509, 0x00270ef4, 0xf58ef0c3, + 0x4ea7f54e, 0xc1fbffff, 0xf1a36c4e, 0xc007be47, 0xb0c83fab, 0x27e0281f, + 0xc1361e00, 0x20276c44, 0x0a330407, 0x181a0c53, 0x0000004f, 0x07212708, + 0x07121e42, 0x530a330e, 0x40271a0c, 0x0000ef18, 0x41270800, 0x45464f6b, + 0xffff4ea7, 0x6c44c1fb, 0xac53ab07, 0x27a4201d, 0x07171ed0, 0x104c334e, + 0x271e4c53, 0x27410020, 0xc3420721, 0x6bd40741, 0x3c1299df, 0x993602ce, + 0x47361714, 0x38b6d6f6, 0x30074127, 0xf455322b, 0x9d104c27, 0x139d1714, + 0x070c1e15, 0x27422b40, 0x9df35530, 0x109d1514, 0x27131e3c, 0x9df45540, + 0x0a1e1514, 0x00274027, 0x5515149d, 0xd4c499f0, 0x13992327, 0x03249b15, + 0x42071a2c, 0x40133f4b, 0x42474352, 0x071e340b, 0x4247323a, 0x139d342b, + 0x3ab0c815, 0x077dc499, 0x6c44f93e, 0x83000292, 0x149d3f3c, 0x004d273d, + 0x14139d03, 0x31071405, 0xdea70027, 0x27fbffff, 0x1504d624, 0xc1061e1e, + 0x34156cd4, 0x34030103, 0xce5ef270, 0x7ea4c402, 0x4e073e07, 0x333f3c83, + 0x139d104c, 0x1e4c5314, 0x273a41c4, 0x99140540, 0x2e077dc4, 0x33171e99, + 0x43f9142c, 0x0002926c, 0x071a2c53, 0x5321034e, 0x87230b44, 0xd8240b44, + 0x070c0fec, 0x0f4ca34e, 0x0317149d, 0x129d0c2c, 0x027f5e3d, 0x02004d27, + 0xc4991405, 0xf931077d, 0x02926c44, 0x9d002700, 0xdea73d14, 0x27fbffff, + 0x1504d624, 0xc1061e1e, 0x34156cd4, 0x34030103, 0x4e5ef270, 0x7dcc9902, + 0xfc05be07, 0xce07f001, 0x3317bc33, 0x4e0716cc, 0x531fbc53, 0x4c331fcc, + 0x4601c410, 0xc01c4c53, 0x45341b44, 0x1e3943d4, 0x3447d428, 0x4c334e07, + 0x53302712, 0x72271e4c, 0x5f1ef345, 0x149d4027, 0x004d273d, 0xf8140504, + 0x400000ee, 0x6f1e00af, 0xf4454027, 0xf425f435, 0x44277427, 0x1e00915e, + 0x1c4c53ff, 0x41d44334, 0xc06a1e10, 0x44f03a44, 0x47f40089, 0x091e0085, + 0xf0350027, 0x661ef025, 0x4c334e07, 0x1e4c5312, 0x41043127, 0x43073027, + 0x44030127, 0xf0457227, 0x149d3027, 0x004d273d, 0x25f33505, 0x474f1ef3, + 0x9d4bab4c, 0x4d273d14, 0x14050400, 0x0000eed8, 0xf4511340, 0x70274d76, + 0x04804d27, 0xf735f745, 0x2a1ef725, 0x0000eed8, 0x341e2a80, 0xee184027, + 0x27400000, 0x274f6b41, 0x35f42501, 0x273027f0, 0x27f34574, 0x149d164c, + 0x004d273d, 0x1e140506, 0x27ff1e19, 0x45712740, 0x25f435f4, 0x270b1ef4, + 0x45012770, 0x25f035f7, 0x073027f7, 0x07f31567, 0xec6103a1, 0x2700f170, + 0x00ec5e61, 0x44d6f411, 0x191ede07, 0xffff0ea7, 0x6c0dc1fb, 0xcd07bd07, + 0x3317bc33, 0xbc5316cc, 0x1fcc531f, 0x3c333d07, 0x1c3c5310, 0x41234307, + 0x270942d4, 0x35822730, 0x16171ef3, 0x00ded836, 0x27098000, 0x27c027b0, + 0x27071e80, 0x27f43540, 0x27f01181, 0x07504790, 0xcc010308, 0x01275b80, + 0x2907571e, 0x3287250b, 0x9746310b, 0xffff4ea7, 0x6c4ec1fb, 0xce07be07, + 0x3317bc33, 0xbc5316cc, 0x1fcc531f, 0xb6a69103, 0xffff4ea7, 0x6c4ec1fb, + 0x4c534e07, 0x1e348d10, 0x041c3e8d, 0x87210381, 0xa6310b32, 0xff4ea7c6, + 0x4ec1fbff, 0x534e076c, 0x348d104c, 0x1c3e8d1e, 0x47a8f0f0, 0x9d4bab4c, + 0x74c442a4, 0x013d0722, 0x123c33f0, 0x241e3c53, 0x3ea39d01, 0x8234111e, + 0x1e3ea49d, 0x4731030a, 0x9d430b44, 0xf3113ea4, 0x3103a103, 0xf6f8f315, + 0xf041ff14, 0x12990786, 0x43139942, 0x420b4247, 0x33f9340b, 0x0002925c, + 0x0b3d1499, 0x3d149d43, 0x36e6f331, 0x44c6f421, 0x0526f051, 0x149d4027, + 0x27071e3d, 0x0504804d, 0x8ef18314, 0x99fa4ef5, 0xf39b3d13, 0x7d049941, + 0x070941c0, 0x07450343, 0xc03f6b34, 0x35543a34, 0x33f43706, 0x1a1e0176, + 0x36f43934, 0xfa8e0085, 0x671b3ce4, 0x00a35e01, 0x891e1489, 0x905e1c13, + 0x1e148900, 0x331c1389, 0x43ab104c, 0x8946f49b, 0x13892614, 0x99791e24, + 0x13993f14, 0x104c333e, 0xf49b43ab, 0x41149945, 0x33401399, 0x43ab104c, + 0x2745f49b, 0x27210700, 0x334007e4, 0x89410b43, 0x44891e43, 0x103c331c, + 0x404734ab, 0x0346f39b, 0x99348741, 0x310b3e24, 0x34894606, 0x1c33891e, + 0xab104c33, 0x46f49b43, 0x21030103, 0x8ecbfef0, 0x421299fa, 0x890f21d8, + 0x13891e14, 0x104c331c, 0xf49b43ab, 0x1d22f846, 0x22148901, 0x33201389, + 0x43ab104c, 0x8e46f49b, 0x3f1499fa, 0x333e1399, 0x43ab104c, 0x9945f49b, + 0x13994114, 0x104c3340, 0xf49b43ab, 0x07a02745, 0x270107b1, 0x3e0499c4, + 0xc01241c0, 0x44230f43, 0x31274f6b, 0x30274210, 0x031e4347, 0x24074127, + 0xda47e027, 0x40cc2103, 0x1e212715, 0x1e348911, 0x331c3389, 0x43ab104c, + 0x0346f49b, 0x0b4e07e1, 0x0b34874d, 0x03f22831, 0xf00103a1, 0xd027b8fc, + 0xb399e427, 0x0732233e, 0x034f6b43, 0x27423432, 0x230f1e41, 0x6b430736, + 0x1031274f, 0x47302742, 0x043d4743, 0x87310341, 0x1c2c0323, 0x210b0407, + 0x40cc0103, 0x1e012713, 0x0924290f, 0x104c3323, 0xf49b43ab, 0x78240346, + 0x03d103f0, 0xb3fef0b1, 0x1099fa8e, 0x0f01d842, 0x891e1489, 0x4c331c13, + 0x9b43ab10, 0x129946f4, 0x0f21d843, 0x89261489, 0x4c332413, 0x9b43ab10, + 0x02d846f4, 0x2214890f, 0x33201389, 0x43ab104c, 0xd846f49b, 0x14890f22, + 0x2813892a, 0xab104c33, 0x46f49b43, 0x0000fa8e, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x071e03dc, 0xab483341, 0x07140741, 0x101c3332, 0x14ab3253, 0x071e3103, + 0x24230105, 0xf3b80403, 0x011d2506, 0xf2c80103, 0xf393fe0b, 0x0102cf5c, + 0x3a4f2034, 0xc000032c, 0x032f604f, 0xff1e0b00, 0x059ef453, 0xfe0b3405, + 0x0270f453, 0x30273405, 0x714af493, 0x06439d03, 0x7a9efe0b, 0xfe4efe08, + 0x049d4127, 0x27f43e06, 0x9efe8e04, 0xa7fe0857, 0xffffff2e, 0xd14403c1, + 0xce069424, 0x23d50e34, 0x0ea70694, 0x39fffaf3, 0x0b449604, 0xa6a69efe, + 0xf9f493fe, 0x431902ce, 0x4ea72127, 0x9dfeffff, 0x35260b42, 0xb9daf493, + 0x0b421d03, 0x933127fe, 0x0370ebf4, 0x1e64439d, 0xa7fe4ed9, 0xfeffff4e, + 0x83094399, 0x33438733, 0xf9342b34, 0x00004d33, 0xa73726ff, 0xffffff4e, + 0x0e184eb9, 0xe08bef4b, 0x2719e1ce, 0xf0210320, 0x012705f3, 0x24f9fe8e, + 0xff000e18, 0x408b4f4b, 0x27eb4ece, 0xa7fe8e00, 0xffffff4e, 0xb9fc43c1, + 0xca010044, 0x430b1303, 0x830e40c2, 0x03330f0c, 0x007c00f9, 0xfe0bff00, + 0xfe0b0027, 0x40ab4107, 0xd01843dc, 0x42071524, 0x42534423, 0x13014103, + 0x03052423, 0x04031403, 0x2586f498, 0x11031419, 0x0103041d, 0xfe0bf2a8, + 0x25862253, 0x14031401, 0x04030405, 0xfe0bf2a8, 0x01f50533, 0xff021800, + 0x180403f5, 0x4027ff02, 0xe8000e23, 0x030435fd, 0xfde8000e, 0x181002f5, + 0x03f5ff02, 0xff021814, 0xe7f00e23, 0x0b0435fd, 0x07f64efe, 0x5d2fc6b2, + 0xa0079107, 0xcde2f793, 0x406c2702, 0xefff8ea7, 0x10db07fd, 0xd60741bc, + 0xc4077401, 0x41c3c633, 0xce237405, 0xd1fefdb4, 0x33010c84, 0x4c53184c, + 0xf442cc1d, 0x23032d07, 0x0c0723e3, 0x797e1907, 0x9b4027ff, 0x0c270ef4, + 0x07bd2b21, 0x072a071c, 0xff767e3d, 0xad0bb506, 0xb61e9d0b, 0x0333f68e, + 0x04f10403, 0xff021000, 0xfc6a4dd8, 0xe8432710, 0x0003f1f4, 0xdcff0210, + 0xf2fc6a3d, 0xfc4efe0b, 0x6f82fe93, 0xd4e4d103, 0xd6100702, 0x3ff49345, + 0x0c27fdd2, 0x8e14150d, 0xff3ea7fc, 0x32d1ffff, 0x44211558, 0x4183422b, + 0x42e94447, 0xff00155c, 0x156043e9, 0x32caff00, 0xbd4127d5, 0xd1024604, + 0x27025403, 0xd4ecd140, 0x3c04c502, 0x070f3c83, 0x33cd7103, 0x5337330a, + 0x2b0725f4, 0x83141503, 0x012000de, 0xab480f03, 0xd7960006, 0x02d8e4d1, + 0x032a0389, 0xd8e4d541, 0x103cd802, 0x27402722, 0x5e149d00, 0x04c1fc8e, + 0xab2027e8, 0xe804c54d, 0x831ec389, 0x3603bd31, 0x0ef29b03, 0x0027cf1e, + 0xf94efc8e, 0x6edef993, 0xbdfb9303, 0x402703b7, 0x0765949d, 0x07b411ab, + 0x8b0a07da, 0xf6c007f4, 0x46a41906, 0xa7302742, 0xfeffff4e, 0x1e5443bd, + 0x0c07b31d, 0x3027f98e, 0x04cca31d, 0xff4ea719, 0x43bdfeff, 0x03c41e54, + 0xfd287e0a, 0x0c07c027, 0x02c4f98e, 0x8df093de, 0x5c7e036e, 0x059499fd, + 0x4ea74916, 0x11feffff, 0xff2ea743, 0x24d1ffff, 0x33870694, 0x153034f5, + 0x3127ff00, 0xcfff4ea7, 0xc50c07fd, 0xf98e6443, 0xf093c44c, 0x0e036e58, + 0xfd145ef9, 0x01be0c07, 0xef1efd25, 0x4ea7fa4e, 0x01fd8fff, 0xfca0074b, + 0xd8014db8, 0x040000be, 0x21f49315, 0x421902cc, 0xf4933127, 0x1d02cc10, + 0x3e2ff643, 0x00bef801, 0x00cc8000, 0xf4932127, 0x1d02cbfc, 0xff3ea742, + 0x3201fd4f, 0xffff1ea7, 0x272287ff, 0x2113b940, 0x4024f50e, 0xf6ff02b0, + 0x9300f63f, 0x02cbdff4, 0x10994319, 0x26129927, 0x14d135c6, 0x463606a4, + 0x06a814d1, 0x14994576, 0xee44c610, 0x7e010702, 0xdea7fcc1, 0xa7fff95f, + 0xfd4fffce, 0xc301d419, 0x41dc437b, 0x5d4ea70f, 0x4319fff9, 0x327bc201, + 0xbe5231d8, 0x19fe31ea, 0x7bc301d4, 0x1741d843, 0x2127d319, 0x1207c401, + 0x31eb143b, 0x4ea7d31d, 0xc5fdcfff, 0x1ea76842, 0x19fff95d, 0x7bc30114, + 0x1741d843, 0x21271319, 0xe207c401, 0x3eebe43b, 0x4ea7131d, 0xc5fdcfff, + 0x05466c42, 0xf49b4027, 0x38c4c50e, 0x4ea73127, 0xc5fdcfff, 0xbe586043, + 0x93020000, 0x02cb37f4, 0x37d64319, 0x2610bcdc, 0xffff4ea7, 0x2442d1ff, + 0xa725a60e, 0xfdafff3e, 0x420b3441, 0xfa8e3405, 0xf4933127, 0x1d02cb08, + 0x10bcd843, 0xa73127dc, 0xfdafff4e, 0x43550a07, 0xfd64bfbe, 0xf1930927, + 0x9efe55cc, 0x93fe008b, 0x02caebf4, 0x39064319, 0xfd290cbe, 0x0027ff1e, + 0xe6be1a07, 0xac5efd64, 0xa73027fe, 0xfd4fff4e, 0x43b50027, 0xfdf93cbe, + 0x5efbe47e, 0xe7befeb1, 0xd91efd24, 0xffff4ea7, 0x4843d1fe, 0xf33fe601, + 0xfeed5efe, 0xd007fd4e, 0x08031d07, 0x02ac1d03, 0xbe482c27, 0x36fd829c, + 0x93d27107, 0x036c9ff4, 0x02d443d1, 0x0254d2d5, 0xfd0cf453, 0xd4153225, + 0xfd4efd8e, 0xffff4ea7, 0x274d99ff, 0xce264199, 0x44b90c1d, 0x48b6152c, + 0x8613d2c0, 0xbefd8ed4, 0x46fd255b, 0x0e002703, 0xadad9efd, 0x6323befd, + 0x270186fd, 0x9efd0e02, 0x93fdad9f, 0xfe634df0, 0x96be2d07, 0xd11efdfc, + 0xf493fd4e, 0x2903bbc0, 0xce430942, 0xd0272632, 0x6b6ef493, 0x40429903, + 0x2e414399, 0x8e0d0732, 0xa83dbefd, 0x270dabfd, 0x27048640, 0x07d40741, + 0x93fd8e0d, 0x036a7ff4, 0x2c032407, 0xe33407c3, 0x3ce37f2c, 0x0334197f, + 0x32c2803c, 0x1ed027f9, 0x61f0930c, 0xb8be036a, 0xd127fdaf, 0x6a56f093, + 0xf8c8be03, 0x1e0196fd, 0xff3ea7a8, 0x34d1fdef, 0x4dd8010c, 0x0710fc6a, + 0xe8432723, 0x0c23d1f4, 0x6a3ddc01, 0xfe0bf4fc, 0xf693f54e, 0xc1036bb8, + 0x4027446a, 0x8365649d, 0x00000faf, 0xc1f0a380, 0xa0e85069, 0x643902d0, + 0x01194ff6, 0x4cf46459, 0xc1019610, 0x70278061, 0x27102c27, 0x07373b31, + 0xe6418b43, 0x0302ec4f, 0xc1f27871, 0x979d3c94, 0x06449950, 0x949d1a07, + 0xc14a0751, 0x4733446b, 0x93c11a33, 0x07142b34, 0x07f11547, 0x33433321, + 0x95991cbc, 0x1c2f0338, 0xab00069b, 0xa9f405b3, 0x01105421, 0x5223a9f0, + 0x834b0710, 0xffffff4f, 0xcc04f50f, 0x9bff0005, 0x07533331, 0xd003f585, + 0x03ff0005, 0x069b1c8f, 0x8522b900, 0x4461c113, 0x01088da9, 0x010a8ca9, + 0xf560929d, 0x069ba001, 0x4dcdf200, 0x205cf102, 0x0700069c, 0x0be333ed, + 0x23da46ec, 0x07e301e8, 0x5343cb4b, 0xe8031c4c, 0x4b074876, 0x40cc432b, + 0xd9f4931b, 0x4379036a, 0x2e073926, 0x07102c23, 0x23e2071d, 0xf8e803d1, + 0x0701d9f1, 0x1c2f0325, 0xa900069b, 0xf2010823, 0x0100eb3d, 0xd3b4eee4, + 0x8063c100, 0x473b4127, 0xf09334eb, 0xc5036aa0, 0x6c7e8063, 0xa73027f9, + 0xfeffff4e, 0x1e5443bd, 0x27f9197e, 0x830d07d0, 0xe0f58ef0, 0xa7011c41, + 0xfffaf30e, 0xfea0a0be, 0x0fe0d007, 0xffffffff, 0xc0070260, 0xc0f1c333, + 0xff000520, 0x19079209, 0x7efa507e, 0x9409fe7d, 0x6a52fb93, 0x1cc4f503, + 0xc1ff0005, 0x96c56866, 0xfd42275c, 0x000510d4, 0xf30ea7ff, 0x0439fffa, + 0x016f4ff6, 0x0b07c027, 0xfc7ebc3d, 0xff4ea7f8, 0x4cbdfeff, 0xab7e1e54, + 0x05b499f8, 0xd0274556, 0xf0830d07, 0xbdbef58e, 0x0296fd20, 0x27f8c57e, + 0x830d07d0, 0x27f58ef0, 0xf09316dc, 0x7e0369f8, 0x6499f8c7, 0xd94fc605, + 0x9dbe0d07, 0xf093fd20, 0x830369e4, 0x5ef50ef0, 0xf001f89e, 0xffff4f83, + 0x2cd10fff, 0x04f50104, 0xff0005d0, 0x3c0b3333, 0x07253ec2, 0x07182313, + 0x23031e21, 0x01241118, 0x05341520, 0x104c3430, 0x43f54333, 0x00069ba4, + 0x31072823, 0x07e5e1ca, 0x1c3f0335, 0xa900069b, 0x11010834, 0x03f101f2, + 0xa41ef541, 0xad00069b, 0x05010834, 0x03e715eb, 0x069b1c2f, 0x3824b900, + 0xbd410310, 0x59103824, 0x03412763, 0x5d643d31, 0x3c9bc163, 0xb8016481, + 0x695af793, 0xcc48ea03, 0x4a638900, 0xfc93b449, 0x7103694c, 0x8934ee6d, + 0x071b0700, 0x7e28070d, 0xc471f931, 0xbb49c381, 0x382b480b, 0xc53c9dc5, + 0xc4754ccd, 0xcb8dc385, 0x334a074a, 0x2ba7334a, 0x7244e94a, 0x990006ab, + 0x948d0493, 0xd062b958, 0x55929d02, 0x02d064b9, 0x4103430b, 0x64bd4f6b, + 0x929902d0, 0x0b322756, 0xbd633d42, 0x5e02d064, 0x2301fe6f, 0x43cb4b07, + 0x4c530b07, 0x2b28231c, 0x184ff603, 0x0a00e8fe, 0xfe115efe, 0xafa3a123, + 0xfffffff0, 0x275ea103, 0x9e5abefd, 0xfe8e5efe, 0xc54cccc1, 0x921e3c9c, + 0x277dcfd6, 0x0100001e, 0x27800c27, 0xfd72be20, 0x101c27fd, 0x010480d5, + 0x9c2651ed, 0x965e0006, 0xab4107fd, 0x8064c543, 0xc1fd125e, 0x0ea7447c, + 0xbeffffdf, 0x07fdfd7b, 0x0fdc83dc, 0x33247099, 0x271c07d3, 0x80dbf920, + 0xbeff0000, 0x07017cf7, 0x810d26c0, 0x0b4b8793, 0x053b0743, 0xfd310340, + 0x000080d3, 0xdf0ea7ff, 0x21beffff, 0x7399fdfd, 0xc1412724, 0x433b3c9b, + 0x7c757485, 0x07fee45e, 0x0480d11c, 0xbe143301, 0x47fdfc21, 0xab1c07cc, + 0x2651ed1f, 0x5e00069c, 0x0ea7fd1d, 0xbeffffdf, 0x27fdfcec, 0xfe145ed6, + 0x5e15dc27, 0xf94efe0e, 0x025404d1, 0x4c83d007, 0x33c4070f, 0x2b4733ca, + 0x48cf03c4, 0xa90006ab, 0x8d0334c3, 0xc4895403, 0x104cf82a, 0x098900ea, + 0x54098d32, 0xb48ef493, 0x0e449903, 0xd49d2027, 0x92c4b9b1, 0xb3d49d02, + 0x0224c3a9, 0xd38d40a7, 0x45c3b9ba, 0x5bd49d03, 0x9da9d39d, 0xd49d43d2, + 0x5ad49d42, 0x023fc4b9, 0xb9b0d49d, 0xc00355c3, 0x0710ff3c, 0x9d415343, + 0x3c0b42d4, 0x9d903399, 0xd0b95bd3, 0x0fc60246, 0x46d2bd6f, 0xe8c4c102, + 0x20004dd8, 0x20da9951, 0x1400bd27, 0x5110acc0, 0x893cd0c1, 0x0cbe30d1, + 0xd489fe2b, 0xca400b54, 0x49071849, 0xf393402b, 0xb9fd39cf, 0x150336c2, + 0x54d48dd3, 0xb610bca3, 0x45d4b92e, 0xa344b602, 0xac4420bc, 0x36c4b910, + 0x104ca303, 0x0327b4ab, 0x8e50dbc5, 0x20da99f9, 0x0400bd27, 0xb110acc4, + 0xd98d0027, 0x89b41e54, 0xd18930d4, 0x3cd3c154, 0x9ba0d299, 0x83340b41, + 0xd09df02c, 0x3cd3c55e, 0x5ea0d29d, 0x0989ff79, 0xff1a5e32, 0xaa1eb1a3, + 0xcf5bf04e, 0xfe2bdf3b, 0x0f07fc4e, 0xfff897be, 0xf00efc0e, 0x4f27ff0b, + 0x10079000, 0x4f274329, 0x1007a000, 0x3d104429, 0xff1e03fc, 0x03fc4d10, + 0x0307ff1e, 0x000c042b, 0x03fc0d03, 0x010c4127, 0x04074027, 0xfc4efe0b, + 0x0dbec007, 0x1ea7fe2b, 0x39fd4fff, 0x271301c2, 0xab433b41, 0x27c43d42, + 0x0ef49b40, 0x8e3814c5, 0x000000fc, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x1007fd4e, 0xd1871f6b, + 0x3020df03, 0x08530006, 0x01103f9b, 0xf1f293d4, 0x2ed102f9, 0x432b0124, + 0xe19dd405, 0x2224b908, 0xff3ea701, 0xe49dfd4f, 0x1424a909, 0xb9e44d01, + 0xa9011824, 0x11011621, 0x6d410b32, 0xf6e205e4, 0x9b402707, 0x00070ef4, + 0x4027ff8b, 0xe4053027, 0x9b08e39d, 0xd401102f, 0xd405420b, 0x4007fd8e, + 0x41034273, 0xe31ef4e8, 0x4ea7fd4e, 0x01f7ffff, 0x07d00743, 0x0d38dc01, + 0xfd8e16d6, 0x10060e27, 0xff767e27, 0xaabe0d07, 0x0256fdc9, 0xfd0efd8e, + 0x4eff675e, 0xff3ea7f5, 0x34c1f3ff, 0xdcb00734, 0xd3072942, 0xffffcea7, + 0xc54827f7, 0xb0d140c4, 0x422701ac, 0x2738d4c5, 0xad3e131c, 0xd3c53027, + 0x40c3c538, 0xd834d4c1, 0xb489e042, 0x6eb3896c, 0x63475447, 0xa027cb07, + 0xffffdea7, 0x207d27f7, 0xf14a8702, 0x0c001449, 0xd1d301ff, 0xd801acb8, + 0x9fdc4332, 0x04000000, 0x27d7a51e, 0x03d4b540, 0xc4c103a1, 0x4127dca2, + 0xffff3ea7, 0x552027f3, 0x04b29d34, 0xd5c5f58e, 0x3cd6c538, 0x0748c499, + 0x1f4c833a, 0x83104c33, 0x204ca331, 0xd4a543ab, 0xcc1ed9b5, 0xd4c54a27, + 0x27080740, 0xff2a7e1b, 0xd4c54827, 0xdcd30140, 0xe91ea932, 0xc007fc4e, + 0xffffdea7, 0xdc0b1ef7, 0x0d272241, 0x997e640a, 0xdcd401fe, 0x48d81044, + 0x270c07ef, 0xfefa7e10, 0x44d8d401, 0x9e0227f2, 0x8efdfc6b, 0x000000fc, + 0x0003e80d, 0x0003e80b, 0x0003e807, 0xf1a3f54e, 0x9107a007, 0xa469161e, + 0x460b4b2b, 0x41c84f8b, 0xddf41364, 0x0a074101, 0xa7febf7e, 0xffffff2e, + 0x010224a9, 0x010423a9, 0x92a9b407, 0x4307030a, 0x422b4b1b, 0x9da97407, + 0x7fab0308, 0xf305d72b, 0x3ea7d123, 0x99feffff, 0xd0e80934, 0x4383019b, + 0x34333407, 0x342b4487, 0x005432f1, 0xa401ff00, 0x8e238307, 0xe2ffffb4, + 0x99018c24, 0xa69909a4, 0x934fd608, 0x02a492d1, 0xf235c127, 0x84191207, + 0x990f1c83, 0x13330483, 0x31075307, 0xff843e23, 0x7c12f9ff, 0x15ff0000, + 0x00f345f4, 0x18c02752, 0xc2a3402c, 0x14f9c906, 0xff00007d, 0x231e4cce, + 0xff4ea7b1, 0x43b9ffff, 0x4b070108, 0x030f4c83, 0x53344eb1, 0x01ff2ff2, + 0xff4c5e21, 0xffff3ea7, 0xb92b07ff, 0x83010834, 0xf2550f2c, 0x00b224ee, + 0x001af6be, 0x2ea78459, 0xa9ffffff, 0x25010223, 0xae3beef4, 0x27e42700, + 0x9b402704, 0x2ea70ef4, 0x21fd4fff, 0x3824c5f3, 0xd608a39d, 0x2ea75def, + 0xa9feffff, 0x27014224, 0xad4103c1, 0x9d014224, 0x3ea709ac, 0x11fd4fff, + 0xa9ab6d32, 0x07030894, 0xb492d53d, 0xabf25102, 0x2b923d3f, 0xc0932d43, + 0xd9163641, 0xffff3ea7, 0xa73cbdff, 0x0f329906, 0xf49b4027, 0x8731270e, + 0x4023f522, 0xd1ff02b0, 0x2102a494, 0xce410383, 0x05c87634, 0x0310072d, + 0x03e8001e, 0x31fea15e, 0xff2ea7f3, 0x3f6bfddf, 0x4da34387, 0x24d50400, + 0x2ed50208, 0xb31e0208, 0xfe66f453, 0x7f5e4101, 0x8004e0fe, 0x8ef183fe, + 0x0424a9f5, 0xeef30101, 0x21ff4c43, 0x4664eef4, 0x118419ff, 0x3e42eef2, + 0x817fe6ff, 0x39f24100, 0xc3c4ee24, 0x05a49900, 0x00b54ff6, 0xf3318421, + 0x272934ca, 0x27e22741, 0x05a49d02, 0x19ff1c5e, 0x1d44a394, 0xd1841e94, + 0x2702a494, 0x83410302, 0x8ea405f1, 0x830227f5, 0xb6f58ef1, 0xff4ea7d9, + 0x2ea7ffff, 0xd1feffff, 0xd10e1443, 0xc2013c24, 0x4b075143, 0x2ea74103, + 0xadffffff, 0x27010224, 0x6d0027e0, 0xfed35e84, 0x41034b07, 0xffff3ea7, + 0x27e027ff, 0x0234ad00, 0xfebf5e01, 0xf605a499, 0xe6ff7c4f, 0x31ff785f, + 0x5f0ea7f3, 0x8325fff9, 0x31278419, 0x841d4103, 0xbe05a39d, 0x5efe97c0, + 0xf331ff5d, 0xf95f0ea7, 0x253103ff, 0xbef33583, 0x31fe97ac, 0x05a499f2, + 0xf2352123, 0x27944fc6, 0x5e0227e2, 0x2c3dfe75, 0x4ea73027, 0xadffffff, + 0xa9010a43, 0x07010444, 0xa7340b37, 0xffffff2e, 0x0427e427, 0x010423ad, + 0x4efe505e, 0x050199fb, 0x02893427, 0x99317b5c, 0x32120b04, 0x24073207, + 0x43332533, 0x3fab242b, 0x23ad200b, 0x048901b4, 0xad432b5c, 0x7601b624, + 0xb424a91e, 0x074da601, 0xa7c02712, 0xfde64fde, 0xa710bc27, 0xfde68fee, + 0x01c012d1, 0x89f003c1, 0x320b6404, 0xd405430b, 0x0489db15, 0x0b202762, + 0x89d23543, 0xe4055803, 0xe235e315, 0x01c013d1, 0xa95e0489, 0x0b01b412, + 0xc014d543, 0xcac10301, 0xfb8ec7c2, 0x0489fb4e, 0x06d00746, 0xff3ea74d, + 0x34c1fdef, 0x0b0b994c, 0x16e04cd8, 0xd0d1c307, 0x1e2701ac, 0x7e01f40c, + 0xc4c1fb88, 0xe04cdc4c, 0xf8d1c1ee, 0x015ed289, 0x33420713, 0x1643c243, + 0x32871401, 0x1405430b, 0x320b1211, 0x40271315, 0x8e46d48d, 0x330b07fb, + 0x2bb33305, 0x0b30070b, 0xb834a93d, 0xad440301, 0xa901b834, 0x8901b833, + 0x34024ad4, 0x40073407, 0x43ad4d0b, 0x200701b8, 0x01ba43a9, 0x01b844a9, + 0x01b02d03, 0x43ca2d0b, 0x07c3074a, 0xa94d0b40, 0x0701bc43, 0x26e32bec, + 0x892251e6, 0x3e075ed1, 0x410b2411, 0xf3b82415, 0xce4ad489, 0x2ea7294c, + 0xa9feffff, 0x071e3824, 0xad4e0b30, 0x0b1e3824, 0xbc3cad3d, 0xa7312701, + 0xfdcfff4e, 0x5e7043c5, 0xc407ff76, 0x1007b61e, 0x14a91d0b, 0x4cca01b8, + 0xc414d1ce, 0x2730a701, 0xbd431521, 0x1e01b112, 0x07fb4ebe, 0x33c533c1, + 0x07c12b13, 0xd14c0b40, 0x0701b443, 0x033fe6e0, 0xb9d40701, 0xf601b144, + 0xa700f94f, 0xfdefff4e, 0xc16c41c1, 0x1c335c43, 0x183c3318, 0x531d3c53, + 0xd2a91d1c, 0x131201b4, 0xd0a93107, 0x321b01b6, 0x3002b307, 0xd1a9b007, + 0x4b0701ba, 0x4fab3fab, 0x432b042b, 0x240b310b, 0xd0ad3fab, 0xd2ad01b6, + 0xd3ad01b4, 0xe48901ba, 0x0734024a, 0x0b4c0734, 0xa93fab4e, 0xad01b842, + 0xe201ba43, 0x07009732, 0x0b3c07d2, 0xbc34a93e, 0x2b0d0701, 0x89066604, + 0x32d15ee1, 0x300701c4, 0x410b2411, 0xf3b82415, 0xce4ae489, 0x3ea7744d, + 0xa9feffff, 0x071e3834, 0xad400b1c, 0x0b1e3834, 0xbc1dad1e, 0xa7312701, + 0xfdcfff4e, 0x01b212b9, 0xf67043c5, 0x07bca62c, 0x4fcea70b, 0xbc27fde6, + 0x8fdea710, 0x12d1fde6, 0xe3c101c0, 0x64e489f0, 0x430b320b, 0xcb15c405, + 0x2762e489, 0x35430b20, 0x58e389c2, 0xd315d405, 0x13d1d235, 0xe48901c0, + 0xd5430b5e, 0xf001c014, 0xfb8ecdf0, 0x6a5ed307, 0x0b1c07ff, 0xb814a91e, + 0x834dca01, 0x01c414d1, 0x212730a7, 0x12bd4315, 0x735e01b1, 0x000000ff, + 0x000000ff, 0x00000033, 0xfaa3f54e, 0x03d14027, 0xf0c5010c, 0x35f44580, + 0x84f1c5f4, 0x02b431e0, 0xf0c50127, 0x38f4c568, 0xc57cf4c5, 0xf4c534f4, + 0x74f4c578, 0xc570f4c5, 0x80276cf4, 0x9027a027, 0x3ea7b027, 0xc1f3ffff, + 0x41dc3434, 0xc1d30718, 0x1e2780fe, 0xd101f408, 0x7e01ace0, 0xd4c1f91c, + 0xec41d834, 0xd180f0c1, 0x36010c02, 0x4103992d, 0x04893c06, 0xe04f8bfc, + 0xfffffe4f, 0xc10bf0ff, 0x338384f4, 0xffff1ea7, 0xc13433f3, 0x149570fa, + 0x4da34307, 0xa1fc2000, 0x4efc0863, 0x05020000, 0x68fdc10c, 0x4fa3d516, + 0x08000000, 0x12051425, 0xf58efa83, 0xa77cfec1, 0xf3ffff4e, 0x9578f0c1, + 0x34f1c14e, 0xc14040c5, 0x41c574f2, 0xe42fe644, 0x80f3c101, 0xe6413499, + 0xc101da4f, 0x4ff66cf4, 0xfdc101e4, 0x00dea338, 0xfdc51800, 0x80f2c138, + 0x01a822d1, 0x016d24b9, 0x8690f2c5, 0x80f3c145, 0xf6413499, 0xc108a54f, + 0xd15870fd, 0x9980fec1, 0x4ff641e4, 0xf1c108a4, 0x001efc38, 0x08af0200, + 0xd668f2c1, 0x38f3c125, 0x00003fa3, 0xf3c50800, 0x38f4c138, 0xffffdea7, + 0x80fec1f3, 0xe4b9d425, 0x20270211, 0x21274486, 0x2790f0c1, 0x7c04b930, + 0x27448601, 0xab420731, 0xa5458643, 0x58d9c5d8, 0xdbc5dab5, 0x80f1c17c, + 0x1499fc41, 0xf6dc1504, 0x3108e04f, 0x90f3c1f1, 0xfac1d105, 0x9c34b980, + 0xd4aec102, 0xf8d0a0c1, 0xa900b644, 0x070102a4, 0x0f2c0320, 0x028c3bd1, + 0xa3a94447, 0x20e80100, 0x24730b16, 0xdfabd207, 0x0095d4f2, 0x2c032e07, + 0x1e20e80f, 0x0724730f, 0x07efabe2, 0x9b33470e, 0xd2030b04, 0xf43118e3, + 0x4c332b07, 0x53200b11, 0x241d1a4c, 0xa980f2c1, 0x47010023, 0x03430733, + 0x0ee4d241, 0x3007f431, 0x3b0b4447, 0x3d1a4c53, 0x80f3c134, 0x010234a9, + 0x41034447, 0x0aaed4f2, 0x010034a9, 0x34470e0b, 0x4118e3d2, 0x332b07f4, + 0x4c53114c, 0x1d200b1a, 0x80f4c124, 0x010043a9, 0x43073347, 0xe4f24103, + 0xf4410cb0, 0x44470b0b, 0x3d1a4c53, 0x80fac104, 0x01a8aad1, 0xc190fac5, + 0x310790f0, 0x02a404d1, 0x83113c33, 0x04870f4c, 0x040b4433, 0x13c402f1, + 0x3c53ff00, 0x0711471a, 0x53320b4c, 0x4c331a1c, 0xe9130b11, 0x0013c802, + 0x1a4c53ff, 0x410b3c47, 0x0b1a3c53, 0xc1240334, 0x03f580f1, 0xff0013c4, + 0x13c802ed, 0x1499ff00, 0x96302741, 0xc1312744, 0x430780f2, 0x249d41c3, + 0x0223a904, 0x0024a901, 0x8dfa8301, 0x248d6e23, 0xc1f58e6c, 0xefe66cfe, + 0xf0c1fe35, 0x41049980, 0xfe2b4fe6, 0xa338f1c1, 0x0200001e, 0x5e38f1c5, + 0x0cb9fe1d, 0x40070106, 0x490b9c87, 0xe6984ac1, 0xa70fe7cf, 0xfddfffde, + 0x3580bc27, 0x6cd4c1db, 0x8370d3c1, 0xffffff4f, 0xea30e87f, 0xe64aee05, + 0x80f2c105, 0x0b84f1c1, 0x9824c129, 0x3407c183, 0x31034783, 0xc33314ab, + 0x1cab4307, 0x839823c5, 0xffffff4f, 0x7cf1c5bf, 0x096448e0, 0xc180f4c1, + 0x44d180fa, 0xf4c501a8, 0x41ac9990, 0x024840b9, 0xc433c383, 0x05bf0ff6, + 0xfdc5d127, 0x64fdc568, 0xc55cfdc5, 0xa02760fd, 0xa990f4c1, 0xc6030e4b, + 0x44a97cbf, 0x4fd6030c, 0x650fe668, 0x90fdc10b, 0x0249d4b9, 0xfec14ea6, + 0x89140780, 0xeea950e0, 0x01230100, 0x24a92d07, 0x2da9024a, 0x43e3024c, + 0x04123007, 0x3e0e3407, 0x072ae3d2, 0x0343e34d, 0x07401243, 0xd24e0e40, + 0xf4c11b4e, 0x0243a980, 0x4e24a901, 0x42340e02, 0x5024a934, 0xa3430202, + 0x020000ce, 0xf1f02803, 0x90fec1be, 0x030cebad, 0xa990f0c1, 0x23030c04, + 0x0c04ad41, 0x80f1c103, 0x14893027, 0x0012a950, 0xc5412301, 0x24ee88f2, + 0xf4c108aa, 0x88fec180, 0x27054d99, 0x27e48611, 0x90f0c110, 0x02d1e307, + 0x43a902b0, 0x01070102, 0x49334d07, 0x0633ef6b, 0x4e0704ab, 0xf3c54733, + 0x0704ab8c, 0x27248343, 0x27448631, 0x86412730, 0xab402724, 0xab433312, + 0x330cab14, 0x34f1c538, 0xa4e603ab, 0x00000ea3, 0xd5eff618, 0x27a22707, + 0x3cfac513, 0x07b7dff6, 0x270c3c27, 0x90fac122, 0x13ab10ab, 0x0345a4b9, + 0xc638f1c5, 0xa4b95f4f, 0x4f460346, 0x0358a3d1, 0x0a363fe6, 0xc190fec1, + 0xe1d18cf0, 0x41070348, 0x04ee439b, 0x04c20d33, 0x07310316, 0x23419b43, + 0xc1404231, 0xdea338fd, 0xc5020000, 0xfec138fd, 0x4ce1d190, 0x23410703, + 0x1943ce41, 0x0348e4d1, 0x9b8cf0c1, 0x42412341, 0x38f1c104, 0x00001ea3, + 0x38f1c502, 0x0bce2fe6, 0xc18cf3c1, 0x4f0788fd, 0x3347a027, 0x470c4c03, + 0x3cf0c1dd, 0xc5a0f2c5, 0xf4c544f3, 0x58fac540, 0xc578fac5, 0xe12798fd, + 0x04f101e0, 0xc19cfec5, 0x1fe63cf1, 0xf2c100c4, 0x40f3c180, 0x8958fdc1, + 0xfcc14a27, 0x58f5c158, 0x0b44f4c1, 0xc53a01d2, 0x712394fd, 0xb027c433, + 0xd107540b, 0x2798f2c1, 0x962b0be1, 0xf6e02724, 0x2704fb5f, 0x0a312710, + 0x07302727, 0xe6efe623, 0x64f4c104, 0xbfe644d6, 0x912704dd, 0x1fe60227, + 0xf3c104ce, 0xc1353660, 0x4fe658f4, 0x312704c2, 0x2fe66827, 0xf4c10489, + 0xd54fe65c, 0xf6412704, 0x2704823f, 0x824ff680, 0x074e0704, 0xc341c331, + 0x47433331, 0xab902733, 0x842fe634, 0x861ff604, 0x2734a304, 0x3321c311, + 0xc102ab25, 0x06ab78fe, 0x4b0713ab, 0x1c3b08ab, 0x443309ab, 0x043be1ab, + 0xab78fec5, 0xf8b103a0, 0xc1042ffd, 0x1a0540f1, 0xc158f2c1, 0xf4c140f3, + 0x032103a0, 0xc5412334, 0xf3c558f2, 0xa0f4c540, 0xff1d4ff6, 0x2780fac1, + 0x90fdc130, 0x0234a3bd, 0x017cd4b9, 0x046d4ff6, 0xfec5e027, 0x70fec574, + 0x276cfec5, 0x27a02780, 0xc1b02790, 0x24b980f2, 0x4fe60211, 0x24b90622, + 0x4ff60234, 0xf3c1065f, 0x7c34b990, 0xff4ce001, 0x21b90653, 0xf4c10106, + 0x0b318780, 0x9834c134, 0x2380fac1, 0x33478341, 0x004df145, 0xb9ff1b30, + 0xd10210aa, 0x55010022, 0x044ef1fd, 0xc5ff1b30, 0xfe654cfa, 0x300840f1, + 0x4e23ff1b, 0x75e4d000, 0x854331f0, 0x954a41f3, 0xa54d51fa, 0xb54e61fd, + 0xc54471fe, 0x2fe630f4, 0x5027087c, 0xf5c51427, 0xc5d02748, 0x3507a4f1, + 0x31834507, 0x23474153, 0x3f074433, 0x3c03240b, 0x39230b14, 0x042a9927, + 0x19052399, 0x07070728, 0x0b4a07e7, 0x07480be3, 0x0b032b62, 0xe86103e4, + 0x0708a200, 0xe84a2b48, 0x1207e240, 0xe8040740, 0x99089c00, 0x29990d23, + 0x086b990c, 0x07082c99, 0x0b490713, 0x0b4c0b1b, 0x0b3b1b14, 0x7930e81e, + 0x2b4c0708, 0xaf40e849, 0x07431207, 0x04649934, 0x40e84a1b, 0x4312079d, + 0x48073407, 0x40e8472b, 0x23070867, 0x24074312, 0x3b2b3c07, 0x085430e8, + 0x32124207, 0x24074307, 0x20070412, 0x070c6499, 0xe8342b39, 0x12076730, + 0xc1320723, 0xfac148f4, 0x23430ba4, 0xc51353a1, 0xfac548f4, 0x03d10ba4, + 0x3baff651, 0x80f0c1ff, 0x02110eb9, 0x4e07e123, 0xe1034f6b, 0x07a842f0, + 0x09a0e3e0, 0x2780f4c1, 0xa84bd120, 0x4cf4c101, 0x40e8420b, 0x4c080a1f, + 0x334c2734, 0xaf6ba407, 0x9d08fa9d, 0xfa9d0bfa, 0x0afa9d09, 0x0360b3b9, + 0x1208f499, 0x08430734, 0x4c27344c, 0x08f49d33, 0x0360b3b9, 0x1209f499, + 0x08430734, 0x4c27344c, 0x09f49d33, 0x0360b3b9, 0x120af499, 0x08430734, + 0x4c27344c, 0x0af49d33, 0x0360b3b9, 0x120bf499, 0x08430734, 0x4c27344c, + 0x0bf49d33, 0xfd99f631, 0x09f99908, 0xfc99f541, 0x0bf8990a, 0xc111e3d0, + 0xe48980fe, 0x00e3a950, 0xee412301, 0xb909ff34, 0x070360b3, 0x073a124a, + 0x344c0843, 0xc1334c27, 0x340790f0, 0x036002b9, 0x32072412, 0x2e343ce8, + 0x33bc2707, 0x4c234b07, 0x80f1c10c, 0x1ad14487, 0x40f101a8, 0x00035454, + 0x02a0a3d1, 0x0ab23ff6, 0x0780f2c1, 0x412499e0, 0xf67fec83, 0x27086d4f, + 0x0000007f, 0xb91e4754, 0x06032ba4, 0x33418746, 0x10140b14, 0x2702001d, + 0xf401ff1d, 0x086114bc, 0x4b072b07, 0x4c332453, 0x333b070f, 0x4e830e2c, + 0x833c0000, 0x24ab3f3c, 0x4b073833, 0xf93fdc83, 0x0354f4ba, 0x144c3300, + 0x833fcc83, 0xd9333f8c, 0x073f9c83, 0x198c33b0, 0xab199c33, 0x004f8323, + 0x3303c000, 0xabb153c9, 0xabc8abd6, 0x8324abd9, 0x0fff80be, 0x8707e153, + 0xc5ab9107, 0x80abbeab, 0x9d83a2ab, 0xfd3501ff, 0x5f5efc45, 0x80f2c1f7, + 0xd1101c27, 0xa501ac20, 0xf0867edb, 0xd4a54027, 0x07f9f25e, 0x004ea343, + 0x975e0220, 0xeaa4b9f7, 0xcd4fe601, 0x00a3a900, 0xeca1a901, 0xae13e201, + 0x80f2c105, 0x01f024a9, 0x00b634ea, 0x01f224a9, 0x00ae43ea, 0x01ee22a9, + 0x08a913ee, 0x2780fac1, 0xf0a4a910, 0x27430e01, 0xc3d10711, 0xc5d183d1, + 0x23ee64fd, 0xf1c10887, 0xa9202780, 0x0e01f214, 0x07212743, 0x8341c342, + 0x5cf4c541, 0xb980fac1, 0xe601e0a4, 0xa907464f, 0xea01e2a2, 0xa9072d32, + 0xea01e4a4, 0xc1072543, 0xefe664fe, 0x23ee08a9, 0xfac10977, 0xa9202780, + 0xee01e6a4, 0x07092e34, 0x83d1c3d2, 0x68fdc5d1, 0xa027e127, 0x5e60fec5, + 0xf4c1f9b0, 0x004ea338, 0xf4c51800, 0xf7515e38, 0xa338f0c1, 0x0200000e, + 0xc138f0c5, 0x1ef838f1, 0x55020000, 0x001ee3f7, 0xf1c51800, 0xf74a5e38, + 0xa1271127, 0xc568f1c5, 0xf1c564f1, 0x60f1c55c, 0x27f96f5e, 0xfb0e5ee0, + 0x395ec803, 0xe64027fb, 0x87fb823f, 0x824fe689, 0x079307fb, 0xc331074e, + 0x3331c341, 0x33334743, 0xf634ab94, 0xa3fb802f, 0x801fe634, 0x7cefe6fb, + 0x5e1027fb, 0x3027fb79, 0x3f5e6027, 0x279027fb, 0xfb245e00, 0x2794f0c1, + 0x86045930, 0x07312744, 0x8311c313, 0xfaf75e11, 0xc1abbfd6, 0x285e9cf4, + 0x7e0107fb, 0xf2c1ef4f, 0xa822d180, 0x90f2c501, 0x7df7125e, 0x3df31df3, + 0x99f35df3, 0x362743d4, 0x9307349b, 0x0210a7b9, 0x49079f6b, 0xa49d470b, + 0x1ba49d18, 0x9d1aa49d, 0x0a0719a4, 0x0c031d07, 0x88f2c118, 0x0248ddb9, + 0x4754f0c5, 0x00dfe662, 0x4914b902, 0xf84fe602, 0x80f3c101, 0x8990f2c1, + 0x04075031, 0xc0271123, 0x024a24a9, 0x024c2ea9, 0x310743e3, 0x34071412, + 0x0e88f4c1, 0x2a43d234, 0x43e34e07, 0x41124303, 0xfac14107, 0xd24a0e88, + 0xfec1184a, 0x4e24a980, 0x02e3a902, 0x42340e01, 0x5024a934, 0x27430202, + 0xf02803c1, 0xfac1bbf0, 0x7ca4b990, 0xff4ce001, 0x4cf40485, 0xf601af11, + 0xc103dddf, 0xf15380f0, 0x0dd1f4e8, 0x802701a8, 0xd4b91501, 0xa7070180, + 0x4770f8c5, 0x53c807e8, 0x33f4cff0, 0x50fec5c4, 0x0e012027, 0x0027c80b, + 0x031224da, 0xf302ec01, 0x27e50703, 0x80d4b920, 0xf042d201, 0x0780f3c1, + 0x0b420b4c, 0x1c439943, 0x03cf3fe6, 0x42873207, 0x342b3433, 0x0790f4c1, + 0xa9340b10, 0x0b018434, 0xb614ea16, 0x8634a903, 0xae41e201, 0x07210303, + 0x33428732, 0x07342b34, 0xb91d0b13, 0xca01821b, 0xfac1b4eb, 0xbd412780, + 0xc10234a4, 0x14d190fe, 0x3e0b0180, 0x018033a9, 0x00004ffc, 0x053f0200, + 0x3fab370b, 0x0750f1c1, 0x0b100b4f, 0x8b421d41, 0xef30e83f, 0x343c2805, + 0xf432f453, 0xa3074301, 0x6b54fdc1, 0x0b4a07af, 0x1d490b1d, 0x80fec114, + 0x32874207, 0x01a8edd1, 0x432b4433, 0x43b94d0b, 0x31580183, 0xa370f1c1, + 0x70f1c511, 0x0180d4b9, 0x465eeb07, 0x80f2c1ff, 0x07442499, 0x83215324, + 0x03348743, 0xf83f5e21, 0x9980fec1, 0x140743e4, 0x11031153, 0x073cf1c5, + 0x5e138314, 0x2099f820, 0x83f43118, 0x09333f0c, 0xd20704ab, 0x991ad499, + 0xd2991bd3, 0x3f4c8319, 0x413f3c83, 0x3f2c83f1, 0x3c334933, 0x3343ab19, + 0x02ab192c, 0xf03514ab, 0xd75ef145, 0x84f1c1f3, 0x00001ea3, 0x84f1c540, + 0xc1f4065e, 0xf43180f2, 0x07182099, 0x3f0c83d2, 0x04ab0933, 0x3fc3b71e, + 0x40000008, 0x5e9823c5, 0x3127f694, 0x27f7555e, 0xfe5c5ec0, 0x00004ee3, + 0xf3f75e18, 0x01a83dd1, 0x5e90fdc5, 0x2c03f58b, 0xf4e85e0f, 0xd180fec1, + 0x2701a8ed, 0xc5a70710, 0xf1c574f1, 0x6cf1c570, 0xf339f419, 0x02a634ee, + 0xb980f2c1, 0x990331d4, 0x4f4b1823, 0x43073412, 0x0332d3b9, 0x43123f4b, + 0xf3c14307, 0x18349d80, 0x9980f4c1, 0xd4b91943, 0x4f4b0331, 0x43073412, + 0x0332d3b9, 0x43123f4b, 0xfac14307, 0x19a49d80, 0x0331d4b9, 0x4b1aa399, + 0x0734124f, 0x32d3b943, 0x123f4b03, 0xc1430743, 0xe49d80fe, 0x31d4b91a, + 0x1be39903, 0x34124f4b, 0xd3b94307, 0x3f4b0332, 0x43074312, 0x9d80f0c1, + 0x03991b04, 0x60d4b918, 0x07341203, 0x344c0843, 0xc1334c27, 0x149d80f1, + 0x19139918, 0x0360d4b9, 0x43073412, 0x27344c08, 0xf2c1334c, 0x19249d80, + 0xb91a2399, 0x120360d4, 0x08430734, 0x4c27344c, 0x80f3c133, 0xc11a349d, + 0x439980f4, 0x60d4b91b, 0x07341203, 0x344c0843, 0xc1334c27, 0xa49d80fa, + 0x60d3b91b, 0x12470703, 0x08430737, 0x4c27344c, 0x90fec133, 0xe2b93407, + 0x3f6b0360, 0x32072312, 0x91343ce8, 0x33cc2700, 0x4c234c07, 0xa0d3d10c, + 0xf1448702, 0x03545440, 0x4f3ff600, 0x80f1c104, 0x1499e007, 0x7fec8341, + 0x27784fd6, 0x0000009f, 0xb91e4754, 0xc6032bd4, 0x33418745, 0xf4140b14, + 0xab02001d, 0x14ccd400, 0x072c0767, 0x3324534c, 0x3c070f4c, 0x830e2c33, + 0x3c00004e, 0xab3f3c83, 0x07383324, 0x144c334c, 0x23abb007, 0x00004f83, + 0xcaf903c0, 0x000354f4, 0x8907b153, 0xbe8324ab, 0x530fff80, 0xab9107e1, + 0xab80abbe, 0xff9d83a2, 0xf7a95e01, 0xcf6bc307, 0x6d0cccf4, 0x5e4027ff, + 0x42c4ff6d, 0x271e8771, 0x0000009f, 0x07851e2a, 0x534c072c, 0x07473324, + 0x0e2c333c, 0x3f004d83, 0xab0f3c33, 0x003e8324, 0x981e3c00, 0x985e3013, + 0x5e4013f8, 0x4013f862, 0x13f8505e, 0xf81d5e40, 0x0348a4d1, 0xe28cfdc1, + 0x5ef6134d, 0x1d27f608, 0x525e01ff, 0xeea2a9ff, 0x6532e201, 0xfa4b5efa, + 0x0000cea3, 0xf4f35e02, 0xd180fec1, 0xc501a8ee, 0x5c5e90fe, 0x009f27f3, + 0x5e2a0000, 0xcff6ff15, 0xf0c1fc23, 0xa80dd180, 0xfdc95e01, 0xf7841ff6, + 0xd580f0c1, 0xd5022001, 0x5e021801, 0xe2e0f776, 0x4d070367, 0x5348f2c1, + 0x4042e244, 0xc1402703, 0x430b80f3, 0x021242b9, 0x01a83bd1, 0x465e2f4b, + 0x80d4b9f8, 0x5e210301, 0x8103fc19, 0xfbed82e4, 0x2780f2c1, 0xa822d130, + 0x74f3c501, 0xc590f2c5, 0x7d5e6cf3, 0x6bb307fd, 0x0cbcf4bf, 0x4027f8d0, + 0x13f8d05e, 0xf75d5e00, 0x865e3013, 0x5e0027f7, 0x3013f763, 0x13f7ab5e, + 0xf7985e40, 0x32eef259, 0xf479fd58, 0xfd5242ee, 0x4d5e7a07, 0x81a4b9fd, + 0x8cfdc101, 0x016a4dea, 0x0180a4b9, 0xea88fec1, 0xa702064e, 0xf7ffff4e, + 0xf0c13127, 0x0043d580, 0x0842d101, 0xa80dd101, 0xb9f21501, 0xd10361d3, + 0xa601084b, 0x33420735, 0x1b4c7343, 0x3f6b3407, 0x0248d4b9, 0xcfe644c6, + 0x31e4fceb, 0xfe11fce7, 0x0000effc, 0x02bd4000, 0x4c334e07, 0x1a4c731a, + 0x470b3b07, 0x123f3c83, 0x08430734, 0x4c27344c, 0x071e0733, 0x141c33a4, + 0xaf6b4b07, 0x331a1c73, 0xfa1d144c, 0x0b1a4c53, 0x07411217, 0x341c0814, + 0x07331c27, 0x0e0c330e, 0x1f6b4b07, 0x331a0c73, 0xf13d0e4c, 0x0b1a4c53, + 0x07401207, 0x340c0804, 0x07330c27, 0x334b073e, 0x730f6b38, 0x48331a3c, + 0x4c53f05d, 0x12370b1a, 0x08340743, 0x3c27343c, 0xc52e8733, 0xf4c16cf2, + 0x1fec536c, 0x6b74fec5, 0x1f4c533f, 0xf4c5e027, 0x70fec56c, 0xfec12307, + 0x0b4a0780, 0x0b190b29, 0x9d490b09, 0xe19d18e4, 0x1ae09d19, 0x7d1be29d, + 0xfc365ef3, 0x5e78f2c5, 0xfdc1f544, 0xe6d4a980, 0xa9342a01, 0xe201e8d4, + 0x27f8ce34, 0x27302721, 0x68f2c5a0, 0x5e60f3c5, 0x42e4f298, 0x1e8700ed, + 0x00007f27, 0x905e2a00, 0x0f2c03f7, 0x07f0e05e, 0x534b072b, 0x07473324, + 0x0e2c333b, 0x3f004d83, 0xab0f3c33, 0x003e8324, 0x9f5e3c00, 0x81d4b9f7, + 0xab340b01, 0xfabe5e3f, 0xd180f4c1, 0x5e01a84d, 0xf2c1fbbb, 0x80fac148, + 0xa0d12253, 0x2ef0021c, 0xdd010000, 0x104c2700, 0x235b3407, 0x2df03207, + 0x00c70100, 0x28271827, 0x3cf0325b, 0x2700b510, 0x5b2427c4, 0xa434f032, + 0x27d22700, 0x80fac122, 0xabd114ab, 0x1cab01a8, 0xb4d1325b, 0x1dab02a4, + 0x13ab3153, 0x00a14fe6, 0x00e201f2, 0x402b4107, 0x35333407, 0x342b4447, + 0x00e330e8, 0x24732307, 0xfff92fcc, 0xa722ffff, 0x80fdc126, 0x0218d4d1, + 0x0220d3d1, 0x3103410b, 0x0218d4d5, 0x0220d3d5, 0x27f5dc5e, 0xf5e65e40, + 0x27df28c8, 0xc1db1e27, 0xadd180fa, 0x145e01a8, 0x007f27fb, 0x5e2a0000, + 0x3027f6a5, 0xc1fa195e, 0x412738f1, 0x00001ea3, 0x38f1c502, 0x0347e4bd, + 0x27f2d55e, 0x5cfec5e0, 0x27f78b5e, 0x64f4c540, 0x27f7695e, 0x5e2027d0, + 0xc027ff5d, 0x4c5e2027, 0x271027ff, 0xff3a5e20, 0x30274027, 0x27ff255e, + 0xff7f5e20, 0xa95ae489, 0x230102e3, 0xf843ee41, 0x20e1d1f5, 0xf01ff602, + 0x1ce1d500, 0x80fec102, 0xe4d54027, 0xe4d50220, 0xdc5e0218, 0x271127f5, + 0x68f1c5a0, 0x5e60f1c5, 0xf1c1f120, 0xc642be80, 0xfbab5efd, 0x075801ce, + 0x87402b41, 0x0b453334, 0x2130ec34, 0x0f3c03ff, 0x07ff1b5e, 0xca43534d, + 0x4d071124, 0x42224253, 0xb45e4227, 0x5e4327fc, 0x4127fcaf, 0x47fcaa5e, + 0xc14d0b4d, 0x465348f1, 0xfc9b14e2, 0x44534d07, 0x07e814c2, 0xc243534d, + 0x4d07d714, 0x14c24253, 0x5e4427d5, 0x20a7fc83, 0x99fee05e, 0x4fe6e0d4, + 0xd799fd40, 0x80f1c1df, 0x470b4907, 0x9d18149d, 0x149d1b14, 0x19149d1a, + 0x27fd275e, 0xf6d15e21, 0xdfffdea7, 0x352127fd, 0x48d4c1d2, 0x834cd3c1, + 0xffffff4f, 0xee30087f, 0xc1f020a4, 0x1c2780f3, 0xac30d110, 0x7ed2a501, + 0x4027e688, 0xd61ed4a5, 0xfdc587be, 0x27f54b5e, 0x68f2c520, 0xc1f69b5e, + 0x20d180f2, 0x26be0218, 0xf3c10004, 0x1c30d580, 0xff035e02, 0x0499fa4e, + 0x07d00741, 0x914ff6a1, 0x89b02702, 0x4f064ed4, 0xefff1ea7, 0x4014c1fd, + 0xc15013c1, 0x3c336012, 0x182c3318, 0x531d3c53, 0x4c331d2c, 0x53320b18, + 0x340b1d4c, 0xc1073a46, 0x01acd0d1, 0xf40c1e27, 0xe6167e01, 0xc140c4c1, + 0xc2c150c3, 0x183c3360, 0x53184c33, 0x4c531d3c, 0x182c331d, 0x2c53340b, + 0xd6320b1d, 0xa401d33f, 0x44030d07, 0x3d7ea405, 0x070d07ea, 0xec727e1b, + 0xe641d499, 0x84dbc146, 0x0236d4a9, 0x01bfb4f2, 0xc188d2c1, 0x24eaacd4, + 0xd4c10163, 0x42d39984, 0x31c34203, 0xc1a0d1c1, 0xd4c5a4d2, 0x42d39d84, + 0xc13521c2, 0x410ba8d4, 0x0aa0d4c5, 0xa0d2c542, 0xc1f4dcc1, 0xc411a0d3, + 0x991d34c2, 0x0d070cd1, 0xd1ead87e, 0x2701acd0, 0x01f40c1e, 0x11e5837e, + 0xa0d4c1c3, 0x01e534ca, 0xacd4c1ae, 0x010b4ee2, 0xce07d419, 0xda89c403, + 0xa748c64a, 0xd07fff3e, 0xd2893411, 0xc22c9b5e, 0x32251624, 0x24c23411, + 0x2703070f, 0x31071a1c, 0x0411f3e8, 0x89f842ca, 0x1fe64ed1, 0xd29900d5, + 0x692fc641, 0x023ad4a9, 0xc1624ec2, 0xd4c1f0d0, 0x60d389e8, 0x030b040b, + 0x01ce22e0, 0x0740bc27, 0xa7312331, 0xfde6ff2e, 0xd4893383, 0x0b439b5e, + 0x15240540, 0x0310272b, 0x83213531, 0x5ed48933, 0x400b439b, 0x2b152405, + 0x21353103, 0xd4893383, 0x0b439b5e, 0x15240540, 0x3531032b, 0x89338321, + 0x439b5ed4, 0x2405400b, 0x21352b15, 0x0756e8d0, 0x0341273a, 0x2b1c0738, + 0x3b3cea4e, 0x83140b01, 0x1de6fe1c, 0xa7e8d2c1, 0xfde67fee, 0xa710cc27, + 0xfde6bf0e, 0x89f0d3c1, 0x320b64d4, 0xe405430b, 0xd489ec15, 0x0b202762, + 0x89e23543, 0x040558d3, 0x02350315, 0x89e8d2c1, 0x240b5ed4, 0xf0e8d2c5, + 0xfa8ed3f1, 0xc15ed489, 0x4487e8d3, 0xd3c5340b, 0x99fa8ee8, 0xdec141d4, + 0xecd1c1f0, 0xe060d089, 0x2700da42, 0xd4a940cc, 0x42e20238, 0xd49900d5, + 0xce4ff605, 0x4ed38900, 0x100b1e0b, 0x00da3ff6, 0x24074427, 0xe6cf0ea7, + 0xfd41f0fd, 0x15010500, 0x8940270c, 0x04355ed3, 0xf280130b, 0xc188d2c1, + 0xa15eecd1, 0x42d39900, 0xdfff1ea7, 0x072307fd, 0x33493343, 0x03240b27, + 0xc132002d, 0xb423e0dc, 0xc19c12c5, 0x4b078cd0, 0x8390dec1, 0x031fff4d, + 0x94d2c5b2, 0xbd8340ab, 0x31831fff, 0xabac14c5, 0xc53633be, 0x3cabb01b, + 0xc18c13c5, 0xd4c188d2, 0xff42e2ac, 0xff5d5efd, 0xdfff3ea7, 0x202c27fd, + 0x34c13235, 0x6741dc8c, 0x023cd3a9, 0x9984d4c1, 0x432242d2, 0x0000be27, + 0xfd515e80, 0xc394dbc1, 0xffbd8321, 0x83b4337f, 0x00bea321, 0x2c333000, + 0x5eb2ab13, 0x1307fd37, 0x27fec45e, 0x275e80cc, 0x5ed389ff, 0x140b4387, + 0x44272403, 0xc588d2c5, 0xd48decd1, 0xfd9c5e46, 0x33833123, 0x9b5ed489, + 0x27140b43, 0xff1c5e41, 0x5e80bc27, 0xc307fe33, 0x0c27b207, 0x7ecba50f, + 0x4027e2d0, 0xcb35c4a5, 0xd88cc4c1, 0xeb1e8341, 0x025e2127, 0xff1ea7ff, + 0x1401fd4f, 0x03122f9b, 0xc1443341, 0x24ab3813, 0x0027322e, 0xf3abfe0b, + 0xc13812c5, 0x42ce3814, 0x27f3ebf8, 0x4efe0b01, 0x76d33efe, 0x200c2705, + 0x429efe0e, 0xfe8efdc4, 0x4207f64e, 0x93078207, 0x3007a207, 0xab102c53, + 0x073fab4f, 0x07e39be2, 0x07710760, 0x531407b0, 0x349b100c, 0x4307109b, + 0x4c53e10b, 0x9be40b10, 0x031e0220, 0x0100002e, 0xb99b4e07, 0x9b10ec33, + 0x104c53a7, 0x3fabd207, 0xba0bce07, 0xc30bd40b, 0x0c071b07, 0xf68e1d0b, + 0x0088fe4e, 0x1013100c, 0xfe0e2127, 0x00004e9e, 0x10680013, 0x44be2127, + 0x00130000, 0x1013fe8e, 0xfd4ef31e, 0x271200c8, 0x1410c8d0, 0x2cbe2027, + 0xd4860000, 0xfd8e0013, 0xd1270013, 0x13ee10cc, 0xd6412710, 0x1ed407d4, + 0x074027e4, 0x27de1ed4, 0x00099e21, 0x9e202700, 0x4e000003, 0x3601c2fe, + 0x273310c8, 0x203c2741, 0x44471147, 0xf02101c2, 0x302707f3, 0xfe8e26e6, + 0x27ee10cc, 0x2b012a30, 0x5334ab01, 0xd6115341, 0x0721b642, 0x66fe8e03, + 0x1e302740, 0x274127e9, 0x00e31e30, 0x00000000, 0x00000000, 0x00000000, + 0x00000081, 0x00000081, 0x00000081, 0x00000081, 0x00000202, 0x00000202, + 0x00000202, 0x00000202, 0x00000483, 0x00000483, 0x00000483, 0x00000804, + 0x00000804, 0x00000804, 0x00000c85, 0x00001206, 0x00001206, 0x00001887, + 0x00002008, 0x00002889, 0x0000320a, 0x00003c8b, 0x0000548d, 0x0000620e, + 0x00008010, 0x0000a212, 0x0000c814, 0x00010897, 0x00013899, 0x0001a49d, + 0x00020020, 0x00028824, 0x00032028, 0x0003f4ad, 0x000514b3, 0x000658b9, + 0x00080040, 0x000a2048, 0x000cd0d1, 0x00102cdb, 0x00000000, 0x00000000, + 0x00000000, 0x18101010, 0x30282420, 0x44403834, 0x59545049, 0x6f696460, + 0x84807974, 0x99948f89, 0xafa9a4a0, 0xc4c0b9b4, 0xd9d4cfc9, 0x00000081, + 0x00000081, 0x00000081, 0x00000081, 0x00000202, 0x00000202, 0x00000202, + 0x00000202, 0x00000483, 0x00000483, 0x00000483, 0x00000804, 0x00000804, + 0x00000804, 0x00000c85, 0x00001206, 0x00001206, 0x00001887, 0x00002008, + 0x00002889, 0x0000320a, 0x00003c8b, 0x0000548d, 0x0000620e, 0x00008010, + 0x0000a212, 0x0000c814, 0x00010897, 0x00013899, 0x0001a49d, 0x00020020, + 0x00028824, 0x00032028, 0x0003f4ad, 0x000514b3, 0x000658b9, 0x00080040, + 0x000a2048, 0x000cd0d1, 0x00102cdb, 0x00000000, 0x00000000, 0x00000000, + 0x18101010, 0x30282420, 0x44403834, 0x59545049, 0x6f696460, 0x84807974, + 0x99948f89, 0xafa9a4a0, 0xc4c0b9b4, 0xd9d4cfc9, 0x1ea7f54e, 0x99f7ffff, + 0x02890503, 0xd540274c, 0xc1010014, 0x328b740d, 0x62273183, 0xa107c007, + 0x632bf063, 0x9027d333, 0xefff0ea7, 0xff1ea7fd, 0xeea7fde5, 0x27fde5ef, + 0x8ea724bc, 0x27fdeb7f, 0x0200005f, 0x407c2711, 0x338004c1, 0x4c53184c, + 0x6244c01d, 0x2427c451, 0x14054d0b, 0x30271215, 0xeb051335, 0xe335e215, + 0x0108a4d1, 0x4fc6f405, 0xd54327d8, 0xc1028004, 0x48dc8004, 0xd54427fb, + 0xd5028004, 0x27028404, 0x9003d530, 0x15830506, 0x0ef39b85, 0xc241f401, + 0x49071405, 0x420b4633, 0x13351715, 0xe715e405, 0x9103e335, 0x96ced403, + 0x8ef04398, 0xe84327f5, 0x4e8e1ef4, 0x07c007fb, 0x73b00721, 0x2c731fcc, + 0x073c071f, 0x07120701, 0xfc86be2b, 0x803c27ff, 0x300b4027, 0x2407414b, + 0x53182c33, 0x0732ab38, 0x4efb8e03, 0x07f1a3f5, 0x07c207e1, 0xb91c46d0, + 0xd0016a00, 0xd4395a02, 0x24070c07, 0x24333487, 0x242b232b, 0x2e232287, + 0x9dfffef4, 0xd339282c, 0x3123f183, 0x070f3c83, 0x33138743, 0x2b412b44, + 0xf1448743, 0x00013043, 0x953c0bff, 0xbef58e23, 0x39fda9a8, 0x07f183d4, + 0x33248734, 0x2b322b34, 0x23338734, 0xfffef43e, 0x309d3095, 0xb9f58e28, + 0x99016bd4, 0x42e00cd3, 0x3fd601a3, 0x70dbd19a, 0x9fbfe601, 0x74d4d101, + 0x9741e001, 0xdbd49901, 0x99844fd6, 0x4ff6dcd4, 0xd499ff7e, 0x774ff6dd, + 0x034007ff, 0x6fe4ea41, 0xa7d439ff, 0xffffff2e, 0x4123402b, 0x070f4c83, + 0x33148734, 0xd1312b34, 0x2b184822, 0x07938734, 0x0332078e, 0x2b05072d, + 0x06d1a980, 0xe3020703, 0x9e237f3c, 0xe3fffef4, 0x2d237f0c, 0x34190507, + 0xc2803c03, 0x2001f930, 0x023901e8, 0x01e48fe6, 0x38071027, 0x03082499, + 0x0b4f4b21, 0x33f3a014, 0xfc13be08, 0x216007ff, 0xf0973194, 0xb110014d, + 0x014ef001, 0x019d0100, 0xda1ead27, 0x02720d27, 0x34071027, 0x3c732407, + 0xfb3ebe1f, 0x803c27ff, 0x300b4027, 0x2407414b, 0x0b182c33, 0xab3853a7, + 0x0b1a0732, 0x15060713, 0xfe817ef1, 0xd0c11007, 0x000d0c94, 0x000d2701, + 0xfe717e01, 0x90916007, 0x08331807, 0xfffbb0be, 0x02a4d4d1, 0x011cd3d1, + 0x870f4c83, 0x33700724, 0x03240b44, 0x4127807c, 0x40273108, 0x1e231207, + 0x25ffec48, 0xf93487f1, 0x0013c124, 0x057853ff, 0xe5bfe6f4, 0xd94fe600, + 0x27292700, 0x99f12139, 0x1499e1d9, 0x2bb40708, 0x079b12b2, 0x998307b9, + 0x840be2d5, 0x85078512, 0xd3c1f221, 0xc12211cc, 0xf255d0d4, 0xf435f345, + 0xda6a62c2, 0xb8075078, 0x4556f401, 0x41234c07, 0xb4074b12, 0x61c2f151, + 0x56f2010d, 0x032c0725, 0x072b1221, 0x51f311b2, 0x013442f4, 0x071496f1, + 0x07b95ab5, 0x07b5129b, 0x07f22195, 0x0a279dc9, 0xe4fdfd5e, 0x5efe5d32, + 0xd4d1fdf6, 0x42f402a4, 0x625efdee, 0x07a707fe, 0x31100706, 0xfd9d7ef0, + 0x01c2f151, 0x248ace27, 0xee1ea103, 0x26c2f251, 0x957bd22d, 0x0607a707, + 0xf0411007, 0x51fd7e7e, 0x1130c2f3, 0x230eabce, 0xf2ee1ea1, 0x07ff7bab, + 0xff765eba, 0xa8f2ba07, 0x6b5eff70, 0x077b12ff, 0x65b8f2b7, 0xff605eff, + 0x3c272027, 0xff275e12, 0x13c021f9, 0xd499ff00, 0x2b9107e1, 0x07491293, + 0x99b30794, 0xb10be2d4, 0xb407b412, 0x13bc2af1, 0xd5c1ff00, 0xd0d8c1cc, + 0xda426ac2, 0x9b072a7b, 0x27ff585e, 0x2711fdad, 0x27033a0d, 0xfe645e10, + 0x01014dd0, 0x7cad2770, 0x430d2701, 0x5e102704, 0x1027fe52, 0x07fe2a5e, + 0x071607c7, 0xfced7e08, 0x0ac26007, 0x21bcce24, 0xee1ec103, 0xf22ba6c2, + 0x07ff1879, 0x071607c7, 0xfcd17e05, 0xa0c26007, 0x0e9cce11, 0xee1ec123, + 0xfeffc9f2, 0xfa5e9c07, 0xf29c07fe, 0x1efef4cb, 0x07791296, 0xea9bf297, + 0x038c1efe, 0x33010711, 0xbe180707, 0x07fff9e9, 0xfdd55e60, 0x271fac27, + 0x27059f0d, 0xfde45e10, 0x0499fe4e, 0x0c02990b, 0x049d41c3, 0x0b03990b, + 0xe3071007, 0x3333e533, 0xed03e32b, 0x1e0b01b0, 0x310721c3, 0x9d171c03, + 0x21070c02, 0x237f3ce3, 0xe301b0ed, 0x1c237f2c, 0x03341917, 0x32c2803c, + 0x274107f9, 0x05362720, 0xc8440342, 0x740199f3, 0x300b3e07, 0xbdf804c1, + 0xd501b031, 0x8901c434, 0x43335e04, 0x01c034d5, 0xfc4efe8e, 0xffff3ea7, + 0x093499fe, 0x01a802d1, 0x34074383, 0x44873433, 0x3ef9342b, 0xff00004d, + 0xa97401c1, 0x0b030824, 0x4e3cf91e, 0x07ff0000, 0x392399d0, 0x270e41c2, + 0x07432b45, 0x4c038921, 0x234a243b, 0xd49d4027, 0xcefc8e06, 0x3007f7ec, + 0x3d032147, 0x402701f4, 0xfdb5e3be, 0xa7e4d3c1, 0xfdbf3f4e, 0xd2c14325, + 0xff4ea7dc, 0x3127fddf, 0x9d4042c5, 0xfc8e06d3, 0x0499f94e, 0x4c038905, + 0x0ea79007, 0x8bfdefff, 0x8402c143, 0x12274183, 0x2dd8142b, 0x070ffc6a, + 0xe8432720, 0x8423c1f4, 0xfc6a3ddc, 0x27c107f5, 0x2f0ea7a0, 0x9441fde6, + 0x16331a07, 0x4321410b, 0x4231e007, 0x0510ec23, 0x15ba07e3, 0x34bc03e2, + 0xed35d027, 0x02150b05, 0x0d359441, 0x4341410b, 0x41513646, 0xe30515c6, + 0xed35e115, 0x01150b05, 0xa1030d35, 0xf0200c03, 0xf98ebdfc, 0x0499fa4e, + 0x07d0070d, 0x274536c1, 0x0d049d41, 0x4107fa8e, 0x4333a107, 0xa42ba533, + 0x300b3a07, 0x01b634a9, 0xb30747e6, 0x1c070d07, 0xffdfd8be, 0x01acd0d1, + 0xf4171e27, 0xda82be01, 0xb6b4a9ff, 0xa740f601, 0xfdefff2e, 0xc16c23c1, + 0x3c335c24, 0x184c3318, 0x531d4c53, 0x430b1d3c, 0xc2074906, 0x01acd0d1, + 0xf4171e27, 0xda52be01, 0x6cc3c1ff, 0x335cc4c1, 0x4c33183c, 0x1d4c5318, + 0x0b1d3c53, 0xdd4fd643, 0x4d0b4a07, 0x01ba42a9, 0x01b443a9, 0x3fab320b, + 0x01ba43ad, 0x024ad489, 0x07340734, 0xab2d0b2a, 0xb124b93f, 0xba23ad01, + 0xa94eb601, 0x0701b824, 0xb02d032a, 0xca2d0b01, 0xe3074743, 0x4d0b4a07, + 0x01bc43a9, 0x032b0e07, 0x22510626, 0x075ed189, 0x0b241130, 0xb8241541, + 0x4ad489f3, 0xa7264ece, 0xfeffff3e, 0x1e3834a9, 0x400bda0b, 0x1e3834ad, + 0x01bcdead, 0x4ea73127, 0xc5fdcfff, 0xfa8e7043, 0xb91ee407, 0x1d0b1a07, + 0x01b814a9, 0xd1d14eca, 0xa701c414, 0x15212730, 0xb112bd43, 0x00c11e01, + 0x000000d9, 0x0000007e, 0x00003e00, 0x001f0000, 0x000001ff, 0x00000100, + 0xd007f54e, 0x0110dd03, 0xdc031d07, 0x232d0797, 0xd101a7dd, 0x0701a800, + 0x234d073d, 0x7f1ce3f2, 0x037f2ce3, 0x0301e03d, 0x3501f44d, 0x55f145f0, + 0x65e007f2, 0x31f475f3, 0x29f341fa, 0x08aba9a4, 0x2bf05103, 0xc5b123b4, + 0xe49974db, 0x139b0739, 0x19943b45, 0x803c0334, 0x27f930c2, 0x27402720, + 0x1cd2bd31, 0x18d4bd01, 0x19d3bd01, 0xa9a90701, 0xab02a4e1, 0x10d2adaf, + 0x14d2ad01, 0x16daad01, 0x22d1ad01, 0x8f2ea701, 0xd2d5fee1, 0xe4890124, + 0x39e39912, 0x04874123, 0x0325e2b9, 0x02e134f0, 0x2314e489, 0xbd492b34, + 0x3b011bd3, 0x07420243, 0x07435b42, 0x23200734, 0x23430721, 0x0b138741, + 0xad132b23, 0xbd0112d2, 0x03011ad4, 0xe8040711, 0x070f5141, 0x07212323, + 0xbd42a73d, 0x03011d34, 0x0bf2a831, 0x1d01bd0d, 0x07e13901, 0x2321070d, + 0x0f2c8321, 0x42073107, 0xe287c187, 0x44333433, 0x3c2b4e2b, 0x312b422b, + 0x44873387, 0xfef44e23, 0xf43e23ff, 0xd4c5fffe, 0xf8d3c5f4, 0x89fc4b7e, + 0xdaad4cd4, 0x94ea0116, 0xdcd10243, 0xfa9301ac, 0xa702d1e0, 0xfefd0b0e, + 0x0211a401, 0x40130321, 0x340b240b, 0xa21132ab, 0x0e2630e8, 0x0ee920e8, + 0x32874207, 0x432b4533, 0x35333407, 0xf453342b, 0x4101fe88, 0x3e23f231, + 0x07fef10c, 0x232a0141, 0x033a0511, 0x98340324, 0x95f293f4, 0x231102d1, + 0x31032401, 0x23154103, 0x31ec2405, 0xf3930ea0, 0x0102d180, 0x0baea734, + 0xa405fefd, 0x0ea73127, 0xc5fdcfff, 0xd4897003, 0x6c03c54c, 0x01e949e2, + 0x075ad489, 0x8d3fab3b, 0x41234ed3, 0x2027ab47, 0x0e6534ee, 0x9d06d499, + 0x4fe605d2, 0xf3610e98, 0x2527f471, 0x44034101, 0x34033105, 0x4027f2a8, + 0x9d41d299, 0x2fe607d4, 0xdb8904e7, 0x074b074e, 0x0342233b, 0xff4d8333, + 0xff3d831f, 0x104c331f, 0xc5103c33, 0xd3c58cd4, 0x6e22e090, 0x9925270e, + 0x312705dc, 0x3027b486, 0x44334c07, 0x333324ab, 0xab4ed489, 0xe0d2c523, + 0xd3894223, 0x4540e84c, 0x7331030e, 0x5d34f231, 0x50d2890e, 0x23e32303, + 0x249b2533, 0xc1c8d4c1, 0x420bccd3, 0xdfff1ea7, 0xa814c5fd, 0x12c5230b, + 0xff3ea7a4, 0x34a1efff, 0x8954de89, 0xd1c156d0, 0x1d40c874, 0x42272307, + 0x30272405, 0x070ef39b, 0x05ff8b00, 0xcc24a123, 0xdb89ed40, 0x05dc994e, + 0x30074147, 0x3310342b, 0x3e9b3227, 0x4ea73fab, 0x85efffff, 0x0bd39943, + 0xded12027, 0x402701a8, 0x8d42d49d, 0x430746d2, 0x33334533, 0x2b18e189, + 0x034d0b43, 0xe0891f1c, 0xb24cbd16, 0x27157301, 0x034427c0, 0xd4c51f0c, + 0x04d29d84, 0xc588dcc5, 0xdcc5e8dc, 0xa0dcc5ec, 0x05731b2b, 0x11271110, + 0x409b4107, 0x31a74123, 0x8dfed48d, 0xd1bdfcd3, 0xd0ad0107, 0xdcad0104, + 0xdbad0100, 0xdcd50102, 0xe4b9010c, 0x4ce0017c, 0x2300a7ff, 0xf44f6b41, + 0x00b9104c, 0x0180e4b9, 0x00b14fe6, 0x2e070a07, 0x10273d07, 0x2e1e0103, + 0x018a24a9, 0x272e4ac2, 0x1c349d41, 0x018824a9, 0xa93604ca, 0xc2018a24, + 0x41272f40, 0xb92d349d, 0x030180e4, 0x0c2c0311, 0x41d23103, 0x8824a977, + 0xcd4ac201, 0x349d4027, 0x31d21e1c, 0x070907f1, 0x9eb2be2d, 0xfdb45efd, + 0x349d4027, 0x27d11e2d, 0xbd432b44, 0x89011bd4, 0x243b14e3, 0x32e2392b, + 0x3207fd25, 0x07fd205e, 0xb65abe0d, 0x27f031fd, 0xd1041d41, 0x3101acd0, + 0xd6fabef1, 0xc60ff6ff, 0xa8ded10b, 0xfc815e01, 0x0180e4b9, 0x0244e2d1, + 0x43334103, 0x3ea7b49b, 0x0bfde3ff, 0x153b05b2, 0x993c3534, 0x4fe641d4, + 0xd19900ba, 0x5a11d840, 0x893edb99, 0x4b074ed3, 0xcb874433, 0x0ea7c40b, + 0xf1ffffff, 0x0003ccc4, 0x0802d1ff, 0xdc330301, 0x0400004e, 0x07a34735, + 0xbe171e90, 0xd1ffd504, 0xf1010894, 0x0003ccc3, 0xdc2407ff, 0x0400003e, + 0x53420716, 0x6b320748, 0x120d274f, 0x103c5364, 0xdad9b4ce, 0xd199d63a, + 0x5712d840, 0x893fdb99, 0x4b074ed3, 0xcb874433, 0x1ea7c40b, 0xf1ffffff, + 0x0003ccc4, 0x0812d1ff, 0xdc330301, 0x0400004e, 0x07a34732, 0xbe171e91, + 0xd1ffd4a8, 0xf1010894, 0x0003ccc3, 0xdc2407ff, 0x0400003e, 0x53420716, + 0x6b320748, 0x120d274f, 0x103c5364, 0xdad9b4ce, 0xd4d1d63a, 0x43b901a8, + 0x3ff60327, 0xd2c10bbe, 0xa4d3c1a0, 0xf4054027, 0xc13732c2, 0x420ba8d4, + 0x0aa0d4c5, 0xa0d3c543, 0xc1f4dcc1, 0xc411a0d3, 0x991f34c2, 0x0d070cd1, + 0xffda00be, 0x01acd0d1, 0xf40c1e27, 0xd4aabe01, 0xc1c311ff, 0x34caa0d4, + 0xc1fe01e3, 0x4ee2acd4, 0xd41900d1, 0xc403ce07, 0xc64ada89, 0xff3ea748, + 0x3411d07f, 0x9b5ed289, 0x1624c22c, 0x34113225, 0x070f24c2, 0x1a1c2703, + 0xf3e83107, 0x42ca0411, 0x4ed089f8, 0x009b0fe6, 0xe641d199, 0x3ad4a91b, + 0x374ec202, 0xc1f0d2c1, 0xd389e8d4, 0x0b240b60, 0x4312e023, 0x40bc270b, + 0x31233007, 0x1ea73383, 0x27fde6ff, 0x5ed48904, 0x420b439b, 0x1b151405, + 0x31034027, 0x33831435, 0xe8f0f050, 0x4a070b20, 0x48033127, 0x4c023e2b, + 0x430b4c07, 0x46fe4c83, 0xe8d2c14c, 0x0ea71407, 0x27fde67f, 0xeea710cc, + 0xc1fde6bf, 0xd489f0d3, 0x0b320b64, 0x15040543, 0x62d4890c, 0x430b2027, + 0xd3890235, 0x15e40558, 0xc1e235e3, 0xd389e8d2, 0xc5230b5e, 0xf1f0e8d2, + 0x4ed489d3, 0x1ea74f26, 0xc1fdefff, 0x13c14014, 0x6012c150, 0x33183c33, + 0x3c53182c, 0x1d2c531d, 0x0b184c33, 0x1d4c5332, 0x3a66340b, 0xd0d1c107, + 0x1e2701ac, 0xbe01f40c, 0xc1ffd390, 0xc3c140c4, 0x60c2c150, 0x33183c33, + 0x3c53184c, 0x1d4c531d, 0x0b182c33, 0x1d2c5334, 0x3fd6320b, 0x99f401d2, + 0x440341d3, 0x3fe6f405, 0xdcc100ea, 0x36d4a984, 0x4c4cda02, 0xa742d399, + 0xfddfff0e, 0x43072307, 0x27334933, 0x2d03240b, 0xdec13200, 0xc5c423e0, + 0xd1c19c02, 0xc14c078c, 0x4d8390d0, 0xc2031fff, 0xab94d2c5, 0xffcd8341, + 0xff1ea71f, 0x3183fddf, 0xabac14c5, 0xab3633c0, 0xb01cc53e, 0xc18c13c5, + 0xd4c188d1, 0x8b41e2ac, 0x41d49900, 0xc1f0d0c1, 0xde89ecd2, 0x6142e060, + 0x40cc2709, 0x0238d4a9, 0x995c41c2, 0x4f1605d4, 0x0b4ed389, 0xf62e0b20, + 0x2706b83f, 0xa7140744, 0xfde6cf0e, 0x11274114, 0x0c150205, 0xd3894027, + 0x0b04355e, 0xc1f18023, 0xd2c188d1, 0x992b1eec, 0xd2c10bd3, 0x334307f8, + 0x2b333345, 0x5cd38943, 0x43ad4d0b, 0xd38901b8, 0x4edb895e, 0x3305dc99, + 0x5e231533, 0xd389fba9, 0x0b43875e, 0x27140324, 0x88d1c544, 0x8decd2c5, + 0xd19946d4, 0xbe0d070c, 0xc1ffd7b9, 0xd39984d4, 0xc3420342, 0xa0d1c131, + 0xc5a4d2c1, 0xd39d84d4, 0x3721c242, 0x0ba8d4c1, 0xa0d4c541, 0xd2c5420a, + 0xf4dcc1a0, 0x11a0d3c1, 0x1f34c2c4, 0x070cd199, 0xd77fbe0d, 0xacd0d1ff, + 0x0c1e2701, 0x29be01f4, 0xc311ffd2, 0xcaa0d4c1, 0xfe01e334, 0xe2acd4c1, + 0x1900d14e, 0x03ce07d4, 0x4ada89c4, 0x3ea748c6, 0x11d07fff, 0x5ed28934, + 0x24c22c9b, 0x11322516, 0x0f24c234, 0x1c270307, 0xe831071a, 0xca0411f3, + 0xd089f842, 0x9b0fe64e, 0x41d19900, 0xd4a91be6, 0x4ec2023a, 0xf0d2c137, + 0x89e8d4c1, 0x240b60d3, 0x12e0230b, 0xbc27081a, 0x23300740, 0xa7338331, + 0xfde6ff1e, 0xd4890427, 0x0b439b5e, 0x15140542, 0x0340271b, 0x83143531, + 0xf0f05033, 0x0707f7e8, 0x0331274a, 0x023e2b48, 0x0b4c074c, 0xfe4c8343, + 0xd2c14c46, 0xa71407e8, 0xfde67f0e, 0xa710cc27, 0xfde6bfee, 0x89f0d3c1, + 0x320b64d4, 0x0405430b, 0xd4890c15, 0x0b202762, 0x89023543, 0xe40558d3, + 0xe235e315, 0x89e8d2c1, 0x240b5ed4, 0xf0e8d2c5, 0xd4d1d3f1, 0x4c76010c, + 0x0d071f07, 0xffeadfbe, 0x070cd199, 0xd67bbe0d, 0xfcd289ff, 0x8bfed489, + 0x4ed0892f, 0x076f42f2, 0xd4d54027, 0x2103010c, 0x41272028, 0x010cd4d5, + 0x0107d4b9, 0xe0fcd28d, 0xe004db41, 0x1e03f742, 0xce41c4ff, 0x0100d3a9, + 0xee0ed499, 0xf6072b34, 0xb903d13f, 0xf60106d4, 0x9903c94f, 0x46f606d4, + 0xa7e4d4c1, 0xfdbf3f3e, 0xd2c13425, 0xff0ea7dc, 0x02c5fddf, 0xa8dcd140, + 0x9d402701, 0xc3b906d4, 0x35a60327, 0x10270d07, 0xd1f57f7e, 0xc101a8dc, + 0x3ea774d1, 0x99ffffff, 0x32b9dec7, 0x1ff6152d, 0xb70706b6, 0xf6b8c4c1, + 0x0705734f, 0x60c4b937, 0x12830703, 0x08840743, 0x8c27348c, 0x6be80733, + 0x10debdef, 0x29c3b902, 0x10d2b903, 0x11d3bd02, 0x07312302, 0x034f6b43, + 0x6f42f031, 0x992e0704, 0x462743c3, 0x240b439b, 0x4c83480b, 0x9949333f, + 0xd29d08d3, 0x70d4c518, 0x9d1bd29d, 0xd29d1ad2, 0x0737e619, 0x0c4c0348, + 0x333f4c83, 0x3ea7174c, 0xa3f3ffff, 0x35cbcd4e, 0x277434c5, 0x08d39d30, + 0x0329c4b9, 0x06294ff6, 0x017cc4b9, 0x06214ff6, 0x25532807, 0x27834807, + 0x2da34533, 0x4d832000, 0x38071f00, 0x3c8324ab, 0x2723abf0, 0xc1f41540, + 0xf28db8c3, 0xef3fe608, 0xe6d45905, 0x9905e24f, 0xd479dec2, 0x05d34ff6, + 0xfe9d0e07, 0x04f19904, 0x0705fe9d, 0x2b310741, 0x07302b42, 0x06f49de1, + 0xa707f39d, 0xfef51f4e, 0xd4d14311, 0xf0890208, 0x99432b08, 0xfb9907fc, + 0x0542f406, 0x0cd3d105, 0x33430702, 0x2b334743, 0xe841fd43, 0xedff010a, + 0x010aec40, 0xeb4cfdff, 0xfdff010a, 0x010aea4b, 0xe94efdff, 0xd1ff010a, + 0xa70208d3, 0xfef51f4e, 0xd3d53103, 0x43050208, 0x020cd4d1, 0x41834103, + 0x020cd4d5, 0xaea74127, 0x99fdcfff, 0xa4c509d3, 0x2c3fe66c, 0xa8d4d101, + 0x41d69901, 0x032d43b9, 0x032b45b9, 0x009d3fe6, 0xc333c607, 0x4f034c07, + 0x0003939c, 0x43114201, 0x2473289b, 0x21e8230b, 0x420704b1, 0x537f2c28, + 0x01f583f0, 0x404cf004, 0xe4470465, 0x837fec23, 0x4c077fec, 0x939c4f03, + 0x42610003, 0x289b4371, 0x230b2473, 0x043e21e8, 0x2c284207, 0x55f1537f, + 0xf01401f5, 0x0420404c, 0x1c231447, 0x7f1c837f, 0x4c071733, 0x939c4f03, + 0x42c10003, 0x3443c130, 0x2473289b, 0x21e8230b, 0x420703f5, 0x537f2c28, + 0x01f523f3, 0x404cf034, 0x44470447, 0x837f4c23, 0x4c337f4c, 0xab31070e, + 0x0734ab3e, 0x804f0346, 0x19000393, 0x184a9941, 0x337f1c83, 0x13ab151c, + 0x43994b79, 0x094e9906, 0x990c4099, 0x42990f49, 0x154c9912, 0x270c53c8, + 0x27649641, 0x1c4c3340, 0x3c8314ab, 0x7fec837f, 0xec333733, 0x7f2c830e, + 0x3eabc783, 0x837fbc83, 0x27337f0c, 0xa715cc33, 0xf3ffff4e, 0x2cab3bab, + 0x83150c33, 0xa7837f9c, 0xab6841c5, 0x3329ab30, 0x43c518ac, 0xc52aab6c, + 0x40277042, 0xa709d49d, 0xffffffae, 0x152da7bd, 0x420c8cf4, 0xd1202703, + 0x8701a8dc, 0xa0c3d142, 0x8040f102, 0xf6000353, 0x0702003f, 0xbe30271d, + 0x07fdabe7, 0x7f2c8320, 0x41534007, 0x4e833207, 0x530fff80, 0xa743ab31, + 0xf3ffff1e, 0x997c14c5, 0x4fe641d4, 0x0fa301c5, 0x2a000000, 0x42e010a5, + 0x324703fb, 0x032bc4b9, 0x43874646, 0x340b3433, 0x02003d30, 0xf42af253, + 0x3d832301, 0x4ea701ff, 0xc5f3ffff, 0x8cf45843, 0x07041514, 0x33480728, + 0x0f4c332a, 0x2e833807, 0x8303c000, 0x3c00004e, 0xab3f3c83, 0x07383324, + 0x144c3348, 0x4f8323ab, 0x03c00000, 0x84f924ab, 0x00035420, 0xffff0ea7, + 0xb524abf3, 0x08d4b902, 0x264fe601, 0x070d0701, 0xe6fabe1f, 0x07d499ff, + 0xfc1f4ff6, 0x0100d4a9, 0xfc174fe6, 0x01a8d4d1, 0x032043b9, 0x54ff3ce0, + 0xff1ea703, 0x14c1fddf, 0xfe44fc40, 0x7e0d07fb, 0x4127f17a, 0x5e07d49d, + 0xd4b9fbf1, 0x4fc60109, 0x0bd199b5, 0x5abe0d07, 0xaa1effd2, 0x32074207, + 0x44474273, 0x21733183, 0x2183430b, 0x0100d4ad, 0x0106d2bd, 0x0106d1b9, + 0x0100d4a9, 0x14862127, 0x30072027, 0x41c3310b, 0xd3ad428b, 0x31270102, + 0x0108d4bd, 0x0109d3bd, 0x0110d2a9, 0x0112d1a9, 0x02f012ee, 0x43834207, + 0x43b94d0b, 0x3f4b011d, 0x20c8230b, 0xed12daf0, 0x42073207, 0x42533383, + 0x0114d4ad, 0x0118d3bd, 0x0110d2ad, 0x010cd4d1, 0xfb5442e4, 0x0604d499, + 0xbe0d0745, 0x99ffccb7, 0x0d070bd1, 0xffd1ccbe, 0x01a8d4d1, 0x032043b9, + 0x2fff3cc0, 0x7607d499, 0xff3ea749, 0x34c1fddf, 0x1f44d840, 0xaea74827, + 0xd1fddfff, 0xa501acd0, 0x151c27a4, 0xffcc53be, 0xa4a54027, 0xdc40a3c1, + 0xd499e334, 0x5e4ff606, 0x7e0d07f6, 0x565ef08e, 0x270d07f6, 0xd2c2be10, + 0xfedb5eff, 0xd2ad4027, 0xd4bd0100, 0x2d5e0106, 0x833123ff, 0x5ed48933, + 0x240b439b, 0x3e5e4127, 0x000fa3f9, 0xa7540000, 0xf3ffff1e, 0x3b5e10a5, + 0xbe1d07fe, 0x5efdaa96, 0x2cd0fe03, 0x4127452e, 0x40273104, 0xfffb4f13, + 0xd1b9ffff, 0xd4bd0211, 0x11c00212, 0xfa4c2729, 0x0213d4bd, 0x271b11c0, + 0x3127fe4c, 0x30271104, 0x0214d4bd, 0xd4bd4127, 0xd3bd0215, 0x565e0216, + 0x1e4127fb, 0xfe4c27e6, 0x2cd0d71e, 0x41274929, 0x40273104, 0xfffd4f13, + 0xd1b9ffff, 0xd4bd0211, 0x11c00212, 0xfc4c272d, 0x0213d4bd, 0x271f11c0, + 0x3127ff2c, 0x30271104, 0x11004127, 0xd2bd4027, 0xd4bd0214, 0xd3bd0215, + 0x0a5e0216, 0x1e2027fb, 0xff4c27e2, 0x31c0d31e, 0xfb4c2737, 0x0211d1b9, + 0x0212d4bd, 0x272511c0, 0x2127fd4c, 0x20271104, 0x11003127, 0xd4bd3027, + 0x40270213, 0x0214d3bd, 0x0215d4bd, 0x0216d2bd, 0x27facc5e, 0x27dc1e40, + 0xc91efe4c, 0x2b070c07, 0xd1ebc27e, 0x0701a8dc, 0x2fc4b970, 0x124f4b03, + 0xb9740740, 0x4b0330c4, 0x0774124f, 0x45c4b974, 0x684fe603, 0x46c4b9fa, + 0x604fe603, 0x58c2d1fa, 0x922ff603, 0x02d3a900, 0x48c4d101, 0x4c43e203, + 0xff4ea7fa, 0x43d1ffff, 0x425e184c, 0x232807fa, 0xbc5e0c2c, 0x3dfa53fc, + 0x5ea401f1, 0x1c27fc21, 0x33142b3f, 0x001d8318, 0xfbe05e3f, 0xf122f253, + 0xd75e2101, 0x3f4c13fb, 0xec83e447, 0xfb9c5e7f, 0xcfffaea7, 0x48a2c1fd, + 0x42073027, 0xa4c544a3, 0x0ef39b48, 0xff8b0007, 0xc548a2c5, 0x3ea768a3, + 0x11fef51f, 0x08d4d132, 0xd4422b02, 0xce5ed342, 0x7cec27fa, 0x13fb655e, + 0x4c333f4c, 0x004e830f, 0xba5e1f80, 0x48c0d1fb, 0x02dea903, 0x9b400701, + 0x784eee42, 0x6fe4e201, 0x07210301, 0x23409b42, 0x634ee221, 0xff1ea701, + 0x13d1ffff, 0xc1d1184c, 0x4107034c, 0x42ee4123, 0x4107f995, 0x4123409b, + 0xf98be4e2, 0xffff2ea7, 0x4c23d1ff, 0xf97f5e18, 0xd95e20a7, 0x8ef203f1, + 0xdec099f5, 0x07fa2d5e, 0x5e2f6b2b, 0xf199fa1e, 0x05fe9904, 0x27fa365e, + 0x5e21112d, 0xb207f9f7, 0xa7f94b5e, 0xfddfff2e, 0xfc4024c1, 0x5ef8ac41, + 0x4027fcad, 0x0119d4bd, 0x87fd335e, 0xfc065e32, 0x070cd199, 0xef067e0d, + 0x90be0d07, 0xd3a9ffcd, 0xc45e0100, 0xd54227f8, 0x5e010cd4, 0xbc27fcdc, + 0xf7e75e80, 0xc15ed489, 0x4487e8d3, 0xd4d1340b, 0xd3c5010c, 0xf8505ee8, + 0x5e80cc27, 0x8c50f6a0, 0x01fa5323, 0x5ea201f0, 0x2807fc0e, 0x2a334807, + 0x38074733, 0xc0002e83, 0x004d8303, 0x0f3c333f, 0x3e8324ab, 0x5e3c0000, + 0x0027fbdf, 0x27f0be5e, 0xf19a5e21, 0x4103432b, 0x21152405, 0x27f1595e, + 0xff2ea744, 0x24c5fdcf, 0x270c0748, 0x39be181c, 0x4027ffc9, 0xcfff3ea7, + 0x4834c5fd, 0x5e6834c5, 0x0d07f0d6, 0xd97e1027, 0xf43c5ee8, 0x6174d1c1, + 0x070d07f3, 0xa39ebe2a, 0xf16c5efd, 0xcd5e2027, 0x5e2727f1, 0xbc27f193, + 0xf4be5e80, 0xc15ed389, 0x3387e8d4, 0xd4c5430b, 0xf5275ee8, 0x0750d489, + 0xe3430323, 0x33212343, 0x5e249b45, 0x3707f1a0, 0xa7fea55e, 0xffffffae, + 0x184ca3d1, 0x00fe995e, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x1c000808, + 0x3030001c, 0x00343c00, 0x00001000, 0x02000010, 0x00010000, 0x00000017, + 0x00000021, 0x00000017, 0x00000021, 0x00000012, 0x00000040, 0x00000017, + 0x00000002, 0x00000017, 0x00000002, 0x00000009, 0x0000002b, 0x00000015, + 0x00000000, 0x00000015, 0x00000000, 0x0000001d, 0x00000000, 0x3ea7fb4e, + 0x27fdeb7f, 0x273c05c0, 0x0200004f, 0x27341511, 0x0ef49b40, 0x01a802d1, + 0xe5ff1ea7, 0x2823b9fd, 0x0bb42703, 0xc424b923, 0x33348702, 0xf1340b44, + 0x0003d43e, 0x151e05ff, 0xef3ea71b, 0x1c35fde5, 0x05244c27, 0xa73b1534, + 0xf7ffff2e, 0x2cd53c35, 0x24d10100, 0xe40b0108, 0xfb8e0e55, 0x00100000, + 0x4027f54e, 0x0706049d, 0x0c119951, 0x019df0e3, 0x12528941, 0x02a851d1, + 0x894a028d, 0x54894a03, 0x8d310314, 0x43074c04, 0x048d4153, 0x47412350, + 0x2b312344, 0x23334734, 0x9d402731, 0x048d4303, 0x16548952, 0x034c0389, + 0x44530f4c, 0x8954048d, 0x01c51852, 0x0f2c0380, 0x4c034207, 0x8d455310, + 0x41235a04, 0x342b4447, 0x31233347, 0x028d2453, 0x44039d56, 0xd10e5299, + 0x9d01a801, 0x53a90a02, 0xd0070312, 0x995e038d, 0x4ff64314, 0x4d270486, + 0x048d012c, 0xfc3c2760, 0x010c4d27, 0x8d64038d, 0x54b96204, 0x4ff60321, + 0x30270458, 0x030c51a9, 0xd18dd31d, 0x0e52a966, 0x1654b903, 0x68d28d03, + 0x04304ff6, 0xd4193027, 0x4fe6d33d, 0x4ea7041c, 0xc5dfffff, 0xd489f0d4, + 0x5ed18950, 0x24074447, 0x219b3107, 0xd48d3333, 0x0b48035c, 0x27118723, + 0xd4c50c0c, 0xc54d07ac, 0xd1c5a4d2, 0xb04d03a8, 0x07202701, 0x23420530, + 0xb8440301, 0x274027f3, 0x50de8931, 0x9d0bd49d, 0xd09d0cd3, 0x1eecf40d, + 0xd099019c, 0x0ed29d41, 0x019e0ff6, 0x031c54b9, 0x450b30a7, 0x02c442b9, + 0xd29d4127, 0x3312873e, 0x40d49d24, 0x0b3fd39d, 0xd014f112, 0xc5ff0003, + 0x02e0c8d4, 0x40270441, 0xd49d3127, 0x09d39d08, 0x032ae8f0, 0xe1034e07, + 0xd3c1e1e3, 0x032e07ac, 0x03382343, 0xa8ded124, 0x36d4ad01, 0x3ad3ad02, + 0x3cd2ad02, 0x38d3ad02, 0x18e2b902, 0x19e1b903, 0x23420703, 0x2840e846, + 0x07310703, 0x6b362304, 0x2a30e80f, 0x7f3c8303, 0x3c334007, 0xab483310, + 0x3340ab43, 0xa343ab37, 0x0200002e, 0xffff3ea7, 0x451833f3, 0xc521ab34, + 0xe4d14832, 0x4df802b0, 0x030e1000, 0x4a522e27, 0xff4ea709, 0xe3b9f3ff, + 0x42350316, 0x02ec3ff6, 0x2741d499, 0xe001003d, 0xa3035142, 0x1080003e, + 0x3643e499, 0x44e49945, 0x03814fe6, 0xa3284c27, 0xd48d403c, 0x29e4b958, + 0xa3130703, 0x0000001f, 0xb9455654, 0xe6017ce4, 0xd103294f, 0xa702c0e2, + 0xfd4fff3e, 0xe87434c1, 0xa7033c40, 0xf3ffff4e, 0x994c41c5, 0x3ff641d3, + 0x1d270247, 0x3ea72008, 0x99f3ffff, 0x31c508d4, 0x27455678, 0x35cbcd4e, + 0x0b7434c5, 0x5032c52f, 0x032be4b9, 0xa74a42d0, 0xebffff2e, 0xa49c4e27, + 0x1824d5c0, 0x1c24d501, 0x2024d501, 0x843e2701, 0x23d5a08c, 0x23d50124, + 0x23d50128, 0x4e27012c, 0xd5040810, 0xd5013024, 0xd5013424, 0x27013824, + 0x0810203e, 0x013c23d5, 0x014023d5, 0x014423d5, 0x0327e4b9, 0x02d64ff6, + 0xf58ef0c3, 0xd0994427, 0x0ed49d41, 0xfe660fe6, 0x01a8d6d1, 0x01acd8d1, + 0xd1126289, 0x1502ac64, 0x1b63b9f2, 0x25080703, 0xbef405f3, 0x27ff9f28, + 0xff4ea731, 0x43c5f7ff, 0x0348074c, 0x2027184c, 0x05103c27, 0xc8440342, + 0x270027f3, 0x11bc27e0, 0xf2014127, 0x4e3b1e47, 0x428b3107, 0x4ea6360b, + 0x02c432b9, 0x32874207, 0x340b4433, 0xb5ff2ce0, 0xd837f102, 0x07ff0003, + 0xb064d130, 0x03910702, 0x87100731, 0x0b980ba0, 0xdcc38718, 0x2404004d, + 0x3f80a7f5, 0x129dff0a, 0x18909d58, 0x00004e27, 0x80c4f510, 0x9dff0a3f, + 0x40a71993, 0x0203380b, 0x0358349d, 0x99fbf0e1, 0x4f6b4007, 0xb60a849d, + 0xa7835146, 0xf7ffff4e, 0x3f8043e5, 0x8443e502, 0x0203023f, 0x17200cd4, + 0x27203c27, 0x1000002e, 0x4087302b, 0x3f8042f5, 0x0103ff0a, 0x40a7f398, + 0x84358445, 0x42be0807, 0x64b9fd67, 0xd2d1031c, 0xd39901ac, 0x99420b41, + 0xd49d1844, 0x3a32e048, 0x43649902, 0x02234fe6, 0x13446399, 0x83222742, + 0x83232b47, 0x144c3327, 0xa3172c33, 0x0482b04f, 0xd124ab80, 0xd101a8d4, + 0x1802b043, 0xa301003d, 0xa710002d, 0xf7ffff4e, 0x11346389, 0xc54225f1, + 0x31238041, 0x898443c5, 0xf3213662, 0x0b8843c5, 0x23f32532, 0x8c43c531, + 0x43c53027, 0xc52123a8, 0x4335ac42, 0x43c54345, 0xff3ea734, 0x34a1efff, + 0x00004fdc, 0x071b4000, 0x05412723, 0x9b302724, 0x00070ef3, 0x2305ff8b, + 0x4fd824a1, 0x40000000, 0xa8d4d1e9, 0x43439901, 0x01833fe6, 0x83444499, + 0x33438333, 0xab483334, 0xa74aa343, 0xefffff3e, 0x40273425, 0xd0993435, + 0x50de8941, 0x27fca75e, 0xfdbc5e10, 0xe1032e07, 0xd389e1e3, 0x034e07ac, + 0xd1480327, 0xad01a8de, 0xad023cd4, 0xad0236d2, 0xad023ad3, 0xb90238d3, + 0xb90318e2, 0x070319e1, 0xec462342, 0x27fcdc40, 0x07310740, 0x6b362304, + 0xda30ec0f, 0x5e3027fc, 0xd499fcd5, 0x634fd641, 0x81003e27, 0xfd1a5e10, + 0x49d22e27, 0xfcf35e07, 0x025c53d1, 0x5ef0d3c5, 0xd499fbe6, 0x46302741, + 0x8331c34b, 0xfbc85e31, 0xffff4ea7, 0x4143b9fe, 0xe6412701, 0x5e340737, + 0x4d27fb9c, 0x048d0164, 0x2c3d2760, 0x3c4d2701, 0x64038d01, 0x5e62048d, + 0x4027fb7a, 0x7d5e3407, 0xc33127fb, 0x5e318331, 0x3d27fb8e, 0x42e40180, + 0x3ea3fcb3, 0x5e108200, 0xe2d1fcb0, 0x2df802c0, 0xfcd50a00, 0x13074127, + 0x4fff3ea7, 0x08d49dfd, 0xa37434c1, 0x4000001f, 0xc840ec54, 0x7434c1fc, + 0x00004ef8, 0xb9fcbe01, 0x33032ee4, 0x14ab1f4c, 0x27fcb25e, 0xd48d204c, + 0xfc835e58, 0xf0c30d07, 0x095ef50e, 0x2854b9fa, 0xd410f103, 0x0bff0003, + 0xc442b945, 0x080c9902, 0x34333207, 0x430b4287, 0x03d441f1, 0x44f1ff00, + 0xff0003d0, 0xc5240389, 0x1489ccd4, 0x08119924, 0xe23fd29d, 0xb6fb8943, + 0x3dc1c014, 0xd49d4227, 0xfb7c5e40, 0xfa1ef353, 0x4c5e3701, 0x444499fd, + 0xfe7d4ff6, 0x845e4a27, 0x446399fe, 0xfddd3ff6, 0x82b02f27, 0xec5e8000, + 0x2864b9fd, 0x99240b03, 0xd29d1822, 0xfdbb5e49, 0xd49d4327, 0xfb405e40, + 0x1389f54e, 0x1612891c, 0x891a1e89, 0xa107181c, 0x1ea74127, 0x45fddfff, + 0x2b2e2b14, 0xd402c5c3, 0xd5d00cc5, 0xb901c412, 0x070324a3, 0x8413c5d0, + 0xe35ca4c1, 0x530407f3, 0x83140748, 0x1153300c, 0x04534183, 0xf4c51183, + 0xc5f06534, 0x4ff630f1, 0x300701cc, 0xc134f4c1, 0x040e30f0, 0xa18934a3, + 0xc5410764, 0x4d8338f1, 0x4fe68000, 0x2ea70127, 0x89fddfff, 0x2cd57ca3, + 0xa4c10108, 0x5342fc80, 0x0c23d502, 0x68a4c101, 0x01f824d5, 0xc134f0c1, + 0x408730f1, 0xf2611333, 0x42ab41ab, 0xdfff1ea7, 0x8814c5fd, 0x0320a3b9, + 0x10ff3cc0, 0x34334387, 0x44f1430b, 0xff0003d0, 0x89d8d4c5, 0xd3894cd4, + 0x07410350, 0x0f4c3323, 0x0fff2d83, 0x00004f83, 0x35330fff, 0x3c0342ab, + 0xa014c57f, 0xd57f3ce3, 0x2701d013, 0xdcd2c521, 0x8343a499, 0x33340743, + 0xab463334, 0xa3230734, 0xdcd2c523, 0x0320a4b9, 0xa3ff4c20, 0xdcd3c537, + 0x8338f4c1, 0xe680004d, 0xc1011a4f, 0x42f880a4, 0xd2c101a9, 0x002da3dc, + 0xdcd2c502, 0x5880a4c1, 0x002da344, 0xdcd2c504, 0xf880a4c1, 0x00f8404c, + 0x40002da3, 0xc580d4c1, 0x4de4dcd2, 0x00f10102, 0xd2c528a3, 0x22a4b9dc, + 0x83302703, 0xab4b3343, 0xdcd2c524, 0xdfff4ea7, 0x6143a5fd, 0xf63183f3, + 0xd100f33f, 0x2702a8a1, 0x1de0200c, 0x00f30201, 0x02021df0, 0x1de0010f, + 0x01590281, 0x12011de0, 0x402700e1, 0xd4c5f3c3, 0x07f58ee4, 0xf4422343, + 0x27012e43, 0x07332741, 0x801c031a, 0x05d64ff6, 0xdef72ea7, 0x031401fd, + 0x03240514, 0x27f3a824, 0x073a0743, 0x683c032f, 0x2c031f07, 0x0530610c, + 0x03300120, 0x03100524, 0x78140334, 0x8ca489f4, 0x02a8a0d1, 0x14074103, + 0x41231153, 0x0c182027, 0x072127f0, 0xe03f6b32, 0x1403010d, 0x020df403, + 0x4000f703, 0xf401210d, 0xe501220d, 0x020de002, 0xe402ef01, 0xff01040d, + 0x27848700, 0x85402770, 0x00fc5ef4, 0x22032007, 0x33833207, 0xf2652223, + 0xc1fe2b5e, 0xd4c1dcd2, 0x024de080, 0xe0ff1301, 0x0d11024d, 0x024de0ff, + 0xe0ff0780, 0x0180224d, 0x824de0ff, 0xd1fefb01, 0x8302a8a4, 0xf644e447, + 0xfeee5efe, 0x02a8a1d1, 0xe4d0d0c1, 0x1102011d, 0xd4d2c1ff, 0x209b1027, + 0x31533207, 0x420b4307, 0x80014ed4, 0x41072c3e, 0x48334383, 0xd4c5f3c3, + 0xe4f58ee4, 0xc1fefd11, 0xd3c1d4d4, 0x9b2007d0, 0x53249b34, 0x07102731, + 0xd0420b43, 0x3e80014e, 0xf0230ad6, 0x3e80012e, 0x4107021e, 0x48334383, + 0xf3c341a3, 0x8ee4d4c5, 0xdcd2c1f5, 0x27fe625e, 0xd237e041, 0x5e4027fe, + 0x3703fecd, 0xfff83d83, 0xc1fda85e, 0x1127d4d4, 0x01c43ff6, 0x209b2447, + 0x12133207, 0xb01e3153, 0x11210de0, 0x0df4ff1d, 0x023e1122, 0x11020de0, + 0x0de001f8, 0xff0b1104, 0x03210de0, 0x102701fb, 0x7027f185, 0xa4c18027, + 0x5334075c, 0x83e40738, 0x318330ec, 0x34c6e453, 0xe383e203, 0x41834953, + 0xe4a3340e, 0x8338f4c1, 0xf680004d, 0xc1fd4f4f, 0x4de080d4, 0x01ec0301, + 0xe0206c27, 0xd701020d, 0x020de001, 0xe0043b11, 0x3503210d, 0x210d0004, + 0x210de401, 0x27040711, 0x205c2721, 0x4227f275, 0x0de0e408, 0x01460281, + 0x01040de0, 0x0de00149, 0x01431104, 0x21040de0, 0x1027013d, 0x0de0f195, + 0x01373104, 0x01820de0, 0x1027011d, 0x03010de0, 0x0de0013d, 0x01370321, + 0xf3a53027, 0xf2b52027, 0xdfffcea7, 0xc1b027fd, 0x9c27d4d2, 0x14cbd520, + 0xd5140b01, 0x070118cb, 0xd5313b39, 0x07011ccb, 0x00412713, 0x2703210d, + 0xe0143b40, 0xec01c7e3, 0xe00133e4, 0xe80176e1, 0xe00569e2, 0x4802010d, + 0x010de005, 0xe0054212, 0x4001020d, 0x020de004, 0xe0043a11, 0x2101210d, + 0x210de005, 0xe0051b11, 0x6502810d, 0x83100704, 0xf914e017, 0x820de004, + 0xe004f301, 0xc103210d, 0x80a3c104, 0xdfff2ea7, 0x233533fd, 0x23d5203c, + 0xa4c10114, 0x23443384, 0x24d5104c, 0xa3c10118, 0x23343388, 0x23d5103c, + 0x14e0011c, 0x0de00409, 0x04030182, 0x41d0d4c1, 0x533407f2, 0x31312331, + 0x07f051f1, 0x0b239be2, 0x81412372, 0x9b419bf2, 0x33230b30, 0x33840be4, + 0x85043315, 0x2b852bf2, 0x13101326, 0x13762be0, 0xb0d1c500, 0xc5b4d8c5, + 0xd7c5b8de, 0xc0d0c5bc, 0x5ec4d2c5, 0x24470181, 0x1027209b, 0x12133207, + 0xec5e3153, 0xa52227fd, 0xfef25ef2, 0x10273127, 0xd95ef395, 0x953027fe, + 0x5e1227f3, 0x4107fed0, 0x48334383, 0xf3c344a3, 0x8ee4d4c5, 0x273127f5, + 0xa5f3b520, 0xfeca5ef2, 0x02010dc0, 0x810dc05e, 0x0de45902, 0xfe180182, + 0x840b8147, 0x7027833b, 0xf3853027, 0x3bfe115e, 0x3b840713, 0x85710783, + 0xfe045ef1, 0x023de5e0, 0x01bae5e8, 0x014ae6e0, 0x00afe7e0, 0x5c27ff1e, + 0x27412740, 0x5ef17510, 0x6c27fe40, 0xfe155e10, 0x21040de0, 0x0de0fcd5, + 0xfccf3104, 0x12010de4, 0x8407fdc6, 0x7107833b, 0x20273103, 0xf285733b, + 0xe0fdbd5e, 0xd701210d, 0x210de002, 0xe002d111, 0xc402810d, 0x83400702, + 0xc344e047, 0x820de002, 0x8102bd01, 0x2b3607f4, 0x81f48546, 0x134507f0, + 0x2b852b30, 0xc5401376, 0xd8c5b0d4, 0xbcd7c5b4, 0xc5c0d3c5, 0xd3c5c4d0, + 0x00835eb8, 0x01210de0, 0x0de0027f, 0x02791121, 0x02810de0, 0x4007024d, + 0x44e44783, 0xd4c10213, 0x23f331d4, 0x87439b41, 0xb0d2c525, 0x1eb4d4c5, + 0xe0320755, 0xf301210d, 0x210de001, 0xe001ed11, 0xd402810d, 0x41fb3101, + 0xa12307fc, 0x3b2173f4, 0x51212314, 0x23f081f4, 0x9bc29b31, 0x2b312b3b, + 0x2b249b06, 0x134607c6, 0x0bf08540, 0x0bc70b38, 0xc5101302, 0xd3c5b0d1, + 0xbcdcc5b4, 0xc5c0d4c5, 0xd4c5c4d0, 0xc1f391b8, 0xf401b4d2, 0x3bc4d0c1, + 0xbcd1c123, 0xf421240b, 0xdec1033b, 0xb8dcc1b0, 0x3bc0dbc1, 0x11040b13, + 0x0bf491f3, 0x3be43b13, 0xc5b43bc4, 0xdcc5b0de, 0xc0dbc5b8, 0xc5b4d2c5, + 0xd0c5bcd1, 0xfa265ec4, 0xf291f4a1, 0x240be907, 0xa3c1f471, 0x07e47b80, + 0x07423b41, 0x133e9b24, 0xd5432b40, 0xb10114c4, 0x84a3c1f4, 0x2013247b, + 0x321b3433, 0x0118c3d5, 0x3388a4c1, 0xd5242b44, 0xe0011cc2, 0xfd02810d, + 0x41fb3100, 0x51f0a1fc, 0x07103bf4, 0x9b362b37, 0x33812bbe, 0xc54433c4, + 0xd8c5b0db, 0xb8dcc5b4, 0xc5c0d4c5, 0xd3c5c4d3, 0xff535ebc, 0xf391f2a1, + 0x0b80a4c1, 0x71f3a532, 0x7b2107f3, 0x9bf3a193, 0x0b233b49, 0x14c4d542, + 0x84a3c101, 0x3433f4b1, 0x320b247b, 0x0118c3d5, 0x3388a4c1, 0xd5240b44, + 0xe0011cc2, 0x8602810d, 0x41fb3100, 0xd0d4c1fc, 0xf071fe51, 0x205b2407, + 0x39071c07, 0x0e074153, 0x30134123, 0x14332123, 0xc49b0433, 0x4e9b2b9b, + 0x10133b9b, 0xd3c50013, 0xb4d2c5b0, 0xc5b8d1c5, 0xd0c5bcdc, 0xc4d4c5c0, + 0xa1fed45e, 0xc0d6c5f2, 0xd1c5123b, 0xc4dbc5b0, 0xc5b4dbc5, 0xdbc5b8d6, + 0xfebb5ebc, 0x27205c27, 0x020de041, 0x27fdb611, 0xfdb15e40, 0xdef72ea7, + 0x031401fd, 0x05401314, 0x98240324, 0xfa295ef3, 0x1e405c27, 0x41fb31db, + 0x53b153fc, 0x45fb35c1, 0xff735efc, 0xfc41fb31, 0xc153b153, 0x71538153, + 0xfc45fb35, 0x31fef85e, 0x53fc41fb, 0x53c153b1, 0x35715381, 0x5efc45fb, + 0x3173fe21, 0xe0fe125e, 0xeb01820d, 0xd4d3c1fd, 0x2307f431, 0xf1413123, + 0x2153349b, 0x2123f451, 0x249b129b, 0xc5b0d5c5, 0xd1c5b4d3, 0xc0d6c5bc, + 0xc5c4d2c5, 0x265eb8d6, 0xd4d4c1fe, 0xf241f331, 0x41531407, 0x41231123, + 0x429b139b, 0x26473547, 0xc5b0d3c5, 0xd2c5b4d1, 0xbcd4c5b8, 0xc1fe005e, + 0x4153d4d4, 0x47fd945e, 0x5e664755, 0x5587fd47, 0xc1fd425e, 0x453380a4, + 0xd5404c23, 0xc00114c4, 0x7e01210d, 0x11210dc0, 0x810dc079, 0x10074002, + 0xf75e1783, 0xd0d4c1fb, 0x4123f331, 0x4c23439b, 0x0b353380, 0xc5301348, + 0xd4c5b0d3, 0xfdaf5eb4, 0xa780a4c1, 0xfddfff2e, 0x4c234533, 0x1424d540, + 0x84a3c101, 0x3c233433, 0x1823d540, 0xd0d4c101, 0xf241f131, 0x41533407, + 0x41233123, 0x429b319b, 0x23403c23, 0x1533404c, 0x380b2433, 0x1013470b, + 0xd1c52013, 0xb4d3c5b0, 0xc5b8d2c5, 0x5e5ebcd4, 0xd0d4c1fd, 0x4153f331, + 0x439b4123, 0x35333173, 0x0b804c23, 0xc5301348, 0xd4c5b0d3, 0xfd3f5eb4, + 0xa780a3c1, 0xfddfff2e, 0x3c233533, 0x1423d540, 0x84a4c101, 0x4c234433, + 0x1824d520, 0x88a3c101, 0x3c233433, 0x1c23d520, 0xfb405e01, 0xa780a4c1, + 0xfddfff3e, 0x4c234533, 0x1434d580, 0xfb2c5e01, 0x3380a4c1, 0x804c2344, + 0x0114c4d5, 0xc1ff125e, 0x453380a4, 0xd5204c23, 0xc10114c4, 0x343384a3, + 0xd5203c23, 0x5e0118c3, 0xeff6fef7, 0x0de0fbd0, 0x011f0201, 0x12010de0, + 0x0de00119, 0x01030102, 0x11020de0, 0x0de000fd, 0x00e20121, 0x11210de0, + 0x0de000dc, 0x00b40281, 0x47834007, 0x009844e0, 0x01820de0, 0x0dc00092, + 0xc1600321, 0x2ea780a3, 0x33fddfff, 0x803c1335, 0x011423d5, 0x3384a4c1, + 0x404c1344, 0x011824d5, 0x3388a3c1, 0x403c1334, 0x011c23d5, 0xf441f131, + 0x2027f351, 0x15334433, 0xd4c53433, 0xc0d3c5b8, 0xc5c4d2c5, 0xd2c5b0d1, + 0xbcd2c5b4, 0x02a8a4d1, 0x01214d00, 0x11214de4, 0x1173fc3d, 0x5eb0d1c5, + 0xa3c1fc35, 0xff2ea780, 0x3533fddf, 0x01003d13, 0x011423d5, 0x3384a4c1, + 0x804c1344, 0x011824d5, 0x3388a3c1, 0x803c1334, 0x011c23d5, 0xa4c19f1e, + 0xff3ea780, 0x4533fddf, 0x02004d13, 0x011434d5, 0xa4c18b1e, 0xff2ea780, + 0x4533fddf, 0x01004d13, 0x011424d5, 0x3384a3c1, 0x003d1334, 0x1823d501, + 0xff6a5e01, 0xa780a4c1, 0xfddfff3e, 0x4d134433, 0x34d50200, 0x555e0114, + 0x80a4c1ff, 0x4d134533, 0xc4d50100, 0x455e0114, 0x80a4c1ff, 0x4c134533, + 0x14c4d580, 0x84a3c101, 0x3c133433, 0x18c3d580, 0xff2a5e01, 0x000000d9, + 0x07d1f54e, 0xf06301a8, 0x6ea79007, 0xa7ffffff, 0xfeffffae, 0xffff8ea7, + 0xff5ea7f3, 0x64d1f7ff, 0x4fe60e24, 0x0ea70179, 0x11fd7fff, 0x104ca304, + 0x40270415, 0x01ac9cd1, 0x4227741d, 0xa499f405, 0x48a3d109, 0x07438301, + 0x87d433d4, 0x07d42b44, 0xb4be23bd, 0x3ff6ffff, 0xd3f100c6, 0xff000054, + 0x6dd14027, 0xc49d069c, 0x42c10104, 0x02d307d3, 0xeed10713, 0x0701491d, + 0x07418341, 0x87353334, 0x07342b44, 0x53453343, 0x2bff73fe, 0x05e30143, + 0x544e23c1, 0x2707fff9, 0x44034001, 0x24032005, 0x64d1f3a8, 0x411b0698, + 0x010b40e8, 0xc49d4127, 0x04c49904, 0x00934ff6, 0xefd6fe01, 0x07090782, + 0xee8e7e17, 0x09071707, 0x07f49f7e, 0xb62abe09, 0x0b9199ff, 0xe5be0907, + 0x84c1ffb4, 0x2444dc34, 0x54c54827, 0xac90d140, 0xc5442701, 0x1c273884, + 0x8f86be14, 0xc53027ff, 0x53c53883, 0x3484c140, 0xd1de44d8, 0xbe01ac90, + 0xa7ff9054, 0xfddfff0e, 0x4df80431, 0xff080100, 0xd89e0127, 0xa4d1fd8c, + 0x41c00148, 0x48a4d132, 0x6142c001, 0x0148a4d1, 0xff7f43e4, 0x1e99a4b9, + 0x71104cd8, 0xa4d54027, 0xc4990148, 0x714fe604, 0x070c07ff, 0x904ebe17, + 0x5ef005ff, 0xd4f1ff64, 0xff000054, 0x43e2c301, 0x64d100dd, 0x34ca069c, + 0x5f0ea7d4, 0x0fbefff9, 0xd2f1ff8e, 0xff000054, 0x64d1c301, 0x34ca069c, + 0xb923c2bc, 0x65be0527, 0xb11efd6c, 0xf49b4027, 0x0ef49b0b, 0x55be0927, + 0x165efd6c, 0xff3ea7ff, 0x3411fd7f, 0x15104ce3, 0xfe885e34, 0x3dbe0827, + 0xfe5efd6c, 0x2b0d07fe, 0xf0110301, 0xcd0545f0, 0xb604b499, 0x1463d145, + 0x3ca4d10e, 0x2a34ca01, 0xffaba6be, 0x64a9b369, 0x34ce0102, 0x27b4195d, + 0x1d410330, 0x0ef39bb4, 0x4fff4ea7, 0x5f0ea7fd, 0x43c5fff9, 0x29c6be38, + 0xd54127fe, 0x5e0148a4, 0x4107feb1, 0x34074183, 0x44873533, 0x4307342b, + 0xfe534533, 0x432bfde8, 0xc105e301, 0xf9544e23, 0x012707ff, 0x0544034e, + 0xa824032e, 0x9864d1f3, 0xec411b06, 0x1efe7740, 0x1ebd2581, 0x44a3a9a1, + 0x42a4a901, 0x6a43ee01, 0xd54227fe, 0x5e0148a4, 0x0000fe61, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x0499fd4e, 0x6c41c012, 0x4e070e39, 0xd42c4c23, + 0x34070f44, 0x3e233333, 0x01ebff7c, 0xfc41dc34, 0x43270219, 0x33333207, + 0x120034f5, 0x31f1ff02, 0xff021000, 0x1c33d247, 0x1d1c5318, 0x3d871616, + 0x00274227, 0x120034f5, 0xfd8eff02, 0x25334e87, 0x180423f1, 0x0299ff02, + 0x0040f110, 0x23ff0216, 0x3b030b11, 0x273d8712, 0xf5010b42, 0x02120034, + 0x27fd8eff, 0x4efd8e00, 0x834107fe, 0x11039941, 0x400b4487, 0x4e61312b, + 0x8e803c1c, 0x810191fe, 0x87131902, 0x05420b43, 0x1d31034e, 0x11049913, + 0x049d4103, 0x4efe8e11, 0xa10b21fb, 0xced00704, 0xd3995a4b, 0x5b4b0710, + 0x83dc5143, 0x87d31941, 0x0bde3944, 0x071c074d, 0x8b35332b, 0x0340612c, + 0xf5122b11, 0x0218003e, 0xf5200bff, 0x02180431, 0x234027ff, 0xfde8003e, + 0x3e033435, 0xf5fde800, 0x02181032, 0x1431f5ff, 0x23ff0218, 0xfde7f03e, + 0xb10b3435, 0xdb25d4a1, 0x27a8b4ce, 0x12d49d42, 0xfa4efb8e, 0x4fff4ea7, + 0x074b01fd, 0xa3b433d0, 0x01a407bb, 0x764627dc, 0x00f8bec7, 0x27d40100, + 0x05449630, 0x0ef39bdb, 0x0138acc5, 0xe4b4ced4, 0xf4e8fa8e, 0xfb4ede1e, + 0x03990421, 0x5b412310, 0x110d9943, 0xcf6bc407, 0x3c2b3d07, 0x3c1cb007, + 0xa7fb8e80, 0xffffdf0e, 0xcdcea93e, 0x034d0713, 0x6bd40741, 0x070b07df, + 0xfefd7e1d, 0x27efdcce, 0x0ef49b40, 0xffdf3ea7, 0x8e3405ff, 0x07f94efb, + 0xdf0ea7d0, 0xb207ffff, 0xd9a1c107, 0x7e10da99, 0xd099ff72, 0x072b0710, + 0x0af9be1c, 0x26b00700, 0x5bc9070b, 0x071c07ca, 0x7e12230d, 0x4027febb, + 0xa70ef49b, 0xffffdf3e, 0xd2993405, 0x83d3a110, 0x3b4127c1, 0x0bcc8742, + 0x07cd0b34, 0xa5cb650d, 0xfec57ed3, 0xf98e0127, 0xf49b4027, 0xdf4ea70e, + 0x0027ffff, 0xf98e4b05, 0x4fff1ea7, 0x9b1401fd, 0x4103122f, 0x13c14433, + 0x2e24ab38, 0x0b002732, 0xc5f3abfe, 0x14c13812, 0xf842ce38, 0x0127f3eb, + 0xfe4efe0b, 0x0576d33e, 0x0e200c27, 0x6e2e9efe, 0x27fe8efc, 0x00099e21, + 0x9e202700, 0x4e000003, 0x3601c2fe, 0x273310c8, 0x203c2741, 0x44471147, + 0xf02101c2, 0x302707f3, 0xfe8e26e6, 0x27ee10cc, 0x2b012a30, 0x5334ab01, + 0xd6115341, 0x0721b642, 0x66fe8e03, 0x1e302740, 0x274127e9, 0x00e31e30, + 0xd007fb4e, 0x0ea7b107, 0x07fff9b3, 0xbec2071d, 0x36fb83d5, 0x071d0706, + 0xa73c072b, 0xfff9b30e, 0xfb8824be, 0xf49b4027, 0x4efb8e0e, 0x07d007fb, + 0xb30ea7b1, 0x1d07fff9, 0xefbec207, 0x0636fbab, 0x2b071d07, 0x0ea73c07, + 0xbefff9b3, 0x27fbe9d6, 0x0ef49b40, 0x0000fb8e, 0xf493fd4e, 0xc1019bc8, + 0x10078843, 0x38031f6b, 0xd30bd187, 0x38230853, 0x01102f9b, 0x2b3e51d4, + 0x9dd40542, 0x349908e1, 0xff2ea712, 0xe49dfd4f, 0x4d344909, 0x083499e4, + 0x23113169, 0xe46d410b, 0x07f6e305, 0xf49b4027, 0x8b00070e, 0x274027ff, + 0x9de40530, 0x2f9b08e3, 0x0bd40110, 0x8ed40542, 0x734007fd, 0xe8410342, + 0xa7e31ef4, 0xfeffff3e, 0x83093499, 0x33340743, 0x2b448734, 0x4f32f934, + 0xf9ff0000, 0x00004d34, 0x1d42c2ff, 0x9b3ef493, 0x8c42c101, 0xffff3ea7, + 0xfc31c1ff, 0x02a424d1, 0x140e0027, 0xfe0b0127, 0xfe0b0027, 0x977af193, + 0x0b4ea701, 0x4301fefd, 0x10111201, 0x3108322b, 0x00a7fe0b, 0xf74efb1e, + 0xd0070429, 0x00f341e2, 0x24032107, 0x010542ea, 0x817cd4c1, 0x78d3c1dc, + 0x0780dbc1, 0x2b912b92, 0x01399bc4, 0xc2c30bb4, 0x0e270ec4, 0x7e01f40d, + 0xb401ff08, 0xa7f44cca, 0xfeffff3e, 0x1e3c34a9, 0x34ad490b, 0x21271e3c, + 0xa78cd1c1, 0xfdcfff4e, 0x997042c5, 0x3fe64313, 0x7c2700ae, 0x90d4c130, + 0x00994fe6, 0xa194dbc1, 0xb1b40bd4, 0xff3ea7dc, 0xc103feff, 0x1e3434d1, + 0x2b1fcc83, 0x1f4c834c, 0x071794ca, 0x100e27a3, 0xad7e01f4, 0x34a4d1fe, + 0x834c2b1e, 0x49c21f4c, 0x819fa6ed, 0xffaea7d1, 0xcea7fde4, 0x27fde4bf, + 0xeea7448c, 0x07fde4af, 0x94d4c109, 0xa405410b, 0x2027a715, 0xd4b1a235, + 0x3487cb05, 0x340b4633, 0xeaf03e23, 0x35c815fe, 0x15e305c2, 0xb1e235e8, + 0x78d3c1d4, 0xd2a1d181, 0x230b4103, 0x4c83b30b, 0xb5310b1f, 0x85d2a5d4, + 0xf01307d3, 0xd9c5bcf0, 0xd1f78e30, 0xa1025c1b, 0x5eb40bd4, 0x1499ff67, + 0x4f4ff644, 0x287c27ff, 0x07ff4c5e, 0xfefa5e24, 0x00000040, 0x04c1f54e, + 0x7c03c178, 0xbea74333, 0x0bfeffff, 0x3cbca934, 0x8503951e, 0x27037103, + 0x0304a510, 0x630429c8, 0xc503b5f2, 0x01c57401, 0x3cbcad30, 0x07f4351e, + 0x7ef24550, 0x3ea7feaa, 0xc1fdefff, 0x4c33c034, 0x1d4c5318, 0x44cc4413, + 0x27230715, 0xc1f3e833, 0x4c33c024, 0x1d4c5318, 0x44c84413, 0xff3ea7ef, + 0x34c1fdef, 0x6a4dd8d4, 0x23070ffc, 0xf4e84327, 0xdcd423c1, 0xf5fc6a3d, + 0xb98c54c1, 0x86031e43, 0xff4ea736, 0x43a9feff, 0x52c11e3e, 0xad320b30, + 0x271e3e43, 0x3054c540, 0x4ea73127, 0xc5fdcfff, 0x05077043, 0x377e1427, + 0x7454c1fe, 0x9612f393, 0x03230701, 0xdf2d0341, 0x7454c501, 0xe37f2ce3, + 0x34197f3c, 0xc2803c03, 0xf393f932, 0x270195f4, 0x784c2720, 0x34033205, + 0xfd41f4c8, 0xfffddfe0, 0x0519ffff, 0xec03e507, 0x8532a734, 0x030307fe, + 0x07330301, 0x83430720, 0x23b20723, 0x83438343, 0xc1b73333, 0x23338851, + 0xd307fb25, 0xf0056407, 0xd733b22b, 0x67333333, 0x10994333, 0x80bf0309, + 0x2b000648, 0x25642bd3, 0x80df03fb, 0x03000648, 0x0648806f, 0x160fe600, + 0x0d1e4905, 0x081499de, 0xda091369, 0xd42d430b, 0x07081199, 0x9df1154a, + 0x5c410bd1, 0x0b8c58c1, 0xabb4074c, 0x08db8dbf, 0x82893a07, 0x07910716, + 0x33363341, 0x0b473395, 0x03232b94, 0x064a609f, 0x30536100, 0xf053412c, + 0x0201fe78, 0x8189d729, 0x33470718, 0x03e20746, 0x53142be7, 0x411c30e3, + 0xfe5ef253, 0x84992101, 0x23230738, 0x3b505144, 0x2b022b24, 0xc11703c3, + 0x13538852, 0x830f0c83, 0x33e123c7, 0xc733100c, 0x1123e783, 0xeb330cab, + 0x23991783, 0x0824990a, 0x1c330eab, 0x0e01ab14, 0x400da343, 0x839e0104, + 0x0b4b47b7, 0x74d4c54e, 0x5c295361, 0x3c833a0b, 0x874c070f, 0x232a0713, + 0x8310ab41, 0xee302721, 0x0904b84a, 0x0723ab54, 0x83412337, 0xee2f6b31, + 0x07049b34, 0xa343834e, 0x0000004f, 0x2741ab80, 0x50d4c530, 0xedf6d315, + 0xcac23a07, 0xb884c149, 0x04a14fe6, 0x41034a07, 0x052bc4e2, 0x52713383, + 0x05827fe6, 0x4c83420b, 0x8713071f, 0x33153324, 0x0b338746, 0x03132b24, + 0x0648081f, 0xc82e2300, 0x4727feea, 0x24032e01, 0x14031e05, 0xafe6f4a8, + 0x58c1044e, 0x7054998c, 0x940147a6, 0xd4094736, 0x412746b6, 0x9904949d, + 0x5499de83, 0x9d342b0d, 0x58c10693, 0x644d278c, 0x54d4c507, 0x4b069499, + 0xba4fe64f, 0xf6940103, 0x0903b44f, 0x863027d4, 0x6b312744, 0xc343073f, + 0x0ad49d41, 0x402734f6, 0x110fd49d, 0x09b656fb, 0x035329d4, 0xc1345241, + 0x41037454, 0xb97454c5, 0xe6031e84, 0xc103884f, 0x12098851, 0x02ee1029, + 0x420704d4, 0x410b4383, 0x4b0d4399, 0xc8230b3f, 0x02daf120, 0x074207ee, + 0x53438332, 0x08149d32, 0x120d134d, 0xffff1ea7, 0xf81421eb, 0xc1045541, + 0x33fc7453, 0xd4990088, 0x814ff60b, 0x7d3fc600, 0xefffbea7, 0xc0b4c1fd, + 0x53184c33, 0x44131d4c, 0x271844cc, 0xa7f3e833, 0xfdefffee, 0x33c0e4c1, + 0x4c53184c, 0xc844131d, 0x0ea7ea44, 0xc1fdefff, 0x4dd8d404, 0x2712fc6a, + 0xa7f4e843, 0xfdefff1e, 0xdcd413c1, 0xf0fc6a3d, 0xb98c54c1, 0x86031e43, + 0xff2ea736, 0x24a9feff, 0x53c11e3e, 0xad430b30, 0x271e3e24, 0x3054c540, + 0x3ea74127, 0xc5fdcfff, 0x51c17034, 0x03050774, 0xfb3c7e14, 0xe65064c1, + 0x9900884f, 0xbea70b63, 0x07ebffff, 0x33253323, 0x50b4c137, 0x2f03230b, + 0x00064a60, 0xab5023c1, 0x0b44874f, 0x5024c543, 0xa754b3c1, 0xf3ffffee, + 0xc15863c5, 0x112730e4, 0x03ff4d83, 0xc55c64c5, 0xe2c130e1, 0x07420760, + 0x53455332, 0x703c8338, 0x0b7c4c83, 0x7f2c8343, 0x64c5420b, 0x64e2c160, + 0x32074207, 0x38534553, 0x83703c83, 0x430b7c4c, 0x0b7f2c83, 0x6464c542, + 0xc560e1c5, 0xf4936861, 0x990195bc, 0x63c50d43, 0x50d4c16c, 0x021d4fe6, + 0xa754d4c1, 0xebffff0e, 0xc14404c5, 0x044550d4, 0xe65064c1, 0xc101164f, + 0x43c18c54, 0xe43fe6b8, 0x0b679900, 0x07586cc1, 0x33378727, 0x07232b25, + 0xc1450b42, 0x6ec1344b, 0xc1cb0b5c, 0x63c1384b, 0xc1eb0b6c, 0x4ac1484b, + 0x6060c144, 0xc13c48c1, 0x49c16461, 0x09f27540, 0x6862c16d, 0x2a0b3b0b, + 0x190b080b, 0x294843c5, 0xc53d075a, 0x4ec5344c, 0x3c40c538, 0xc54041c5, + 0x370b4442, 0x3d073a0a, 0x01dd71e0, 0xf66c5499, 0x0701d64f, 0x0743834d, + 0x87d533d4, 0x03d42b44, 0x064808df, 0x83430700, 0x33340743, 0x2b448735, + 0x083f0334, 0x07000648, 0x0127274d, 0x0534033e, 0xa844034e, 0x71f181f2, + 0x0bd241f4, 0x01630941, 0x0b21034b, 0x55435123, 0x31d131fb, 0x65d2454b, + 0x214811f3, 0x014a4149, 0x21de11dc, 0x0bd351d0, 0x61f4511b, 0x0bc40bfb, + 0x0b090be8, 0x553b0b2a, 0x15dc05d3, 0x35d025de, 0x99d245d1, 0x41200b64, + 0x266c5499, 0xffdea746, 0xd4a9feff, 0x41031e3a, 0x1e3ad4ad, 0xeea74127, + 0xc5fdcfff, 0x302770e4, 0x215063c5, 0x5004c1f0, 0x00864fe6, 0x998854c1, + 0x43990b02, 0x7932ce0a, 0xefff1ea7, 0xcc14c1fd, 0x4c335291, 0x1d4c5318, + 0xc49451c1, 0x43271644, 0x4ea7f4e8, 0xc1fdefff, 0x3c33cc43, 0x1d3c5318, + 0xc1ec34c0, 0x34998c53, 0xe64ff643, 0x44349900, 0x00df4ff6, 0x0b284c27, + 0xcf2ea712, 0x2105fde4, 0x40272415, 0x53992435, 0xc154910a, 0x31037852, + 0x3f6b420b, 0x539d5495, 0x1535c40a, 0xffffbea7, 0x42b4a9fe, 0x0334271e, + 0x42b4ad41, 0x0a539d1e, 0xfe01fd41, 0x3e07de2e, 0xa7faf45e, 0xfdefff3e, + 0xdccc34c1, 0xa7fae04c, 0xfeffff0e, 0xa90a5399, 0x311e4204, 0xad430bfb, + 0x991e4204, 0x52416f51, 0x31275451, 0x5061313b, 0x31235171, 0x41032b0b, + 0x0b0b4b0b, 0xb10b230b, 0x23ebfb35, 0xbc8341e3, 0x75f2431f, 0x5552455b, + 0x8e506554, 0x50d0c5f5, 0xa7fcbb5e, 0xebffff1e, 0xed5e1445, 0x9d4027fd, + 0x605e0ad4, 0x8851c1fc, 0x990bd399, 0x43ee0a14, 0xeea7fc72, 0xa9feffff, + 0x031e3ee4, 0x3ee4ad41, 0x8851c11e, 0x0ea74127, 0xc5fdcfff, 0x535e7004, + 0x304c27fc, 0x71ff225e, 0x834d0b54, 0xd4871f4c, 0xd40b4633, 0xeac8de23, + 0xfe2b5efe, 0xfb652fe6, 0x00001fa3, 0x5c5e2000, 0x5e3127fb, 0x7766fb47, + 0x34875471, 0x340b4633, 0x151833f9, 0x539dff01, 0xf6d3096d, 0x29fb9d3f, + 0x9771fcd7, 0x1f1ea7fb, 0x1301fef5, 0xee9854c1, 0xc100a034, 0x43079c53, + 0x33474333, 0x4cf9432b, 0xff010ae8, 0x0aec42e9, 0x4ef9ff01, 0xff010aeb, + 0x0aea41f9, 0x40f9ff01, 0xff010ae9, 0xa79853c1, 0xfef51f4e, 0x53c53103, + 0xc1431598, 0x41039c54, 0x54c54183, 0x8c58c19c, 0xbea74127, 0xc1fdcfff, + 0xb4c5b883, 0x26526d68, 0x5df29337, 0x219d0191, 0xa5209d06, 0x9da62e9d, + 0x58c1052c, 0x0d5c9d8c, 0x3ea75469, 0xc5ebffff, 0x125e7034, 0x5e4a07fb, + 0x4127fad4, 0xffff2ea7, 0x272435eb, 0xf6a27e0b, 0xffff3ea7, 0x354027eb, + 0xfc332134, 0x1efb9231, 0xff3ea7e2, 0x32c1fdcf, 0xffbea74c, 0x4207fdcf, + 0x302748a3, 0x9b4cb4c5, 0x00070ef3, 0xb2c5ff8b, 0x6cb3c54c, 0xf51feea7, + 0xc1e201fe, 0x24ce9854, 0xff315ed1, 0x149d4027, 0xfb4a5e09, 0x43872307, + 0x242b2533, 0x48082f03, 0x30270006, 0x23054727, 0xf4c82403, 0xfa94aff6, + 0x4efedd5e, 0x07d007fb, 0xb30ea7b1, 0x1d07fff9, 0x77bec207, 0x0636fc5d, + 0x2b071d07, 0x0ea73c07, 0xbefff9b3, 0x27fc6266, 0x0ef49b40, 0x0000fb8e, + 0x00006407, 0x00006408, 0xf393f54e, 0x230191c4, 0xc53219f5, 0xf1c548f0, + 0x8c05c14c, 0x01462fe6, 0xc148f0c1, 0x04494cf3, 0x013a43e2, 0xf793a307, + 0x2701906a, 0x07302760, 0x334307d3, 0x0b4733d5, 0x60df03d4, 0x0700064a, + 0x03cd079d, 0xcc030c9c, 0x99402754, 0xd49d66d3, 0xb33ff69c, 0xbe0c0703, + 0xc1fff2d0, 0xd3c15cd4, 0xc5402b60, 0x03ea58d4, 0x402703b9, 0xffff2ea7, + 0x4624adff, 0xbe090718, 0xc1005611, 0xd3c144d4, 0x0bd26140, 0xa942ea43, + 0x9c54b906, 0xaa43f802, 0x5541d800, 0xf2c14a07, 0x87418348, 0x99420b44, + 0x52a9a043, 0x4099027e, 0x332287a1, 0x8451d135, 0xf54a0702, 0x02180030, + 0x0b429bff, 0x0432f541, 0x27ff0218, 0x003e2310, 0x3135fde8, 0xe8003e03, + 0x1034f5fd, 0xf5ff0218, 0x02181432, 0xf03e23ff, 0x3135fde7, 0x029c54b9, + 0x074f42d8, 0x48f3c14a, 0x44874183, 0x4399430b, 0x7e52a9a8, 0xa9419902, + 0x35332247, 0x028854d1, 0x180031f5, 0xa29bff02, 0x32f5a40b, 0xff021804, + 0x3e234027, 0x35fde800, 0x003e0334, 0x3af5fde8, 0xff021810, 0x181432f5, + 0x3e23ff02, 0x35fde7f0, 0x1d412734, 0x89f39374, 0x32190190, 0x26d26103, + 0x48f0c114, 0x494cfac1, 0x03a60b04, 0x3607a07c, 0xfed5a4ea, 0xf0934027, + 0x9d018f28, 0x049da904, 0x07049d04, 0x9d08049d, 0x049d0904, 0xa7049da4, + 0xa6a8049d, 0x09f19327, 0x3207018f, 0x20271a03, 0x1c031419, 0xc14526a0, + 0x042948f0, 0xf378240b, 0xc148f0c1, 0x457e4cf1, 0x25f093f6, 0x04190190, + 0x02214fe6, 0x2748f2c1, 0x93234940, 0x018ed3f0, 0x9d4cf2c1, 0x32e20a04, + 0xf393020b, 0x27018f6e, 0xc5af0740, 0x720740f3, 0x0344f4c5, 0xb40740ac, + 0x4733b533, 0xbf03b40b, 0x00064a60, 0x070bb499, 0xa9f40d6b, 0xc1030452, + 0x6c035cbd, 0x07402754, 0x2df41506, 0x68b9c1f2, 0xfff127be, 0x9958bec1, + 0xd02b64b4, 0x2e073d07, 0x345b0d07, 0x0e2b245b, 0xee68b1c1, 0x83027123, + 0x0b438731, 0x8bcd074b, 0x6c48c1c1, 0x21830c2b, 0x4b0b4287, 0x356c43c1, + 0x8bfc55f0, 0xc1310b1e, 0xb4c150b2, 0x45f32540, 0x9b42eaf8, 0x38b3c101, + 0xf395f2a5, 0x2748b499, 0x3cf49d30, 0xf3b54027, 0xc53df49d, 0xb20130f3, + 0x3f072333, 0x34033401, 0x008024f5, 0xa3ceff14, 0x033d07f4, 0x4307403c, + 0x49c24dcb, 0x8b43070b, 0x0744c649, 0x99dc1ed3, 0x3d0764b4, 0x3183345b, + 0xb2993387, 0xc13b0b66, 0x22e06c38, 0x06070343, 0xfff1c5be, 0xe01eb499, + 0x9901e442, 0x4fd69cb4, 0x6454d16a, 0x0b378702, 0x0b9d8b34, 0x27380589, + 0x0ef49b40, 0x02a452d1, 0x4c834207, 0xf943330f, 0x00008343, 0x230407ff, + 0xffff7e0e, 0x03d83ff6, 0xffff3ea7, 0x5834d1ff, 0x2b710315, 0x07218324, + 0x33224747, 0x6424ed44, 0x27ff0015, 0xff4ea731, 0x43bdffff, 0x712306a8, + 0x270f4399, 0x0ef49b40, 0x33874127, 0xb04034f5, 0x54b9ff02, 0x43d8029c, + 0x3d41d873, 0x41834707, 0x8748f0c1, 0x99400b44, 0x4527a041, 0x23332107, + 0x120024f5, 0x23f1ff02, 0xff021000, 0xfc0a3dd8, 0x33210714, 0xe8432723, + 0x0023f1f4, 0xdcff0210, 0xf2fc0a3d, 0x029c54b9, 0xc13142d8, 0x718348f2, + 0x420b4787, 0x27a84299, 0xf5233345, 0x02120024, 0x0023f1ff, 0xd8ff0210, + 0x10fc0a3d, 0xf4e84327, 0x100023f1, 0x3ddcff02, 0xc1f2fc0a, 0xf39344f0, + 0x03018e28, 0xc5341901, 0x40d244f0, 0x40f2c11f, 0xf0c14027, 0xc1241d48, + 0xf4c14cf7, 0xa02c0344, 0x740b0349, 0xea40f2c5, 0x93fe0d73, 0x018cbbf0, + 0x99a50499, 0xf293a603, 0x27018cb0, 0x03432b00, 0xa5249df5, 0xb0c1f58e, + 0x95f4a538, 0x48b399f0, 0xf39d242b, 0x3cb4c13c, 0xb530f2c5, 0x49b099f4, + 0x5e3df09d, 0x0c07fe62, 0xffefc6be, 0x19be0c07, 0xd4c1ffef, 0x60d3c15c, + 0xd4c5402b, 0x4b30e258, 0xf2497efc, 0x01a80fe6, 0x3ea72227, 0xa9ffffff, + 0xf4184634, 0x5b13884d, 0xa451d103, 0xbe0c0702, 0xf6fff075, 0xa7fc250f, + 0xfeffff0e, 0x83090499, 0x33248743, 0xf9422b44, 0x00005043, 0x7432e4ff, + 0x64d29902, 0xc15cd4c1, 0x425b7cd1, 0x31274183, 0x4487323b, 0x027452d1, + 0x4d0b310b, 0xc56c42c5, 0x1ff67cd3, 0x412702a3, 0x5e9cd49d, 0xc027fbde, + 0x9b5e8027, 0x0cb399fd, 0x33332527, 0x120032f5, 0xb499ff02, 0xf143330c, + 0x02100043, 0x0a3dd8ff, 0x0d2718fc, 0x497e640c, 0x0cb499f1, 0x43f14333, + 0xff021000, 0xfc0a3ddc, 0x40b1c1ea, 0x9950b3c1, 0xbc9948b2, 0x02410749, + 0xe2130713, 0x2701da43, 0x07402760, 0x50b4c5e2, 0xe0c8ef4b, 0x4cb0c130, + 0x400b4e87, 0xd15443c1, 0x0b017442, 0xc1328b31, 0x43c59441, 0x270e0b54, + 0x1213ee40, 0x5404bd02, 0x4cb4c101, 0xe40b3227, 0x0164e3bd, 0xef4bec07, + 0xc632e0c8, 0x4cb0c168, 0x400b4e87, 0xd15443c1, 0x0b017442, 0xc1328b36, + 0x43c59441, 0x270e0b54, 0xdf13ee40, 0x5404bd01, 0x4cb4c101, 0xe40b3227, + 0x0164e3bd, 0xa70cb099, 0x99302710, 0xb19d0db2, 0x48b19d49, 0x10074127, + 0xc51eb49d, 0xb3c540b3, 0x27133344, 0x0014f544, 0x87ff0212, 0xf5010722, + 0x02160023, 0x270403ff, 0x0eb28943, 0x120004f5, 0xb3c5ff02, 0x3cb3c538, + 0x100004f1, 0x48dcff02, 0x034207f8, 0x8334274a, 0x26530f4c, 0x120003f5, + 0x2c33ff02, 0x33302714, 0x42ab104c, 0x140013f5, 0x14f5ff02, 0xff021404, + 0x5e0ef39b, 0x2ea7fce7, 0xb9ffffff, 0xe6184524, 0x2700f04f, 0xfe4c5e23, + 0x640c0d27, 0x07f01b7e, 0x5cbcc106, 0xffed3bbe, 0x2754b499, 0xf5433335, + 0x02120043, 0x54b299ff, 0x22474327, 0x12872103, 0x120014f5, 0x1ef1ff02, + 0xff021000, 0xec33c02b, 0x1dec5318, 0x00b0efe6, 0x23f12433, 0xff021804, + 0x0764b499, 0x3b21232e, 0x27230b24, 0x0014f542, 0xc1ff0212, 0x14f15cb3, + 0xff021000, 0x07f848dc, 0xce422b43, 0xb29993c4, 0x55b39954, 0x02074127, + 0xc566b49d, 0x03335cbc, 0x04f54427, 0xff021200, 0x40273387, 0x34f52007, + 0xff021600, 0x43272403, 0xf556b189, 0x02120024, 0x0024f1ff, 0xdcff0210, + 0x4107f848, 0x34274a03, 0x530f4c83, 0x0023f516, 0x33ff0212, 0x3027141c, + 0xab104c33, 0x0003f541, 0xf5ff0214, 0x02140404, 0x0ef39bff, 0x07fbf15e, + 0x5e612b63, 0x1dbefe25, 0x52d1fd10, 0x215e02a4, 0x5e2027fc, 0x2027fd5e, + 0xa7ff625e, 0xffffdf0e, 0xfc6f66be, 0xc9be0907, 0x0ea7004e, 0xbeffffdf, + 0xa7fc6f34, 0xffffff2e, 0x184624a9, 0xf902f353, 0x30014103, 0x184624ad, + 0x3ea74827, 0xc5fdcfff, 0xf57e4c34, 0xa74027ee, 0xfdcfff0e, 0xc54c04c5, + 0x2e5e6c04, 0x5e4127f9, 0x4127fded, 0x07fe205e, 0xeca5be0c, 0xfd585eff, + 0x76ef3a7e, 0xff3ea70f, 0x34b9ffff, 0x4fe61845, 0x232700af, 0x02a451d1, + 0x99be0907, 0x80070050, 0xf9370ff6, 0xffff0ea7, 0x090499fe, 0x24874383, + 0x422b4433, 0x005043f9, 0x32c0ff00, 0xdf0ea734, 0xccbeffff, 0x0907fc6e, + 0x004e2fbe, 0xffdf0ea7, 0x6e9abeff, 0x75f253fc, 0x5e2001f8, 0x2227ff74, + 0xd87eb31e, 0x962127ee, 0x47202704, 0xfc9b5e22, 0xd14cd1c1, 0x9902745c, + 0x4127411b, 0x3b401399, 0x9601274b, 0x870027c4, 0x23210b23, 0x47e30741, + 0x03310b00, 0x7424d5e1, 0xbd402701, 0xbd015434, 0x9d016430, 0x28c5401e, + 0x423b9d94, 0x28c52c05, 0xbe090754, 0x27004ea5, 0x9cd49d41, 0x27f89c5e, + 0xff525e20, 0xd007f84e, 0x7e8c0bc1, 0x00e8eeb0, 0x2b07017a, 0x0363bd03, + 0x2ce31b07, 0x7f1ce37f, 0x0363bd23, 0x2c032419, 0xf921c280, 0x30874007, + 0x432b4533, 0x35333407, 0x1c27342b, 0x0c3e23d9, 0x4b07fef1, 0x30012107, + 0x40051123, 0x44033403, 0xf393f298, 0x010185e4, 0x03321134, 0x05210341, + 0x23321534, 0x1821ec41, 0xa7330101, 0xfefd0b4e, 0xb3294325, 0x0308b0a9, + 0x032b4127, 0xa78cd3c1, 0xfdcfff2e, 0x896824c5, 0x01231231, 0x9990d0c5, + 0xd12d3934, 0x4d143189, 0x83b119d1, 0x13159611, 0x14338945, 0x03ca043b, + 0xc1d24967, 0x402790d0, 0xd49d3207, 0x4731230a, 0xddf89340, 0x34ee0187, + 0x402700b3, 0xa96cd49d, 0xb90310b1, 0x47032abb, 0x70db9d00, 0xffec9cbe, + 0x9d0b809d, 0xd4c1ab80, 0x47d34990, 0xab342b44, 0x2733083f, 0x0d4d0732, + 0x344c03d3, 0x37272027, 0x44034205, 0x0d07f3c8, 0x27500c03, 0x05472730, + 0xc8040303, 0x07f88ef4, 0x85f893a0, 0x40270187, 0xc207afab, 0x88bef993, + 0x66849d01, 0x9dbe819d, 0x81bd1e81, 0x1b1e0106, 0xa98894c1, 0x2702a4b2, + 0x12428d38, 0x7e4cc3c5, 0x4027ecd0, 0xc54cc4c5, 0x1b076cc4, 0x0d072a07, + 0x002da1be, 0x47234007, 0x64000d03, 0x49d242d0, 0x90d0c1d2, 0x32074027, + 0x230ad49d, 0xee404731, 0xf8ff5143, 0x27ff4d21, 0x6cd49d41, 0x03ff4a5e, + 0x05422b42, 0x5e311534, 0x0ea7fee1, 0xbeffffdf, 0x27fc6cbf, 0x074a07a0, + 0x3337333a, 0x07430b45, 0x03340794, 0x064a6c9f, 0xb43f0300, 0x2700064a, + 0x123499c0, 0x45860307, 0xc64034c1, 0xf9be5e4f, 0xc103004b, 0xc2c43907, + 0xc4a103e9, 0x0ea7c8a2, 0xbeffffdf, 0x27fc6c58, 0x0bf49b40, 0xa70ef49b, + 0xfdcfffae, 0xffff9ea7, 0xc54827fe, 0x32274ca4, 0x1e9793bd, 0xfc9bc027, + 0xc541270e, 0x052764a4, 0x27ec0f7e, 0x9794bd40, 0x0efc9b1e, 0xc54cacc5, + 0xa97e6cac, 0xd200c8ec, 0x51fdf95e, 0x07312134, 0xeb140b03, 0x590abe14, + 0x4e981efc, 0xff1ea7f5, 0x14d1ffff, 0xf1e30e24, 0x4fe6d007, 0x3ea70159, + 0x11fd6fff, 0x104ca334, 0x0d073415, 0xc1fdb77e, 0xd0c18cde, 0x39e19988, + 0x40272027, 0xdcc13127, 0x08049d90, 0x9d09039d, 0xe3a90c02, 0x151302a4, + 0x020dc13b, 0x0c6d024d, 0xa712038d, 0xfee1834e, 0xe4890455, 0x39e39912, + 0xb4874123, 0x0325e2b9, 0x012a34f0, 0x2314e489, 0x9d4c2b34, 0x433b0b03, + 0x42074202, 0x3407435b, 0x21232b07, 0x41234307, 0x230b1387, 0x022d132b, + 0x030a049d, 0xe8e40711, 0x07011241, 0x07212323, 0x9d42a730, 0x31030d34, + 0x0e0bf2b0, 0xc10d019d, 0xd1498cd4, 0x31234339, 0x070f3c83, 0x33238743, + 0x2b422b44, 0x23448743, 0xfffef44e, 0xea80d4c5, 0x0700aec1, 0x2b2dbe0d, + 0x99512700, 0xdcc16ed6, 0x58d1c148, 0xc13cd9c1, 0xdec164d4, 0xc14c0b50, + 0xd0c134d7, 0x38d8c154, 0xc15cd2c1, 0xd3c140da, 0x44dbc160, 0xc607190b, + 0xf125c533, 0x0b4cd199, 0x0b3b0b2a, 0x55080be7, 0x454c07f4, 0x15f235f3, + 0x9dfe05f0, 0x4e2318f1, 0x07feece8, 0x0137272f, 0x05240321, 0xa8440341, + 0x0dd399f3, 0xc3fd6103, 0xff011334, 0xc5fd3607, 0xff011335, 0xd39d3383, + 0xff1ea76e, 0x14b9feff, 0x410302d4, 0x02d414bd, 0xffff1ea7, 0x2414d1ff, + 0xab4ff60e, 0xff1ea7fe, 0x1411fd6f, 0x15104ce3, 0xfea85e14, 0x07ea6b7e, + 0x7e0d071c, 0x4007f464, 0xfa000da3, 0x27ee44cc, 0xff495e50, 0x432b4427, + 0x890b049d, 0x243b14e3, 0x32e23c2b, 0x3207fedc, 0x27fed75e, 0xfefc5ee0, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x1ea7f74e, 0xa9feffff, + 0x071e3c14, 0xad480380, 0x071e3c14, 0x469307b2, 0x33d3070f, 0x07d30bd3, + 0xa7a027c1, 0xfdcfff7e, 0x0d27091e, 0x29befa0d, 0xb401ffc0, 0xa9f44dca, + 0x271e3cc3, 0xad310320, 0xa91e3cc3, 0x031e3ec4, 0x3ec4ad41, 0x42c3a91e, + 0xad31031e, 0xa91e42c3, 0x031e3ac4, 0x3ac4ad41, 0x0ef29b1e, 0x74c54127, + 0x2ea10370, 0x1ed90b8a, 0x4ef78ec2, 0x8c0ec1fc, 0xe339c007, 0x031ee4b9, + 0x3c833123, 0x8723070f, 0x2b243313, 0x29232b21, 0x12e3a900, 0x41228703, + 0xf42e23c1, 0x617efffe, 0x29c441ff, 0x03c271c3, 0x0b430b41, 0x8341e332, + 0xc3751f3c, 0xfc8ec445, 0xd007fa4e, 0x07120099, 0x07b207a1, 0x76230714, + 0x21d4510f, 0x10d399dc, 0xd285c40b, 0xc4ebd195, 0xa7353bce, 0xffffdf0e, + 0xfc3fb6be, 0x0d071c07, 0xfc2c8fbe, 0xffdf0ea7, 0x3f82beff, 0x3b3127fc, + 0x0b31233b, 0x07c3ebc3, 0x234b5b4c, 0x11d49d41, 0x5510db9d, 0xa1dca5d3, + 0x25dc15d4, 0x0f4ccedc, 0x0cbe0d07, 0x0127ffbd, 0x0127fa8e, 0xf251fa8e, + 0x1a070d07, 0xffbde0be, 0x04964127, 0x04074027, 0xf54efa8e, 0x5542f393, + 0x90fe9301, 0xf063015b, 0xd1076007, 0x3ce32fab, 0x7fece37f, 0x3c033419, + 0xf93ec280, 0x498c64c1, 0x0c449963, 0x649d322b, 0x16d4b90b, 0x0c649d03, + 0x32273308, 0xbf6bb307, 0x5aa6f593, 0x275b1d01, 0x8c62c142, 0xa90e649d, + 0x27031223, 0x64c5444c, 0x21d4b97c, 0x7863c503, 0x4ea745e6, 0xb9feffff, + 0xf6014143, 0xd101b93f, 0xc5025cd3, 0xdcd19463, 0xcc8302a4, 0x23c3330f, + 0xffff84ce, 0xffbf06be, 0x018c0fe6, 0xbfe68227, 0x7c070086, 0xf9937403, + 0x27015928, 0x19061ea0, 0x734ad254, 0x02bcd4d1, 0x9405ca07, 0x02b8d3d1, + 0x47334a07, 0x93c5c533, 0xd1c40b48, 0xb902a4d1, 0xd10270d2, 0x070268d3, + 0x0347070c, 0x064ab40f, 0x7ef80500, 0xcf03feac, 0x00064a6c, 0x02a4d1d1, + 0x0271d2b9, 0x3807b007, 0x0fbe0c07, 0x0b8b0021, 0x9c03a103, 0xa80fd6a0, + 0xffdf0ea7, 0x3e61beff, 0xbe0c07fc, 0xa7001dc4, 0xffffdf0e, 0xfc3e2fbe, + 0xf0430727, 0x63c1f58e, 0x8df4938c, 0x32990158, 0x9d1027de, 0x63990d62, + 0x6d629d0d, 0x9d05439d, 0x63990641, 0xa6419d0d, 0xd1a5439d, 0x990260d0, + 0x43233c04, 0x42f04f6b, 0x3e270100, 0x99020048, 0x4fe63e04, 0x230700e2, + 0x00002fa3, 0x0c993000, 0x16d4b908, 0x86312703, 0x333027c4, 0x24ab1a4c, + 0xab193c33, 0xff1ea723, 0x1205ebff, 0x99400e99, 0x3e073f02, 0x3c834207, + 0x0f4c830f, 0x38334433, 0x4fa343ab, 0x53100001, 0x24d61415, 0x00a3efe6, + 0x06000d27, 0x0ca3c4a6, 0x1ed4b910, 0xaa41e003, 0x9d4ff600, 0x40ec2700, + 0x20271027, 0x029cd3b9, 0xffffdea7, 0x834307eb, 0x164c3341, 0x83163c33, + 0x8000003e, 0x00224ea3, 0xab43ab08, 0xab41ab40, 0xc54eab42, 0x62995cd4, + 0x2740270d, 0x9d646531, 0x2c236f63, 0x7520c80c, 0x42073207, 0x3d833533, + 0x4c831f00, 0xab2573f0, 0xab278343, 0x43002742, 0x70d4c5f0, 0x4ea7f58e, + 0xb9ffffff, 0x46184543, 0x5e832736, 0x4ea7fe6a, 0xc5dfffff, 0x475e9464, + 0x5e8027fe, 0x2307fe5a, 0x00002fa3, 0x1f5e2000, 0x000d27ff, 0xff5e5e05, + 0x00383e27, 0xff015e02, 0x20271027, 0x655ee027, 0xb0d4d1ff, 0xf144dc02, + 0x27801c27, 0x2780002d, 0xff525ee0, 0x891e2027, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x0ac1f54e, 0x99500740, 0x435440a4, 0xffff4ea7, 0x4443b9ff, 0xbe3fe618, + 0xb4a8b900, 0xc08fe601, 0x079a0700, 0x272027ba, 0xff6ea770, 0xca07ffff, + 0xc4b9c20b, 0x42d80164, 0x5494b932, 0x54b1c101, 0xb994b0c1, 0xd1016493, + 0x360174be, 0x83430745, 0x2642c043, 0x32871027, 0x18446db9, 0x34d13a0b, + 0xdfd60174, 0xce410373, 0x27072114, 0xb4032103, 0x72079103, 0x8eb828da, + 0xc24007f5, 0x30075001, 0x4027312b, 0x140b1307, 0xc199cd1e, 0x870a0742, + 0x270c0bc7, 0x0ca5be21, 0x40a499fc, 0xa49d4123, 0x4053c140, 0xc30b4027, + 0x0b40a299, 0x74cdd537, 0x5434bd01, 0x423d9d01, 0xcdc5cd05, 0x94cdc554, + 0x01643dbd, 0xb9b12fc6, 0x1e01b4a8, 0x033e079e, 0x1e312b31, 0xc1f58eb0, + 0x34c59434, 0x8e8c1e54, 0x31f64ef5, 0x3804c106, 0x1b3403c1, 0xee700746, + 0xc1012734, 0x94b94009, 0x4c0601b4, 0x3027e407, 0xc387d027, 0x490b4c07, + 0xc19441c1, 0x390b544b, 0x8d07a107, 0x30b9ab2b, 0x44d10164, 0x8f6b0174, + 0x015432b9, 0x00e91be2, 0xd1031027, 0x43834007, 0x24b63d07, 0xf00d42c0, + 0x0027c9fe, 0x749d4227, 0x07f68e12, 0xca410b4a, 0xc90bee46, 0x6ae2c201, + 0x060700cc, 0x0fe60a2b, 0x1ff600d8, 0xd02700cb, 0xe0270027, 0x7419ade6, + 0x7ac57339, 0x3c789d34, 0x2b0b4533, 0x180043f5, 0x72b5ff02, 0x18044af5, + 0x1027ff02, 0xe8004e23, 0x034135fd, 0xfde8004e, 0x181042f5, 0x4af5ff02, + 0xff021814, 0x4e233807, 0x4bfde7f0, 0x0b41353f, 0x6434b939, 0xbd41a301, + 0xe6016434, 0x1900820f, 0xc5733974, 0x7d9d3870, 0xf545333d, 0x02180043, + 0x307ec5ff, 0x180440f5, 0x71c1ff02, 0x23202740, 0xfde8004e, 0x4e034235, + 0xf5fde800, 0x0218104e, 0x1440f5ff, 0x07ff0218, 0xf04e233d, 0x3f4bfde7, + 0x310b4235, 0x016434b9, 0x41a30127, 0x016434bd, 0x749d4227, 0x07f68e12, + 0x2ba103a4, 0xff145eab, 0xf68e0127, 0xd027a607, 0xe0270027, 0x07ff3f5e, + 0x07df6bd8, 0xff365ee2, 0xe027d027, 0x27ff2f5e, 0xff025e01, 0xc007f94e, + 0x6340c4c1, 0xdf0ea7f0, 0x9207ffff, 0xf405a107, 0xff9c41be, 0x23032f07, + 0x2ce33f07, 0x7f3ce37f, 0x3c033419, 0xf932c280, 0xb940c3c1, 0xe601b431, + 0x6434b916, 0xb642f801, 0x27230700, 0x07310701, 0xf0010310, 0xbc277ef3, + 0x99f001ff, 0x04b94003, 0x43e201b4, 0x4b07008a, 0x4fc04f4b, 0xffffffff, + 0x410d997e, 0x29071a07, 0x78be0d07, 0xa007ffa7, 0xc16c0fc6, 0x1b0740ce, + 0x1f6b2e07, 0x4027210b, 0x24bd3227, 0x23bd0154, 0x2d9d0164, 0x27f00142, + 0x40039941, 0x11874d3b, 0x20271e0b, 0x31034123, 0xd540039d, 0x05017414, + 0x9412c51a, 0x075412c5, 0xfdef7e0c, 0xffdf0ea7, 0x1d7abeff, 0x430127fc, + 0xb9f98ef0, 0x03016524, 0x7442fc21, 0x07f001ff, 0x400399b1, 0x01b404b9, + 0x34eabf6b, 0x0ea7ff7a, 0xbeffffdf, 0x27fc1d50, 0x8ef04300, 0x5eb027f9, + 0xfb4eff59, 0x07120e99, 0x07c107d0, 0x562f6bb3, 0xa740a7ee, 0xffe9733e, + 0x9d4003c5, 0x0ea53d04, 0xb5340ec5, 0x3c049d0e, 0xc5380ec5, 0x0ec5300e, + 0xa70e2544, 0xffffff3e, 0x16cd34b9, 0x32bd2402, 0x6e7e16cd, 0x070676fd, + 0x071c070d, 0xfebe7e2b, 0x06664127, 0xfb8e0407, 0x567e0d07, 0x8e0127fd, + 0x8e0127fb, 0x074027fb, 0x00fb8e04, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x02020100, 0x03030303, 0x04040404, 0x04040404, 0x05050505, + 0x05050505, 0x05050505, 0x05050505, 0x06060606, 0x06060606, 0x06060606, + 0x06060606, 0x06060606, 0x06060606, 0x06060606, 0x06060606, 0x07070707, + 0x07070707, 0x07070707, 0x07070707, 0x07070707, 0x07070707, 0x07070707, + 0x07070707, 0x07070707, 0x07070707, 0x07070707, 0x07070707, 0x07070707, + 0x07070707, 0x07070707, 0x07070707, 0x08080808, 0x08080808, 0x08080808, + 0x08080808, 0x08080808, 0x08080808, 0x08080808, 0x08080808, 0x08080808, + 0x08080808, 0x08080808, 0x08080808, 0x08080808, 0x08080808, 0x08080808, + 0x08080808, 0x08080808, 0x08080808, 0x08080808, 0x08080808, 0x08080808, + 0x08080808, 0x08080808, 0x08080808, 0x08080808, 0x08080808, 0x08080808, + 0x08080808, 0x08080808, 0x08080808, 0x08080808, 0x08080808, 0x4ea7fc4e, + 0xa9feffff, 0x891e3c43, 0x0ec1d204, 0x8b342bb0, 0x1431c83f, 0xc2b401c1, + 0x02890e1e, 0x8d4103ac, 0xe20bd204, 0xc558f3f0, 0x4ea7b00e, 0xc1fdefff, + 0x44c1e801, 0x45e1c2d8, 0x53184c33, 0x44d41d4c, 0x2bd4273c, 0x9fcea7d4, + 0x04c1fde4, 0x1841c2ec, 0xa9c404c1, 0x0b010203, 0xa9430b41, 0x05010402, + 0x27c215c4, 0x89c43540, 0x0389f804, 0x0b4103ac, 0xf8048d13, 0x02e801c5, + 0xcffdf0e1, 0x1ec2fc8e, 0xd20489a7, 0xfc4e981e, 0x016404b9, 0x23980389, + 0x07345b44, 0x2331c2d0, 0x89fc0489, 0x410bf803, 0xcfabc407, 0x3f8b3c2b, + 0x071031cc, 0xff4e7e0d, 0x2bf8d489, 0xc84f8b4c, 0xfc8ef241, 0x931e0389, + 0x00ec1ff4, 0x03200289, 0x6041a931, 0x33210301, 0xa9243334, 0xc2016244, + 0x30271913, 0xce2024ca, 0x04012924, 0x00002f27, 0x34ab1000, 0x030532ab, + 0x13cefe0b, 0x003f2726, 0xc2040000, 0x0401e242, 0x34ab2027, 0x030532ab, + 0x0401fe0b, 0x00002f27, 0x34ab3000, 0x030532ab, 0x3f27fe0b, 0x0c000000, + 0xfd4ebb1e, 0x953ed007, 0xebb6f493, 0xdc43d100, 0x2134d803, 0xd4254027, + 0x4027d415, 0x6520d389, 0x45d435d4, 0x76d455d4, 0xa3d40135, 0x0400004e, + 0xfd8ed405, 0xd42540a7, 0xdf1ed415, 0x4eff5f5e, 0x0008a9f7, 0x0bd00701, + 0xab980781, 0xff7ea79f, 0x09adfdef, 0xaea70100, 0xc1fde46f, 0xd399e47c, + 0x18cc33fe, 0x2b1dcc53, 0xfad4893c, 0x430b34e6, 0x07fad48d, 0x073c0b34, + 0xce4fab43, 0xc4d45c49, 0x07e30749, 0x2b310348, 0xabb40743, 0x0b0427bf, + 0xc10c2bb3, 0xd4c1f0d1, 0xc2c103f4, 0xd4c11841, 0x02d3a9c8, 0x0b410b01, + 0x04d2a943, 0x15a40501, 0x354027a2, 0xacd389a4, 0x310be103, 0xd3c54e07, + 0xce4fabf0, 0xf0f014be, 0x9d491bcb, 0x4fabfedc, 0x270a45d0, 0x1ef4e843, + 0xfedc9d83, 0xffff4ea7, 0x4243a9fe, 0x3842a91e, 0x2b43071e, 0x004dfc42, + 0x07013880, 0xfad38972, 0x432b4707, 0x80004d1c, 0x4ea77307, 0xa9feffff, + 0x071e3a43, 0x8b432b49, 0x0741284f, 0x999fab93, 0x4ff6d0d4, 0x3ea70112, + 0xc1fdefff, 0x4c33fc34, 0x1d4c5318, 0x071344c4, 0xe8432723, 0xfc23c1f4, + 0x53183c33, 0x34c01d3c, 0xff4ea7f1, 0x4ec1fdef, 0xddd499fc, 0x5318ec33, + 0x4e2b1dec, 0xf6d8d189, 0x0700ac4f, 0x072e0b21, 0xce4fab42, 0xe4d45c49, + 0x03420759, 0x07942b41, 0x0b0fab09, 0x2bc20704, 0x1faea702, 0x9c27fde4, + 0x0fbea744, 0x8f27fde4, 0x40000000, 0x4c834c07, 0x3334871f, 0xc1340b46, + 0x3e23c0d1, 0xc1feeaf0, 0xa305ccd2, 0x210be103, 0x4027a915, 0xb205a435, + 0xd489b915, 0x0bb835ac, 0xc0d4c541, 0xf0f0c103, 0xddde9d3e, 0xced4d289, + 0xdc893a27, 0x342cced8, 0x89b8d1c1, 0xd0c1acde, 0xffbea7e4, 0x2103d07f, + 0xd4993207, 0x0b3fabdf, 0x8623071e, 0x05b10544, 0xce370e01, 0xd38de9c3, + 0xb8d1c5d4, 0xe4c4f78e, 0x8ebf1e8c, 0xa7140bf7, 0xfeffff3e, 0x31ad4107, + 0x4c831e40, 0x3434d51f, 0xd8d18d1e, 0x4ea73127, 0xc5fdcfff, 0x345e6c43, + 0x5e7307ff, 0xd389fec9, 0x4339ced8, 0x49071307, 0x432b3103, 0x430b4fab, + 0x89c0d2c1, 0x412bacd3, 0xd2c5230b, 0xb01103c0, 0xff4ea7f4, 0x49adfeff, + 0x1c831e40, 0x3441d51f, 0xd8d98d1e, 0xf49b4027, 0xa731270e, 0xfdcfff4e, + 0x5e6c43c5, 0x1907ff50, 0xfd4ed81e, 0xa9d40389, 0x07010004, 0x1634ced0, + 0x10270d07, 0x27fdb27e, 0x89f4e843, 0xd4a9d4d3, 0x43ce0100, 0x64d4b9ec, + 0x98d38901, 0xd2894423, 0xfcd189da, 0x013ed0a9, 0xdec1345b, 0x0b130be4, + 0x9930a720, 0xd28dd0d4, 0xfcd18dda, 0x4486e305, 0xfd8ee315, 0xc107fc4e, + 0x1027d007, 0xe8eaf093, 0xfd657e00, 0xf093cf6b, 0x7e00e9e8, 0xc7a600ad, + 0xffff2ea7, 0x4223a9fe, 0x4424a901, 0x7834ce01, 0x23bd3027, 0x40271e98, + 0x070ef49b, 0x871f6b1d, 0x100f0301, 0x53000654, 0x103f9bd8, 0xf2930401, + 0x5100e8a8, 0x05432b2e, 0x08e19d04, 0xa7122499, 0xfd4fff3e, 0x4909e49d, + 0x99e44d24, 0x21690824, 0x410b3211, 0xe205e46d, 0x4027dcf6, 0x070ef49b, + 0x27ff8b00, 0x9d402720, 0xe20508e4, 0x01103f9b, 0x05430b04, 0xa7c60604, + 0xfeffff3e, 0x1e9832bd, 0xf49b4027, 0x27fc8e0e, 0x9823bd32, 0x9b40271e, + 0x31270ef4, 0xcfff4ea7, 0x6443c5fd, 0x07ff7e5e, 0x0342734d, 0x1ef4e841, + 0x99f54ebb, 0xf0e31d04, 0x4fe66007, 0x049902f1, 0xf04fe623, 0x9d402702, + 0x2ea71d64, 0xb9feffff, 0xa902d424, 0x2b014423, 0xcc4f4b43, 0xc2071c41, + 0xe8150e27, 0x7e102703, 0xc4b9ff04, 0xc3a902d4, 0x432b0144, 0x41c84f4b, + 0x1f6c99e8, 0xffff3ea7, 0xb9c123ff, 0x83010834, 0xc4ee0fcc, 0x4c0703a1, + 0x44333c87, 0x4c2b432b, 0x44873027, 0xf5186289, 0x00011043, 0x0c43f5ff, + 0xa7ff0001, 0xffffff3e, 0xb9672fd6, 0xe0010134, 0x0357ff4c, 0x010134b9, + 0xfd01f405, 0xd333f401, 0xd40b4633, 0xf27cde23, 0x274d07ff, 0x123c2720, + 0x44034205, 0x6231f3c8, 0xd2051027, 0xd3756341, 0x831f6499, 0x34070f4c, + 0x34332487, 0x342b322b, 0x3e233387, 0x27fffeec, 0x03310547, 0xa7f4c834, + 0xfd4fff4e, 0xd2214301, 0xab103c33, 0x1ed22523, 0x0134b914, 0x05d40701, + 0x33d333f4, 0x23d40b46, 0xfff27cde, 0x4fff4ea7, 0xa74c81fd, 0xfeffffee, + 0xe3d14091, 0xe4d10130, 0xc3330128, 0xd2310333, 0x4c1bd151, 0x240b301b, + 0xecd5130b, 0xe0d50128, 0xd2350130, 0x6351d155, 0xdeb1d4a1, 0xd4a5430b, + 0xe6f6f393, 0xa033b900, 0x30d0c104, 0x45334307, 0xce23c407, 0xf1feece8, + 0x01132045, 0x1847f1ff, 0xf1ff0113, 0x01131c48, 0xc1f315ff, 0xd1c134d2, + 0xc1c93138, 0xca413cd3, 0x5140d4c1, 0x0b250bcb, 0x0b4b0b3a, 0x0b080be7, + 0x34d2c519, 0xb540d4c5, 0x30d0c5de, 0xc538d1c5, 0x63993cd3, 0x0f3c831f, + 0x23874307, 0x422b4433, 0x5487432b, 0xfef45e23, 0x034507ff, 0x01372748, + 0x05c403c1, 0xa8440341, 0x836431f3, 0x34870f4c, 0x340b4433, 0x13c132f9, + 0x2ff6ff00, 0x4ea70165, 0xd1ffffff, 0x0718484c, 0x07cd033c, 0xe32c0705, + 0x2ce37f3c, 0x07cd237f, 0x03341905, 0x32c2803c, 0x315a21f9, 0x18698958, + 0x1001adf4, 0xadf00121, 0x01bc0101, 0x017cbd27, 0x04430d27, 0x3a071027, + 0x3c732a07, 0x0bdebe1f, 0x803c2700, 0x300b4027, 0x5299414b, 0x87140728, + 0x181c3322, 0xb80b3853, 0xa39020f1, 0x31ab0001, 0xb09bb30b, 0x4c0b4987, + 0x4bd5b853, 0x84c60108, 0xc915a486, 0x63999ea6, 0x235b211f, 0x0f3c8331, + 0x23874307, 0x422b4433, 0x4487432b, 0x3e233407, 0xf1fffef4, 0x00011447, + 0x313471ff, 0x41f42538, 0x613a5139, 0x415e313c, 0x61515150, 0x21547152, + 0x0bb70bf3, 0x0b090be8, 0x0b2c0b1a, 0x25547543, 0x455e355b, 0x65515550, + 0x93f41152, 0x00e58bf1, 0x43834103, 0x04a014bd, 0x4fff9ea7, 0x219301fd, + 0x3b4127da, 0x99a4ab43, 0xda251a63, 0x89713fd6, 0x62991864, 0x1e639921, + 0x03226199, 0x1f609941, 0xeea7423b, 0x2bfeffff, 0xa9383341, 0x330144e2, + 0x30ab104c, 0x4ea734ab, 0x03ffffff, 0x0843d521, 0x44e2ad01, 0xc3012701, + 0xa7f58ef0, 0xfddfff3e, 0x01c034d1, 0x00aa4fe6, 0x01a833d1, 0x430b0451, + 0xfa5e0455, 0x01aef0fc, 0x00a80100, 0xda1ebd27, 0x02720d27, 0xdf5e1027, + 0x186989fe, 0x01ff175e, 0x005f27d4, 0x833fe000, 0x34870f4c, 0x340b4433, + 0x13c430f1, 0x3ce9ff00, 0xff0013c8, 0x00131dbe, 0x0c07b007, 0x0010e8be, + 0x0b071007, 0x000ea5be, 0x000d18be, 0xb0074027, 0x24073507, 0xc1070b07, + 0x001db5be, 0x04074007, 0xc9be5107, 0xd09d000a, 0x44d39944, 0x4f6b4307, + 0x27344c10, 0xd39d333c, 0x01940144, 0x144c33f1, 0xda25a4ab, 0x12be0607, + 0x30a7fbae, 0xffff4ea7, 0x0143bdff, 0xff115e01, 0xf0c30027, 0xbc27f58e, + 0x9f0d271f, 0x5e102705, 0xbd27fe46, 0x0d2711fd, 0x1027033a, 0x27fe395e, + 0x03e8070e, 0x5d7e1027, 0x8b0ea7fb, 0x86befff2, 0xf005fc61, 0x01e900c8, + 0xff4ea7f1, 0x41bdffff, 0x975e0101, 0x27d307fc, 0x2764060d, 0xfb367e10, + 0x0108d4b9, 0xfc504cee, 0xf84eee1e, 0xbea7c007, 0x27fddfff, 0xfd93108c, + 0x2700e410, 0xaea70c9c, 0x1efd4fff, 0x30b8c547, 0xc1102f9b, 0xd35138d4, + 0xd4c5422b, 0x08399d38, 0x9d12d499, 0xd4490934, 0x344da111, 0x6908d499, + 0x0b3105d2, 0x27346d42, 0x0ef49b40, 0xff8b0007, 0x0508349d, 0x104f9b30, + 0xc538d3c1, 0x430b30b0, 0x0738d4c5, 0xfb8b7e0c, 0x8eb30fc6, 0xa7fc4ef8, + 0xfdcfffce, 0xc5104c27, 0x1f6b50c4, 0x27faaf7e, 0x50c4c540, 0x8e70c4c5, + 0xa7fb4efc, 0xfeffff2e, 0x1e3e24a9, 0x07da0389, 0xab432bd0, 0xcac1074f, + 0xb2071d14, 0x0c271027, 0x07c33e16, 0xf68e7e0d, 0x1e3eb4a9, 0x2bdad389, + 0xc24fab43, 0xfb8ee74c, 0x3ea7fd4e, 0x21e7ffff, 0x0c41d834, 0x4ea73027, + 0x35e7ffff, 0x07fd8e43, 0x354127d3, 0x270b27d4, 0xfa4a7e10, 0x41dcd421, + 0x4eef1ee4, 0x07f2e3f6, 0x272f07b0, 0x273b2710, 0x2321054b, 0xb8240331, + 0x256b07f4, 0xa7f315f3, 0xe7ffff7e, 0x01086d03, 0x0164b4b9, 0xb199b849, + 0x6b442308, 0x07bc694f, 0x3b9107a8, 0x98be89a4, 0xc10b943b, 0x279ab089, + 0x27a48631, 0x33c43b30, 0x2127103c, 0x2027ae0e, 0xdda3d907, 0xd3ab2000, + 0x27112c33, 0x270c0e41, 0x33d2ab40, 0x31270f4c, 0x3027ae0e, 0x3c33d4ab, + 0x0e41270e, 0xab40270c, 0x0e4c33d3, 0x8d22f19d, 0xfa8d1cf8, 0x20fc8d1e, + 0xab23f99d, 0x959fe6d4, 0xcdafe600, 0x89957600, 0x44c620f4, 0x0800dda3, + 0x86f4b4c1, 0x51b4b945, 0xee412304, 0xe2008d49, 0xe60098ea, 0x8900fc9f, + 0x4cee9ab4, 0x0f070101, 0xfd051027, 0x99f6ad7e, 0x4fe623f4, 0xf39900da, + 0x0ab49922, 0xf389434e, 0x98b4891e, 0x00fd34ea, 0x01feef7e, 0x114546f4, + 0x217355f3, 0x457065f0, 0x25b4b974, 0x714fd601, 0xb129b209, 0x077612ce, + 0x0b438342, 0x0d43994b, 0x230b3f4b, 0xdaf120c8, 0x3207ee12, 0x33834207, + 0xb44d4253, 0x0d08b39d, 0xfefe5eb2, 0x11231e07, 0x18071802, 0x6a7e0b07, + 0x98be89fe, 0xff5faff6, 0xf489271e, 0x704fe61e, 0x00dda3ff, 0x6caeea10, + 0x9ab489ff, 0x3de33d07, 0x4cee0800, 0x4027009f, 0xf4650f07, 0x6c1ef305, + 0x0000dea3, 0xff2f5e01, 0x967e0607, 0x29b209f9, 0x8c21ceb1, 0xd4274027, + 0xffffcea7, 0x09b49de7, 0x27fe4f7e, 0xb0c44540, 0xfe467efd, 0x5b7e0b07, + 0x98b4d1f8, 0x98b38904, 0x430b4103, 0xf2c341e3, 0x0498b4d5, 0xf189f68e, + 0x7e0b071c, 0x1f5ef52a, 0x7e0b07ff, 0xb489f498, 0x03c4ee9a, 0xd64183ff, + 0x00dda348, 0x650f0704, 0x15fd05f4, 0x35f425f4, 0x55f445f4, 0xf5d67ef4, + 0x07feee5e, 0x7e11270b, 0xfd5ef5cf, 0x00dda3fe, 0x07402704, 0x05f4650f, + 0xa3d91efd, 0x5e04003d, 0x0000ff5e, 0x000000d9, 0xb007f54e, 0x2ea71b07, + 0x23ffffff, 0x03a007f1, 0x0301781d, 0xd1012c0d, 0x150e2424, 0x03f125f0, + 0xa70108ad, 0xe7ffff5e, 0x051a4fe6, 0x5fff3ea7, 0x933411fd, 0x00e0f3f2, + 0x15104ca3, 0x0b1ea734, 0x2301fefd, 0x22111401, 0x41e8432b, 0x20e8051a, + 0x4207051c, 0x45333287, 0x3407432b, 0x019ef213, 0x2b353321, 0x23f21134, + 0xfef10c3e, 0x30014107, 0x20051123, 0x24033403, 0xf293f498, 0x0100e0ac, + 0x03231124, 0x05310341, 0x23231524, 0x5531ec41, 0x95f39306, 0x340100e0, + 0xfd0b0ea7, 0xa90415fe, 0xa90434b3, 0x27012eb2, 0xff1ea741, 0x14c5fdcf, + 0x23322b68, 0x4ab4b931, 0x94b3ad04, 0x96302704, 0xb9312744, 0xbd012cb4, + 0xf804aeb3, 0xd1055541, 0xa903d0bd, 0xb90494b9, 0xb90452b4, 0x070447b3, + 0xf6643b69, 0x2704fb3f, 0x65b0b9c0, 0xe604f001, 0x07042304, 0x03e05be6, + 0x3eb2a904, 0x23102701, 0x27230b21, 0x9d402731, 0x3ea709b3, 0x9dfee177, + 0xb10d0cb1, 0xb49db14d, 0x12bd8d08, 0xbe6db355, 0xb1b92287, 0x04f00451, + 0xb4a90495, 0x30070140, 0x34234c0b, 0xb39d4e2b, 0x02433b0b, 0x5b410741, + 0x23340743, 0x23430721, 0x0b038741, 0x2d032b23, 0x0ab49db2, 0x14070103, + 0x057d41e8, 0x21232307, 0x42a73b07, 0x030d349d, 0x93f2b031, 0x00dfc3f2, + 0x24b91b0b, 0x109d04ae, 0x904ff60d, 0xff3ca701, 0x40a753b5, 0xb53053c5, + 0x3054c554, 0x30a74627, 0x53c553b5, 0xa7f4b030, 0x51b5fd1c, 0xb53051c5, + 0x3053c553, 0x40a73627, 0x54c554b5, 0xb9f3b030, 0x3504afb3, 0x303fe6f3, + 0x2c61e804, 0x23460704, 0xd1f40541, 0xf803dcb4, 0x2801004d, 0x90b4b904, + 0xd1f30104, 0x7b04dcb0, 0x07130734, 0x83430723, 0x87218312, 0x83224771, + 0x0b433344, 0xe3740b72, 0x33309b37, 0xd1730b74, 0xb904e0bd, 0xb90451b3, + 0x9b0470b4, 0x7fdc03d3, 0xdce34f4b, 0x064fe67f, 0x6cb9d104, 0xd8b4d104, + 0xd5490e04, 0x9304d8b9, 0x003707f1, 0xb1d11c01, 0x0c070468, 0x001c54be, + 0x809b8d07, 0xf293c103, 0xb90036f0, 0x0b0451b3, 0xa92c0589, 0x0704ecb4, + 0x12462b03, 0xa9040734, 0xe6012eb4, 0xb904184f, 0x270491b2, 0xe64027e0, + 0x2704466f, 0xf6e58630, 0x3102156f, 0x0f1fe6f1, 0x53102702, 0xab278322, + 0xa723ab24, 0xfddfffde, 0xb4a921ab, 0xd2d50190, 0xd02501d4, 0x80004d83, + 0xb4b94536, 0x4fc6013c, 0xdcb4d167, 0x004dd803, 0xb4b92501, 0x18270490, + 0x143bf001, 0x001ba7be, 0xb3d14427, 0xd4d504e8, 0xb2d101d8, 0x309b04e4, + 0xd2d5830b, 0xf23101bc, 0x41272586, 0x40276486, 0x0198d4d5, 0x0470b4b9, + 0x4fe64f4b, 0xb4b903eb, 0xb3d1013b, 0xb2d10464, 0x342b04d8, 0x329b3123, + 0xd8d5830b, 0x4ea7019c, 0xd5fddfff, 0x2701ac47, 0xd5302740, 0xad04a4b4, + 0xb904acb3, 0xa9012db1, 0x07043ebc, 0x83212321, 0x31070f2c, 0xe1874207, + 0x34330287, 0x3e2b4433, 0x422b402b, 0xb2a9312b, 0x3387013e, 0x00274487, + 0x3e232c9b, 0x23fffef4, 0xfffef44e, 0xbeb91c47, 0xb3c5044d, 0xe0b4c5e4, + 0xc5aeb18d, 0xb09db4b2, 0xacbc8ddf, 0xe6deb09d, 0xa7023eef, 0xfeffff4e, + 0x014143b9, 0x02313fe6, 0x012eb4a9, 0xffff3ea7, 0x34b2a9df, 0xc8b3c504, + 0x03c4b3c5, 0x5524ee41, 0x2cb4b903, 0x27443801, 0xdfb49d41, 0xc1acb089, + 0x3007b4b2, 0xb1893333, 0xc5230bd2, 0xb3c5f0b3, 0xc0b3c5b8, 0xc5b0b3c5, + 0xb3c1e8b3, 0x271803c8, 0x49beb940, 0xbcb4c504, 0x8db4b2c5, 0xb3c5d2b1, + 0xe1eff6cc, 0xd1302701, 0x9d01e4b4, 0x45c6d0b3, 0x02dbefe6, 0x012eb4a9, + 0x02db41e0, 0xdd4af193, 0xae14b900, 0x98b28904, 0x0164b3b9, 0x02564fe6, + 0x30272027, 0xc5ecb2c5, 0x0b07f4b3, 0x93f0477e, 0x00dd27f2, 0x04ae24b9, + 0x02324fe6, 0x0164b4b9, 0x013eb3a9, 0x343b4423, 0x1e98b38d, 0x070b0742, + 0xf0ac7e1c, 0x2e0ab499, 0x3eb4a9d4, 0x4fc4ca01, 0xc67e0a07, 0x29b209f4, + 0x5612ceb1, 0x43834207, 0x43994b0b, 0x0b3f4b0d, 0xf120c823, 0x07ee12da, + 0x83420732, 0x4d425333, 0x08b39db4, 0xbd99b20d, 0xd6bc4908, 0xb4a9bfdf, + 0x4cc2013e, 0x070b07b1, 0xf91f7e1c, 0x1e27a81e, 0x5e020000, 0x1127fdef, + 0x247e0b07, 0x7e0a07f1, 0xb209f471, 0x21ceb129, 0x9d4027ac, 0x0b0709b4, + 0xd1f3497e, 0x890498b4, 0x410398b3, 0x41e3430b, 0x0498b4d5, 0x5b7e0a07, + 0xbd4127f8, 0xd10125b4, 0x210108b3, 0x122c27f4, 0x44034001, 0x34033005, + 0xb2d1f2a8, 0xb3d103d0, 0xb0b903e0, 0xb2d5044c, 0xb3d50114, 0xb2b90118, + 0xb0bd0490, 0xb1a90126, 0xb3b90494, 0xb0b90452, 0xb4a9012d, 0xb2bd012e, + 0xb1ad0128, 0xb3bd0120, 0xb0bd0129, 0x20270127, 0x21274496, 0xb998b489, + 0xbd0451b3, 0x9b0122b2, 0xaeb2b943, 0xd5443304, 0xb9011cb4, 0xbd04afb1, + 0xa7012bb2, 0xffffff2e, 0x0e2424d1, 0x012ab1bd, 0xfaea4ff6, 0x5fff0ea7, + 0x930411fd, 0x00dbdbf2, 0x15104ce3, 0x0b1ea704, 0x2301fefd, 0x22111401, + 0x41ec432b, 0x20a7faea, 0xfae820ec, 0xa37e0a07, 0x9b4027f7, 0xf49b0bf4, + 0xec051e0e, 0x27fad520, 0x7e112705, 0x3ea7f7f9, 0x93fefd0b, 0x00db9bf0, + 0x03013401, 0x432b0211, 0xa7e141cc, 0xd1dd1e20, 0xc50388b4, 0xb4c5c8b4, + 0xfdea5ec4, 0x012eb4a9, 0x44863027, 0x31c33127, 0x145e3183, 0x40b3a9fe, + 0x2b442701, 0x2b143b40, 0x0bb49d3e, 0xfb7531e2, 0x705e3107, 0x2b4427fb, + 0x3be60740, 0xfb1b5ee4, 0x3127c127, 0xd1fb045e, 0x0503dcb4, 0x004dfcf6, + 0xb9fbdc01, 0xd10451b3, 0xb904e0bd, 0xd10470b4, 0x0104dcb7, 0x03d39bf0, + 0x4f4b7fdc, 0xdce3709b, 0xfe4ff67f, 0xd8b4d1fb, 0x9b8d0704, 0x5e840b89, + 0x0a07fc23, 0x93f6ed7e, 0x00db07f2, 0x04ae24b9, 0x009c4ff6, 0x00be0b07, + 0xbdd1fba6, 0xbd8d03d0, 0xfa915e12, 0xb47e0b07, 0xfe6a5ef7, 0x237b3423, + 0xb4693207, 0x0333309b, 0x4fe6300b, 0x23070093, 0x012eb4a9, 0xfd964ff6, + 0x915e3027, 0x3ab4b9fd, 0xb9e12701, 0xa90491b2, 0x270162b3, 0x27441810, + 0x07317b11, 0xb9460713, 0x0b0490b3, 0x2b443312, 0x0334c614, 0x0713e313, + 0x2b443340, 0x83463341, 0xf603004d, 0x31fbbe6f, 0x863127f1, 0x33302714, + 0xb25e103c, 0x2eb4a9fb, 0x294ff601, 0x88b4d1fd, 0xccb4c503, 0xd5fd1f5e, + 0x5e019cd8, 0x0b07fc2a, 0xfba4ecbe, 0x27ff655e, 0xfa915e10, 0xb49d4127, + 0xfca75ede, 0x432b4203, 0x21152405, 0x27f9a45e, 0xff6e5e20, 0x4207f64e, + 0x93078207, 0x3007a207, 0xab102c53, 0x073fab4f, 0x07e39be2, 0x07710760, + 0x531407b0, 0x349b100c, 0x4307109b, 0x4c53e10b, 0x9be40b10, 0x031e0220, + 0x0100002e, 0xb99b4e07, 0x9b10ec33, 0x104c53a7, 0x3fabd207, 0xba0bce07, + 0xc30bd40b, 0x0c071b07, 0xf68e1d0b, 0xc027f54e, 0x0000df27, 0x2c0741e0, + 0xa0073d07, 0x1bbeb107, 0x00c80015, 0x0720271f, 0x071b073d, 0x127bbe0a, + 0x07400700, 0xbe510704, 0x030013c3, 0x0000000f, 0x07f58e80, 0xbe0a071b, + 0x8e0013b3, 0xd00401f5, 0x13011342, 0x44c032b0, 0xa4342049, 0x3c32c042, + 0x45c61411, 0x01071127, 0x3284fe0b, 0x42c60411, 0x010710a7, 0x0311fe0b, + 0x344e1411, 0x10a73106, 0x0221f11e, 0x42da1421, 0x31247af4, 0xca103104, + 0x0442eb04, 0xa7ce3fd6, 0x27d81e10, 0x0b010710, 0xc934c4fe, 0x04111111, + 0xbb1e142b, 0x0301fb4e, 0x012f32d0, 0x2842d014, 0x00fb34e0, 0xc42144c0, + 0x32c42242, 0x1123051d, 0x21241504, 0x31242504, 0x11243504, 0x07141103, + 0x15438b02, 0x07fb8e24, 0xc0fb8e01, 0x0c21fa32, 0xec071421, 0x0b31e42b, + 0xde071331, 0xc867e0c8, 0xfa4c20ec, 0x07008c4c, 0x11b027c4, 0xce141100, + 0x0f667404, 0x30c83b2b, 0x1540277e, 0x352c2524, 0x07213123, 0xd4412341, + 0xffffff4f, 0x2321163f, 0x31231147, 0x21354107, 0x41232325, 0xffff4fd0, + 0x27ee3fff, 0xc8240543, 0x02072810, 0xd1c8fb8e, 0x3b412752, 0x8b41234e, + 0x86d02743, 0x5bd12744, 0x1e3dab3e, 0xcce013a7, 0x1e9920ec, 0x1e3b1be2, + 0x072421a6, 0x83315331, 0x0313ab11, 0x35020741, 0x8e242521, 0x0b1b07fb, + 0x25201513, 0x1e21352c, 0x5e3027b3, 0x3013ff77, 0x24154127, 0x23352c25, + 0xdfe6801e, 0x4127ff67, 0x41234e3b, 0xce0b4b8b, 0x4486d027, 0xbe5bd127, + 0x505ebdab, 0x2a44e4ff, 0x111311ff, 0x2234ee04, 0x25f093ff, 0xfb8effea, + 0x30070001, 0x3c534007, 0x1f4c5317, 0x14152007, 0x2e833f6b, 0xd67fffff, + 0x2728c639, 0x7d3ca743, 0x42071405, 0x47331325, 0x00004f74, 0x44474000, + 0x4fd03123, 0x40000000, 0x351325f6, 0x27fe0b14, 0x0b140542, 0xff3cc0fe, + 0x23273316, 0x2fa37f3c, 0x40000000, 0x12354327, 0x14051325, 0x2516fe0b, + 0x14054427, 0x0e83fe0b, 0x46100000, 0x05412705, 0x0b123514, 0x1e1005fe, + 0x63f54ef9, 0x051f07f1, 0x071403f0, 0xff7a7e0f, 0x4027f341, 0x22532307, + 0x42abf011, 0xf231f121, 0xbe1e3c33, 0x07000c79, 0x8ef14351, 0xa3fb4ef5, + 0x03bf07f2, 0x15f005b8, 0x070f07f1, 0xff4a7e1b, 0xcc03cf07, 0x030f0718, + 0x7e1c0704, 0x0b07ff3c, 0xba7e1c07, 0x8ef283fd, 0x310401fb, 0xd0021103, + 0x44c06442, 0xf6420057, 0x27402735, 0x3304ab00, 0x02ab1f2c, 0x0021fe0b, + 0xff820fc8, 0xcc5bffff, 0x0739800c, 0x7f4c8343, 0xc07f0c03, 0x031e404c, + 0x30c83f3c, 0x53430721, 0x830f6b47, 0x7fffff4e, 0xab170c33, 0x1f2c3304, + 0xfe0b02ab, 0xe3803cd8, 0x1e403c03, 0x033153de, 0x27db1e01, 0x000f2740, + 0x1e7f8000, 0xa34307a9, 0x1000004e, 0xffff4e83, 0x000f277f, 0x1e7f8000, + 0x820f1395, 0xccffffff, 0x27531a0c, 0x23403b41, 0x27438b41, 0x27448610, + 0x07305b11, 0x0701ab03, 0x7f4c8340, 0x3c404cc0, 0x4c034007, 0x5334073f, + 0xd0012737, 0x0000004f, 0x43072040, 0xffff4e83, 0x170c337f, 0x07ff505e, + 0x404c0340, 0x37533407, 0x4fd40127, 0x40000000, 0x1e0027e2, 0x270027de, + 0xdcd81e30, 0x07e1800c, 0x27375330, 0x000f1441, 0x27400000, 0x1e040740, + 0x23fe4ec2, 0x07f005f1, 0x25f1150f, 0x7ef335f2, 0xf103fef9, 0xfd4efe8e, + 0xdf07f163, 0xf005d403, 0x0f071d07, 0x21fe137e, 0x963027f4, 0x07312744, + 0x7ef3250d, 0xf143fed5, 0xfc4efd8e, 0xcf07f2a3, 0xf005c803, 0x0f07f115, + 0xed7e1c07, 0x03df07fd, 0x0f0718dc, 0x1d070403, 0x21fddf7e, 0x1622d0f2, + 0x12f0f161, 0xf4310081, 0x43cbf371, 0x2400f435, 0x6e1822c4, 0x7e0c0712, + 0xf283fe91, 0xf093fc8e, 0x7effe7d8, 0xf283fe85, 0x14c0fc8e, 0x3912c05d, + 0xf481f241, 0x242bf351, 0xf245f191, 0x21231342, 0x3347f245, 0x00002f27, + 0x00274000, 0x2a1f4c27, 0x2b02ab31, 0x47215331, 0x07f49833, 0x7f4c8340, + 0x12404cc0, 0xae1ef055, 0x0c074427, 0x3a7ef425, 0x8ef283fe, 0x800cdcfc, + 0x033166ec, 0x0ce3400c, 0x1ef0557f, 0x1e0d0791, 0x0740278f, 0x55f4450c, + 0x4e851ef4, 0x07f3a3fc, 0x05c803cf, 0x07f115f0, 0x7e1c070f, 0xdf07fd34, + 0x0718dc03, 0x0704030f, 0xfd267e1d, 0x4290f421, 0x32d0f361, 0xdc44e024, + 0xcc34e000, 0x1642c400, 0xf471f331, 0x340e2027, 0x0c072127, 0xd27ef235, + 0x8ef383fd, 0x1632c4fc, 0xf471f331, 0x340e2027, 0x0d072127, 0xba7ef275, + 0x8ef383fd, 0x91f251fc, 0x273027f0, 0xfac6be10, 0x41f381ff, 0x0bd107f4, + 0x27420343, 0x30f4c530, 0xf471f3b5, 0x2107f331, 0x4127342e, 0x3d07f4b5, + 0xc11a20cc, 0x215330f4, 0x31384103, 0x0fa30153, 0x80000000, 0x20c83207, + 0x30f4c5ee, 0x00002fd4, 0xc1234000, 0x091e30f4, 0x2fb40047, 0x40000000, + 0x41232247, 0xa3f200cc, 0xd0004721, 0x0000002f, 0xf4c5ef40, 0x83420730, + 0x4cc07f4c, 0x0f071440, 0x0c034327, 0x34f2c528, 0x2e7ef4a5, 0x8ef383fd, + 0x802cdcfc, 0x030126ea, 0x2ce3402c, 0xe4e01e7f, 0x93ff4f42, 0xffe663f0, + 0xe4ff3d5e, 0x93ff2b32, 0xffe657f0, 0x4eff315e, 0x07f3a3fb, 0x05b803bf, + 0x07f115f0, 0x7e1b070f, 0xcf07fc20, 0x0718cc03, 0x0704030f, 0xfc127e1c, + 0x2f07f471, 0x1c0741c3, 0x07282c03, 0x7ef4750b, 0xce7efae4, 0x8ef383fc, + 0xa3fb4efb, 0x03bf07f3, 0x15f005b8, 0x070f07f1, 0xfbe67e1b, 0xcc03cf07, + 0x030f0718, 0x7e1c0704, 0x2f07fbd8, 0x2c031c07, 0x7e0b0728, 0x9a7efab0, + 0x8ef383fc, 0x23fc4efb, 0x054327f1, 0x08c127f4, 0x36c02700, 0x05422706, + 0x150f07f4, 0xfc7b7efc, 0xfc8ef103, 0xd007c876, 0x071e4c27, 0x35f4250d, + 0x115bbefd, 0xc8012300, 0x4c27e001, 0x2bd03b1e, 0x25fd3540, 0x40d31ef4, + 0x0000000f, 0x13d00780, 0x27d61ed0, 0x0000000f, 0x4ec61ecf, 0x07f2a3fc, + 0x05c803cf, 0x07f115f0, 0x7e1c070f, 0xdf07fb5c, 0x0718dc03, 0x0704030f, + 0xfb4e7e1d, 0x42d0f421, 0x90f46110, 0x070c0742, 0xf9c37e1d, 0xfc8ef283, + 0xf91e0127, 0xf163fe4e, 0xf0051f07, 0x0f071403, 0x11fb277e, 0x274244f4, + 0x8ef14300, 0xf842d0fe, 0xf4314440, 0x88f140c8, 0xf4211f4c, 0x0f2747c6, + 0x80000000, 0xfe8ef143, 0xf321f041, 0x5b1e4c13, 0xd63fc604, 0xf1430013, + 0x0f27fe8e, 0x7fffffff, 0xfe8ef143, 0xf2a3fe4e, 0x1f07f115, 0x1803f005, + 0xd57e0f07, 0x070f07fa, 0x0304031f, 0xc97e181c, 0x90f421fa, 0x27f46142, + 0x83423000, 0x27fe8ef2, 0x8ef28301, 0xa3fc4efe, 0x03cf07f2, 0x15f005c8, + 0x070f07f1, 0xfaa27e1c, 0xdc03df07, 0x030f0718, 0x7e1d0704, 0xf421fa94, + 0x611042d0, 0x074290f4, 0x7e1d070c, 0xf283f909, 0x0127fc8e, 0xfc4ef91e, + 0xcf07f2a3, 0xf005c803, 0x0f07f115, 0x697e1c07, 0x03df07fa, 0x0f0718dc, + 0x1d070403, 0x21fa5b7e, 0x1042d0f4, 0x4290f461, 0x1d070c07, 0x83f8d07e, + 0x27fc8ef2, 0x4ef91e01, 0x07f2a3fc, 0x05c803cf, 0x07f115f0, 0x7e1c070f, + 0xdf07fa30, 0x0718dc03, 0x0704030f, 0xfa227e1d, 0x42d0f421, 0x90f46110, + 0x070c0742, 0xf8977e1d, 0xfc8ef283, 0xf91e00a7, 0xf2a3fc4e, 0xc803cf07, + 0xf115f005, 0x1c070f07, 0x07f9f77e, 0x18dc03df, 0x04030f07, 0xe97e1d07, + 0xd0f421f9, 0xf4611042, 0x0c074290, 0x5e7e1d07, 0x8ef283f8, 0x1e00a7fc, + 0xa3fc4ef9, 0x03cf07f2, 0x15f005c8, 0x070f07f1, 0xf9be7e1c, 0xdc03df07, + 0x030f0718, 0x7e1d0704, 0xf421f9b0, 0x611042d0, 0x074290f4, 0x7e1d070c, + 0xf283f825, 0x0127fc8e, 0xfd4ef91e, 0xd007f123, 0x42270676, 0x0f07f405, + 0xf4154027, 0x03fa547e, 0x27fd8ef1, 0x1e3c2743, 0xf325f405, 0x36bef035, + 0x0123000f, 0xc61c00c8, 0x4c27dd0f, 0x3b402b1e, 0x07f425d0, 0x3540270f, + 0x7ef415fd, 0xf103fa25, 0x2007fd8e, 0x41272013, 0x4123423b, 0x30274d8b, + 0xd25b4636, 0xab1e4c27, 0x35402b3d, 0x1ef425f3, 0x1e3127a6, 0x01fd4eee, + 0x1342d004, 0x32b01301, 0x205d44c0, 0xc042a434, 0x14114832, 0x112745c6, + 0xfd8e0107, 0x04113284, 0x10a742c6, 0xfd8e0107, 0x14110311, 0x3106344e, + 0xf11e10a7, 0x14210221, 0xdaf442da, 0x0d311524, 0x10310e41, 0x1eca1141, + 0x141ecee6, 0xe16ee12a, 0x3fd60d42, 0x1e10a7c2, 0x071027cc, 0xc2fd8e01, + 0x3fd6ebd0, 0xc4b01ecc, 0x1111b534, 0x142b0411, 0xf54ea71e, 0x5027f1a3, + 0x03016027, 0xf645f535, 0x7107c007, 0x8027b207, 0x32d09027, 0xf014012f, + 0xe0017d42, 0xe0024b34, 0xc4017544, 0x32c42442, 0x0732071b, 0x01252740, + 0x05440341, 0xa8340331, 0x11c311f2, 0x8bcb0774, 0x07b41543, 0x8ef1830c, + 0x4b32e0f5, 0x210e2101, 0x41fe2514, 0x07023103, 0x05f315ae, 0x31a42bf2, + 0x071e411d, 0xdfa0e83a, 0x40accc00, 0x7c31e84c, 0x233a0701, 0xf355203c, + 0x60275027, 0x01dc30e8, 0x14074127, 0x2127133b, 0x0a3b0207, 0x40a730a7, + 0x414b300b, 0x4e8b3d8b, 0x34c634ab, 0x60275127, 0x40e8f451, 0x8e0701a4, + 0x9e07845b, 0xd5079a5b, 0xd8abe607, 0x111ee9ab, 0x43faf321, 0x10270106, + 0xf4252027, 0xf215f105, 0x7411c011, 0x00db04ee, 0x00cc0fe6, 0xf411f301, + 0x2e071d07, 0x246b132b, 0x00f220e8, 0xb4154027, 0xb135f421, 0xb245b425, + 0xbd41bc31, 0x40a730a7, 0x4d4b3c0b, 0x00004fd4, 0xe0311000, 0xffffff4f, + 0x2100c00f, 0x534c07b1, 0x3d471f4c, 0x2c4734ab, 0xb235b345, 0xbd41bc31, + 0x30a71123, 0xb12540a7, 0x4d4b3c0b, 0x00004fd0, 0x271e1000, 0xd4b40543, + 0x000000df, 0xcb072c20, 0xf1830c07, 0xa013f58e, 0x6d40acec, 0xff1f5eff, + 0xffff4fc4, 0xd0b70fff, 0xffffff3f, 0x4327b0ff, 0xdfd0b405, 0x20000000, + 0x073c07d6, 0x1f0c330d, 0x31532027, 0xbe214d07, 0x30ab1c07, 0x02074153, + 0x118304ab, 0xe103cb07, 0xb04513ab, 0x0c07f183, 0xbe25b135, 0xc707f58e, + 0xf1830c07, 0xf101f58e, 0x1d2bf211, 0x395e2e6b, 0x11f101ff, 0x0bb015f2, + 0x072e4b1d, 0x07f221d2, 0x35b225c1, 0x5ebd45bc, 0xd027ff73, 0x015ee027, + 0xff3ff4ff, 0x64ffffff, 0xff395eff, 0x3027fd21, 0x312b4027, 0x2127426b, + 0xbd25b215, 0xb445b335, 0xe6ff075e, 0x21fedb3f, 0x232a07f3, 0x3a0b202c, + 0xf325f255, 0x10270027, 0x009120e8, 0x64074127, 0x2127623b, 0x5a3b5207, + 0x30a7f201, 0x350b40a7, 0x328b464b, 0x428bf211, 0x34c634ab, 0x10270127, + 0x30c8f351, 0x5bf41150, 0x11f43543, 0x5bf431f3, 0xab23073a, 0x4521ab40, + 0x15f405f3, 0xfe825ef2, 0x2b204c27, 0x071e074a, 0x5b143b8d, 0x5e81ab8a, + 0x3c27fe52, 0x2b412720, 0x5b14073a, 0xfe205e13, 0xfdd944e4, 0x04111311, + 0xfdd134ee, 0xe06afc93, 0xfdc95eff, 0x11204c27, 0x2bf301f2, 0x5b243b4a, + 0x0742073a, 0x3524ab23, 0x27a11ef2, 0x4127203c, 0x64073a2b, 0x6b5e635b, + 0x11f84eff, 0x0709010a, 0x533a07ba, 0x3c531fbc, 0x07b18314, 0x15ea0703, + 0xff0d831b, 0x07c02707, 0x83d90781, 0x0fffffee, 0x49070e16, 0x45164eab, + 0x14054227, 0x4327f88e, 0x03fd3da7, 0x13251405, 0x1e074907, 0x33184c53, + 0xab090718, 0xd4083314, 0x0000001f, 0xe3071d10, 0x41472007, 0xab1f2c53, + 0x07304742, 0x23140703, 0x004fd0e1, 0xe9100000, 0x80358e25, 0xf88e8145, + 0x07ff0dc0, 0x07290728, 0x182c534e, 0x42ab4833, 0x2fa32407, 0x10000000, + 0x38333907, 0x03ff0d23, 0x23271245, 0x12051025, 0xf88e1335, 0x4eab4907, + 0x44274516, 0xf88e1405, 0x30274e07, 0x00004e83, 0x8634ab08, 0x05412735, + 0x458d3514, 0x05f88e8e, 0x4ef71e13, 0x07f1e3f5, 0x071f0751, 0x07180340, + 0x15f4050f, 0xff237ef5, 0xf461f351, 0x1f831307, 0x3fffffff, 0x04872027, + 0xab1e3c53, 0x8630ab12, 0x2131a314, 0x41f131f0, 0xf6d7bef2, 0x8ef1c3ff, + 0xa3f54ef5, 0x03af07f3, 0xc10710ac, 0x1a07b007, 0xf3350f07, 0x5307f225, + 0xfb05fc15, 0xda7ecf07, 0x24cc03fe, 0x08030f07, 0xce7e1c07, 0x070a07fe, + 0xfbab7e1c, 0xf58ef383, 0x0401f64e, 0xa0279027, 0x0e410d31, 0x42f00811, + 0x44e000c9, 0x424000ba, 0x4eab4d07, 0x002747f6, 0x38071027, 0x43073183, + 0x271f4c33, 0x07b00730, 0xabb3abc1, 0x070b07c4, 0x21f68e1c, 0x020fe800, + 0xb1fffffc, 0x000dec00, 0x07008504, 0x273f6b3d, 0xff0d0340, 0x803cc003, + 0x7f3c2756, 0xd30b4027, 0xefd0e44b, 0x20000000, 0x072e0716, 0x334e073d, + 0x31531f2c, 0x415332ab, 0xe407d307, 0x20070103, 0x0d074e07, 0x2d831e07, + 0x185307ff, 0x4c333207, 0xab085318, 0x33e10704, 0x2027143c, 0xee83d007, + 0x070fffff, 0xab130702, 0x5e1eab0d, 0x4fd6ff76, 0x833d07a9, 0xab01003d, + 0xa73fc634, 0x27803c27, 0x4bd30b40, 0x00efd0e4, 0xb3200000, 0x00279c1e, + 0x00001f27, 0x4b5e7ff0, 0xa34e07ff, 0x0800004e, 0xee83e407, 0x070fffff, + 0xa30d071e, 0xf000001f, 0xff305e7f, 0xfc020f13, 0x0cecffff, 0x0700ba39, + 0x201c2310, 0x70276027, 0x00b510e8, 0xc4074127, 0x2127c13b, 0xb03bb207, + 0x40a730a7, 0x4c4b3b0b, 0x4e8b3d8b, 0x34c634ab, 0x70276127, 0x009f10e8, + 0x915b9e07, 0xd9abd607, 0x3d07ae07, 0xe707a05b, 0xeaab3f6b, 0x3cc04027, + 0x3c274480, 0x0b40277f, 0x074e4b3d, 0x182c3324, 0x4f14c127, 0x10000000, + 0x0307c027, 0x14070853, 0x185302ab, 0x3d833c07, 0x430707ff, 0x4c33e107, + 0x07302714, 0xffee83d0, 0x03070fff, 0x0dab1407, 0x975e1eab, 0xbb4fd6fe, + 0x3d833d07, 0x40270100, 0x3cb634ab, 0x4c334e07, 0x14c12718, 0x000000ef, + 0x07c02710, 0x0708530d, 0x5304ab1e, 0x27b61e18, 0x270027c0, 0x27ae1e10, + 0x4127203c, 0xc407302b, 0x475ec35b, 0x204c27ff, 0x3e07402b, 0x343b9d07, + 0x93ab905b, 0x27ff575e, 0x6a5e803c, 0x63f54eff, 0x07f005f1, 0x25f1150f, + 0x45f335f2, 0xfe0a7ef4, 0xf1435107, 0xf54ef58e, 0xdf07f1e3, 0x4007d803, + 0x0f075107, 0xf4051d07, 0xae7ef515, 0x27f431fc, 0x27449630, 0x350d0731, + 0xfdde7ef3, 0xf1c35107, 0xf54ef58e, 0xc107f3e3, 0xb0071f07, 0x07101c03, + 0x35f2250f, 0x05fc15f3, 0xfc7f7efb, 0xdc03df07, 0x030f0724, 0x7e1d0708, + 0xf241fc71, 0x911622d0, 0x0912f0f1, 0xa1f45101, 0x5543cbf3, 0xc42400f4, + 0x12ae1f22, 0x0c030f07, 0xfd8e7e10, 0xf3c35107, 0xf093f58e, 0x7effdc84, + 0x5107fd80, 0xf58ef3c3, 0x00df14e0, 0x617f12c0, 0x81f4b1f1, 0xc1142bfc, + 0xf16534f8, 0xf7c1fb71, 0x84c8ea30, 0x7d8cce00, 0x273d4c27, 0x00af2790, + 0x27100000, 0xc5602750, 0xd50738f4, 0x4a07e607, 0xeaabd9ab, 0x8a1f4c33, + 0x548ccec8, 0x6e075d07, 0xc86bb72b, 0x21532907, 0x4b0724ab, 0x471f4c53, + 0xc114ab1c, 0x3a0738f4, 0x31534123, 0xf4c50b47, 0x07920738, 0x07b007a3, + 0xbf4fd6c1, 0x3f6b3507, 0x3cc04027, 0xf5753880, 0x615ef685, 0x270f07ff, + 0x100c0344, 0xe97ef445, 0xc35107fc, 0xcaf58ef3, 0xa91eb3b7, 0x07827bc2, + 0x534c472b, 0x42ab1f2c, 0x11233b47, 0xc407b307, 0x6d5ef165, 0xc74fd6ff, + 0x3d833507, 0x34ab0100, 0x07bc3fd6, 0xc641ab40, 0x3c27b54f, 0x0b402780, + 0x07464b35, 0xff5ce353, 0xa31e6407, 0x0a5e0d07, 0x270f07ff, 0x27402730, + 0x100c0320, 0xf485f375, 0xf65ef265, 0xe3f54efe, 0x03af07f5, 0xb00710ac, + 0x0f07c107, 0xf3351a07, 0xfc15f225, 0x2a7efb05, 0x03df07fb, 0x0f0724dc, + 0x1d070803, 0x41fb1c7e, 0x914290f4, 0x2632d0f3, 0x01f344e0, 0x01e334e0, + 0x511842c4, 0x27f4a1f3, 0x27340e20, 0x550a0721, 0xfc367ef2, 0xf5c35107, + 0x32c4f58e, 0xa1f35118, 0x0e2027f4, 0x07212734, 0x7ef2a50d, 0x5107fc1c, + 0xf58ef5c3, 0x7130fbc1, 0x27a027f7, 0xc12b0760, 0x360734fc, 0x07071a07, + 0xffeebbbe, 0x30275b07, 0xfbc5bc07, 0x50f3c54c, 0xc554f0c5, 0xf0c158f1, + 0x50f1c14c, 0xf8813a07, 0x99be2707, 0xc027ffee, 0xa1079007, 0x36072507, + 0x1c070807, 0xffee87be, 0xe107d007, 0xea4bd90b, 0xeaeab807, 0xaeee00fd, + 0x102700f5, 0xc154f3c1, 0x910758f4, 0x930bad07, 0x7027a44b, 0xa4ea8027, + 0xf4c100f9, 0x2c4aee58, 0x50f3c101, 0x074cf2c1, 0x071c070b, 0xee46bebe, + 0x61f3b1ff, 0x0bc027f4, 0x27440343, 0x40f4c530, 0xa13cf3c5, 0x0bf351f4, + 0x0bc14bb0, 0x2ec84bb7, 0xc5412734, 0xcfd03cf4, 0x20000000, 0x40fec13f, + 0x1b074c07, 0x531f4c33, 0x072c0711, 0x5314ab0a, 0x1f0c3321, 0xb1d8e103, + 0x07390715, 0x5331534a, 0x0730ab41, 0xa39307a4, 0x000000af, 0x07b10780, + 0x002fd4c2, 0xc9200000, 0xd440fec5, 0x000000cf, 0xfec13110, 0x53490740, + 0x2b071f4c, 0x14ab1a47, 0x471f2c53, 0x4742ab4c, 0x0709473b, 0x23c407b3, + 0x59a0c8e1, 0xa1079007, 0x0000cfd0, 0xc5d71000, 0x3b0740fe, 0x40273f6b, + 0x49803cc0, 0x43270f07, 0xc5380c03, 0xfcc544fb, 0x38f4c548, 0x07facb7e, + 0x8ef5c351, 0x0b9de2f5, 0xc11027ff, 0xf4c154f3, 0x07910758, 0x4b930bad, + 0x277027a4, 0x0b4ae281, 0x273127ff, 0x4b730b40, 0xff075e84, 0xb30731a3, + 0xa11ec407, 0x07b64fd6, 0x003d833b, 0xd634ab01, 0x4907ab3f, 0x4fc64aab, + 0x803c27a4, 0x3b0b4027, 0xb3074c4b, 0x07ffbce3, 0xe2921ec4, 0x1efed439, + 0x3a42e4c1, 0x61f093fe, 0x265effd9, 0x1432e4fe, 0x55f093fe, 0x1a5effd9, + 0xe3f54efe, 0x03af07f4, 0xc10710ac, 0x1a07b007, 0xf3350f07, 0xfc15f225, + 0xcf07fb05, 0x03f8f47e, 0x0f0724cc, 0x1c070803, 0xa1f8e87e, 0xc32f07f4, + 0x031c0741, 0x0a07382c, 0x2f7ef4a5, 0xfa127ef6, 0xf4c35107, 0xf54ef58e, + 0xaf07f4e3, 0x0710ac03, 0x07b007c1, 0x350f071a, 0x15f225f3, 0x07fb05fc, + 0xf8af7ecf, 0x0724cc03, 0x0708030f, 0xf8a37e1c, 0x1c072f07, 0x07382c03, + 0xf5f07e0a, 0x07f9d37e, 0x8ef4c351, 0x63fb4ef5, 0x054327f1, 0x08b127f4, + 0x36b02700, 0x05422707, 0x150f07f4, 0xf9b27efb, 0x41073007, 0x14070307, + 0xfb8ef143, 0x4007bb36, 0xd0270407, 0x4c27c407, 0x35f4253c, 0xbefd45f0, + 0x07000425, 0x1d1c0310, 0x23cf11c8, 0x2300c803, 0x403b4c07, 0x4c07f445, + 0x3b3c3c27, 0x35312b41, 0x1ef325f4, 0x000fc0b5, 0x1a800000, 0x40134007, + 0x4c27bf1e, 0x07412b20, 0x5b3d072c, 0xab313b24, 0x1ef34532, 0x273027d2, + 0xe000004f, 0x4e961ec1, 0x07f3a3f5, 0x10dc03df, 0x51074007, 0x1d070f07, + 0xc307f405, 0xf225f335, 0xbf07f515, 0x03f7e47e, 0x0f0724bc, 0x1b070803, + 0x41f7d87e, 0x1042d0f4, 0x4290f491, 0x1b070d07, 0x83f4ac7e, 0x27f58ef3, + 0x4ef91e01, 0x07f1e3f5, 0x071f0751, 0x07180340, 0x15f4050f, 0xf7ab7ef5, + 0x4244f421, 0xf1c30027, 0x42d0f58e, 0x414440f8, 0xf140c8f4, 0x311f4c88, + 0x274946f4, 0x0000000f, 0x8ef1c380, 0x3cec27f5, 0x4e07e42b, 0xc8204c23, + 0xf2611c40, 0x045b0207, 0x4fc6f431, 0xc30013ca, 0x27f58ef1, 0xffffff0f, + 0x8ef1c37f, 0x27f261f5, 0x4e2b204c, 0x343b3207, 0xf3514307, 0x0e5b0307, + 0xd51e04ab, 0xf3a3f54e, 0x1f075107, 0x1c034007, 0x050f0710, 0x07b207f4, + 0x25f335c3, 0x7ef515f2, 0x0f07f729, 0x08031f07, 0x7e241c03, 0xf441f71d, + 0xf4914290, 0x42300027, 0xf58ef383, 0xf3830127, 0xf54ef58e, 0xdf07f3a3, + 0x0710dc03, 0x07510740, 0x051d070f, 0x35c307f4, 0x15f225f3, 0x7ebf07f5, + 0xbc03f6e9, 0x030f0724, 0x7e1b0708, 0xf441f6dd, 0x911042d0, 0x074290f4, + 0x7e1b070d, 0xf383f3b1, 0x0127f58e, 0xf54ef91e, 0xdf07f3a3, 0x0710dc03, + 0x07510740, 0x051d070f, 0x35c307f4, 0x15f225f3, 0x7ebf07f5, 0xbc03f6a5, + 0x030f0724, 0x7e1b0708, 0xf441f699, 0x911042d0, 0x074290f4, 0x7e1b070d, + 0xf383f36d, 0x0127f58e, 0xf54ef91e, 0xdf07f3a3, 0x0710dc03, 0x07510740, + 0x051d070f, 0x35c307f4, 0x15f225f3, 0x7ebf07f5, 0xbc03f661, 0x030f0724, + 0x7e1b0708, 0xf441f655, 0x911042d0, 0x074290f4, 0x7e1b070d, 0xf383f329, + 0x00a7f58e, 0xf54ef91e, 0xdf07f3a3, 0x0710dc03, 0x07510740, 0x051d070f, + 0x35c307f4, 0x15f225f3, 0x7ebf07f5, 0xbc03f61d, 0x030f0724, 0x7e1b0708, + 0xf441f611, 0x911042d0, 0x074290f4, 0x7e1b070d, 0xf383f2e5, 0x00a7f58e, + 0xf54ef91e, 0xdf07f3a3, 0x0710dc03, 0x07510740, 0x051d070f, 0x35c307f4, + 0x15f225f3, 0x7ebf07f5, 0xbc03f5d9, 0x030f0724, 0x7e1b0708, 0xf441f5cd, + 0x911042d0, 0x074290f4, 0x7e1b070d, 0xf383f2a1, 0x0127f58e, 0xf54ef91e, + 0xa027f163, 0x8027b027, 0x06b69027, 0xf4054227, 0x40270f07, 0xd97ef415, + 0x435107f6, 0x27f58ef1, 0x274327d0, 0xc0073c3c, 0xf325f405, 0xfd45f035, + 0x000154be, 0x1c031007, 0x2c10c81d, 0x23d21fc6, 0x8200e803, 0x3b4c0700, + 0x07f44540, 0x27413b4c, 0xf4353c3c, 0x0f07312b, 0xf3254027, 0x917ef415, + 0x435107f6, 0x07f58ef1, 0x07e013e1, 0x200c230e, 0x70276027, 0x274200c8, + 0x3bb40741, 0x072127b0, 0xa7ae3ba2, 0x0b40a730, 0x8b4b4b3a, 0xab4d8b3c, + 0x2734c634, 0xc8702761, 0x8d074000, 0x9d07805b, 0x47079e5b, 0x073c2c27, + 0x2b49ab36, 0x3538ab21, 0x25f445f3, 0xff5a5ef2, 0x27203c27, 0x073e2b41, + 0x1eb35bb4, 0x204c27b9, 0x2c07412b, 0x245b3d07, 0x32ab313b, 0x745ef345, + 0x204c27ff, 0x3d074e2b, 0x343b8c07, 0x83ab8e5b, 0xfe4eb51e, 0x100c0088, + 0x21271013, 0x4e9efe0e, 0x00130000, 0x21271068, 0x000044be, 0xfe8e0013, + 0xf31e1013, 0x00c8fd4e, 0xc8d02712, 0x20271410, 0x00002cbe, 0x0013d486, + 0x0013fd8e, 0x10ccd127, 0x271013ee, 0x07d4d641, 0x27e41ed4, 0x1ed40740, + 0x9e2127de, 0x27000009, 0x00039e20, 0xc2fe4e00, 0x10c83601, 0x27412733, + 0x1147203c, 0x01c24447, 0x07f3f021, 0x26e63027, 0x10ccfe8e, 0x2a3027ee, + 0xab012b01, 0x53415334, 0xb642d611, 0x8e030721, 0x274066fe, 0x27e91e30, + 0x1e302741, 0x000ed4e3, 0xd4170100, 0x3a01000d, 0x035b3027, 0x662400f9, + 0x4c270005, 0x0b041b20, 0x000fb0fe, 0x27010000, 0x035b183c, 0x662400f9, + 0x48270005, 0xfe0b041b, 0x07104c27, 0xf9035b34, 0x05662400, 0x0b041b00, + 0x5b3827fe, 0x2400f903, 0x27000566, 0x041b184c, 0x0000fe0b, 0x00000000, + 0x0001b35a, 0x0001b35f, 0x0001b367, 0x0001b36f, 0x0001b375, 0x0001b37c, + 0x0001b387, 0x0001b390, 0x0001b399, 0x0001b39d, 0x0001b3a3, 0x0001b3ad, + 0x0001b3b5, 0x0001b3c3, 0x0001b3d0, 0x0001b3d7, 0x0001b3e3, 0x0001b3ed, + 0x0001b3f8, 0x0001b35a, 0x0001b403, 0x0001b40b, 0x0001b413, 0x0001b437, + 0x0001b417, 0x0001b367, 0x0001b420, 0x0001b42a, 0x0001b434, 0x0001b43e, + 0x0001b448, 0x0001b450, 0x0001b459, 0x0001b45f, 0x0001b466, 0x0001b46c, + 0x0001b477, 0x0001b481, 0x0001b35a, 0x0001b403, 0x0001b487, 0x0001b490, + 0x0001b499, 0x0001b49d, 0x0001b4a4, 0x0001b4ac, 0x0001b4b6, 0x0001b4bd, + 0x0001b4c5, 0x0001b4d0, 0x0001b4d4, 0x0001b4dc, 0x0001b4e6, 0x0001b4ef, + 0x0001b4f4, 0x0001b4fc, 0x0001b508, 0x0001b50e, 0x0001b519, 0x0001b523, + 0x0001b52b, 0x0001b35a, 0x0001b403, 0x0001b53a, 0x0001b544, 0x0001b54f, + 0x0001b55c, 0x0001b563, 0x0001b566, 0x0001b56d, 0x0001b573, 0x0001b57d, + 0x0001b586, 0x0001b58d, 0x0001b594, 0x0001b523, 0x0001b35a, 0x0001b403, + 0x0001b59c, 0x0001b5a7, 0x0001b5af, 0x0001b437, 0x0001b5b3, 0x0001b5c1, + 0x0001b5c9, 0x0001b5d4, 0x0001b3fd, 0x0001b5dd, 0x0001b5e9, 0x0001b5f4, + 0x0001b5fe, 0x0001b609, 0x0001b610, 0x0001b61e, 0x0001b62d, 0x0001b35a, + 0x0001b632, 0x0001b637, 0x0001b641, 0x0001b645, 0x0001b64d, 0x0001b655, + 0x0001b65f, 0x0001b430, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, +}; +const int fw_h264enc_size = 361472; + +int get_fw_h264enc(unsigned char **data) +{ + *data = (unsigned char *)fw_h264enc; + return fw_h264enc_size; +} diff --git a/drivers/media/platform/canaan/vpu/fw_hevcdec.c b/drivers/media/platform/canaan/vpu/fw_hevcdec.c new file mode 100644 index 0000000000000..c1c0c94b3e4bf --- /dev/null +++ b/drivers/media/platform/canaan/vpu/fw_hevcdec.c @@ -0,0 +1,9181 @@ +// SPDX-License-Identifier: GPL-2.0-only +/* + * Copyright (c) 2024, Canaan Bright Sight Co., Ltd + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND + * CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, + * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, + * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + */ + +#include "mvx_firmware_cache.h" + +const unsigned int fw_hevcdec[] __aligned(0x1000) = { + 0x0000eb5e, 0x02020305, 0x33363635, 0x32303137, 0x43564548, 0x63654420, + 0x7265646f, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x43564548, 0x20434544, + 0x33346332, 0x31643430, 0x30703172, 0x6530302d, 0x00306361, 0x00000000, + 0x00035900, 0x00037000, 0x0000001e, 0x3ee77fff, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00050000, 0x00004390, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x01a70d27, + 0x6ea7f07b, 0x53fdcfff, 0x530207f0, 0xa50183f1, 0x27609561, 0x25601501, + 0x15002760, 0x9b602560, 0x6ea70ef0, 0x01fd4fff, 0x33110361, 0xc512a314, + 0x60c13861, 0xf810ce38, 0xffff1ea7, 0x213127ff, 0x99240714, 0x6c402416, + 0x27659680, 0x169d806c, 0x27612724, 0x0e210330, 0x07202762, 0x19520b51, + 0xce0b6650, 0x3826f042, 0x139d3327, 0xbd31270d, 0x27063a13, 0x0ef09b00, + 0xa70f1099, 0xfd4fff6e, 0x600b0233, 0x274063c5, 0x0ef39b30, 0x4fff6ea7, + 0x3863c5fd, 0x10000d27, 0x871ef0e8, 0x01271225, 0x1399501d, 0x0353070c, + 0x0c139d31, 0x2c333207, 0x04f29b18, 0x0ea721a3, 0x05feffff, 0x9b202702, + 0x03150ef2, 0x2708059d, 0x9302000d, 0x046dc3f1, 0x04002d27, 0x0706f09b, + 0x35f193f1, 0x10010446, 0x01270b36, 0xf0931005, 0x930360a8, 0x035e23f3, + 0x011e03c2, 0x803c0331, 0x93f930ca, 0x035e13f3, 0x548ef293, 0x03210103, + 0x03310524, 0xf630ca34, 0x00024ebe, 0xf09b0027, 0x0276be0b, 0x27012700, + 0x06f09b10, 0xfd1eff8b, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x01a70d27, 0x6ea7f07b, + 0x93feffff, 0x000a93f1, 0x937f1ce3, 0x000e1bf2, 0x05b66001, 0x9bfa21d2, + 0x1c030ff1, 0xe3f21e80, 0x04f09b01, 0x02000d27, 0xb24ef193, 0x022d2704, + 0x06f09b40, 0x61bef107, 0xff8b000a, 0x0000fd1e, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x01a70d27, 0x6ea7f07b, 0x93feffff, 0x00020cf1, 0x937f1ce3, 0x000a0bf2, + 0x05b66001, 0x9bfa21d2, 0x1c030ff1, 0xe3f21e80, 0x04f09b01, 0x02000d27, + 0x7ccef193, 0x012d2704, 0x06f09b40, 0xf1bef107, 0xff8b0001, 0x0000fd1e, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x01a70d27, 0x6ea7f07b, 0x93feffff, 0x000d23f1, + 0x937f1ce3, 0x000f96f2, 0x05b66001, 0x9bfa21d2, 0x1c030ff1, 0xe3f21e80, + 0x04f09b01, 0x02000d27, 0xbccef193, 0x032d2704, 0x06f09b40, 0xf1bef107, + 0xff8b000c, 0x0000fd1e, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x01a70d27, 0x6ea7f07b, + 0x93feffff, 0x000f1ef1, 0x937f1ce3, 0x001024f2, 0x05b66001, 0x9bfa21d2, + 0x1c030ff1, 0xe3f21e80, 0x04f09b01, 0x02000d27, 0xd64ef193, 0x042d2704, + 0x06f09b40, 0xecbef107, 0xff8b000e, 0xf09bfd1e, 0x07fe0b06, 0x4efe0b0f, + 0x25fd93f5, 0xd0010000, 0xf08b0506, 0xf71ed403, 0xf54ef58e, 0x0016fd93, + 0x06d00100, 0x03f08b05, 0x8ef71ed4, 0x000000f5, 0x00000000, 0x00000000, + 0xf4abfa4e, 0x35faf493, 0xa7f41b01, 0xfd9fff3e, 0x04024d27, 0x34153425, + 0x001145be, 0xffff0ea7, 0xff1ea7ff, 0x031efd4f, 0x0499f2e8, 0x2713010e, + 0xd8437b26, 0xaea7f341, 0x11feffff, 0x3834f9a3, 0xe3ff000a, 0x3834fd41, + 0xa7ff000a, 0xfdcfffbe, 0xf093c127, 0x27035dac, 0x68bcc510, 0x0011e1be, + 0xfcebf4ab, 0x000f82be, 0x0027f4ab, 0x0011bfbe, 0xf49b4027, 0x0ef49b0b, + 0xa3bd3227, 0xbcc50d94, 0x0ef49b40, 0x9fff3ea7, 0x68bcc5fd, 0x40273415, + 0x070ef49b, 0x1eff8b00, 0x000000f6, 0x000492b8, 0x000492d0, 0x00100000, + 0x00049170, 0x00049238, 0xf0e3f54e, 0x394af493, 0x27f41b01, 0x274ea730, + 0x4305fefd, 0x2ea74315, 0x05fefd1f, 0xa7231523, 0xfef9974e, 0x43154305, + 0xf98f2ea7, 0x152305fe, 0xff1ea723, 0x4e27ebff, 0x15c00000, 0xa12d2714, + 0x5c12c580, 0xffff0ea7, 0x0c4f27e7, 0x05800000, 0x332ea704, 0x2325fefd, + 0x0ac5a127, 0x71f49350, 0xf193047a, 0x93047bbc, 0x047bbffe, 0x7bc2fc93, + 0xc5fb9304, 0x4315047b, 0xe3151315, 0xb315c315, 0x23152305, 0x13054305, + 0xc305e305, 0xf39bb305, 0xff2ea70e, 0xf493fdcf, 0xb5fffdb8, 0x352a3524, + 0x2df49323, 0x24c5fffe, 0x452a4530, 0xff4ea723, 0x4a15efff, 0x8fff2ea7, + 0x254227fd, 0x21241524, 0x7df69323, 0x3da3047b, 0x23252800, 0x18272411, + 0x28004da3, 0xf3932415, 0xa7047d48, 0xf7ffff4e, 0xc54041c5, 0xf313bc63, + 0x7f3ce3fe, 0x0ea73103, 0xd1feffff, 0x27014804, 0x1143c026, 0x1d203ff4, + 0x05eb0000, 0x030ff39b, 0xe81e803c, 0x01d13027, 0x63bd0148, 0x03ad0151, + 0x20a70142, 0x64bd4027, 0x62d5014c, 0x63bd0158, 0x62d5014d, 0x63bd0154, + 0x63ad0152, 0x63bd014e, 0x13c00150, 0xff2ea711, 0x4627feff, 0x23d1f4e8, + 0x33c40148, 0xf5f293f6, 0x4ea7047a, 0x07ffffff, 0x2843d112, 0x971c0306, + 0x014863d5, 0xe37f1ce3, 0x24197f2c, 0xc2802c03, 0xf393f921, 0x27047ad0, + 0x264c2720, 0x34033205, 0x4ea7f4c8, 0x65fef29b, 0x27f3ab64, 0x93f4eb41, + 0x04753ff2, 0x7dddf393, 0x7f2ce304, 0x157f3ce3, 0xa7f325f2, 0xffffff1e, + 0x0a4414d1, 0x05304fe6, 0x8fff2ea7, 0xa32411fd, 0x2415104c, 0x27bc6cc1, + 0x27c41d40, 0x25f453b2, 0x074001fe, 0x3a9bbe1c, 0x4c64b900, 0x1b4ff601, + 0x93b19605, 0x047a63f3, 0x27bc32c1, 0x60249911, 0x012c23d1, 0x10274496, + 0xfc0e1c33, 0x0549403c, 0x23892481, 0x8541ab28, 0xe0920724, 0x1105bf31, + 0x213419f3, 0x803c03f4, 0x27f734c2, 0xaf1ea7c0, 0x1c05fdeb, 0x00003f27, + 0x13150e03, 0xf19320a7, 0x8d0478b4, 0x92c11412, 0x8d40a758, 0x1c15ec14, + 0x013414d5, 0x013814d5, 0x013c14d5, 0x014014d5, 0x8d5c148d, 0x1205a414, + 0xfc9b1925, 0xa73ea70e, 0x3c05fdeb, 0x00004f27, 0x34150e83, 0x030efc9b, + 0x273c0538, 0x0300004f, 0x9b34150f, 0x38030efc, 0x4f273c05, 0x0f830000, + 0xfc9b3415, 0x873ea70e, 0x3c05fdeb, 0x00004f27, 0x34151302, 0x010efc9b, + 0x1f4ea713, 0x4305fde6, 0x07602c27, 0x03421519, 0x3ea7641c, 0x35fde60f, + 0x244c274c, 0x32153405, 0x3c350027, 0x02e472be, 0x93729489, 0x047817f3, + 0x9910348d, 0x91899893, 0x74908972, 0x3b629499, 0x93033b13, 0x041e83f2, + 0x4ce0e027, 0x2704daff, 0x9d433b41, 0x245d0424, 0x9399231d, 0x2b245994, + 0x7d412b13, 0x96939924, 0x2b042499, 0x2b2e3d03, 0x9d233940, 0x3fe60524, + 0x3f27048e, 0xc400069a, 0x028a4f27, 0xf193c700, 0x35041e40, 0x93132514, + 0x0477b3f2, 0x016493c1, 0xbc65c124, 0x2435430b, 0x276e5399, 0xe0f40540, + 0x9904773a, 0x30279a54, 0x31274496, 0x78f2f293, 0xa2239d04, 0x27ce9499, + 0x93433b10, 0x0478e3f3, 0x27a3349d, 0xd9f49320, 0x30270478, 0x9da6439d, + 0x42c5a141, 0xa4418dac, 0x99a842c5, 0x5399a254, 0xcd4fe6a1, 0x404c2703, + 0xfc62f153, 0x4f004f03, 0x10010001, 0x015c64d5, 0xbec497c1, 0x2702e7b1, + 0xff4ea731, 0xf253f7ff, 0x43c5fc48, 0x2724014c, 0x2027103c, 0x44034205, + 0xb027f3c8, 0xdc27a027, 0x3b412711, 0xe6478b4a, 0x47008a4f, 0x0b4e07ea, + 0xd0419949, 0x81038e07, 0x3aff1ce0, 0x07310703, 0x33333341, 0xf1432b45, + 0x0001984c, 0x0b4807ff, 0xd0429949, 0x15ff2ce0, 0x07320703, 0x33333342, + 0xf1432b45, 0x00019040, 0x9a9499ff, 0xcee04616, 0x0b100000, 0x000ee003, + 0x030b1000, 0x012c94d1, 0x04004ddc, 0x074b872f, 0x804cf53b, 0x03ff0a3f, + 0xd0ebfd31, 0xfd000492, 0x049310b1, 0xf5438700, 0x0a3f8040, 0x1032fdff, + 0xfd000493, 0x0492d083, 0x03b20300, 0x6afdf8a1, 0x6b4b07ff, 0x5264bd4f, + 0x93479601, 0x0477dbf1, 0x015c13d1, 0xffff4ea7, 0x8043e5f7, 0x43e5023f, + 0x03023f84, 0x20bcd4b2, 0x203c2717, 0x00002e27, 0x873b2b10, 0x8042f54b, + 0x03ff0a3f, 0x53f398b1, 0x01fb53f1, 0xd540a710, 0xd5015864, 0xbe015464, + 0xa702e4d2, 0xf7ffff2e, 0x08e34d27, 0x35989399, 0x94548924, 0x648d3347, + 0x514d279c, 0x89244504, 0x61c19652, 0x8d3823bc, 0x41279e62, 0x12c1433b, + 0xfdf393a0, 0x34050475, 0xff002efc, 0x27029bff, 0x27302700, 0x98949910, + 0x23bc62c1, 0x33438343, 0x4da31a4c, 0x40ab0210, 0x43ab41ab, 0x64c53127, + 0xac63c5a8, 0x99a22499, 0x4383a12d, 0xd433d383, 0x90994833, 0xa3d4ab98, + 0x9006e0db, 0xe0b12702, 0x0301de05, 0xff2ea7b2, 0x2321efff, 0x3dcb2431, + 0x43ab4bcb, 0x24a14a86, 0x00004fdc, 0x07214000, 0xa1f453c2, 0x274001fa, + 0x27c40541, 0xa7be1a1c, 0x402702e4, 0xc3a1c405, 0x00003fd8, 0xa7e34000, + 0xefffff4e, 0x4b354d25, 0xefff3ea7, 0xd54327fd, 0xc1027034, 0x48dc7034, + 0xff2ea7fb, 0x24c1fdef, 0x004ddc70, 0x4427f908, 0x027024d5, 0x027424d5, + 0x23d53027, 0x2ea70660, 0x05fdeb8f, 0x004f2723, 0x1512c200, 0x0ef39b24, + 0xe62f2ea7, 0x184c27fd, 0x23152405, 0x00004f27, 0x24352000, 0xe66c5399, + 0x8901633f, 0x4fe6a854, 0x4127015c, 0x9db9649d, 0x649da164, 0xbc63c1b8, + 0x83283489, 0xc680004d, 0x4434c145, 0x812841dc, 0xc04cdc34, 0x49f19322, + 0x14990476, 0xae4fe6a2, 0x1f1c2701, 0x99a36499, 0x2107a663, 0x138b248b, + 0x9da3629d, 0x62b9a661, 0x2fe60152, 0xf293013f, 0xb9047620, 0x0701a024, + 0x33353334, 0xe9342b43, 0x00019c34, 0x9c248dff, 0x019e31e9, 0x218dff00, + 0xa031e99e, 0xc1ff0001, 0x3489bc63, 0x004d8328, 0xc1456680, 0x42384434, + 0x17e31703, 0x2ff6f201, 0xd12700da, 0x00d411e0, 0xf98ef353, 0xfcbe3001, + 0xf4530034, 0x4201f988, 0x04271027, 0xe02730a7, 0x3027230d, 0x8d17219d, + 0x219d1221, 0x18239d16, 0x8d102e8d, 0x1103142e, 0xf0202c03, 0x4d07dff0, + 0x648d4013, 0x46f401f8, 0x95f19345, 0x1e9d0475, 0x45f253fe, 0xbe2001f9, + 0xa702e798, 0xf7ffff3e, 0x4cf83401, 0x53010820, 0x01f923f4, 0xe47fbe40, + 0xff1ea702, 0x14d1ffff, 0x4ff60a44, 0x3ea7fad4, 0x11fd8fff, 0x104ce334, + 0xd15e3415, 0x5ef2e8fa, 0xf153fa03, 0x1001f8f8, 0x95be1c07, 0xb00702e4, + 0xfac3bff6, 0x27fad65e, 0xfe215eb0, 0xf8e6f353, 0xf65e3001, 0xddf253fc, + 0x5e2c01f8, 0xc007fcd1, 0xf95e1207, 0x070c07fc, 0xfcf25e21, 0x649d4027, + 0xa1649db9, 0x5eb8649d, 0xd027fea5, 0x81ff2b5e, 0xa3020724, 0x8540004d, + 0x2d35be24, 0xfa555e00, 0x34964127, 0x46334027, 0x27fc2f5e, 0xf393104c, + 0x930474e0, 0x0474dbf1, 0x279e348d, 0xa3139d30, 0x129d3027, 0xa4138da6, + 0x279c148d, 0xfec95e11, 0x99a21499, 0x1227a113, 0x3213142b, 0x17833783, + 0x33143c33, 0x0e27171c, 0x5e040000, 0x3f27fd51, 0xe4000100, 0x01004f27, + 0x735ee700, 0x0f1c27fb, 0x27fe535e, 0xfd775eb0, 0xf1051127, 0x27fb865e, + 0xfb255ee1, 0xa9be0207, 0xd85e002d, 0x27d307f9, 0xf35328cc, 0x3001f818, + 0xc50d1c27, 0x1fbe40dc, 0x482702e2, 0x0140d4c5, 0x203cfcd3, 0xe31efedb, + 0xf493fb4e, 0x1b01337c, 0xff3ea7f4, 0x3499ffff, 0x99469611, 0x45f61234, + 0xe8d2f493, 0xd6441904, 0xfd68be44, 0x0f3c2700, 0xbfff4ea7, 0x274335fd, + 0x4ea75f3c, 0xc5fd4fff, 0x3c273443, 0xff4ea7b6, 0x43d5fdef, 0x7ebe0f04, + 0x3ea70103, 0x27fd7fff, 0x80000a4e, 0x42273415, 0x62be3425, 0x3ea70082, + 0x99ffffff, 0x44c61134, 0x231eb027, 0x27123499, 0x274486b1, 0x93b726b0, + 0x04e873f4, 0x46064419, 0x3c243499, 0x29be7f4c, 0x34be0039, 0x2ea70039, + 0x99ffffff, 0xcea71124, 0x03feffff, 0x11249d41, 0xc4d54327, 0x1ea70148, + 0x01fd4fff, 0x07d12714, 0x07343b3d, 0x0e239943, 0x34ab4f6b, 0xc50e239d, + 0x40273c14, 0x270ef49b, 0x3ae4be01, 0x99c0bd00, 0x300cd80d, 0x100c3814, + 0xcfff4ea7, 0x644dc5fd, 0xcfff4ea7, 0x604dc5fd, 0x4ea7bf86, 0xd1ffffff, + 0x060a4441, 0xff2ea718, 0x2441fdaf, 0x7fff3ea7, 0x05410bfd, 0xe3342124, + 0x3425104c, 0x4ca33411, 0x93341510, 0x04e7d7fc, 0xb1bec019, 0xc419003d, + 0x0d274816, 0x71be0d78, 0xf493003c, 0x0504e7b8, 0x000d2740, 0x3c62be04, + 0xadf49300, 0x400504e7, 0x006f1cbe, 0xf49b4027, 0xffbea70e, 0x3ea7feff, + 0xb9fd4fff, 0xc50140b2, 0x25c63834, 0x0d99b0b9, 0x01830453, 0x006f2ebe, + 0xffeb0ea7, 0x0110beff, 0x3927be01, 0xeb0ea700, 0xe0beffff, 0x62be0100, + 0xf4ab0080, 0xfcebc127, 0x7fffdea7, 0xf264befd, 0x83d41102, 0xd415184c, + 0x00804abe, 0x0101f0be, 0x0141b4b9, 0x4ea74526, 0x45d07fff, 0x36f4934c, + 0x441904a6, 0x01274726, 0x0036efbe, 0xc7befcab, 0xd411003d, 0x00004ee3, + 0xebd41504, 0x27f1abfc, 0xc0041e20, 0x24f92122, 0xff010d94, 0x872142d0, + 0x0044f142, 0xd8ff0230, 0x42071644, 0x41033527, 0x4610322b, 0x21033127, + 0x27d9f3f0, 0x27031e41, 0x56f1eb40, 0xa731274d, 0xfdcfff4e, 0xab6043c5, + 0x1e2027f1, 0x2122c004, 0x0d9424f9, 0x42d0ff01, 0xf1428721, 0x02300044, + 0x1644d8ff, 0x35274207, 0x322b4103, 0x31274610, 0xf3f02103, 0x1e4127d9, + 0xeb402703, 0x274516f1, 0x1ef4e843, 0x2119bec3, 0xffbea703, 0xdea7ffff, + 0x1efd4fff, 0x0ef39b0b, 0xbe38d3c5, 0x61032103, 0x563027b4, 0xff4ea742, + 0x4201fd4f, 0x990eb399, 0x412711be, 0x34eb423b, 0xb39de123, 0x11be9d0e, + 0xffff2ea7, 0x092499fe, 0x34074383, 0x44873433, 0x34f9342b, 0xff000050, + 0x34f9c407, 0xff00004f, 0x34fd4123, 0xff00004f, 0x2399ebd6, 0x44b49909, + 0x4f4b432b, 0x863041c8, 0x28b4d1c5, 0x25bc9d06, 0x9340b4c5, 0x04e617f4, + 0x40274101, 0xffff0ea7, 0x12be9dff, 0x9d0cb49d, 0xf1be2ab4, 0x0c070035, + 0x0069c5be, 0xcea7171e, 0x99ffffff, 0x0ea70ec1, 0xbefff9cd, 0x2701029b, + 0x12c49d41, 0xa4dff493, 0x06441904, 0xff1ea74d, 0x1251ffff, 0x302723d6, + 0xa4cbf493, 0x27431d04, 0x0bf49b40, 0xa70ef49b, 0xfd4fff3e, 0x9d10129d, + 0x33010f12, 0x270ef49b, 0x0e149921, 0x24cb233b, 0x4fbf3ea7, 0x272138fd, + 0x53340541, 0x86340321, 0x27f31e25, 0x0bf49b40, 0xa70ef49b, 0xfeffff3e, + 0x4c273211, 0x7834bd10, 0xfd40270d, 0x00000024, 0x9b4027ff, 0x4ea70ef4, + 0x99ffffff, 0x44d61244, 0x00363ebe, 0x4ea73127, 0xc5fd4fff, 0xff1e3043, + 0xf493fb4e, 0x1b015294, 0xff2ea7f4, 0x4d27fd6f, 0x24256002, 0x40023d27, + 0x40272315, 0xeb572ea7, 0x272405fd, 0x8300003f, 0x93231510, 0x04afc3f1, + 0xaf9ef093, 0xa1fe9304, 0xfc9304af, 0x9304afa4, 0x04afa7fb, 0x04151415, + 0xc415e415, 0x1405b415, 0xe4050405, 0xb405c405, 0x030ef49b, 0x27240528, + 0x0400003f, 0x9b23150c, 0x1ea70ef4, 0x27fde54f, 0x13051f3c, 0x0f271415, + 0xa0000000, 0x2ea71035, 0x03fde53f, 0x15230531, 0x7f1ea724, 0x2035fdeb, + 0x3f271405, 0x13420000, 0xf49b1315, 0xadfe930e, 0x3e0704af, 0x0797ec03, + 0x7f3ce32e, 0x237f2ce3, 0x341997ec, 0xc2803c03, 0x2c27f932, 0x8df39326, + 0x102704af, 0x31054207, 0x34032123, 0x4ea7f4b8, 0x55fef283, 0x27f3abe4, + 0xa7f4eb41, 0xebffff3e, 0x43273235, 0xefff2ea7, 0x8824d5fd, 0x8824c102, + 0xa7fb48dc, 0xfdefff1e, 0xdc8814c1, 0xf908004d, 0x14d54427, 0x14d50288, + 0x3027028c, 0x06a013d5, 0xeb772ea7, 0x272305fd, 0x0400004f, 0x9b24150b, + 0x2ea70ef3, 0x27fde5cf, 0x2405284c, 0x4f272315, 0x20000000, 0x24353327, + 0x029013d5, 0xefff3ea7, 0x9034c1fd, 0xa7fb48dc, 0xfdefff1e, 0xdc9014c1, + 0xf908004d, 0x14d54427, 0x14d50290, 0x30270294, 0x06a413d5, 0xeb6f2ea7, + 0x272305fd, 0x0300004f, 0x9b241510, 0x2ea70ef3, 0x27fde5af, 0x2405294c, + 0x4f272315, 0x20000000, 0x24353327, 0x029813d5, 0xefff3ea7, 0x9834c1fd, + 0xa7fb48dc, 0xfdefff1e, 0xdc9814c1, 0xf908004d, 0x14d54427, 0x14d50298, + 0x3027029c, 0x06a813d5, 0xeb672ea7, 0x272305fd, 0x8200004f, 0x9b241513, + 0x2ea70ef3, 0x27fde58f, 0x24052a4c, 0x4f272315, 0x20000000, 0x24353327, + 0x02a013d5, 0xefff3ea7, 0xa034c1fd, 0xa7fb48dc, 0xfdefff2e, 0xdca024c1, + 0xf908004d, 0x23d53427, 0x23d502a0, 0x402702a4, 0x06ac24d5, 0xeb5f2ea7, + 0x272405fd, 0xc200003f, 0x9b231513, 0x1ea70ef4, 0x27fde56f, 0x13052b3c, + 0x3f271415, 0x20000000, 0xf2931335, 0x2704b064, 0x11f09330, 0xe48d04ae, + 0x9024c5e8, 0x45f6e38d, 0xc5243524, 0x24c53c24, 0x6824c538, 0xc56424c5, + 0xe48d9424, 0xc0e48df4, 0x8dc2e48d, 0xe48dc4e4, 0xc8e48dc6, 0x8de0e48d, + 0xe48de2e4, 0x9efb0ee4, 0x4e032078, 0x93f6a3fd, 0x015127f4, 0x3ea7f41b, + 0x27fd5fff, 0x9382024d, 0x04c74ffd, 0x2d073425, 0x1597dc03, 0xe33d0734, + 0x3ce37f2c, 0x97dc237f, 0x2c032419, 0xf923c280, 0x9326ec27, 0x04c72bf3, + 0x4e072027, 0xe1233205, 0xf4b83403, 0x01043d27, 0xbf3f4ea7, 0xa74325fd, + 0xfdeb372e, 0x4f272e05, 0x14020000, 0xf1932415, 0xa704c6f0, 0xfef2773e, + 0x1e15d355, 0x40271e05, 0xab0ef49b, 0xeb2127f3, 0xff4ea7f2, 0x4ec5fddf, + 0xc84ec5c4, 0x20003d27, 0xd5cc43c5, 0x27015c42, 0x18d4ad40, 0xa74f0701, + 0xe7ffff3e, 0x35204c03, 0x50d4d53e, 0x07302701, 0xb5f0934f, 0xd39d04c6, + 0xcade8db1, 0x0154d4d5, 0x02d8ded5, 0x0358ded5, 0x011adead, 0x011cdead, + 0x011edead, 0x0120dead, 0x0140dead, 0x0142dead, 0x0144dead, 0x0148dead, + 0x8dbcde8d, 0xde8dbade, 0xb4de8db2, 0x8db6de8d, 0xde8db8de, 0xc0de8dbe, + 0x8dc2de8d, 0xde8dc4de, 0x359fbec8, 0x8ef68303, 0x4eff1efd, 0xff4ea7fc, + 0x4d01fd9f, 0xd2d8c007, 0x7788be12, 0xff3ea701, 0x4027fdcf, 0xc54034c5, + 0xdc586034, 0x0e0c0710, 0x08679efc, 0x4efc8e00, 0xffaea7fa, 0xbea7ffff, + 0xa7fd9fff, 0xfeffffde, 0xcfffcea7, 0x44a4d1fd, 0x1145260a, 0x104ca3b4, + 0xb411061e, 0x15104ce3, 0x99d4b9b4, 0x104c3c0d, 0x331e0027, 0x0148d4d1, + 0x992042c4, 0xd31109d4, 0x24874383, 0x422b4433, 0x33f13387, 0xff000d48, + 0x005444f1, 0x43e2ff00, 0x45be0096, 0x41270166, 0x40270496, 0xd4110407, + 0x0a3844f9, 0x4f4bff00, 0xd4b9423c, 0x4c3c0d99, 0x99d4b910, 0x204cd80d, + 0x09d49914, 0x34874383, 0x432b4433, 0x005044f9, 0x4f96ff00, 0xff7f0ff6, + 0x34f9d311, 0xff000a38, 0x34fd41a3, 0xff000a38, 0xc2c52127, 0x40c2c568, + 0x4127f1ab, 0x0d94d4bd, 0xf39b3027, 0x68c2c50e, 0x070ef39b, 0x27ff8b00, + 0x94d4bd40, 0x0ef39b0d, 0xc0c5f1eb, 0xc5d31140, 0x34f960c0, 0xff000a38, + 0x34fd41e3, 0xff000a38, 0x5e68c2c5, 0xfa8eff29, 0xa007f94e, 0xc207b107, + 0x1e409c27, 0x10dc071c, 0xd90741cc, 0x83be1d07, 0x0a070164, 0x65be1d07, + 0xcd2b0164, 0xad0bbd0b, 0xc0760b07, 0x4007f98e, 0x03334533, 0x40f9402b, + 0xff00018c, 0x330f0c83, 0x7e0e2303, 0x299effff, 0xf293031b, 0xa7034ce0, + 0xfefeb33e, 0x01304c27, 0x05340331, 0xa8240321, 0x9b4027f4, 0xfe0b0ef4, + 0xfeb32ea7, 0xbdf393fe, 0x4c27034c, 0x03310130, 0x03210534, 0x27f4a824, + 0x0ef49b40, 0x3ea7fe0b, 0x27fdebff, 0x27340540, 0x0200004f, 0x27341512, + 0x0ef49b40, 0xf84efe0b, 0xebffbea7, 0x278007fd, 0x070027c0, 0x009f27a1, + 0xbe120200, 0x0501644f, 0x27b915bc, 0x0ef49b40, 0xe7ff3ea7, 0x054427fd, + 0xa73a1534, 0xfde7ef4e, 0x48053c35, 0x00274a15, 0x28be4c35, 0xbc050164, + 0x4027b915, 0x8e0ef49b, 0x0b0027f8, 0xa7fd4efe, 0xfeffff4e, 0xa7094499, + 0xffffff1e, 0x41034383, 0x12d13487, 0x44330620, 0x43f1432b, 0xff000048, + 0x402724c6, 0x14d10d1e, 0x2127062c, 0x2027430a, 0xd4074207, 0xfeabdf6b, + 0x25273027, 0x32c0151e, 0x9434f912, 0xa6ff010d, 0x0014f146, 0xd8ff0230, + 0x31030b44, 0xf2281387, 0x031e0127, 0x0d8b0027, 0xfd8efeeb, 0x0f6bfe4e, + 0xdabe0596, 0xfe0e0019, 0x0014a19e, 0xfd4efe8e, 0xd0070419, 0x45c61f6b, + 0x54be18d6, 0xfd0e0015, 0x001a439e, 0xf39316d6, 0x930163ec, 0x0458a7f4, + 0x1dbe4305, 0x0cbe0009, 0x41270013, 0xfd8ed41d, 0xd107fd4e, 0x26563f6b, + 0x8bbe3ba6, 0x13be0012, 0x0127001a, 0x2a1e4027, 0x192b22c4, 0x204f4b04, + 0x8e002742, 0x19a2befd, 0x45f49300, 0x40c50459, 0xa1f393ec, 0xf4930163, + 0x0504585c, 0x27012743, 0x8ed41d42, 0x8e0027fd, 0x93fc4efd, 0x045923f4, + 0x43294e69, 0xf2a7dea7, 0x994209fe, 0xe30b08d1, 0xe22bc007, 0x42214049, + 0x9910c1ce, 0x42ce09d4, 0x2ed4490a, 0xced469e4, 0x4ea71904, 0x11fd4fff, + 0xa74ea743, 0x4305fef2, 0x9d084c9d, 0x4e4d0942, 0xfc8e406d, 0xb007f94e, + 0x4714bc23, 0x094b0b41, 0x07300742, 0x240999d1, 0x010724c6, 0x4107241e, + 0xe4474103, 0x1c270107, 0x2beb0b1c, 0x1d4c101d, 0x01031127, 0x2705f1f0, + 0x09531e30, 0x66e203e2, 0x23400722, 0x493b0c4c, 0xc4873301, 0x4b071047, + 0x410b2123, 0x420dc30b, 0x20073287, 0x12233c0b, 0x2d2ba427, 0xa93b1b0b, + 0x21033301, 0xdfc40d0a, 0xffffffff, 0x1e21270b, 0x2d412707, 0x23ce0514, + 0x3be12701, 0x0bca2be0, 0x581223e3, 0x8e0307f2, 0x63f54ef9, 0x54f0c5f6, + 0x27240299, 0xc5323b31, 0x4f0750f2, 0xf3c52007, 0x58f1c54c, 0xc5142c23, + 0x3c2740f4, 0x40f1c110, 0x14054027, 0xf1c51403, 0x07f38840, 0x4cf2c1a2, + 0x21231027, 0xf1c53a27, 0x0d8c2748, 0xc55cf2c5, 0xa78960f3, 0x1aa38918, + 0x00ea72f0, 0x074cf4c1, 0xe134eec3, 0x50f1c100, 0x38074807, 0x230d4c23, + 0x413b0c3c, 0xf1c1313b, 0x013c0b54, 0x23148712, 0x87120b81, 0x075127b3, + 0x3bb20b97, 0x03202758, 0x27d10781, 0xc5910360, 0x4f1e44f2, 0x2f071e01, + 0x385b3e07, 0x870f3c83, 0x01420b43, 0x072ae642, 0x06428b45, 0x07020745, + 0x07031e2e, 0x0b42070e, 0x1b40ce45, 0xf2c1b205, 0x874f0744, 0x03340b33, + 0x03402722, 0xc5c103b4, 0x340544f2, 0xde05091e, 0x031ed403, 0x14034e05, + 0xf9f06103, 0x1e3f0705, 0x5cf4c121, 0x07a6c4ca, 0x03370746, 0x0a362b41, + 0x27749674, 0x03120131, 0x03d20514, 0x1ef3a8d4, 0x463401dd, 0x27d40545, + 0x05d40340, 0x40f1c134, 0x31ce3403, 0x58f2c1ed, 0x890f82ce, 0x00271aa4, + 0x01274c0e, 0xf0c50f6b, 0x44f4c148, 0x1b1aac8d, 0x18a48d47, 0x0360f3c1, + 0xc5312381, 0xa20360f3, 0xff003ff6, 0x4348f0c1, 0xa7f58ef6, 0xffffff3e, + 0x060834d1, 0x34d5400b, 0xfe0b0608, 0x4ea7fe0b, 0xb9ffffff, 0xc1010042, + 0x3207fc40, 0x4c834007, 0x1e31030f, 0x03402712, 0x7c14fd01, 0x07ff0000, + 0x83212340, 0x14070f4c, 0xf3f01333, 0xf9091e03, 0x00007e14, 0xa74006ff, + 0xffffff4e, 0x010042bd, 0x0bfc40c5, 0x07fc4efe, 0x27b43ec0, 0x270c0e41, + 0x8e040740, 0x07fc4efc, 0xffcf03c0, 0x8303ffff, 0x000000cf, 0x271c07fc, + 0x163c2720, 0x00f4e7be, 0xfa234ea7, 0xc53027ff, 0x43c5404c, 0x3840c53c, + 0xfa4efc8e, 0xdc23d007, 0x0bc24714, 0x14dc03cd, 0x0924db99, 0x3b4127ce, + 0x23ae074b, 0x01a30b42, 0x27a432d0, 0x23fa8e01, 0x2b3b0c2c, 0x4e87e20b, + 0x2387040b, 0x00e7dcbe, 0x00274127, 0xd49dca0d, 0x4efa8e31, 0x240399f7, + 0x433b4127, 0x7407f063, 0xd0070a01, 0xb107f105, 0x84877333, 0x9027c007, + 0x0b07c249, 0x22871a07, 0xa6be9103, 0xa80b00e7, 0xc203b70b, 0xe9109cc4, + 0x0124d499, 0x03c407de, 0x24d49d41, 0xc603f401, 0x0d07d405, 0x2c071f07, + 0xfe053127, 0x96ff6d7e, 0x27d3b105, 0x0b4c3b41, 0x43d3b534, 0x4ef78ef0, + 0xedf093fa, 0x49be011f, 0xf09300f0, 0xbe011fed, 0xa700f040, 0xfffa1fbe, + 0x270cdc27, 0x07b209a0, 0x3bc2071d, 0xf7f093cd, 0x3c07011f, 0x21beb203, + 0xac0b00f0, 0xbfc4d103, 0xff000600, 0x23cea7e1, 0xc189fffa, 0xfcf09332, + 0x05be011f, 0xc1a100f0, 0x2107c3b1, 0xf0934a07, 0x2b012003, 0x9efa0e2a, + 0x4e00eff0, 0x3808c1f6, 0x993c0cc1, 0xd007240e, 0x9027b107, 0x6c277027, + 0x1c3c270c, 0x362b0607, 0x0103031e, 0x4c072227, 0x405b203b, 0x415c2c0b, + 0x1e03f3f0, 0xeb2bc204, 0x4c234007, 0x0b24470c, 0x3b21492d, 0x01410b4e, + 0x0b4487d3, 0x0b380743, 0x05a1273c, 0x07110343, 0x3b3e074a, 0x03214d40, + 0x0ac40b37, 0x02712703, 0x07910719, 0x234e3b4a, 0x1494da42, 0x13077666, + 0x097e0d07, 0x071007fc, 0xfeb97e0d, 0xca24de99, 0xd4a190cb, 0xc53cd3c1, + 0x432b3cdb, 0xd4a54b0b, 0xfa4ef68e, 0xc13c02c1, 0xd1074003, 0xdd0304a1, + 0xdde30fff, 0x322b0fff, 0xd42ba007, 0x663800c1, 0x02bd0737, 0x07b307d3, + 0x07c20bcb, 0xf2d2be1c, 0x070a0700, 0xff357e1c, 0xd606db2b, 0xf67e0d07, + 0x070a07fd, 0x5efa0e1d, 0xfa8eff23, 0x0499fa4e, 0x07d00731, 0x07b307a2, + 0x7e46c6c1, 0x0526fc1d, 0x1c070d07, 0x27fb877e, 0x31d49d40, 0xc05e0fd6, + 0x0a070bb2, 0x66fdb07e, 0x4fb3c00e, 0x4c234c47, 0x24d29914, 0x31274d0b, + 0x4409323b, 0x34223123, 0x111e3c07, 0x47034207, 0x3c07c442, 0x051e3103, + 0x38033207, 0x433b4127, 0x3407d1a1, 0x130b3123, 0x140b13eb, 0x4b7e0d07, + 0x32d489ff, 0x41030d07, 0xd48d1c07, 0x5efa0e32, 0x0027fb24, 0xfa4efa8e, + 0xa007d207, 0x2a46b107, 0x1a073d07, 0x0ea72b07, 0x7efffa23, 0x07a6fd7e, + 0xfa23cea7, 0x24c099ff, 0x10272227, 0x71be0703, 0x10070176, 0xa47e0c07, + 0x27d61efd, 0x0ef49b40, 0x4007fa8e, 0x1e0c0c27, 0x27010303, 0xca203b21, + 0x3ea7f824, 0xd1ffffff, 0x27060834, 0xd5420b10, 0x27060834, 0x763a9e22, + 0x07fb4e01, 0x121f9bb0, 0x1e60f093, 0xee1abe01, 0x93b11100, 0x011e6df0, + 0x00ee0fbe, 0xf093b121, 0xbe011e74, 0x0100ee04, 0x7bf093b1, 0xf9be011e, + 0xc02700ed, 0xd231db07, 0xf0931c07, 0x03011e7c, 0xede6bec1, 0xc4d40300, + 0x07ec0fcc, 0x9efb0e0b, 0x99fff721, 0x4626a804, 0xf5a74ea7, 0x3804c5ff, + 0x04c54103, 0xa7fe0b34, 0xfeffff4e, 0x4e234411, 0xc5fff5b0, 0x48233404, + 0x0b3804c5, 0xff3ea7fe, 0x2f27f9ff, 0x11111111, 0x01004d27, 0x34033205, + 0x4027f4c8, 0x9b0ef49b, 0xf49b6af4, 0x62f49b6b, 0x2763f49b, 0xa9049d30, + 0xc54c039d, 0x04c55004, 0x9004c554, 0xc54404c5, 0x04c54804, 0x3c04c5a0, + 0x9d4004c5, 0x049d4d04, 0x8c049d8b, 0x0b8a049d, 0xdf3ea7fe, 0x4027fdeb, + 0x4f273405, 0x07040000, 0x40273415, 0x9b0ef49b, 0xf29b6bf2, 0x6af29b62, + 0xa363f29b, 0xf19b1c1c, 0x0bfe0b60, 0x93fc4efe, 0x0451bff2, 0xc1502ec1, + 0xe3334023, 0x4e2b4307, 0xe3074008, 0x99312d99, 0xc2073024, 0x24074d1b, + 0x171e2f6b, 0x03410431, 0x430b2107, 0x4e1b4333, 0x404c2f6b, 0x00010111, + 0x4207fc8e, 0x04074183, 0x43330533, 0x1207042b, 0x7f880f03, 0x11030004, + 0xc1d2d2ce, 0xc1c1d0c0, 0x93fc8ed4, 0x045163f4, 0x0bcc40c1, 0x6bfa4efe, + 0x9b05c60f, 0x3ea7044f, 0x0bf9f7ff, 0x9b0b1e41, 0x4ea7043f, 0x0bf9f7ff, + 0x07d30731, 0x00ad27e4, 0x00bf2718, 0x27040607, 0x001d27c4, 0x6b0b0706, + 0x3320070f, 0x1e240323, 0xf1f3e803, 0x02100024, 0x333327ff, 0x4c53184c, + 0xee44c01d, 0x45334007, 0x18004ef5, 0x41f5ff02, 0xff021804, 0x4e233027, + 0x35fde800, 0x004e0343, 0x4df5fde8, 0xff021810, 0x181441f5, 0x4e23ff02, + 0x35fde7f0, 0x44a12b43, 0x274a07c2, 0x23071ec1, 0x864107c1, 0x0be10bc5, + 0x07b853d1, 0x27971e14, 0x0607000f, 0x07142704, 0x332f6b20, 0x1e240323, + 0xf1f3e803, 0x02100024, 0xdc3327ff, 0xf2fc6a4d, 0xf1100853, 0xfb4efa8e, + 0x20010d28, 0x20000d27, 0x000c051e, 0xd0070703, 0xbd07d373, 0xf493b823, + 0x07045080, 0xc10fab0b, 0x0833b441, 0xe027c407, 0xe4c47c1e, 0x9b19d62f, + 0xb1c8633f, 0xbcc49927, 0xf49b40ab, 0x6d4f9b6d, 0x2b63ef9b, 0x03e373e3, + 0x614f9be4, 0x8bbcc3c1, 0x27448643, 0x27ed3a11, 0x9b641e04, 0xc3c1642f, + 0x182c53bc, 0xc40d32d8, 0x12440a21, 0x27644f9b, 0xd8151e48, 0x0716103c, + 0x804c2342, 0xc40e44d4, 0x4f9b0b12, 0x9b462764, 0x211e65f4, 0xa6403c18, + 0x644f9b17, 0xf49b4827, 0x2724c665, 0x14051e10, 0x03110312, 0x83eddae1, + 0x131e0327, 0x93614f9b, 0x044fe7f2, 0x27bc23c1, 0xc5438b00, 0xf493cc24, + 0xc5044fd8, 0xfb8eb441, 0xc007fc4e, 0x4f272f6b, 0x400000ff, 0x0761f49b, + 0x5cecbe02, 0x93402701, 0x044fb7fd, 0xc5c8d4c5, 0xc486c4d4, 0xd4c1ff1e, + 0x004dd494, 0x46361980, 0x80000d27, 0x20271007, 0x00ef7ebe, 0x2798d0c5, + 0xc580004d, 0xfc8e94d4, 0xdd27fd4e, 0xf0930600, 0x7e044f80, 0x3ea7fd0f, + 0x27f9f7ff, 0x054d0720, 0x03d12332, 0x93f4b834, 0x044f67f0, 0x93fd207e, + 0x044f5ff0, 0x20271027, 0x93fd687e, 0x044f53f4, 0x9d7f3ca7, 0x3c27b043, + 0xac43c5f7, 0x4dc530a7, 0xaa439d9c, 0xc5bc4dc5, 0x4dc5c04d, 0x4efd8eb8, + 0x25f493fe, 0x4ce30343, 0x9b071e7f, 0x4c0308f4, 0x804fd080, 0xf4000393, + 0x4f16f393, 0x8c329904, 0x078a3499, 0x9d42ab03, 0xdabe8c34, 0x0027015b, + 0x42f6f193, 0xfd9f7e03, 0x93604f9b, 0x0342ebf3, 0x200034d5, 0xd5634f9b, + 0x9b200434, 0x34d5624f, 0xfe8e2008, 0x05634f9b, 0xd5f49304, 0x43c1044e, + 0x9903153c, 0x039db043, 0xaa439908, 0x9909039d, 0x039dac43, 0x8b44990a, + 0x0b0b049d, 0x634f9bfe, 0x4eaef393, 0xc5412304, 0xfe0b4034, 0x0399fd4e, + 0x83d0078a, 0x2734d637, 0x99fd8e00, 0x4fa38b04, 0xffffffa0, 0x049d43ab, + 0x630f9b8b, 0xbe40d0c5, 0x07017223, 0x5b19be0d, 0x8bd49901, 0x46180027, + 0xfd8e0127, 0xf293fe4e, 0xc1044e68, 0x4f9b4023, 0x1134ce63, 0x388b2499, + 0x4ca3104c, 0x8b249d20, 0x015becbe, 0x4e4af093, 0x8c049904, 0xab8a0399, + 0x8a049d43, 0x049d4027, 0x623f9b8c, 0xce634f9b, 0x893e0943, 0x022704c6, + 0xf093fe8e, 0x99044e24, 0x4c838b04, 0x104c24f0, 0xfe8e0027, 0x8b9c04c1, + 0x4efe8ef4, 0x09f093fd, 0xdabe044e, 0xfd93015a, 0xc1044e00, 0x0d0754d1, + 0x13331103, 0x015c97be, 0xcebe0d07, 0x01b6015b, 0x4de6f093, 0xfb9f7e04, + 0x93a4d1c1, 0x044ddbf0, 0xfd0e2027, 0x4efbe45e, 0x07b007fb, 0xbec10701, + 0x0701716b, 0xbe1c070b, 0x07015c64, 0x9efb0e0b, 0x4e015b99, 0xa9f493fc, + 0x4ce30341, 0x9b071e7f, 0x4c030cf4, 0x804fd080, 0xf4000393, 0xf49b4027, + 0x95f0930e, 0x247e044d, 0x930127fb, 0x034183f1, 0x93fc2c7e, 0x03417bfc, + 0x4d7ef093, 0x00c1d104, 0x04c2d120, 0x7ed00720, 0xd499fb81, 0xd147588a, + 0xd12004c3, 0xce2008c4, 0xd4992934, 0x07451630, 0x5b37be0d, 0x04c1d101, + 0x40d4c120, 0x1b4cd299, 0x08243241, 0x93202740, 0x044d3ff0, 0xa29efc0e, + 0xfc8e015d, 0xcf9bfc4e, 0x2df09363, 0x01c1044d, 0xbe20273c, 0x9b015d8d, + 0x0027634f, 0x01274c4e, 0xf49b4827, 0x4efc8e65, 0x93d007fd, 0x044d0bf0, + 0x015ae8be, 0x4d02f493, 0x4043c104, 0x074c4299, 0x32432b4d, 0x27400824, + 0x931d0720, 0x044cebf0, 0x4e9efd0e, 0xf493015d, 0xc1044ce0, 0xc81e4040, + 0x0499f54e, 0x30039931, 0x2b9802c1, 0xa3c40743, 0x6bd007f0, 0x27b207cf, + 0x27902780, 0xa7a02750, 0xfde7ff6e, 0xe7ef7ea7, 0x15f205fd, 0x009f5ef1, + 0xe183ec07, 0x3e074e07, 0x35334333, 0x3d0b342b, 0x34413031, 0x400bf111, + 0x23332407, 0x2703212b, 0x20022373, 0x33212007, 0x5407a4d6, 0x1a07522b, + 0x0b94d4c1, 0x6d41ca12, 0x022b030b, 0xd6270bce, 0xe8231e24, 0xff3ea7f3, + 0x3411fdef, 0x4c333327, 0x1d4c5318, 0x05ed44c0, 0x27621560, 0x05643540, + 0x3572157b, 0x333e0774, 0x2be33335, 0x993d0b3e, 0x48071430, 0xab200ca3, + 0x14309d49, 0x380144d6, 0x40073911, 0x45664783, 0xcca3c407, 0x1ea10710, + 0x034c071d, 0x0bc40741, 0x07cf6bb2, 0x31d499a1, 0xff5ec4ee, 0x1e10cc27, + 0x1ef3e805, 0xff2ea706, 0x2411fdef, 0x4ddc3327, 0x11effc6a, 0xbe0d07f1, + 0x99015a8c, 0xd39931d4, 0x07432b30, 0x9d2f6b24, 0xa4d632d2, 0x3f1e0027, + 0x21832123, 0x12074207, 0x15334333, 0x1d0b142b, 0x149d4027, 0x141c9d15, + 0x1a35f401, 0x18051545, 0x14251915, 0xc530d499, 0x410390d5, 0xc530d49d, + 0x0d0750d5, 0xeebe3027, 0x0011015a, 0xf0830333, 0xf84ef58e, 0x07440dc1, + 0x079107c0, 0x27d7e3a2, 0xbe0c0780, 0x07015851, 0x7e1d070c, 0xc499fe9c, + 0x96b0078a, 0xbe0c0745, 0x27015949, 0x27049641, 0x07b82240, 0xda4fd68b, + 0xcdc1b4f6, 0x07d33350, 0x5b30be0c, 0x07b00b01, 0xbe0d071b, 0x070157fd, + 0x124d2b49, 0x07a027a4, 0x0e1a0709, 0x57769ef8, 0x93fa4e01, 0x044b2bf4, + 0xc14c4399, 0x439d3c0a, 0x0730274d, 0x4c439dc0, 0xd4c1d407, 0x4cd39940, + 0x34324a1b, 0x400c2027, 0x0d072307, 0x6abe1a07, 0xb007015b, 0x4f9b0344, + 0x40d4c563, 0x0f9b3c1e, 0x6e91be63, 0x44d1c101, 0x89be0d07, 0xd4990159, + 0x1b41c4aa, 0xc1634f9b, 0x432b40d3, 0x00014f50, 0x4f9b7000, 0x004f0363, + 0xc5f00000, 0x0d0740d4, 0x9ebeb424, 0x0fd60158, 0xb5fd93a2, 0xd499044a, + 0x4cd49d4d, 0x010cb4e0, 0x991bb2c4, 0xc4998bc3, 0x203ca38a, 0x34ab4783, + 0xc39d0c07, 0x5731be8b, 0x8e022701, 0xaac399fa, 0x274dd49d, 0x9d002740, + 0xb3474cd4, 0x015c23be, 0xbe630f9b, 0x07016e17, 0x5d93be0b, 0x4dd49901, + 0xea4cd49d, 0x9b009e0b, 0x482764df, 0x9b18dc53, 0xb9d065f4, 0x643f9b2f, + 0x5365f49b, 0x3833183c, 0xbcd0d3ab, 0x4f9b1e11, 0x9b382764, 0x2f9b65f3, + 0x65f39b64, 0x33184c53, 0x2ee3104c, 0xabffffff, 0x27d4ab42, 0x8bc49d40, + 0x41234d07, 0xffff4fd4, 0x9b2b0fff, 0x0407634f, 0xbe40c4c5, 0xc1016daf, + 0xd33340c4, 0xc0c1d40b, 0x3ccdc5c0, 0x015ba3be, 0x278bc499, 0x104ca300, + 0x8e8bc49d, 0x634f9bfa, 0x9340c4c5, 0x0449e3f4, 0x9b4042c1, 0x1f9b624f, + 0x8bc39963, 0x2f03412b, 0x7fffff00, 0x3ca3242b, 0x991e1e40, 0x46d88ac4, + 0x632f9b22, 0x998bc399, 0x07e38ac4, 0x83203ca3, 0x40c2c547, 0x200b34ab, + 0xc39d0227, 0x3cc2c58b, 0x0427fa8e, 0xfc4efa8e, 0x4996f493, 0x4c439904, + 0x439dd007, 0x9d30274d, 0x00274c43, 0x015b2bbe, 0xbe630f9b, 0x27016d1f, + 0xbe20000d, 0x36015c99, 0x8ad49906, 0x277446dc, 0x9dc42740, 0x6f1e8bd4, + 0x07f8c57e, 0xd303c0c0, 0x991102c4, 0x0d078ad4, 0xd49d4783, 0x55e9be8b, + 0x76541e01, 0x634f9b0e, 0xc58ad399, 0x315840d4, 0x3390d4c1, 0x93191e43, + 0x04492ff4, 0x9b4044c1, 0x2f9b623f, 0x03322b63, 0xffff004f, 0xc5432b7f, + 0xd0c13cd4, 0x104c27c0, 0xbe8bd49d, 0xc1015ab4, 0x4fa3bcd4, 0x40000000, + 0x2761f49b, 0xb4d4c540, 0xc227051e, 0xf4939e1e, 0x990448f0, 0x0c074d43, + 0x8e4c439d, 0x93fa4efc, 0x0448dff3, 0x074c3499, 0x4d349dd0, 0x349d4027, + 0x8b04994c, 0x402c4f4b, 0x731eb427, 0xb027a307, 0xc18adc99, 0x4f9b3ca3, + 0x0e34ce63, 0x073cd1c1, 0xbe20270d, 0x07015915, 0x630f9bb0, 0x016c46be, + 0x0744d1c1, 0x573ebe0d, 0x440d0701, 0x5673beb4, 0x1e0ba601, 0xc1c636cc, + 0x3f9b3ca4, 0x2c432b63, 0x8adc9941, 0xd499c1a3, 0x833c078b, 0x204ca337, + 0xd49d43ab, 0xbe0d078b, 0x18015507, 0x99b227c6, 0x4fa38bd4, 0xffffff80, + 0xc08bd49d, 0xd4996eb2, 0xcc4f4b8b, 0x01275b40, 0x015b6cbe, 0xd630d499, + 0x1eb42744, 0x634f9b4c, 0xc58ad399, 0x315840d4, 0x3390d4c1, 0x93191e43, + 0x044827f4, 0x9b4044c1, 0x2f9b623f, 0x03322b63, 0xffff004f, 0xc5432b7f, + 0x4c273cd4, 0x8bd49d10, 0x0d0706d6, 0xe6f95f7e, 0x44d1c105, 0xb2270d07, + 0x01569bbe, 0xb027031e, 0x47eef493, 0x4d439904, 0x074c439d, 0x4efa8e0b, + 0x63bf9bfa, 0x47dafa93, 0xc1b78304, 0x4f9b3cac, 0x1fdc2763, 0xdb2bc42b, + 0x9b624f9b, 0x432b633f, 0x0718d4d2, 0x5adfbe0d, 0x0fd0d201, 0x9b3ca4c1, + 0x432b633f, 0xa4274032, 0xa027031e, 0x49be0027, 0xdf9b0159, 0x99f49364, + 0x40c10447, 0x593abec0, 0x27c12c01, 0x07fa8e01, 0x002f032d, 0xcc800000, + 0x270c20cc, 0x3c2b203c, 0x433b40a7, 0xb103248b, 0x4b5b4207, 0x002744c6, + 0x0127fa8e, 0x0027a486, 0xfb4efa8e, 0xd007b107, 0x0cc0bf6b, 0x01246020, + 0xfdb4f453, 0x02240d1e, 0xfe63f453, 0xf453051e, 0xfc93fc11, 0x9904473c, + 0xc4c5b0c0, 0xaacd9d9c, 0x01545dbe, 0xc4c54027, 0x27d2203c, 0x041e314c, + 0x9d7f4ca7, 0xb6468bc4, 0x4716f493, 0xac40c104, 0xa30f0c83, 0x041e100c, + 0xbe180c27, 0x9301544d, 0x0446fff4, 0x0ec040c1, 0x589e9efb, 0xa7fb8e01, + 0xfdefff2e, 0xf3e8031e, 0x274424c1, 0x6a4ddc33, 0xfe0bf5fc, 0x47b2f293, + 0x99412704, 0x249d1323, 0x69364697, 0x1a238924, 0x4027342b, 0x249d240d, + 0x0b232d13, 0x933127fe, 0x04478ff4, 0x016b43bd, 0x3ea7fe0b, 0x27feffff, + 0x3b34bd43, 0xd540270d, 0xbd0d3434, 0x270d3834, 0x3934bd41, 0xbd42270d, + 0x0b0d3a34, 0xc1fd4efe, 0x04999c03, 0xa002c143, 0xc53803c5, 0x44876402, + 0x1c0043f5, 0x0499ff00, 0xa003c16f, 0x43f54487, 0xff001c00, 0x04c13027, + 0x89030d9c, 0xd007a403, 0x4253032d, 0xc124f49b, 0x4253a004, 0x9925f49b, + 0x44c41204, 0x8903491d, 0x43ca1004, 0xec04c115, 0xbe424199, 0x07016111, + 0x0e11270d, 0x5ee49efd, 0x4efd8e01, 0x03c007fc, 0x48be300c, 0x0c07016e, + 0xbe5c0c03, 0x27016e3f, 0x606bbe00, 0x504abe01, 0x5efc0e01, 0xfd4eff13, + 0xfff7f2be, 0x46d2f093, 0x3ed00704, 0x12d499cf, 0x071344c4, 0x300c030d, + 0x0170debe, 0x0c030d07, 0x70d5be5c, 0xa7302701, 0x13d39d40, 0x2512d39d, + 0xdf0ea7d4, 0xdfbeffff, 0xd4c100e5, 0x38d1c144, 0x140b0d07, 0x0c0314eb, + 0x0539be30, 0x70d4c100, 0x0764d1c1, 0x03140b0d, 0x14eb5c0c, 0x000526be, + 0xffdf0ea7, 0x9efd0eff, 0x4e00e58b, 0x69f493fc, 0x24070446, 0x01772d03, + 0x2ce33407, 0x7f3ce37f, 0x3c033419, 0xf932c280, 0x464ef393, 0x27202704, + 0x32055e4c, 0xf4c83403, 0xffffeea7, 0x93e411fe, 0x044637fc, 0x48034447, + 0x24074f6b, 0x210330a7, 0x3027c325, 0x9d43c49d, 0xc29d12c3, 0x9b40276f, + 0xf49b24f4, 0x04ee9925, 0x17270c07, 0x27300c03, 0x003d2720, 0x9d4a2728, + 0x43bec8ce, 0x0c070004, 0x29271627, 0x24003d27, 0x0c034a27, 0x0430be5c, + 0xbe0c0700, 0x0e000346, 0xfe585efc, 0x0421f94e, 0x45d6fa93, 0x384c0304, + 0x313ca4c5, 0xc5d00704, 0x045968a4, 0xa49df063, 0x2a048914, 0xa48d9027, + 0x28048924, 0x9926a48d, 0xa49d1804, 0x9d047917, 0x015116a4, 0x071b0299, + 0x0fcc83c1, 0xce23c333, 0x81ffff84, 0x074c0703, 0x0344030a, 0xf905300c, + 0x00046fbe, 0xd151b007, 0x911cd299, 0x074c07d3, 0x0345030a, 0xf9055c0c, + 0x000457be, 0x04d60b8b, 0x1a1e0a27, 0xc530d4c1, 0xa485e4a9, 0xa4bd40a7, + 0xdd51015c, 0xad254027, 0x2798a48d, 0x8ef04300, 0x93fb4ef9, 0x044543f0, + 0x000215be, 0x456afc93, 0xbe0c0704, 0x07016bcc, 0x030c07b0, 0xc1be2c0c, + 0xf493016b, 0xc1044524, 0x41c13842, 0x09432964, 0x2b2b2b4e, 0x8d3e2b10, + 0x42c5a443, 0xa041c59c, 0xfd4efb8e, 0x4502fd93, 0x12d49904, 0x3e0d44c4, + 0xbe0027b1, 0xbe015e79, 0x07014e58, 0x300c030d, 0x0002b0be, 0x0c030d07, + 0x02a7be5c, 0x04e2be00, 0xfd0d7e00, 0xffea15be, 0xc49efd0e, 0xfb4efff4, + 0x21260189, 0x33410702, 0x33b18748, 0x1bc00714, 0x300c0314, 0x00029bbe, + 0xcb8d4027, 0x88c0c58e, 0x8e8cc48d, 0x89fa4efb, 0x04898c0b, 0xc13b078e, + 0x4b2b880c, 0x36332b87, 0xf063322b, 0x048dd007, 0x27c32b8e, 0x4deabea0, + 0x491c1e01, 0x9bc309d4, 0x81030b04, 0x030087d4, 0x05040bc4, 0xbea103fc, + 0x03014d70, 0x1f0738cc, 0xd0892427, 0xdcbace26, 0xd38d3027, 0x8ed4898c, + 0x31533007, 0x0d07342a, 0x43ff7d7e, 0x4efa8ef0, 0xc72ea7fd, 0x4027fdeb, + 0x3f272405, 0x0a040000, 0xf49b2315, 0x0528230e, 0x003f2724, 0x15090400, + 0x0ef49b23, 0xebdf2ea7, 0x272405fd, 0x0400003f, 0x9b231507, 0x7cbe0ef4, + 0xf093fff5, 0x07044404, 0x0160bed0, 0xfc747e00, 0xffe957be, 0x2412d499, + 0x7e0d0744, 0x4127fc89, 0x07a2f49b, 0x300c030d, 0x0001bcbe, 0x0c030d07, + 0x9efd0e5c, 0x4e0001b1, 0xff4ea7fc, 0x4411feff, 0xffffdea7, 0x24d3d1ff, + 0xf5448706, 0x000d4843, 0x273007ff, 0xff4ea721, 0x42c5fdcf, 0x634f9b68, + 0x30c8342b, 0xc9fc931b, 0xc3990442, 0x9d40274c, 0xc39d4cc4, 0x54abbe4d, + 0x4dc49901, 0x934cc49d, 0x0442aff4, 0x9d4c4399, 0x30274d43, 0xd14c439d, + 0x9b0ce0dc, 0x3cbe630f, 0x4f9b0166, 0x633f9b62, 0xc4d2432b, 0xbe0c070c, + 0x120155ad, 0x634f9bc0, 0x427ef493, 0x4d439904, 0x8e4c439d, 0x93fe4efc, + 0x044347f0, 0x93fc467e, 0x04433ff0, 0x93fbd87e, 0x044337f0, 0x7f9efe0e, + 0x00270157, 0xfd4efe0b, 0x27ac0299, 0x33420733, 0xad019943, 0x120043f5, + 0x44f1ff02, 0xff021000, 0x0247d007, 0x27e04c3c, 0x33131e20, 0xf1418725, + 0x02180423, 0x0042f1ff, 0x0bff0216, 0x27308723, 0x0034f542, 0xc1ff0212, + 0x422bc4d4, 0xbed4d4c5, 0xc501725f, 0xfd8ed8d0, 0xf493fc4e, 0xc10442d4, + 0xe007ec44, 0x07104489, 0x9bd447c1, 0x16d30bd2, 0x33140706, 0x270d071a, + 0xe1c5be20, 0x010c1e00, 0x0bd4c214, 0xe1be1d07, 0xe00700e0, 0x0e07cd05, + 0xfc4efc8e, 0x1127c007, 0x27a80c03, 0x3d27162c, 0x4a271000, 0x0000d1be, + 0x0c030c07, 0x271227ac, 0x3d27172c, 0x4a271400, 0x0000bdbe, 0x0d030c07, + 0x13270154, 0x3d272127, 0x4a271800, 0x0000a9be, 0xebb73ea7, 0x052027fd, + 0x004f2732, 0x15128200, 0x9b402734, 0x38230ef4, 0x4f273205, 0x12420000, + 0x40273415, 0x8e0ef49b, 0x99fd4efc, 0xd0071204, 0x80be4244, 0x42270169, + 0x8e12d49d, 0x120499fd, 0x4a9e4204, 0xfe0b016a, 0xd007fb4e, 0x64beb107, + 0xd4510169, 0x3407d221, 0x34eb320b, 0x422b4307, 0xd325b422, 0xd4992307, + 0x5b320710, 0x83430734, 0x51448741, 0x0b3207dc, 0x613b0b4d, 0x25c28b44, + 0x07d315d3, 0xbec40b0d, 0x11016a88, 0x9b4253d4, 0x0c0724f4, 0xfc4efb8e, + 0x18bec007, 0x0c070169, 0x6d9efc0e, 0xfe4e016a, 0x4623e407, 0x4c83e30b, + 0x0e3c330f, 0x011d023d, 0x00003f83, 0x13333ff0, 0x4c332027, 0xf543ab10, + 0x02140012, 0x0414f5ff, 0x2dff0214, 0x9b40270e, 0xfe8e0ef4, 0xd007fd4e, + 0x91be0107, 0xd299ffea, 0xa1d42110, 0x83425bd1, 0x3b312741, 0x0b448732, + 0x654d0b31, 0x46d3a540, 0x0e0d0715, 0x69879efd, 0x4efd8e01, 0x07f063fb, + 0x1eb107d0, 0x10d19927, 0xc15bcb07, 0xcc87c183, 0xc461cd0b, 0x3fbef405, + 0xd299ffed, 0x27d3a110, 0x2b423b41, 0x65402734, 0xa1d3a5c4, 0x270f07d4, + 0xd2b4ce21, 0xfb8ef043, 0xd007fa4e, 0x07120099, 0x07b207a1, 0xc6230714, + 0x8e012704, 0x21d451fa, 0x10d399dc, 0xd285c40b, 0xc4ebd195, 0xa7333bce, + 0xffffdf0e, 0x00e029be, 0x0d071c07, 0x0ea78e3e, 0xbeffffdf, 0x2700dff7, + 0x233b3b31, 0xebc30b31, 0x5b4c07c3, 0x9d41234b, 0xdb9d11d4, 0xa5d35510, + 0x15d4a1dc, 0xcedc25dc, 0xf25115c4, 0x1a070d07, 0x016b11be, 0x04964127, + 0x04074027, 0x0d07fa8e, 0x0168ccbe, 0xfa8e0127, 0x0207fe0b, 0xfe0bfe0b, + 0x04030105, 0x0027fe0b, 0xf94efe0b, 0x07e404c1, 0x53d00791, 0xec02c192, + 0x0b894d76, 0x240c8926, 0xcb9b0481, 0xc40bcc87, 0x5406f393, 0x273c2503, + 0xe40cc541, 0x24993415, 0x230c0712, 0x33438343, 0x14070e4c, 0x00001fa3, + 0xa407cf00, 0x000066be, 0xafa3c01b, 0xc7000000, 0x1eeadc8d, 0x030a0505, + 0x93fbc804, 0x0353cbf3, 0xd189392d, 0x072987ea, 0x0b442341, 0x27343542, + 0x27345540, 0x348dff4c, 0x18318d1a, 0xf40b2ea7, 0x0e4c27fe, 0x34033101, + 0x24032105, 0xf98ef4a8, 0xffff4ea7, 0xbd3227fe, 0x930be843, 0x043febf2, + 0x24c54027, 0x4324bdf0, 0x27fe0b01, 0x15010541, 0x0b080304, 0x93fe4efe, + 0x044147f0, 0x12be1127, 0xf4930004, 0x2704413c, 0xd5302720, 0x9d012042, + 0x42d5cc43, 0x42d50100, 0x42d50118, 0xfe8e011c, 0xfc93fc4e, 0x9304411c, + 0x015d27f4, 0x40a7c405, 0x27f0c4c5, 0x44c4d540, 0x604c2702, 0x27f4c48d, + 0x8d04804d, 0x4d27f6c4, 0x30271800, 0x27f8c48d, 0xb84d2700, 0x27102755, + 0x94c3bd22, 0xfac48d02, 0xbee7c39d, 0x07ffeebc, 0x003d270c, 0xff4ea743, + 0x0403fbff, 0x040043d5, 0xa51efc8e, 0xf493fe4e, 0x99043f48, 0x46661244, + 0x40b6f093, 0xbe112704, 0x27015c3a, 0x492dbe00, 0xa5f09301, 0x11270440, + 0x159efe0e, 0xfd4e0005, 0xd9bed007, 0x0536ffef, 0x0517f413, 0xc4fd8ed4, + 0x70be0e02, 0xf493ffec, 0x05015c90, 0x8e0327d4, 0xd1f84efd, 0x6303b40d, + 0x03c007f0, 0x0f9b30dc, 0x61b9be63, 0x624f9b01, 0x2b633f9b, 0x1bd4d243, + 0x2abe0d07, 0xd0d20151, 0xfdf49312, 0x44c1043d, 0x633f9b3c, 0x04fa432b, + 0x402701a3, 0x03b4c4d5, 0x93638f9b, 0x015c43f4, 0x9f9bc405, 0x9b412764, + 0xdf9b65f4, 0x53462764, 0xf49b1adc, 0x64af9b65, 0x9b65f49b, 0x432764bf, + 0x5065f49b, 0x002720dc, 0xff6cf453, 0x9301285e, 0x043daff0, 0x9b3c02c1, + 0x3f9b631f, 0x2b430762, 0x07400842, 0x2b410732, 0x1341c843, 0x1b3c04c1, + 0xac48e441, 0xf056be00, 0x5e0626ff, 0x4f9b00a3, 0xbc03c161, 0x4ff6438b, + 0x90e80097, 0x4a070093, 0xf61a4c53, 0x07008a4f, 0x1d4c534b, 0x00814fe6, + 0xce7cc399, 0x9f9b7ad3, 0x9b412764, 0x430765f4, 0x54104c23, 0x644f9b48, + 0xf49b4127, 0x684f9b65, 0x2764af9b, 0x65f49b41, 0x9b7dcd99, 0xfd9b64bf, + 0x05f49365, 0x4149043e, 0x29b2c389, 0x694e0940, 0x0931ca44, 0x200b2407, + 0x1e1e2e2b, 0x99b8c199, 0xc2c1c8c4, 0xb9c39930, 0x2c03410b, 0x47444760, + 0x0b320b33, 0x09422942, 0x2cc48931, 0xcc1190c8, 0x3c270ea0, 0x2b419b20, + 0x0bb35b3d, 0xbe4b4e42, 0x27ffeffe, 0x00b25e03, 0xd880c4c1, 0x150c004d, + 0x26684f9b, 0x682f9b46, 0x34072103, 0x9b644f9b, 0xf3b865f2, 0xd880c4c1, + 0x1210004d, 0x03683f9b, 0x9b091e31, 0x4827644f, 0xa865f49b, 0x644f9bf3, + 0xf49b4127, 0x4a37be65, 0xe9c49901, 0x002745b6, 0x5924f493, 0x1ec40501, + 0x85c49960, 0xf49346e6, 0x69043d58, 0x09422943, 0x89320b41, 0x312bacc4, + 0x9b3d34ce, 0x3f9b624f, 0xcc432b63, 0x4f9b1b49, 0x23482b63, 0xf353274c, + 0xc305fe31, 0x03b4c4d5, 0x2763f89b, 0x211e0e0c, 0x38be0f07, 0x04d6016f, + 0x151e0127, 0x4ea7f301, 0xd5fbffff, 0x93045043, 0x0172ebf4, 0x0027c405, + 0xf88ef043, 0x0c27012c, 0x28fe0b7c, 0x0c277f0c, 0x47fe0b7d, 0x800c2c00, + 0x0b7e0c13, 0x7f0c23fe, 0xfc4efe0b, 0xe0073007, 0x34534007, 0x830cec53, + 0x0f000f3e, 0x000fee83, 0x8341530f, 0x0f000f0e, 0x319be19b, 0x4f830733, + 0x07800780, 0x4e0b300b, 0x40003fa3, 0x4fa34000, 0x40004000, 0x422bf123, + 0xf405322b, 0x4c33f315, 0x103c3310, 0xf335f425, 0xc0a7df07, 0xc833d001, + 0x0c730087, 0xab863e16, 0xc8d403c0, 0x0c07efc0, 0xfc8ef103, 0xe107fb4e, + 0xefff2ea7, 0xe8031efd, 0x272401f3, 0x184c3333, 0xc01d4c53, 0x2ea7f244, + 0x27fdebff, 0x27240540, 0x0200003f, 0x9b231512, 0x1f9b0ef4, 0x9c2c2704, + 0x100bbe87, 0xbe0b0027, 0x0145e1be, 0x43334b07, 0xc4074b0b, 0xab10cc33, + 0x00cf03c4, 0xa7010001, 0xf9e7ffde, 0x07ae0f9b, 0x7e2c071b, 0xd005ff36, + 0x1000de23, 0x03d00502, 0x021004de, 0x189cdfc4, 0x8ee2ff06, 0x99fe4efb, + 0x31271604, 0x300c343b, 0x13073303, 0x0d031273, 0x202702a4, 0xf7fb4ea7, + 0xff3ea7f9, 0x0e01f9f5, 0x4e054423, 0x44030e11, 0x0e214e05, 0x3e052103, + 0x030c0c03, 0xc2340348, 0x4027e521, 0x8e0ef49b, 0x07fc4efe, 0x6bd007c1, + 0xff2ea7cf, 0x24d1fbff, 0x41dc0468, 0x5424d1fa, 0xbdf39304, 0xd4d503eb, + 0x24d1024c, 0x13070458, 0x0250d4d5, 0x045c24d1, 0xd59b1c03, 0xd10254d4, + 0xe3046024, 0xd4d57f1c, 0x24d10258, 0x3ce30450, 0x5cd4d57f, 0x4c24d102, + 0x60d4d504, 0x7424d102, 0x48d4d504, 0x4024d102, 0x64d4d504, 0x4424d102, + 0x68d4d504, 0x4824d102, 0x6cd4d504, 0x03341902, 0x31c2803c, 0x59f093f9, + 0x1ea703eb, 0xbefbf7ff, 0x16016d3c, 0xe84c1ec5, 0xa7061ef3, 0xfdefff2e, + 0x33272411, 0x53184c33, 0x44131d4c, 0x9be942c8, 0x0027042f, 0x94802f03, + 0x1ea70003, 0x27f9e7ff, 0x60be9c3c, 0xd4990143, 0x9b472685, 0x0027042f, + 0x951c2f03, 0x1ea70003, 0x27f9e763, 0x44be9c3c, 0x3ea70143, 0xd1fbffff, + 0x53042032, 0xc4218321, 0x34d1f621, 0xdc990400, 0x70d4d5cf, 0x3434d102, + 0x80d4d504, 0x1434d102, 0x84d4d504, 0x1034d102, 0x88d4d504, 0x0434d102, + 0x74d4d504, 0x0834d102, 0x78d4d504, 0x1834d102, 0xe0d3c104, 0x027cd4d5, + 0x02a0d3d5, 0xc1ced499, 0xd4bdc0d3, 0xdcbd0295, 0xd3d50296, 0x4f9b0298, + 0x16d399a3, 0x029cd4d5, 0x433b4207, 0x4303400c, 0x027ed3a9, 0x1d07e407, + 0x3c83e273, 0xa41d033f, 0x07002702, 0x403c3023, 0x2c232307, 0x33420740, + 0x004cf143, 0x03ff0608, 0xf11c0501, 0x06080444, 0x153103ff, 0xf1428714, + 0x060a0044, 0x031425ff, 0x0ec20c1c, 0xbd4127cf, 0x270294d4, 0x0ef49b40, + 0xfc0e0027, 0x01440e9e, 0xc107fc4e, 0xcf6bd007, 0xffff3ea7, 0x6834d1fb, + 0xfa41dc04, 0xffff2ea7, 0x2024d1fb, 0xfa42d804, 0xd3b94027, 0x24d50294, + 0x3fe60468, 0xd4d10149, 0x0ea7024c, 0xd5fbf7ff, 0xd1045424, 0x930250d4, + 0x03e9eff1, 0x045824d5, 0x0254d4d1, 0x045c24d5, 0x0258d4d1, 0x046024d5, + 0x025cd4d1, 0x045024d5, 0x0260d4d1, 0x044c24d5, 0x0248d4d1, 0x047424d5, + 0x0264d4d1, 0x044024d5, 0x0268d4d1, 0x044424d5, 0x026cd4d1, 0x044824d5, + 0x016b93be, 0x4c1ec516, 0x061ef3e8, 0xefff2ea7, 0x272411fd, 0x184c3333, + 0x131d4c53, 0xe942c844, 0x27041f9b, 0x801f0300, 0xa7000394, 0xf9e7ff2e, + 0xbe9c3c27, 0x990141b7, 0x472685d4, 0x27041f9b, 0x1c1f0300, 0xa7000395, + 0xf9e7632e, 0xbe9c3c27, 0x0701419b, 0xfd377e0d, 0x0270d4d1, 0xffff3ea7, + 0x0034d5fb, 0x80d4d104, 0xd5030702, 0xd1043434, 0x070284d4, 0x1434d52d, + 0x88d4d104, 0x201c2702, 0x041034d5, 0x0274d4d1, 0x040434d5, 0x0278d4d1, + 0x040834d5, 0x027cd4a9, 0x041834d5, 0x01b024d1, 0x04d52403, 0xf198041c, + 0xd49d4127, 0xa0d4d1ca, 0xe0d4c502, 0x0295d4b9, 0xb9ced49d, 0x9d0296d4, + 0xd4d1cfd4, 0xd4c50298, 0x9cd4d1c0, 0xa3f49b02, 0x04d54127, 0x40270430, + 0xa70ef49b, 0xfdefff2e, 0xf3e8031e, 0x33272411, 0xfc6a4ddc, 0x4efc8ef6, + 0xbdf493fc, 0x43c10437, 0x4e449944, 0x0407c007, 0x9ebe030b, 0x36be0149, + 0x0c07fff5, 0xfc0e1027, 0x4efe675e, 0x3bcf5bf0, 0x4efe2bdf, 0xbe0f07fc, + 0x1effe4d1, 0x07fb4eff, 0xcc49beb0, 0x07d007ff, 0x69f09310, 0xe1be0105, + 0xd74600d2, 0x0b1ec027, 0xc103d201, 0x00d2d3be, 0x1c07d403, 0x055bf093, + 0xedcbda01, 0x0000fb8e, 0xff1eff1e, 0xb007fb4e, 0xf0931127, 0xbe0105c4, + 0x1100d2b0, 0xd1f093b1, 0xa5be0105, 0xb12100d2, 0x05d8f093, 0xd29abe01, + 0x93b10100, 0x0105dff0, 0x00d28fbe, 0xf093b231, 0x270105e6, 0xd282be10, + 0x03db0700, 0x31c127d4, 0x931c07d2, 0x0105d1f0, 0x6dbec103, 0xd40300d2, + 0xec0fccc4, 0xfb0e0b07, 0xfe4ea11e, 0x20274007, 0x05713c27, 0xc8440342, + 0xc44d27f3, 0x0531a701, 0x4d400704, 0xa7480303, 0x05382720, 0xc8440342, + 0x034007f3, 0x20a7284c, 0x42053827, 0xf3c84403, 0xc0621499, 0x271bff4c, + 0x06049d41, 0x9d621399, 0x14990803, 0x0f44dc0a, 0x41e34307, 0x8e08049d, + 0x9d4027fe, 0xfe8e0604, 0x3d270071, 0x04010100, 0x0803144e, 0x0027f3b8, + 0x4007fe0b, 0x71200099, 0x33300742, 0x0b310303, 0x20439d02, 0x3ea7fe0b, + 0x27e4f8af, 0x75340540, 0x27282703, 0x4027ff3c, 0x075024f5, 0x2803ff1b, + 0x4027f398, 0x0b20049d, 0x07fe4efe, 0x2a21c8e2, 0xefff3ea7, 0x5434c1fd, + 0x53184c33, 0x42cc1d4c, 0xbf4ea7f5, 0x4105fde6, 0x20274e15, 0x3ea74235, + 0x05fde6af, 0x353e1530, 0x4efe8e32, 0x932253fd, 0x03eb5bfe, 0x032141a7, + 0x122d140d, 0xd1071e15, 0x40273646, 0xd435d4b5, 0xd425d455, 0xd485d495, + 0x4127fd8e, 0x022401d1, 0x0e070425, 0x27fef57e, 0x35d4b540, 0x25d455d4, + 0x85d495d4, 0x4efd8ed4, 0xa70d39fb, 0xffffff3e, 0x34b9d123, 0xdc830108, + 0xeec0070f, 0x3300bcd4, 0xa72027d3, 0xfeffff0e, 0x010cd2f5, 0x03a9ff00, + 0xc1390144, 0xffff4ea7, 0xbd3103ff, 0xad010841, 0x9b014403, 0x31270ef2, + 0xcfff4ea7, 0xc5c229fd, 0x25a67043, 0x0e27fb8e, 0xbe03e807, 0xa702b194, + 0xfff71b0e, 0x0157edbe, 0x07ec00c8, 0x33400720, 0x0b253347, 0x0c2e2324, + 0x4207fff7, 0x3c271027, 0x03410528, 0x07f3c844, 0x034c0732, 0x104c0334, + 0x01121c27, 0x0544034e, 0xa834033e, 0x05c431f1, 0x28ccd124, 0xff4ea701, + 0x2cc5fd4f, 0xc5431164, 0x42276823, 0x08e804fd, 0x2ea7ff00, 0x27ffffff, + 0x3824bd41, 0x0f239906, 0xf49b4027, 0x8741270e, 0x4034f533, 0x8eff02b0, + 0x27b307fb, 0xbe64060d, 0xb902b110, 0xee0108b4, 0x1eff364d, 0x000000ef, + 0x000433bc, 0x0000000e, 0x01c1f54e, 0xc5fd2358, 0xf0c5bcf1, 0x1702b9c8, + 0xc5130101, 0x04b978f2, 0x02a90116, 0xf4c50114, 0xc101b17c, 0xf1c5bcf4, + 0x890131c0, 0xf8930e44, 0xc503e6b0, 0xf1c580f2, 0x1802d1c4, 0xbcf1c101, + 0x04d1842d, 0xf2c50110, 0x10128974, 0x4584f4c5, 0x0b402783, 0x0d833531, + 0xd5811582, 0x25022881, 0x2480d584, 0x34149902, 0x13073127, 0xf2c1143b, + 0x2c81adbc, 0x35219902, 0x022c82a9, 0x83ad313b, 0xf3c1022e, 0xbcf1c1bc, + 0x890e3489, 0x429b3033, 0x242b432b, 0x023082ad, 0x022e83a9, 0x89101489, + 0x439b3212, 0x342b422b, 0x00004f27, 0x83ad8f00, 0x84d50232, 0x03990238, + 0xff3ce062, 0x4f2704e1, 0xef000100, 0x023884d5, 0x93bcf3c1, 0x03e613f0, + 0xd5343499, 0x7e023484, 0x8409fd9e, 0xf4c58229, 0x90f1c190, 0xd1878441, + 0x0b94f2c5, 0xe68631d4, 0x27017c1f, 0xc5328740, 0xf4c588f3, 0x8cf4c5b4, + 0x50a77027, 0x460b4787, 0x21dc4201, 0xedf1536b, 0x014f07fe, 0x3c4c0313, + 0x24032101, 0x44034105, 0xf2c1f3a8, 0x50f3c148, 0x0b68f4c1, 0x60f3c123, + 0x0b182c03, 0xb4f3c143, 0x0b40f1c1, 0xa1f09334, 0xd20b03e5, 0x03b4f3c5, + 0xfd067e51, 0x00fa0fe6, 0xc13ef489, 0x740b94f1, 0xc1aa71ca, 0xf3c18cf2, + 0xa125fd90, 0x03000431, 0x8cf2c521, 0x010423ee, 0x0b88f4c1, 0x078a1e64, + 0x3c1c031f, 0xe562f093, 0xfd497e03, 0x81b98429, 0x82d10234, 0xf19d0238, + 0x23f2050a, 0x49f39341, 0x47ee03e5, 0x33b900ca, 0x8409022c, 0x9d8cf1c1, + 0x412308f3, 0xe532f393, 0xac14ee03, 0x2e34b900, 0x3df25302, 0x072101fe, + 0x09f49d0f, 0x02b1fcbe, 0xe63efe89, 0xc1ff55ef, 0xa00748f2, 0x33bcaf23, + 0x84290004, 0x2a0bc707, 0xfe16f353, 0xf2c5c103, 0x27412348, 0xf1f993b0, + 0x0f0703e4, 0x4cce3101, 0x99b58647, 0x94a908f3, 0x34ce022c, 0x3894d11f, + 0xff4f8302, 0x05f7ffff, 0xb1afbef4, 0x89a00702, 0xf2c13efe, 0xbcaf2348, + 0x03000433, 0xe2c103b1, 0x29fefceb, 0x532a0b84, 0xc5fdc7f3, 0x412348f2, + 0x31010f07, 0xb9bbc4ce, 0x9d023094, 0xb21e08f4, 0xe496f093, 0xfc147e03, + 0x0540f4c1, 0x40f4c104, 0xd30b4301, 0xb9fef35e, 0x5e023234, 0x33b9ff55, + 0x375e0230, 0xc51027ff, 0xf2c1b4f1, 0x038d55b4, 0x826518dc, 0x0bc4f3c1, + 0xa4f2c52d, 0x1618dc23, 0x0c2c0335, 0xc1a4f2c5, 0xf2c1c8f1, 0x4414c1a4, + 0x01cd42ea, 0xebaf4ea7, 0x053027fd, 0x002f2743, 0x150e0300, 0x0ef39b42, + 0xe6c4f3c1, 0x2703293f, 0x18bc27c0, 0xc1c4f3c1, 0xf335b4f4, 0x8574f3c1, + 0xc1f365f4, 0xf3c178f4, 0xc0f0c17c, 0x9d17f49d, 0xf4c116f3, 0x84f3c180, + 0x0c0b1f07, 0x270c1c03, 0xf345182c, 0x7514f48d, 0xc477befd, 0xc0f7c100, + 0x84318c41, 0xf1c17b0b, 0x070707bc, 0xacf4c52c, 0x8e7e8b09, 0xd1f093fb, + 0x637e03e3, 0x0b1707fb, 0xc584091d, 0x4fe6b8f1, 0xdb07028a, 0x4b87d533, + 0x2027d42b, 0xc70bdc0b, 0xc5a8fcc5, 0xf2c5b0f2, 0xe1f693a0, 0xf3c103e5, + 0xa133f9a0, 0xc5000431, 0x3fe69cf3, 0xf2c10249, 0x9cf3c19c, 0xf1c14d07, + 0x3323339c, 0x2b483335, 0xc5140b32, 0xf1c598fd, 0xc1d30b9c, 0x5027a8f2, + 0xf2c52403, 0xacf3c1cc, 0x430b4587, 0xa2074201, 0xaff6a183, 0xf15301ce, + 0x4f07fc74, 0x4c031301, 0x0321013c, 0x03410524, 0x89f3a844, 0xf3893cf2, + 0x40f1c13e, 0xe33af093, 0x24f28d03, 0x7e26f38d, 0xb007faa0, 0x01ba0fe6, + 0xfba5bb11, 0x0126afe6, 0x81d18429, 0xfdc50238, 0x23f10530, 0x11f39341, + 0x45ee03e3, 0x33b90195, 0x8409022c, 0x9da0f2c1, 0x412308f3, 0xe2faf393, + 0x7724ee03, 0x2e34b901, 0x070f0702, 0x09f49d16, 0x02afc8be, 0xc63ef489, + 0xc007684f, 0xcf23b507, 0x000433bc, 0xa027b103, 0xe2cef993, 0x032f1e03, + 0x99a586b1, 0x94a908f3, 0x34ce022c, 0x3894d119, 0xff4f8302, 0x05f7ffff, + 0xaf8fbef4, 0x23c00702, 0x0433bccf, 0x3ef48900, 0x4ac2a103, 0x0b070725, + 0x0716070d, 0xc31bbe2c, 0x07842900, 0x0741230f, 0xcedc0b16, 0x93b9bab4, + 0xf39d0230, 0x1eb11e08, 0x30f4c1ff, 0x4d1b3027, 0xf4c1f4b5, 0x34f3c5b0, + 0xb638f4c5, 0xc11f075d, 0x1c03ccf0, 0x182c2724, 0x00c2e0be, 0x293ef489, + 0xea540b82, 0x93fee052, 0x03e247f4, 0x09a8f1c1, 0x9cf4c143, 0xf1c11405, + 0xc51103a0, 0x31e2a0f1, 0x428700fa, 0xc1a8f3c1, 0x3c03acf2, 0xc5240b1c, + 0xf3c5acf2, 0xfe785ea8, 0x0798f0c1, 0x03070b1f, 0x2c27241c, 0xc293be18, + 0x98f4c100, 0xc5184c03, 0xa91e98f4, 0xc148fbc1, 0x070744f1, 0x2b070d0b, + 0x0730fdc5, 0xf9a37ecd, 0x0b50fac1, 0x4cf1c1cb, 0x0c0b0707, 0x927e2a07, + 0xb0f2c1f9, 0x0760f9c1, 0x30f4c1dc, 0x0bb8f0c1, 0xb0f3c1da, 0x1b5cf1c1, + 0x07020b4d, 0xc5f4b529, 0x6e7e38f3, 0xb0fcc1f9, 0xc168fbc1, 0xc90bb8f0, + 0x0b64f1c1, 0x7e2b070c, 0xf4c1f959, 0x1bcb0b38, 0xb0fcc54c, 0x5e34f4c5, + 0x1f07ff2b, 0xe18af093, 0x3c1c0303, 0x5ef96e7e, 0x34b9fe3b, 0x8a5e0232, + 0x3033b9fe, 0xfe6c5e02, 0xe16ef093, 0xf8ec7e03, 0x1540f4c1, 0xc104050d, + 0xb00740f1, 0x07071c01, 0x2c070d0b, 0x00c1dcbe, 0x255edc0b, 0xc54027fe, + 0xd05e98f4, 0x9a4f27fd, 0xd5cf0006, 0x5e023884, 0x3ea7fb20, 0xc1fdefff, + 0x4dd85434, 0x070ffc6a, 0xe8432723, 0x5423c1f4, 0xfc6a3ddc, 0xc8f1c1f5, + 0x81a4f2c1, 0x4812c514, 0xf0c144a3, 0x7e1485c8, 0xfd03f937, 0xcc27f58e, + 0xc0f0c10c, 0xfefaf193, 0xbe2c0700, 0xc100c17d, 0xbc27c8f4, 0x484cc524, + 0x4efcc35e, 0xbc02c1fc, 0x2ed1c107, 0x2389012c, 0x834e0728, 0x86112742, + 0x83102744, 0x3380003d, 0xa80dc117, 0x24c13f26, 0x5742d844, 0x10003d27, + 0xa7a20499, 0xf7ffff2e, 0x4dab4183, 0x43ab41ab, 0x01c12425, 0x9c0389ac, + 0xc5e421c5, 0x3123802c, 0x998423c5, 0x0389a304, 0x8824c59e, 0x4123430b, + 0x998c24c5, 0x0089a601, 0xc5310ba4, 0x3123a821, 0xc5ac23c5, 0x47275820, + 0x8e3424c5, 0x00eddcfc, 0x3027ab01, 0xfe4eab1e, 0x8fff3ea7, 0xe33411fd, + 0x1508004d, 0xff3ea734, 0x3201fd4f, 0xf49b4027, 0x87e1270e, 0x402ef522, + 0xa7ff02b0, 0xfdcfff1e, 0x30074227, 0x234414c5, 0x4232d038, 0x3ea72127, + 0xbdfeffff, 0x270d9532, 0x0ef49b40, 0xbe681ec5, 0x2702aa30, 0xff3ea720, + 0x32bdfeff, 0x40270d95, 0xa70ef49b, 0xfdcfff3e, 0xc54434c5, 0x2ea76434, + 0x11fd8fff, 0x004da324, 0x8e241508, 0x1e2227fe, 0xa7f84ebe, 0xfeffff2e, + 0xd1092499, 0x83014823, 0x33d40743, 0x2b4487d4, 0x07bd07d4, 0xb4be23c0, + 0x3fd6ffff, 0xff4ea768, 0xd2f1ffff, 0xff000054, 0x062c4dd1, 0x0104039d, + 0x07d22200, 0x8f20ead2, 0x650dce00, 0xac27ed07, 0xff9ea755, 0xe02bffff, + 0x41834007, 0x44333487, 0x4307340b, 0x430b4433, 0x4e23c005, 0x07fff9c4, + 0x013a0721, 0x05440348, 0xa8240328, 0x0a1499f3, 0x28104cc0, 0x062894d1, + 0x40c8401b, 0x9d41271f, 0xf88e04c4, 0x014824d1, 0xd14441c0, 0xc0014824, + 0x24d16242, 0x43c00148, 0x03f88e1e, 0xa9fef001, 0xb499cd05, 0x844ff604, + 0xa7312700, 0xfeffff4e, 0x014843d5, 0x24b9f88e, 0x4cd80d99, 0x40274510, + 0x014824d5, 0xd007f88e, 0xff72d0ee, 0xd4f1d31e, 0xff000054, 0x43e20301, + 0xbea70088, 0xd1ffffff, 0xc2062cb4, 0x30272443, 0xffff4ea7, 0x4843d5fe, + 0x27f88e01, 0x0bf49b40, 0x270ef49b, 0x5ef80e09, 0x0827fe7e, 0x775ef80e, + 0xcf0ea7fe, 0x19befff9, 0xd3f102ee, 0xff000054, 0xb4d1c001, 0x04ca062c, + 0xc330c2c6, 0x577e0527, 0xbebc1efe, 0xa700f72a, 0xffffff3e, 0x32a9b469, + 0x24ce0102, 0x27b41920, 0x1d410330, 0x0ef39bb4, 0x4fff4ea7, 0xcf0ea7fd, + 0x43c5fff9, 0x4e73be38, 0xff4f5e01, 0xde1ebd25, 0x014423a9, 0x014224a9, + 0xff2f43ee, 0x24d54227, 0xf88e0148, 0xcf5bf04e, 0xfe2bdf3b, 0x0f07fc4e, + 0xfff50fbe, 0xf00efc0e, 0xf04eff0b, 0xdf3bcf5b, 0xfc4efe2b, 0xfdbe0f07, + 0xff1efff4, 0xffff1ea7, 0x4814d1fe, 0x6142c401, 0x11091499, 0x87438313, + 0x2b443324, 0xf1338742, 0x000d4833, 0x5444f1ff, 0xcaff0000, 0x41274334, + 0x270a149d, 0x0ef49b40, 0xcfff4ea7, 0xb93127fd, 0xc5014012, 0x14996043, + 0x83296609, 0x33240743, 0x2b448724, 0x5024f924, 0x36ff0000, 0xff4ea747, + 0x43d1ffff, 0x24f10a34, 0xff000054, 0x43420127, 0xfe0b0027, 0xfe0b0127, + 0x39272027, 0x24fd4027, 0xff000a38, 0xf3982103, 0x0127fe0b, 0xfe4efe0b, + 0xffff4ea7, 0x094499fe, 0xffff1ea7, 0x034383ff, 0xd1348741, 0x33062012, + 0xf1432b44, 0x00004843, 0x2724c6ff, 0xd10d1e40, 0x27062c14, 0x27430a21, + 0x07420720, 0xabef6be4, 0x1e2027f1, 0x2222c004, 0x24f926a6, 0xff010d94, + 0x42874846, 0x300044f1, 0x44d8ff02, 0x27420716, 0x2b410335, 0x27461032, + 0xf0210331, 0x0127d8f3, 0x0027031e, 0xf1eb0e8b, 0xfe4efe8e, 0x00d797be, + 0xffff4ea7, 0x934411fe, 0x00fb43f0, 0x41f14487, 0xff000d48, 0x00c69bbe, + 0x219efe0e, 0xfd4e0033, 0xd0070419, 0x48061f6b, 0xf3931c46, 0x0104b194, + 0x8df49333, 0x43050470, 0x006f0ebe, 0x004b42be, 0x369efd0e, 0x180602b9, + 0xf4933127, 0x9d04b324, 0xf3930543, 0x9302baf6, 0x047067f4, 0x7abe4305, + 0x49be0067, 0x41270029, 0xfd8ed41d, 0xb107fb4e, 0xc207d007, 0x10270227, + 0x4dbecf6b, 0xbcd602bb, 0x4c8b4007, 0x00ce4fe6, 0xb2e6fc93, 0x05c49904, + 0x7fbe4586, 0x0c070068, 0x02b887be, 0x2458c499, 0x77be204c, 0x051e006f, + 0x008e1bbe, 0xb2c2f493, 0x05449904, 0xdfbe4546, 0x57be02b8, 0x40270068, + 0xfb8ed41d, 0x008eb2e4, 0xb2a6f093, 0x7bf39304, 0xf49302ba, 0x99046fec, + 0x43055802, 0xbe202c24, 0x1e006edf, 0x8f40be05, 0x85fc9300, 0xcb9904b2, + 0x54c0c558, 0x002ab4be, 0x0b071007, 0x006dddbe, 0xb1270c07, 0x02b81bbe, + 0xbe05cb9d, 0x2702b88a, 0x0dcb9d40, 0xbe04c49d, 0x27004f12, 0xa7d41d42, + 0xfd4fff4e, 0x40274301, 0xa70ef49b, 0xffffff4e, 0x270e4499, 0xcb233b21, + 0xbf3ea724, 0x2138fd4f, 0x34054127, 0x34032153, 0x312722d6, 0xcfff4ea7, + 0x6043c5fd, 0x2ea7fb8e, 0x99fef2b3, 0x40ce0824, 0x0df4930f, 0x43c104b2, + 0x09249948, 0xa71834ce, 0xfd4fff4e, 0x209d4411, 0x93240508, 0x04b1f3f4, + 0x9d484499, 0xfe0b0924, 0x0f6bfe4e, 0xf49308c6, 0x9904b1e0, 0x47860544, + 0x02b7fdbe, 0x0049c4be, 0x0065f0be, 0x6f1af393, 0x93330104, 0x04b013f4, + 0xfe8e4305, 0x2ea7fd4e, 0x27fdeb27, 0x27230530, 0x0400004f, 0x0724150d, + 0x0ef39bd0, 0x1c03e007, 0x24ec0324, 0xefff2ea7, 0xe8031efd, 0xd424c1f3, + 0x4c333327, 0x1d4c5318, 0xa7f144c0, 0xfde4bf4e, 0x3d274e05, 0x431506aa, + 0x42352027, 0xe4af4ea7, 0x154105fd, 0xff0ea743, 0xe30bfdef, 0x031e4235, + 0x04c1f3e8, 0x333327dc, 0x4c53184c, 0xf144c01d, 0xe49f4ea7, 0x274e05fd, + 0x1506aa2d, 0x35302742, 0xa7120b43, 0xfde48f4e, 0x42154105, 0xf4934335, + 0x4404af88, 0x000000df, 0xa74101ff, 0xffe3ff0e, 0x40010e1e, 0xe3ff1ea7, + 0xe8051eff, 0xa7061ef3, 0xfdefff2e, 0x27dc24c1, 0x184c3333, 0xc01d4c53, + 0x4ea7ea44, 0x05fde49f, 0x002d2740, 0x27421504, 0xa7433530, 0xfde48f4e, + 0x42154105, 0xfd8e4335, 0xaf32f493, 0xa7400104, 0xffffff1e, 0xa7ff175e, + 0xfdefff2e, 0xf3e8031e, 0x27d424c1, 0x6a4ddc33, 0x051ef5fc, 0x061ef3e8, + 0xefff2ea7, 0xdc24c1fd, 0x4ddc3327, 0x0beefc6a, 0xa7fc4efe, 0xffffffde, + 0x10270227, 0x0620dcd1, 0x02b8efbe, 0x0a40d4b9, 0xc4863127, 0x41533027, + 0x41c3308b, 0x44c6438b, 0xfc8e0127, 0x4fff4ea7, 0x274301fd, 0x9b402700, + 0x21270ef4, 0x3b0ed499, 0xa724cb23, 0xfd4fbf3e, 0x41272138, 0x21533405, + 0x22d63403, 0x4ea73127, 0xc5fdcfff, 0xfc8e6043, 0x0227fe4e, 0x99be1227, + 0x2ea702b8, 0xb9ffffff, 0x530a4024, 0x38408b41, 0x8e012741, 0xff4ea7fe, + 0x4301fd4f, 0x40270027, 0x990ef49b, 0x21270e24, 0x24cb233b, 0x4fbf3ea7, + 0x272138fd, 0x53340541, 0xd6340321, 0xa7312722, 0xfdcfff4e, 0x8e6043c5, + 0xa7fb4efe, 0xffffffde, 0x3610d499, 0x27fbab4f, 0x0dfc9bc0, 0xa70efc9b, + 0xfd7fff3e, 0x01273411, 0x00004ea3, 0xbe341504, 0xa700bf28, 0xfd4fff4e, + 0x31274201, 0x6d17f493, 0x9d431d04, 0xd39d0fd2, 0x04b0be10, 0x0fd49900, + 0x270efc9b, 0xf5448731, 0x02b04043, 0x93fbebff, 0x04adfbf0, 0xfb0e1127, + 0xfffc459e, 0xfb4efb8e, 0xc321c207, 0xc4012211, 0x1007b107, 0xf778f093, + 0xc2bebe00, 0x27bf6b00, 0x07c231d0, 0x95f0931d, 0xd10300f7, 0x00c2abbe, + 0xdcc4c403, 0xbc46ec0f, 0xdea7c027, 0x41fdbfff, 0x8749e6d4, 0xb042f14c, + 0x07000150, 0x7ff0931c, 0x85be00f7, 0xd14100c2, 0xf78cf093, 0xc27abe00, + 0x93d15100, 0x00f791f0, 0x00c26fbe, 0xd4454027, 0xdc03c103, 0xc8c8c420, + 0x6c73f493, 0x06441904, 0x9efb0e45, 0x0e00023a, 0xfb989efb, 0x6bfd4eff, + 0x9305260f, 0x00f771fd, 0xfd93061e, 0x0700f775, 0x270d0721, 0xff607e11, + 0x01271d07, 0x00c5699e, 0x01271007, 0xf94ed81e, 0xffffeea7, 0xff1ea7ff, + 0xe399feff, 0x0814992a, 0xaf6ba007, 0x0127342e, 0x2ea7f98e, 0x79ffffd7, + 0x2744d624, 0x79f98e02, 0x07247923, 0x274f4b93, 0x27400c30, 0x07241931, + 0x874383c3, 0x2c40f144, 0x99ff0000, 0x200744e4, 0x9909149d, 0xcf6b0911, + 0xd1071383, 0xd4334187, 0x2c83d42b, 0xb4de230f, 0xc8a6ffff, 0x0724e399, + 0x2c4f4b43, 0x24e29d40, 0x234e0e1e, 0xf1930327, 0x9e00f6f4, 0x7900c4e2, + 0x2744c6d4, 0x66f98e04, 0xff4ea7a6, 0x3127d07f, 0x44314335, 0x08274120, + 0xe007f98e, 0x6610ec53, 0x234107c9, 0x87438341, 0x2b443334, 0x5244e943, + 0x27ff0000, 0x5dd27d30, 0x1dd46dd3, 0x38d23dd3, 0x412780ec, 0x9d04d49d, + 0xd49905de, 0x4b202705, 0x2740084f, 0xc3d45921, 0x074103e1, 0x83d45d3e, + 0xff4ea731, 0xb207feff, 0x014143bd, 0xbac6bf6b, 0xffff2ea7, 0x4023c1ff, + 0x4007c866, 0x23c54853, 0xf64f6b3c, 0x203ca744, 0x340b031e, 0xffff4ea7, + 0x4043c5ff, 0xd49d4027, 0xa7d32504, 0xfeffff4e, 0x013c43d5, 0x4ea7a936, + 0xb9feffff, 0xdc0d9944, 0x31271248, 0x7fff4ea7, 0x1e4335d0, 0xe8432707, + 0xa7061ef4, 0xd07fff3e, 0x41c43431, 0xff1ea7f1, 0x14b9feff, 0x45760141, + 0x4ea73127, 0x45d07fff, 0x83290743, 0x21c40f2c, 0xff3ea71b, 0x3499ffff, + 0x9d410344, 0x41274434, 0x014014bd, 0x7fff4ea7, 0xbe4255d0, 0x1902e609, + 0xd71ea7d4, 0x4103ffff, 0x1479d41d, 0x230f4c83, 0xab240741, 0x1928362f, + 0x1d410314, 0x39131914, 0x1334ce14, 0x43831419, 0x42f14487, 0xff00002c, + 0xa30f2c83, 0x3ea7802c, 0x7dffffd7, 0x03345932, 0xe6345d41, 0x9b402705, + 0x3ea70ef4, 0xc5fd4fff, 0xb4e63834, 0x8e100c27, 0x200c27f9, 0xfe0bf98e, + 0xab5af293, 0x03230104, 0xf4937f0c, 0xe304ab4c, 0x030b7f0c, 0x20054401, + 0x040b0307, 0xfe4efe0b, 0xf5f6f093, 0xc012be00, 0xd2dfbe00, 0xf954be00, + 0x09dcbeff, 0x0f7cbe00, 0x9efe0e00, 0x4e005b5d, 0xff3ea7fd, 0x3dc1fd4f, + 0xe34d0768, 0xc0f00f4d, 0x6301004f, 0xf0932256, 0xbe00f5e2, 0x9300bfdc, + 0x00f604f0, 0x71021f27, 0xcdbe5663, 0x1d0700bf, 0xf619f093, 0xc1321e00, + 0x34c17c32, 0x004fd874, 0x34200000, 0x933121d8, 0x00f5b1f0, 0x00bfabbe, + 0xf650f093, 0x78f19300, 0x9dbe00f6, 0xf09300bf, 0x9300f673, 0x00f69bf1, + 0x00bf8fbe, 0xf1930427, 0x9e00f601, 0xa700c2c2, 0xfd4fff3e, 0x3c7034c1, + 0x7434c148, 0x00004f5c, 0x04270800, 0xf678f193, 0xa7e11e00, 0xd07fff2e, + 0x24a121a1, 0x830c4c53, 0x4cc00f4c, 0x24a1270f, 0x285322a1, 0xd00f2c83, + 0x1d831f23, 0xf0930fff, 0x2700f66d, 0xbe422732, 0x2700bf38, 0x97f19304, + 0xa81e00f6, 0x24a124a1, 0xfe4efd8e, 0xffff3ea7, 0x994027ff, 0x34bd0d32, + 0x2410063a, 0x42872027, 0x53f041f1, 0x01270001, 0x00c2459e, 0xb007fb4e, + 0xbff6bf6b, 0x007e00a0, 0x2382beff, 0xcd3ea700, 0x4027fff9, 0x343d341d, + 0xffdf3ea7, 0x27051eff, 0x01f4e846, 0xa7d3563d, 0xfd4fff4e, 0x0e274401, + 0x33040000, 0x054aa344, 0x2d55be34, 0xe1fc9300, 0xc00504a9, 0xffdf0ea7, + 0xc341beff, 0xb6c40100, 0x93012745, 0x00f652f1, 0x00c1e59e, 0xf71b0ea7, + 0xbe1227ff, 0x2700ce0d, 0xd73ea740, 0x341dffff, 0x347d343d, 0xffffcea7, + 0x25c49dff, 0xc52ac49d, 0xcdc53ccd, 0x2d3bbe40, 0xf736be00, 0x2453beff, + 0x09bcbe00, 0x49a0be00, 0x4a0dbe00, 0x44cd9d00, 0x0a41cdbd, 0xeebe0b07, + 0x3027000f, 0xffff4ea7, 0x25439dff, 0x0b9efb8e, 0xec9e0048, 0xfd4e0047, + 0xffff4ea7, 0x094499fe, 0x43832027, 0xd433d407, 0xd42b4487, 0xffb4de23, + 0xd70ea7ff, 0x1427ffff, 0x4f4b0479, 0x04194048, 0x24ce4383, 0x87210318, + 0x2834f132, 0x23ff0000, 0x004ea321, 0x34f58000, 0xff000028, 0xf1f02103, + 0xe38dbed8, 0x9d412702, 0xd41904d4, 0x41033027, 0xf39bd41d, 0xff4ea70e, + 0x43c5fd4f, 0x0ef39b38, 0xffff4ea7, 0x0e4399ff, 0x4fbf2ea7, 0x273138fd, + 0x53240541, 0xd6240331, 0x4efd8e32, 0x4780befe, 0x0f2ebe00, 0x9efe0e00, + 0x4e00158f, 0xbe0027fe, 0x0e00530d, 0x0ee79efe, 0x486f9e00, 0x09fd4e00, + 0x76d00704, 0x93042745, 0x00f55bf1, 0x49500a1e, 0xf1930427, 0x9e00f57e, + 0x1100c0be, 0xfe4f5804, 0x27ffffff, 0x93f19304, 0xec1e00f5, 0x4d500429, + 0x04270100, 0xf5a8f193, 0xbedd1e00, 0xa702e2f3, 0xffffd70e, 0x03190439, + 0x43cc432b, 0x1101393a, 0x090339d4, 0x33d229de, 0xec83104c, 0xab31030f, + 0x3d2833e4, 0xab138303, 0x791187e2, 0x2c1ef504, 0x27ff0000, 0x83467621, + 0x4e070fec, 0xff804fa3, 0x047dffff, 0x2027031e, 0xf49b4027, 0xff3ea70e, + 0x34c5fd4f, 0x27259638, 0x6cf19301, 0x785e00f5, 0x273301ff, 0x0ef49b40, + 0xffff4ea7, 0x0e4499ff, 0x233b2127, 0x3ea724cb, 0x38fd4fbf, 0x05412721, + 0xc6215334, 0x1e340324, 0x4efd8ef3, 0x15f293fe, 0x302704ab, 0x0ea7e027, + 0x27fffe73, 0x0401221c, 0x00004e83, 0x0344d603, 0xc4191e31, 0x0300004e, + 0x16241913, 0x83242146, 0xffff004e, 0xff004e04, 0x03e103ff, 0x2c03180c, + 0x0c32d410, 0xe5363486, 0x27ccf1f0, 0x27fe8e00, 0x4efe8e01, 0x100499fb, + 0x4153d127, 0x073803c1, 0x3bc207b1, 0x6bd3abd4, 0x27cf6bbf, 0x112c2710, + 0x413b4127, 0x11034d8b, 0x04994d86, 0x33e40768, 0xb0ef03e4, 0xc0000507, + 0xb915ff4c, 0xb9018ce3, 0x2b018de4, 0xbd4c2b3b, 0xbd018de4, 0x99018ce3, + 0xe4076904, 0xef03e433, 0x000507b0, 0x15ff4cc0, 0x018ce3b9, 0x018de4b9, + 0x4c2b3b2b, 0x018de4bd, 0x018ce3bd, 0xf2f00203, 0x4efb8ea8, 0x081499fe, + 0x41d8e107, 0x7403993d, 0x0fff3cc0, 0x300b3433, 0x018d34b9, 0x34bd4123, + 0xe299018d, 0x33120707, 0x74029d14, 0x14b9100b, 0x3207018d, 0x41033533, + 0x14bd2333, 0x322b018d, 0x019433f1, 0x03c5ff00, 0x74039978, 0xc109e39d, + 0x26067802, 0x300b3433, 0x018d34b9, 0x34bd4103, 0x0207018d, 0xfb4efe8e, + 0xb007d107, 0xffdf0ea7, 0xc044beff, 0x34d3c100, 0x3c830127, 0xf933330f, + 0x00007c34, 0xa31d07ff, 0x7c34fd44, 0x99ff0000, 0xd3c110d4, 0x3b415338, + 0x681c0304, 0xc02703ab, 0x2711ec27, 0x8b4c3b41, 0x46c10340, 0x0714194c, + 0x0b243324, 0xff4cc02b, 0x8d23b915, 0x8c24b901, 0x03310301, 0x8c24bd41, + 0x8d23bd01, 0x07143901, 0x0b243324, 0xff4cc02b, 0x8d23b915, 0x8c24b901, + 0x03310301, 0x8c24bd41, 0x8d23bd01, 0xf0120301, 0xd499b2fe, 0xff4cc007, + 0x33340731, 0x2b433335, 0x8c34f134, 0xe3ff0001, 0x0300004e, 0x00004ea3, + 0x8c34f502, 0xc1ff0001, 0xdd9944d4, 0x9434f534, 0xfdff0001, 0x00018c3d, + 0xdf0ea7ff, 0xfb0effff, 0x00bf629e, 0x4007f94e, 0x070f4c83, 0x33248734, + 0x07322b35, 0x2bd333d3, 0xe8df03d3, 0x0700050b, 0x07dc99a4, 0x9007a333, + 0x0ea7ba07, 0x23ffffdf, 0xffff84be, 0x00bf51be, 0x1cffccc0, 0x3c074c07, + 0x35334333, 0x34f1342b, 0xff00018c, 0x00004ea3, 0x8c34f503, 0xf9ff0001, + 0x00007ca4, 0x0a44d8ff, 0x11270d07, 0xf47e2127, 0xffccc0fd, 0x074c073e, + 0x3343333c, 0xf1342b35, 0x00019434, 0x0749a6ff, 0x50d3c14c, 0x4f034433, + 0x000507b0, 0x019043d5, 0xbd58d399, 0x99018e43, 0x43bd5ad3, 0xaaf90194, + 0xff000080, 0x018f4abd, 0xb499281e, 0xc1488604, 0xd19950d0, 0xbe21275a, + 0xc1002873, 0xb29950d0, 0x58d19904, 0x21230403, 0x002862be, 0xb49d4027, + 0x05b29904, 0x9954d0c1, 0x50be59d1, 0x20270028, 0x9905b29d, 0x3cc009d3, + 0x343313ff, 0x07b03f03, 0x34b90005, 0x4123018d, 0x018d34bd, 0xb21db459, + 0xb45d4123, 0xffffcea7, 0x00c4b9ff, 0x23910301, 0x00c4bd41, 0xacd4c101, + 0x19fcc9c5, 0x79f19343, 0x12d104a6, 0x41270430, 0x42cb433b, 0x14d53027, + 0xd3c50430, 0xdf0ea7ac, 0x28beffff, 0xc19900be, 0xcd0ea70e, 0xf90efff9, + 0x00c1569e, 0xd007fd4e, 0x330fdc83, 0xdf0ea7d3, 0x2bbeffff, 0xd4f900be, + 0xff00007c, 0xa3104c3c, 0xd4fd104c, 0xff00007c, 0xffdf0ea7, 0xbdedbeff, + 0xff4ea700, 0x4199ffff, 0xcd0ea70e, 0xfd0efff9, 0x00c1169e, 0xf323f74e, + 0x20273f07, 0x050c4c27, 0xc8340332, 0x85fd93f4, 0x0ea704a7, 0x07ffffdf, + 0xbddcbe7d, 0x6fbea700, 0x9027fffe, 0x7c238027, 0x23ab0740, 0xd8a401a4, + 0x0300004e, 0x06d41923, 0x09d39948, 0x09ff3cc0, 0x340b4f07, 0x341d4127, + 0xc00ad399, 0x0709ff3c, 0x27310b1f, 0x01341d41, 0x004e83a4, 0x4ee40300, + 0x89030000, 0x76dc3900, 0xe6b411c9, 0xe6d47948, 0x99d01147, 0x212708d1, + 0x002722be, 0xd279d011, 0x0403d159, 0x14be2123, 0x40270027, 0xbc15d47d, + 0xdc199127, 0x40a7c9d6, 0x9d0bd399, 0xd49d0ad4, 0x2135a609, 0x27a5beb0, + 0x9d402700, 0xd4990bd4, 0x0145a60c, 0x2795beb0, 0x9d402700, 0xbc050cd4, + 0xd209bc25, 0xa4012916, 0x4ee33707, 0x05030000, 0x0eb28da4, 0xf2934027, + 0x8d04a6bc, 0x272b0cb4, 0x842e3419, 0x341d40a7, 0xf2983103, 0xdc038103, + 0x18bc0310, 0x32228ce4, 0x07d027ff, 0x194d0b4f, 0x07469644, 0x095dbe0d, + 0x2709ab00, 0x27048640, 0x6b940741, 0xc4d1039f, 0xa7e130dc, 0xffffdf0e, + 0x00bcb2be, 0x4ea79666, 0x99ffffff, 0x0ea70e41, 0xbefff9cd, 0x0300bfdb, + 0x4ef78ef3, 0x050499f8, 0x4fe6c007, 0x089900bf, 0x33380707, 0xb03f0334, + 0xb9000507, 0xe4019534, 0x00a9ff4c, 0x01963ab9, 0xa0fface4, 0xfe967e00, + 0x8922cb89, 0xc49924cd, 0x0fbc0306, 0x730fdc03, 0xc6d473b4, 0x53d10344, + 0x070b07d1, 0x0793be1d, 0xc0900700, 0x992dff0c, 0x4ba606c4, 0xd804c499, + 0x71be0b41, 0xca070006, 0x361ed027, 0x072944dc, 0xbe1d070b, 0x0700076d, + 0xff0cc4c0, 0xbe09070b, 0x270008ab, 0x07471e40, 0x064abe09, 0x07d00700, + 0x0642be0c, 0xbe0b1e00, 0x0700063c, 0x27ca07d0, 0x07480700, 0x03443338, + 0x0507b04f, 0x33353300, 0x9549bd83, 0xf5382b01, 0x0001983d, 0x964cbdff, + 0xf5412701, 0x00019030, 0x27031eff, 0x8e040741, 0xa7fa4ef8, 0xffffff4e, + 0xb9fc4cc1, 0x0b01004b, 0xf9241ebc, 0x00007cd4, 0x224c83ff, 0x270e42c4, + 0x7ed4fd41, 0x07ff0000, 0xfc427e0c, 0xd4fd4027, 0xff00007c, 0xdc07c103, + 0x330fdc83, 0xd4cbcad3, 0xa54af493, 0x03240704, 0x07021f2d, 0x7f2ce334, + 0x197f3ce3, 0x803c0334, 0x93f932c2, 0x04a3a3fd, 0xc074d399, 0x3319ff3c, + 0x3c3f0334, 0x39000509, 0x3d412334, 0x9d40a734, 0x402774d4, 0x7e78d4c5, + 0x0ea7fd74, 0xbeffffdf, 0xc100bb66, 0x4ea748dc, 0x27ffffff, 0xe043d530, + 0x0043bd0c, 0x302d2701, 0xfc4cc503, 0x06244cd5, 0xfe730ea7, 0xbe1027ff, + 0x0700add8, 0x8c3d033d, 0x27202701, 0x3205884c, 0xf4c83403, 0xa4cff493, + 0x35fb9304, 0x3c2704a3, 0x1da0a722, 0x074a3d4a, 0x104c03db, 0xb4c1f390, + 0x9946a640, 0xf0933fb1, 0x2704a358, 0x24a5be21, 0xc5402700, 0x7ebe40b4, + 0x0c070007, 0x001a0cbe, 0x0ea74027, 0xc5ffffdf, 0xba9d48bc, 0x78b4c574, + 0xb89efa0e, 0xfa4e00ba, 0xf093f523, 0xbe00ef34, 0x9300b620, 0x00ef44f0, + 0x00b617be, 0xfe72cea7, 0x5afd93ff, 0xa02704a4, 0xb123bc07, 0xeed8be01, + 0x4b030000, 0xd319d059, 0xd419d123, 0xd299d103, 0x09d19908, 0xf115f205, + 0xd139b201, 0x83122c53, 0x19f22521, 0x10ec53c2, 0xc2c1f235, 0x3bf05507, + 0x45f06501, 0x0bc2c1f2, 0xf2751a07, 0xcec12e07, 0x93238303, 0x00ef2df0, + 0xb5befe85, 0xa10300b5, 0x0310dc03, 0xacc418cc, 0xf0939f22, 0xbe00ef4e, + 0xa700b5a0, 0xffffffce, 0x0100c1b9, 0x93fcc2c1, 0x00ef4df0, 0x00b58bbe, + 0xef5af093, 0xb582be00, 0xfccbc100, 0x0100cab9, 0x975eab0b, 0x7e24f900, + 0x03ff0000, 0x963407b1, 0x7c24f945, 0xe6ff0000, 0xf900814f, 0x00007f2e, + 0x832cf9ff, 0x99ff0000, 0x22f907d4, 0xff00007c, 0xfc15fe05, 0x2505de99, + 0x38dec1fe, 0xde99fe35, 0x99fe4568, 0xfe5569de, 0x656ade99, 0x6bde99fe, + 0xde99fe75, 0x99fe856c, 0xfe956dde, 0xa56ede99, 0x6fde99fe, 0xde99feb5, + 0x30fec570, 0xc571de99, 0xde9934fe, 0x38fec572, 0xc573de99, 0xde993cfe, + 0x40fec574, 0xc575de99, 0xde9944fe, 0x48fec576, 0xc577de99, 0xe1be4cfe, + 0x4b0700b4, 0x070f4c83, 0x33248734, 0x07322b35, 0x2bd333d3, 0x032407d3, + 0x050be8df, 0x07233300, 0xcff0931b, 0xbaea00ee, 0xf503ff45, 0xf493fa8e, + 0xa704a170, 0x74439d30, 0x43c53027, 0x8c4d0378, 0x03240701, 0x07021f2d, + 0x7f2ce334, 0x197f3ce3, 0x803c0334, 0x93f932c2, 0x04a2dcf4, 0xa7222c27, + 0x3d431d30, 0x104c0343, 0x4ea7f2a0, 0xbdffffff, 0x0b010143, 0x07fc4efe, + 0x66fcabd0, 0xdf0ea7c5, 0x0bbeffff, 0x3ea700b9, 0xc1ffffff, 0x4d22fc34, + 0x1e3fdc27, 0x0033b918, 0x3a4d1b01, 0x1ed02743, 0x0fdc830c, 0xddf9d333, + 0xff00007c, 0x0ea7c566, 0xbeffffdf, 0xeb00b8b7, 0x8e0d07fc, 0x63f54efc, + 0x074f6bf0, 0xdf0ea770, 0x9107ffff, 0x6207b307, 0xf5c1f405, 0x34fac130, + 0x00b8b5be, 0x2c832607, 0x0723330f, 0x6b4027c2, 0x84ce23bf, 0x3327ffff, + 0x007e23fd, 0x2bfdff00, 0xff00007f, 0x008224fd, 0xc603ff00, 0x9899c43d, + 0x0c949937, 0xc6231b07, 0x7d998183, 0xe644d607, 0xfd00ca8f, 0x00007f21, + 0xffdce4ff, 0xecbe00bf, 0x08c6fff6, 0x0ea73027, 0x27fffe73, 0x0201221c, + 0x83180c03, 0x0300002e, 0x31032506, 0x091ef178, 0xdf6bd307, 0x0fffdcc4, + 0xffdf0ea7, 0xb815beff, 0x5e072700, 0x4d070126, 0x43333d07, 0x342b3533, + 0x018c34f1, 0x32f5ff00, 0xff000194, 0x00004ee3, 0x004ea303, 0x34f50100, + 0xff00018c, 0x07047299, 0x3310274d, 0x8d32fd44, 0x03ff0001, 0x0507b04f, + 0xf520a700, 0x00019831, 0x9642bdff, 0x9542bd01, 0x8c34f101, 0xf5ff0001, + 0x00019031, 0x004ee3ff, 0x34f50400, 0xff00018c, 0xed309489, 0x00019c34, + 0x9c34e9ff, 0x89ff0001, 0x4c033292, 0xed44530f, 0x00019e32, 0xa034edff, + 0xb1ff0001, 0x074d1df4, 0x077d9d4a, 0x4d1d4b0b, 0x42dcc419, 0x07002711, + 0x16d7be16, 0x19084600, 0x1d42a3c4, 0x965401c4, 0x95f49346, 0x4099049f, + 0x27160726, 0x531abe20, 0x01500501, 0xa745f654, 0xffffdf0e, 0x00b746be, + 0x571e0827, 0xc49d4127, 0x9d402704, 0x949905c4, 0x0144c60c, 0x464496f4, + 0x073d0786, 0x3333334d, 0xf5432b45, 0x00019445, 0x23c459ff, 0x99c45d41, + 0x46b63694, 0xdc047499, 0xb1c30944, 0xad1dab0b, 0x74990e1e, 0xc3455616, + 0xa7ab0bb1, 0xa7a41d40, 0xffffdf0e, 0x00b6eebe, 0xf0430027, 0xfa4ef58e, + 0x0ea7a007, 0xbeffffdf, 0xbe00b6fe, 0xa7001daf, 0xfeffff4e, 0x83094499, + 0x33348743, 0xf9432b44, 0x00004d44, 0x0b4403ff, 0x0ea4ca40, 0xffdf0ea7, + 0xb6b1beff, 0x8e0b2700, 0x832a07fa, 0x42070f2c, 0x43f94333, 0xff00007c, + 0xce23c407, 0xf6ffff84, 0x0700a63f, 0x87453342, 0x07432b32, 0x2be333e4, + 0xe8ef03e4, 0xc100050b, 0xeac5ace4, 0x1946e634, 0xa5f29341, 0x23d1049e, + 0x41270430, 0x43cb413b, 0x043024d5, 0x9e92f493, 0x3443d104, 0x304bd104, + 0xab002704, 0x53051e3b, 0x07010331, 0x16d183d3, 0x11f493d3, 0x200704af, + 0x41013127, 0x4ea7303b, 0x33fd4fff, 0xab293307, 0x11202b3b, 0x59f49340, + 0x43d5049e, 0x120b0430, 0xc5e410c5, 0x4127ace1, 0xc41d30a7, 0xc37d4027, + 0x3d05cd9d, 0x04cd9dc4, 0xa707e39d, 0xffffff3e, 0x010034b9, 0x3ac544b6, + 0xbd4103fc, 0xa7010034, 0xffffdf0e, 0x00b5e6be, 0xfa8e0027, 0x9c7af293, + 0x303c2704, 0x28032419, 0x01274124, 0xf398fe0b, 0xfe0b0027, 0x03330f6b, + 0x061c00f1, 0xfe0b0005, 0x9c56f393, 0x9034a904, 0xa9404e01, 0x27019234, + 0x27140e00, 0x0b0f6b01, 0x93fe4efe, 0x049c3bfe, 0x0184e4d1, 0xd11040ce, + 0xce0180e4, 0x02070941, 0xcd3e1307, 0x0127031e, 0xfe8e0f6b, 0xfd93fd4e, + 0xd1049c18, 0x86018cd0, 0xb3d3be09, 0x27402700, 0xd4d5602c, 0x3d07018c, + 0x42071027, 0x21233105, 0xf4b83403, 0x9bf2f393, 0xad402704, 0xad019232, + 0x8e019034, 0x93fb4efd, 0x049bdff3, 0x018434d1, 0xb107c007, 0x40ced207, + 0x8034d10d, 0xd1412e01, 0x0e018834, 0x93a63e24, 0x049bbff4, 0x01884dd5, + 0x01844cd5, 0x01804bd5, 0xfc4efb8e, 0x9baafc93, 0x8cced104, 0xd1f06301, + 0xd10180c1, 0xa90184c2, 0xa90190c3, 0x930192c4, 0x00eae6f0, 0x61befe05, + 0xf09300b0, 0xbe00eb26, 0x2700b058, 0x11c219d0, 0x931d07c3, 0x00eb35f0, + 0x45bed103, 0xc80300b0, 0xea30dcc4, 0xeb37f093, 0x0ef04300, 0xb0329efc, + 0x93fb4e00, 0x049b53fd, 0x0190d4a9, 0xc107b007, 0xd4a9402e, 0x144e0192, + 0xadff237e, 0xad0192dc, 0x930190db, 0x049b33f3, 0x018c34d1, 0x00ec4ff6, + 0x01883dd1, 0x019234a9, 0x018032d1, 0x019030a9, 0x0711d3d8, 0x030703e4, + 0xe307e3e8, 0x001d27e7, 0x07081e10, 0x27e103e4, 0x4207801c, 0x2cd84283, + 0x45060f20, 0x02902d27, 0x2d27131e, 0x0d1e01e0, 0x2d274506, 0x051e0200, + 0x01802d27, 0x070dd1d8, 0x7f4c8342, 0x2c0344e6, 0x07242b80, 0x333e9b30, + 0x07112334, 0x03418b43, 0x0b44c611, 0x07342b31, 0x07109b12, 0x0301872e, + 0x53400723, 0x7f4c8322, 0x44e62123, 0x2b800c03, 0x1b428704, 0x07419b4e, + 0x7f1c8314, 0x4c0314e6, 0x07412b80, 0x0bd29bd0, 0x85fc93d3, 0xd40b049a, + 0xc4d10d07, 0x0c030184, 0x07049b20, 0xbe212710, 0x0700b3c7, 0x07e0271c, + 0x8cc0d5bc, 0x03181e01, 0xe63007e1, 0x203c0324, 0x4227322b, 0x141d0307, + 0x0d0b1315, 0xb4d11803, 0x20070184, 0xca1f2c83, 0xf493dee4, 0xd1049a3c, + 0x27018443, 0x1e310300, 0x1824f918, 0xc4000506, 0x41270d42, 0x24fd0f6b, + 0x00050618, 0x0103fb8e, 0x23332007, 0x0c27f310, 0x6bfb8eff, 0x0303330f, + 0x0506180f, 0x20041900, 0x0b002741, 0x1d4227fe, 0x0b012704, 0x27fd4efe, + 0x030d07d0, 0xc4dd3ed1, 0x8ef730dc, 0x79f293fd, 0x20c1049b, 0xff3ea748, + 0x30d5ffff, 0x34d10628, 0x10270628, 0x062c34d5, 0x34bd40a7, 0x40270109, + 0x010a34ad, 0xd506219d, 0x9d0a3430, 0xfe0b0821, 0x9b46f393, 0x04329904, + 0x22e31027, 0x34d54027, 0x319d0404, 0x04329d06, 0x0b08319d, 0x6bfe4efe, + 0x6f0fd60f, 0xffff3ea7, 0x2830d5ff, 0x2c30d506, 0xcf4ea706, 0x401dfff9, + 0x1027403d, 0x010231ad, 0xbd0f4c27, 0xa7010834, 0x0934bd40, 0xf9f29301, + 0x31ad049a, 0x4027010a, 0x9d08249d, 0xec270620, 0x3430d520, 0x2030d50a, + 0x4030bd06, 0xa720270d, 0xfffef33e, 0x32054e07, 0x3403e123, 0x40a7f4b8, + 0xfe7b3ea7, 0x933405ff, 0x049abff4, 0x04044ed5, 0x3ea7fe8e, 0x99ffffff, + 0x42242534, 0x34ad4027, 0xfe8e010a, 0x3ea7f54e, 0x99ffffff, 0x4fe62734, + 0xf4930123, 0x99049a94, 0x4ff60844, 0x31d10117, 0x39d10628, 0x30a9062c, + 0x912b0102, 0x010434a9, 0x042b2907, 0x141e2103, 0x89ca4389, 0x430bc844, + 0x4f8b402b, 0x031d41cc, 0x07912311, 0x87418341, 0x0b443334, 0x33430734, + 0x23430b44, 0xfff9c44e, 0xa7d6f2f0, 0xffffff4e, 0x70278407, 0x9a36f693, + 0xff5ea704, 0x41d5fd4f, 0xab5e0628, 0x2c8ad100, 0x076c1906, 0x0f2c832a, + 0x41834a07, 0x1487e207, 0xe5332287, 0x140b4433, 0xd107e22b, 0xd433be07, + 0xd10bb333, 0xde23be2b, 0x03fff9c4, 0x050be8bf, 0x073a0700, 0x461b072d, + 0xad4027c5, 0x1d0148d4, 0x418abd64, 0x32bcbe0d, 0xddf29300, 0x23890499, + 0x8d54114c, 0x84d5cad3, 0x80bd0d38, 0x04cc0d40, 0xc407864f, 0x84d11403, + 0x0ea7062c, 0x03fff9cf, 0x2c84d541, 0x336bbe06, 0x1e712701, 0x034a0733, + 0x2c84d541, 0x9b402706, 0xb4890ef4, 0x4c23892e, 0xf9cf0ea7, 0x8d430bff, + 0x46be4c24, 0x41270133, 0x9103641d, 0xf0937127, 0xf0049980, 0x07ff5092, + 0x27f58e07, 0x4ef58e00, 0x6dfd93fb, 0xd4d10499, 0xc0071080, 0x45b6b107, + 0xbe800c27, 0xd5001b2b, 0xd11080d0, 0x071080d0, 0x274b073c, 0xf293801c, + 0xbe00e7a4, 0xd100a62b, 0x0e1080d0, 0x1ebc9efb, 0x1eb89e00, 0x93fd4e00, + 0x04992ffd, 0xc148d3c1, 0x432e7cd4, 0x2680d499, 0x1e55be46, 0x9d402700, + 0xd4c180d4, 0x7cd4c548, 0xb39efd8e, 0xfd4e0035, 0x1007d007, 0x93542c27, + 0x049cabf0, 0x00a333be, 0x0d070806, 0x9c9ef393, 0x154c2704, 0x04030201, + 0x34033205, 0x3127f4a8, 0x98def493, 0x0a439d04, 0x04c6fd8e, 0x00afbb9e, + 0x20270107, 0xe0001e27, 0xb0859e08, 0xbefe4e00, 0xd6fff795, 0x8e012704, + 0x830553fe, 0x4efe8e01, 0xf9f493fe, 0x24070499, 0x073f2c03, 0x7f2ce334, + 0x197f3ce3, 0x803c0334, 0x27f932c2, 0xf393101c, 0xa70499dc, 0x05410720, + 0x03112332, 0x93f4b834, 0x04987ff4, 0x30a72027, 0xc56a439d, 0x423d8841, + 0x9d0b429d, 0x425d0c41, 0x4d03421d, 0x4ce30438, 0x9b071e7f, 0x4c030cf4, + 0x284fd080, 0xf4000518, 0xf49b4027, 0x81f0930e, 0x1d27049c, 0x86be0c40, + 0xf4930030, 0x07049948, 0x3f2c0324, 0x2ce33407, 0x7f3ce37f, 0x3c033419, + 0xf932c280, 0x9932f393, 0x27282704, 0x03340d40, 0x23f2b838, 0x2307c43c, + 0xe37f2c03, 0x3ce37f2c, 0x0334197f, 0x32c2803c, 0x89f393f9, 0x20270498, + 0x05204c27, 0xc8340332, 0x430ea7f4, 0x1827fffb, 0x00ba98be, 0xfaf30ea7, + 0xbe1427ff, 0xa700ba8d, 0xfffaa30e, 0x2c271027, 0x9efe0e80, 0x4e00a254, + 0x3414c1f5, 0x3ea7f1a3, 0x45fddfff, 0x004e27f4, 0x34d52000, 0x40270208, + 0x020834d5, 0x4fff4ea7, 0xc14311fd, 0xf055ac14, 0x93ac43c5, 0x04979bf4, + 0x07584499, 0x204ce0b1, 0x3027012b, 0xf3355007, 0xc101195e, 0xb88934bd, + 0x28b48926, 0x011052a9, 0xdc33849b, 0xd132071c, 0x0b010c59, 0x1e31038d, + 0x23980305, 0x03f3f021, 0x94010c1e, 0x4fd44dcb, 0x10000000, 0x076207ed, + 0x236103a9, 0x037d07a8, 0x09f6f0a8, 0xc8074027, 0x271ef425, 0xa311ac01, + 0xf3254707, 0x4f304ccb, 0x10000000, 0x131ec807, 0xb4c1f321, 0xff3f8334, + 0x330fffff, 0x34ab1c4c, 0x4c07f325, 0x4fc64d2b, 0x4340cc5e, 0x0b073f07, + 0x2f071d07, 0xbabe3403, 0x8dc202a6, 0x4cb4c11a, 0x040b0087, 0x46160401, + 0xf311f401, 0x3487432b, 0x31a3f405, 0x3f070305, 0x1c070b07, 0x34032f07, + 0x02a690be, 0xdc07f411, 0x7d02d42b, 0x2d07d707, 0xf1313c07, 0xffff2f83, + 0x0b070fff, 0xffff3f83, 0x0bbe0fff, 0x8c4e0046, 0x7c07fd21, 0x07ff625e, + 0x73392b3a, 0xa939a633, 0x07011054, 0x03432b26, 0x1054ad21, 0x111a1e01, + 0x15a301a4, 0x03930594, 0x104cd4a8, 0x33f3510a, 0xc5430b43, 0x98039049, + 0xf331f220, 0x31035803, 0xb499f335, 0xf2f3310d, 0x41fee234, 0xdf0ea7fd, + 0xdc83ffff, 0xbed3330f, 0xf900ae46, 0x00007cd3, 0xb9b499ff, 0x28a32307, + 0x23074124, 0xf9482ca3, 0x00007ed4, 0x7cd2fdff, 0x23ff0000, 0x7ed4fd41, + 0xa7ff0000, 0xffffdf0e, 0x00adf2be, 0xbe34b0c1, 0xa702ad8c, 0xfd4fff4e, + 0x40274301, 0xa70ef49b, 0xffffff4e, 0x270e4499, 0xcb233b21, 0xbf3ea724, + 0x2138fd4f, 0x34054127, 0x34032153, 0x412722d6, 0xcfff3ea7, 0x6034c5fd, + 0xe612b499, 0x30b4c144, 0x39be4104, 0xf183fffb, 0xfa4ef58e, 0x95d2fb93, + 0xe6b11904, 0xc100e81f, 0x402748bd, 0x30a72027, 0x8d0cb49d, 0xb2654eb3, + 0xc50bb49d, 0xdf8350b2, 0x8000000f, 0xd123d04c, 0xfff0dfa3, 0xd103ffff, + 0x076b11c4, 0x333d874d, 0x07432b45, 0x2b333334, 0x03a30734, 0x050be8af, + 0x07c30700, 0xbe1a070b, 0x03002e37, 0x0507b0cf, 0xafa2be00, 0xada6be00, + 0xad95be00, 0x44c4b900, 0x07453604, 0x7e0b071a, 0xc3b9fd97, 0x3cc0043f, + 0xc4b924ff, 0x47e6043d, 0xb96ab39d, 0x27043cc3, 0x6bb39d11, 0x044ec4b9, + 0x10274496, 0x46334107, 0xb49d43ab, 0x874d076b, 0x2b45333d, 0x33340743, + 0x03342b33, 0x0507b03f, 0x4e34b900, 0x3c32b904, 0x96112704, 0x07102744, + 0xab463341, 0x09f29342, 0x249d0495, 0x4834b95e, 0x9d102704, 0x34b95f24, + 0x4486043d, 0x23c11127, 0x03402748, 0x9d241d31, 0x23c56021, 0x4efa8e48, + 0xddf393fe, 0x34190494, 0x42274144, 0xfb7e341d, 0xf0cfbefe, 0x5efe0eff, + 0xf74efc17, 0x4207d207, 0xb1078007, 0x38272027, 0x44034205, 0xb489f3c8, + 0x0d312712, 0x14b189d4, 0xb499d12d, 0x9d343b34, 0x84991ed3, 0x32b98909, + 0x910344c6, 0x84999153, 0x0430274f, 0xc1312742, 0x3f6b4c84, 0xff004e58, + 0x03a307ff, 0x1e8021ad, 0x86a1270b, 0x13a02734, 0x898002ad, 0xe90730b3, + 0x030fec03, 0x34530f3c, 0x7a07e453, 0xe8033703, 0x7c834a07, 0xe337e320, + 0xc64283e7, 0x27456676, 0x2702902d, 0x181e104c, 0x01e02d27, 0x1e604c27, + 0x2745060f, 0x1e02002d, 0x802d270c, 0x03061e01, 0x242b802c, 0x14331307, + 0x41071e9b, 0x0fff4d83, 0x1d034506, 0x142b1000, 0xc39bc207, 0x0e072c87, + 0x02534207, 0x237f4c83, 0x0344e601, 0x242b802c, 0x3e074087, 0x3c9b342b, + 0x4c834307, 0x0344e67f, 0x342b803c, 0x9b30b489, 0x03210b20, 0x44530f4c, + 0xd215230b, 0x990cd48d, 0x4ff60984, 0xb38900a5, 0x03e90730, 0x733103e1, + 0x03e15331, 0xec030f3c, 0x5334530f, 0x033703e4, 0xe34a07e8, 0x83e7e337, + 0x6676c642, 0x902d2745, 0x104c2702, 0x2d27181e, 0x4c2701e0, 0x060f1e60, + 0x002d2745, 0x270c1e02, 0x1e01802d, 0x802c0306, 0x1307242b, 0x1e9b1433, + 0x4d834107, 0x45060fff, 0x10001d03, 0xc207142b, 0x2c87c39b, 0x42070e07, + 0x4c830253, 0xe601237f, 0x802c0344, 0x4087242b, 0x342b3e07, 0x43073c9b, + 0xe67f4c83, 0x803c0344, 0xb489342b, 0x03209b30, 0x0b417341, 0x0f4c0321, + 0x4453230b, 0xd48dd225, 0x2c84890e, 0x9910d48d, 0x84890b83, 0x8d430b2e, + 0xb18912d4, 0x30b08932, 0x0032c9be, 0xffff2ea7, 0x6e23a9ff, 0x46d0550d, + 0x7024a937, 0x0946860d, 0x8d340ad4, 0x24a918d4, 0xd3290d70, 0xd38d430a, + 0x4ef78e1a, 0xe1fb93f5, 0xb3c10492, 0xff4ea748, 0x13a5ffff, 0xe3264499, + 0x079107f0, 0x20820770, 0x145c2742, 0x9908915e, 0x450608b4, 0x5e115c27, + 0xb0c10886, 0xf398be48, 0xf65007ff, 0xc108790f, 0x4c8348b4, 0x3334070f, + 0x2b448735, 0x33d30734, 0x03d32bd3, 0x050be8df, 0xacd6c100, 0x011c60d5, + 0x2058b499, 0x0d07204c, 0x006ddcbe, 0xe60ab499, 0x9903ca4f, 0x4ce00a94, + 0xb903c210, 0xb903adb4, 0x9303f9b2, 0x03c22bfa, 0x03fab1b9, 0xa515a505, + 0x03aeb3b9, 0x28034103, 0x03fbb0b9, 0xa49d1803, 0xb9a25d04, 0xb903b5b4, + 0x0303fcb2, 0x07a17d31, 0x9da41d1b, 0xa03d05a3, 0x0306a29d, 0x2704281d, + 0xbe0a0728, 0x07009c5c, 0x070b07c0, 0xac0d0319, 0xbdf29303, 0x4b7e03c1, + 0x931b07fd, 0x03c1b3f0, 0x04081d03, 0xbe202c27, 0x27009c38, 0x27c49641, + 0xa940ab40, 0xc103e0be, 0x212770b3, 0x20274496, 0x3e0e1027, 0xb3991127, + 0xacb4b909, 0x2721ab03, 0x27340e10, 0xab420711, 0x314fe641, 0x48b0c101, + 0x027e0123, 0x270516f9, 0x8b5e0f5c, 0xebaebe07, 0xb9a459ff, 0x3003acb0, + 0x1e212749, 0x27a4790b, 0x27491030, 0x93230731, 0x03c167f4, 0x30274439, + 0x31274204, 0x1f6b1307, 0xb1072546, 0x8021bd03, 0xb1270b1e, 0xb0271486, + 0x8002bd13, 0xffff4ea7, 0x094499fe, 0x34874383, 0x432b4433, 0xc132f393, + 0x4d4df903, 0x19ff0000, 0x5df49333, 0x41c10491, 0x27d00b6c, 0x27349641, + 0x001d8340, 0x89d43b01, 0x93890e92, 0x96c12710, 0x07c02714, 0x471b070d, + 0xf35fbecc, 0xbe0786ff, 0xbeffeb24, 0x06fff318, 0x105c2705, 0x0706f15e, + 0x071b070d, 0xf39fbe2c, 0x15fd93ff, 0xd4a90491, 0xfc9303e0, 0xc503c0d4, + 0xc40170d4, 0xd4d5c011, 0xd4b90428, 0x302703ac, 0xd49d20a7, 0x60d39d09, + 0xd56ad29d, 0x9d042cd0, 0xd29d5ed3, 0x2690995f, 0x01830353, 0x003980be, + 0x011c64d1, 0x06074586, 0x011c0d03, 0x003820be, 0x0d072d07, 0x2d031907, + 0x0d030408, 0xf37e03ac, 0x030d07fb, 0xbe04080d, 0x0700150c, 0x1563be0c, + 0x27412700, 0xd49d115c, 0x066c5e08, 0xb0b94027, 0xb49d03ad, 0xaeb4b90a, + 0x35b09d03, 0xb936b49d, 0xd103afb0, 0x9d03b0b4, 0xb4c537b0, 0xb7b0b938, + 0xb8b4b903, 0x3cb09d03, 0xb93db49d, 0xd103b9b0, 0xa903f0b4, 0xb903dcb1, + 0x0703bab3, 0x3eb09d2e, 0x9b44b4c5, 0x0736c621, 0x33310741, 0x2b343348, + 0x0bc44743, 0x45420bc2, 0x07081eb4, 0x38cc03c2, 0xf493bc45, 0xd1049034, + 0xd103f04e, 0xa903ec40, 0xa903e241, 0xd103dc42, 0x0b03e443, 0x87219be0, + 0xf8ed0333, 0xa9e30b07, 0x0703e841, 0x0b315332, 0x27e10b32, 0x43550c2c, + 0x2103031e, 0x423b4127, 0x93f84cca, 0x048ff3f4, 0x429d4151, 0x02230724, + 0x27210713, 0x031e0c3c, 0x41273103, 0x42ca433b, 0xd5f493f8, 0x2c27048f, + 0x25439d0c, 0x2103031e, 0x423b4127, 0x93f84eca, 0x048fbff1, 0x9d241499, + 0x4c142612, 0x0c4c270c, 0x9d251099, 0x0c142414, 0x0c0c270c, 0x03c613a9, + 0x03c812a9, 0x03fb14b9, 0x2d03239b, 0x422303ff, 0x109d2a53, 0x474f6b25, + 0x07423432, 0x0b051e23, 0x93215323, 0x048f7bfb, 0x03c0b4b9, 0x03f9b3b9, + 0x4c274536, 0xc0b4bd10, 0x03420703, 0x9b435347, 0x24b09943, 0x03c0b3b9, + 0x2127420b, 0x203b439b, 0x4553e207, 0x32274a33, 0x2325b199, 0x07e40be1, + 0x3b413b43, 0x0b201330, 0x02e28b43, 0x07e4074e, 0xbe00271e, 0xa9000670, + 0xa703eab3, 0xd07fff4e, 0x03dcbca9, 0x40274281, 0x9d28b38d, 0xc39b34b4, + 0x41272c2a, 0xc134b49d, 0xc4c230b4, 0x07b0b10d, 0xf6287e1c, 0xbcc5b0b5, + 0xff4ea730, 0x44c1fd4f, 0x004e3c74, 0x30271000, 0x3127031e, 0x43ab4347, + 0x501041c0, 0x0b42c041, 0x1e0d43c0, 0x403c2710, 0x3c270d1e, 0x27081e90, + 0x031e503c, 0xf493ff1e, 0xad048ec0, 0x93107c43, 0x048eb7f4, 0x03b440b9, + 0x9307409d, 0x048eabfc, 0x302740a7, 0xc54ec48d, 0x949950c3, 0x0e41d826, + 0xc49d4027, 0x9d40a75e, 0xc39d5fc4, 0x0a949960, 0x41104cc0, 0x0d030c07, + 0x190703ac, 0xbe02f293, 0xf9b07e03, 0xf0931c07, 0x0303bdf8, 0x2704081d, + 0x9dbe202c, 0x07c60098, 0x0c074127, 0x03bbd49d, 0x9304080d, 0x03bddbf3, + 0x32014827, 0x02053403, 0xf4a80403, 0x4c034607, 0x45f293fc, 0x18270492, + 0x20013827, 0x40051123, 0x44032403, 0xf093f398, 0xd1048e28, 0xc5042802, + 0x03d1f462, 0x63c5042c, 0x2ad489f8, 0x590e048d, 0x89027d72, 0xd38d1293, + 0x1494891a, 0x891cd48d, 0xd28d1692, 0x1893891e, 0x8920d38d, 0xd48d3094, + 0x32928922, 0x9924d28d, 0xd39d3503, 0x3694990f, 0x44963027, 0xd39d3127, + 0x3c049906, 0x9d0cd19d, 0x4027b8d4, 0x810bd49d, 0x5cd2c592, 0xd3c59391, + 0xc594a160, 0x929964d4, 0x04d29d0a, 0x9d0c9399, 0x94b105d3, 0xb13cd4c5, + 0x38d2c592, 0x990b9399, 0x33470a94, 0x340b4183, 0x4f6b4307, 0x9910d49d, + 0x1cdc5e01, 0xd2995140, 0x4b24d804, 0xc35f0399, 0x2043ce41, 0x42cb4107, + 0x41c44583, 0x60039917, 0x2705d499, 0x27340e20, 0xc3420721, 0x6b340741, + 0x27031e3f, 0x59f49330, 0x4499048d, 0x663f6b60, 0x2734d646, 0x99081e40, + 0x418362d4, 0x340741c3, 0x43073f6b, 0x4027031e, 0x2716d49d, 0xb9d49d40, + 0x9d1d7399, 0x9fbe13d3, 0xf493003f, 0xa9048d24, 0x99107c44, 0xd0c504d3, + 0xb4d1c5b0, 0x3cbcd48d, 0xb027203c, 0x4307121e, 0x4c837b51, 0x04d49ddf, + 0xd49d4227, 0x93b103b9, 0x048cf7f4, 0xc06a4e99, 0x997effec, 0x4cc004d4, + 0xd0c17710, 0x07202738, 0x38101e30, 0xfc24f931, 0xce000508, 0x315b0d4e, + 0x12072103, 0x31b61183, 0x2cc4051e, 0x949935ff, 0x3b21270b, 0xd420ab24, + 0x01ffff2e, 0x27302735, 0x4127111c, 0x428b433b, 0x31034506, 0x221ef198, + 0x8c9ef493, 0x6b449904, 0x41832347, 0x2cc0240b, 0x320713ff, 0x41273153, + 0x40ab433b, 0x1e38d4c5, 0xff2c2713, 0xf49330a7, 0x9d048c78, 0x041e6a43, + 0x9dff2c27, 0x9099bad2, 0x9d40a737, 0xd49d08d0, 0x38929909, 0x5911d29d, + 0x27422474, 0x93161e40, 0x048c4ff4, 0x27584499, 0x204c0430, 0x43073127, + 0x4f6b41c3, 0x9312d49d, 0x048c37fc, 0xb128c389, 0x2cd38dc2, 0xc5109489, + 0x748da8d2, 0x0e90892a, 0x708d4027, 0x04d39928, 0x739d1027, 0x99941518, + 0x938904d4, 0x83425332, 0x03345b41, 0x43073f3c, 0x993f4c83, 0x4c13b8d2, + 0x27240240, 0x0b442711, 0x14d49d32, 0xd49d4227, 0x17d19d15, 0x46534307, + 0x8d0bc399, 0x3ff62ed4, 0xc2c1009b, 0x10d39948, 0x9934d2c5, 0x102707c4, + 0x11274486, 0xfd05d703, 0x2318cc03, 0x07fc15d7, 0x34cd0341, 0x070d0701, + 0xbefc2519, 0x23ffeac9, 0xe6014ccd, 0x5e500704, 0xc461016e, 0x0344d4c5, + 0x3d0768dc, 0x2d07d003, 0x3ce34127, 0x0bc49d7f, 0x237f2ce3, 0x341968dc, + 0xc2803c03, 0x0d07f932, 0x93680c03, 0x048cbff1, 0xbe402c27, 0x0602a10a, + 0x07b123b7, 0x9d4f6b4b, 0x4d0bbad4, 0x93684499, 0x048b57f3, 0x996a349d, + 0x3cc0bad3, 0xf4930eff, 0x99048b48, 0x3d0b6a44, 0x8968349d, 0xfa931090, + 0x8d048b38, 0x928928d0, 0x44dbc10e, 0x7926d28d, 0x9d0b0773, 0x74990dd3, + 0x9d190704, 0x92890ed4, 0x1094890e, 0x0144a3c1, 0x0b429b9c, 0x074487c3, + 0xbec40b28, 0x0102a0a2, 0x0b4b0798, 0xc58b0b4c, 0xd8c550d4, 0x24a0994c, + 0x03fccd03, 0x9958d09d, 0x3b0726a2, 0x615ad29d, 0x0b7485a0, 0xc540053c, + 0xa29954d3, 0xfccd0325, 0x59d29d03, 0x9548dcc5, 0x5ad09973, 0x03eca4d1, + 0x890e9189, 0x31271092, 0x303b4c0b, 0xb40b342b, 0x2287219b, 0x10270807, + 0xa385ab75, 0x00952bbe, 0xfc9bc027, 0x0ca4990e, 0x0a0745f6, 0x2fbe1d07, + 0x4127ffe2, 0xc10ca49d, 0xd4c134d3, 0xb5735544, 0x3078c574, 0x9d089999, + 0xa0991979, 0x1b709d24, 0x9d25a299, 0xa3411c72, 0x2534a099, 0x9da45173, + 0x743518d0, 0xe304a499, 0x04a49d42, 0xa41d4127, 0xbe30dcc5, 0xbeffefa8, + 0xa700a462, 0xfd4fff4e, 0x6cc54411, 0xe864c5c0, 0xc5a86cc5, 0x0507b06c, + 0xf58ef0c3, 0xf493fd4e, 0x99048a28, 0xf9630444, 0x4158423c, 0xffef77be, + 0x4b1ed027, 0x3c033f07, 0x2720273c, 0x3205164c, 0xf4c83403, 0x20273f07, + 0x050f4c27, 0xc8340332, 0x3c4c27f4, 0x07583c27, 0x3cf38d0f, 0x3c272407, + 0x07040b10, 0x0af39d1f, 0xf87ef405, 0xf6d007f6, 0xf4007e05, 0xf4933127, + 0x9d0489d0, 0x0d070443, 0xfd8ef943, 0x0ea7fc4e, 0xbeffffdf, 0x2700a1aa, + 0xbe35100d, 0x93000b83, 0x049a4bfc, 0x0ea7c005, 0xbeffffdf, 0x2700a16f, + 0x1d0c2710, 0x41073107, 0x3733c201, 0x432b4933, 0x411d420b, 0xf0581103, + 0x8986fc93, 0x27402704, 0x0dc49d30, 0xc3c540a7, 0x40c3c548, 0x7e7cc4c5, + 0x4c27f0bf, 0x000d270c, 0x07202740, 0x26c49d10, 0x9d24c49d, 0x18be25c4, + 0x202700a1, 0x42073827, 0x40f54333, 0xff0004d0, 0x0d032103, 0xf3680800, + 0x4fff4ea7, 0x6843c1fd, 0x8936f293, 0x33102704, 0x40a7103c, 0x9d60219d, + 0x219d5f24, 0x1c3c535e, 0x4d273524, 0x051e1000, 0x20004d27, 0x8912fc93, + 0x7ac4ad04, 0x78c4ad10, 0xbe0c0710, 0x27006424, 0x64c4c540, 0x8e61c49d, + 0x4efe0bfc, 0x1f1ea7fe, 0x2c27fffa, 0x27e0270c, 0x1409103c, 0x423b1203, + 0x2103e40b, 0x4ea7f398, 0xa1fffa23, 0x8e0e2b40, 0x0b0127fe, 0x233ea7fe, + 0x34c1fffa, 0xc5040e34, 0xfe0b3430, 0xeea7fb4e, 0xc1fffa23, 0xd10734e4, + 0xd40744c6, 0x4ea73c1e, 0x99feffff, 0xe2990944, 0x87438324, 0x2b443334, + 0x4d41f943, 0x03ff0000, 0x9b120328, 0x0b41271d, 0xa1423b10, 0x02140be3, + 0x07130731, 0x011f10d1, 0x27100000, 0x000000df, 0x23bea710, 0xb4a1fffa, + 0xa730d4c2, 0xffffdf0e, 0x00a033be, 0xc00701c3, 0xc566cf6b, 0xffdf0ea7, + 0xa03cbeff, 0x070b0700, 0x090dbe1d, 0xa7c5a600, 0xffffdf0e, 0x049efb0e, + 0xfb8e00a0, 0x0e27fb4e, 0xbe020000, 0xa7000726, 0xfffa23be, 0xb49d4827, + 0x27b00524, 0x0200001e, 0x45be0b07, 0xbc990008, 0x030b0724, 0xbe1c07c6, + 0x270004b9, 0xb54c3b41, 0x30fb8eb4, 0x85f09302, 0xfe0b00d6, 0x87f2f393, + 0x9d402704, 0x00276130, 0x0b6434c5, 0x930230fe, 0x00d691f0, 0xf393fe0b, + 0x27049878, 0xc6341d40, 0x1d412704, 0x0b002734, 0x65f493fe, 0x40190498, + 0x4ea7fe0b, 0xd5ffffff, 0x060a4440, 0xff2ea708, 0x2441fdaf, 0x7fff3ea7, + 0x05400bfd, 0xe3342124, 0x3425104c, 0x4ca33411, 0xa70b1e10, 0xfd7fff3e, + 0x4ce33411, 0x15002710, 0x93fe0b34, 0x048783f4, 0x536c40c5, 0xa7018307, + 0xffffff4e, 0x2745409d, 0x07fe0b00, 0xd0412340, 0x04c01442, 0x0e08c011, + 0x20100c40, 0xf093200c, 0x0b00d62f, 0x51f493fe, 0x44990487, 0x96408b5a, + 0x200c2045, 0xd63df093, 0x93fe0b00, 0x04873bf4, 0x2758409d, 0x30fe0b00, + 0x50f09302, 0xfe0b00d6, 0x8726f393, 0x0d01c404, 0x270e3489, 0x8d42a300, + 0xfe0b0e34, 0x270e3489, 0x8d42e300, 0xfe0b0e34, 0xf4930230, 0x1e00d659, + 0x9df39314, 0x05160497, 0x30154027, 0x40a7071e, 0x40273415, 0xfe0b0407, + 0x9786f493, 0x0b401104, 0x7df393fe, 0x40270497, 0x40a73405, 0x41273415, + 0xfe0b341d, 0x0230fe4e, 0xd648f093, 0x27fe8e00, 0x27049641, 0xbe040740, + 0x270008ae, 0x4efe8e00, 0xfde3befe, 0x8e0027ff, 0xc00401fe, 0x48d45647, + 0x2f44c018, 0x41c04554, 0x9d42e442, 0xc02d1e00, 0x46e42545, 0x2e1e0094, + 0x252a4cc0, 0xc02b4c54, 0x49e43748, 0x281e0084, 0x32394cc0, 0x79454cc4, + 0x0011501e, 0x00119f1e, 0x11fe6a5e, 0xfe7f5e00, 0x9f5e0011, 0x5e0011fe, + 0x0011fed3, 0x11fee65e, 0x119d1e00, 0xff195e00, 0x3d5e0011, 0xff4ea7ff, + 0x44c1fd4f, 0x004fd874, 0x24200000, 0x4ea70349, 0xadffffff, 0x690d6e43, + 0xad202700, 0x1e0d7040, 0xff4ea72c, 0x44c1fd4f, 0x004f3c74, 0x93200000, + 0x00d5c2f2, 0x3027171e, 0xffff4ea7, 0xe1f293ff, 0x43bd00d5, 0x051e0d76, + 0x00614d9e, 0xfe0b0207, 0xd007fd4e, 0xffdf0ea7, 0x9dd4beff, 0x08d09900, + 0x2027d161, 0x01396bbe, 0x0706d045, 0xd201d311, 0x44873419, 0x4005420b, + 0xd455d431, 0x41033419, 0x0ea7341d, 0xbeffffdf, 0x41009d83, 0x960027d4, + 0xc3012744, 0x8e018301, 0x51fb4efd, 0x07c00704, 0x22b107d2, 0xe6aa3e24, + 0xbf4ea70b, 0x4b05fde4, 0xc2414d15, 0x43353027, 0xe4af4ea7, 0x154205fd, + 0xff2ea74d, 0x4335fdef, 0xf3e8031e, 0x27d424c1, 0x6a4ddc33, 0xc341f5fc, + 0x3d0bc451, 0x03074d2b, 0x0d2bc455, 0xfb8ec345, 0x0e51fa4e, 0xc307b007, + 0xa107d207, 0x3e024307, 0xd4154e07, 0x4496b451, 0xd211dc15, 0xd005943e, + 0xd41108a6, 0x242b2c07, 0x2516d235, 0xd2250127, 0x1a07fa8e, 0x0b07140b, + 0x25ff787e, 0x964127d0, 0x07402704, 0x4efa8e04, 0x3414c1f5, 0xb407fca3, + 0x83581299, 0xd1270fbc, 0x33c4f0c5, 0x3b3d07b3, 0x07c02732, 0x84be2391, + 0x11c1ffff, 0xc4f8c150, 0xc108f29d, 0xb403c4f2, 0xf465f335, 0x0f07fc55, + 0xf105fb15, 0xfc45b423, 0x61188c03, 0xfeda7e2a, 0x01370fe6, 0xc1599499, + 0xd43b5493, 0xfcc5fda5, 0x24f49d30, 0x94c10f07, 0x03b50334, 0xfb851c0c, + 0xb523f375, 0xf4c5fcb5, 0xfeae7e34, 0x010b0fe6, 0x3f077807, 0x3c037a0b, + 0x27202738, 0x3205204c, 0xf4c83403, 0x3d272027, 0xf2c5ffff, 0xb8f3c5bc, + 0x5ec0f2c5, 0x740100d7, 0x602744d6, 0x6407071e, 0x680b6853, 0xa403a707, + 0xae5e5027, 0x54f45100, 0x0f07384c, 0xe6fe637e, 0x4100c00f, 0x03f451fd, + 0x4c2338dc, 0x55fd4538, 0x38dc23f4, 0xa60754e6, 0x09186c03, 0xb8f4c1ac, + 0x032b4cce, 0xab4c07c2, 0x07c4874f, 0xc1c10b1f, 0xf2c538c2, 0x1126d6bc, + 0x0b0f07a1, 0x7e120118, 0x0fc6fe69, 0xbcf0c57d, 0x0938c0c5, 0xc1a309ac, + 0xd30dbcf2, 0xa431a129, 0xd215d12d, 0x2d071807, 0x140ba321, 0x28030f07, + 0xc6fe8f7e, 0xc4f3c10e, 0x3141a451, 0x180b0f07, 0x2d07a341, 0x2c03140b, + 0x1c0c0320, 0x89fe737e, 0xf1c12694, 0x4c93c1c0, 0x450b419b, 0x430b4487, + 0xd4294d05, 0x0bb8fcc5, 0x26948954, 0xff4f54fa, 0x03c0f2c1, 0x21031c7c, + 0x89c0f2c5, 0xf3c12894, 0x2334fac0, 0x1e0027ff, 0xdf0ea73d, 0x77beffff, + 0x90c1009b, 0x04b29950, 0x03589199, 0xbe212304, 0x9900050b, 0x90c15991, + 0x05b29954, 0x0004febe, 0xb49d4027, 0xa7412705, 0xffffdf0e, 0xbe04b49d, + 0x27009b23, 0x8efc8304, 0x07f94ef5, 0x14bc23b0, 0x4b0b4147, 0x30074209, + 0x0999d107, 0x0724c624, 0x07241e01, 0x47410341, 0x270107e4, 0xeb0b1c1c, + 0x4c101d2b, 0x0311271d, 0x05f1f001, 0x531e3027, 0xe203e209, 0x40072266, + 0x3b0c4c23, 0x87330149, 0x071047c4, 0x0b21234b, 0x0dc30b41, 0x07328742, + 0x233c0b20, 0x2ba42712, 0x3b1b0b2d, 0x033301a9, 0xc40d0a21, 0xffffffdf, + 0x21270bff, 0x4127071e, 0xce05142d, 0xe1270123, 0xca2be03b, 0x1223e30b, + 0x0307f258, 0xf54ef98e, 0xf0c5f663, 0x24029954, 0x323b3127, 0x0750f2c5, + 0xc520074f, 0xf1c54cf3, 0x142c2358, 0x2740f4c5, 0xf1c1103c, 0x05402740, + 0xc5140314, 0xf38840f1, 0xf2c1a207, 0x2310274c, 0xc53a2721, 0x8c2748f1, + 0x5cf2c50d, 0x8960f3c5, 0xa38918a7, 0xea72f01a, 0x4cf4c100, 0x34eec307, + 0xf1c100e1, 0x07480750, 0x0d4c2338, 0x3b0c3c23, 0xc1313b41, 0x3c0b54f1, + 0x14871201, 0x120b8123, 0x5127b387, 0xb20b9707, 0x2027583b, 0xd1078103, + 0x91036027, 0x1e44f2c5, 0x071e014f, 0x5b3e072f, 0x0f3c8338, 0x420b4387, + 0x2ae64201, 0x428b4507, 0x02074506, 0x031e2e07, 0x42070e07, 0x40ce450b, + 0xc1b2051b, 0x4f0744f2, 0x340b3387, 0x40272203, 0xc103b403, 0x0544f2c5, + 0x05091e34, 0x1ed403de, 0x034e0503, 0xf0610314, 0x3f0705f9, 0xf4c1211e, + 0xa6c4ca5c, 0x37074607, 0x362b4103, 0x7496740a, 0x12013127, 0xd2051403, + 0xf3a8d403, 0x3401dd1e, 0xd4054546, 0xd4034027, 0xf1c13405, 0xce340340, + 0xf2c1ed31, 0x0f82ce58, 0x271aa489, 0x274c0e00, 0xc50f6b01, 0xf4c148f0, + 0x1aac8d44, 0xa48d471b, 0x60f3c118, 0x31238103, 0x0360f3c5, 0x003ff6a2, + 0x48f0c1ff, 0xf58ef643, 0xffff3ea7, 0x0834d1ff, 0xd5400b06, 0x0b060834, + 0xa7fe0bfe, 0xffffff4e, 0x010042b9, 0x07fc40c1, 0x83400732, 0x31030f4c, + 0x4027121e, 0x14fd0103, 0xff00007c, 0x21234007, 0x070f4c83, 0xf0133314, + 0x091e03f3, 0x007e14f9, 0x4006ff00, 0xffff4ea7, 0x0042bdff, 0xfc40c501, + 0xfc4efe0b, 0xb43ec007, 0x0c0e4127, 0x04074027, 0xfc4efc8e, 0xcf03c007, + 0x03ffffff, 0x0000cf83, 0x1c07fc00, 0x3c272027, 0x980abe16, 0x234ea700, + 0x3027fffa, 0xc5404cc5, 0x40c53c43, 0x4efc8e38, 0x23d007fa, 0xc24714dc, + 0xdc03cd0b, 0x24db9914, 0x4127ce09, 0xae074b3b, 0xa30b4223, 0xa432d001, + 0xfa8e0127, 0x3b0c2c23, 0x87e20b2b, 0x87040b4e, 0x8affbe23, 0x27412700, + 0x9dca0d00, 0xfa8e31d4, 0x0399f74e, 0x3b412724, 0x07f06343, 0x070a0174, + 0x07f105d0, 0x877333b1, 0x27c00784, 0x07c24990, 0x871a070b, 0xbe910322, + 0x0b008ac9, 0x03b70ba8, 0x109cc4c2, 0x24d499e9, 0xc407de01, 0xd49d4103, + 0x03f40124, 0x07d405c6, 0x071f070d, 0x0531272c, 0xff6d7efe, 0xd3b10596, + 0x4c3b4127, 0xd3b5340b, 0xf78ef043, 0xf093fa4e, 0xbe00d04e, 0x9300936c, + 0x00d04ef0, 0x009363be, 0xfa1fbea7, 0x0cdc27ff, 0xb209a027, 0xc2071d07, + 0xf093cd3b, 0x0700d058, 0xbeb2033c, 0x0b009344, 0xc4d103ac, 0x000600bf, + 0xcea7e1ff, 0x89fffa23, 0xf09332c1, 0xbe00d05d, 0xa1009328, 0x07c3b1c1, + 0x934a0721, 0x00d064f0, 0xfa0e2a2b, 0x0093139e, 0x08c1f64e, 0x3c0cc138, + 0x07240e99, 0x27b107d0, 0x27702790, 0x3c270c6c, 0x2b06071c, 0x03031e36, + 0x07222701, 0x5b203b4c, 0x5c2c0b40, 0x03f3f041, 0x2bc2041e, 0x234007eb, + 0x24470c4c, 0x21492d0b, 0x410b4e3b, 0x4487d301, 0x3807430b, 0xa1273c0b, + 0x11034305, 0x3e074a07, 0x214d403b, 0xc40b3703, 0x7127030a, 0x91071902, + 0x4e3b4a07, 0x94da4223, 0x07766614, 0x7e0d0713, 0x1007fc09, 0xb97e0d07, + 0x24de99fe, 0xa190cbca, 0x3cd3c1d4, 0x2b3cdbc5, 0xa54b0b43, 0x4ef68ed4, + 0x3c02c1fa, 0x074003c1, 0x0304a1d1, 0xe30fffdd, 0x2b0fffdd, 0x2ba00732, + 0x3800c1d4, 0xbd073766, 0xb307d302, 0xc20bcb07, 0xf5be1c07, 0x0a070095, + 0x357e1c07, 0x06db2bff, 0x7e0d07d6, 0x0a07fdf6, 0xfa0e1d07, 0x8eff235e, + 0x99fa4efa, 0xd0073104, 0xb307a207, 0x46c6c107, 0x26fc1d7e, 0x070d0705, + 0xfb877e1c, 0xd49d4027, 0x5e0fd631, 0x070bb2c0, 0xfdb07e0a, 0xb3c00e66, + 0x234c474f, 0xd299144c, 0x274d0b24, 0x09323b31, 0x22312344, 0x1e3c0734, + 0x03420711, 0x07c44247, 0x1e31033c, 0x03320705, 0x3b412738, 0x07d1a143, + 0x0b312334, 0x0b13eb13, 0x7e0d0714, 0xd489ff4b, 0x030d0732, 0x8d1c0741, + 0xfa0e32d4, 0x27fb245e, 0x4efa8e00, 0x07d207fa, 0x46b107a0, 0x073d072a, + 0xa72b071a, 0xfffa230e, 0xa6fd7e7e, 0x23cea707, 0xc099fffa, 0x27222724, + 0xbe070310, 0x070131d4, 0x7e0c0710, 0xd61efda4, 0xf49b4027, 0x07fa8e0e, + 0x0c0c2740, 0x0103031e, 0x203b2127, 0xa7f824ca, 0xffffff3e, 0x060834d1, + 0x420b1027, 0x060834d5, 0x9d9e2227, 0x4ea70131, 0xbdffffff, 0x0b0d4440, + 0xff2ea7fe, 0x3027ffff, 0x0d4423bd, 0xf49310a7, 0x9d048f64, 0x239d4341, + 0x27239d26, 0x4ea7fe0b, 0x01fd4fff, 0x7df39342, 0x4d2703cf, 0x340507d2, + 0x150c4c27, 0x35402734, 0x07322530, 0x9e344503, 0x4e008bba, 0xff4ea7fd, + 0x44b9ffff, 0xd0070d44, 0xf09345a6, 0x0700ce6c, 0x90e6be1d, 0x45f49300, + 0x3d2703cf, 0x430507e2, 0x34270407, 0x4d254315, 0x879efd0e, 0xfe4e008b, + 0xffff4ea7, 0x4444b9ff, 0x9345660d, 0x00ce61f0, 0x0090b7be, 0x6f9efe0e, + 0xfd4effd2, 0xffff4ea7, 0x4444b9ff, 0x66d0070d, 0x89013146, 0x03890a02, + 0x4cf09308, 0x91be00ce, 0x0d070090, 0xeebe0803, 0xf393ffd2, 0x99048eb8, + 0x41034334, 0x8e43349d, 0xa7fb4efd, 0xffffff4e, 0x0d4444b9, 0xb007f123, + 0x4566d107, 0xce43f093, 0x905ebe00, 0x930f0700, 0x00ce50f1, 0xbe102c27, + 0xf6008769, 0x41fd93d4, 0xfc9300ce, 0x2703cea8, 0x0507e14d, 0x844c27c4, + 0xcb25c415, 0xf3be0d07, 0x20070089, 0xcc032103, 0x273f070c, 0x03310143, + 0x03c10534, 0x59f4a8c4, 0x07330934, 0x0dc45d1d, 0x8cf093c3, 0x22be03ce, + 0xf0930087, 0xbe03ce68, 0x03008aba, 0x4efb8ef1, 0xffcea7fc, 0xc4b9ffff, + 0xd0070d44, 0x01114626, 0x03310221, 0xcdebf093, 0x8fdebe00, 0x26c49900, + 0x042745a6, 0xce15f193, 0x930c9e00, 0x030d0700, 0xf5dfbe08, 0x211007ff, + 0xb90956dd, 0x660d44c4, 0x2ef09345, 0xb1be00ce, 0xf493008f, 0x2703ce10, + 0x0507d33d, 0x27040743, 0x25431534, 0x9efc0e4d, 0x07008a52, 0x5efc0e0d, + 0xfe4eff19, 0xffff4ea7, 0x4444b9ff, 0x9345660d, 0x00ce13f0, 0x008f7bbe, + 0x8df2f393, 0xb6341904, 0x93042745, 0x00ce12f1, 0x0092a59e, 0x341d4027, + 0xfd4efe8e, 0xffff4ea7, 0x4444b9ff, 0xe6d0070d, 0x21011145, 0x10f09302, + 0x45be00ce, 0xd021008f, 0x00000f10, 0x0f507000, 0xf0000001, 0xf1930427, + 0x9e00ce36, 0xa700926a, 0xfffe6f3e, 0x1c272027, 0x01342322, 0xd8340334, + 0x0300004e, 0xce342123, 0x24330d40, 0x24fd4127, 0x00050947, 0x3401fd8e, + 0x330d40ce, 0xfd412724, 0x05094824, 0x03fd8e00, 0x183c0321, 0x0ecbf1f0, + 0xfde95efd, 0x4ea7fc4e, 0xb9ffffff, 0xe30d4444, 0x26d007f0, 0x180e8948, + 0x091a0c89, 0x11022901, 0x15042103, 0x51fc25fe, 0xf3f093de, 0xfe0500cd, + 0x008eb7be, 0xcd16f493, 0xde3d2703, 0x27430507, 0x4315203c, 0x48030d07, + 0x02013827, 0x42050403, 0xf3a84403, 0xccf6f093, 0x0ef0c303, 0x89449efc, + 0xa7fc4e00, 0xffffff4e, 0x0d4444b9, 0x45e6d007, 0x02110101, 0xce17f093, + 0x8e6ebe00, 0xcdfc9300, 0x0c0703cc, 0x07df4d27, 0x1d07c405, 0x28274827, + 0xc4150803, 0x00856cbe, 0xfc0e0c07, 0x0089059e, 0x4ea7fb4e, 0xb9ffffff, + 0x070d4444, 0xe6d107b0, 0x07010145, 0xfdf0932d, 0x2dbe00cd, 0xfc93008e, + 0x0703cc8c, 0xbb4d270c, 0x071b070b, 0x0508032d, 0xbecd15c4, 0x0700852d, + 0x9efb0e0c, 0x4e0088c6, 0xff4ea7fc, 0x44b9ffff, 0xd0070d44, 0xf09345a6, + 0x0700cdeb, 0x8df2be1d, 0x51fc9300, 0x4d2703cc, 0xc40507e0, 0x15844c27, + 0x254127c4, 0xbe0d07c4, 0x0300879a, 0x07200701, 0x031d070c, 0xe2be0c0c, + 0x0c070084, 0x7b9efc0e, 0xfc4e0088, 0xffff4ea7, 0x4444b9ff, 0xa6d0070d, + 0xb9f09345, 0x1d0700cd, 0x008da7be, 0xcc06fc93, 0xe04d2703, 0x27c40507, + 0xc415844c, 0xc4254227, 0x4fbe0d07, 0x01030087, 0x0c072007, 0x0c031d07, + 0x8497be0c, 0x0e0c0700, 0x88309efc, 0xa7fe4e00, 0xffffff4e, 0x0d4444b9, + 0xf0934566, 0xbe00cd8f, 0xa7008d60, 0xfd4fff4e, 0xf3934201, 0x2703cbb8, + 0x0507d14d, 0x27030734, 0x25341544, 0x9efe0e32, 0x4e0087fa, 0xff4ea7fd, + 0x44b9ffff, 0xd0070d44, 0x4566df6b, 0xcd6af093, 0x8d26be00, 0x85f49300, + 0x3d2703cb, 0x430507d4, 0x34270407, 0x4d254315, 0xc79efd0e, 0xfb4e0087, + 0xffffcea7, 0x44c4b9ff, 0x9348060d, 0x048b77f4, 0xf4934119, 0x01048b20, + 0x1df49342, 0x4301048b, 0xcd3cf093, 0x8ce2be00, 0x44c4b900, 0x274ce60d, + 0x07a0001f, 0x000f2710, 0xbe100790, 0x070088c8, 0x001f27b0, 0x271007c0, + 0x07b0000f, 0x88b6be10, 0x27c00700, 0x07e0001f, 0x000f2710, 0xbe1007d0, + 0x070088a4, 0x071b0730, 0x2df0932c, 0xfb0e00cd, 0x008c979e, 0xfb4efb8e, + 0xffffcea7, 0x44c4b9ff, 0x7e44a60d, 0xfb93ff7a, 0x19048afc, 0xb9d996bd, + 0xe60d44c4, 0x3bf09345, 0x1d2700cd, 0x69be07dd, 0xf493008c, 0x2703cac8, + 0x0707dd3d, 0x15430504, 0x8710be4d, 0x1d412700, 0x4efb8eb4, 0xff4ea7fd, + 0x44b9ffff, 0xd0070d44, 0xf0934566, 0xbe00cd20, 0x93008c38, 0x03ca97f4, + 0x07e03d27, 0x33274305, 0x4c034325, 0x0324070c, 0x34074f2c, 0xe37f2ce3, + 0x34197f3c, 0xc2803c03, 0xf393f932, 0x6603ca70, 0x544c27d7, 0x0d073415, + 0x270c3c03, 0x0101144c, 0x31050403, 0xf4a83403, 0x4427131e, 0x20273415, + 0x270c3c03, 0x3205144c, 0xf4c83403, 0xca3ef093, 0x9efd0e03, 0x4e00868e, + 0x070fabfb, 0x07f0a3d1, 0xe4230712, 0x4f0bb90d, 0xffcea701, 0xc4b9ffff, + 0x47260d44, 0x89def493, 0x93430104, 0x0489dbf4, 0xf0934401, 0xbe00cc9b, + 0xb9008ba0, 0x660d44c4, 0x01d11146, 0x21d331d2, 0xbaf093d4, 0x89be00cc, + 0xc4b9008b, 0x49260d44, 0xf093d241, 0x0700ccde, 0x073207e2, 0x0cec5342, + 0x4c533353, 0x83120710, 0x832253e1, 0x83318321, 0xbefe0541, 0xb9008b5c, + 0x860d44c4, 0x18d18946, 0x8916d289, 0xf09314d3, 0xbe00ccde, 0xb9008b44, + 0x260d44c4, 0x44d18946, 0x9346d289, 0x00cceaf0, 0x008b2fbe, 0xb918d489, + 0x8b0d44c3, 0x4b40cc4f, 0xd17135e6, 0xf093d281, 0xbe00cce9, 0xb9008b14, + 0xe60d44c4, 0xa1d19145, 0xf1f093d2, 0x01be00cc, 0xc4b9008b, 0x47860d44, + 0x8934dec1, 0xd2892cd1, 0x30d3892e, 0x9332d489, 0x00cce5f0, 0xe1befe05, + 0xd491008a, 0x01ed44f0, 0x36265c1e, 0xd281d171, 0xf093d391, 0xbe00cd21, + 0xb9008ac8, 0x460d44c4, 0xb1d1a146, 0x30d3c1d2, 0xcd2ff093, 0x8ab2be00, + 0x44c4b900, 0xc146860d, 0xd2c134d1, 0x3cd3c138, 0xcd3bf093, 0x8a9abe00, + 0x44c4b900, 0x8946260d, 0xd28940d1, 0x3ef09342, 0x85be00cd, 0xd4c1008a, + 0x9044e834, 0x44c4b901, 0x5ed3710d, 0x0de40168, 0x00ae0bba, 0xffffbea7, + 0x44b4b9ff, 0x9347260d, 0x04888bf4, 0xf4934301, 0x01048888, 0x15f09344, + 0x4dbe00cd, 0xb4b9008a, 0x46660d44, 0xd201d111, 0xd421d331, 0xcb67f093, + 0x8a36be00, 0x44b4b900, 0x4149e60d, 0x27f093d3, 0xe30700cd, 0x2307c307, + 0xec531307, 0x10cc5314, 0x34532a53, 0xc183e183, 0x21834107, 0x41833183, + 0xfc15fe05, 0x008a03be, 0x0d44b4b9, 0xd1814666, 0xd361d251, 0xf093d471, + 0xbe00cd32, 0x710089ec, 0xf844f0d4, 0x44b4b900, 0x81d3610d, 0xec4fe6d1, + 0x79310b00, 0x39311934, 0x93335932, 0x00cc03f0, 0xfb0ef083, 0x0089c39e, + 0x0bbb0dc4, 0xff4ea718, 0x44b9ffff, 0x4fe60d44, 0xd30100c3, 0xcd15f093, + 0x00b15e00, 0x0bbc0de4, 0xcea70099, 0xb9ffffff, 0x260d44c4, 0xbdf49347, + 0x43010487, 0x87baf493, 0x93440104, 0x00cd13f0, 0x00897fbe, 0x0d44c4b9, + 0xd1114666, 0xd331d201, 0xf093d421, 0xbe00ca99, 0xb9008968, 0x260d44c4, + 0x18d18946, 0x931ad289, 0x00cd1ff0, 0x008953be, 0xd01ad489, 0xc4b91c44, + 0x46e60d44, 0x9920d199, 0xd39921d2, 0x23d49922, 0xcd1bf093, 0x8932be00, + 0xffcea700, 0xc4b9ffff, 0x45e60d44, 0xd251d141, 0xcd2bf093, 0x891abe00, + 0xd0d45100, 0xc4b92644, 0xd3410d44, 0x345e47e6, 0xff4ea7ff, 0x44b9ffff, + 0x46260d44, 0xf0933007, 0x8300cd2c, 0x9efb0ef0, 0x830088f0, 0x4efb8ef0, + 0x79f493fb, 0x438904b1, 0x0844890a, 0xb107c007, 0x0027432e, 0xe0befb8e, + 0xf3930083, 0x010486fc, 0x0bd00734, 0xc6340540, 0xff4ea707, 0x44b9ffff, + 0x46660d44, 0x1b07c009, 0xcd22f293, 0x21f39300, 0xd47e00cd, 0x860d07fc, + 0x8e0127d4, 0x93fc4efb, 0x0486c7f2, 0x3ea72401, 0x63ffffff, 0xb94123f0, + 0x050d4433, 0x072405f0, 0x26fc09d1, 0x930c0736, 0x00ccf6f2, 0xcceaf393, + 0xfc9d7e00, 0x4d27fc0d, 0xfc9307d6, 0x0103c6c8, 0x27c405f0, 0x151d0740, + 0x82debec4, 0x430c0700, 0x9efc0ef0, 0x63008306, 0xb94d27f0, 0x27f40d0b, + 0xf42d484c, 0xf0011007, 0x9a1ef043, 0xf063fc4e, 0xfc09f005, 0xcdc0d107, + 0x930c0bbb, 0x04864ff3, 0x41233401, 0x4ea73405, 0xb9ffffff, 0x260d4444, + 0x930c0746, 0x00cc8af2, 0xcc8df393, 0xfc317e00, 0x4d27fc0d, 0xfc9307d5, + 0x0103c65c, 0x27c405f0, 0x151d0740, 0x828bbec4, 0x430c0700, 0x9efc0ef0, + 0x4e00829a, 0x6df493fb, 0x436904b0, 0xc0074449, 0x432eb107, 0xfb8e0027, + 0x0084f4be, 0x85eef493, 0x01d00704, 0x2704d642, 0x09131e30, 0x043027c4, + 0x270bbb4d, 0xc3430731, 0x6b340741, 0x93320b3f, 0x0485cbf4, 0xd7c64305, + 0xffff4ea7, 0x4444b9ff, 0x0946660d, 0x931b07c0, 0x00cbfbf2, 0xcc09f393, + 0xfbad7e00, 0xd4860d07, 0xfb8e0127, 0x3ea7f94e, 0xb9feffff, 0xf80d9934, + 0x00ee104c, 0xffff4ea7, 0x444499ff, 0x2b093399, 0xe84f4b43, 0x5e00db41, + 0x130700ec, 0x13331783, 0x19241f03, 0xf4930005, 0x99048574, 0xc407444d, + 0xffff9ea7, 0xd7aea7ff, 0x2b1effff, 0x9642c499, 0x99d12344, 0x410340c4, + 0x3f6b3407, 0xc49d4027, 0x40c39d42, 0x1027b32e, 0x1307671e, 0x13331783, + 0x19241f03, 0x1f460005, 0x4fc41401, 0x00008a26, 0x99a47950, 0x4f4b4493, + 0x400c2027, 0x43072127, 0x2407422b, 0x23232f6b, 0x0f6b0207, 0x111e2303, + 0x004f34f9, 0x44c6ff00, 0x181e3007, 0x0f6b0e07, 0x33833007, 0xe0074387, + 0x342b3433, 0x20cee103, 0x993207e0, 0x342b0414, 0x4f4b4307, 0xff7e41ec, + 0x84daf293, 0x442d9d04, 0x24991906, 0x27487642, 0x42249d41, 0xffff4ea7, + 0x094499fe, 0x149d1301, 0x263f0404, 0x2300008a, 0x442d9dd1, 0xf48b1401, + 0x84aaf493, 0x40439904, 0x27414499, 0x1934ce00, 0xf98e0127, 0x8496f493, + 0x40439904, 0xee414b99, 0x27ff09b3, 0xff105e10, 0xfd4ef98e, 0xffffdea7, + 0x44d4b9ff, 0xc6f0630d, 0xfdf49346, 0x42990472, 0x26d19908, 0xcabff093, + 0x862ebe00, 0x26d49900, 0x931642c4, 0x0472e3f4, 0xb6084499, 0x93042745, + 0x00cad6f1, 0x0089519e, 0xffc862be, 0xf1930f07, 0x7e03a298, 0xd007fd1b, + 0xf00105c6, 0xa28af193, 0xfd5b7e03, 0x4ea7e71e, 0xb9ffffff, 0x660d4444, + 0xf3f09345, 0xe1be00ca, 0xf4930085, 0x2703c440, 0x0707d83d, 0x15430504, + 0x8088be4d, 0xfdf29300, 0x24990483, 0x03302740, 0x42239d41, 0x7e40249d, + 0xf043fe44, 0xfd4efd8e, 0xf193f063, 0x0703a23c, 0xfdc97e0f, 0xf193d007, + 0x2603a230, 0x7ef00105, 0xe71efd64, 0xffff4ea7, 0x4444b9ff, 0x9345660d, + 0x00caadf0, 0x008583be, 0xc3e2f493, 0xd73d2703, 0x05040707, 0xbe4d1543, + 0x9300802a, 0x04839ff2, 0x27402499, 0x9d410330, 0x249d4223, 0xfde67e40, + 0xfd8ef043, 0xdea7fd4e, 0xb9ffffff, 0x660d44d4, 0x82f09345, 0x41be00ca, + 0xd4990085, 0x2745a626, 0x88f19304, 0x6f9e00ca, 0x8ebe0088, 0xfd0effc7, + 0x4eff755e, 0xffdea7fd, 0xd4b9ffff, 0x45660d44, 0xca99f093, 0x8512be00, + 0x26d29900, 0x4e27d499, 0x93082724, 0x00ca93f1, 0x4ea7221e, 0x99feffff, + 0x43830944, 0x44333487, 0x44f9432b, 0xff00004d, 0x48504123, 0xf1930827, + 0x9e00cab3, 0x2700881a, 0x27d49d42, 0x931822c4, 0x048303f4, 0x27404399, + 0x9d310320, 0x439d4242, 0x5efd0e40, 0xfd8efd48, 0xdea7fd4e, 0xb9ffffff, + 0x660d44d4, 0x91f09345, 0xa5be00ca, 0xd2990084, 0x27d49926, 0x0827244e, + 0xca8df193, 0x87d09e00, 0x9d402700, 0x26f627d4, 0x82baf393, 0x40349904, + 0x0342329d, 0x40349d41, 0x015efd0e, 0x4efd8efd, 0xff4ea7fb, 0x44b9ffff, + 0xd0070d44, 0xf09345a6, 0x0700ca9c, 0x845abe1d, 0xbed51600, 0x1effc697, + 0xbed20407, 0xa7ffc412, 0xffffffce, 0xc4b9b027, 0xcbbd0d44, 0x45a60634, + 0xca86f093, 0xbe1d0700, 0x93008430, 0x03c28ff3, 0x2727cd9d, 0x0507db4d, + 0x15442734, 0x073d2534, 0x26cd9d03, 0x007ecdbe, 0x8242f393, 0x40349904, + 0x03423b9d, 0x40349d41, 0x895efb0e, 0xa7fb4efc, 0xffffffde, 0x0d44d4b9, + 0xf0934566, 0xbe00ca89, 0xa70083e8, 0xd07fff4e, 0x4c5c4491, 0x93042710, + 0x00ca83f1, 0x0087119e, 0xffc3b5be, 0x81faf493, 0x93420104, 0x0481eff4, + 0xf0934101, 0xbe00caa2, 0x270083b8, 0x07a0001f, 0x000f2710, 0xbe100790, + 0x07007fa4, 0x001f27b0, 0x271007c0, 0x07b0000f, 0x7f92be10, 0x27c00700, + 0x07e0001f, 0x000f2710, 0xbe1007d0, 0x07007f80, 0x071b0730, 0x85f0932c, + 0x75be00ca, 0x41270083, 0x0a41d4bd, 0x4fff4ea7, 0x274301fd, 0x0ef49b40, + 0xd499c127, 0xcbc33b0e, 0xbf3ea7c4, 0xc138fd4f, 0x34054127, 0xc4c6c153, + 0xf31e3403, 0x78414f27, 0xf4e8017d, 0xffff4ea7, 0x4444b9ff, 0x9345e60d, + 0x00c3f9f0, 0x07dc1d27, 0x008327be, 0xc186f493, 0xdc3d2703, 0x05040707, + 0x0e4c1543, 0x7dcc9efb, 0xa7fd4e00, 0xffffffde, 0x0d44d4b9, 0xf0934566, + 0xbe00ca43, 0xb90082fc, 0xe60d44d4, 0xbbf09345, 0x1d2700c3, 0xe9be07d9, + 0xf4930082, 0x2703c148, 0x0507d93d, 0x27040743, 0x0e431530, 0x7d8c9efd, + 0xa7fc4e00, 0xffffffde, 0x0d44d4b9, 0x45e60c21, 0x2c070111, 0xca0cf093, + 0x82b6be00, 0x27c5d600, 0x68dcd540, 0x6cd4ad0d, 0xd4371e0d, 0xd4d134c6, + 0xdcad0d68, 0x49760d6c, 0x0000cf27, 0x4f271010, 0x10100080, 0x0d68d4d5, + 0x10270c07, 0xbe802c27, 0x270079c8, 0x2233564f, 0x40c4c511, 0xf49b4027, + 0xff4ea70e, 0x44b9ffff, 0x45e60d44, 0xc32cf093, 0xe31d2700, 0x825abe07, + 0xb9f49300, 0x3d2703c0, 0x430507e3, 0x30270407, 0xfc0e4315, 0x007cfd9e, + 0xbea7fb4e, 0xb9ffffff, 0x070d44b4, 0xa60d01c0, 0xacf09345, 0x1d0700c9, + 0x008227be, 0x03eedde0, 0xddd4011c, 0xc02503ef, 0x7a03ebdd, 0x03ecdd54, + 0x03e9ddc0, 0xeadde445, 0x1e012e03, 0xecddc053, 0xdde47a03, 0x012103ed, + 0xe000885e, 0xfe03f2dd, 0xf3dd5400, 0xf0dde003, 0xe400e803, 0x0803f1dd, + 0x00e45e01, 0x03f4dde0, 0xddf000ec, 0x00f203f4, 0x03f5dde4, 0xe25e00f3, + 0xf9f39300, 0x3099047f, 0x98f45341, 0x832007fc, 0x0b233327, 0x93631e23, + 0x047fe3f3, 0x53413099, 0x07fceff4, 0x33278320, 0x1e230b23, 0xcdf3934d, + 0x3099047f, 0x3df45341, 0x832007fc, 0x0b233327, 0x93371e23, 0x047fb7f3, + 0x53413099, 0x07fb2df4, 0x33278320, 0x1e230b23, 0xa1f39321, 0x3499047f, + 0x974ff644, 0x41309900, 0x20074127, 0x23332783, 0x0b44349d, 0x87f45323, + 0x992405f0, 0x3ea74331, 0x9dfeffff, 0xb4990421, 0x09339944, 0x4f4b432b, + 0xa71141cc, 0xffffd74e, 0x45364479, 0x41034107, 0x9304249d, 0x047f57f3, + 0x41034007, 0x6b403299, 0x41349d4f, 0x4f6b422b, 0x274049d0, 0x93f19304, + 0x331e00c8, 0xf25efb0e, 0x5efb0efd, 0x0c07fd01, 0x475efb0e, 0x0e0c07f0, + 0xf0f55efb, 0x5b5efb0e, 0x0e0c07f1, 0xfe135efb, 0xfb0e0c07, 0x27f17d5e, + 0x78f19304, 0x0f9e00c8, 0xfb8e0084, 0x4ea7fe4e, 0x91d07fff, 0x104c5c44, + 0xf1930627, 0x1e00c879, 0x3803c110, 0x4c3402c1, 0x93062730, 0x00c899f1, + 0x0083e59e, 0x06273252, 0xc8caf193, 0x71f21e00, 0x004f3004, 0x0b700000, + 0x014f5042, 0x27f00000, 0xf0f19306, 0xd91e00c8, 0x47160481, 0x46960491, + 0x461604a1, 0x459604b1, 0xf63004c1, 0x3c04c144, 0x06274566, 0xc8f7f193, + 0x8eb61e00, 0x89fb4efe, 0xf1a31802, 0x2144d007, 0xfb0ef183, 0xc0ff7f5e, + 0x5911022d, 0x11032dd4, 0x822dc027, 0x2d544f01, 0x2dc00183, 0xc4460102, + 0x3801212d, 0x2dc03f1e, 0xc03a0281, 0x3503012d, 0x02012dc4, 0xd42e1e27, + 0x1280032d, 0x80012dd4, 0x212dc024, 0x2dc41f11, 0x1e111201, 0xdf2d0318, + 0xab42077f, 0xdf2d234f, 0x2742507f, 0xa0f19306, 0x1c1e00c8, 0xcc53c207, + 0xa7c7460f, 0xfd4fff4e, 0x5c7444c1, 0x0200004e, 0xf1930427, 0x9e00c8ac, + 0xc400830e, 0x1702812d, 0x4fff4ea7, 0x7444c1fd, 0x00004e5c, 0x93042710, + 0x00c8b5f1, 0x1459e21e, 0xb1274930, 0x14790b1e, 0x49103027, 0xb3073127, + 0x30271419, 0x44861139, 0xde413127, 0x4e070307, 0x41830f6b, 0x46d605a6, + 0xf1930627, 0x1e00c8b3, 0x274566af, 0xd0f19306, 0xa41e00c8, 0x0300ed58, + 0xf1930627, 0x1e00c8ee, 0x00412797, 0x07402712, 0x1bcfe614, 0x33420701, + 0xb646184c, 0xc01c4c53, 0x06271a42, 0xc8f3f193, 0xff755e00, 0x861c4c53, + 0x93062745, 0x00c92df1, 0x07ff665e, 0xe6478342, 0x1742c015, 0xf1930627, + 0x5e00c962, 0x4140ff53, 0xf1930627, 0x5e00c989, 0xec58ff47, 0x93062730, + 0x00c9aff1, 0x07ff3a5e, 0xc04c834e, 0x4b6605c6, 0xf1930627, 0x5e00c9c8, + 0x4653ff27, 0x06274250, 0xc9f0f193, 0xff195e00, 0x811f41c4, 0x30d3a1d4, + 0x0000004f, 0x50430b70, 0x0000014f, 0x930627f0, 0x00ca06f1, 0x46fefa5e, + 0x91d4713d, 0x004f30d3, 0x0b700000, 0x014f5043, 0x27f00000, 0x4bf19306, + 0xdc5e00ca, 0x273596fe, 0x6bf19306, 0xd05e00ca, 0x810b86fe, 0x30d3a1d4, + 0x0000004f, 0x50430b70, 0x0000014f, 0x930627f0, 0x00ca73f1, 0x96feb25e, + 0x93062735, 0x00c9eff1, 0x89fea65e, 0xd48930d3, 0x27344e32, 0x90f19306, + 0x945e00ca, 0x34d0c1fe, 0x43834007, 0x06274244, 0xcac8f193, 0xfe815e00, + 0x021104f8, 0xf1930627, 0x5e00cae1, 0x2d20fe73, 0x2d000182, 0x2d241102, + 0x41270102, 0x4027031e, 0x15d64f6b, 0x06274666, 0xcaf5f193, 0xfe515e00, + 0xecfc44e6, 0x0701d430, 0xc04c834e, 0x27814c50, 0x09f19306, 0x385e00cb, + 0x40d489fe, 0x06274596, 0xcb21f193, 0xfe295e00, 0x9642d389, 0x93062735, + 0x00cb3ef1, 0x07fe1a5e, 0x07b183be, 0xe6130704, 0x10ec58b5, 0x01530103, + 0x1103051e, 0x2dc01153, 0xd4640301, 0x2e03022d, 0x01212de0, 0x2d5400b8, + 0x2de00122, 0x00b60102, 0x01042de4, 0xb15e00c8, 0x012dc000, 0x2de07302, + 0x00820281, 0x01822de4, 0x9d5e00b4, 0x212de000, 0xd4008b11, 0x1511222d, + 0x11022de0, 0x2de00088, 0x00861104, 0x03212de4, 0x2f1e0094, 0x21042dc0, + 0x042dc078, 0x2de47331, 0x00821201, 0x4007331e, 0x41033107, 0x41533103, + 0xc3273153, 0xf355f425, 0xf415f005, 0xf345f135, 0x41076d1e, 0x41534103, + 0xc3273047, 0xf025f305, 0xf015f455, 0x491ef135, 0x1103f135, 0x40271153, + 0xf015c227, 0xf455f145, 0x151ef005, 0x1103f135, 0x11533047, 0xc2274027, + 0xf145f315, 0xf305f455, 0x2b1ef425, 0x30871103, 0x071e1153, 0x031e3047, + 0x40273087, 0xf305c127, 0xf455f135, 0xf425f415, 0x0b1ef445, 0xf1930627, + 0x5e00ca64, 0x0d07fd13, 0xe027df07, 0xdc031027, 0x61cec20c, 0x410b4f07, + 0x04c14201, 0x27245234, 0x69f19306, 0xf05e00ca, 0x0b4d07fc, 0x71430141, + 0x30329b04, 0x0000004f, 0x50430b70, 0x0000014f, 0x930627f0, 0x00ca71f1, + 0xa1fcce5e, 0x30b76604, 0x0000004f, 0xd0430b70, 0x0000014f, 0x062738f0, + 0xca81f193, 0xfcb15e00, 0x062749a6, 0xcaa2f193, 0xfca55e00, 0x44d60471, + 0x458604a1, 0xf1930627, 0x5e00cac4, 0x04c1fc93, 0x27458634, 0xddf19306, + 0x845e00ca, 0x03e103fc, 0xc0040314, 0x725e0ee3, 0x930627ff, 0x00caeef1, + 0x83fc6e5e, 0x4efb8ef1, 0x272007fe, 0x00f09310, 0x5bbe00cb, 0x3ea7ffb9, + 0x27ffffff, 0x4134bd41, 0xff4ea70a, 0x4201fd4f, 0xf49b4027, 0x0e34990e, + 0x323b3127, 0x2ea734cb, 0x38fd4fbf, 0x05412731, 0x03315324, 0x2732d624, + 0x7d78414f, 0x8ef4e801, 0x0bfe0bfe, 0x07fb4efe, 0x121f9bb0, 0xcabef093, + 0x7bdebe00, 0x93b11100, 0x00cacbf0, 0x007bd3be, 0xf093b121, 0xbe00cad2, + 0x01007bc8, 0xd9f093b1, 0xbdbe00ca, 0xc027007b, 0xd231db07, 0xf0931c07, + 0x0300cada, 0x7baabec1, 0xc4d40300, 0x07ec0fcc, 0x9efb0e0b, 0x4effb974, + 0x07a007f9, 0x27c207b1, 0x1c1e409c, 0xcc10dc07, 0x07d90741, 0x7f55be1d, + 0x070a0702, 0x7f37be1d, 0x0bcd2b02, 0x07ad0bbd, 0x8ec0760b, 0x334007f9, + 0x2b033345, 0x8c40f940, 0x83ff0001, 0x03330f0c, 0xff7e0e23, 0xa12a9eff, + 0xd5f29302, 0x3ea70398, 0x27fefdf3, 0x3101304c, 0x21053403, 0xf4a82403, + 0xf49b4027, 0xa7fe0b0e, 0xfefdf32e, 0x98b2f393, 0x304c2703, 0x34033101, + 0x24032105, 0x4027f4a8, 0x0b0ef49b, 0x2f3ea7fe, 0x4027fdeb, 0x4f273405, + 0x14420000, 0x40273415, 0x0b0ef49b, 0xa7f84efe, 0xfdeb2fbe, 0xc0278007, + 0x071a0c27, 0x009f27a1, 0xbe144200, 0x05027f24, 0x27b915bc, 0x0ef49b40, + 0xe4bf3ea7, 0x054427fd, 0xa73a1534, 0xfde4af4e, 0x48053c35, 0x0c274a15, + 0xbe4c351a, 0x05027efc, 0x27b915bc, 0x0ef49b40, 0x0399f88e, 0xa6400704, + 0x0936c035, 0x38203a40, 0x031e0027, 0x44990427, 0x06458606, 0x00372035, + 0xa338043a, 0x4efe0b08, 0x07d107fc, 0x8456bec0, 0x99051602, 0x4c4404d4, + 0x9d412710, 0xc49d0bd4, 0x8475be04, 0x40d0c502, 0xf84efc8e, 0x9007f063, + 0x0307d207, 0xb107a307, 0x027401be, 0x34833007, 0x3fe6c007, 0xb899009c, + 0x108ce404, 0x0cfc0094, 0xa7008f20, 0xffffffbe, 0x0620b4d1, 0x038e4ff6, + 0x038a08f8, 0xffffcea7, 0x99c4b9fe, 0x104cf80d, 0x0a07037c, 0x16be0123, + 0x0fe6ffce, 0x00270370, 0x000f74be, 0x013cc3d1, 0x0a34b4d1, 0x035e34e2, + 0x9846fc93, 0x070f0703, 0xf10dbe1c, 0x2704f6ff, 0x03505e08, 0x0c07c441, + 0x40004ea3, 0xbec44501, 0x99fff197, 0x41246194, 0x88be0027, 0x0a07ffed, + 0xffbefbbe, 0xd89d4027, 0xc8d48d0a, 0x949d4227, 0x34b4d104, 0x0303270a, + 0x34b4d541, 0x03145e0a, 0x2612b499, 0x27357645, 0x03085e05, 0x0302c8f8, + 0x26bbb499, 0xacb0c146, 0xbefc0c03, 0x27ffeab0, 0xbbb49d40, 0x1630b4c1, + 0x070d0747, 0x0814be1b, 0x27051600, 0xdb5e0c0c, 0x28d48902, 0x8930b4c5, + 0x412428d4, 0x02cac8f8, 0x4d83071e, 0x45f68000, 0x50be0b07, 0x0616ffc1, + 0xb75e0b27, 0x05b49902, 0x01be44c6, 0xcea7ffc0, 0xd1ffffff, 0xc10620c4, + 0x410344b1, 0xd558d1c5, 0x070620c4, 0xf1f0931b, 0x28be0465, 0xd0c5ffbd, + 0x11b2995c, 0x9960d29d, 0xd39d13b3, 0x04b49961, 0x9d28d389, 0xb1990ad4, + 0xd5402707, 0xd50120d4, 0x070124d4, 0x0bd19d43, 0x80004d83, 0x00d44fe6, + 0x477e0b07, 0x89d381fe, 0x30ab1eb2, 0x8544d4c1, 0x3cd28dd3, 0x3cd8411c, + 0xd3991bc0, 0x3c90990a, 0x070e34dc, 0x404a8343, 0x06b4994a, 0x377647a6, + 0x161e0047, 0x990ad499, 0x448306b3, 0x44861127, 0x912b1027, 0x3b3e9099, + 0x20b48903, 0x0b44d3c1, 0x3ed48d40, 0x831ab289, 0xd28d203c, 0x1cb48926, + 0xd48dd281, 0x22b48924, 0x530f4c03, 0xe6215844, 0x40d48d37, 0x3706161e, + 0xd840d48d, 0x8910c02c, 0x410322b4, 0x4c034173, 0x8d44530f, 0xb49942d4, + 0x9949e605, 0xd1b107b4, 0x35333407, 0x342b4333, 0x019831f5, 0xd4c1ff00, + 0xf5d28130, 0x00019034, 0x40d189ff, 0x80002da3, 0x01a031ed, 0xd285ff00, + 0x4c83d481, 0xf34fe6c0, 0xd5465300, 0x5e0124d4, 0x31e000ea, 0xb1c100e6, + 0x1ab289c0, 0xf81cb389, 0x00920e1c, 0xa307d481, 0x53c04c83, 0xd5920746, + 0x5b0124d4, 0xd8945ba4, 0xd86a0c1c, 0xc4a92118, 0x24020d6e, 0x4ea72407, + 0xa9ffffff, 0x890d7043, 0x43221cb4, 0x031e0307, 0x92070407, 0x14d8a007, + 0xffcea71e, 0xc1a9ffff, 0x09070d72, 0x00a5b4be, 0x0d74c1a9, 0x0a079007, + 0x00a5a8be, 0xd481a007, 0x34474183, 0x3f0b31a3, 0x938b2407, 0x49072103, + 0xa38b425b, 0x912744d6, 0x4a07923b, 0x44d6425b, 0xa23ba127, 0x2907d481, + 0x21e33a07, 0x413831e3, 0x33e33a07, 0x0028d489, 0x2401214d, 0xe311214d, + 0x8131e321, 0x104c58d4, 0x8d26d38d, 0x071e24d2, 0x8d26d28d, 0xdc8124d3, + 0x4c070b07, 0x53304c83, 0x33340744, 0x2b444733, 0x33430734, 0xd5432b44, + 0x7e0120d4, 0xc0abfc96, 0xb2c1dc85, 0xc4d2c538, 0x9dbab399, 0xb49962d3, + 0x28d389b8, 0x40ced49d, 0x2eb18931, 0x1ec8d18d, 0x8d412709, 0xb38dc8d4, + 0x14b2992e, 0x99ccd29d, 0xd39d15b3, 0x18b299cd, 0x89a8b4c1, 0xd29d2cb1, + 0x34b3c163, 0xd335d415, 0x3d074b07, 0x0308d18d, 0x4c03d03c, 0x102c2768, + 0x44034101, 0x34033105, 0xb2c1f2a8, 0xd500275c, 0xc10110d2, 0xd3d560b3, + 0xb4c10114, 0x18d4d564, 0x30b1c101, 0x6382f493, 0x1cd1d504, 0xbcb28901, + 0x996c44c1, 0xd4d5c0bb, 0xd2ad012c, 0xdbbd0150, 0x071e0152, 0x031e0727, + 0xf0430627, 0xf393f88e, 0xc50480cc, 0x30c59031, 0x2704e68c, 0x99349d41, + 0xfe4efe0b, 0x6342f393, 0x58349904, 0x991f41c4, 0x47660534, 0x4ea73127, + 0xbdffffff, 0xbe0ce543, 0x270013ea, 0x95f49330, 0x439d0480, 0xa7fe8e99, + 0xffffff4e, 0x0ce544b9, 0xf4934606, 0x99048080, 0x42049844, 0x0013c59e, + 0x929efe0b, 0xfe4e0012, 0x0276c4be, 0x001288be, 0x00147cbe, 0x1f9efe0e, + 0xf0630014, 0x0bba4d27, 0x4c27f40d, 0x07f42d28, 0x43f00110, 0xedde9ef0, + 0xa7f94eff, 0xfeffff3e, 0x0d9934b9, 0x00cf48fc, 0x83093499, 0x33348743, + 0xf9432b44, 0x00004d4b, 0xbabfe6ff, 0xff4ea700, 0x43b9ffff, 0x42b90a5a, + 0xc4070a5b, 0xd307322b, 0x0027df6b, 0x8006f993, 0x8dfa9304, 0x875e0462, + 0x5023f900, 0xf9ff000a, 0x000a4824, 0x1b3d1bff, 0x034f4b4d, 0x803c5c21, + 0x2027412c, 0xf100051e, 0xc4b92127, 0x45a60ce5, 0x0a5bc3b9, 0x0a9a9499, + 0x99202743, 0x472605a4, 0x0a59c4b9, 0x0a58c3b9, 0x4cdc4d1b, 0x4d070a80, + 0x4f4b432b, 0x064941c8, 0x834d072d, 0x04070f4c, 0x45330333, 0x0e23040b, + 0x71fff5a4, 0x0b046103, 0x27046543, 0x7e047540, 0xc4b9ff32, 0x3d070a5b, + 0x41233103, 0xc4bdd307, 0xdf6b0a5b, 0xc4b90127, 0x4dce0a5a, 0x271b070b, + 0x1e110320, 0x8e00278a, 0x7efd4ef9, 0xdea7ff1d, 0x1effffff, 0x5ad4b92c, + 0xbd41230a, 0xb90a5ad4, 0x830a5ad0, 0x40070f0c, 0x03334533, 0x0e23040b, + 0x7efff5a4, 0xd4b9fede, 0x41230a5b, 0x0a5bd4bd, 0x0a5bd4b9, 0x27cf4fd6, + 0xff1ea720, 0x3827ffff, 0x0a5a14b9, 0x0a4824fd, 0x24fdff00, 0xff000a50, + 0xf3582103, 0x0a5914bd, 0x0a5814bd, 0xfe4efd8e, 0x0012d9be, 0x1ea72027, + 0x27ffffff, 0xfd402738, 0x000a4824, 0x982103ff, 0x5b14bdf3, 0x5814bd0a, + 0x5a14bd0a, 0x93fe8e0a, 0x047417f4, 0xfe0b4001, 0x0d99fd4e, 0x07200709, + 0x03e0273d, 0x990a1e31, 0x21030c24, 0xe103144e, 0xfd8ef3a0, 0x070cec03, + 0x2330074d, 0x233e0b41, 0x049d0cec, 0x39091e09, 0x1de10334, 0x99310334, + 0xe4ca0904, 0x93fd8ef3, 0x0473cff4, 0x10272027, 0x429d30a7, 0x09429d0b, + 0x070a429d, 0x08439d24, 0x0a5041d5, 0x41d54115, 0x2c030a54, 0x193c272c, + 0x241d4027, 0xb0682c03, 0x4efe0bf3, 0xe1f493fc, 0x4dd10460, 0x10270400, + 0x27223c27, 0x07213b21, 0x964d8b42, 0x65f4934d, 0x4e010471, 0x41073107, + 0x33334633, 0x3e0b340b, 0x2b803d03, 0x01124c27, 0x0504030c, 0xa834033c, + 0x073107f4, 0x33463341, 0x0b340b33, 0x9034d13e, 0xe32dab2b, 0x01fc0e4e, + 0x2b9034d5, 0x608af493, 0x0042d504, 0x03fc8e04, 0xa8f3f011, 0x3ea7fc8e, + 0x27fffe6f, 0x3423221c, 0x34033401, 0x00004ed8, 0x32211303, 0x047124e6, + 0x011424ce, 0x8124e632, 0x0b24ce04, 0xf0183c03, 0x0027ddf1, 0x0127fe0b, + 0x0fabfe0b, 0x109b1fab, 0x41534107, 0x0447410b, 0x400b4433, 0x0e034753, + 0x0b010000, 0x4efe0b04, 0x070c41fc, 0x532c07dc, 0x2e8318dc, 0x53fe0000, + 0xd103112c, 0xd2302103, 0x071e0127, 0x22140127, 0x3ea70027, 0xa9ffffff, + 0x070d6e34, 0x46ef6be0, 0x7034a945, 0x9601270d, 0xa7002744, 0xfd4fff4e, + 0x277443c1, 0xc014c541, 0x3fdc0f6b, 0x20000000, 0xc6e4b678, 0x0427730f, + 0xc2aaf193, 0x960c1e00, 0x270706e4, 0xcbf19304, 0x3b9e00c2, 0x06060076, + 0xf1930427, 0x1e00c31b, 0xc54227f2, 0xe726c014, 0x22d0d214, 0xff3ea713, + 0x4427ffff, 0x0d7432ad, 0xadc014c5, 0xc60d723d, 0xff2ea706, 0x3127ffff, + 0x23ad4827, 0x14c50d74, 0x7223adc0, 0xc014c10d, 0x1e0c4cd8, 0x301a1489, + 0x1c148942, 0x271342d4, 0x18f19304, 0xa31e00c3, 0x94c0ccdc, 0x1ea0efd6, + 0x63fc8ec7, 0xb94d27f0, 0x0d03410b, 0x484c27f4, 0x1007f42d, 0x10003da3, + 0x1345f001, 0xde9ef043, 0xfb4effe9, 0xd007f063, 0x0f07b107, 0x90faf193, + 0xe97dbe03, 0xed0fe6ff, 0xc4f40900, 0x750bb94d, 0x4ce4f429, 0x9900d548, + 0x4cc004d4, 0xd1c11010, 0xd5f093ac, 0x1c030390, 0xf1e3bef4, 0xb1f493ff, + 0x44010471, 0x90c2f393, 0xd8498603, 0x1380004d, 0x83183489, 0xd680004d, + 0x93062747, 0x00c2d2f1, 0x41c4101e, 0x18348911, 0x06274140, 0xc2f7f193, + 0x75449e00, 0x18338900, 0x7176f493, 0x030b0704, 0xf193100c, 0x27039084, + 0x4305482c, 0x02747cbe, 0x731e0127, 0x0bbc4dc4, 0x6dfc9362, 0xc4890390, + 0x03f3291a, 0x344e204c, 0xf1930627, 0x1e00c2f8, 0x18c489c1, 0xa93a42c4, + 0x660148b4, 0x93062745, 0x00c319f1, 0x0b07ac1e, 0x01300d03, 0x2c271c07, + 0x7437be20, 0x04d49902, 0x992a44d8, 0x48d616d4, 0xf0931c07, 0x27039214, + 0x1ebe202c, 0x151e0274, 0xf1930627, 0x5e00c338, 0x0627ff79, 0xc36df193, + 0xff6f5e00, 0xf0430027, 0xf54efb8e, 0x11998107, 0x83f26304, 0x61f16514, + 0xd5f393f2, 0x50070470, 0x5c039007, 0x26310110, 0x08329928, 0x20c82f4b, + 0x87320718, 0x2b343342, 0x33320b34, 0x683f0333, 0x9900051a, 0x46162c34, + 0xf3553027, 0x70cef293, 0x193c2704, 0x11c0591e, 0x168499f0, 0x3c034186, + 0x27450744, 0x3001121c, 0x40053403, 0xf1a84403, 0x32874207, 0x432b4433, + 0xf393420b, 0xa7047074, 0x9d433320, 0x430b0832, 0x072b4399, 0x9d310305, + 0x18072b43, 0x07fd7a7e, 0x300d0309, 0x59f19301, 0x2c270391, 0x7363be20, + 0x5e712702, 0x241904db, 0xf6682c03, 0x5104bd4f, 0x073907f1, 0x33418761, + 0x0b642b64, 0x03633361, 0x051a686f, 0x03260700, 0x3c03442c, 0x75702710, + 0x5ef385f2, 0x050703b8, 0x2c7e1807, 0x048499fd, 0x51104ce0, 0x01f49303, + 0x43010470, 0x80013d40, 0x80213d20, 0x80023d00, 0x80223de4, 0x8099020a, + 0x248c8906, 0x1c07f015, 0xc1030546, 0x11531c07, 0x9789c123, 0x2774d640, + 0xc10a1e40, 0x45534494, 0x41c34183, 0xf4254f6b, 0xd6228e89, 0x1e4e0744, + 0x33470705, 0x449ac144, 0x41072407, 0x13831a07, 0x030f2c03, 0xf1450f4c, + 0x44532453, 0xd4071646, 0xd8032703, 0xd7e327e3, 0x10000d27, 0xd407081e, + 0x0c27d103, 0x83430780, 0x203cd842, 0x2745060f, 0x1e02901d, 0xe01d2713, + 0x060d1e01, 0x001d2745, 0x27051e02, 0x0701801d, 0x3531833a, 0x0735c6f3, + 0x7f4c8341, 0x1c0344e6, 0x07142b80, 0x333d9b32, 0x07012334, 0x03408b43, + 0x0b44c601, 0x07342b30, 0x07029b01, 0x0320871d, 0x53420713, 0x7f4c8312, + 0x44e61123, 0x2b802c03, 0x1b418724, 0x07409b4d, 0x7f0c8304, 0x4c0304e6, + 0x07402b80, 0x03b19bb2, 0xb30b0fec, 0x4e07b40b, 0xf0114453, 0xec23f405, + 0x0705260f, 0x5e34072b, 0x948100da, 0x27c04c5c, 0x5e302720, 0xde0700ce, + 0xd103f121, 0x14d6d173, 0x061e2d07, 0x33429289, 0x28938924, 0x3ce3a818, + 0x10ac3830, 0x31a337e3, 0x41034c07, 0xf0414173, 0x030f2c03, 0x24530f4c, + 0x06464453, 0x2703e407, 0x27e3e803, 0x0d27e7e3, 0x081e1000, 0xe103e407, + 0x07800c27, 0xd8428343, 0x060f203c, 0x901d2745, 0x27131e02, 0x1e01e01d, + 0x2745060d, 0x1e02001d, 0x801d2705, 0xc6f33101, 0x83410735, 0x44e67f4c, + 0x2b801c03, 0x9b320714, 0x2334333e, 0x8b430701, 0xc6010340, 0x2b300b44, + 0x9b010734, 0x871e0702, 0x07130320, 0x83125342, 0x11237f4c, 0x2c0344e6, + 0x87242b80, 0x9b4e1b41, 0x83040740, 0x04e67f0c, 0x2b804c03, 0x0b219b40, + 0x033d0723, 0x240b0f3c, 0xf4013453, 0x30274722, 0x9489121e, 0x02102742, + 0x07112734, 0x0741c341, 0xc13f6b34, 0x4bea3494, 0x94c1013b, 0x3442ea38, + 0xe6f02101, 0xf601370f, 0x5e01333f, 0x31c40127, 0x2280891b, 0x7e248189, + 0x94c1fada, 0x1440fa44, 0x27402701, 0x4894c571, 0x8101155e, 0x1c848997, + 0xac83a707, 0x1a808910, 0x3407a506, 0x051ed007, 0xd4073007, 0xf8c084c1, + 0x00cf0e4c, 0xa40c4cf8, 0x5148d800, 0x4ea7a886, 0xa9ffffff, 0x890d7043, + 0x43221c84, 0x031e2307, 0x4ea72407, 0xa9ffffff, 0x890d6e43, 0x211e1a84, + 0xffff4ea7, 0x6e43a9ff, 0x1a84890d, 0x23074322, 0x2407031e, 0xffff4ea7, + 0x7043a9ff, 0x1c84890d, 0x03074322, 0x0407031e, 0x261eb207, 0xffff4ea7, + 0x724ca9ff, 0x7441a90d, 0xd64c070d, 0x07c107a4, 0xbe030714, 0x07009ba5, + 0x071c07b0, 0x9b9bbe0d, 0x83470700, 0xa3344741, 0x073f0b31, 0x8b14072b, + 0x07110323, 0x8b415b42, 0x2744d603, 0x07213b21, 0xf6415b40, 0x3b012746, + 0x07101e01, 0xc04c8347, 0x0d074653, 0x045b2307, 0x3207245b, 0x31e3d007, + 0x71d8d1e3, 0x07a5060d, 0x1e33e332, 0xe3d00705, 0x289489d3, 0x01214d00, + 0x11214d24, 0xd1e331e3, 0x2a509489, 0x52948943, 0x070ad4c2, 0xfaad7e05, + 0x591e7027, 0x40a77127, 0x6caef193, 0x9df26104, 0x24e60814, 0x139df351, + 0xb083c108, 0x89b484c1, 0x93652892, 0x2d839475, 0x26068000, 0x76409489, + 0x4494c145, 0xc5204ca3, 0xf3714494, 0x2c27f481, 0x03400112, 0x03300544, + 0x27f2a834, 0x9d402731, 0x649d2c63, 0x2b639d29, 0x00f57ff6, 0x6c5af293, + 0xfc240104, 0xe180004d, 0x95f39300, 0x32d10459, 0x10270400, 0x27223c27, + 0x07d13bd1, 0x46428b4d, 0x3341074a, 0x0b133346, 0x11f49314, 0x4401046a, + 0x2b801d03, 0x0507140b, 0xbe482c27, 0x93026f35, 0x04595ff0, 0x040004d1, + 0x04d54deb, 0xf75e0400, 0xf01103fb, 0x0807c2f3, 0x0f7e1907, 0xe70ff6fa, + 0x008d5efb, 0x593af093, 0x0004d104, 0x3bb12704, 0xc9f193bc, 0x4b8b0469, + 0x4ac61301, 0xdc074c07, 0xd3334633, 0xdd03d40b, 0xd30b2b80, 0x977e0d07, + 0x2707f6f8, 0x1d07482c, 0xd6be0507, 0xf293026e, 0xd1045900, 0xeb040024, + 0x0024d54b, 0xfb985e04, 0xccc0c103, 0xad1e1122, 0x6b7e0507, 0x870fe6f8, + 0x7e0507fb, 0x1907f7f7, 0x9f7e0807, 0x030176f9, 0xb2c2bea1, 0x18a2c0ff, + 0xf451111e, 0xf4554103, 0xfb34f3f8, 0x081e7027, 0xc027a027, 0x07ff775e, + 0x8ef24307, 0x07f74ef5, 0x93d007a0, 0x0475b7f8, 0x421e7027, 0x7103db11, + 0xbae6d021, 0x90078201, 0x9f03ca07, 0x000524c0, 0xb2cec00b, 0x0719070b, + 0x62b6be0c, 0x07078600, 0xbe0c071b, 0x11ffdd6c, 0x050907d4, 0x21d21184, + 0x151c07d4, 0x62bbbe84, 0x03d80300, 0xcaa40188, 0xfd93bb74, 0x99046b0c, + 0xd49909d2, 0x1d24ce0a, 0x8b0ef393, 0x134c2703, 0x34052123, 0x18270307, + 0x2dbe3215, 0xd499ffdd, 0x0ad49d09, 0xf94ef78e, 0x07090499, 0x99400bc0, + 0x4b070b4b, 0x44333b87, 0x4b0b432b, 0xd4074333, 0xd399d00b, 0x0394072d, + 0xdac1449c, 0xc136e68c, 0x090b54d4, 0xc50c4ce3, 0x107e54d4, 0x9d4027f7, + 0x121e2dd4, 0x0d030a07, 0x3a7e011c, 0x0b0c07ff, 0xe2d5be09, 0x07a946ff, + 0x87a1193b, 0xd1f0934b, 0x34330457, 0x02d1342b, 0x41270434, 0x413b3b0b, + 0x333342cb, 0x04d53c0b, 0x40270434, 0x998c34c5, 0xc30109c4, 0xc49d4123, + 0x2b31c009, 0x4b873b07, 0x342b3433, 0x33333b0b, 0x34993c0b, 0x9946262a, + 0x41272e32, 0x423bc311, 0xc31534ab, 0xc499091e, 0x9d41230b, 0x4b070bc4, + 0x44333b87, 0x4b0b432b, 0x4c0b4333, 0x439d3027, 0x54c4d12c, 0xd541030a, + 0x8e0a54c4, 0x6bfa4ef9, 0x930be60f, 0x046a0bf3, 0x41c03401, 0x09319934, + 0x0c030307, 0x03102b0c, 0x051a751f, 0x19191e00, 0x07010303, 0x33238743, + 0x0b422b44, 0x27433343, 0x9543fd31, 0x2800051a, 0x7e061ef1, 0x061efef2, + 0x69cefd93, 0x09d49904, 0x42360d07, 0xfa93c027, 0x930467a4, 0x045703fb, + 0x0400b4d1, 0xdc3bd127, 0xa0014d8b, 0x4c074806, 0x36333c07, 0x430b4333, + 0x2b804d03, 0xd8be040b, 0xb4d1ffe1, 0x4deb0400, 0x0400b4d5, 0xccc4c103, + 0xfc93cf22, 0x270469b0, 0x86c419d0, 0x870d0747, 0x2b04334d, 0x330d0b04, + 0xac0f0303, 0xbe00051a, 0x27ffe1a7, 0x03c41d40, 0x68cc03d1, 0xda19dcc4, + 0xf4933027, 0x05046954, 0x4efa8e43, 0xff4ea7f5, 0xf293ffff, 0x01046944, + 0x2043d127, 0x23a00706, 0xac08c131, 0xf0630707, 0x062043d5, 0x27602c03, + 0x210d23b0, 0x191c2780, 0x84912301, 0x2e682c03, 0x90b10334, 0x873b07f1, + 0x2b34334b, 0x333b0b34, 0xbc34f133, 0xdc00051a, 0x610e0c4c, 0x83430783, + 0x48240c4c, 0x836532a3, 0x3b874b07, 0x432b4433, 0x43334b0b, 0x1a684f03, + 0x42c10005, 0x03836154, 0x32ab444c, 0x38078365, 0x2c273803, 0x03310112, + 0x03410534, 0x07f2a844, 0x333b874b, 0x0b432b44, 0x10a3994b, 0x4f034333, + 0x00051a68, 0x439d3153, 0x05a3992e, 0x892a439d, 0x41242084, 0x041e2027, + 0x0713a299, 0x333b874b, 0x0b432b44, 0xfd43334b, 0x051a9542, 0x62ad9900, + 0xc160a489, 0xd4585ca0, 0xc0270027, 0xc407031e, 0x7616a499, 0x0729364f, + 0x333b874b, 0x0b432b44, 0xf543334b, 0x051af448, 0x9df19300, 0x83190455, + 0x043412d1, 0x433b4127, 0x14d542ab, 0x4b070434, 0x44333b87, 0x4b0b432b, + 0x3304a199, 0x684f0343, 0x9d00051a, 0xa3c12841, 0x3840c534, 0xa73c43c5, + 0x4043c530, 0xd804a499, 0xd2e35644, 0x71c4521e, 0x874b072a, 0x2b44333b, + 0x334b0b43, 0xf448f543, 0x1900051a, 0x41f29384, 0x17070455, 0x043423d1, + 0x4107143b, 0x24d543ab, 0x3b070434, 0x34334b87, 0x3b0b342b, 0x3f033333, + 0x00051a68, 0x123834c1, 0x3830c540, 0xc534a4c1, 0x40274034, 0x0728349d, + 0x333b874b, 0x0b432b44, 0x2743334b, 0xb1f993e0, 0x51270467, 0x5027d496, + 0x68836d07, 0x1a984ced, 0x551e0005, 0x1a74e0f9, 0xc0270005, 0x40872007, + 0x242b2433, 0x2333200b, 0x1a682f03, 0x24990005, 0x9946662a, 0xa3c12e24, + 0x8b143b3c, 0x27148613, 0x2a2c9dc1, 0x41249401, 0xf1051127, 0x30874007, + 0x432b4433, 0xf301400b, 0x4f034333, 0x00051a68, 0x9d29439d, 0xe1032d46, + 0x05099499, 0xda1127f5, 0x9401a3e4, 0x112f41c0, 0x3ca2c19e, 0x30274e07, + 0x031e42eb, 0x0307418b, 0x11231407, 0x31030f6b, 0xf3934296, 0x9904671c, + 0x2e8b0b34, 0x349d402b, 0x1e32150b, 0x9d402706, 0x3b070b94, 0x34334b87, + 0x3b0b342b, 0x3f033333, 0x00051a68, 0x232b3499, 0x2b349d41, 0x7124d21c, + 0x349d4127, 0x87cb0729, 0x2bc4334b, 0x33cb0bc4, 0x68cf03c3, 0xc100051a, + 0xc39954c4, 0x8394072d, 0x0100009e, 0xc4c549cb, 0xbdfd9354, 0x39960466, + 0x0a50d4d1, 0x41030d07, 0x0a50d4d5, 0x997e1b07, 0x50d4d1f2, 0xc561270a, + 0xd09934c4, 0x38ccc109, 0xdb071007, 0x1103e027, 0x4ce37f1e, 0x54c4c50c, + 0x2709d499, 0x61461660, 0x004e5884, 0x41270100, 0x1e2cc49d, 0x87cb0720, + 0x2bc4334b, 0x33cb0bc4, 0x030c07c3, 0x051aac0f, 0xf2c17e00, 0xc4fd4027, + 0x00051a94, 0x4b873b07, 0x342b3433, 0x33333b0b, 0xf0934027, 0x07046644, + 0x9534fd1b, 0x7e00051a, 0x501ef228, 0x1a74e4f9, 0x24070005, 0x24333487, + 0x240b232b, 0x2f032333, 0x00051a68, 0x96292499, 0x3824c145, 0xe1034c32, + 0x93daf1f0, 0x04660bf4, 0x2e073007, 0x14073103, 0x1a742f03, 0x439d0005, + 0x190b1e09, 0x1de10324, 0x0721032d, 0x091499d4, 0x07f1e4ca, 0x334b873b, + 0x0b342b34, 0x0333333b, 0x051a683f, 0x2a349900, 0x65cef193, 0x26449604, + 0x16a49968, 0x71c04796, 0x0b149918, 0x149d4103, 0x9965f60b, 0x12112e34, + 0x343b3127, 0x131532ab, 0xf4939d06, 0x990465a4, 0x04070c43, 0x23874307, + 0x422b4433, 0x4333430b, 0x43c1400b, 0xab102754, 0x5449c593, 0x13f91d1e, + 0x00051a74, 0x43071103, 0x44332387, 0x430b422b, 0x31274333, 0x1a9143fd, + 0x04990005, 0xdf14da09, 0x06b9a499, 0x59f0934a, 0x04990465, 0xf948c609, + 0x051a7343, 0x87430700, 0x2b443323, 0x33430b42, 0x9344f943, 0x9600051a, + 0xfa547e45, 0x4f7e061e, 0x93061efa, 0x04652bfd, 0x0709d499, 0xf949c60d, + 0x051a7344, 0x87240700, 0x2b243334, 0x33240b23, 0x682f0323, 0x9900051a, + 0x46262924, 0xc62b2499, 0x081ecd4f, 0x177e0d07, 0x93101efa, 0x0464f3fd, + 0xfa939d07, 0x03045234, 0xdc990c9c, 0x7dcfc609, 0xffcb3fbe, 0x994f0cca, + 0xa4990bd3, 0x4643ca37, 0x9909d399, 0x23ca35a2, 0x38a4c13d, 0x075e4fc6, + 0x23130704, 0xd1192b01, 0x070a50dc, 0x03020be9, 0x051a751f, 0x191b1e00, + 0x07e103e3, 0x33238743, 0x0b422b44, 0xf1433343, 0x051a9c44, 0x224c1b00, + 0x1ef11804, 0x09d49928, 0xf908d399, 0x051a7342, 0xce3f4b00, 0x32071723, + 0x34334287, 0x320b342b, 0x34f93333, 0x00051a93, 0xff6a4fe6, 0x6462f493, + 0x09449904, 0x6bf64c36, 0x4ed88461, 0x36010000, 0x4b870b07, 0x042b0433, + 0x03330b0b, 0xcf03c007, 0x00051a68, 0xc62cc499, 0x54c4c147, 0x1aac0f03, + 0x4ea30005, 0xe3014000, 0x54c4c544, 0xffdc62be, 0xc49d4027, 0x8ef0432c, + 0x63fc4ef5, 0x3dfe93f1, 0x00270464, 0x1c272027, 0x27e41919, 0x03303b31, + 0x010368ec, 0x23ab4486, 0xfc93f170, 0x990463f4, 0xc39909c1, 0x93c4110b, + 0x00b6bef0, 0x00646bbe, 0x3e1ed027, 0x1a74d2f9, 0xd1030005, 0x42873207, + 0x342b3433, 0x3333320b, 0x1a683f03, 0x3e990005, 0x2934992b, 0x3e99fe05, + 0x99fe152c, 0xfe252d3e, 0x352a3e99, 0x2e3e99fe, 0x33c1fe45, 0x642abe38, + 0x09c49900, 0xf0931d07, 0xda00b6b8, 0xf143b7d4, 0xfb4efc8e, 0x07b90499, + 0x07b107d0, 0x274616c2, 0xb9049d41, 0xb706f093, 0xb78bbe00, 0xc1c5e6ff, + 0x3b874cd2, 0x320b4c87, 0x340541a3, 0xf94efb8e, 0x9f07f0a3, 0xc207a007, + 0x9403b307, 0x52be211e, 0xf3010260, 0x1007f411, 0x4b07342b, 0xf3054c2b, + 0xd4070a07, 0xd3074302, 0xa73e2d07, 0x1c07cd0b, 0x39072f07, 0xcbca0a07, + 0x8ef083d6, 0xff4ea7f9, 0x43b9ffff, 0xf4930ce5, 0x9d046dd4, 0x32e49843, + 0x3ea70118, 0x27fdefff, 0x1034d540, 0x1434d50e, 0xff2ea70e, 0x2411fd7f, + 0x00004ee3, 0x27241502, 0x2c34d543, 0xff2ea702, 0x34d1fbff, 0x45660638, + 0x4fd82431, 0x01000000, 0xff1ea7f2, 0x4027fbff, 0x021812d1, 0x021814d5, + 0x021013d1, 0x6d7ef493, 0x9443c504, 0x10272028, 0x11d10b1e, 0x1f830218, + 0x0fffffff, 0xefff3ea7, 0xd54327fd, 0xa1022834, 0xfc48dc34, 0xefff2ea7, + 0xdc24a1fd, 0xfa08004d, 0x24d54427, 0x24d50228, 0x3027022c, 0x063823d5, + 0xebd72ea7, 0x272305fd, 0x0400004f, 0x9b241508, 0xf0930ef3, 0xc1046d28, + 0x03998004, 0xc5412b9a, 0x18468004, 0xffff4ea7, 0x5a44b9ff, 0x83432b0a, + 0x43330f4c, 0x4301400b, 0x312b4211, 0x4115120b, 0x3a1e4305, 0xffff2ea7, + 0x5a24b9ff, 0x2b3a060a, 0x0f4c8343, 0x44f14333, 0x00052528, 0x43074836, + 0x049d4123, 0xbd41279a, 0x99063524, 0x40270f23, 0x270ef49b, 0xf5338741, + 0x02b04034, 0xa73127ff, 0xffffff4e, 0x0ce543bd, 0xfe4efe0b, 0xffff0ea7, + 0xe504b9ff, 0x6541c40c, 0x6ca2fe93, 0x90e4c104, 0x03b945b6, 0x04b90ce6, + 0x43ce0ce7, 0xd73ea750, 0x1027fdeb, 0x4f273105, 0x08040000, 0x42273415, + 0x0ce504bd, 0xc10ef19b, 0xe4c18ce2, 0xff3ea794, 0x32d5fbff, 0x48a30214, + 0x021034d5, 0x7fff2ea7, 0xe32421fd, 0x0200004e, 0x23112425, 0x04bd4027, + 0x3ea30ce4, 0x9d020000, 0x231599e1, 0xfe4efe8e, 0x93fe5c7e, 0x046c37f4, + 0x30272027, 0xc59a439d, 0x42c59442, 0x8442c580, 0x3ea7fe8e, 0x27ffffff, + 0x271c2740, 0x0ce734bd, 0x0ce634bd, 0xf3932027, 0x07046c0c, 0x23320541, + 0xb8340311, 0xa73027f4, 0xffffff4e, 0x6bf6f293, 0xe543bd04, 0x8421c50c, + 0x0b8021c5, 0xff3ea7fe, 0x4027ffff, 0x0ce434bd, 0x0ce734bd, 0x0ce634bd, + 0xf49b4027, 0xa7fe0b0e, 0xffffff3e, 0x0ce530b9, 0xf29309e6, 0xc1046bc0, + 0x44f69024, 0x06992499, 0xe631b948, 0xe732b90c, 0xb901200c, 0x060ce434, + 0x2b410746, 0x134f6b42, 0x4910104c, 0x0bfee55e, 0xa80499fe, 0x4ea74626, + 0xc5fff5a7, 0x41033804, 0x0b3404c5, 0xff4ea7fe, 0x4411feff, 0xf5b04e23, + 0x3404c5ff, 0x04c54823, 0x27fe0b38, 0x0ef39b30, 0xf49b4027, 0x2bf49b2a, + 0x9b22f49b, 0x039d23f4, 0x4c049da9, 0xc55003c5, 0x03c55403, 0x4403c590, + 0xc54803c5, 0x03c5a003, 0x4003c53c, 0x9d4d039d, 0x039d8b03, 0x8a039d8c, + 0x3ea7fe0b, 0x27fdeb27, 0x27340540, 0x0400004f, 0x2734150d, 0x0ef49b40, + 0x9b2bf29b, 0xf29b22f2, 0x23f29b2a, 0x9b1c1ca3, 0xfe0b20f1, 0xfc4efe0b, + 0x0ae2f293, 0x502ec104, 0x334023c1, 0x2b4307e3, 0x0740084e, 0x312d99e3, + 0x07302499, 0x074d1bc2, 0x1e2f6b24, 0x41043117, 0x0b210703, 0x1b433343, + 0x4c2f6b4e, 0x01011140, 0x07fc8e00, 0x07418342, 0x33053304, 0x07042b43, + 0x0c0f0312, 0x030004c5, 0xd2d2ce11, 0xc1d0c0c1, 0xfc8ed4c1, 0x0a86f393, + 0xaa349904, 0x42230f6b, 0x6bb0309d, 0x0f4c144f, 0x30c50027, 0x93fe0bbc, + 0x040a6bf4, 0x0bcc40c1, 0x28fb4efe, 0x2720010d, 0x1e20000d, 0x03000c05, + 0x73d00707, 0x23bd07d3, 0x49f493b8, 0x0b07040a, 0x41c10fab, 0x070833b4, + 0x1ee027c4, 0x2fe4c47c, 0x3f9b19d6, 0x27b1c823, 0xabbcc499, 0x2df49b40, + 0x9b2d4f9b, 0xe32b23ef, 0xe403e373, 0xc1214f9b, 0x438bbcc3, 0x11274486, + 0x0427ed3a, 0x2f9b641e, 0xbcc3c124, 0xd8182c53, 0x21c40d32, 0x9b12440a, + 0x4827244f, 0x3cd8151e, 0x42071610, 0xd4804c23, 0x12c40e44, 0x244f9b0b, + 0xf49b4627, 0x18211e25, 0x17a6403c, 0x27244f9b, 0x25f49b48, 0x102724c6, + 0x1214051e, 0xe1031103, 0x2783edda, 0x9b131e03, 0xf293214f, 0xc10409b0, + 0x0027bc23, 0x24c5438b, 0xa1f493cc, 0x41c50409, 0x4efb8eb4, 0x07d007fb, + 0x272f6bb1, 0x0000ff4f, 0x21f49b40, 0xfd7e0207, 0x81fc93fe, 0x40270409, + 0xc5c8c4c5, 0xd726c4c4, 0x1b070d07, 0xffb305be, 0xd8334d07, 0xdc534f6b, + 0xc4c4c518, 0xc1c8cdc5, 0x4dd494c4, 0x36198000, 0x000d2746, 0x27100780, + 0x63adbe20, 0x98c0c500, 0x80004d27, 0x8e94c4c5, 0x93fb4efb, 0x040937fb, + 0x998cb399, 0x0b078ab4, 0xb49d43ab, 0xd9f4938c, 0x4c010469, 0x026836be, + 0xd5204f9b, 0x9b2000c4, 0xc4d5234f, 0x4f9b2004, 0x99f39322, 0xc4d5046a, + 0x4c272008, 0x03b20136, 0x033205b4, 0x8ef4a834, 0x93fc4efb, 0x0408effc, + 0x0d274127, 0xc49d2080, 0x9e8ebea8, 0x91f493ff, 0x40050469, 0x5a7e0c07, + 0x7e0c07fd, 0x0c07fd7f, 0x20271027, 0xa7fdb57e, 0xc49d7f4c, 0xf74c27b0, + 0xc4c53027, 0xc540a7ac, 0xc49d9cc3, 0xbcc3c5aa, 0xc5c0c3c5, 0xfc8eb8c3, + 0x93234f9b, 0x04089ff3, 0x34c54123, 0x4efe0b40, 0x91f493fe, 0x43c10408, + 0x4c429940, 0x432b4007, 0x40282452, 0x031ee027, 0xf193e207, 0xc1040878, + 0x20075013, 0x33332e2b, 0x432b4207, 0xe007404c, 0x2307e32b, 0x9d4412c5, + 0xfe8e4e1e, 0x0399fd4e, 0x83d0078a, 0x2734d637, 0x99fd8e00, 0x4fa38b04, + 0xffffffa0, 0x049d43ab, 0x230f9b8b, 0x3e40d0c5, 0xbe0d079f, 0x99026711, + 0x00278bd4, 0x01274618, 0xfd4efd8e, 0x7ea2f493, 0x99410103, 0xd4070442, + 0x4f9be927, 0x203c2724, 0x435b322b, 0x410b4447, 0x33e33407, 0x000030f1, + 0x4238ff06, 0x1e100c53, 0x070fab03, 0x0c3c5330, 0x41273536, 0x1e05d49d, + 0x06d49924, 0x3cd047a6, 0xf29b180c, 0x53400725, 0xf84d8341, 0x0b20071f, + 0x0f2c8314, 0x1eb4fef0, 0x25f39b04, 0x0fff0d83, 0xfd4efd8e, 0x07b6f093, + 0x66c9be04, 0xadfd9302, 0xd1c10407, 0x030d0754, 0xbe133311, 0x070268f5, + 0x682cbe0d, 0x9301b602, 0x040793f0, 0xc1fc3e7e, 0xf093a4d1, 0x27040788, + 0x5efd0e20, 0xfb4efc6e, 0x0107b007, 0xe07ec107, 0x070b07fe, 0x68c3be1c, + 0x0e0b0702, 0x67f89efb, 0x9bfc4e02, 0xf09323cf, 0xc104075c, 0x20273c01, + 0x026a6dbe, 0x27234f9b, 0x274c4e00, 0x9b482701, 0xfc8e25f4, 0xd007fd4e, + 0x3f9b0401, 0xc8432b23, 0x03997240, 0x93312409, 0x026d40f2, 0x32240d1e, + 0x03acf253, 0xf253051e, 0xf4930214, 0x9d040718, 0x42c5aa43, 0x08d0999c, + 0x99fc837e, 0x77be0ad0, 0xf09b0266, 0xbed00120, 0xc0026b9e, 0xf393f802, + 0x990406f4, 0xd2118a34, 0xc10e41d8, 0x42079033, 0x432b3333, 0x23074108, + 0x06daf493, 0x3c42c504, 0x270bdd99, 0x8b4d9d30, 0x9b8c439d, 0xfd0e230f, + 0x8efe2e5e, 0xbdf493fd, 0x40c10406, 0x6bbf9e40, 0x99f54e02, 0x03993104, + 0x9802c130, 0xc407432b, 0xd007f0a3, 0xb207cf6b, 0x90278027, 0xa0275027, + 0xe4bf6ea7, 0xaf7ea7fd, 0xf205fde4, 0xa05ef115, 0x83ec0700, 0x074e07e1, + 0x3343333e, 0x0b342b35, 0x4130313d, 0x0bf11134, 0x33240740, 0x03212b23, + 0x02237327, 0x21200720, 0x07a4d633, 0x07522b54, 0x94d4c11a, 0x41ca120b, + 0x2b030b6e, 0x280bce02, 0x241e24d6, 0x3ea7f3e8, 0xc1fdefff, 0x3327d434, + 0x53184c33, 0x44c01d4c, 0x156005ec, 0x35402762, 0x157b0564, 0x07743572, + 0x3335333e, 0x0b3e2be3, 0x1430993d, 0x0ca34807, 0x9d49ab20, 0x44d61430, + 0x39113801, 0x47834007, 0xc4074566, 0x0710cca3, 0x071d1ea1, 0x0741034c, + 0x6bb20bc4, 0x99a107cf, 0xc4ee31d4, 0xcc27ff5d, 0xe8051e10, 0xa7061ef3, + 0xfdefff2e, 0x27d424c1, 0x6a4ddc33, 0xf111eefc, 0x16be0d07, 0xd4990267, + 0x30d39931, 0x2407432b, 0xd29d2f6b, 0x27a4d632, 0x233f1e00, 0x07218321, + 0x33120742, 0x2b153343, 0x271d0b14, 0x15149d40, 0x01141c9d, 0x451a35f4, + 0x15180515, 0x99142519, 0xd5c530d4, 0x9d410390, 0xd5c530d4, 0x270d0750, + 0x6778be30, 0x33001102, 0x8ef08303, 0xc1f84ef5, 0xc007440d, 0xa2079107, + 0x8027d7e3, 0x6cbe0c07, 0x0c070264, 0x9a7e1d07, 0x8ac499fe, 0x4596b007, + 0xd3be0c07, 0x41270265, 0x40270496, 0x8b07b822, 0xf6da4fd6, 0x50cdc1b4, + 0x0c07d333, 0x0267babe, 0x1b07b00b, 0x18be0d07, 0x49070264, 0xa4124d2b, + 0x0907a027, 0xf80e1a07, 0x0263909e, 0xf493fa4e, 0x99040504, 0x0ac14c43, + 0x4d439d3c, 0xc0073027, 0x074c439d, 0x40d4c1d4, 0x1b4cd399, 0x2734324a, + 0x07400c20, 0x070d0723, 0x67f4be1a, 0x44b00702, 0x234f9b03, 0x1e40d4c5, + 0x230f9b3b, 0xc1fc327e, 0x0d0744d1, 0x026614be, 0xc4aad499, 0x4f9b1b41, + 0x40d3c123, 0x4f50432b, 0x70000001, 0x03234f9b, 0x0000004f, 0x40d4c5f0, + 0xb4240d07, 0x026529be, 0x93a30fd6, 0x04048ffd, 0x9d4dd499, 0xb4e04cd4, + 0xb2c4010a, 0x8bc3991b, 0xa38ac499, 0x4783203c, 0x0c0734ab, 0xbe8bc39d, + 0x2702634d, 0x99fa8e02, 0xd49daac3, 0x2740274d, 0x4cd49d00, 0xaebeb347, + 0x0f9b0268, 0xfbb97e23, 0xcabe0b07, 0xd4990269, 0x4cd49d4d, 0x009d0bea, + 0x2724df9b, 0x18dc5348, 0xd025f49b, 0x3f9b2fb9, 0x25f49b24, 0x33183c53, + 0xd0d3ab38, 0x9b1e11bc, 0x3827244f, 0x9b25f39b, 0xf39b242f, 0x184c5325, + 0xe3104c33, 0xffffff2e, 0xd4ab42ab, 0xc49d4027, 0x234d078b, 0xff4fd441, + 0x2a0fffff, 0x07234f9b, 0x40c4c504, 0xc1fb527e, 0xd33340c4, 0xc0c1d40b, + 0x3ccdc5c0, 0x026830be, 0x278bc499, 0x104ca300, 0x8e8bc49d, 0x234f9bfa, + 0x9340c4c5, 0x0403bff4, 0x9b4042c1, 0x1f9b224f, 0x8bc39923, 0x2f03412b, + 0x7fffff00, 0x3ca3242b, 0x991e1e40, 0x46d88ac4, 0x232f9b22, 0x998bc399, + 0x07e38ac4, 0x83203ca3, 0x40c2c547, 0x200b34ab, 0xc39d0227, 0x3cc2c58b, + 0x0427fa8e, 0xfa4efa8e, 0x0372f393, 0x4c349904, 0x349dd007, 0x9d40274d, + 0x04994c34, 0x2c4f4b8b, 0x1eb42740, 0x27a30772, 0x8adc99b0, 0x9b3ca3c1, + 0x34ce234f, 0x3cd1c10e, 0x20270d07, 0x026659be, 0x0f9bb007, 0xfaa17e23, + 0x0744d1c1, 0x6483be0d, 0x440d0702, 0x63b8beb4, 0x1e0ba602, 0xc1c636cd, + 0x3f9b3ca4, 0x2c432b23, 0x8adc9941, 0xd499c1a3, 0x833c078b, 0x204ca337, + 0xd49d43ab, 0xbe0d078b, 0x180261dd, 0x99b227c6, 0x4fa38bd4, 0xffffff80, + 0xc08bd49d, 0xd4996eb2, 0xcc4f4b8b, 0x01275b40, 0x02685cbe, 0xd630d499, + 0x1eb42744, 0x234f9b4c, 0xc58ad399, 0x315840d4, 0x3390d4c1, 0x93191e43, + 0x0402bbf4, 0x9b4044c1, 0x2f9b223f, 0x03322b23, 0xffff004f, 0xc5432b7f, + 0x4c273cd4, 0x8bd49d10, 0x0d0706d6, 0xe6fa3f7e, 0x44d1c105, 0xb2270d07, + 0x0263e0be, 0xb027031e, 0x0282f493, 0x4d439904, 0x074c439d, 0x4efa8e0b, + 0x23bf9bfa, 0x026efa93, 0xc1b78304, 0x4f9b3cac, 0x1fdc2723, 0xdb2bc42b, + 0x9b224f9b, 0x432b233f, 0x0718d4d2, 0x67cfbe0d, 0x0fd0d202, 0x9b3ca4c1, + 0x432b233f, 0xa4274032, 0xa027031e, 0x8ebe0027, 0xdf9b0266, 0x2df49324, + 0x40c10402, 0x667fbec0, 0x27c12c02, 0x07fa8e01, 0x002f032d, 0xcc800000, + 0x270c20cc, 0x3c2b203c, 0x433b40a7, 0xb103248b, 0x4b5b4207, 0x002744c6, + 0x0127fa8e, 0x0027a486, 0xfb4efa8e, 0xd007b107, 0x0cc0bf6b, 0x01246020, + 0x67f7f493, 0x240d1e02, 0x63f45302, 0x53051efe, 0x93fccbf4, 0x0401cffc, + 0xc5b0c099, 0xcd9d9cc4, 0xf73a7eaa, 0xc4c54027, 0x27d2203c, 0x041e314c, + 0x9d7f4ca7, 0xb6468bc4, 0x01aaf493, 0xac40c104, 0xa30f0c83, 0x041e100c, + 0xbe180c27, 0x9302610a, 0x040193f4, 0x0ec040c1, 0x65e39efb, 0x4efb8e02, + 0x35f493fc, 0x4c010462, 0x017af293, 0x05f39304, 0x4c270463, 0x03310136, + 0x03210534, 0x93f4a824, 0x040163fd, 0xd49d4127, 0x7e0d07a8, 0xc1d1f5dd, + 0xc2d12000, 0x0d072004, 0x99f6397e, 0x47588ad4, 0x2004c3d1, 0x2008c4d1, + 0x992934ce, 0x451630d4, 0xc3be0d07, 0xc1d10261, 0xd4c12004, 0x4cd29940, + 0x2432411b, 0x20274008, 0x011af093, 0x9efc0e04, 0x8e02642e, 0x93fe0bfc, + 0x037797f3, 0x341d4027, 0x34bd4127, 0x00270100, 0x1559f413, 0x4efe0b34, + 0x7dfc93fc, 0xc4110377, 0x0c07dc07, 0x04d6f48b, 0x4286c419, 0xc41d4027, + 0xfe0bfc8e, 0x3127fe0b, 0x775ef493, 0x0b431d03, 0x27f063fe, 0x0d0bba4d, + 0x284c27f4, 0x1007f42d, 0x1803f001, 0x659ef043, 0xf093ffce, 0x1103773c, + 0x6b4f0004, 0x1e0000c4, 0x4efe0bd9, 0x631007fd, 0x03d007f0, 0xbe0f0718, + 0xd6ffce9b, 0x1e042704, 0x24f4091e, 0x290bba4d, 0x284c40f4, 0xf1930627, + 0x9e00a97b, 0x1300599a, 0xd41509f4, 0xf0430027, 0xfc4efd8e, 0x04b90da1, + 0xf5a30100, 0xdc03c007, 0x0745c618, 0xff47be0d, 0xbd4027ff, 0x070100c4, + 0x2720273f, 0x3205164c, 0xf4c83403, 0x1d07d201, 0xf8be0f07, 0x0a16ffaf, + 0x42d6f493, 0x4844c104, 0x070f4c83, 0x87353334, 0x07342b44, 0x2b433343, + 0xff3ea743, 0x44f1fd4f, 0x00050c94, 0x43c53311, 0x07f413a8, 0xf583c415, + 0xfd4efc8e, 0x42a2f493, 0x4843c104, 0x3f83d007, 0x8000000f, 0x304c00a1, + 0x3fa33123, 0xfffffff0, 0x43073103, 0x33874533, 0x1407432b, 0x142b1333, + 0x0be81f03, 0x60be0005, 0x04c0ffbd, 0xac94be1b, 0x38d461ff, 0x12f41341, + 0xf453051e, 0x0d07ff17, 0xe67ed415, 0x8e0027fe, 0x07fd4efd, 0xb81ebed0, + 0x530556ff, 0x15fefef4, 0x8e0227d4, 0x234f9bfd, 0xfe0b0227, 0xd007fd4e, + 0xffb803be, 0xf4930576, 0x150267b2, 0x8e0227d4, 0xe3fb4efd, 0x9bb007f0, + 0x4427244f, 0x9b25f49b, 0x4227244f, 0x9b25f49b, 0x4627244f, 0x9b25f49b, + 0x432724df, 0x5325f49b, 0xcd071ddc, 0x4f9bc103, 0x9b412724, 0x4f9b25f4, + 0x104c2724, 0x0725f49b, 0xbe2c071f, 0x960005f8, 0x243f9b0a, 0xf49b4127, + 0x1130cc25, 0x0d1ed027, 0x9b284f9b, 0x92be284f, 0xd103025f, 0x9bf2dcca, + 0x4627243f, 0x5325f49b, 0xb39d1a3c, 0xbe0b077a, 0xc30266e6, 0xd6fb8ef0, + 0x1e402704, 0x1e012309, 0x534103f9, 0x07039601, 0x4efe0b04, 0x27d007fd, + 0x270107e0, 0x0705a61d, 0x0b30074d, 0x013e0b4e, 0x03340142, 0x27242ee4, + 0x48fd8e00, 0x8e0127f1, 0x07fa4efd, 0x33310741, 0x2b383344, 0x07310b34, + 0x2b1387d1, 0x500ad113, 0xa9133307, 0x0b1a7404, 0xac21d51a, 0x074d7b12, + 0xd8b207c0, 0xf4932341, 0x89044138, 0x42dc0e44, 0x5404b94e, 0x11d4ce07, + 0x983e0207, 0x40a70c56, 0x1a04c4bd, 0x0754c4bd, 0x4d073d07, 0x48333433, + 0x4d0b432b, 0x342b3487, 0x3a0b3333, 0x4d270b07, 0x020105a6, 0x32050403, + 0xf4a83403, 0x1a74c3a9, 0x4d3b4127, 0xcdbd34ab, 0xc3ad1a80, 0xfa8e1a74, + 0x04b9f54e, 0xf1230754, 0x14eed007, 0x1cf404e6, 0xa904e511, 0x7b1a7404, + 0xdb41f841, 0xff4ea704, 0x44c1fd4f, 0x500ed174, 0x004e3807, 0x0a271000, + 0x0827031e, 0x31074107, 0x38334433, 0x310b342b, 0x232b2387, 0x2e0b2333, + 0x22242499, 0x76f09340, 0x141e00a7, 0x34102489, 0x8920014d, 0x4d501224, + 0xf0932001, 0xbe00a78b, 0x5effa741, 0x2479048a, 0xf0934230, 0x1e00a797, + 0x54dd03ef, 0x033d0707, 0x0712afdd, 0x7f3ce32d, 0x237f2ce3, 0x191a03dd, + 0x803c0334, 0x07f932c2, 0x33410731, 0x2b483334, 0x87410b43, 0x33342b34, + 0x0b4d0733, 0x544d033e, 0xac2d2707, 0x03310104, 0x03410534, 0x93f2a844, + 0x03750bf0, 0x2c271027, 0x55dfbe15, 0xacdcb902, 0xaddeb907, 0x3b412707, + 0x6cd3d14c, 0x23ec0b07, 0xabfe1541, 0x53f9114f, 0x66dba937, 0xa9240707, + 0x070764d1, 0x532f0ba3, 0x79deb933, 0x6b140b07, 0x0b2fab9f, 0x53b3074b, + 0x78d0b933, 0x35428b07, 0x83218bf9, 0x9de82331, 0xd1b95fd3, 0xd3b90757, + 0xd28d07b3, 0xb2d2b948, 0x56de9d07, 0x836edc9d, 0x23b183a1, 0x4ad48d08, + 0x0768dca9, 0x076adea9, 0xd29d4d07, 0x58d39d57, 0x9d4dd99d, 0xda9d55d0, + 0x5adb9d59, 0x9d4cd99d, 0x4d0354d1, 0xdc8d0754, 0x28de8d26, 0x3d07f405, + 0x40272627, 0x9d66349d, 0x31036034, 0xd4b9f298, 0x41200757, 0x0b1e8027, + 0xc861fc01, 0x81c38153, 0x51278183, 0x1507fe11, 0x41231e3b, 0x4f6b2107, + 0x7027219b, 0x71274214, 0x475b4107, 0x385b3107, 0x439b4447, 0x4447420b, + 0xfffe4d83, 0x33533407, 0x3407430b, 0xd4b93fab, 0xd3ad0778, 0x49d01a88, + 0x3343070f, 0x73430b43, 0xad430b47, 0x071a88d4, 0x33318741, 0x70dea944, + 0x72dca907, 0xa9432b07, 0xa90776d0, 0x530774d9, 0x68dba924, 0xa9425307, + 0xa9076ad1, 0xa90764da, 0x870766d6, 0x0b0e0b32, 0xad24339c, 0x271a8cd4, + 0x232b604c, 0x073b1b9b, 0x3a07983b, 0xd465b607, 0xe73b4027, 0x302bc83b, + 0xd475b92b, 0xd2ad4127, 0xd1ad1a8a, 0xde8d1a8e, 0x30dc8d2e, 0x8d2ad38d, + 0xd49d2cdb, 0xdaa0124e, 0xd1890e96, 0x2ad0892c, 0xffa51ebe, 0x9302a15e, + 0x037373f0, 0x049d4027, 0x48d18909, 0x891a018d, 0x028d4ad2, 0x2ad3891c, + 0x8928038d, 0x048d2cd4, 0x2ed9892a, 0x892ad289, 0x098d2cd1, 0x30dc892c, + 0x048d4127, 0x2e0c8d16, 0x8918058d, 0x028526de, 0x89300e8d, 0x019528d3, + 0xa932038d, 0x891a8ad9, 0x04893003, 0x34098d32, 0x1a88dca9, 0x04c5439b, + 0x27342738, 0x8d04a04d, 0x0c8d3c04, 0x0b039d36, 0x9d0c039d, 0xd4890d03, + 0x87410326, 0x4404c544, 0xd854d4c1, 0xffff004e, 0x24fe111b, 0x704d27e6, + 0x11281e04, 0x271524f1, 0x1e02404d, 0x284d271e, 0x11181e01, 0x272624f2, + 0x1e03904d, 0x24f3110e, 0xd04d2735, 0x27041e01, 0x048df04c, 0x59d4b93e, + 0xb1f39307, 0x349d0372, 0x5ad9b912, 0x13399d07, 0x0756d4b9, 0x44b94d0b, + 0x343d0782, 0x0756d4b9, 0x44b94d0b, 0x341d077a, 0x9d55dc99, 0xde994d3c, + 0x4e3e9d56, 0x0757d1b9, 0xb94f319d, 0xa9075ad2, 0x070764d1, 0x33428732, + 0x0b342b34, 0x33430732, 0x87432b46, 0x07420b44, 0x0f3c5334, 0x230d4c53, + 0x0b438333, 0x66d2a934, 0x123cd407, 0xf143872d, 0x016f4c43, 0x07219b00, + 0x2a425343, 0x10cc2742, 0x43071a1e, 0x422a4153, 0x1e0ccc27, 0x0b43470f, + 0x2a425343, 0x1ec82742, 0x93c62703, 0x037217f5, 0x1c425119, 0xa46bf093, + 0xbe2c0700, 0x1900505c, 0x022c0754, 0x5d24074c, 0xb9547d52, 0x390756d4, + 0x0b448752, 0x8844d14d, 0x15535907, 0x0f32ea54, 0xb3deb901, 0xb4d4b907, + 0xb5d7b907, 0xaed2b907, 0x256e0707, 0x33740bf2, 0xd1483364, 0xb9076cd9, + 0xab07b1d3, 0xb9f42164, 0xb907b0db, 0x330757d1, 0xc907104c, 0xab183c33, + 0x1cbc3334, 0xd1bdc653, 0xd2b90100, 0x3bab07b2, 0xb91fcc33, 0xab07afda, + 0x11fc213c, 0x8362abf4, 0x2c830fec, 0xb9e9330f, 0xb90779d0, 0x0b07acd8, + 0x112533ac, 0x232eabfc, 0x83e10743, 0x33883313, 0xcc33121c, 0x78dbb90c, + 0x83043307, 0x012da343, 0xab21ab20, 0x0e4c333c, 0xac339833, 0xab08ab14, + 0x3324ab0b, 0x448711ec, 0x00009e83, 0xab3aab01, 0xab30ab24, 0x0c7c33e9, + 0xd3c5f131, 0xf0d2c5d8, 0x0766d3a9, 0x0764d2a9, 0xe6abe7ab, 0xd0a9c8ab, + 0xd19d1a8e, 0xdcdec592, 0x0124d2ad, 0x0126d3ad, 0x7ee4dcc5, 0xd0bdfa7b, + 0xd0b91a81, 0x707e07b6, 0x82d0bdfa, 0xb7d0b91a, 0xfa657e07, 0x1a83d0bd, + 0x0d07f101, 0x03480d03, 0x0019dcbe, 0xe7be0507, 0x0027ffa2, 0x0127031e, + 0xf58ef103, 0xd207fb4e, 0x27243f9b, 0x25f49b42, 0x1d1e3c53, 0x243f9b13, + 0xf29b2127, 0x53142125, 0x41e31f3c, 0x142543ab, 0x27243f9b, 0x25f49b45, + 0x3d1b3c53, 0x243f9b13, 0x9b204c27, 0x131525f4, 0x9b243f9b, 0x142125f2, + 0x471f3c53, 0xab42e333, 0x9b142543, 0xf29b243f, 0x53142125, 0x33871f3c, + 0x43ab44e3, 0x3f9b1425, 0x25f29b24, 0x3c531421, 0xe333331f, 0x2543ab48, + 0x243f9b14, 0x2125f29b, 0x1f3c5314, 0x4ce33433, 0x2543ab10, 0x244f9b14, + 0x9b164c27, 0x3f9b25f4, 0x25f49b24, 0x27243f9b, 0x25f49b48, 0x3c53b027, + 0x27c02718, 0x5d2d0700, 0x9b1f1e13, 0x3127244f, 0x5325f39b, 0x403b1f4c, + 0x4f9bb4ab, 0x25f39b24, 0x3b1f4c53, 0x03c4ab40, 0xe0f2f001, 0x2718d2d0, + 0x474d2b49, 0x243f9b44, 0x1325f49b, 0x345b204c, 0x012734c6, 0xf093fb8e, + 0xc103f854, 0x1f9b3c02, 0x223f9b23, 0x422b4307, 0x32074008, 0x432b4107, + 0xc11241c8, 0x411b3c04, 0x008248e4, 0xfff0ccbe, 0x791e05e6, 0xc1214f9b, + 0x438bbc03, 0x076e4fd6, 0x20ec272d, 0x27101c27, 0x5a1e0c0c, 0x9b49b1d8, + 0x4227244f, 0x9b25f49b, 0x3127244f, 0x9b25f39b, 0x4527244f, 0x9b25f49b, + 0xfe9b244f, 0x244f9b25, 0x9b25f39b, 0xf39b244f, 0x244f9b25, 0x9b25f39b, + 0xf39b244f, 0x244f9b25, 0x9b25f19b, 0xf19b244f, 0x244f9b25, 0x5825f09b, + 0x244f9bc1, 0xf49b4827, 0x53b15325, 0xa5f2f0c1, 0xfb8e0027, 0xfb8e0427, + 0xf493f64e, 0x07036f8c, 0x972d0324, 0x07340716, 0x7f2ce360, 0x197f3ce3, + 0x803c0334, 0x93f932c2, 0x036f6ff0, 0x2d271027, 0xeebe05a6, 0xf193024f, + 0xd5036f60, 0x9b12ac11, 0x4427243f, 0x5325f49b, 0x133d1c3c, 0x27243f9b, + 0x25f49b43, 0x031d3c53, 0x9b135d31, 0x4127243f, 0x6125f49b, 0x1f3c5314, + 0x43ab41e3, 0x14651259, 0x077f28f4, 0x06071403, 0xf6fdfb7e, 0x93077a0f, + 0x03f733f0, 0x9b3c02c1, 0x3f9b231f, 0x2b430722, 0x07400842, 0x2b410732, + 0x1341c843, 0x1b3c04c1, 0x5248e441, 0xefabbe07, 0x5e0626ff, 0x4f9b0749, + 0xbc03c121, 0x4ff6438b, 0x4f9b073d, 0xd9f29328, 0x4f6b036e, 0x4cf4241d, + 0x9b072810, 0x4f6b284f, 0x44f4247d, 0x43c4071d, 0x244f9b16, 0xf39b3127, + 0x53236125, 0x44471f4c, 0x34ab32e3, 0x4f9b2365, 0x10248d28, 0x93284f9b, + 0x03f6bbf0, 0xc112248d, 0x1f9b3c02, 0x223f9b23, 0x422b4307, 0x32074008, + 0x432b4107, 0xc11341c8, 0x411b3c04, 0x06d748e4, 0xffef30be, 0xce5e0626, + 0x214f9b06, 0x8bbc03c1, 0xc24ff643, 0x244f9b06, 0xf39b3127, 0x59f29325, + 0x2361036e, 0x871f4c53, 0xab34e344, 0x83236534, 0x9b378634, 0x248d284f, + 0x284f9b1c, 0x9b22248d, 0x248d284f, 0x284f9b1e, 0x1e20248d, 0x8d40270f, + 0x238d2024, 0x1e248d1c, 0x9b22248d, 0x4803284f, 0xf2934f6b, 0x9d036e14, + 0x4bf42424, 0x4f9b0665, 0x6b480328, 0x25249d4f, 0x06574bf4, 0x03284f9b, + 0x9d4f6b44, 0x4cf42624, 0x9b064811, 0x3127244f, 0x6125f39b, 0x1f4c5323, + 0x38e34333, 0x236534ab, 0xb0273838, 0x2b59051e, 0xdb87b123, 0xdf03cb07, + 0x00043d28, 0x3d17cf03, 0xfa930004, 0x1e036dbc, 0x284f9b21, 0x4f6b4103, + 0xc103c41d, 0x02114cf4, 0x284f9b06, 0xbe07c49d, 0x05025631, 0x03b103d0, + 0xcaa459d4, 0x42d0dcb4, 0xdca46142, 0x30273d48, 0x6d86fe93, 0x99211e03, + 0x11f12e24, 0x00043d24, 0xfd262299, 0x043d1f34, 0x1732fd00, 0xf500043d, + 0x043d2801, 0x59310300, 0x070387e4, 0x23148724, 0xf02f0341, 0xca00043c, + 0x4f9bce34, 0x6b430328, 0x45f1934f, 0x149d036d, 0x9647f458, 0x284f9b05, + 0x9b59149d, 0x4203284f, 0x149d4f6b, 0x8246f45a, 0x284f9b05, 0x9b5b149d, + 0x149d284f, 0x283f9b5c, 0x1e99c127, 0x10128959, 0x07121d89, 0x3b03074c, + 0x6b32074e, 0xab41230f, 0x9d438b3d, 0x4ff65d10, 0x14990551, 0x4a47f45c, + 0x4607f405, 0x58139905, 0x3e0b4c07, 0x4123433b, 0x4d0b240b, 0x237b437b, + 0x8d14128d, 0x3f9b1614, 0x9b412724, 0x146125f4, 0x331f3c53, 0x104ce334, + 0x146543ab, 0x2d104cd8, 0x27244f9b, 0x25f39b31, 0x4c531361, 0xe345331f, + 0x34ab203c, 0x3cd81365, 0x11d11320, 0x060712ac, 0x12b01d03, 0x00080fbe, + 0x04ed0ff6, 0x27243f9b, 0x25f29b21, 0x6c82f193, 0x53146103, 0x36331f3c, + 0xab404ce3, 0x9b146543, 0xf29b243f, 0x53146125, 0x37331f3c, 0xab804ce3, + 0x9b146543, 0xf29b243f, 0x53146125, 0x38331f3c, 0x01004de3, 0x146543ab, + 0x01004dd8, 0x244f9b47, 0xf39b3427, 0x1c4c5325, 0x149d4103, 0x244f9b5e, + 0x5325f39b, 0x41031c4c, 0x9b5f149d, 0x4303284f, 0x9b60149d, 0x149d284f, + 0x243f9b61, 0xf49b4127, 0x53146125, 0x3c331f3c, 0x004de30d, 0x6543ab20, + 0x27091e14, 0x5f149d48, 0x9b5e149d, 0xf393284f, 0x6b036bf0, 0x62349d4f, + 0x3e414cf4, 0xfdf09304, 0x02c103f3, 0x231f9b3c, 0x07223f9b, 0x08422b43, + 0x07320740, 0xc8432b41, 0x04c11341, 0xe4411b3c, 0xbe041c48, 0x26ffec75, + 0x04135e06, 0xc1214f9b, 0x438bbc03, 0x04074ff6, 0xfd93c027, 0x1e036ba4, + 0x1ae1be0b, 0xf80ff600, 0x07c10303, 0x334c072c, 0x0b233346, 0x62d49924, + 0x3d982f03, 0x3c070004, 0x1d070607, 0x9bdbc4ca, 0x4127243f, 0x6125f49b, + 0x1f3c53d2, 0x3c334027, 0x002de30e, 0x9d23ab40, 0x402763d4, 0x65a4d4c5, + 0x002dd8d2, 0xd2994c40, 0x284f9b26, 0xd49d4f6b, 0x214cf463, 0xec27039d, + 0x93102720, 0x036b3bf0, 0x281ee22b, 0x9b244f9b, 0x4e5b25f2, 0x34ed3147, + 0x00043d54, 0x27244f9b, 0x25f39b31, 0x53a403c1, 0x413b1f4c, 0x04c543ab, + 0x991103a4, 0x14ca6304, 0x243f9bd4, 0xf29b2127, 0xfdf19325, 0x1461036a, + 0x331f3c53, 0x004de339, 0x6543ab02, 0x244f9b14, 0x6125f29b, 0x1f4c5313, + 0x3de34a33, 0x34ab0400, 0xf2f2f093, 0xc1136503, 0x1f9b3c02, 0x223f9b23, + 0x422b4307, 0x32074008, 0x432b4107, 0xc11341c8, 0x411b3c04, 0x030f48e4, + 0xffeb68be, 0x065e0626, 0x214f9b03, 0x8bbc03c1, 0xfa4ff643, 0x243f9b02, + 0xf49b4127, 0x91f19325, 0x1261036a, 0x331f3c53, 0x002de33b, 0x6523ab08, + 0x002df812, 0x9b028508, 0xf49b243f, 0x1f30cc25, 0x27243f9b, 0x25f49b48, + 0xc4183c53, 0x9b10ff3c, 0x4c27244f, 0x25f49b10, 0x9b243f9b, 0x3f9b25f4, + 0x9b412724, 0x304c25f4, 0x27244f9b, 0x25f49b41, 0x27244f9b, 0x25f39b31, + 0x6a36f193, 0x53136103, 0x4c331f4c, 0x003de30f, 0x6534ab80, 0x003dd813, + 0x4f9b6880, 0x9b432724, 0x3f9b25f4, 0x9b212724, 0x146125f2, 0x331f3c53, + 0x4ee3113c, 0xab020000, 0x9b146543, 0xf29b243f, 0x53146125, 0x3c331f3c, + 0x004ee310, 0x43ab0100, 0x4ed81465, 0x2a010000, 0x27244f9b, 0x25f39b38, + 0xbd184c53, 0x9b12a814, 0xf39b244f, 0x184c5325, 0x12a914bd, 0x9b244f9b, + 0x4c5325f3, 0xaa14bd18, 0x243f9b12, 0xf49b4127, 0x9b302c25, 0x4f9b284f, + 0x244f9b28, 0xf39b3127, 0x244f9b25, 0x9b25f39b, 0xf39b242f, 0x91f19325, + 0x14610369, 0x331f2c53, 0x4ee3122c, 0xab040000, 0x9b146542, 0xf39b244f, + 0x0d40cc25, 0x9b284f9b, 0x4f9b284f, 0x284f9b28, 0x27243f9b, 0x25f49b41, + 0x010130ec, 0x27244f9b, 0xf49b204c, 0x243f9b25, 0x9b25f49b, 0x4127243f, + 0x0c25f49b, 0x284f9b30, 0x27243f9b, 0x25f49b41, 0x00d930ec, 0x2724af9b, + 0x1eac5342, 0xd625f49b, 0x1e8027a4, 0x248f9b58, 0x8c534127, 0x25f49b1f, + 0x4f9b8806, 0x9b482724, 0x4f9b25f4, 0x9b352724, 0x4f9b25f3, 0x9b412724, + 0x4f9b25f4, 0x25f39b24, 0x27244f9b, 0x25f49b44, 0x9b243f9b, 0x854625f4, + 0x27244f9b, 0x25f49b44, 0x27244f9b, 0x25f49b45, 0x9b243f9b, 0x3f9b25f4, + 0x25f49b24, 0xf7939027, 0x1e0368c8, 0x243f9b62, 0xf49b4127, 0x9b304825, + 0xf49b243f, 0x9b302c25, 0x111e284f, 0x27243f9b, 0x25f49b41, 0xda07304c, + 0x361eb127, 0x0328bf9b, 0x21bcd4b1, 0x1eda0765, 0x24d1d829, 0x1d1ec027, + 0x025118be, 0x025114be, 0x0ebe8546, 0x0abe0251, 0x4f9b0251, 0x9b412724, + 0xc10325f4, 0x53e2cbce, 0xd6dfd6d1, 0x74599103, 0x9b9b94ca, 0x4127243f, + 0xcc25f49b, 0x4f9b2430, 0x9b412724, 0x3f9b25f4, 0x25f49b24, 0x9b243f9b, + 0x4f9b25f4, 0x284f9b28, 0x9b284f9b, 0x4f9b284f, 0x49f09328, 0x02c103f0, + 0x231f9b3c, 0x07223f9b, 0x08422b43, 0x07320740, 0xc8432b41, 0x04c11141, + 0xc4411b3c, 0xc2be6848, 0x0946ffe8, 0x4f9b601e, 0xbc03c121, 0x47c6438b, + 0x1431541e, 0x46833027, 0x31274604, 0x41834307, 0xe3124c33, 0x0400002e, + 0x126524ab, 0x27243f9b, 0x25f49b41, 0x9b1730cc, 0x4127244f, 0x9b25f49b, + 0xf49b243f, 0x244f9b25, 0xf49b4627, 0xb9f29325, 0x21190367, 0x0a7e0607, + 0x0e0607f1, 0x57a89ef6, 0x8e012702, 0x8e0427f6, 0x99f84ef6, 0xd0077c04, + 0x4506c107, 0x699ef80e, 0x1cf4000b, 0x0701db41, 0x87418341, 0x07400b44, + 0x7842d131, 0x2731531a, 0x8b433b41, 0x9345d642, 0x009a13f0, 0x00456bbe, + 0x0701b75e, 0x33418731, 0x07430b34, 0x2b333334, 0xd1312b34, 0x3307500b, + 0xd93b0b33, 0x01698131, 0xfff127be, 0x0ff68007, 0xdd030192, 0x3d071a04, + 0x076fdc03, 0x7f3ce32d, 0x237f2ce3, 0x191a73dd, 0x803c0334, 0x07f932c2, + 0x8734333c, 0x07430b4c, 0x2b333334, 0x333c2b34, 0x803e0333, 0x4d070169, + 0x4d033b0b, 0x2c271a04, 0x0331011c, 0x03410534, 0xd1f2a844, 0xf81a08d2, + 0x9608002d, 0x14dca900, 0x68d0a91a, 0x310cea07, 0x16d3a901, 0x6ad4a91a, + 0x2543ea07, 0x002ed801, 0x07772000, 0x100c331c, 0x00727dbe, 0x1c07b007, + 0xffff0d27, 0x007271be, 0x100b1b07, 0x2d07ad07, 0x071e0127, 0x1a1824ad, + 0x1b0b0103, 0xd3a94107, 0x4b2b1a14, 0x03104c53, 0xe903c222, 0x1a16dca9, + 0x076ad0a9, 0x0c331c07, 0x723cbe10, 0x07b00700, 0xff0d271c, 0x7230beff, + 0x0b2b0700, 0x1e112720, 0x42a4ad07, 0x0b11031a, 0xa942072b, 0x2b1a16d3, + 0x104c534b, 0x13c2a203, 0x14daa9e9, 0x16d9a91a, 0x68d2a91a, 0x0b4a4707, + 0x1842ad4d, 0xa939471a, 0x0b076ad4, 0x4234ad3d, 0x08d3d11a, 0xacdeb91a, + 0x07230707, 0x83295343, 0xb9130744, 0x8307add0, 0x0ddcb922, 0x5324ab1a, + 0x0b430715, 0x5311830e, 0x2b21ab43, 0x0748830c, 0xb924ab13, 0x331a12de, + 0x07185304, 0x07c30743, 0x8320abb3, 0x53e22311, 0x53c95344, 0x3c530dbc, + 0xe0d2c50c, 0xb95cd19d, 0xb91a0fd2, 0x331a0ed1, 0x41831dec, 0xb183c183, + 0xd3bd3183, 0xdec50101, 0x70da9de8, 0x9d6fd99d, 0xdc9d5bd4, 0x5edb9d5d, + 0x9d6cd19d, 0x031e6dd2, 0x08078127, 0xf54ef88e, 0xa2d1a007, 0x00c1076c, + 0x5a0389ac, 0x0e102cf8, 0xd1d00701, 0x031a08a4, 0xd30b60dc, 0x00004ed8, + 0xa1d10c04, 0x0d071a70, 0x1e701c03, 0x202cd80f, 0x00a1d116, 0x030d071a, + 0x2712b01d, 0xbe03e82d, 0x5e003a81, 0x5d0700d5, 0x7d076d07, 0x8c279027, + 0x305c0310, 0x01206d03, 0x02a07d03, 0xb433b907, 0xc9070d07, 0x3476f193, + 0x0b280702, 0x3a53be0b, 0x07c63300, 0x604c034c, 0x040b0d07, 0x346ef193, + 0x402c2702, 0x003a3cbe, 0x4d034c07, 0x0d0701e0, 0xf193040b, 0x27023458, + 0x26be402c, 0x0507003a, 0x343af193, 0x0b280702, 0x3a17be0b, 0x93060700, + 0x02347bf1, 0x0b402c27, 0x3a07be0c, 0x03070700, 0x930c0b91, 0x023467f1, + 0xbe402c27, 0xc40039f5, 0x0d078b93, 0x3416f193, 0x402c2702, 0x03600d03, + 0x0039e0be, 0x0d030d07, 0xf19303a0, 0x27023440, 0xcebe402c, 0x4c270039, + 0xe7d4bd10, 0xe1d8bd03, 0xe0d4bd03, 0xe2d4bd03, 0xe3d4bd03, 0xe4d4bd03, + 0xe5d4bd03, 0xe6d4bd03, 0x1e412703, 0x9d402703, 0xf58e74a4, 0xf2a3f54e, + 0x1c03f145, 0x03f15560, 0x6501801d, 0x801d03f1, 0x03f17501, 0xf393801c, + 0x8502343c, 0x25f493f1, 0x16030234, 0xd027a027, 0x33daf793, 0x95f89302, + 0xf5930233, 0x27023380, 0xf405106c, 0xf195f335, 0xf325f315, 0x8700a95e, + 0xf93f07ed, 0x016fc8dc, 0x41e30b00, 0x9bbc07e9, 0x9bb90bba, 0x4127243f, + 0xc825f49b, 0x2f9b4b30, 0x2b1a0728, 0xca10e812, 0xc601f200, 0x13d2d000, + 0x24d6e361, 0x071e4607, 0x410b4307, 0x3a0b4419, 0x2716341d, 0x1507d4d6, + 0xd320151e, 0x071e1330, 0x180714d6, 0x1707091e, 0x1c9b051e, 0x0b07190b, + 0xeebe2c07, 0x3d1e0038, 0xe827d234, 0x4f9b101e, 0x03e36129, 0x6be40748, + 0x1d3a0bef, 0x074d873e, 0x07430b3f, 0x0340012c, 0x1e102721, 0x294f9b16, + 0x310b3007, 0x4e0b3319, 0xef6be407, 0x3e1d3b0b, 0xf2401103, 0xd0f9a103, + 0x00016fc4, 0xff51a0ea, 0xd434d103, 0xef1ea027, 0xeb9af093, 0x3c02c103, + 0x9b231f9b, 0x4307223f, 0x4008422b, 0x41073207, 0x41c8432b, 0x3c04c111, + 0x48c4411b, 0xe413be19, 0x1e0696ff, 0x214f9b15, 0x8bbc03c1, 0x1e451643, + 0x1e012709, 0x1e042707, 0x83002703, 0x4ef58ef2, 0x07d007fc, 0x270527c1, + 0x074d0710, 0x0b410b3c, 0x01420131, 0xce140334, 0xf0605642, 0x1c070d07, + 0x03700c03, 0x2d27701c, 0x05be03e8, 0x0c360038, 0x4e83c411, 0xc4200800, + 0x3808004d, 0x0710ce89, 0x07e1030c, 0x1e2c071d, 0x1413890e, 0x03142489, + 0xce220312, 0xfe801a43, 0x0312c189, 0x890d1e11, 0x04893ed3, 0x03d2033e, + 0x88432e02, 0x27051ef1, 0x27fc8e00, 0x4efc8e01, 0x873107f8, 0x0b343341, + 0x07d10743, 0x07133314, 0x83142b8d, 0x871d2b81, 0x0b133348, 0x5009d140, + 0x033d0707, 0x0169801e, 0x1a7844d1, 0xa1273153, 0x190ba33b, 0x8b6c21c5, + 0x07b0074a, 0x934826c2, 0x042d3ff4, 0xdc0e4489, 0x04b94c42, 0xd4ce1a04, + 0x7e02070e, 0x0bf6ff33, 0xb4bd40a7, 0x3d071a04, 0x4d873433, 0x3407430b, + 0x342b3333, 0x33333d2b, 0x3e03390b, 0x07016980, 0x164d270c, 0x03020101, + 0x03320504, 0x87f4a834, 0xd13b0b38, 0xab1a7834, 0x7834d54a, 0x4ef88e1a, + 0xbdf493fc, 0x24070378, 0x04572d03, 0xc0073407, 0xe37f2ce3, 0x34197f3c, + 0xc2803c03, 0xf093f932, 0x270378a0, 0x162d2710, 0x4287be01, 0x91f19302, + 0x11c50378, 0x284f9b6c, 0x141d4f6b, 0xa8404cf4, 0x284f9b03, 0x143d4f6b, + 0x9c104cf4, 0x243f9b03, 0xf09b0127, 0x53141125, 0x41e31f3c, 0x141543ab, + 0x9b243f9b, 0x141125f0, 0x471f3c53, 0xab42e333, 0x9b141543, 0x4327243f, + 0x5325f49b, 0x139d1d3c, 0x243f9b08, 0x1125f09b, 0x1f3c5314, 0x44e33387, + 0x141543ab, 0x9b243f9b, 0x141125f0, 0x331f3c53, 0xab48e333, 0x9b141543, + 0x4103284f, 0x4f9b145d, 0x7d410328, 0x294f9b14, 0x6b1a4c03, 0x07149d4f, + 0x4cec4f4b, 0x9b032234, 0x2127243f, 0x1125f29b, 0x1f3c5314, 0x4ce33433, + 0x1543ab10, 0x243f9b14, 0x1125f29b, 0x1f3c5314, 0x4ce33533, 0x1543ab20, + 0x244f9b14, 0x1125f29b, 0x1f4c5313, 0x3ce34633, 0x2734ab40, 0x09149d40, + 0x3c381315, 0x284f9b40, 0x9b09149d, 0x149d294f, 0x294f9b0a, 0x9b0b149d, + 0x2127243f, 0x1125f29b, 0x1f3c5314, 0x4ce33733, 0x1543ab80, 0x243f9b14, + 0x1125f29b, 0x1f3c5314, 0x4de33833, 0x43ab0100, 0x3f9b1415, 0x25f29b24, + 0x3c531411, 0xe339331f, 0xab02004d, 0x9b141543, 0xf29b243f, 0x53141125, + 0x3a331f3c, 0x04004de3, 0x141543ab, 0x9b243f9b, 0x141125f2, 0x331f3c53, + 0x004de33b, 0x1543ab08, 0x244f9b14, 0x1125f29b, 0x1f4c5313, 0xe30c4c33, + 0xab10003d, 0x8d402734, 0x13153e14, 0xf814148d, 0xa408003d, 0x003dfc00, + 0x9b023610, 0x4103284f, 0x9b10148d, 0x4103284f, 0x3fab3407, 0x8d101489, + 0x4cf41213, 0xf4021a15, 0x0215173c, 0x27244f9b, 0x25f39b31, 0x4c531311, + 0x154c331f, 0x00003ee3, 0x1534ab20, 0x003edc13, 0x273e2000, 0x9b121e30, + 0x3103284f, 0x4247340b, 0x539c43ed, 0x21030004, 0xca101489, 0x3027ea24, + 0xf1932127, 0x1e0376ac, 0x284f9b12, 0x340b3103, 0x43ed4247, 0x000453c6, + 0x14892103, 0xea24ca12, 0x27243f9b, 0x25f49b41, 0x7686f293, 0x53241103, + 0x3c331f3c, 0x004de30d, 0x1543ab20, 0xa30f1e24, 0x2720003d, 0x8d131541, + 0x108d1014, 0xe5f09312, 0x02c103e7, 0x231f9b3c, 0x07223f9b, 0x08422b43, + 0x07320740, 0xc8432b41, 0x04c11341, 0xe4411b3c, 0xbe016a48, 0x26ffe05d, + 0x01615e06, 0xc1214f9b, 0x438bbc03, 0x01554ff6, 0x27243f9b, 0x25f29b21, + 0x761ef193, 0x53141103, 0x3c331f3c, 0x004de30e, 0x1543ab40, 0x243f9b14, + 0x1125f29b, 0x1f3c5314, 0xe30f3c33, 0xab80004d, 0xd8141543, 0x4180004d, + 0x9b243f9b, 0x141125f2, 0x331f3c53, 0x4ee3103c, 0xab010000, 0x9b141543, + 0xf29b243f, 0x53141125, 0x3c331f3c, 0x004ee311, 0x43ab0200, 0x4edc1415, + 0x0d020000, 0x9d294f9b, 0x4f9b0c14, 0x0d149d29, 0x27244f9b, 0x25f39b31, + 0x75a6fd93, 0x53d31103, 0x4c331f4c, 0x003ee312, 0x34ab0400, 0x3ed8d315, + 0x10040000, 0x076cd1c1, 0x701c030c, 0xf6fa677e, 0x9b00ac0f, 0x2127243f, + 0x1125f29b, 0x1f3c53d4, 0xe3133c33, 0x0800004e, 0xd41543ab, 0x03284f9b, + 0x0ed49d42, 0x9b244f9b, 0xd31125f2, 0x331f4c53, 0x3ee3144c, 0xab100000, + 0xc9f09334, 0xd31503e6, 0x9b3c02c1, 0x3f9b231f, 0x2b430722, 0x07400842, + 0x2b410732, 0x1141c843, 0x1b3c04c1, 0x4c48c441, 0xffdf40be, 0x441e05c6, + 0xc1214f9b, 0x438bbc03, 0x3f9b4b76, 0x9b412724, 0x30cc25f4, 0x244f9b17, + 0xf49b4127, 0x243f9b25, 0x9b25f49b, 0x4627244f, 0x9325f49b, 0x0374ebf2, + 0x0c072119, 0x07fb8a7e, 0x9efc0e0c, 0x27024e42, 0x27fc8e01, 0x27fc8e04, + 0x243f9b00, 0x3c534827, 0x25f49b18, 0x3cc0030b, 0xfe0bf0ff, 0x0499fd4e, + 0x06d0077c, 0x9efd0e45, 0x890001f0, 0x04d53c04, 0xfdbe1a90, 0x0d070003, + 0x03480d03, 0x000637be, 0xfd0e0d07, 0x024df99e, 0xc67c0499, 0x01ca9e44, + 0x4dec9e00, 0x07fc4e02, 0x07ad3ec0, 0xc0a93ed0, 0xe07b89dc, 0x00d890dc, + 0x00f5d1e4, 0x1a80c2b9, 0x1a74c4a9, 0xf0ff2ce0, 0xf8427b00, 0x0700ea41, + 0x33320742, 0x2b383344, 0x87320b34, 0xd1432b43, 0x330750c3, 0x61430b43, + 0x004ef844, 0x00c10400, 0x27243f9b, 0x25f49b44, 0xbd1c3c53, 0x9b1c0cc3, + 0x4227243f, 0x5325f49b, 0xc3bd1e3c, 0x3f9b1c0d, 0x9b412724, 0x402725f4, + 0x1c0ec4bd, 0x4127302c, 0x1c0ec4bd, 0xc4bd4127, 0x845e1c0f, 0x273c0700, + 0x101c2700, 0x9b244f9b, 0x4c5325f1, 0xf434ad10, 0x244f9b1b, 0x5325f19b, + 0x34ad104c, 0x01031bfa, 0x03c43203, 0x244f9be0, 0x5325f19b, 0xc4ad104c, + 0x4f9b1c00, 0x25f19b24, 0xad104c53, 0x9b1c02c4, 0x4c27243f, 0x25f49b20, + 0x1c04c3d5, 0x9b243f9b, 0x412725f4, 0x1c08c3d5, 0x012fc4bd, 0x4f9b221e, + 0x103c2724, 0x5b25f39b, 0xf0c4ad43, 0x244f9b1b, 0x5b25f39b, 0xf2c4ad43, + 0xbd41271b, 0x070130c4, 0x9efc0e0c, 0x27024cda, 0x9bfc8e01, 0x4c53244f, + 0x24382718, 0xf39bff4c, 0x9ef11e25, 0xa9024cab, 0xb9018804, 0x03012e03, + 0x8804ad41, 0x9d402701, 0xf4937d04, 0x15024cf6, 0x9338c604, 0x03e4bff3, + 0xd18a3499, 0xd8013400, 0x33c10e41, 0x33400790, 0x08432b33, 0x93030741, + 0x03e4a3f4, 0x273c40c5, 0x4efe0b00, 0x7c0499fd, 0x4d86d007, 0xff915dbe, + 0xc47cd499, 0x0d070d43, 0x03480d03, 0x00059fbe, 0x44c0231e, 0x6cd4d120, + 0x07476605, 0x034d073d, 0x0303483d, 0x27054c4d, 0x4101812c, 0x31054403, + 0xf2a83403, 0x407cd499, 0x3cd48944, 0xd48d4103, 0x9d40273c, 0xfd8e7cd4, + 0xfe93fd4e, 0x0703e440, 0x3ce2c1d0, 0x9b231f9b, 0x4307223f, 0x4008422b, + 0x41073207, 0x41c8432b, 0x3ce4c111, 0x48c4411b, 0xdcb7be1c, 0x1e05c6ff, + 0x214f9b14, 0x8bbce3c1, 0x07457643, 0xff6d7e0d, 0xfd8e0227, 0xfd8e0427, + 0x0ca9f54e, 0xd007012c, 0xac07c333, 0xa0d1a00b, 0xf1630144, 0x024889be, + 0x04e005e6, 0xf45301a0, 0xd415feff, 0xb901975e, 0xb9011adb, 0xc1011bd8, + 0xd1a9b4d0, 0xd7a9010a, 0xd5a90108, 0xf025012a, 0xfc35f115, 0x151efa45, + 0x490b4707, 0x7fab7407, 0xc99bf221, 0xf2252c0b, 0xba075103, 0x41034807, + 0xf001f405, 0x1047ab07, 0x1d0ba103, 0x2a473847, 0x16a93d0b, 0x4b471a42, + 0xf1412d0b, 0x3ea94d0b, 0x23a91a42, 0x40a91a18, 0x14a91a18, 0x93070148, + 0x902bc607, 0x45c2ce2b, 0x10d4a964, 0x02100701, 0x23140704, 0xa9430731, + 0xad0112d2, 0xab0110d1, 0x0724024f, 0x14d4a932, 0x12d3ad01, 0x021e0701, + 0x071407e4, 0x07312336, 0x16d2a943, 0x14d1ad01, 0x024fab01, 0xa9320724, + 0xad1a14d4, 0xea0116d3, 0x11ff67a4, 0x10d2a9f4, 0x014c0b01, 0x274fabf8, + 0x157027a0, 0x0ed2adf4, 0xff565e01, 0xbdfcd4c1, 0xbd011adb, 0x11011bd8, + 0x2ed3b9f1, 0x1cd0ad01, 0xe3f02101, 0xa920004d, 0xc5012cd2, 0xdeadb4d0, + 0xd9ad011e, 0xdcad0120, 0xd1ad0122, 0xd7ad010a, 0xd5ad0108, 0xd4c5012a, + 0x933123fc, 0x03e2bff0, 0x313532d2, 0x2ad2a9f4, 0x444d0301, 0x894d0b01, + 0x41210c43, 0xd3ad322b, 0x0499010c, 0x0e41d88a, 0x079003c1, 0x2b333341, + 0x07410843, 0x8df49313, 0x41c503e2, 0x993a1e3c, 0xd1d18a04, 0x41d80134, + 0x9003c10e, 0x33334107, 0x4108432b, 0xd4a91307, 0xd3a91a14, 0xd2a91a16, + 0x349b012a, 0xe25ef493, 0xc5322b03, 0xf4533c41, 0xd3adfd77, 0xd415010c, + 0x012cd4a9, 0x41030327, 0x012cd4ad, 0xf58ef143, 0x4c273127, 0x5a049d1f, + 0x9d58039d, 0xfe0b5903, 0x202730a7, 0x02d54027, 0x03bd1a78, 0x04ad1a04, + 0x03bd1a74, 0x03bd1a80, 0x02d50754, 0xfe0b1a7c, 0xfe0bfe0b, 0xf093fe0b, + 0x0b008d24, 0x65f393fe, 0x34b90444, 0x01c1012f, 0x2744c6ac, 0xb9241e21, + 0x24075434, 0x2027ff4c, 0x32d10c1e, 0x2c53076c, 0xf621830f, 0x3df49325, + 0x44b90444, 0x4fe61c0f, 0x30270124, 0x13d54227, 0x14d50128, 0x13d5011c, + 0x2fe60120, 0x4c2700d9, 0x3014d50f, 0x484c2701, 0x012014d5, 0xd5144c27, + 0x07012414, 0x344d0341, 0x27202701, 0x4205113c, 0xf3c84403, 0x40273227, + 0x013814bd, 0x013913bd, 0x013a13bd, 0x013b13bd, 0x43e2f493, 0x6c44d104, + 0x004dd807, 0x4e383e80, 0xbd020000, 0x1e013813, 0x004e380c, 0x41270100, + 0x013814bd, 0x43bef393, 0x6c34d104, 0x004ed807, 0xb9190100, 0xbd19fc34, + 0xb9013914, 0xbd19fd30, 0xb9013a10, 0xbd19fe33, 0x93013b13, 0x044397f3, + 0x012f34b9, 0x14d14886, 0x23070134, 0x14d541a3, 0x41070134, 0x1bf42d03, + 0x013c4d03, 0x20013627, 0x40052403, 0xf3a84403, 0x436af393, 0x3034b904, + 0xd1478601, 0xa9013414, 0xa91bf232, 0xa31bf033, 0x3414d542, 0x5413d501, + 0x5812d501, 0x45f39301, 0x34b90443, 0x49c61c0f, 0xd5114c27, 0x27017814, + 0x2814d548, 0x5c4c2701, 0x012c14d5, 0x1c0c34b9, 0x017c14bd, 0x1c0d30b9, + 0x017d10bd, 0x1c0e33b9, 0x017e13bd, 0xfc4efe0b, 0xc0072227, 0x0ea71327, + 0xbefe00fe, 0x27ffd6ff, 0x4004be01, 0x93402702, 0x0442f3fd, 0x202730a7, + 0x1d7dd49d, 0x7cd49dd4, 0x1a04d3bd, 0xbd7ad29d, 0x270754d3, 0x0dc39940, + 0x1a90d4d5, 0xd63cd28d, 0xdf0ea738, 0xefbeffff, 0x0e27003a, 0xbe027f80, + 0xd5ffa4c7, 0xa70750d0, 0xffffdf0e, 0x003ab6be, 0x157e0d07, 0x030d07fe, + 0x2701840d, 0x714c2730, 0x04030305, 0xf393f4c8, 0x27044314, 0x164c2720, + 0x34033205, 0xf393f4c8, 0x2704435c, 0x144c2720, 0x34033205, 0xfc93f4c8, + 0x27044274, 0xc48da84c, 0x930c0780, 0x02482df4, 0x03480d03, 0x0dbec415, + 0x0c070000, 0x8e800c03, 0x000000fc, 0x40270201, 0x3f2721e3, 0x7fffffff, + 0x02050315, 0x04b504a5, 0x04350425, 0x853804c5, 0x27049504, 0x1f3c2720, + 0x029d4027, 0x3d049d3c, 0x0c032103, 0x0bf3800c, 0xc11007fe, 0x30273802, + 0x1c034027, 0xfc04bd3c, 0xff03bd01, 0xf403d501, 0xf803d501, 0xfd03bd01, + 0xfe03bd01, 0x380c1e01, 0x3d402721, 0x0c1c0314, 0x22b62153, 0x02c50235, + 0x0b022538, 0xff4f27fe, 0x157fffff, 0x26139904, 0x433b4127, 0x14590485, + 0x4499410b, 0x34049d26, 0xfe4ea81e, 0xc1340499, 0x44473803, 0xe0274203, + 0x25c6051e, 0x2307e103, 0x31532183, 0xff1ef498, 0x4e871e07, 0x142b1433, + 0x300b3107, 0x349d4027, 0x3e329d3d, 0x313803c1, 0x3b412702, 0xab24eb4e, + 0x3c1c0334, 0x353803c5, 0x8e010b02, 0x07fe4efe, 0x87243321, 0x0b212b11, + 0x9d402720, 0x23993d24, 0xc111273c, 0xe1073804, 0x4eebe33b, 0x993804c5, + 0x04313c23, 0x41eb133b, 0xfe8e0435, 0x41d80401, 0xb003d113, 0x24343901, + 0x3d412743, 0xe3040134, 0x0b040541, 0x99fd4efe, 0xd0073404, 0x47380ec1, + 0x03010734, 0x272d0732, 0xd82a1e10, 0x24c120e1, 0x1a40ce40, 0x41870107, + 0x042b0433, 0x4d0b4007, 0xd43d4499, 0x0c031244, 0x8e0d0b3c, 0x03e153fd, + 0x0c2c0311, 0x93d5f3f0, 0x028983f0, 0xfd4efd8e, 0x07340499, 0x380ec1d0, + 0x01073447, 0x2d073203, 0x2a1e1027, 0xc120e1d8, 0x40ce4424, 0x8701071a, + 0x2b043341, 0x0b400704, 0x3d44994d, 0x031244d4, 0x0d0b3c0c, 0xe153fd8e, + 0x2c031103, 0xd5f3f00c, 0x893af093, 0x4efd8e02, 0x07d007fc, 0xfed47ec1, + 0x05361007, 0x891af193, 0x190d1e02, 0x27d33102, 0xab423b41, 0x27d33534, + 0x15145d41, 0x07d4811c, 0x8b412301, 0x8e14254c, 0x07f54efc, 0x630001d0, + 0x070183f3, 0x07920771, 0x2704e653, 0x02ff5e01, 0x41d82401, 0xa5203509, + 0x1ed095d0, 0x044d835f, 0x044d2401, 0x1e302701, 0x71d39137, 0xc8342b14, + 0xd2811531, 0x4c534207, 0x73420b1f, 0x1e34da41, 0x320bd3a1, 0x36e61a1e, + 0x3013d281, 0x4c534207, 0x73420b1f, 0xa1345241, 0x1e322bd3, 0x71d3a103, + 0x35430b74, 0x0e749994, 0x94014676, 0x830d42d8, 0x4c40284c, 0xa5717128, + 0x11d195d3, 0xff4fc4d4, 0x187fffff, 0x44d89401, 0x27415830, 0x0000004f, + 0x1ed41580, 0x15923124, 0x311e1ed2, 0x01433293, 0x104cfc94, 0xd4c10267, + 0x404cd830, 0x32d4b10c, 0xfc940143, 0x0255104c, 0x4cd89401, 0x93310ac1, + 0x9401d3b5, 0x0130d4c5, 0x45d40193, 0xa39111d3, 0x21d15541, 0x31d26592, + 0x30f1c591, 0xd175d405, 0x4307315c, 0x01044d83, 0x01044d44, 0x5a7e0d07, + 0x01965efd, 0x3d072d07, 0x1d074d07, 0x01b42d03, 0x01c43d03, 0x01d44d03, + 0x01e41d03, 0xf205dc31, 0xf425f315, 0x78d1f135, 0xc6660134, 0xc158b027, + 0x0d071b07, 0x53fdc87e, 0x76b103c1, 0x278a69c2, 0x27b80720, 0x75f26560, + 0xb5f2a5f2, 0xc15b1ef2, 0xbc2130f3, 0x1c07c30b, 0x71fdec7e, 0x0bf311f4, + 0xd8041934, 0x4c4426a1, 0x071c0720, 0xfe697e0d, 0xf401f161, 0x410b0219, + 0x8459421d, 0xf1651103, 0xa11146c2, 0xa53103f3, 0x71091ef3, 0x751103f1, + 0x19341df1, 0x3b312704, 0x3d412734, 0x03f2b104, 0xb523ab61, 0x03a153f2, + 0x078439b4, 0xa064ca0d, 0x87073027, 0x6027a707, 0xf355f345, 0xf395f385, + 0x81009d5e, 0x2aac897b, 0xb183b65b, 0x7471b686, 0x8130f1c1, 0x6c82c1d3, + 0xc40b411b, 0xc32b329b, 0x73914127, 0x438b463b, 0xb5664b06, 0x1c070d07, + 0x1efd547e, 0x070d0708, 0xfd947e1c, 0x4c440419, 0x071c0720, 0xfdd17e0d, + 0xf341f281, 0xb23bf421, 0x3bab420b, 0xf3452103, 0x0119f285, 0x291e411d, + 0x1c07b566, 0x1e7e0d07, 0x07081efd, 0x7e0d071c, 0xf291fd5e, 0xb23bf351, + 0xf4313bab, 0x0119f355, 0x411d420b, 0xf2952103, 0x31270419, 0x4227343b, + 0xf2b1043d, 0x23ab6103, 0xa203f2b5, 0x74998403, 0x11739912, 0x64ea430b, + 0xf261ff5b, 0xf441f3b1, 0xd2bdf151, 0xd32501fc, 0xd4d5f3a1, 0xd3bd01f4, + 0xf4710200, 0x01f8d1d5, 0x01fdd4bd, 0xd1bdf181, 0xf29101fe, 0x01ffd2bd, + 0xd4c1dc21, 0xa6c4cb38, 0x34d499c7, 0xb447a027, 0x0e1eb103, 0x1a07c158, + 0x4a7e0d07, 0x03c153fc, 0xf1bacea1, 0xf37e0d07, 0x990f46fb, 0x31270c54, + 0x30274486, 0x43034307, 0x9431043d, 0x01b0d0d5, 0x71710415, 0x01254027, + 0x549d9231, 0x01528526, 0x414c3894, 0x549d4127, 0x07920126, 0x044d8342, + 0x044dc401, 0x2c3c0d01, 0x38743180, 0x9d482742, 0x00192654, 0x210b509d, + 0x27d331d4, 0xb543eb01, 0x27031e54, 0x8ef34300, 0x101cd4f5, 0x33418712, + 0x0b142b14, 0x3e149910, 0x002744d6, 0x0c27fe0b, 0x4efe0b10, 0x93d007f8, + 0x00860ff0, 0x0030abbe, 0x9338d1c1, 0x008624f0, 0x00309fbe, 0xf093d121, + 0xbe00863d, 0x31003094, 0x56f093d1, 0x89be0086, 0xd1d10030, 0x14d601b0, + 0x031e10a7, 0xf0931119, 0xbe008665, 0xd1003074, 0xd601b0d1, 0x1e10a714, + 0x93111103, 0x008670f0, 0x00305fbe, 0x9334d199, 0x008684f0, 0x003053be, + 0x9334d499, 0x008698f0, 0xb103b447, 0x00384fbe, 0xcd07ad07, 0x8c279027, + 0x99211e6d, 0x45143dc4, 0x72a740f9, 0x39be0001, 0xd499003b, 0x0ccc0334, + 0x0c27942e, 0x3b2abe7c, 0x07910300, 0xdcb9ce08, 0x00387bbe, 0x8668f093, + 0x3812be00, 0x93c02700, 0x008671f8, 0x8668fb93, 0x991f1e00, 0x44a63da4, + 0xbe40a0c1, 0x99003af3, 0x080734d4, 0x0b07c40e, 0x0037ebbe, 0xac03c103, + 0xce00270c, 0x3dbedec9, 0xf0930038, 0xbe008641, 0xb9002fc8, 0x9301fcd1, + 0x008648f0, 0x002fbbbe, 0x0200d1b9, 0x865bf093, 0x2faebe00, 0xfdd1b900, + 0x6ef09301, 0xa1be0086, 0xd1b9002f, 0xf09301fe, 0xbe008681, 0xb9002f94, + 0x9301ffd1, 0x008694f0, 0x002f87be, 0x01f4d1d1, 0x86a7f093, 0x2f7abe00, + 0xf8d1d100, 0xc8f09301, 0x6dbe0086, 0xf093002f, 0xbe0086ed, 0xb9003770, + 0x0701fcd1, 0xf5f2930d, 0x0d030086, 0x53be01b4, 0xb9be003b, 0xf0930037, + 0xbe0086e9, 0xb9003750, 0x0701fed1, 0xd40d030d, 0xd1f29301, 0x33be0086, + 0xf80e003b, 0x0037979e, 0x1499fb4e, 0x23448618, 0x1ec02741, 0x53c10305, + 0x07439641, 0x20bc27e2, 0x0107e103, 0xbc2bd027, 0x1e0d149d, 0x242f9b40, + 0x2c534127, 0x25f49b1f, 0x070d1499, 0xab3d3b32, 0x0d149d43, 0x3d072886, + 0x3d033433, 0x310b0138, 0x0f1e2027, 0x9b244f9b, 0x4b5b25fc, 0x2103341d, + 0x04993103, 0xed24ca06, 0x0103d103, 0x27bffef0, 0x4efb8e00, 0x27c207f5, + 0x9d402700, 0xc06d0424, 0x2307f223, 0x34d67107, 0x0e1ec01d, 0x27243f9b, + 0x25f49b41, 0x1d1f3c53, 0xe6c419c3, 0x99023b4f, 0x242e6274, 0x041e3027, + 0x07283f9b, 0x23e32be2, 0x40ecf4e1, 0x3f9b02e8, 0x9b412724, 0x2f9b25f4, + 0x1f3c5328, 0x4e070e07, 0x03333347, 0x61274633, 0x632b040b, 0xdf072103, + 0x070b629b, 0x2710dc03, 0x9b311eb0, 0x4127242f, 0x5325f49b, 0x25f61f2c, + 0x9b243f9b, 0x3c5325f4, 0x1ed31d1f, 0x04c4990d, 0xc49d4103, 0x1d412704, + 0x0b4f07d4, 0x03421d4b, 0x99d103b1, 0xb2c2a902, 0x333e07cb, 0x0b4e4734, + 0x23320743, 0x87430b31, 0x07de0704, 0x33d3334e, 0x0b9f0746, 0xb00c03d4, + 0x07109c03, 0x0b070bbf, 0x0b530793, 0x27b30bd7, 0x1e102780, 0x19040126, + 0x23a60793, 0x0b042391, 0xcc36e6a4, 0xb41913a0, 0x483bc269, 0x24ab3887, + 0x3a253c0b, 0x8103c26d, 0x4507b123, 0x0baad399, 0xd2112341, 0x60ccd034, + 0xa9d39923, 0x430b4f07, 0x06104499, 0x0b4f0747, 0x69341934, 0x87483bc2, + 0x0b24ab38, 0x25c26d3c, 0x07810336, 0x333e074e, 0x0b363343, 0xb04c0343, + 0xbc23b407, 0x070707b0, 0x0bb70b1f, 0x03902704, 0x281e101c, 0x04014319, + 0x0403a607, 0x3766a40b, 0x0717a0cc, 0x19490b4f, 0x3bc26943, 0xab488738, + 0x254c0b23, 0x03c26d4a, 0x99910381, 0x4107aab2, 0x92ca490b, 0x333e07d0, + 0x0b4e4734, 0x23320743, 0x0bd10731, 0x07d30b43, 0x0304875f, 0x1d07105c, + 0x2bb00c03, 0x0baf0715, 0x03a30b07, 0x1eb80712, 0x19040126, 0x239607d3, + 0x0b0423d1, 0x8736e694, 0xc82c0b2b, 0xa4190f91, 0x4b3bc369, 0x292534ab, + 0xb103c36d, 0xf1f0a123, 0x2c61c8d9, 0x3e074e07, 0x43333633, 0x470b430b, + 0x0ba94399, 0x06541953, 0x0b4f0747, 0x69341934, 0x874b3bc2, 0x0b24ab3b, + 0x25c26d3c, 0x07b10336, 0x334e073e, 0x0b333346, 0x99370b34, 0x4e47aa3a, + 0x4e0be433, 0x04874a0b, 0x0c03df07, 0x10dc03b0, 0x070b1f07, 0x9307da0b, + 0x281e1a0b, 0xd3190401, 0xa103e607, 0x0403d103, 0x36e6e40b, 0x2c0b2b87, + 0x190fe1c8, 0x3bc36914, 0x2534ab4b, 0x03c36d2e, 0x991103b1, 0xa4caa994, + 0x2b6b07d4, 0x00875e68, 0x9b288f9b, 0x7459286f, 0x470bb607, 0x0b264499, + 0xb14beab8, 0x27dc0700, 0x1e9027a0, 0x36cbbe2a, 0x242f9b02, 0x2c534127, + 0x25f49b1f, 0xc399c469, 0x3b120704, 0x2ba12319, 0x0b41aba0, 0x9dc46d32, + 0xda1504c3, 0xd4039103, 0x87d398ce, 0x0bd803d8, 0x27a807dc, 0xbe2c1e90, + 0x9b023691, 0x4127242f, 0x9b1f2c53, 0xc46925f4, 0x0704c399, 0x031a3b12, + 0xab900b91, 0x05320b41, 0x9dc46dd9, 0xa10304c3, 0xabcad403, 0x5dcb3dd3, + 0x93c67dc8, 0x03d5e7f0, 0x9b3c02c1, 0x3f9b231f, 0x2b430722, 0x07400842, + 0x2b410732, 0x1141c843, 0x1b3c04c1, 0x1948c441, 0xffce60be, 0x151e0696, + 0xc1214f9b, 0x438bbc03, 0x091e4516, 0x071e0127, 0x031e0427, 0xf2030027, + 0x0000f58e, 0x0000007f, 0xffffff80, 0xf223f54e, 0xf255f145, 0xf4283f9b, + 0xb901cd38, 0xd6010004, 0x1ed30744, 0x29df9b0a, 0xd8f4d30b, 0x03bd01ba, + 0x0dbd01cc, 0x0d0301cd, 0x300701d0, 0x07ef0c03, 0x7f3ce3e0, 0x237fece3, + 0x1902bf0d, 0x803c0334, 0x27f93ec2, 0x07f95161, 0x272d3b26, 0x65910370, + 0x015c5ef2, 0x9b244f9b, 0x4c5325f6, 0xab433b1f, 0x193103a4, 0xcafe35e4, + 0x04b9eb34, 0x45160100, 0xf3253027, 0x4027231e, 0xf4253027, 0x4f9b141e, + 0x25f69b24, 0x4c53f521, 0xab433b1f, 0x03f52554, 0x19f23131, 0xe734ca24, + 0x07550399, 0x33e70747, 0x2be73343, 0x03f315e4, 0x9901d0ed, 0xe00b5604, + 0xf4758027, 0xdc00d85e, 0x502709a1, 0xf5051027, 0x4f9b151e, 0x054fab29, + 0x294f9bf4, 0x4f8bf211, 0x1407423b, 0xf3211fab, 0x270b31dc, 0x272027b0, + 0x1e3027c0, 0x294f9b77, 0xbfabb407, 0x07293f9b, 0x8bf5614b, 0x33450b4f, + 0x803c0347, 0x342b4d7b, 0x3c483f8b, 0xedf25380, 0x1e2301fe, 0x803f2c0d, + 0x53ffffff, 0x01fee3f4, 0x3bf57143, 0xab230735, 0x294f9b2f, 0xcfabc407, + 0x07293f9b, 0x8bf5614c, 0x33450b4f, 0x803c0347, 0x342b4d7b, 0x3c483f8b, + 0xb1f45380, 0x1e4301fe, 0x803f2c0d, 0x53ffffff, 0x01fea7f5, 0x3bf47153, + 0x013fab34, 0xff1d83f4, 0x834f6b0f, 0x330fff2d, 0x2114ab18, 0x332833f5, + 0x4c07143c, 0xbc3323ab, 0xab4f6b18, 0x5324ab1b, 0x15e10551, 0x25a153e2, + 0x038103f5, 0x19f231e8, 0x2484ea24, 0x103c27ff, 0x4cd0342b, 0x31270b10, + 0xe415071e, 0xe803e405, 0xf3a84027, 0xf9f07103, 0x410c1e03, 0x27a027fe, + 0x5ee70b30, 0xf351fea7, 0x031031c4, 0x2702480d, 0x1e4c2730, 0x04030305, + 0x0027f4c8, 0x0127031e, 0xf58ef203, 0xcf5bf04e, 0xfe2bdf3b, 0x0f07fc4e, + 0xffada4be, 0xfb4eff1e, 0xe0beb007, 0xd007ff22, 0xf0931007, 0xbe008139, + 0x46002978, 0x1ec027d7, 0x03d2010b, 0x296abec1, 0x07d40300, 0x2bf0931c, + 0xcbda0081, 0x1efb8eed, 0x4eff1eff, 0x074027f7, 0x6603b990, 0xa9046d01, + 0x4d010400, 0x12908d94, 0x92a9f6a3, 0x3ae0016c, 0x93a9042f, 0x35f0016a, + 0xd12703f1, 0x949d4027, 0x9a928d9c, 0xffffcea7, 0x75f293eb, 0xd01303e1, + 0x1027ce21, 0xb5ea938d, 0xc9f0932d, 0x019d03de, 0xc5412748, 0x32273024, + 0x23c54327, 0x8824c55c, 0xdeaef393, 0x27310503, 0x0c049d40, 0x21152105, + 0xc55821c5, 0x019d8421, 0x34019d20, 0x0717e2dc, 0x354227dc, 0x100c27d4, + 0x024f70be, 0xd4354027, 0x32d8d321, 0xb94027ed, 0x8d01b89c, 0xcff6f494, + 0x2027038b, 0x019f94b9, 0x019e93b9, 0x31834183, 0x331b3c33, 0x43ab1a4c, + 0x00704fa3, 0x42aba005, 0xffffeea7, 0xb9e405eb, 0xb9019993, 0xb9019a94, + 0x83019b92, 0x4c830f3c, 0xb948330f, 0xb9019c90, 0x3301909d, 0xb934ab34, + 0x83019891, 0x2c330f2c, 0x053ea30c, 0x0c83c000, 0xab4d070f, 0x100c3332, + 0x019192b9, 0x43231383, 0x1c3330ab, 0x33438314, 0x31ab1c4c, 0x34ab2323, + 0xab1e2c33, 0xd1e31532, 0xf8019894, 0xffff004e, 0x4a2702fe, 0x7d3b7227, + 0x749b7103, 0x022494d1, 0x533f7c03, 0xe144fc76, 0xb93d2702, 0x83470780, + 0x48333f4c, 0xeea734ab, 0xc5ebffff, 0xcfe65ce3, 0x94d102a8, 0x00270150, + 0x075a4389, 0x60bc03b4, 0xb4b9b30b, 0xb2b903e1, 0xb1b903e2, 0xb3b903e0, + 0x2c3303e3, 0xab483310, 0x3341ab42, 0x43ab183c, 0xb3b9e465, 0xb2b903e5, + 0xb1b903e6, 0xb4b903e4, 0x2c3303e7, 0xab383310, 0x3331ab32, 0x34ab184c, + 0xe045e375, 0x1027e045, 0xffff3ea7, 0x072627e8, 0x0b443341, 0x0340194b, + 0x39f01d11, 0x99f03d40, 0xf05d0440, 0x7d054099, 0x084099f0, 0x9904f09d, + 0xf09d0940, 0x0c409905, 0x9906f09d, 0xf09d0d40, 0x9d405907, 0x407908f0, + 0x9909f09d, 0xf09d0640, 0x0740990a, 0x990bf09d, 0xf09d0a40, 0x0b40990c, + 0x990df09d, 0xf09d0e40, 0x0f44990e, 0x010ff49d, 0x113405f4, 0x213015f0, + 0x313425f4, 0x033035f0, 0xf2f0103c, 0x031f078b, 0x2107101c, 0x7f8af393, + 0x01462700, 0x05340330, 0xa8240320, 0x07df07f4, 0x9fcea781, 0xdc03e8ff, + 0x01a62728, 0x3310278e, 0x60ec03e6, 0x0c27eb0b, 0x07210740, 0x83310741, + 0x83228726, 0x3c83214c, 0x0b327318, 0x0b430b42, 0x193d074e, 0x1d310b44, + 0xf0110334, 0xf4a1dcf0, 0xc4058403, 0xc415d411, 0xc325d321, 0x3534f0c1, + 0x38f2c1c0, 0xf4c1c245, 0xc1c4553c, 0xc06540f0, 0x7544f2c1, 0x48f4c1c2, + 0xf0c1c485, 0xc1c0954c, 0xc2a550f2, 0xb554f4c1, 0x58f0c1c4, 0xc130c0c5, + 0xc2c55cf2, 0x60f4c134, 0xc138c4c5, 0xc0c564f0, 0x40cc033c, 0xff75faf8, + 0xeea7a027, 0x27e8fdff, 0x330a07c6, 0xe00d0306, 0x190b0b01, 0x9d212704, + 0x1c2728f4, 0x0742073f, 0x73478332, 0x0b433333, 0x07400b43, 0x0b44193d, + 0x03341d32, 0xa1f12821, 0x05a103f0, 0x15d411e0, 0x25d321e4, 0x34f2c1e3, + 0xf4c1e235, 0xc1e44538, 0xe0553cf0, 0x6540f2c1, 0x44f4c1e2, 0xf0c1e475, + 0xc1e08548, 0xe2954cf2, 0xa550f4c1, 0x54f0c1e4, 0xf2c1e0b5, 0x30e2c558, + 0xc55cf4c1, 0xf0c134e4, 0x38e0c560, 0xc564f2c1, 0xec033ce2, 0x7afcf840, + 0xa7c027ff, 0xe8fc7fee, 0x06330c07, 0x03600d03, 0x02190b0b, 0x9d3f1c27, + 0x212728f2, 0x32074207, 0x33734783, 0x430b4333, 0x3d07400b, 0x320b4419, + 0x2103341d, 0xf0a1f128, 0xe005c103, 0xe415d411, 0xe325d321, 0x3534f2c1, + 0x38f4c1e2, 0xf0c1e445, 0xc1e0553c, 0xe26540f2, 0x7544f4c1, 0x48f0c1e4, + 0xf2c1e085, 0xc1e2954c, 0xe4a550f4, 0xb554f0c1, 0x58f2c1e0, 0xc130e2c5, + 0xe4c55cf4, 0x60f0c134, 0xc138e0c5, 0xe2c564f2, 0x40ec033c, 0xff7ac2e4, + 0x43334707, 0x2ea73027, 0x8dfeffff, 0x23d5ec94, 0xf39b0be0, 0x8ef6830e, + 0x27d027f7, 0xfc105e40, 0x5e393c27, 0x4827fd21, 0xd1fd035e, 0x99015094, + 0x14075c43, 0xc45c1c03, 0x2c270d32, 0xe832071a, 0xc01419f3, 0xc127f842, + 0x01002d27, 0xa9fc575e, 0x47016a93, 0x27d02722, 0xfbd45e41, 0xc007fc4e, + 0xf0931327, 0xbe007cd4, 0x110024f0, 0xe1f093c1, 0xe5be007c, 0xc1210024, + 0x7ce8f093, 0x24dabe00, 0x93c10100, 0x007ceff0, 0x0024cfbe, 0xf093c231, + 0x27007cf6, 0x24c2be10, 0x93c24100, 0x007ce9f0, 0xb5be1127, 0xc2510024, + 0x7cdcf093, 0xbe122700, 0x610024a8, 0xcff093c2, 0x1327007c, 0x00249bbe, + 0xf093c271, 0x27007cc2, 0x248ebe14, 0x93c28100, 0x007cb5f0, 0x81be1527, + 0xc2910024, 0x7ca8f093, 0xbe162700, 0xa1002474, 0x9bf093c2, 0x1727007c, + 0x002467be, 0xf093c2b1, 0x27007c8e, 0x245abe18, 0x30c2c100, 0x7c80f093, + 0xbe192700, 0xc100244c, 0xf09334c2, 0x27007c72, 0x243ebe1a, 0x38c2c100, + 0x7c64f093, 0xbe1b2700, 0xc1002430, 0xf0933cc2, 0x27007c56, 0x21be0c1c, + 0xc2c10024, 0x47f09340, 0x1c27007c, 0x2412be0d, 0x44c2c100, 0x7c38f093, + 0x0e1c2700, 0x002403be, 0xf04eff1e, 0xdf3bcf5b, 0xfc4efe2b, 0x98be0f07, + 0xfc0efffa, 0xff0bf00e, 0xcf5bf04e, 0xfe2bdf3b, 0x0f07fc4e, 0xfffedfbe, + 0xff1eff1e, 0xfe0bff1e, 0x27180c23, 0x27041041, 0x0b040740, 0x0c0c54fe, + 0x271d06d0, 0xc0fe0b06, 0xd023120c, 0xc01b120c, 0xd0f1140c, 0xc013140c, + 0xa70f150c, 0xd4fe0b00, 0x01d00c04, 0x0b042709, 0x0b0727fe, 0x0b0527fe, + 0x160c10fe, 0x4127c81e, 0x4e38403b, 0x27338000, 0xd8fe0b06, 0x0c7e004e, + 0x0b0527ec, 0x30fd4efe, 0xd0a7120c, 0x41270d1e, 0x4ed8403b, 0x09036dbc, + 0xce3ed027, 0xfd8e0d2b, 0x92434dd8, 0x3ed127e6, 0x8e0d2bc1, 0x3efe4efd, + 0x8e012385, 0xb9f54efe, 0x2301ea04, 0x27d007f9, 0xe74ae030, 0x9d46230e, + 0x4f6ba8d3, 0x42143027, 0x43073127, 0xdca94f6b, 0xd49d0212, 0x14d9b9a9, + 0x15dab902, 0x86ec0702, 0x27e15344, 0x4ad4b931, 0x3b230702, 0x0741232a, + 0x03120704, 0x23c40b41, 0x0b0e0b11, 0xa9c1231e, 0x0b0210de, 0x3bb007c2, + 0x7b1a5b39, 0x07ba5bca, 0x3ba4234e, 0x234123ca, 0x233e0b31, 0xa9e407c1, + 0x5b01eed2, 0x07e95b39, 0x3b9423ac, 0x53455329, 0x99afab05, 0xd38da8dc, + 0x9ed18d9c, 0x8da2de8d, 0xd48da0db, 0xa4d08da6, 0x8d98d28d, 0xc4e69ada, + 0xd48d4a47, 0x0740279a, 0xecd4bd0d, 0xe00d0302, 0x3c04c101, 0xff004efc, + 0x991025ff, 0x46e03504, 0x45e00e28, 0x4c270e1a, 0x4ad4ad30, 0xa8d4d101, + 0xbf48f802, 0xb03c2700, 0x23350499, 0xb9343b44, 0xad024ad4, 0xbd014cd3, + 0x3302d1d4, 0x4f83164c, 0x07000000, 0xffff3ea7, 0x0c4fa3e7, 0x05f08480, + 0xa8d3d134, 0x83c30702, 0x81cfe6c4, 0x011d2700, 0x3d029930, 0x833e0499, + 0x33438323, 0x83473325, 0x2742ab38, 0x27349621, 0xab328720, 0xa743ab41, + 0xe7ffffee, 0x9950e4c5, 0x02994603, 0x54019947, 0x83350499, 0x55009931, + 0x3c332183, 0x0e2c330f, 0xab1f1c83, 0x83143332, 0x43231f0c, 0x093331ab, + 0x30ab4383, 0xab104c33, 0x36e31534, 0x6540a7c7, 0xb9e455e4, 0xe00215d4, + 0xe00dba45, 0xc00daa46, 0xff1e1744, 0xe4654027, 0xe81ee455, 0x10011d27, + 0x3c27801e, 0xff425ec0, 0x5897f493, 0xe8d4d502, 0xa4d4a902, 0x004d8301, + 0xd146a680, 0x3c01c0d4, 0x9cd4d141, 0xc04c3801, 0xd4bd4027, 0xd3d102ec, + 0x402702a0, 0x0354d4bd, 0xa734f3c5, 0xfddfff4e, 0xd1b93027, 0x43c502ce, + 0x16d2b9c4, 0x50f3c502, 0x412724f6, 0xb950f4c5, 0xc101ead8, 0x825350fb, + 0xf8c58183, 0xc1b86644, 0xe1c344fe, 0x3538fec5, 0x9cd4d1fe, 0xd1deb902, + 0x5a4cc002, 0x5b4cf415, 0x4fe60d2f, 0xff1e0cc3, 0xfcc5c027, 0x1efc3538, + 0xb52127e1, 0x44fbc1f2, 0x0212d4a9, 0xfc318e07, 0x7b0f8c03, 0xd0dcbd4b, + 0xa9840b02, 0x730210d0, 0x38f2c184, 0xc578f8c5, 0x25263cf0, 0x81e38103, + 0xa978f8c5, 0xa901f2d9, 0xc101f4d5, 0x290734f3, 0x37668507, 0xfbc14307, + 0x03312750, 0x3b230741, 0x3b4b0b24, 0x13201334, 0x8b538b30, 0xf8dca929, + 0x44f0c101, 0x01f6d3a9, 0xf3c5e03b, 0x0b7c0748, 0x98d0d132, 0x077e0b02, + 0x88fcc565, 0x0b4cf3c5, 0x210de067, 0xe00bd601, 0xd011210d, 0x38fbc10b, + 0xfcb1b806, 0x0c41cfe6, 0x0c3dc2e0, 0xc148f2c1, 0x23034cf3, 0x23e33303, + 0xf2c533e3, 0x4cf3c548, 0x1c183027, 0xb931270c, 0x2701ddd4, 0xc52307b0, + 0x2f6b54fb, 0xc12744f6, 0xe054fcc5, 0x9a11020d, 0x030df40d, 0xe00ae311, + 0x0701820d, 0x830df40e, 0xe00a8a01, 0xee01020d, 0x210de00e, 0xc10e9701, + 0x402754f1, 0xd49d3207, 0xf4d49df5, 0x3486318b, 0x30274127, 0x21274f6b, + 0xf295f425, 0xc558f3c5, 0xf3c55cf3, 0x60f3c530, 0xc574f3c5, 0xf3c564f3, + 0x6cf3c568, 0xd1bdf421, 0x4fe602ed, 0xfbc10b7e, 0x29bff688, 0x07e25308, + 0xc14fab4e, 0xd4ad34fc, 0xcae60342, 0x4c073127, 0x0350fec1, 0x3b230741, + 0xc14e0b24, 0xf1c14cf0, 0x13343b48, 0x002fa320, 0x13ffff00, 0x003fa330, + 0x8bffff00, 0xc5128b02, 0x638b4cf0, 0x8b48f1c5, 0xe6f22173, 0xc102352f, + 0xd4b988f3, 0xb0270216, 0xfbc5f355, 0x48fcc170, 0xe12744f6, 0xa770fec5, + 0xffffffbe, 0x0d76b0b9, 0xdab94827, 0x790702ce, 0x0354d0bd, 0xd4bd9807, + 0x7d830355, 0x9d83fffe, 0xa4fcfffe, 0x00270acd, 0xa8d8b027, 0xff2ea724, + 0x4707ffff, 0x0d6e23a9, 0x43124f8b, 0x09074307, 0x0d7023a9, 0x0f8bb407, + 0x0312bfab, 0x0fab0307, 0xc170f1c1, 0x114770f2, 0x81a38107, 0xffff8dc3, + 0x4b8b4807, 0x31272103, 0x323bb407, 0x2123bf8b, 0xc584f1c5, 0xf2c57cfb, + 0xd2088b70, 0x43070c3b, 0xe4074fab, 0xfec5ef8b, 0x8b10077c, 0x80f1c51f, + 0x070c31d2, 0x070fab03, 0xc52f8b20, 0xf06d80f2, 0xf92df44d, 0xf001f70d, + 0x2d07f111, 0x3d033d07, 0x2d03034c, 0x3abe0348, 0x40270251, 0x0354d3b9, + 0x0352d4ad, 0x0350d4ad, 0x0210dba9, 0x0212dea9, 0x034cd9d1, 0x0a0a3ff6, + 0x0348d7d1, 0x01009d23, 0x01007d23, 0x6707a907, 0x9d03a153, 0x61530100, + 0x01007d03, 0x32e00127, 0x4e070dcc, 0xd1b94f8b, 0x402b0355, 0x4ac2413b, + 0x07240714, 0x52d4a93a, 0x03390b03, 0x52d4ad41, 0xf232ca03, 0x01009de0, + 0x4b070d9d, 0x402b4f8b, 0x46c2413b, 0x07240714, 0x50d4a936, 0x03370b03, + 0x50d4ad41, 0xf232ca03, 0x01007de0, 0xfbc10d72, 0x50d3a988, 0x52d2a903, + 0x07b50b03, 0x8b288b48, 0xadb02b43, 0xad0350d4, 0x3b0352d2, 0x74bae2b1, + 0x88f5c109, 0x5ae2513b, 0x3a070b96, 0x8127390b, 0x0961b3e2, 0x4307390b, + 0xa807492b, 0x45ca8103, 0x009d00f0, 0xc1fa5501, 0x031b4cf3, 0x06e2013b, + 0xf4c1093e, 0x07413b48, 0x0046e214, 0x0bb6070b, 0xe29127b7, 0x0b09290b, + 0x2b4b07b7, 0x03a90747, 0xf041ca91, 0x01007d00, 0xf4c1ca07, 0xa3f35184, + 0x8b4f0b41, 0xe84c8b34, 0x070af330, 0xe840e804, 0xc1a2070a, 0xf1c180f2, + 0x0baf8b7c, 0xfa100b23, 0xa90b33a2, 0x8b0350d4, 0xb541fa4f, 0xb830e80a, + 0xb4a2fa0a, 0xb041fa0a, 0x70f8c10a, 0x487b4a07, 0x73076207, 0x0352d4ad, + 0xf0c5687b, 0x4cf1c548, 0xfbc1787b, 0x87bfe650, 0x83f5b105, 0x835fe651, + 0xc0d4d105, 0xc4d3d101, 0xc8d2d101, 0x47444701, 0x65224733, 0x85f375f4, + 0x48d1b9f2, 0x33f2b102, 0x40f1c514, 0x0b4221e0, 0x077221f4, 0x3fe6f321, + 0xf8c10ece, 0xf4d39948, 0x6148f4c1, 0xc58103f9, 0x979b48f8, 0x7103433b, + 0x34071807, 0xd4992707, 0xc11153f5, 0xfc8148fe, 0x2153fa71, 0xb43bb107, + 0xa29bc29b, 0xd8b9e123, 0x930b02d0, 0xc10bab0b, 0xfec57123, 0xe65f6b48, + 0x2705645f, 0xfbc1103c, 0x07430768, 0x034b3b28, 0x5cfec121, 0x427b1407, + 0x4e3b187b, 0xd1d5327b, 0xd4d50308, 0xd3d5030c, 0xfb210310, 0xfec1b876, + 0x08d4d134, 0x0cd3d103, 0x10d2d103, 0x5b4e5b03, 0xd52e5b3e, 0xd50308d4, + 0xd5030cd3, 0xb10310d2, 0x064283f4, 0x08d4d148, 0x0cd3d103, 0x10d2d103, + 0x13401303, 0xd5201330, 0xd50308d4, 0xd5030cd3, 0xc10310d2, 0x0ff650f0, + 0xd4d1063d, 0xd3d101a8, 0xd2d101ac, 0x492b01b0, 0x2c2b3a2b, 0xd4d5f121, + 0xd3d502f0, 0xd2d502f4, 0xd0d502f8, 0xd0d502fc, 0xd0d50300, 0xd7ad0304, + 0xd6ad033e, 0x16c60340, 0x61037103, 0x36074707, 0x31534153, 0x0344d4ad, + 0x0346d3ad, 0xb978fec1, 0xad01ecd4, 0xe6033cde, 0xc5012744, 0xf6c158f0, + 0x74f1c13c, 0x730f6c03, 0x3a1ff664, 0xc1760706, 0x2fe658f2, 0xd4d10109, + 0xf3c1021c, 0x004ef860, 0x0dfdffff, 0x0dea3ff6, 0x0187d8b9, 0x01e01d27, + 0x80214d27, 0x01c0d2d1, 0x4ce32818, 0x102c3830, 0x41a347e3, 0x4a204cf8, + 0x3f42f80b, 0x90ad270b, 0x74f3c102, 0x07c73fe6, 0x0b0621f8, 0xa978fbc1, + 0x0301bed0, 0x78fbc5b1, 0x0778fec1, 0x38fcc147, 0x30074433, 0x037f1c03, + 0x4c5b7fac, 0xe1233433, 0x0318d4d5, 0x0324d3d5, 0xe37f1ce3, 0xb1537fac, + 0xfc78fec5, 0xd1084b22, 0xa70324d3, 0xfddfff4e, 0x01f043d5, 0x07c921fc, + 0xa09b179b, 0x031cd1d5, 0x0328dad5, 0xa7801c27, 0xf3c17f2c, 0xd1358638, + 0x53031cd4, 0x1cd4d541, 0x18d4d103, 0x78fcc103, 0x0324d3d1, 0x4107c49b, + 0xc40b4123, 0xfcc5b39b, 0x8b4b0b78, 0xb9c28b42, 0xd501ead3, 0xd50314dc, + 0xe00320d4, 0xc1082937, 0x0fe674f0, 0xd3d10802, 0x4ea701ac, 0xd1fddfff, + 0xd501a8d1, 0xa701b443, 0xfddfff3e, 0x34d54027, 0x31c50198, 0xff4ea7e8, + 0xf1c1fddf, 0xe6461574, 0xd1031e1f, 0xfc01c0d4, 0x07031642, 0xa7343337, + 0xfddfff4e, 0xd548f2c1, 0xc101b043, 0x42d54cf3, 0x43d5014c, 0xf4c10154, + 0x404ce040, 0x00270502, 0xfbc156e6, 0x71f86150, 0x7bfe81fc, 0x7bcb7b8b, + 0x75f865eb, 0xb1fe85fc, 0x651ff6f1, 0xe6f22104, 0xc103612f, 0x3ff650f3, + 0xf4c10335, 0x204c0440, 0x7e0c0c27, 0xd0c5f6c1, 0xa7fc61ac, 0xfddfff4e, + 0x4cd5fe71, 0xf0810108, 0x010c4ed5, 0x011040d5, 0x0249d9b9, 0x4ea7fe91, + 0xb1fddfff, 0x1fec83f0, 0x01004ed5, 0xd534f1c1, 0xd5010440, 0xb9016041, + 0xc1021dd3, 0xd1d150f4, 0x048702a8, 0xd2b93383, 0x4107021e, 0x41833a33, + 0x463303ab, 0xf8c12383, 0x3304ab44, 0xfbc10c2c, 0x3302ab54, 0xa4d3a983, + 0x4708ab01, 0x58fcc14b, 0x3f8b04ab, 0x30e80cab, 0x30270d60, 0x01001dfc, + 0xf1c10241, 0x33912360, 0x10ab0e1c, 0x19ab9733, 0x02c4d4a9, 0x0b7242e0, + 0xe506fe21, 0x00001fa3, 0x4ea70100, 0xc5fddfff, 0x3ea7b441, 0x27fdefff, + 0xb834d543, 0xb834c102, 0xa7fb48dc, 0xfdefff0e, 0xdcb804c1, 0xf908004d, + 0x01d51427, 0x01d502b8, 0x302702bc, 0x067003d5, 0xeb472ea7, 0x272305fd, + 0x0500004e, 0xf39b2415, 0xc001d50e, 0x7403d502, 0xd5432706, 0xa702c404, + 0xfdefff3e, 0xdcc434c1, 0xdea7fb48, 0xc1fdefff, 0x4ddcc4d4, 0x27f90800, + 0xc4ded5e4, 0x3f3ea702, 0x1027fdeb, 0x4f273105, 0x02050000, 0xf19b3415, + 0x0f2ea70e, 0x4c27fde5, 0x1524051c, 0x000f2721, 0x35a00000, 0xff3ea720, + 0x4103fde4, 0x31153405, 0xded53035, 0xd1d502e0, 0x43270648, 0x02e4d4d5, + 0xefff3ea7, 0xe434c1fd, 0xa7fb48dc, 0xfdefff0e, 0xdce404c1, 0xf908004d, + 0x01d51427, 0x3ea702e4, 0x27fdeb1f, 0x27320520, 0x8200004f, 0x9b341514, + 0x3ea70ef2, 0x27fde47f, 0x3405124c, 0x4f273215, 0xa0000000, 0x01d53435, + 0x02d502e8, 0x4327064c, 0x02ec04d5, 0xefff3ea7, 0xec34c1fd, 0xa7fb48dc, + 0xfdefff1e, 0xdcec14c1, 0xf908004d, 0x14d54427, 0x2ea702ec, 0x27fdeb17, + 0x27230530, 0xc200004f, 0x9b241514, 0x2ea70ef3, 0x27fde45f, 0x2405134c, + 0x4f272315, 0xa0000000, 0x24353327, 0x02f013d5, 0xefff3ea7, 0xf034c1fd, + 0xa7fb48dc, 0xfdefff0e, 0xdcf004c1, 0xf908004d, 0x01d51427, 0x01d502f0, + 0x202702f4, 0x06e802d5, 0xeb0f3ea7, 0x273205fd, 0x0300004f, 0x9b341511, + 0x3ea70ef2, 0x27fde42f, 0x34053a4c, 0x4f273215, 0xa0000000, 0x01d53435, + 0x02d502f8, 0x432706ec, 0x02fc04d5, 0xefff3ea7, 0xfc34c1fd, 0xa7fb48dc, + 0xfdefff3e, 0xdcfc34c1, 0xf908004d, 0x34d54427, 0x2ea702fc, 0x27fdeb07, + 0x27230530, 0x8300004f, 0x9b241511, 0x2ea70ef3, 0x27fde41f, 0x24053b4c, + 0x4f272315, 0xa0000000, 0x2435f903, 0xf5b1f58e, 0xdcd15183, 0xfc6501c0, + 0x01c4ded1, 0xd0d1fe75, 0xf08501c8, 0x27fa845e, 0xfced5e30, 0xdc5e4027, + 0x60f1c1f7, 0x1c339123, 0x001ea30e, 0x10ab0400, 0x19ab9733, 0xfdba3fe6, + 0x019cd4d1, 0xb1c04cf8, 0xc0d4d1fd, 0x001da301, 0xa3481880, 0x0200001e, + 0x9d104cf8, 0x001ea3fd, 0x955e0100, 0xc14427fd, 0x33276cf0, 0x482b382b, + 0xf281f161, 0x402bf871, 0x233b143b, 0xd1d5833b, 0xd8d50308, 0xd2d5030c, + 0x9f5e0310, 0x0ccc27fa, 0x927e0c07, 0xc5f821f3, 0x7007acd0, 0xfbb18886, + 0x0ad2b1e0, 0xfcc3b1f0, 0x0ab1b2e0, 0x0a7fb3e0, 0x0c27ff1e, 0xf36f7e0c, + 0xcc277007, 0xacd0c50c, 0x0249d9b9, 0x9200a127, 0xf491a027, 0x00cb41e0, + 0x00c744e0, 0xf8916027, 0xb9118cf4, 0x3b412700, 0x004ef848, 0x00ae0118, + 0xf091b127, 0xa5f32b7e, 0xa50fe6f0, 0x7e0c070a, 0x8007f361, 0x3134fcc1, + 0x30f2c1fe, 0x8c2b8a0b, 0x30270c07, 0x12478e2b, 0x2227071b, 0x5027f345, + 0xe027c027, 0x3027f491, 0x140f4c23, 0x0b312742, 0x0b4127b3, 0x07b20bb1, + 0x2b240714, 0x30f4c136, 0x300bb00b, 0x1b3b233b, 0x61664fc6, 0x7360a7f7, + 0xb1b0a771, 0x8031e0f3, 0x4b31d404, 0xfc71fe81, 0xa207f061, 0x4fe6f4a1, + 0x30270a75, 0xa7074027, 0xa83ba013, 0xbea7a10b, 0xd5fddfff, 0xd50108b0, + 0x21010cbc, 0x10bed5fc, 0x01cff601, 0x14bad5fc, 0x18b4d501, 0x1cb3d501, + 0xfbf25e01, 0x535eb027, 0x5e6127ff, 0x32e0ff3a, 0x33e00a4a, 0xff1e0980, + 0xfb71f681, 0x9c1ef761, 0xdd5ec007, 0x44f2c1fe, 0x08972ff6, 0x3fe6f321, + 0xd2d1084a, 0xded101b0, 0xd4d101bc, 0xd3d101a8, 0xd1d101ac, 0xd0d101b4, + 0xd7ad01b8, 0xd6ad033e, 0x71030340, 0xec2b6103, 0xb6072c2b, 0x192bc707, + 0x492b0a2b, 0xc1533a2b, 0xd4d5b153, 0xd3d502f0, 0xd2d502f4, 0xd1d502f8, + 0xd0d502fc, 0xded50300, 0xdcad0304, 0xdbad0344, 0xa95e0346, 0xbcd7a9f9, + 0xf9c55e01, 0x05e622e0, 0x058123e0, 0x0927ff1e, 0xe0faff5e, 0x6c02010d, + 0x810de403, 0x27f57a02, 0x10270f0c, 0xf1c5f095, 0x54f1c160, 0x32274127, + 0x07f4d49d, 0xf5d39d42, 0x3027418b, 0x31274486, 0x20273f6b, 0x3127f325, + 0xc558f2c5, 0xf2c55cf3, 0x74f2c530, 0xc564f2c5, 0xf2c568f3, 0xf56e5e6c, + 0x80010de0, 0x0dd402a5, 0xe04b8002, 0xbd11210d, 0x010de403, 0x27f52212, + 0xc1f4954a, 0x402754f1, 0xd49d3127, 0x9d4207f4, 0x418bf5d3, 0x44863027, + 0xb0273127, 0xc1273f6b, 0xfbc5f325, 0x5cfcc558, 0xc530fbc5, 0xfbc560fb, + 0x64fbc574, 0xc568fbc5, 0x195e6cfb, 0x210de0f5, 0x00025080, 0xe480220d, + 0xd480020d, 0xc54127f4, 0xfbc160f4, 0xbbbfe634, 0xacd3d100, 0x27112701, + 0xc5f19520, 0xf1c558f1, 0x74f1c55c, 0xdfff4ea7, 0xc51027fd, 0xf2c554f2, + 0x64f2c530, 0xc568f2c5, 0xf1256cf2, 0x01e043d5, 0x58f4cb5e, 0x4cf4c121, + 0xf4c54123, 0x2651f84c, 0x5e6123f4, 0xa0a7f421, 0xa7f6e35e, 0xf6ab5ea0, + 0x32e03100, 0xd7d103e5, 0x60270348, 0x055ea027, 0x72b1a9f6, 0x8b07070d, + 0x4244be0f, 0x74b1a900, 0x07b0070d, 0xbe0f8b09, 0xab004236, 0x5e0fabbf, + 0xe7eef51a, 0x4707fcb0, 0x4fab4253, 0x27f4865e, 0x5ef0b500, 0x4c27f349, + 0x4ad4ad50, 0xf1e75e01, 0xad904c27, 0x5e014ad4, 0x3127f1dd, 0x03f1185e, + 0xe3630373, 0x5e63e373, 0x0027f3d0, 0x1027c127, 0xf0c5fc95, 0x58fcc554, + 0xc55cfcc5, 0xfcc530f0, 0x64f0c574, 0xc568f0c5, 0xf1256cf0, 0x93f41f5e, + 0x024ce8f4, 0x02e8d4d5, 0x93f2705e, 0x024c76f4, 0x02e8d4d5, 0xe0f2645e, + 0x00e5b44c, 0x010e4de0, 0xcb5e00d8, 0xa8d4d1f2, 0x004df802, 0xa9037601, + 0xc101bed0, 0x470778fe, 0x0338f2c1, 0x074433e1, 0x03be0730, 0xac037f1c, + 0x23425b7f, 0xe33433e1, 0xace37f1c, 0xc5b1537f, 0xd4d578fe, 0xd3d50318, + 0x40270324, 0xdfff3ea7, 0xf034d5fd, 0xa8d2d101, 0x002df802, 0x03f83b01, + 0x07c00777, 0xe3c70397, 0x07c7e397, 0x230a0749, 0x333c0748, 0x33210703, + 0x9b382343, 0x33309b41, 0x332333a6, 0xc0ded116, 0x1cd2d501, 0x2cd1d503, + 0x30d4d503, 0x34dad503, 0x38d3d503, 0x28d0d503, 0xd8772303, 0xf0c130e2, + 0x38f1c178, 0x015bb703, 0x94330703, 0x07e3c433, 0x1d27b7e3, 0x2da71000, + 0xf0c50fff, 0x18d9d578, 0x24dcd503, 0xf7dc5e03, 0xb85e3027, 0x001d27f7, + 0xff2da710, 0xf7cc5e0f, 0xf4b54327, 0x27f2005e, 0x5ef3b532, 0x4807f1f9, + 0x83334533, 0x42f1482b, 0xff000190, 0x019841f1, 0x3ea7ff00, 0xd5fddfff, + 0x5e01b432, 0xfec1f7f3, 0x70efc674, 0x01acd1d1, 0x27f7e65e, 0xf5165ea0, + 0x1b7cf0c1, 0x27004c04, 0xaff19304, 0x0f9e006b, 0x14070016, 0x27f5385e, + 0xf5175e00, 0x0c5e3027, 0xc50027f5, 0xbb5e60f0, 0x0cbc27fd, 0xf1c1fb95, + 0x8b420754, 0x86302741, 0x27312744, 0x6b0127c0, 0xc5f3253f, 0xf0c558fc, + 0x30fcc55c, 0xc560f0c5, 0xf0c574fc, 0x68fcc564, 0x5e6cfcc5, 0xa027f288, + 0x07f4805e, 0x33453348, 0xf1482b83, 0x00019041, 0xf76d5eff, 0x0780f3c1, + 0x5e3a1b2a, 0x0499f4c7, 0x3b46c035, 0x272f45c0, 0xd4ad384c, 0xd4d1014a, + 0x48d802a8, 0xe03c271b, 0x27efdf5e, 0x5ef39532, 0x1c27fcf3, 0x95312710, + 0x60f3c5f1, 0x27fc945e, 0xc55ef03c, 0x604c27ef, 0x014ad4ad, 0x4c27d11e, + 0x4ad4adb0, 0x07c81e01, 0x074b07a7, 0x03a01336, 0x03401301, 0x033013e1, + 0x3ba03bc1, 0x813c3b4e, 0x61fc71fe, 0xfb805ef0, 0x0fe6f021, 0xf1c100b0, + 0x50f2c14c, 0xf1c51123, 0xc1f1614c, 0x127b4cf3, 0x3103139b, 0x994cf3c5, + 0x9707f4d3, 0xf4c1933b, 0x03f3714c, 0x7be70771, 0x50f8c132, 0xf2814103, + 0x4153e153, 0x23f5d099, 0x07287b41, 0x3b249bae, 0x07349ba0, 0xd0d8b9ce, + 0x2b912b02, 0x23c22ba3, 0xf4b35e71, 0xf1c124e6, 0xc11c3654, 0x312754f1, + 0x01210d04, 0x3c033027, 0x9542070d, 0x27418bf3, 0x27448630, 0x27402731, + 0x273f6bb1, 0xc5f325c2, 0xfbc558f4, 0x30fbc55c, 0xc560f4c5, 0xf4c574f4, + 0x68fcc564, 0x5e6cfbc5, 0x0427f15c, 0x69f1f193, 0x148c9e00, 0x954b2700, + 0xfe945ef4, 0xc150f3c1, 0xf4c16cf1, 0x07130b4c, 0x40f3c1e7, 0xfbc17103, + 0x03070768, 0x53015341, 0x5cfcc141, 0x342b3153, 0x2007eb3b, 0xc150f4c1, + 0xfa7150fb, 0xf9612c3b, 0x5b50fcc1, 0x4cf8c124, 0xf4c1ab7b, 0x7bfb8140, + 0x68f1c191, 0xbc7b482b, 0xb39b949b, 0xa39bec5b, 0x0c5b213b, 0x02d0d8b9, + 0xa20b9e0b, 0x7123b00b, 0x0734f3c1, 0x7b937bcb, 0x5ec37ba3, 0xdbadf3e9, + 0x8b5e0350, 0x52deadf2, 0xf2605e03, 0x335e0027, 0x48d7d1f2, 0x07a90703, + 0x53a15367, 0xf21e5e61, 0xc178f3c1, 0x470738fb, 0x01bed0a9, 0x44333103, + 0xb3074b5b, 0xf3c53123, 0x33300778, 0xd5b15334, 0xd50318d4, 0x5e0324d3, + 0xad27f50b, 0xc25e01e0, 0x3942d8f4, 0x0200ad27, 0xc1f4b85e, 0xd0a978f4, + 0x410301be, 0xc178f4c5, 0x470738fb, 0x4b5b4433, 0xc178fcc1, 0x300778fb, + 0x3433c123, 0xfcc5b153, 0x18d4d578, 0x24d3d503, 0xfc905e03, 0x0180ad27, + 0x21f4805e, 0xb9efe6fe, 0xf4d19900, 0x0750f2c1, 0xc1f06136, 0x313b48f8, + 0x027b6103, 0xc6071307, 0xd499f371, 0x53089bf5, 0xc58103c1, 0xbc0748f8, + 0x327be807, 0x8150f8c1, 0x27b43bf2, 0x7be153a1, 0x27ab2b28, 0x48fbc191, + 0x912b2e9b, 0xc1133e9b, 0x02d0d8b9, 0x900bb123, 0xc20ba30b, 0xfbc56123, + 0xf2f35e48, 0x2fe6f221, 0xf8c100e1, 0xf4d1994c, 0x034cf3c1, 0x4cf8c581, + 0x0807313b, 0x13070153, 0xd399fc61, 0x074607f5, 0x03b00726, 0x3b212341, + 0x532c9bb3, 0x71c12741, 0x23fe81f3, 0x27c02b41, 0x4cf0c191, 0x349ba127, + 0xab2b912b, 0xd8b94e9b, 0x012302d0, 0xa32b922b, 0xf0c5c42b, 0xf2975e4c, + 0xc168fcc1, 0xf0c140f3, 0xc1e60750, 0x3c3b6cf4, 0xfc61ec3b, 0x02d0d8b9, + 0x0b48fbc1, 0x07610340, 0x07c47b16, 0x5cf4c193, 0x985b1153, 0x8103cb9b, + 0xb103a307, 0x0748fbc5, 0x3ba85b21, 0xc1a43b24, 0xfbc148f4, 0xc1415340, + 0x205b50f3, 0xf4c5e05b, 0x68f0c18c, 0x8123f471, 0x203bb153, 0x437b135b, + 0xf381b85b, 0x2b50f0c1, 0x8cf1c1b1, 0x307ba22b, 0x2b48f2c1, 0x9b319b9e, + 0x0b212341, 0x0ba40b9c, 0xc56123b3, 0x195e48f2, 0x4cf2c1fe, 0xc140f1c1, + 0x122b50f3, 0xf2c52103, 0xc1e2074c, 0xf2c16cf4, 0x53f06140, 0x53430b21, + 0x07047be1, 0x5cf4c132, 0xf8c1b207, 0x2b3e2b68, 0xc1f961be, 0xfa7134fe, + 0x183b343b, 0x9e3b383b, 0xf2c1ae3b, 0x34f8c150, 0xfe81f471, 0x427b069b, + 0xe83b6103, 0xf8c1f281, 0x53c60750, 0x9b287bc1, 0xc14c9b2c, 0x910b4cfc, + 0xbe0ba30b, 0x02d0d8b9, 0x902bc123, 0xb22ba42b, 0xfcc56123, 0xfd9a5e4c, + 0x01f2d4a9, 0x00001ea3, 0x1f4cf810, 0x1ea3f484, 0x5e200000, 0xf0c1f47c, + 0x6cf4c150, 0x6164f2c1, 0x68f1c1f9, 0x120b400b, 0xf4c1947b, 0x64f1c548, + 0xf1c14103, 0x64f3c148, 0x9b48f4c5, 0x03240797, 0x5cf8c171, 0xf4c1fa71, + 0x3bfb8168, 0x07215313, 0x0b315337, 0x48fec148, 0xb07ba07b, 0xb39bc207, + 0xc43ba39b, 0x02d0d8b9, 0x910be123, 0xb20bac0b, 0xfec57123, 0xfd225e48, + 0x0187d8b9, 0x02901d27, 0x80224d27, 0xe6f2175e, 0xb900ba3f, 0x270187d8, + 0x2702001d, 0x5e80024d, 0xd4d1f204, 0xd3d101a8, 0xd2d101ac, 0xd1d101b0, + 0xd0d101b4, 0xded101b8, 0x192b01bc, 0xec2b0a2b, 0x3a2b492b, 0xd4d52c2b, + 0xd3d502f0, 0xd2d502f4, 0xd1d502f8, 0xd0d502fc, 0xded50300, 0xd7ad0304, + 0xd6ad033e, 0x755e0340, 0xead4b9f1, 0xb446e001, 0xc6fb2100, 0xd0a965bf, + 0xd3d10342, 0xd2d101b4, 0xd1d101b8, 0xd7ad01bc, 0xd6ad033e, 0x71030340, + 0x1c2b6103, 0xc607e707, 0x392b4027, 0xe1532a2b, 0x0153c153, 0x02f0d3d5, + 0x02f4d2d5, 0x02f8d1d5, 0x0304d4d5, 0x0344dead, 0x0346dcad, 0x0342d0ad, + 0x02fcd4d5, 0x0300d4d5, 0xb9f1135e, 0x270187d8, 0x2701801d, 0x5e80014d, + 0xd2d1f14c, 0xd1a901bc, 0xd4d10342, 0xd3d101b4, 0x2c2b01b8, 0xfc210707, + 0x492be607, 0x01533a2b, 0x1153e153, 0x02f0d4d5, 0x02f4d3d5, 0x02f8d2d5, + 0x033ed0ad, 0x0340dead, 0x0342d1ad, 0x02fcdcd5, 0x0300dcd5, 0x0304dcd5, + 0x21f0bb5e, 0xf84fe6f4, 0x42d0a900, 0xa8d3d103, 0xacd2d101, 0xb0d1d101, + 0xff4c5e01, 0x4027a027, 0xbc5e3027, 0x49d9b9fa, 0x71fe8102, 0x27f061fc, + 0x27402730, 0xf6305ea0, 0x01c0d4d1, 0x42fc3127, 0xf1c1f4e1, 0x33912360, + 0x10ab0e1c, 0x19ab9733, 0x61f4e75e, 0x81fc71f0, 0x49d9b9fe, 0x13001302, + 0x27e013c0, 0x27402730, 0xf5fc5ea0, 0xf271f161, 0xdfff4ea7, 0x811013fd, + 0x49d9b9f3, 0xd5201302, 0xd5010841, 0x13010c42, 0x1043d530, 0xf1ee5e01, + 0xbe7e0c07, 0x34f8c1e8, 0x800b8a1b, 0xce7e0c07, 0x075007e8, 0xe8ef7e0c, + 0x3134fcc1, 0x2b5a0bfe, 0x075e2b5c, 0x31e01bec, 0x30f2c1f0, 0x0c07802b, + 0x071b1247, 0x2027ce07, 0x495ef545, 0x074b07f5, 0x13fb4136, 0x3b301340, + 0x0b3b3b45, 0x5e3a0b42, 0xa207f57e, 0xfc71f061, 0xa013fe81, 0xc0130013, + 0x7013e013, 0x6013b013, 0x2a071013, 0xa9f5575e, 0xd10342d1, 0xd101a8d4, + 0xd101acd3, 0x2101b0d2, 0x070707f8, 0x2b492be6, 0x532c2b3a, 0x53e15301, + 0xf0d4d511, 0xf4d3d502, 0xf8d2d502, 0x3ed0ad02, 0x40dead03, 0x42d1ad03, + 0xfcd8d503, 0x00d8d502, 0x04d8d503, 0xef765e03, 0xb007fb4e, 0xf0931427, + 0xbe006497, 0x11000b8c, 0xa4f093b1, 0x81be0064, 0xb121000b, 0x64abf093, + 0x0b76be00, 0x93b10100, 0x0064b2f0, 0x000b6bbe, 0xf093b231, 0x270064b9, + 0x0b5ebe10, 0x03db0700, 0x31c127d4, 0x931c07d2, 0x0064a4f0, 0x49bec103, + 0xd403000b, 0xec0fccc4, 0xfb0e0b07, 0x4ee7675e, 0x260499fc, 0x4cc0d107, + 0x34071aff, 0x43333533, 0x34f1342b, 0xff00018c, 0x00004ea3, 0x8c34f504, + 0x07ff0001, 0x334d072d, 0x0b253347, 0x0c2e2324, 0x1c27fff7, 0x01420712, + 0x07440303, 0x233c01e1, 0x034c0511, 0x98440334, 0xff3ea7fe, 0x4d27fddf, + 0x34d50800, 0x31d50208, 0x4ea70208, 0x11fd4fff, 0x07001143, 0x6823c542, + 0x27744c03, 0x03020138, 0x03420504, 0xa7f3a844, 0xfdefff3e, 0xd8e434c1, + 0x0ffc6a4d, 0x43272307, 0x23c1f4e8, 0x6a3ddce4, 0x3ea7f5fc, 0xc1fdefff, + 0x4dd8ec34, 0x070ffc6a, 0xe8432723, 0xec23c1f4, 0xfc6a3ddc, 0xfd4227f5, + 0x0008e8d4, 0xff2ea7ff, 0x4127ffff, 0x063824bd, 0x270f2399, 0x0ef49b40, + 0x33874127, 0xb04034f5, 0xfc8eff02, 0x02b9fa4e, 0x0ea90186, 0x04a901f2, + 0xc20702d4, 0xc483a007, 0xe5530447, 0x02bcabd1, 0x01f4a3a9, 0x4307c906, + 0x44474653, 0x14c24223, 0xa7302765, 0xfddfff4e, 0x020843d5, 0x02eda0b9, + 0x4ea70e76, 0xc5fddfff, 0xfa8ee440, 0xd553d307, 0x42234d47, 0xea7928d8, + 0x0700ab41, 0x9b315330, 0xa743073e, 0xfde46f2e, 0x24054b0b, 0xde9b2e15, + 0x2c35bd0b, 0xe44f4ea7, 0x053b0bfd, 0x274e1543, 0xb94c3533, 0xa702eda0, + 0xfddfff4e, 0x020843d5, 0x8eb00fc6, 0x9821fcfa, 0x07202700, 0x9b2b0b40, + 0x6f3ea74e, 0x420bfde4, 0x3e153405, 0x0e9b0103, 0x31351027, 0xe44f4ea7, + 0x05200bfd, 0x274e1542, 0xa7413533, 0xfddfff4e, 0x020843d5, 0x07ff6f5e, + 0x0b2e9b20, 0x3941c22b, 0xe46f4ea7, 0x154205fd, 0x9b01034e, 0x3520270e, + 0xa70b0b42, 0xfde44f4e, 0x4e154005, 0x42353327, 0xdfff4ea7, 0x0843d5fd, + 0xff3a5e02, 0xdfff4ea7, 0x084cd5fd, 0xff2e5e02, 0xff1f41ee, 0xe46f3ea7, + 0x153205fd, 0x3540273e, 0xa7212734, 0xfddfff4e, 0x020842d5, 0x07ff0f5e, + 0x9b255323, 0xff655e2e, 0xcf5bf04e, 0xfe2bdf3b, 0x0f07fc4e, 0xffe54dbe, + 0xf00efc0e, 0xf04eff0b, 0xdf3bcf5b, 0xfc4efe2b, 0x75be0f07, 0xff1efffd, + 0x181e2103, 0x14190319, 0x11030103, 0x230d34ce, 0x19112301, 0x2b141900, + 0x30fe0b04, 0x0b0027f2, 0x07fe4efe, 0x0740ab41, 0x0f43d830, 0x1e01151e, + 0x3e052423, 0x34031403, 0x4207071e, 0x41034253, 0x2586f458, 0x11031419, + 0x3103341d, 0xfe8ef2a8, 0xe007fd4e, 0xd02903dc, 0x31072624, 0x43073f6b, + 0x43ab4833, 0xe4073207, 0x32533423, 0xab10ec33, 0x073103e4, 0x234e0540, + 0xb8440324, 0x03e407f3, 0x1e402721, 0x07311d03, 0x03340b3e, 0x8ef2a841, + 0x000000fd, 0x04110321, 0x04014342, 0x411d430b, 0x41030421, 0xfe0b0425, + 0x00000030, 0xf2e3f54e, 0x5f079307, 0xb0273f07, 0x3a037027, 0x82074027, + 0x5c036027, 0x95fb850c, 0x05f3a5f7, 0x25f115f0, 0x01c85ef4, 0x1c40b7b6, + 0x3e0f0725, 0x01ba5eb8, 0x40276807, 0x61237027, 0xf485b127, 0xa95ef795, + 0x301c2301, 0x4f6b4107, 0xd4301c03, 0x7536184a, 0x27301c24, 0x47f38531, + 0x0b733347, 0x301c2374, 0x855e710b, 0x6c1ce001, 0x1cd40180, 0x1ce0206d, + 0x54010663, 0x1ce0641c, 0xe4015a25, 0x01632d1c, 0x1cc0261e, 0x1ce42964, + 0x1e015869, 0x731ce022, 0x1c3400f6, 0x701ce474, 0x131e0149, 0x0f751cc0, + 0x3e781ce4, 0x27081e01, 0x5ef49541, 0x9001013c, 0xc4641c00, 0xcc0a691c, + 0x00130b00, 0x071eb127, 0x2b751cc4, 0xd007b027, 0x0d07a027, 0x6cbe1a27, + 0x00f90035, 0x00017468, 0x4a0b4507, 0x1a27401d, 0x5ebe0d07, 0xd0070035, + 0x07e6a103, 0xa027dd1e, 0x4c834007, 0xf935070f, 0x01747444, 0x1d3a0b00, + 0x03045334, 0x270176a1, 0x91c707b0, 0x2bca2bf3, 0x813a76cb, 0x6647a6f4, + 0x270f07b7, 0xc57e2d1c, 0x1eb027fe, 0x96f3810e, 0x071d0734, 0xfeb67e0f, + 0xdc27041e, 0x07c12320, 0xbdf3534c, 0x014103fe, 0xe241cc31, 0x0f07b546, + 0x7e2d1c27, 0xda07fe98, 0xd50bd123, 0xd139061e, 0xa1fe8b7e, 0x07d123f4, + 0xf3d4ce0f, 0x061edc07, 0x23fe7b7e, 0x270f07d1, 0xd1cc201c, 0x01591ef4, + 0x03c90791, 0x7e0f07c4, 0x9c07fe64, 0x9d01611e, 0xb02774d6, 0x0d070b1e, + 0x000089be, 0xb02bb707, 0x34e6f391, 0x457e171e, 0x07b123fe, 0x0741034b, + 0x201c270f, 0x1ef041cc, 0xfe327e04, 0x0f07d419, 0xd1031407, 0xdb0742b6, + 0x217e061e, 0x07d123fe, 0x201c270f, 0x03f4d1cc, 0x07141e94, 0xfe0e7e0f, + 0x61190d1e, 0x057e6103, 0xc20f07fe, 0xb027f568, 0x81198103, 0xfe361ff6, + 0x10270f07, 0x21fdef7e, 0x23f2c3f0, 0xa3f58e01, 0x15f305f0, 0x63fe4ef4, + 0x033f07f0, 0x7ef30538, 0xf043fdec, 0xf083fe0e, 0x3007fe0b, 0x01030419, + 0x032b4396, 0xfb4efe0b, 0xeea7f063, 0x05fd4fff, 0x07c007f2, 0x01b307d1, + 0x123f9be4, 0x44334103, 0xab38e2c1, 0x1023ce34, 0xffe30ea7, 0x0ab8beff, + 0xe8101e00, 0xa7061ef3, 0xffffe32e, 0x36272401, 0xf1294276, 0x1303d409, + 0x12732407, 0x03fc4d10, 0x0107ff1e, 0xc4090103, 0x322b3407, 0x03fc4d10, + 0x310cff1e, 0x03fc3d03, 0x87ec30da, 0x104c0342, 0x4d0bf301, 0x21034305, + 0x03fc2d04, 0x01072027, 0x01033b07, 0x3401111e, 0x14052103, 0x2d103403, + 0x2d2303fc, 0x128703fc, 0x0b101c03, 0x0df0301d, 0xe30ea7d2, 0x0401ffff, + 0x18be44c6, 0x4027000a, 0x270ef49b, 0xff4ea731, 0xf043fd4f, 0xfb8e43a5, + 0xf005f063, 0x20073107, 0xe0001f27, 0x0f271007, 0x1007d000, 0x2f5ef043, + 0x05f063ff, 0x073107f0, 0x001f2720, 0x271007c0, 0x07b0000f, 0x5ef04310, + 0x0409ff16, 0xf40df063, 0x30070449, 0xf201f42d, 0x0f273803, 0x10079000, + 0xa0001f27, 0xf0431007, 0x4efef55e, 0x07a007fa, 0xbeb10701, 0x07fffede, + 0x29fc9330, 0x35030342, 0x0c072307, 0x07da4d27, 0x24231b07, 0x050c0c03, + 0x15ca25c4, 0xfc13bec3, 0x3e0c07ff, 0x4eff1eae, 0x81f493f7, 0x4389042d, + 0x0a428908, 0x322b8007, 0x300c7107, 0x03fc3d03, 0x002734d6, 0x4287f78e, + 0xd0124ce9, 0x93071007, 0xac07c303, 0x9123b207, 0xb103a273, 0x4de9c323, + 0x1007d010, 0x270ca9d2, 0x41f19308, 0x843e005e, 0x8c2da907, 0x84298d0d, + 0x0bb9dd24, 0x89484ce4, 0x24141e00, 0xc40bbadd, 0x1e7e284c, 0xbbdd000a, + 0xbcddc40b, 0x8329730b, 0x370b2707, 0x2ce33123, 0x7f3ce37f, 0x2c032419, + 0xf923c280, 0x2a07a7c6, 0xbd103707, 0xbd2303fc, 0x4b8703fc, 0xd01044f1, + 0xb1031007, 0x34033405, 0xbd10f238, 0xbd2303fc, 0xf39303fc, 0x8d042cd8, + 0x3f270a3b, 0x1007e000, 0x80093b2d, 0x0bb90dc4, 0x2774410e, 0x0e4ee301, + 0x744501fc, 0x0d40f78e, 0x06270bbc, 0x5dc5f193, 0xfef17e00, 0xf78e0127, + 0xf1930627, 0x7e005df6, 0x831efee3, 0x14290329, 0x03fc3d10, 0x4d10ff1e, + 0xff1e03fc, 0x042b0307, 0x0d03000c, 0xfe0b03fc, 0x90004f27, 0x44291007, + 0x34070f6b, 0x03fc4d10, 0x03fc3d23, 0xb0004f27, 0x44291007, 0x2c5ef293, + 0x07230d04, 0xfc4d1034, 0xfc3d2303, 0x004f2703, 0x291007d0, 0x10234d44, + 0x2303fc4d, 0x8d03fc4d, 0x0ba60824, 0xa0004f27, 0x44291007, 0x4d103407, + 0x3d2303fc, 0x4f2703fc, 0x1007c000, 0x232d4429, 0x4d103407, 0x3d2303fc, + 0x4f2703fc, 0x1007e000, 0x236d4429, 0x03fc4d10, 0x03fc4d23, 0x0b0a248d, + 0x93f84efe, 0x042bf7f4, 0x42294309, 0x322b9007, 0x3d03300c, 0x34d603fc, + 0xf88e0027, 0x4de94287, 0x10079012, 0xd303a307, 0xc207bd07, 0xb273a123, + 0xd323c103, 0x901048e9, 0xbad21007, 0x9308270d, 0x005cbbf1, 0x07fdfe7e, + 0x159805ba, 0xc5dc509d, 0xf1930827, 0x7e005d2f, 0xb806fdeb, 0x08030907, + 0xcd103b07, 0xcd2303fc, 0x4c8703fc, 0x901044f1, 0xc1031007, 0x04030405, + 0xcd10f338, 0xcd2303fc, 0xf39303fc, 0x2d042b78, 0x003f273c, 0x271007a0, + 0x8e3c2d01, 0x93f74ef8, 0x042b63f4, 0x42694349, 0x322b9007, 0x300c7107, + 0x03fc3d03, 0x002734d6, 0x4287f78e, 0xb0124ce9, 0xa3071007, 0x8c07c303, + 0xa123b207, 0xb1038273, 0x4de9c323, 0x1007b010, 0x270d8ad2, 0x25f19308, + 0x687e005c, 0x2d8a07fd, 0x299d0d9c, 0xb9dd2494, 0x484cc40b, 0x24141e74, + 0xc40bbadd, 0x1e6a284c, 0xbbdd000a, 0xbcddc40b, 0x94295f0b, 0x27f94c50, + 0x93f19308, 0x347e005c, 0x079029fd, 0x23070b37, 0x7f3ce301, 0x197f0ce3, + 0x803c0334, 0xc6f930c2, 0x07170787, 0xfcbd1038, 0xfcbd2303, 0xf14b8703, + 0x07b01044, 0x05b10310, 0x38140314, 0xfcbd10f3, 0xfcbd2303, 0xadf39303, + 0x3b6d042a, 0xc0003f27, 0x01271007, 0xf78e3b2d, 0xf1930627, 0x7e005c54, + 0x971efcdb, 0x4fff2ea7, 0x9b2401fd, 0x4103123f, 0x22c14433, 0x2734ab38, + 0x27320e00, 0xe3fe0b01, 0x15f205f0, 0x4ef425f3, 0xff3ea7fa, 0x34a9ffff, + 0xf0630d6c, 0xa107d007, 0x00ad4fe6, 0x00a940fa, 0x0d6834d1, 0x00a14fe6, + 0x07e6bb3e, 0xa7122f9b, 0xfd4fff4e, 0x1ea74301, 0x33ffffe7, 0xd6140134, + 0xab38a343, 0x1e130532, 0xe70ea70a, 0x3fbeffff, 0xcf270006, 0x10100000, + 0xa744cbc1, 0xffffff4e, 0x0d6840d1, 0x4fff4ea7, 0x074401fd, 0x0b37333b, + 0x304c0303, 0x4f9b041d, 0x34ddf912, 0x03000176, 0x043d304c, 0x4c273f07, + 0x7d0d5d20, 0x183c0304, 0x2a070403, 0x057b1c27, 0xf8eabef3, 0xa6d007ff, + 0x48c4c107, 0x41033b07, 0xc148c4c5, 0x310348c4, 0x0fff3d10, 0xc3c53027, + 0x44c4c144, 0xffe70ea7, 0x05a9beff, 0x27031e00, 0x430d07d0, 0xc3fa0ef0, + 0x4efe0bf0, 0x073401fa, 0x07b107c3, 0xff4fc4a2, 0x27ffffff, 0x2d271007, + 0x02270601, 0x01a43d27, 0xfefa45be, 0x00ccd007, 0x060d2710, 0xfa38be01, + 0xedf493fe, 0x40050344, 0xc101cd05, 0xffff1fc0, 0x071dffff, 0x273a072b, + 0xfa1cbe05, 0x1000ccfe, 0x01060d27, 0xfefa11be, 0x44c6f493, 0x8e400503, + 0xbefe4efa, 0x270007b6, 0x07f0002f, 0xe33d2710, 0x07051e04, 0x01f4e843, + 0xf842c424, 0xbd9efe0e, 0xfb4e0007, 0xfb9bb027, 0x00cf270e, 0x271007f0, + 0x27c30531, 0x0ef49b40, 0x4fff4ea7, 0x3e43a5fd, 0x05c031c1, 0x4efb8ecb, + 0x9bc027fb, 0xbf270efc, 0x1007f000, 0xb3053127, 0xf49b4027, 0xff4ea70e, + 0x43a5fd4f, 0xbc059c3e, 0xfe4efb8e, 0xffe70ea7, 0x04c3beff, 0x27302700, + 0x07f0004f, 0x8e430510, 0x7efe4efe, 0x07e6fe30, 0xa7122f9b, 0xfd4fff4e, + 0x1ea74301, 0x33ffffe7, 0xd6140134, 0xab38a343, 0x8e130532, 0xe70ea7fe, + 0xfe0effff, 0x0004b19e, 0xf105f123, 0xf325f215, 0xfb4ef435, 0x7fff4ea7, + 0x634491d0, 0xf8b007f0, 0x008b104c, 0xe57efdab, 0x9b07e6fd, 0x4ea7122f, + 0x01fd4fff, 0xe71ea743, 0x3433ffff, 0x43d61401, 0x32ab38a3, 0x0a1e1305, + 0xffe70ea7, 0x0468beff, 0xff4ea700, 0x4401fd4f, 0xf000cf27, 0x4c031007, + 0x203c2730, 0x9d0cc49d, 0x4f9b0dc3, 0x0fc39d12, 0x07304c03, 0x143c033f, + 0x1d272b07, 0xc49d03f0, 0x100f270e, 0x051007f0, 0xf722bef3, 0x154127ff, + 0x0c0f27c4, 0xbe1007f0, 0x03fff932, 0x7ec02501, 0x0ea7feff, 0xbeffffe7, + 0xeb0003eb, 0x0ef043fd, 0x0bf103fb, 0x27f84efe, 0x1000004f, 0xc14a0110, + 0x49c14048, 0x484cc144, 0xdc07ca2a, 0xdc07051e, 0xbea7d123, 0xd1ffffff, + 0x2b0d68b4, 0x934556da, 0x0059a0f0, 0xd1ff237e, 0x930d68b1, 0x0059baf0, + 0xc4ff177e, 0x2233568f, 0x9dd45711, 0x26520fff, 0x072907de, 0x9318073c, + 0x0059c0f0, 0x9b074a07, 0x07fef77e, 0x1eca07bd, 0x2cd1be1f, 0x6894d100, + 0x3320070d, 0x19240b27, 0x07458624, 0xccf0931c, 0xd57e0059, 0x23c103fe, + 0x270c07b1, 0xc40fff1d, 0xffffffbf, 0xda0bd4ff, 0x00004f27, 0x4d051010, + 0x4ea7f88e, 0xd1ffffff, 0xc60d6844, 0x004f2747, 0x01101000, 0x01440341, + 0x01440342, 0x01440343, 0x92f09344, 0x915e0059, 0x4efe0bfe, 0x634207f5, + 0x074013f5, 0x076107a2, 0x07524780, 0xc5702791, 0x351e50f4, 0xd103b309, + 0xfff816be, 0xb203c00b, 0x1c270c07, 0x8cf29350, 0xad0e0059, 0x27e6d9ce, + 0x07c41d40, 0x82f09317, 0x2f070059, 0xc1fe4b7e, 0x7a0b50f4, 0x850b940b, + 0x070967c2, 0x07d027b8, 0x43ce1ecf, 0x4ef58ef5, 0x236207f5, 0x077107f5, + 0x13500792, 0x27a10760, 0x19301e80, 0xbed103b3, 0x0bfff7bf, 0x07b103c0, + 0x501c270c, 0x5943f293, 0xce9d0e00, 0x4027e6da, 0xc41d1807, 0x592bf093, + 0x7e2f0700, 0x890bfdf4, 0x78c2a60b, 0x0bb8070b, 0x07d027b5, 0x03d11ecf, + 0x4ef58ef5, 0x07b007f9, 0x07a207d1, 0x7efcab93, 0x07e6fbd4, 0xa7122f9b, + 0xfd4fff4e, 0x1ea74301, 0x33ffffe7, 0xd6140134, 0xab38a343, 0x1e130532, + 0xe70ea70a, 0x57beffff, 0x4f270002, 0x1007f000, 0x43153227, 0x4d453a03, + 0x4a9d4325, 0x15499d14, 0xff7e4b35, 0xa7d007fc, 0xffffe70e, 0x00020ebe, + 0xd5c6fceb, 0x0d272b07, 0x1d070202, 0xfef6c9be, 0xf98e0d07, 0xc007fb4e, + 0xfdabb107, 0xe6fb677e, 0x122f9b07, 0x4fff4ea7, 0xa74301fd, 0xffffe71e, + 0x14013433, 0x38a343d6, 0x130532ab, 0x0ea70a1e, 0xbeffffe7, 0x270001ea, + 0x07f0003f, 0x15432710, 0x35482734, 0x4534253c, 0xfc987e3b, 0x0ea7c007, + 0xbeffffe7, 0xeb0001a7, 0x8e0c07fd, 0x07fc4efb, 0xab0d66d0, 0xfb0e7efc, + 0x2f9b07e6, 0xff4ea712, 0x4301fd4f, 0xffe71ea7, 0x013433ff, 0xa343d614, + 0x0532ab38, 0xa70a1e13, 0xffffe70e, 0x000191be, 0xf0004f27, 0x34271007, + 0x43254315, 0x687e4d35, 0xe70ea7fc, 0x54beffff, 0xfceb0001, 0xfc4efc8e, + 0xd107f123, 0xf193c007, 0x07005802, 0x102c270f, 0xfff3c8be, 0xfd93d4f6, + 0x070068c3, 0xf664be0d, 0x01f393ff, 0x2007033b, 0x07da4d27, 0x0c03e307, + 0x15340514, 0x033c2530, 0x0cec0321, 0x43273f07, 0x34033101, 0xe403e105, + 0x3459f4a8, 0x1d073309, 0x3aedf093, 0x0de45d03, 0xf37fbee3, 0xc5f093ff, + 0x17be033a, 0xff1efff7, 0x4ea7fc4e, 0xb9ffffff, 0x070d4444, 0xe6c107d0, + 0x9ff09345, 0x1d070057, 0x3dbe2c07, 0x0d07fffc, 0xc9be1c07, 0x0596fffe, + 0xf1930227, 0x5e0057a6, 0xfc8eff66, 0x8ea7f84e, 0xb9ffffff, 0x070d4484, + 0x07b10790, 0x66d307a2, 0x96f09346, 0x19070057, 0x3a072b07, 0x01be4d07, + 0xcd07fffc, 0xc227d214, 0x1b070907, 0x3c072a07, 0xfffe12be, 0x0d4484b9, + 0x45a6d007, 0x579ef093, 0xbe1d0700, 0x76fffbdc, 0x930227d5, 0x0057a6f1, + 0x4127121e, 0x41234c3b, 0x45864d8b, 0xf1930127, 0x5e0057a1, 0xa796fefa, + 0x0000df50, 0x4d072000, 0x4fd04b0b, 0x70000001, 0x93012723, 0x0057a9f1, + 0xdf50e21e, 0x70000000, 0x4b0b4d07, 0x00014f50, 0x0127f000, 0x57bff193, + 0x07c91e00, 0x27f88e0d, 0x595e0c3c, 0x054027ff, 0x27fe0b04, 0x0ef49b40, + 0xfe0b0405, 0x3f9b0201, 0xff4ea712, 0x4401fd4f, 0x44330027, 0x43ab48a3, + 0x0127420e, 0xfa4efe0b, 0x3f9bc007, 0xff4ea712, 0x4d01fd4f, 0xd433a407, + 0xd3abd8a3, 0xf4e8031e, 0x4627cb01, 0x37beb356, 0xc401002a, 0x44963027, + 0xf39bcd05, 0x38abc50e, 0xd4cec401, 0x27fa8ee4, 0xff4ea730, 0x43d5feff, + 0xfe0b0138, 0x07124f9b, 0x33348724, 0xf1232b25, 0x01001421, 0x103f9bff, + 0x310b4103, 0x45331487, 0x001423f5, 0x412bff01, 0x4fff3ea7, 0xf13311fd, + 0x01000044, 0x2b1207ff, 0x2023f534, 0x23ff0100, 0xfefff41e, 0xff682e23, + 0x014727fe, 0x05140313, 0xa8240323, 0xa7fe0bf4, 0xfd4fff4e, 0xffff3ea7, + 0x914181fe, 0x2832d144, 0x3030d101, 0x33133301, 0x1b211b43, 0x3034d504, + 0x2432d501, 0x2831d501, 0x2c30d501, 0x0bfe0b01, 0x93fe0bfe, 0x033b63f4, + 0xfe0b4075, 0x45334007, 0x402b0087, 0x000c41f5, 0x41f5ff01, 0x00045aa8, + 0x4007fe0b, 0x00874533, 0x41f5402b, 0xff010010, 0x5aac41f5, 0xfe0b0004, + 0x05334087, 0x0e23042b, 0x0bfeff68, 0x27fc4efe, 0x2c078ccc, 0xfff31ea7, + 0xedf093fe, 0x4abe0339, 0x2c07fff1, 0xff671ea7, 0x69f093fe, 0x3abe033a, + 0xf093fff1, 0xa7033aec, 0xfefedb1e, 0x0e102c27, 0xf1279efc, 0x93fe4eff, + 0x0339bbf4, 0x4ff64419, 0xf49300a2, 0x070339b4, 0x8b2c0324, 0x2ce33407, + 0x7f3ce37f, 0x3c033419, 0xf932c280, 0x399af393, 0x27202703, 0x3205234c, + 0xf4c83403, 0x3a16f493, 0x03240703, 0x34078b2c, 0xe37f2ce3, 0x34197f3c, + 0xc2803c03, 0x3c27f932, 0xf9f29323, 0x10270339, 0x21054307, 0x24033123, + 0xf493f4b8, 0x35033a74, 0x15430543, 0x27432543, 0x75f39320, 0x4a27033a, + 0x34033205, 0x3027f4c8, 0x40272527, 0x5b3834f5, 0x34f50004, 0x00045aa8, + 0x5aac34f5, 0x34f50004, 0x00045b34, 0x001c3c03, 0x933127f2, 0x033917f4, + 0xf193431d, 0x270339a0, 0x0ea78c2c, 0xbefeff67, 0x93fff069, 0x033903f1, + 0xa78c2c27, 0xfefff30e, 0xfff058be, 0x3a0af193, 0x102c2703, 0xfedb0ea7, + 0xf047befe, 0x5efe0eff, 0x4ea7fe6f, 0x11fd4fff, 0xff4ea743, 0x43d5feff, + 0xfe0b0134, 0xffff3ea7, 0xff4ea7fe, 0x4111fd4f, 0x013834d1, 0x013432d1, + 0x422b410b, 0x013834d5, 0x4f9bfe0b, 0x33340712, 0x2b448735, 0xff4ea734, + 0x4211fd4f, 0x002434f1, 0x422bff01, 0x002434f5, 0xfe0bff01, 0x07124f9b, + 0x87253324, 0xa7242b44, 0xfd4fff4e, 0x23f14411, 0xff010024, 0x24f5430b, + 0xff010024, 0xf293fe0b, 0xa7033990, 0xfeff673e, 0x31014727, 0x21053403, + 0xf4a82403, 0xffff4ea7, 0x3844d1fe, 0x71f39301, 0x34950339, 0x32014a27, + 0x02053403, 0xf4a80403, 0x3ea7fe0b, 0x9dffffff, 0x41270d30, 0x063a34bd, + 0x270f3399, 0x0ef49b40, 0x33874127, 0xb04034f5, 0xff1eff02, 0xc007fc4e, + 0x00275dbe, 0x4fff1ea7, 0x01c319fd, 0x3b412712, 0x1d34eb42, 0x9b4027c3, + 0x14c50ef4, 0x4efc8e38, 0x07c007fb, 0x270ebeb1, 0x27c21900, 0x1d2bab40, + 0xe6c43dc2, 0x9b402705, 0x3ea70ef4, 0xc5fd4fff, 0x40273834, 0xa70ef49b, + 0xffffff4e, 0xa70e4399, 0xfd4fbf1e, 0x3138328b, 0x14054127, 0x14033153, + 0xfb8e32d6, 0xdf9bfd4e, 0xf14d8712, 0x0178104e, 0xf843f100, 0x2700045b, + 0x2e07801c, 0x230b132b, 0x01030419, 0x2103241d, 0xf1984486, 0x21232e2b, + 0x3d874207, 0x34f54f6b, 0x00045bf8, 0xf123fd8e, 0xf215f105, 0xf435f325, + 0xf063fe4e, 0x10072f07, 0x0d272803, 0xf2050107, 0xfef0f5be, 0xfe0ef043, + 0xfe0bf103, 0x87124f9b, 0x03240744, 0x045bf82f, 0x1041f100, 0x01000178, + 0x0b302724, 0x27431d41, 0xaaf09340, 0x24050052, 0xfff76f9e, 0xf0a3f54e, + 0x9107f005, 0xa407f315, 0x87124f9b, 0x03340744, 0x045bf83f, 0x1045f100, + 0x01000178, 0x07728736, 0x01231e83, 0xbec103b3, 0x0bfff0e7, 0x11b403d0, + 0x0b0507f4, 0x0c1c270d, 0xc4cef201, 0x0b8d05e7, 0x23923e97, 0x07a546a1, + 0x27d607b9, 0x83e11ec0, 0x9bf58ef0, 0x4487124f, 0x70804f03, 0x43010003, + 0x03350145, 0xfe0b4005, 0xf063fa4e, 0x87121f9b, 0x804df141, 0x93000370, + 0x005352f0, 0xfff6ebbe, 0xdb012e1e, 0x1b07da11, 0xc6be0a07, 0xdc410024, + 0x4007de21, 0x2b071c07, 0xf0933a07, 0x05005379, 0xf6c6befe, 0x254027ff, + 0x15d405d4, 0x31dd31d4, 0xcf4fd6d4, 0xfa8ef043, 0xe107fc4e, 0xcf9b4307, + 0xd9f39312, 0xcdf90053, 0xff010d44, 0x011721c8, 0x2b100732, 0x033e072d, + 0x5af093d1, 0xcf7e0053, 0x1edf6bfe, 0x23320115, 0x07df6bd1, 0x072d2b10, + 0x53f0933e, 0xb77e0053, 0x44cdfdfe, 0x8eff010d, 0x07fc4efc, 0x9b4307e1, + 0xf39312cf, 0xf9005390, 0x010d44cd, 0x1821c8ff, 0x10073201, 0x3e072d2b, + 0xf093d103, 0xbe005330, 0x6bfff640, 0x01161edf, 0x6bd12332, 0x2b1007df, + 0x933e072d, 0x005309f0, 0xfff627be, 0x0d44cdfd, 0xfc8eff01, 0xf205f0e3, + 0xf425f315, 0xf063fa4e, 0x2107a007, 0x8712cf9b, 0x104bf14c, 0x07000178, + 0x183c033f, 0x077f1c27, 0xbef3050b, 0x93ffed98, 0x005323f4, 0x0d44c3f9, + 0x4201ff01, 0x232b1a07, 0x52d4f093, 0x7e3b0700, 0xf043fe1e, 0xf0c3fa0e, + 0xf0e3fe0b, 0xf315f205, 0xfa4ef425, 0xa007f063, 0xcf9b2107, 0xf14c8712, + 0x0178104b, 0x033f0700, 0x1c27183c, 0x050b077f, 0xed4abef3, 0xd5f493ff, + 0xc3f90052, 0xff010d44, 0x1a074201, 0xf093232b, 0x07005286, 0xf58abe3b, + 0x0ef043ff, 0x0bf0c3fa, 0x124f9bfe, 0x24074487, 0x5bf82f03, 0x41f10004, + 0x00017810, 0x30272401, 0x431d410b, 0xf0934027, 0x05005095, 0xfda05e24, + 0x27124f9b, 0xf5448730, 0x045bf843, 0x23fe0b00, 0x15f105f1, 0x35f325f2, + 0x63fa4ef4, 0x9b2007f0, 0x4487124f, 0x4af1b407, 0x00017810, 0x5bf8bf03, + 0xbc010004, 0x3f070a07, 0x2b7f1c27, 0x183c031c, 0xf3050c0b, 0xffecb7be, + 0xf043c00b, 0xbc050a07, 0xf103fa0e, 0x1007fe0b, 0x51fbf093, 0x07b11e00, + 0xf9f09310, 0xa81e0051, 0x87124f9b, 0x03240744, 0x045bf82f, 0xf1230100, + 0x01781044, 0x1d430b00, 0x03240140, 0x0b240541, 0x07fc4efe, 0x122f9b30, + 0x51faf493, 0x87410100, 0x4424f9c2, 0xf1ff010d, 0x017810c0, 0x93411b00, + 0x0051a7f2, 0xbe7f1c27, 0xf5ffee4f, 0x045bf8c0, 0x4efc8e00, 0x073007fa, + 0x122f9ba1, 0x51c6f493, 0x87410100, 0x4424f9c2, 0xf1ff010d, 0x017810c0, + 0x93411b00, 0x005173f2, 0xbe7f1c27, 0x07ffee1b, 0xf8cf03b0, 0x0700045b, + 0x7ecb050a, 0xcd7efc70, 0x8ecb05fc, 0x124f9bfa, 0x24074487, 0x5bf82f03, + 0x23010004, 0x781044f1, 0x430b0001, 0x1d203c27, 0x03240143, 0x0b240541, + 0x07fd4efe, 0x9b3107d0, 0x4487124f, 0x5bf842f1, 0x04070004, 0xe407322b, + 0x0f033103, 0x00017810, 0x15d6120a, 0x091e3127, 0x420b0401, 0x21034d1d, + 0xe2f5f3a8, 0x00045bf8, 0xf84efd8e, 0xd107b007, 0x4f9b8207, 0x07448712, + 0x03a40794, 0x0178109f, 0xf8af0300, 0x1e00045b, 0x19ac0117, 0x079401b3, + 0x0b3f4b0c, 0xed79be04, 0x05c00bff, 0x23b103ac, 0x071727d1, 0xffdfc428, + 0xdeffffff, 0xf84ef88e, 0xd107b007, 0x4f9b8207, 0x07448712, 0x03a40794, + 0x0178109f, 0xf8af0300, 0x1e00045b, 0x01ac0115, 0x07b31994, 0xbe040b0c, + 0x0bffed37, 0x03ac05c0, 0x27d123b1, 0xc4280717, 0xffffffdf, 0xf88ee0ff, + 0xb007f94e, 0x4f9bd107, 0x07448712, 0x03a40794, 0x0178109f, 0xf8af0300, + 0x1e00045b, 0x09ac0117, 0x079401b3, 0x0b3f8b0c, 0xecf5be04, 0x05c00bff, + 0x23b203ac, 0x931627d1, 0x005046f2, 0xffffdfc4, 0x8edbffff, 0x07f94ef9, + 0x9bd107b0, 0x4487124f, 0xa4079407, 0x78109f03, 0xaf030001, 0x00045bf8, + 0xac01151e, 0xb3099401, 0x040b0c07, 0xffecb2be, 0xac05c00b, 0xd123b203, + 0xf2931527, 0xc4005008, 0xffffffdf, 0xf98eddff, 0xb007f94e, 0x4f9bd107, + 0x07448712, 0x03a40794, 0x0178109f, 0xf8af0300, 0x1e00045b, 0x01ac0115, + 0x07b30194, 0xbe040b0c, 0x0bffec6f, 0x03ac05c0, 0x27d123b4, 0xf2930c1c, + 0xc4004fbf, 0xffffffdf, 0xf98edcff, 0xb007f94e, 0x4f9bd107, 0x07448712, + 0x03a40794, 0x0178109f, 0xf8af0300, 0x1e00045b, 0x01ac0115, 0x07b30194, + 0xbe040b0c, 0x0bffec2b, 0x03ac05c0, 0x27d123b4, 0x87f2931a, 0xdfc4004f, + 0xffffffff, 0x4ef98edd, 0x079007f6, 0x9bb207c1, 0x4487124f, 0x3f033407, + 0x00045bf8, 0x781046f1, 0x37010001, 0x301e8307, 0xcb07cb02, 0xa027d707, + 0x43190b1e, 0xe0bea103, 0xd00bffeb, 0x06074907, 0x0d0b4a0b, 0xf2931427, + 0xce004f40, 0x8d05e5ca, 0xbc2b9c0b, 0xd6fa877e, 0xf68ecfbf, 0x8007f64e, + 0xa207b107, 0x87124f9b, 0x03340744, 0x045bf83f, 0x1046f100, 0x01000178, + 0x1e73073c, 0x07ba0232, 0x27d807ba, 0x090d1e90, 0xbe9103d3, 0x0bffeb8b, + 0x07d203c0, 0x270c0b06, 0xe1f29316, 0xb9ce004e, 0x054b47e7, 0x2b840b7c, + 0xfa327eab, 0xafd6c027, 0x4ef68ecd, 0x078007f6, 0x9ba207b1, 0x4487124f, + 0x3f033407, 0x00045bf8, 0x781046f1, 0x3c010001, 0x321e7307, 0xba07ba02, + 0x9027d807, 0xd3010d1e, 0x34be9103, 0xc00bffeb, 0x0607d403, 0x1a270c0b, + 0x4e90f293, 0xe7b9ce00, 0x7c054b87, 0xab2b840b, 0x27f9db7e, 0xcdafd6c0, + 0xf54ef68e, 0xf005f063, 0x5207a107, 0xb4076307, 0x87124f9b, 0x03340744, + 0x045bf83f, 0x1047f100, 0x01000178, 0x1e930738, 0x03431923, 0xeae1bed1, + 0x07c00bff, 0x0b07074a, 0x270c0b4d, 0xcef20118, 0x9c05e8d6, 0x8d7ea50b, + 0x06b123f9, 0x27c807b5, 0x43e11ed0, 0x4ef58ef0, 0x05f0a3f5, 0x159107f0, + 0x9ba407f3, 0x4487124f, 0x3f033407, 0x00045bf8, 0x781045f1, 0x36010001, + 0x83077247, 0xb309231e, 0x8cbec103, 0xd00bffea, 0xf411b203, 0x0d0b0507, + 0xf2011827, 0x05e8c4ce, 0x7e970b8d, 0xa123f938, 0xb907a546, 0xc027d607, + 0xf083e11e, 0x0499f58e, 0x0c03990d, 0x44c62307, 0x041e3407, 0x070e0399, + 0x0b412343, 0x04449940, 0x960e0099, 0x28321b45, 0x0b030730, 0x0b030bfe, + 0x27fb4efe, 0x9dc007b0, 0xc19d0c0b, 0x9d21070e, 0x10270d0b, 0xc1be0403, + 0xcb1dffe7, 0xcb5dcb3d, 0xcb3dc203, 0xfc4efb8e, 0xcc27d007, 0xbe0d07fb, + 0x4c00776a, 0xe84c0700, 0x8ef31ef4, 0x07fc4efc, 0xfbcc27d0, 0x53be0d07, + 0x004c0077, 0xf4e84c07, 0xfc8ef31e, 0x15361f6b, 0x4d7ef093, 0x87fe0b00, + 0x2c40f140, 0x86000186, 0x93143404, 0x005c3ef0, 0x4187fe0b, 0x4c23400b, + 0x0b400110, 0x93fd4efe, 0x004d63f0, 0xfff00bbe, 0xdd83dea7, 0x031d07fd, + 0xfde0001e, 0x2107d301, 0xf093d403, 0x53004d69, 0xefeebe12, 0xa0dfc4ff, + 0xe2ff0222, 0xf74efd8e, 0x0af10087, 0x00018648, 0x862c0bf1, 0xc1070001, + 0x4d5bf093, 0x071a0700, 0xbe802772, 0x27ffefc4, 0x011c1e90, 0x039103cd, + 0x01d666c4, 0x4ef093b2, 0x1a07004d, 0xa9be3d07, 0x8d0bffef, 0x97ceb403, + 0x071a07e3, 0x45f09328, 0xf70e004d, 0xffef939e, 0x2a99fa4e, 0x07f12308, + 0x863187d2, 0x2c33f1ac, 0x86000186, 0x93a43434, 0x005b92f3, 0x4a870a1e, + 0x4c23430b, 0x99430110, 0xdc4909de, 0x4187db69, 0xfc15fe05, 0x42f1fb25, + 0x00018648, 0x1007dd01, 0xf0934a07, 0x35004d13, 0xef46befd, 0x99221eff, + 0x2c690924, 0x32f1de49, 0x00018648, 0xf3931007, 0x93004d68, 0x004d2ef0, + 0xfc15fe05, 0xffef23be, 0xfa8ef103, 0xcea7fc4e, 0x01f7ffff, 0x59f093c1, + 0x0dbe004d, 0xc121ffef, 0x4d6cf093, 0xef02be00, 0x48c1c1ff, 0x4d7ef093, + 0xeef6be00, 0x44c1c1ff, 0x4d90f093, 0xeeeabe00, 0xffcea7ff, 0xc181efff, + 0x4d9ef093, 0xeedabe00, 0x93c1a1ff, 0x004db1f0, 0xffeecfbe, 0xffffcea7, + 0x93c121eb, 0x004dbff0, 0xffeebfbe, 0x9364c1c1, 0x004dd1f0, 0xffffcea7, + 0xeeaebee7, 0x93c101ff, 0x004ddff0, 0xffeea3be, 0x9350c1c1, 0x004df1f0, + 0xffee97be, 0xf093c121, 0xbe004e04, 0xc1ffee8c, 0xf09354c1, 0xbe004e16, + 0xc1ffee80, 0xf09358c1, 0xbe004e28, 0xc1ffee74, 0xf0935cc1, 0xbe004e3a, + 0xa7ffee68, 0xfbffffce, 0x0628c1d1, 0x4e46f093, 0xee56be00, 0x30c1d1ff, + 0x60f09301, 0x49be004e, 0xc1d1ffee, 0xf0930208, 0xbe004e7a, 0xd1ffee3c, + 0x930420c1, 0x004e94f0, 0xffee2fbe, 0x0468c1d1, 0x4eaef093, 0xffcea700, + 0x1dbefeff, 0xc1d1ffee, 0xc2d10148, 0xf0930148, 0x87004ebf, 0x1c2f0322, + 0xbe000186, 0xb9ffee04, 0x930140c1, 0x004ecbf0, 0xffedf7be, 0x9309c199, + 0x004edbf0, 0xffedebbe, 0x0d99c1b9, 0x4eeaf093, 0xeddebe00, 0xdcc1d1ff, + 0xf9f0930b, 0xd1be004e, 0xc1d1ffed, 0xf0930be0, 0xbe004f08, 0xd1ffedc4, + 0x930be4c1, 0x004f17f0, 0xffedb7be, 0x0144c1a9, 0x4f26f093, 0xedaabe00, + 0x42c1a9ff, 0x41f09301, 0x9dbe004f, 0x4ea7ffed, 0xd1fdefff, 0x930f0041, + 0x004f52f0, 0xffed8bbe, 0x000318be, 0xa7fd707e, 0xfd4fff4e, 0x42114c01, + 0xf0931c07, 0xbe004f55, 0x07ffed70, 0xa710270c, 0xfef2b32e, 0x07fdd37e, + 0xa711270c, 0xfef2a72e, 0x07fdc77e, 0xa713270c, 0xfef29b2e, 0x07fdbb7e, + 0xa714270c, 0xfef2832e, 0x07fdaf7e, 0xa715270c, 0xfef2772e, 0xa15efc0e, + 0xa7fa4efd, 0xfd4fffce, 0x236cc1c1, 0x30f093f1, 0x1dbe004f, 0x00beffed, + 0x10070004, 0x4f48f093, 0xed0ebe00, 0xffdea7ff, 0xd199ffff, 0x5ef09311, + 0xfdbe004f, 0xcb01ffec, 0x1b07c211, 0x4f76f093, 0xeceebe00, 0x270b07ff, + 0xc72ea716, 0x517efff2, 0xfb0ea7fd, 0x0a19ffff, 0xfffe4ea7, 0x190103ff, + 0x030b1942, 0x19010341, 0x030c1943, 0x19010341, 0x1944190e, 0x6bf093d1, + 0xfe35004f, 0xfb15fa05, 0xadbefc25, 0xd199ffec, 0x9af0930f, 0xa1be004f, + 0xd199ffec, 0xb5f09310, 0x95be004f, 0xd2d1ffec, 0xd3d10638, 0xd1d1063c, + 0xf0930634, 0xbe004fc7, 0xd1ffec80, 0x930620d1, 0x004fedf0, 0xffec73be, + 0x0628d1d1, 0x5007f093, 0xec66be00, 0x2cd1d1ff, 0x21f09306, 0x59be0050, + 0xd199ffec, 0x3cf09327, 0x4dbe0050, 0xd199ffec, 0x57f09326, 0x41be0050, + 0xd1d1ffec, 0xf0930a34, 0xbe005071, 0xa9ffec34, 0x930102d1, 0x00508bf0, + 0xbe0f1c83, 0xb9ffec24, 0x930108d1, 0x0050a2f0, 0xffec17be, 0x0109d1b9, + 0x50bcf093, 0xec0abe00, 0x0ad1a9ff, 0xd6f09301, 0xfdbe0050, 0xf093ffeb, + 0xbe0050f4, 0x99ffebf4, 0xf0930cd1, 0xbe0050f9, 0x99ffebe8, 0xf0932ad1, + 0xbe005114, 0x99ffebdc, 0xf09312d1, 0xbe00512f, 0x99ffebd0, 0xf09344d1, + 0xbe00514a, 0xc1ffebc4, 0xf0933cd1, 0xbe005165, 0xc1ffebb8, 0xf09340d1, + 0xbe005180, 0xd1ffebac, 0x930624d1, 0x00519af0, 0xffeb9fbe, 0x51b8f093, + 0xeb96be00, 0x430ea7ff, 0xd3befffb, 0x1007fffa, 0x51b8f093, 0xeb82be00, + 0xf30ea7ff, 0xbfbefffa, 0x1007fffa, 0x51d3f093, 0xeb6ebe00, 0xff4ea7ff, + 0x4c99feff, 0xf1f09309, 0xc3830051, 0x4c87bc07, 0xb42bb433, 0x0050b1f9, + 0xbe23ff00, 0xbeffffb8, 0x03ffeb48, 0x93b139b4, 0x0051f7f0, 0xffeb3bbe, + 0xf093b159, 0xbe005214, 0x03ffeb30, 0x334c87c1, 0xf1c42bc4, 0x000048c1, + 0x25f093ff, 0x19be0052, 0xf093ffeb, 0xbe005244, 0xb9ffeb10, 0xb90a58d1, + 0xb90a5ad2, 0x930a5bd3, 0x005247f0, 0xffeafbbe, 0xa910ba39, 0xf093a827, + 0xbe005267, 0xb9ffeaec, 0xb90a5ad4, 0x2b0a5bd3, 0x07461e43, 0x64f0931c, + 0x1c830052, 0xead2be0f, 0x58d4b9ff, 0x60f0930a, 0x11270052, 0x10274c0e, + 0xffeabfbe, 0x131eb027, 0x0a48b4f9, 0x2127ff00, 0x4c0eb103, 0xa9be2027, + 0x1b07ffea, 0x5244f093, 0xe5bace00, 0x41034c07, 0xd4b9c407, 0xcf6b0a5a, + 0x27b1c4ce, 0xf90d1ec0, 0x000a48c2, 0xbec103ff, 0x07ffea80, 0x28f0931c, + 0xcace0052, 0x8ef103eb, 0xe3f64efa, 0xddf093f4, 0x65be0055, 0x7127ffea, + 0x4d87d027, 0x100044f1, 0x3787ff02, 0x34f1f495, 0xff021000, 0xf491f4a5, + 0xa7e04c3c, 0x070b1e40, 0xf144334d, 0x02180c44, 0xa1f4b5ff, 0xe04c3cf4, + 0x0b1e40a7, 0x44334707, 0x180c44f1, 0xf4c5ff02, 0x38dc3030, 0x091e4027, + 0x44f14d87, 0xff021600, 0x3034f4c5, 0x4027387c, 0x4787091e, 0x160044f1, + 0xf4c5ff02, 0xc5402738, 0xf4c53cf4, 0x44f4c540, 0xb148f4c5, 0x534533f4, + 0xf4c51f4c, 0x30f4c13c, 0x4c534533, 0x40f4c51f, 0x4833f4b1, 0xc5184c53, + 0xf4c144f4, 0x53483330, 0xf4c5184c, 0xa1f29148, 0x38f4b1f3, 0x0000004f, + 0x1e10a720, 0x334d070b, 0x0441f144, 0xc1ff0218, 0x4f3830f4, 0x20000000, + 0x0b1e60a7, 0x44334707, 0x180446f1, 0xfec1ff02, 0xc141073c, 0x1d0740fc, + 0xc144fbc1, 0xf9c148fa, 0x38f8c134, 0x1153fd55, 0xf093d203, 0x75005537, + 0x15f605f7, 0x35fc25fe, 0x65fa45fb, 0x03f885f9, 0xe95ebe72, 0x50dce4ff, + 0xf093fefa, 0xbe005560, 0x27ffe950, 0xffbea7c0, 0x2c07ffe3, 0x27031c07, + 0x555af093, 0xf3f1be00, 0x931b07ff, 0x00555ef0, 0x38272827, 0xc8034127, + 0xfff1bbbe, 0xc420bc03, 0xc3d820cc, 0x27f68ef4, 0x4304d10f, 0x01fe0b2c, + 0x1342d004, 0x32b01301, 0x204944c0, 0xc042a434, 0x14113c32, 0x112745c6, + 0xfe0b0107, 0x04113284, 0x10a742c6, 0xfe0b0107, 0x14110311, 0x3106344e, + 0xf11e10a7, 0x14210221, 0x7af442da, 0x31043124, 0xeb04ca10, 0x3fd60442, + 0x1e10a7ce, 0x071027d8, 0xc4fe0b01, 0x1111c934, 0x142b0411, 0xfb4ebb1e, + 0x32d00301, 0xd014012f, 0x34e02842, 0x44c000fb, 0x2242c421, 0x051d32c4, + 0x15041123, 0x25042124, 0x35043124, 0x11031124, 0x8b020714, 0x8e241543, + 0x8e0107fb, 0xfa32c0fb, 0x14210c21, 0xe42bec07, 0x13310b31, 0xe0c8de07, + 0x20ecc867, 0x8c4cfa4c, 0x27c40700, 0x110011b0, 0x7404ce14, 0x3b2b0f66, + 0x277e30c8, 0x25241540, 0x3123352c, 0x23410721, 0xff4fd441, 0x163fffff, + 0x11472321, 0x41073123, 0x23252135, 0x4fd04123, 0x3fffffff, 0x054327ee, + 0x2810c824, 0xfb8e0207, 0x2752d1c8, 0x234e3b41, 0x27438b41, 0x274486d0, + 0xab3e5bd1, 0x13a71e3d, 0x20eccce0, 0x1be21e99, 0x21a61e3b, 0x53310724, + 0xab118331, 0x07410313, 0x25213502, 0x07fb8e24, 0x15130b1b, 0x352c2520, + 0x27b31e21, 0xff775e30, 0x41273013, 0x2c252415, 0x801e2335, 0xff67dfe6, + 0x4e3b4127, 0x4b8b4123, 0xd027ce0b, 0xd1274486, 0xbdabbe5b, 0xe4ff505e, + 0x11ff2a44, 0xee041113, 0x93ff2234, 0x0053cbf0, 0x0001fb8e, 0x40073007, + 0x53173c53, 0x20071f4c, 0x3f6b1415, 0xffff2e83, 0xc639d67f, 0xa7432728, + 0x14057d3c, 0x13254207, 0x4f744733, 0x40000000, 0x31234447, 0x00004fd0, + 0x25f64000, 0x0b143513, 0x054227fe, 0xc0fe0b14, 0x3316ff3c, 0x7f3c2327, + 0x00002fa3, 0x43274000, 0x13251235, 0xfe0b1405, 0x44272516, 0xfe0b1405, + 0x00000e83, 0x27054610, 0x35140541, 0x05fe0b12, 0x4ef91e10, 0x07f163f5, + 0x03f0051f, 0x7e0f0714, 0xf341ff7a, 0x23074027, 0xf0112253, 0xf12142ab, + 0x3c33f231, 0x0c79be1e, 0x43510700, 0x4ef58ef1, 0x07f2a3fb, 0x05b803bf, + 0x07f115f0, 0x7e1b070f, 0xcf07ff4a, 0x0718cc03, 0x0704030f, 0xff3c7e1c, + 0x1c070b07, 0x83fdba7e, 0x01fb8ef2, 0x11033104, 0x6442d002, 0x005744c0, + 0x2735f642, 0xab002740, 0x1f2c3304, 0xfe0b02ab, 0x0fc80021, 0xffffff82, + 0x800ccc5b, 0x83430739, 0x0c037f4c, 0x404cc07f, 0x3f3c031e, 0x072130c8, + 0x6b475343, 0xff4e830f, 0x0c337fff, 0x3304ab17, 0x02ab1f2c, 0x3cd8fe0b, + 0x3c03e380, 0x53de1e40, 0x1e010331, 0x274027db, 0x8000000f, 0x07a91e7f, + 0x004ea343, 0x4e831000, 0x277fffff, 0x8000000f, 0x13951e7f, 0xffff820f, + 0x1a0cccff, 0x3b412753, 0x8b412340, 0x86102743, 0x5b112744, 0xab030730, + 0x83400701, 0x4cc07f4c, 0x40073c40, 0x073f4c03, 0x27375334, 0x004fd001, + 0x20400000, 0x4e834307, 0x337fffff, 0x505e170c, 0x034007ff, 0x3407404c, + 0x01273753, 0x00004fd4, 0x27e24000, 0x27de1e00, 0x1e302700, 0x800cdcd8, + 0x533007e1, 0x14412737, 0x0000000f, 0x07402740, 0x4ec21e04, 0x05f123fe, + 0x150f07f0, 0x35f225f1, 0xfef97ef3, 0xfe8ef103, 0xf163fd4e, 0xd403df07, + 0x1d07f005, 0x137e0f07, 0x27f421fe, 0x27449630, 0x250d0731, 0xfed57ef3, + 0xfd8ef143, 0xf2a3fc4e, 0xc803cf07, 0xf115f005, 0x1c070f07, 0x07fded7e, + 0x18dc03df, 0x04030f07, 0xdf7e1d07, 0xd0f221fd, 0xf1611622, 0x008112f0, + 0xf371f431, 0xf43543cb, 0x22c42400, 0x07126e18, 0xfe917e0c, 0xfc8ef283, + 0x517ef093, 0xfe857e00, 0xfc8ef283, 0xc05d14c0, 0xf2413912, 0xf351f481, + 0xf191242b, 0x1342f245, 0xf2452123, 0x2f273347, 0x40000000, 0x4c270027, + 0xab312a1f, 0x53312b02, 0x98334721, 0x834007f4, 0x4cc07f4c, 0xf0551240, + 0x4427ae1e, 0xf4250c07, 0x83fe3a7e, 0xdcfc8ef2, 0x66ec800c, 0x400c0331, + 0x557f0ce3, 0x07911ef0, 0x278f1e0d, 0x450c0740, 0x1ef455f4, 0xa3fc4e85, + 0x03cf07f3, 0x15f005c8, 0x070f07f1, 0xfd347e1c, 0xdc03df07, 0x030f0718, + 0x7e1d0704, 0xf421fd26, 0xf3614290, 0xe02432d0, 0xe000dc44, 0xc400cc34, + 0xf3311642, 0x2027f471, 0x2127340e, 0xf2350c07, 0x83fdd27e, 0xc4fc8ef3, + 0xf3311632, 0x2027f471, 0x2127340e, 0xf2750d07, 0x83fdba7e, 0x51fc8ef3, + 0x27f091f2, 0xbe102730, 0x8100129f, 0x07f441f3, 0x03430bd1, 0xc5302742, + 0xf3b530f4, 0xf331f471, 0x342e2107, 0xf4b54127, 0x20cc3d07, 0x30f4c11a, + 0x41032153, 0x01533138, 0x00000fa3, 0x32078000, 0xc5ee20c8, 0x2fd430f4, + 0x40000000, 0x30f4c123, 0x0047091e, 0x00002fb4, 0x22474000, 0x00cc4123, + 0x4721a3f2, 0x002fd000, 0xef400000, 0x0730f4c5, 0x7f4c8342, 0x14404cc0, + 0x43270f07, 0xc5280c03, 0xf4a534f2, 0x83fd2e7e, 0xdcfc8ef3, 0x26ea802c, + 0x402c0301, 0x1e7f2ce3, 0x4f42e4e0, 0x09f093ff, 0x3d5e0050, 0x2b32e4ff, + 0xfdf093ff, 0x315e004f, 0xa3fb4eff, 0x03bf07f3, 0x15f005b8, 0x070f07f1, + 0xfc207e1b, 0xcc03cf07, 0x030f0718, 0x7e1c0704, 0xf471fc12, 0x41c32f07, + 0x2c031c07, 0x750b0728, 0xfae47ef4, 0x83fcce7e, 0x4efb8ef3, 0x07f3a3fb, + 0x05b803bf, 0x07f115f0, 0x7e1b070f, 0xcf07fbe6, 0x0718cc03, 0x0704030f, + 0xfbd87e1c, 0x1c072f07, 0x07282c03, 0xfab07e0b, 0x83fc9a7e, 0x4efb8ef3, + 0x27f123fc, 0x27f40543, 0x270008c1, 0x270636c0, 0x07f40542, 0x7efc150f, + 0xf103fc7b, 0xc876fc8e, 0x4c27d007, 0x250d071e, 0xbefd35f4, 0x230011b3, + 0xe001c801, 0x3b1e4c27, 0x35402bd0, 0x1ef425fd, 0x000f40d3, 0x07800000, + 0x1ed013d0, 0x000f27d6, 0x1ecf0000, 0xa3fc4ec6, 0x03cf07f2, 0x15f005c8, + 0x070f07f1, 0xfb5c7e1c, 0xdc03df07, 0x030f0718, 0x7e1d0704, 0xf421fb4e, + 0x611042d0, 0x074290f4, 0x7e1d070c, 0xf283f9c3, 0x0127fc8e, 0xfe4ef91e, + 0x1f07f163, 0x1403f005, 0x277e0f07, 0x44f411fb, 0x43002742, 0xd0fe8ef1, + 0x4440f842, 0x40c8f431, 0x1f4c88f1, 0x47c6f421, 0x00000f27, 0xf1438000, + 0xf041fe8e, 0x4c13f321, 0xc6045b1e, 0x0013d63f, 0xfe8ef143, 0xffff0f27, + 0xf1437fff, 0xfe4efe8e, 0xf115f2a3, 0xf0051f07, 0x0f071803, 0x07fad57e, + 0x031f070f, 0x181c0304, 0x21fac97e, 0x614290f4, 0x300027f4, 0x8ef28342, + 0x830127fe, 0x4efe8ef2, 0x07f2a3fc, 0x05c803cf, 0x07f115f0, 0x7e1c070f, + 0xdf07faa2, 0x0718dc03, 0x0704030f, 0xfa947e1d, 0x42d0f421, 0x90f46110, + 0x070c0742, 0xf9097e1d, 0xfc8ef283, 0xf91e0127, 0xf2a3fc4e, 0xc803cf07, + 0xf115f005, 0x1c070f07, 0x07fa697e, 0x18dc03df, 0x04030f07, 0x5b7e1d07, + 0xd0f421fa, 0xf4611042, 0x0c074290, 0xd07e1d07, 0x8ef283f8, 0x1e0127fc, + 0xa3fc4ef9, 0x03cf07f2, 0x15f005c8, 0x070f07f1, 0xfa307e1c, 0xdc03df07, + 0x030f0718, 0x7e1d0704, 0xf421fa22, 0x611042d0, 0x074290f4, 0x7e1d070c, + 0xf283f897, 0x00a7fc8e, 0xfc4ef91e, 0xcf07f2a3, 0xf005c803, 0x0f07f115, + 0xf77e1c07, 0x03df07f9, 0x0f0718dc, 0x1d070403, 0x21f9e97e, 0x1042d0f4, + 0x4290f461, 0x1d070c07, 0x83f85e7e, 0xa7fc8ef2, 0x4ef91e00, 0x07f2a3fc, + 0x05c803cf, 0x07f115f0, 0x7e1c070f, 0xdf07f9be, 0x0718dc03, 0x0704030f, + 0xf9b07e1d, 0x42d0f421, 0x90f46110, 0x070c0742, 0xf8257e1d, 0xfc8ef283, + 0xf91e0127, 0xf123fd4e, 0x0676d007, 0xf4054227, 0x40270f07, 0x547ef415, + 0x8ef103fa, 0x274327fd, 0xf4051e3c, 0xf035f325, 0x000f8ebe, 0x00c80123, + 0xdd0fc61c, 0x2b1e4c27, 0x25d03b40, 0x270f07f4, 0x15fd3540, 0xfa257ef4, + 0xfd8ef103, 0x20132007, 0x423b4127, 0x4d8b4123, 0x46363027, 0x4c27d25b, + 0x2b3dab1e, 0x25f33540, 0x27a61ef4, 0x4eee1e31, 0xd00401fd, 0x13011342, + 0x44c032b0, 0xa434205d, 0x4832c042, 0x45c61411, 0x01071127, 0x3284fd8e, + 0x42c60411, 0x010710a7, 0x0311fd8e, 0x344e1411, 0x10a73106, 0x0221f11e, + 0x42da1421, 0x1524daf4, 0x0e410d31, 0x11411031, 0xcee61eca, 0xe12a141e, + 0x0d42e16e, 0xa7c23fd6, 0x27cc1e10, 0x8e010710, 0xebd0c2fd, 0x1ecc3fd6, + 0xb534c4b0, 0x04111111, 0xa71e142b, 0xf1a3f54e, 0x60275027, 0xf5350301, + 0xc007f645, 0xb2077107, 0x90278027, 0x012f32d0, 0x7d42f014, 0x4b34e001, + 0x7544e002, 0x2442c401, 0x071b32c4, 0x27400732, 0x03410125, 0x03310544, + 0x11f2a834, 0x077411c3, 0x15438bcb, 0x830c07b4, 0xe0f58ef1, 0x21014b32, + 0x2514210e, 0x310341fe, 0x15ae0702, 0x2bf205f3, 0x411d31a4, 0xe83a071e, + 0xcc00dfa0, 0xe84c40ac, 0x07017c31, 0x203c233a, 0x5027f355, 0x30e86027, + 0x412701dc, 0x133b1407, 0x02072127, 0x30a70a3b, 0x300b40a7, 0x3d8b414b, + 0x34ab4e8b, 0x512734c6, 0xf4516027, 0x01a440e8, 0x845b8e07, 0x9a5b9e07, + 0xe607d507, 0xe9abd8ab, 0xf321111e, 0x010643fa, 0x20271027, 0xf105f425, + 0xc011f215, 0x04ee7411, 0x0fe600db, 0xf30100cc, 0x1d07f411, 0x132b2e07, + 0x20e8246b, 0x402700f2, 0xf421b415, 0xb425b135, 0xbc31b245, 0x30a7bd41, + 0x3c0b40a7, 0x4fd44d4b, 0x10000000, 0xff4fe031, 0xc00fffff, 0x07b12100, + 0x1f4c534c, 0x34ab3d47, 0xb3452c47, 0xbc31b235, 0x1123bd41, 0x40a730a7, + 0x3c0bb125, 0x4fd04d4b, 0x10000000, 0x0543271e, 0x00dfd4b4, 0x2c200000, + 0x0c07cb07, 0xf58ef183, 0xaceca013, 0x5eff6d40, 0x4fc4ff1f, 0x0fffffff, + 0xff3fd0b7, 0xb0ffffff, 0xb4054327, 0x0000dfd0, 0x07d62000, 0x330d073c, + 0x20271f0c, 0x4d073153, 0x1c07be21, 0x415330ab, 0x04ab0207, 0xcb071183, + 0x13abe103, 0xf183b045, 0xb1350c07, 0xf58ebe25, 0x0c07c707, 0xf58ef183, + 0xf211f101, 0x2e6b1d2b, 0x01ff395e, 0x15f211f1, 0x4b1d0bb0, 0x21d2072e, + 0x25c107f2, 0x45bc35b2, 0xff735ebd, 0xe027d027, 0xf4ff015e, 0xffffff3f, + 0x5eff64ff, 0xfd21ff39, 0x40273027, 0x426b312b, 0xb2152127, 0xb335bd25, + 0x075eb445, 0xdb3fe6ff, 0x07f321fe, 0x202c232a, 0xf2553a0b, 0x0027f325, + 0x20e81027, 0x41270091, 0x623b6407, 0x52072127, 0xf2015a3b, 0x40a730a7, + 0x464b350b, 0xf211328b, 0x34ab428b, 0x012734c6, 0xf3511027, 0x115030c8, + 0x35435bf4, 0x31f311f4, 0x073a5bf4, 0xab40ab23, 0x05f34521, 0x5ef215f4, + 0x4c27fe82, 0x074a2b20, 0x3b8d071e, 0xab8a5b14, 0xfe525e81, 0x27203c27, + 0x073a2b41, 0x5e135b14, 0x44e4fe20, 0x1311fdd9, 0x34ee0411, 0xfc93fdd1, + 0x5e004a10, 0x4c27fdc9, 0x01f21120, 0x3b4a2bf3, 0x073a5b24, 0xab230742, + 0x1ef23524, 0x203c27a1, 0x3a2b4127, 0x635b6407, 0x4eff6b5e, 0x010a11f8, + 0x07ba0709, 0x1fbc533a, 0x83143c53, 0x070307b1, 0x831b15ea, 0x2707ff0d, + 0x078107c0, 0xffee83d9, 0x0e160fff, 0x4eab4907, 0x42274516, 0xf88e1405, + 0x3da74327, 0x140503fd, 0x49071325, 0x4c531e07, 0x07183318, 0x3314ab09, + 0x001fd408, 0x1d100000, 0x2007e307, 0x2c534147, 0x4742ab1f, 0x07030730, + 0xd0e12314, 0x0000004f, 0x8e25e910, 0x81458035, 0x0dc0f88e, 0x072807ff, + 0x534e0729, 0x4833182c, 0x240742ab, 0x00002fa3, 0x39071000, 0x0d233833, + 0x124503ff, 0x10252327, 0x13351205, 0x4907f88e, 0x45164eab, 0x14054427, + 0x4e07f88e, 0x4e833027, 0xab080000, 0x27358634, 0x35140541, 0x8e8e458d, + 0x1e1305f8, 0xe3f54ef7, 0x075107f1, 0x0340071f, 0x050f0718, 0x7ef515f4, + 0xf351ff23, 0x1307f461, 0xffff1f83, 0x20273fff, 0x3c530487, 0xab12ab1e, + 0xa3148630, 0x31f02131, 0xbef241f1, 0xc3fff6d7, 0x4ef58ef1, 0x07f3a3f5, + 0x10ac03af, 0xb007c107, 0x0f071a07, 0xf225f335, 0xfc155307, 0xcf07fb05, + 0x03feda7e, 0x0f0724cc, 0x1c070803, 0x07fece7e, 0x7e1c070a, 0xf383fbab, + 0xf64ef58e, 0x90270401, 0x0d31a027, 0x08110e41, 0x00c942f0, 0x00ba44e0, + 0x4d074240, 0x47f64eab, 0x10270027, 0x31833807, 0x4c334307, 0x0730271f, + 0xabc107b0, 0x07c4abb3, 0x8e1c070b, 0xe80021f6, 0xfffc020f, 0xec00b1ff, + 0x8504000d, 0x6b3d0700, 0x0340273f, 0xc003ff0d, 0x2756803c, 0x40277f3c, + 0xe44bd30b, 0x0000efd0, 0x07162000, 0x073d072e, 0x1f2c334e, 0x32ab3153, + 0xd3074153, 0x0103e407, 0x4e072007, 0x1e070d07, 0x07ff2d83, 0x32071853, + 0x53184c33, 0x0704ab08, 0x143c33e1, 0xd0072027, 0xffffee83, 0x0702070f, + 0xab0dab13, 0xff765e1e, 0x07a94fd6, 0x003d833d, 0xc634ab01, 0x3c27a73f, + 0x0b402780, 0xd0e44bd3, 0x000000ef, 0x9c1eb320, 0x1f270027, 0x7ff00000, + 0x07ff4b5e, 0x004ea34e, 0xe4070800, 0xffffee83, 0x071e070f, 0x001fa30d, + 0x5e7ff000, 0x0f13ff30, 0xfffffc02, 0xba390cec, 0x23100700, 0x6027201c, + 0x10e87027, 0x412700b5, 0xc13bc407, 0xb2072127, 0x30a7b03b, 0x3b0b40a7, + 0x3d8b4c4b, 0x34ab4e8b, 0x612734c6, 0x10e87027, 0x9e07009f, 0xd607915b, + 0xae07d9ab, 0xa05b3d07, 0x3f6be707, 0x4027eaab, 0x44803cc0, 0x277f3c27, + 0x4b3d0b40, 0x3324074e, 0xc127182c, 0x00004f14, 0xc0271000, 0x08530307, + 0x02ab1407, 0x3c071853, 0x07ff3d83, 0xe1074307, 0x27144c33, 0x83d00730, + 0x0fffffee, 0x14070307, 0x1eab0dab, 0xd6fe975e, 0x3d07bb4f, 0x01003d83, + 0x34ab4027, 0x4e073cb6, 0x27184c33, 0x00ef14c1, 0x27100000, 0x530d07c0, + 0xab1e0708, 0x1e185304, 0x27c027b6, 0x1e102700, 0x203c27ae, 0x302b4127, + 0xc35bc407, 0x27ff475e, 0x402b204c, 0x9d073e07, 0x905b343b, 0x575e93ab, + 0x803c27ff, 0x4eff6a5e, 0x05f163f5, 0x150f07f0, 0x35f225f1, 0x7ef445f3, + 0x5107fe0a, 0xf58ef143, 0xf1e3f54e, 0xd803df07, 0x51074007, 0x1d070f07, + 0xf515f405, 0x31fcae7e, 0x963027f4, 0x07312744, 0x7ef3350d, 0x5107fdde, + 0xf58ef1c3, 0xf3e3f54e, 0x1f07c107, 0x1c03b007, 0x250f0710, 0x15f335f2, + 0x7efb05fc, 0xdf07fc7f, 0x0724dc03, 0x0708030f, 0xfc717e1d, 0x22d0f241, + 0xf0f19116, 0x51010912, 0xcbf3a1f4, 0x00f45543, 0x1f22c424, 0x0f0712ae, + 0x7e100c03, 0x5107fd8e, 0xf58ef3c3, 0x462af093, 0xfd807e00, 0xf3c35107, + 0x14e0f58e, 0x12c000df, 0xb1f1617f, 0x2bfc81f4, 0x34f8c114, 0xfb71f165, + 0xea30f7c1, 0xce0084c8, 0x4c277d8c, 0x2790273d, 0x000000af, 0x27502710, + 0x38f4c560, 0xe607d507, 0xd9ab4a07, 0x4c33eaab, 0xcec88a1f, 0x5d07548c, + 0xb72b6e07, 0x2907c86b, 0x24ab2153, 0x4c534b07, 0xab1c471f, 0x38f4c114, + 0x41233a07, 0x0b473153, 0x0738f4c5, 0x07a30792, 0xd6c107b0, 0x3507bf4f, + 0x40273f6b, 0x38803cc0, 0xf685f575, 0x07ff615e, 0x0344270f, 0xf445100c, + 0x07fce97e, 0x8ef3c351, 0xb3b7caf5, 0x7bc2a91e, 0x472b0782, 0x1f2c534c, + 0x3b4742ab, 0xb3071123, 0xf165c407, 0xd6ff6d5e, 0x3507c74f, 0x01003d83, + 0x3fd634ab, 0xab4007bc, 0xb54fc641, 0x27803c27, 0x4b350b40, 0xe3530746, + 0x6407ff5c, 0x0d07a31e, 0x07ff0a5e, 0x2730270f, 0x03202740, 0xf375100c, + 0xf265f485, 0x4efef65e, 0x07f5e3f5, 0x10ac03af, 0xc107b007, 0x1a070f07, + 0xf225f335, 0xfb05fc15, 0x07fb2a7e, 0x24dc03df, 0x08030f07, 0x1c7e1d07, + 0x90f441fb, 0xd0f39142, 0x44e02632, 0x34e001f3, 0x42c401e3, 0xa1f35118, + 0x0e2027f4, 0x07212734, 0x7ef2550a, 0x5107fc36, 0xf58ef5c3, 0x511832c4, + 0x27f4a1f3, 0x27340e20, 0xa50d0721, 0xfc1c7ef2, 0xf5c35107, 0xfbc1f58e, + 0x27f77130, 0x076027a0, 0x34fcc12b, 0x1a073607, 0x94be0707, 0x5b070006, + 0xbc073027, 0xc54cfbc5, 0xf0c550f3, 0x58f1c554, 0xc14cf0c1, 0x3a0750f1, + 0x2707f881, 0x000672be, 0x9007c027, 0x2507a107, 0x08073607, 0x60be1c07, + 0xd0070006, 0xd90be107, 0xb807ea4b, 0x00fdeaea, 0x00f5aeee, 0xf3c11027, + 0x58f4c154, 0xad079107, 0xa44b930b, 0x80277027, 0x00f9a4ea, 0xee58f4c1, + 0xc1012c4a, 0xf2c150f3, 0x070b074c, 0xbebe071c, 0xb100061f, 0x27f461f3, + 0x03430bc0, 0xc5302744, 0xf3c540f4, 0x51f4a13c, 0x4bb00bf3, 0x4bb70bc1, + 0x27342ec8, 0x3cf4c541, 0x0000cfd0, 0xc13f2000, 0x4c0740fe, 0x4c331b07, + 0x0711531f, 0xab0a072c, 0x33215314, 0xe1031f0c, 0x0715b1d8, 0x534a0739, + 0xab415331, 0x07a40730, 0x00afa393, 0x07800000, 0xd4c207b1, 0x0000002f, + 0xfec5c920, 0x00cfd440, 0x31100000, 0x0740fec1, 0x1f4c5349, 0x1a472b07, + 0x2c5314ab, 0xab4c471f, 0x473b4742, 0x07b30709, 0xc8e123c4, 0x900759a0, + 0xcfd0a107, 0x10000000, 0x40fec5d7, 0x3f6b3b07, 0x3cc04027, 0x0f074980, + 0x0c034327, 0x44fbc538, 0xc548fcc5, 0xcb7e38f4, 0xc35107fa, 0xe2f58ef5, + 0x27ff0b9d, 0x54f3c110, 0x0758f4c1, 0x0bad0791, 0x27a44b93, 0xe2812770, + 0x27ff0b4a, 0x0b402731, 0x5e844b73, 0x31a3ff07, 0xc407b307, 0x4fd6a11e, + 0x833b07b6, 0xab01003d, 0xab3fd634, 0x4aab4907, 0x27a44fc6, 0x4027803c, + 0x4c4b3b0b, 0xbce3b307, 0x1ec407ff, 0xd439e292, 0xe4c11efe, 0x93fe3a42, + 0x004307f0, 0xe4fe265e, 0x93fe1432, 0x0042fbf0, 0x4efe1a5e, 0x07f4e3f5, + 0x10ac03af, 0xb007c107, 0x0f071a07, 0xf225f335, 0xfb05fc15, 0xf47ecf07, + 0x24cc03f8, 0x08030f07, 0xe87e1c07, 0x07f4a1f8, 0x0741c32f, 0x382c031c, + 0xf4a50a07, 0x7ef62f7e, 0x5107fa12, 0xf58ef4c3, 0xf4e3f54e, 0xac03af07, + 0x07c10710, 0x071a07b0, 0x25f3350f, 0x05fc15f2, 0x7ecf07fb, 0xcc03f8af, + 0x030f0724, 0x7e1c0708, 0x2f07f8a3, 0x2c031c07, 0x7e0a0738, 0xd37ef5f0, + 0xc35107f9, 0x4ef58ef4, 0x27f163fb, 0x27f40543, 0x270008b1, 0x270736b0, + 0x07f40542, 0x7efb150f, 0x3007f9b2, 0x03074107, 0xf1431407, 0xbb36fb8e, + 0x04074007, 0xc407d027, 0x253c4c27, 0x45f035f4, 0x047dbefd, 0x03100700, + 0x11c81d1c, 0xc80323cf, 0x4c072300, 0xf445403b, 0x3c274c07, 0x2b413b3c, + 0x25f43531, 0xc0b51ef3, 0x0000000f, 0x40071a80, 0xbf1e4013, 0x2b204c27, + 0x072c0741, 0x3b245b3d, 0x4532ab31, 0x27d21ef3, 0x004f2730, 0x1ec1e000, + 0xa3f54e96, 0x03df07f3, 0x400710dc, 0x0f075107, 0xf4051d07, 0xf335c307, + 0xf515f225, 0xe47ebf07, 0x24bc03f7, 0x08030f07, 0xd87e1b07, 0xd0f441f7, + 0xf4911042, 0x0d074290, 0xac7e1b07, 0x8ef383f4, 0x1e0127f5, 0xe3f54ef9, + 0x075107f1, 0x0340071f, 0x050f0718, 0x7ef515f4, 0xf421f7ab, 0x00274244, + 0xf58ef1c3, 0x40f842d0, 0xc8f44144, 0x4c88f140, 0x46f4311f, 0x000f2749, + 0xc3800000, 0x27f58ef1, 0xe42b3cec, 0x4c234e07, 0x1c40c820, 0x0207f261, + 0xf431045b, 0x13ca4fc6, 0x8ef1c300, 0xff0f27f5, 0xc37fffff, 0x61f58ef1, + 0x204c27f2, 0x32074e2b, 0x4307343b, 0x0307f351, 0x04ab0e5b, 0xf54ed51e, + 0x5107f3a3, 0x40071f07, 0x07101c03, 0x07f4050f, 0x35c307b2, 0x15f225f3, + 0xf7297ef5, 0x1f070f07, 0x1c030803, 0xf71d7e24, 0x4290f441, 0x0027f491, + 0xf3834230, 0x0127f58e, 0xf58ef383, 0xf3a3f54e, 0xdc03df07, 0x07400710, + 0x070f0751, 0x07f4051d, 0x25f335c3, 0x07f515f2, 0xf6e97ebf, 0x0724bc03, + 0x0708030f, 0xf6dd7e1b, 0x42d0f441, 0x90f49110, 0x070d0742, 0xf3b17e1b, + 0xf58ef383, 0xf91e0127, 0xf3a3f54e, 0xdc03df07, 0x07400710, 0x070f0751, + 0x07f4051d, 0x25f335c3, 0x07f515f2, 0xf6a57ebf, 0x0724bc03, 0x0708030f, + 0xf6997e1b, 0x42d0f441, 0x90f49110, 0x070d0742, 0xf36d7e1b, 0xf58ef383, + 0xf91e0127, 0xf3a3f54e, 0xdc03df07, 0x07400710, 0x070f0751, 0x07f4051d, + 0x25f335c3, 0x07f515f2, 0xf6617ebf, 0x0724bc03, 0x0708030f, 0xf6557e1b, + 0x42d0f441, 0x90f49110, 0x070d0742, 0xf3297e1b, 0xf58ef383, 0xf91e00a7, + 0xf3a3f54e, 0xdc03df07, 0x07400710, 0x070f0751, 0x07f4051d, 0x25f335c3, + 0x07f515f2, 0xf61d7ebf, 0x0724bc03, 0x0708030f, 0xf6117e1b, 0x42d0f441, + 0x90f49110, 0x070d0742, 0xf2e57e1b, 0xf58ef383, 0xf91e00a7, 0xf3a3f54e, + 0xdc03df07, 0x07400710, 0x070f0751, 0x07f4051d, 0x25f335c3, 0x07f515f2, + 0xf5d97ebf, 0x0724bc03, 0x0708030f, 0xf5cd7e1b, 0x42d0f441, 0x90f49110, + 0x070d0742, 0xf2a17e1b, 0xf58ef383, 0xf91e0127, 0xf163f54e, 0xb027a027, + 0x90278027, 0x422706b6, 0x0f07f405, 0xf4154027, 0x07f6d97e, 0x8ef14351, + 0x27d027f5, 0x3c3c2743, 0xf405c007, 0xf035f325, 0xacbefd45, 0x10070001, + 0xc81d1c03, 0x1fc62c10, 0xe80323d2, 0x07008200, 0x45403b4c, 0x3b4c07f4, + 0x3c3c2741, 0x312bf435, 0x40270f07, 0xf415f325, 0x07f6917e, 0x8ef14351, + 0x13e107f5, 0x230e07e0, 0x6027200c, 0x00c87027, 0x07412742, 0x27b03bb4, + 0x3ba20721, 0xa730a7ae, 0x4b3a0b40, 0x8b3c8b4b, 0xc634ab4d, 0x27612734, + 0x4000c870, 0x805b8d07, 0x9e5b9d07, 0x2c274707, 0xab36073c, 0xab212b49, + 0x45f33538, 0x5ef225f4, 0x3c27ff5a, 0x2b412720, 0x5bb4073e, 0x27b91eb3, + 0x412b204c, 0x3d072c07, 0x313b245b, 0xf34532ab, 0x27ff745e, 0x4e2b204c, + 0x8c073d07, 0x8e5b343b, 0xb51e83ab, 0x0088fe4e, 0x1013100c, 0xfe0e2127, + 0x00004e9e, 0x10680013, 0x44be2127, 0x00130000, 0x1013fe8e, 0xfd4ef31e, + 0x271200c8, 0x1410c8d0, 0x2cbe2027, 0xd4860000, 0xfd8e0013, 0xd1270013, + 0x13ee10cc, 0xd6412710, 0x1ed407d4, 0x074027e4, 0x27de1ed4, 0x00099e21, + 0x9e202700, 0x4e000003, 0x3601c2fe, 0x273310c8, 0x203c2741, 0x44471147, + 0xf02101c2, 0x302707f3, 0xfe8e26e6, 0x27ee10cc, 0x2b012a30, 0x5334ab01, + 0xd6115341, 0x0721b642, 0x66fe8e03, 0x1e302740, 0x274127e9, 0x4ee31e30, + 0x074207f6, 0x07930782, 0x533007a2, 0x4fab102c, 0xe2073fab, 0x6007e39b, + 0xb0077107, 0x0c531407, 0x9b349b10, 0x0b430710, 0x104c53e1, 0x209be40b, + 0x2e031e02, 0x07010000, 0x33b99b4e, 0xa79b10ec, 0x07104c53, 0x073fabd2, + 0x0bba0bce, 0x07c30bd4, 0x0b0c071b, 0xd4f68e1d, 0x0100000e, 0x000dd417, + 0x30273a01, 0x00f9035b, 0x00018744, 0x1b204c27, 0xb0fe0b04, 0x0000000f, + 0x183c2701, 0x00f9035b, 0x00018744, 0x041b4827, 0x4c27fe0b, 0x5b340710, + 0x4400f903, 0x1b000187, 0x27fe0b04, 0xf9035b38, 0x01874400, 0x184c2700, + 0xfe0b041b, 0x4fff1ea7, 0x9b1401fd, 0x4103122f, 0x13c14433, 0x2e24ab38, + 0x0b002732, 0xc5f3abfe, 0x14c13812, 0xf842ce38, 0x0127f3eb, 0xfe4efe0b, + 0x0576d33e, 0x0e200c27, 0x00059efe, 0x4efe8e00, 0xbeb007fb, 0x07feca3f, + 0x931007d0, 0x003e2ff0, 0xffd0d7be, 0xc027d746, 0xd2010b1e, 0xc9bec103, + 0xd403ffd0, 0xf0931c07, 0xda003e21, 0xfb8eedcb, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x0001a118, 0x000047eb, + 0x000047eb, 0x000047eb, 0x42746e49, 0x0a3a6675, 0x6c202000, 0x5f32676f, + 0x65676170, 0x7a69735f, 0x20202065, 0x5f6d756e, 0x65676170, 0x66282073, + 0x29656572, 0x2020000a, 0x30252020, 0x20206432, 0x20202020, 0x20202020, + 0x35252020, 0x28202064, 0x62206425, 0x73657479, 0x55000a29, 0x6f6c626e, + 0x6e696b63, 0x65722067, 0x657a6973, 0x25203a73, 0x54000a64, 0x6c61746f, + 0x6c6c6120, 0x7461636f, 0x25206465, 0x28206438, 0x64657375, 0x2c642520, + 0x666e7520, 0x61656572, 0x20656c62, 0x202c6425, 0x65657266, 0x29642520, + 0x2a2a000a, 0x52202a2a, 0x25435341, 0x42412064, 0x2054524f, 0x2a2a2a2a, + 0x2020000a, 0x20204350, 0x203d2020, 0x30257830, 0x000a7838, 0x52532020, + 0x20202020, 0x7830203d, 0x78383025, 0x2020000a, 0x20524146, 0x203d2020, + 0x30257830, 0x000a7838, 0x5b522020, 0x5d643225, 0x30203d20, 0x38302578, + 0x00000a78, 0x8d8bc899, 0x9a9a9a9d, 0x9ab89a9a, 0x3fb89a9a, 0x9a9a9a9a, + 0x9a9a9a9a, 0x9a9a9a9a, 0x8a8a999a, 0x8a5e8d6f, 0x9a9a9ab6, 0x8a895c8c, + 0x8b8a988c, 0x5c954a99, 0x987a6b8b, 0xb6a6b38c, 0xc57ae38c, 0x7d7c6e6e, + 0x7f7d998c, 0x8f6f6d8c, 0x6c4f6f7f, 0x6e6e3f7b, 0x998c7d7c, 0x6d8c7f7d, + 0x6f7f8f6f, 0x3f7b6c4f, 0x8d86ab5b, 0xa788998a, 0x8b8b9898, 0x6e7d6f6f, + 0x6c7c5e6e, 0x8d7d6b7c, 0x6b7d99b3, 0x99b38d7d, 0x8d7d6b7d, 0x8c7d99b3, + 0x98b6b68b, 0x99889888, 0x886f8b88, 0x00006f8b, 0x00000000, 0x8b6bb999, + 0xc9b9c57e, 0x8b9a959a, 0x989a9a9a, 0x4f5f7a6e, 0x991f1f3f, 0xc68ca899, + 0x5e8a7c4f, 0x6b956f99, 0x9a9a9aa7, 0xa7c4c49a, 0xb6a7989a, 0x889586b6, + 0x89887999, 0xa7a6c2a9, 0xb689a79a, 0x6e5e6e7d, 0x6f7d4f5f, 0x6f6e4e6e, + 0x6c5e5f6f, 0x6e7d6c7b, 0x4f5f6e5e, 0x4e6e6f7d, 0x5f6f6f6e, 0x6c7b6c5e, + 0x9a3d8c79, 0x7a5ba76b, 0x8b8ba76b, 0x998b9a9b, 0x3f7b7b8b, 0x8cb7a699, + 0xa69a9988, 0x99888cb7, 0x8cb7a69a, 0xaa9a9988, 0x6b7b7b99, 0xa7796b79, + 0x978cb797, 0x00008cb7, 0x00000000, 0x8b6ba099, 0xc9b9c57e, 0x8b9a869a, + 0x98b79a9a, 0x4f5f899a, 0x991f1f3f, 0xc6a9a899, 0x7aa7e04f, 0x5c956f99, + 0x9a9a9aa7, 0xa7a7c49a, 0xb6a7989a, 0x889586b6, 0x7a887999, 0xa7a6d0a9, + 0xb6a7989a, 0x6e7c6e7d, 0x6f7d5e5f, 0x7e7d4f6f, 0x6c4f6f6f, 0x6e7d5d7b, + 0x5e5f6e7c, 0x4f6f6f7d, 0x6f6f7e7d, 0x5d7b6c4f, 0x9a3d8c79, 0x6b5ba76b, + 0x8b8ba76b, 0x998b9aaa, 0x3f7b7b8b, 0x8cb7a67c, 0xa69a9988, 0x99888cb7, + 0x8cb7a69a, 0xaa9a9988, 0x7a8a8a99, 0xa7797a79, 0x978cb797, 0x00008cb7, + 0x00000000, 0x63617453, 0x7461206b, 0x0a702520, 0x61747300, 0x25206b63, + 0x3d206434, 0x25783020, 0x0a783830, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x2a2a2a2a, 0x53415220, 0x20642543, 0x524f4241, 0x2a2a2054, 0x000a2a2a, + 0x43502020, 0x20202020, 0x7830203d, 0x78383025, 0x2020000a, 0x20205253, + 0x203d2020, 0x30257830, 0x000a7838, 0x41462020, 0x20202052, 0x7830203d, + 0x78383025, 0x2020000a, 0x32255b52, 0x3d205d64, 0x25783020, 0x0a783830, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x0000532a, 0x0000532a, 0x0000532a, 0x0000532a, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x20000010, 0x804000c0, + 0x03008001, 0x00060100, 0x80ff080f, 0xff080f80, 0x080f8080, 0x0f8080ff, + 0x8080ff08, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x20000010, 0x00400080, 0x02008001, 0x00040100, + 0x00ff200f, 0x200f0802, 0x080200ff, 0x00ff200f, 0x200f0802, 0x080200ff, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x4649424d, 0x43564548, 0x00000001, 0x7478656e, 0x6369705f, 0x5f6f745f, + 0x73726170, 0x20202065, 0x75252020, 0x2a2a000a, 0x25202a2a, 0x2a2a2073, + 0x50202a2a, 0x30203a43, 0x20782578, 0x52532020, 0x7830203a, 0x20207825, + 0x52414620, 0x7830203a, 0x000a7825, 0x255b5220, 0x205d6432, 0x7830203d, + 0x78383025, 0x6d20000a, 0x65747361, 0x25232072, 0x73252064, 0x6f626120, + 0x64657472, 0x2020000a, 0x55414620, 0x203a544c, 0x78257830, 0x2020000a, + 0x44414620, 0x203a5244, 0x78257830, 0x4152000a, 0x41204353, 0x54524f42, + 0x554d4d00, 0x4f424120, 0x57005452, 0x68637461, 0x00676f64, 0x616e7944, + 0x2063696d, 0x6e616863, 0x69206567, 0x6874206e, 0x756e2065, 0x7265626d, + 0x20666f20, 0x65726f63, 0x73692073, 0x746f6e20, 0x70757320, 0x74726f70, + 0x52006465, 0x30435341, 0x53415200, 0x52003143, 0x32435341, 0x53415200, + 0x52003343, 0x34435341, 0x4d445300, 0x44560041, 0x5200414d, 0x00004645, + 0x00034047, 0x0000f154, 0x0000f154, 0x0000f154, 0x00015073, 0x00015079, + 0x0001507f, 0x00015085, 0x0001508b, 0x00015091, 0x00015096, 0x0001509b, + 0x45444956, 0x5746204f, 0x41545320, 0x44204554, 0x20504d55, 0x6f636544, + 0x3d726564, 0x43564548, 0x6946000a, 0x61776d72, 0x76206572, 0x69737265, + 0x64206e6f, 0x2073656f, 0x20746f6e, 0x6374616d, 0x61682068, 0x61776472, + 0x0a216572, 0x72694600, 0x7261776d, 0x6f632065, 0x6c69706d, 0x66206465, + 0x7620726f, 0x69737265, 0x30206e6f, 0x38302578, 0x48000a78, 0x77647261, + 0x20657261, 0x6f706572, 0x20737472, 0x20202020, 0x72657620, 0x6e6f6973, + 0x25783020, 0x0a783830, 0x72694600, 0x7261776d, 0x65762065, 0x6f697372, + 0x6f64206e, 0x6e207365, 0x6d20746f, 0x68637461, 0x72616820, 0x72617764, + 0x65762065, 0x6f697372, 0x6946006e, 0x61776d72, 0x63206572, 0x69706d6f, + 0x2064656c, 0x20726f66, 0x70207325, 0x69636572, 0x6e6f6973, 0x6c736420, + 0x646f6d20, 0x6c000a65, 0x4800776f, 0x77647261, 0x20657261, 0x6f706572, + 0x20737472, 0x20202020, 0x20732520, 0x63657270, 0x6f697369, 0x7364206e, + 0x6f6d206c, 0x000a6564, 0x68676968, 0x61680020, 0x61776472, 0x64206572, + 0x2073656f, 0x20746f6e, 0x70707573, 0x2074726f, 0x63766568, 0x5f454c00, + 0x4c525443, 0x2c78253a, 0x4f434e20, 0x3a534552, 0x202c7825, 0x5f43494c, + 0x45524f43, 0x4d554e5f, 0x2c64253a, 0x5f574820, 0x45524f43, 0x4d554e5f, + 0x2064253a, 0x6e69000a, 0x696c6176, 0x61682064, 0x61776472, 0x63206572, + 0x2065726f, 0x626d756e, 0x3a737265, 0x6d756e20, 0x20726562, 0x6820666f, + 0x61647261, 0x63206572, 0x2065726f, 0x69207369, 0x67656c6c, 0x4e006c61, + 0x6e69206f, 0x66756274, 0x61707320, 0x66206563, 0x6d20726f, 0x65747361, + 0x61732072, 0x61206576, 0x00616572, 0x20626f4a, 0x7373656d, 0x3a656761, + 0x6d754e20, 0x20726562, 0x6320666f, 0x7365726f, 0x6e616320, 0x746f6e20, + 0x20656220, 0x6f72657a, 0x6f4a002e, 0x656d2062, 0x67617373, 0x4e203a65, + 0x65626d75, 0x666f2072, 0x726f6320, 0x74207365, 0x6c206f6f, 0x65677261, + 0x6f4a002e, 0x656d2062, 0x67617373, 0x55203a65, 0x7075736e, 0x74726f70, + 0x66206465, 0x7367616c, 0x74657320, 0x6f4a002e, 0x656d2062, 0x67617373, + 0x4e203a65, 0x65626d75, 0x666f2072, 0x61726620, 0x2073656d, 0x206f6f74, + 0x6772616c, 0x6e002e65, 0x7073206f, 0x20656361, 0x6a206e69, 0x7120626f, + 0x65756575, 0x54414600, 0x455f4c41, 0x524f5252, 0x444e555f, 0x4e494645, + 0x46004445, 0x4c415441, 0x5252455f, 0x415f524f, 0x5f434246, 0x55504e49, + 0x4f435f54, 0x50555252, 0x41460054, 0x5f4c4154, 0x4f525245, 0x46415f52, + 0x525f4342, 0x435f4645, 0x5552524f, 0x46005450, 0x4c415441, 0x5252455f, + 0x4c5f524f, 0x5f444953, 0x4c525443, 0x58414d5f, 0x45524f43, 0x544f4e5f, + 0x5445535f, 0x00000000, 0x00015375, 0x0001538b, 0x000153aa, 0x000153c7, + 0x65666552, 0x636e6572, 0x69702065, 0x72757463, 0x61742065, 0x0a656c62, + 0x20646900, 0x73203a20, 0x75206174, 0x72206573, 0x70206665, 0x70203179, + 0x63203279, 0x6620706d, 0x6d20746d, 0x705f6962, 0x20207274, 0x5f69626d, + 0x65676170, 0x69732873, 0x2029657a, 0x72747020, 0x706f7420, 0x746f623a, + 0x3325000a, 0x203a2064, 0x20643325, 0x20643325, 0x20643325, 0x20643325, + 0x20643325, 0x20643325, 0x20643325, 0x20207025, 0x64362520, 0x29642528, + 0x25202020, 0x70253a70, 0x694c000a, 0x70206576, 0x75746369, 0x74206572, + 0x656c6261, 0x754e000a, 0x203a206d, 0x20206425, 0x646c4f20, 0x20747365, + 0x000a6425, 0x20786469, 0x7473203a, 0x73752061, 0x69702065, 0x20646963, + 0x69666572, 0x696c2064, 0x7973656e, 0x7220636e, 0x20206665, 0x6576696c, + 0x73666572, 0x20202020, 0x66657220, 0x63697032, 0x3325000a, 0x203a2064, + 0x20643325, 0x20643325, 0x33252020, 0x20202064, 0x20643325, 0x36252020, + 0x33252064, 0x30202064, 0x38302578, 0x33252078, 0x33252064, 0x33252064, + 0x33252064, 0x33252064, 0x33252064, 0x33252064, 0x33252064, 0x33252064, + 0x33252064, 0x33252064, 0x33252064, 0x33252064, 0x33252064, 0x33252064, + 0x33252064, 0x50000a64, 0x61766972, 0x72206574, 0x61626665, 0x203a6b6e, + 0x6f6c6f63, 0x78302072, 0x6d207825, 0x625f7861, 0x65666675, 0x25207372, + 0x626d2075, 0x75252077, 0x68626d20, 0x20752520, 0x65736162, 0x6464615f, + 0x78302072, 0x78383025, 0x2020000a, 0x78646920, 0x61747320, 0x66657220, + 0x6464615f, 0x20202072, 0x2077626d, 0x68626d20, 0x2020000a, 0x75332520, + 0x75332520, 0x25783020, 0x0a783830, 0x6e652800, 0x666f2064, 0x69727020, + 0x65746176, 0x66657220, 0x6b6e6162, 0x6d756420, 0x000a2970, 0x75736e55, + 0x726f7070, 0x20646574, 0x6f736572, 0x6974756c, 0x203a6e6f, 0x2064255b, + 0x64252078, 0x6f63005d, 0x70757272, 0x6c732074, 0x00656369, 0x2d746573, + 0x2074706f, 0x666f7270, 0x6e696c69, 0x61203a67, 0x6d206772, 0x20747375, + 0x30206562, 0x20726f20, 0x65730031, 0x706f2d74, 0x73652074, 0x69706163, + 0x203a676e, 0x20677261, 0x7473756d, 0x20656220, 0x726f2030, 0x73003120, + 0x6f2d7465, 0x6e207470, 0x20756c61, 0x6d726f66, 0x203a7461, 0x6e6b6e55, + 0x206e776f, 0x6d726f66, 0x73007461, 0x6f2d7465, 0x6e207470, 0x20756c61, + 0x6d726f66, 0x203a7461, 0x75736e55, 0x726f7070, 0x20646574, 0x6d726f66, + 0x73007461, 0x6f2d7465, 0x69207470, 0x726f6e67, 0x74732065, 0x6d616572, + 0x61656820, 0x73726564, 0x7261203a, 0x756d2067, 0x62207473, 0x20302065, + 0x3120726f, 0x74657300, 0x74706f2d, 0x61726620, 0x7220656d, 0x64726f65, + 0x6e697265, 0x61203a67, 0x6d206772, 0x20747375, 0x30206562, 0x20726f20, + 0x65730031, 0x706f2d74, 0x6f682074, 0x70207473, 0x6f746f72, 0x206c6f63, + 0x6e697270, 0x203a7374, 0x20677261, 0x7473756d, 0x20656220, 0x726f2030, + 0x46003120, 0x6978656c, 0x20656c62, 0x6e776f64, 0x6c616373, 0x6f6e2065, + 0x75732074, 0x726f7070, 0x20646574, 0x68207962, 0x77647261, 0x00657261, + 0x5f6c7364, 0x5f736f70, 0x65646f6d, 0x6c6e6f20, 0x76612079, 0x616c6961, + 0x20656c62, 0x68206e69, 0x20686769, 0x63657270, 0x6f697369, 0x6f64206e, + 0x63736e77, 0x20656c61, 0x65646f6d, 0x6e49002e, 0x66754274, 0x20000a3a, + 0x676f6c20, 0x61705f32, 0x735f6567, 0x20657a69, 0x756e2020, 0x61705f6d, + 0x20736567, 0x65726628, 0x000a2965, 0x20202020, 0x64323025, 0x20202020, + 0x20202020, 0x20202020, 0x20643525, 0x64252820, 0x74796220, 0x0a297365, + 0x626e5500, 0x6b636f6c, 0x20676e69, 0x69736572, 0x3a73657a, 0x0a642520, + 0x746f5400, 0x61206c61, 0x636f6c6c, 0x64657461, 0x64382520, 0x73752820, + 0x25206465, 0x75202c64, 0x6572666e, 0x6c626165, 0x64252065, 0x7266202c, + 0x25206565, 0x000a2964, 0x646e6553, 0x20676e69, 0x20666572, 0x6d617266, + 0x6e752065, 0x64657375, 0x64646120, 0x73736572, 0x78383025, 0x6552000a, + 0x76696563, 0x53206465, 0x43544957, 0x52000a48, 0x69656365, 0x20646576, + 0x20424f4a, 0x67616c66, 0x75253d73, 0x61726620, 0x3d73656d, 0x63207525, + 0x7365726f, 0x0a75253d, 0x54455300, 0x54504f5f, 0x204e4f49, 0x6c696166, + 0x203a6465, 0x000a7325, 0x2f355600, 0x482d3756, 0x44435645, 0x203a4345, + 0x63655200, 0x65766569, 0x45532064, 0x504f5f54, 0x4e4f4954, 0x74616420, + 0x69735f61, 0x2520657a, 0x706f2075, 0x6e695f74, 0x20786564, 0x61207525, + 0x30206772, 0x38302578, 0x53000a78, 0x69737365, 0x6f206e6f, 0x6f697470, + 0x6320736e, 0x6f206e61, 0x20796c6e, 0x63206562, 0x676e6168, 0x69206465, + 0x5453206e, 0x4550504f, 0x74732044, 0x2e657461, 0x54455300, 0x54504f5f, + 0x204e4f49, 0x202c4b4f, 0x666e6f63, 0x696d7269, 0x000a676e, 0x65636552, + 0x64657669, 0x4c444920, 0x43415f45, 0x47000a4b, 0x4920746f, 0x5f454c44, + 0x204b4341, 0x68746977, 0x2074756f, 0x746e6573, 0x4c444920, 0x52002e45, + 0x69656365, 0x20646576, 0x454c4552, 0x5f455341, 0x5f464552, 0x4d415246, + 0x61642045, 0x735f6174, 0x20657a69, 0x62207525, 0x65666675, 0x64615f72, + 0x73657264, 0x78302073, 0x78383025, 0x6572000a, 0x7361656c, 0x65722065, + 0x72662066, 0x3a656d61, 0x64646120, 0x73736572, 0x746f6e20, 0x206e6920, + 0x696c6176, 0x65722064, 0x6e6f6967, 0x6553002e, 0x6e69646e, 0x72662067, + 0x5f656d61, 0x6f6c6c61, 0x61705f63, 0x736d6172, 0x2077203a, 0x68207525, + 0x20752520, 0x63626661, 0x20752520, 0x6d207525, 0x25206962, 0x6f642075, + 0x63736e77, 0x64656c61, 0x6172665f, 0x775f656d, 0x68746469, 0x2c75253d, + 0x6e776f64, 0x6c616373, 0x665f6465, 0x656d6172, 0x6965685f, 0x3d746867, + 0x0a2e7525, 0x6e655300, 0x676e6964, 0x71657320, 0x636e6575, 0x61705f65, + 0x736d6172, 0x7830203a, 0x38302520, 0x30252078, 0x000a7838, 0x646e6553, + 0x20676e69, 0x66667562, 0x705f7265, 0x6d617261, 0x70797420, 0x75252065, + 0x7a697320, 0x7a252065, 0x53000a75, 0x20646e65, 0x65727473, 0x63206d61, + 0x7572726f, 0x203a7470, 0x000a7325, 0x646e6553, 0x72747320, 0x206d6165, + 0x20746f6e, 0x70707573, 0x6574726f, 0x25203a64, 0x53000a73, 0x69646e65, + 0x5320676e, 0x43544957, 0x5f444548, 0x000a4e49, 0x646e6553, 0x20676e69, + 0x5f424f4a, 0x55514544, 0x44455545, 0x4449000a, 0x2820454c, 0x656c6469, + 0x6e65735f, 0x6f745f74, 0x736f685f, 0x75252074, 0x6e69202c, 0x5f667562, + 0x20746e63, 0x202c7525, 0x6274756f, 0x635f6675, 0x2520746e, 0x000a2975, + 0x61202020, 0x6c696176, 0x726f7720, 0x69207364, 0x6f63206e, 0x71206d6d, + 0x65756575, 0x6d203a73, 0x25206773, 0x6e692075, 0x20667562, 0x6f207525, + 0x75627475, 0x75252066, 0x6573000a, 0x6e69646e, 0x65722067, 0x6e6f7073, + 0x63206573, 0x2065646f, 0x000a6425, 0x646e6553, 0x20676e69, 0x434f5250, + 0x45535345, 0x25000a44, 0x73252073, 0x65766d20, 0x66756220, 0x20726566, + 0x6d617266, 0x69282065, 0x6675626e, 0x746e635f, 0x2c752520, 0x74756f20, + 0x5f667562, 0x20746e63, 0x0a297525, 0x20202000, 0x736f6820, 0x61685f74, + 0x656c646e, 0x25783020, 0x25783830, 0x20783830, 0x72657375, 0x7461645f, + 0x61745f61, 0x78302067, 0x78383025, 0x78383025, 0x2020000a, 0x72662020, + 0x5f656d61, 0x67616c66, 0x78302073, 0x78383025, 0x706f7420, 0x20752520, + 0x20746f62, 0x65207525, 0x2520736f, 0x65722075, 0x7525206a, 0x2020000a, + 0x6f662020, 0x74616d72, 0x25783020, 0x20783430, 0x69736976, 0x20656c62, + 0x25787525, 0x20000a75, 0x6d202020, 0x5f696e69, 0x6d617266, 0x20795f65, + 0x2d752528, 0x0a297525, 0x20202000, 0x616c7020, 0x2073656e, 0x30257830, + 0x202c7838, 0x30257830, 0x000a7838, 0x20202020, 0x657a6973, 0x75252073, + 0x7525202c, 0x2020000a, 0x72632020, 0x2078706f, 0x63207525, 0x79706f72, + 0x20752520, 0x63626661, 0x735f775f, 0x75252062, 0x20752520, 0x63626661, + 0x7261705f, 0x20736d61, 0x30257830, 0x000a7838, 0x20202020, 0x6b656570, + 0x25783020, 0x25783230, 0x25783230, 0x25783230, 0x0a783230, 0x20202000, + 0x616c7020, 0x745f656e, 0x3020706f, 0x38302578, 0x78302078, 0x78383025, + 0x25783020, 0x0a783830, 0x20202000, 0x616c7020, 0x625f656e, 0x3020746f, + 0x38302578, 0x78302078, 0x78383025, 0x25783020, 0x0a783830, 0x20202000, + 0x72747320, 0x73656469, 0x25202020, 0x64252064, 0x0a642520, 0x20202000, + 0x78616d20, 0x78752520, 0x000a7525, 0x25207325, 0x766d2073, 0x75622065, + 0x72656666, 0x74696220, 0x65727473, 0x28206d61, 0x75626e69, 0x6e635f66, + 0x75252074, 0x756f202c, 0x66756274, 0x746e635f, 0x29752520, 0x2020000a, + 0x69622020, 0x72747374, 0x5f6d6165, 0x67616c66, 0x78302073, 0x78383025, + 0x736f6520, 0x75252066, 0x666f6520, 0x20752520, 0x20736f65, 0x65207525, + 0x7362666f, 0x20752520, 0x74617473, 0x75252073, 0x2020000a, 0x64612020, + 0x30207264, 0x38302578, 0x6c612078, 0x20636f6c, 0x6f207525, 0x25206666, + 0x69662075, 0x25206c6c, 0x25000a75, 0x73252073, 0x65766d20, 0x66756220, + 0x20726566, 0x61726170, 0x6574656d, 0x74202c72, 0x20657079, 0x000a7525, + 0x25207325, 0x766d2073, 0x75622065, 0x72656666, 0x6e656720, 0x6c617265, + 0x6e692820, 0x5f667562, 0x20746e63, 0x202c7525, 0x6274756f, 0x635f6675, + 0x2520746e, 0x000a2975, 0x20202020, 0x65707974, 0x2c752520, 0x6e6f6320, + 0x5f676966, 0x657a6973, 0x0a752520, 0x20202000, 0x6e6f6320, 0x20676966, + 0x30257830, 0x30207832, 0x32302578, 0x78302078, 0x78323025, 0x25783020, + 0x0a783230, 0x20202000, 0x66756220, 0x5f726566, 0x20727470, 0x30257830, + 0x202c7838, 0x66667562, 0x735f7265, 0x20657a69, 0x000a7525, 0x74736f48, + 0x69727020, 0x6220746e, 0x65666675, 0x52452072, 0x2e524f52, 0x20732520, + 0x6d207325, 0x62206576, 0x65666675, 0x69772072, 0x75206874, 0x6f6e6b6e, + 0x63206e77, 0x2065646f, 0x000a7525, 0x00746f47, 0x5054554f, 0x53005455, + 0x69646e65, 0x4900676e, 0x5455504e, 0x63655200, 0x65766965, 0x554f2064, + 0x54555054, 0x554c465f, 0x73204853, 0x65746174, 0x20752520, 0x7074756f, + 0x625f7475, 0x6b636f6c, 0x25206465, 0x4f000a75, 0x75707475, 0x6c662074, + 0x20687375, 0x796c6e6f, 0x6c6c6120, 0x6465776f, 0x65687720, 0x7473206e, + 0x6570706f, 0x6f202c64, 0x66612072, 0x20726574, 0x70736572, 0x65736e6f, + 0x45535f20, 0x4e455551, 0x505f4543, 0x4d415241, 0x52455445, 0x65530053, + 0x6e69646e, 0x554f2067, 0x54555054, 0x554c465f, 0x44454853, 0x6553000a, + 0x6e69646e, 0x4e492067, 0x5f545550, 0x53554c46, 0x0a444548, 0x63655200, + 0x65766965, 0x4e492064, 0x5f545550, 0x53554c46, 0x49000a48, 0x5455504e, + 0x554c465f, 0x6f204853, 0x20796c6e, 0x6f6c6c61, 0x20646577, 0x6e656877, + 0x206e6920, 0x504f5453, 0x20444550, 0x74617473, 0x52002e65, 0x69656365, + 0x20646576, 0x000a4f47, 0x5f45564d, 0x55514552, 0x5f545345, 0x45444f43, + 0x3a4f475f, 0x70204120, 0x69766572, 0x2073756f, 0x74617473, 0x72742065, + 0x69736e61, 0x6e6f6974, 0x20736920, 0x6c697473, 0x6570206c, 0x6e69646e, + 0x4e002e67, 0x6f6a206f, 0x6e692062, 0x626f6a20, 0x65757120, 0x002e6575, + 0x65636552, 0x64657669, 0x4f545320, 0x4d000a50, 0x525f4556, 0x45555145, + 0x435f5453, 0x5f45444f, 0x504f5453, 0x2041203a, 0x76657270, 0x73756f69, + 0x61747320, 0x74206574, 0x736e6172, 0x6f697469, 0x7369206e, 0x69747320, + 0x70206c6c, 0x69646e65, 0x002e676e, 0x6e616843, 0x73206567, 0x65746174, + 0x206f7420, 0x000a6425, 0x646e6553, 0x20676e69, 0x54415453, 0x48435f45, + 0x45474e41, 0x77656e20, 0x6174735f, 0x253d6574, 0x53000a75, 0x65746174, + 0x61686320, 0x2065676e, 0x646e6570, 0x20676e69, 0x74617473, 0x64253d65, + 0x6e657020, 0x676e6964, 0x0a64253d, 0x63655200, 0x65766965, 0x55442064, + 0x000a504d, 0x5f45564d, 0x55514552, 0x5f545345, 0x45444f43, 0x4d55445f, + 0x6f6e2050, 0x6c612074, 0x65776f6c, 0x6f662064, 0x72702072, 0x6365746f, + 0x20646574, 0x73736573, 0x736e6f69, 0x626e002e, 0x75622072, 0x72656666, + 0x65682073, 0x203a646c, 0x69207525, 0x7475706e, 0x20752520, 0x7074756f, + 0x000a7475, 0x69617661, 0x6f77206c, 0x20736472, 0x63206e69, 0x206d6d6f, + 0x75657571, 0x203a7365, 0x2067736d, 0x69207525, 0x6675626e, 0x20752520, + 0x6274756f, 0x25206675, 0x52000a75, 0x69656365, 0x20646576, 0x474e4950, + 0x6552000a, 0x76696563, 0x44206465, 0x47554245, 0x736d202c, 0x643e2d67, + 0x5f617461, 0x657a6973, 0x2c64253d, 0x76656c20, 0x253d6c65, 0x63000a64, + 0x2065646f, 0x6425203d, 0x7254000a, 0x69736e61, 0x6e6f6974, 0x46494620, + 0x766f204f, 0x6c667265, 0x5500776f, 0x7075736e, 0x74726f70, 0x6d206465, + 0x61737365, 0x63206567, 0x2e65646f, 0x69424d00, 0x206f666e, 0x7074756f, + 0x6e207475, 0x6120746f, 0x776f6c6c, 0x66206465, 0x7020726f, 0x65746f72, + 0x64657463, 0x73657320, 0x6e6f6973, 0x6142002e, 0x424d2064, 0x6f666e69, + 0x74756f20, 0x3b747570, 0x78616d20, 0x7a69735f, 0x73282065, 0x64697274, + 0x5d305b65, 0x756d2029, 0x62207473, 0x6f6e2065, 0x656e2d6e, 0x69746167, + 0x000a6576, 0x20646142, 0x6e69424d, 0x6f206f66, 0x75707475, 0x75203b74, + 0x5f646573, 0x657a6973, 0x73756d20, 0x6f6e2074, 0x65622074, 0x72616c20, + 0x20726567, 0x6e616874, 0x78616d20, 0x7a69735f, 0x4d000a65, 0x666e6942, + 0x756f206f, 0x74757074, 0x66756220, 0x20726566, 0x20736168, 0x656c6c69, + 0x206c6167, 0x61636f6c, 0x6e6f6974, 0x64614200, 0x69424d20, 0x206f666e, + 0x7074756f, 0x62207475, 0x65666675, 0x4e002e72, 0x7573206f, 0x726f7070, + 0x6f662074, 0x68742072, 0x62207369, 0x65666675, 0x6f632072, 0x20726f6c, + 0x6d726f66, 0x002e7461, 0x64726168, 0x65726177, 0x656f6420, 0x6f6e2073, + 0x75732074, 0x726f7070, 0x46412074, 0x6f204342, 0x75707475, 0x61680074, + 0x61776472, 0x64206572, 0x2073656f, 0x20746f6e, 0x70707573, 0x2074726f, + 0x5f45564d, 0x4d524f46, 0x595f5441, 0x32345655, 0x30505f30, 0x54003031, + 0x20736968, 0x65727473, 0x6e206d61, 0x73646565, 0x206e6120, 0x65746e69, + 0x63616c72, 0x62206465, 0x65666675, 0x54002e72, 0x20736968, 0x65727473, + 0x6e206d61, 0x73646565, 0x6e206120, 0x692d6e6f, 0x7265746e, 0x6563616c, + 0x75622064, 0x72656666, 0x694d002e, 0x726f7272, 0x20676e69, 0x6e207369, + 0x7320746f, 0x6f707075, 0x64657472, 0x726f6620, 0x63656420, 0x2e65646f, + 0x74694200, 0x74706564, 0x666f2068, 0x42464120, 0x756f2043, 0x74757074, + 0x66756220, 0x20726566, 0x7473756d, 0x20656220, 0x622d3031, 0x62207469, + 0x75616365, 0x6f206573, 0x65642066, 0x65646f63, 0x74732064, 0x6d616572, + 0x6942002e, 0x70656474, 0x6f206874, 0x46412066, 0x6f204342, 0x75707475, + 0x75622074, 0x72656666, 0x73756d20, 0x65622074, 0x622d3820, 0x62207469, + 0x75616365, 0x6f206573, 0x65642066, 0x65646f63, 0x74732064, 0x6d616572, + 0x4641002e, 0x66204342, 0x616d726f, 0x756d2074, 0x62207473, 0x3a342065, + 0x20323a32, 0x636e6973, 0x65642065, 0x65646f63, 0x74732064, 0x6d616572, + 0x2e736920, 0x42464100, 0x6f662043, 0x74616d72, 0x73756d20, 0x65622074, + 0x323a3420, 0x7320303a, 0x65636e69, 0x63656420, 0x6465646f, 0x72747320, + 0x206d6165, 0x002e7369, 0x61746f52, 0x6e6f6974, 0x20736920, 0x20746f6e, + 0x70707573, 0x6574726f, 0x6f662064, 0x46412072, 0x62204342, 0x65666675, + 0x002e7372, 0x43424641, 0x776f6420, 0x6163736e, 0x676e696c, 0x746f6e20, + 0x70757320, 0x74726f70, 0x66206465, 0x6920726f, 0x7265746e, 0x6563616c, + 0x74732064, 0x6d616572, 0x6e490073, 0x696c6176, 0x63732064, 0x6e696c61, + 0x65732067, 0x6f662074, 0x46412072, 0x62204342, 0x65666675, 0x6d202c72, + 0x20747375, 0x30206562, 0x20726f20, 0x46002e31, 0x6420726f, 0x736e776f, + 0x696c6163, 0x202c676e, 0x43424641, 0x616c7020, 0x3120656e, 0x20736920, + 0x20746f6e, 0x76206e69, 0x64696c61, 0x6d656d20, 0x2079726f, 0x69676572, + 0x002e6e6f, 0x43424641, 0x616c7020, 0x3120656e, 0x7a697320, 0x68732065, + 0x646c756f, 0x746f6e20, 0x20656220, 0x6f72657a, 0x4641002e, 0x70204342, + 0x656e616c, 0x69203020, 0x6f6e2073, 0x6e692074, 0x6c617620, 0x6d206469, + 0x726f6d65, 0x65722079, 0x6e6f6967, 0x4641002e, 0x70204342, 0x656e616c, + 0x73203020, 0x20657a69, 0x756f6873, 0x6e20646c, 0x6220746f, 0x657a2065, + 0x002e6f72, 0x20726f46, 0x65746e69, 0x63616c72, 0x41202c65, 0x20434246, + 0x6e616c70, 0x20312065, 0x6e207369, 0x6920746f, 0x6176206e, 0x2064696c, + 0x6f6d656d, 0x72207972, 0x6f696765, 0x46002e6e, 0x6920726f, 0x7265746e, + 0x6563616c, 0x6661202c, 0x775f6362, 0x68746469, 0x5f6e695f, 0x65707573, + 0x6f6c6272, 0x20736b63, 0x7473756d, 0x20656220, 0x20656874, 0x656d6173, + 0x726f6620, 0x746f6220, 0x6c702068, 0x73656e61, 0x4641002e, 0x74204342, + 0x64656c69, 0x61656820, 0x20726564, 0x75716572, 0x73657269, 0x6c697420, + 0x62206465, 0x2e79646f, 0x42464100, 0x32332043, 0x73203878, 0x72657075, + 0x636f6c62, 0x6e20736b, 0x7320746f, 0x6f707075, 0x64657472, 0x726f6620, + 0x63656420, 0x2065646f, 0x7074756f, 0x43007475, 0x6e206e61, 0x7520746f, + 0x34206573, 0x323a323a, 0x66756220, 0x20726566, 0x73206669, 0x61657274, + 0x7369206d, 0x323a3420, 0x002e303a, 0x61766e49, 0x2064696c, 0x6c616373, + 0x20676e69, 0x20746573, 0x20726f66, 0x6e616c70, 0x62207261, 0x65666675, + 0x6d002e72, 0x665f7861, 0x656d6172, 0x6469775f, 0x73206874, 0x6c756f68, + 0x65622064, 0x72616c20, 0x20726567, 0x6e616874, 0x72657a20, 0x6d002e6f, + 0x665f7861, 0x656d6172, 0x6965685f, 0x20746867, 0x756f6873, 0x6220646c, + 0x616c2065, 0x72656772, 0x61687420, 0x657a206e, 0x002e6f72, 0x75736e55, + 0x726f7070, 0x20646574, 0x6e616c70, 0x62207261, 0x65666675, 0x6f632072, + 0x20726f6c, 0x6d726f66, 0x002e7461, 0x69727453, 0x74206564, 0x73206f6f, + 0x6c6c616d, 0x206f7420, 0x646c6f68, 0x78616d20, 0x6172665f, 0x775f656d, + 0x68746469, 0x6c70002e, 0x5f656e61, 0x20706f74, 0x7473756d, 0x20656220, + 0x6d206e69, 0x726f6d65, 0x65722079, 0x6e6f6967, 0x41524620, 0x5542454d, + 0x70002e46, 0x656e616c, 0x746f625f, 0x73756d20, 0x65622074, 0x206e6920, + 0x6f6d656d, 0x72207972, 0x6f696765, 0x5246206e, 0x42454d41, 0x002e4655, + 0x6e616c70, 0x6f625f65, 0x68732074, 0x646c756f, 0x20656220, 0x6f72657a, + 0x726f6620, 0x6e6f6e20, 0x746e692d, 0x616c7265, 0x20646563, 0x65727473, + 0x002e6d61, 0x72646441, 0x20737365, 0x7520666f, 0x6573756e, 0x6c702064, + 0x20656e61, 0x756f6873, 0x6220646c, 0x657a2065, 0x002e6f72, 0x69727453, + 0x6f206564, 0x6e752066, 0x64657375, 0x616c7020, 0x7320656e, 0x6c756f68, + 0x65622064, 0x72657a20, 0x52002e6f, 0x7461746f, 0x206e6f69, 0x206e6163, + 0x20746f6e, 0x64206562, 0x20656e6f, 0x20726f66, 0x3a323a34, 0x57002e32, + 0x48435441, 0x20474f44, 0x00717269, 0x2a2a2a2a, 0x53415220, 0x20642543, + 0x524f4241, 0x2a2a2054, 0x000a2a2a, 0x43502020, 0x20202020, 0x7830203d, + 0x78383025, 0x2020000a, 0x20205253, 0x203d2020, 0x30257830, 0x000a7838, + 0x41462020, 0x20202052, 0x7830203d, 0x78383025, 0x2020000a, 0x32255b52, + 0x3d205d64, 0x25783020, 0x0a783830, 0x766e4900, 0x64696c61, 0x66756220, + 0x20726566, 0x4d206e69, 0x435f4556, 0x5f4d4d4f, 0x5f465542, 0x5f514e49, + 0x52444441, 0x78652820, 0x74636570, 0x6d206465, 0x625f6576, 0x65666675, + 0x69625f72, 0x72747374, 0x296d6165, 0x6e49002e, 0x696c6176, 0x6e692064, + 0x20747570, 0x66667562, 0x002e7265, 0x78656c46, 0x656c6269, 0x776f6420, + 0x6163736e, 0x6e20656c, 0x7320746f, 0x6f707075, 0x64657472, 0x20796220, + 0x64726168, 0x65726177, 0x6143002e, 0x6f6e206e, 0x73752074, 0x2d2d2065, + 0x6e776f64, 0x6163735f, 0x5820656c, 0x74697720, 0x2d2d2068, 0x5f6c7364, + 0x69746172, 0x6f685f6f, 0x65762f72, 0x6e612072, 0x73642064, 0x72665f6c, + 0x5f656d61, 0x74646977, 0x65682f68, 0x74686769, 0x20746120, 0x656d6173, + 0x6d697420, 0x43002e65, 0x6e206e61, 0x7520746f, 0x2d206573, 0x6c73642d, + 0x7461725f, 0x685f6f69, 0x762f726f, 0x58207265, 0x74697720, 0x73642068, + 0x72665f6c, 0x5f656d61, 0x74646977, 0x65682f68, 0x74686769, 0x20746120, + 0x656d6173, 0x6d697420, 0x66002e65, 0x6978656c, 0x20656c62, 0x6e776f64, + 0x6c616373, 0x20676e69, 0x75736e75, 0x726f7070, 0x20646574, 0x75706e69, + 0x65722074, 0x756c6f73, 0x6e6f6974, 0x61687420, 0x656c2074, 0x74207373, + 0x206e6168, 0x41002e32, 0x2c434246, 0x20726f20, 0x2c746f6e, 0x73756d20, + 0x65622074, 0x65737520, 0x6f632064, 0x7369736e, 0x746e6574, 0x6420796c, + 0x6e697275, 0x65642067, 0x65646f63, 0x49424d00, 0x204f464e, 0x7074756f, + 0x202c7475, 0x6e20726f, 0x202c746f, 0x7473756d, 0x20656220, 0x64657375, + 0x6e6f6320, 0x74736973, 0x6c746e65, 0x75642079, 0x676e6972, 0x63656420, + 0x0065646f, 0x61766e49, 0x2064696c, 0x5f65766d, 0x66667562, 0x675f7265, + 0x72656e65, 0x69206c61, 0x564d206e, 0x4f435f45, 0x425f4d4d, 0x4f5f4655, + 0x5f515455, 0x52444441, 0x6950002e, 0x70206570, 0x75746369, 0x6a206572, + 0x6120626f, 0x6165726c, 0x68207964, 0x61207361, 0x564d206e, 0x55425f45, + 0x52454646, 0x444f435f, 0x45475f45, 0x4152454e, 0x6568204c, 0x72656461, + 0x73736120, 0x6169636f, 0x20646574, 0x68746977, 0x00746920, 0x75736e55, + 0x726f7070, 0x20646574, 0x65707974, 0x20666f20, 0x5f65766d, 0x66667562, + 0x675f7265, 0x72656e65, 0x62206c61, 0x65666675, 0x6e692072, 0x74756f20, + 0x20747570, 0x75657571, 0x49002e65, 0x6c61766e, 0x62206469, 0x65666675, + 0x6e692072, 0x45564d20, 0x4d4f435f, 0x55425f4d, 0x554f5f46, 0x415f5154, + 0x20524444, 0x70786528, 0x65746365, 0x766d2064, 0x75625f65, 0x72656666, + 0x6172665f, 0x6f20656d, 0x766d2072, 0x75625f65, 0x72656666, 0x6e65675f, + 0x6c617265, 0x44002e29, 0x203a4250, 0x5f6d756e, 0x6d617266, 0x253d7365, + 0x73752064, 0x3d656761, 0x30257830, 0x64207838, 0x665f6270, 0x6e6c6c75, + 0x3d737365, 0x6c206425, 0x5f657669, 0x5f666572, 0x70736964, 0x73616d5f, + 0x78303d6b, 0x000a7825, 0x3a425044, 0x64322520, 0x6469203a, 0x32253d78, + 0x69642064, 0x616c7073, 0x726f5f79, 0x3d726564, 0x20643625, 0x73756c66, + 0x64253d68, 0x6e657020, 0x676e6964, 0x2064253d, 0x66667562, 0x755f7265, + 0x3d646573, 0x6e206425, 0x756f5f6f, 0x74757074, 0x2064253d, 0x725f7369, + 0x253d6665, 0x61742064, 0x74656772, 0x3d64695f, 0x000a6425, 0x7373696d, + 0x20676e69, 0x74726170, 0x666f2073, 0x61726620, 0x4900656d, 0x6c61766e, + 0x62206469, 0x65666675, 0x6e692072, 0x45564d20, 0x4d4f435f, 0x55425f4d, + 0x4e495f46, 0x44415f51, 0x28205244, 0x65707865, 0x64657463, 0x65766d20, + 0x6675625f, 0x5f726566, 0x73746962, 0x61657274, 0x002e296d, 0x64616568, + 0x70207265, 0x65737261, 0x72726520, 0x202c726f, 0x3a434950, 0x5d64255b, + 0x5244492c, 0x64255b3a, 0x52462c5d, 0x3a454d41, 0x5d64255b, 0x5444552c, + 0x2578305b, 0x25783830, 0x5d783830, 0x72747300, 0x206d6165, 0x64746962, + 0x68747065, 0x746f6e20, 0x70757320, 0x74726f70, 0x62206465, 0x61682079, + 0x61776472, 0x70006572, 0x64206369, 0x6e656d69, 0x6e6f6973, 0x756f2073, + 0x666f2074, 0x6e617220, 0x75006567, 0x7075736e, 0x74726f70, 0x63206465, + 0x6d6f7268, 0x6f665f61, 0x74616d72, 0x6364695f, 0x53505300, 0x6157203a, + 0x6e696e72, 0x53203a67, 0x61657274, 0x7375206d, 0x6d207365, 0x2065726f, + 0x65666572, 0x636e6572, 0x72662065, 0x73656d61, 0x61687420, 0x7270206e, + 0x6c69666f, 0x65702065, 0x74696d72, 0x25282073, 0x203e2064, 0x0a296425, + 0x00000000, 0x00009000, 0x0001e000, 0x0003c000, 0x0001e000, 0x0003c000, + 0x0003c000, 0x00087000, 0x000f0000, 0x000f0000, 0x00220000, 0x00220000, + 0x00220000, 0x00880000, 0x00880000, 0x00880000, 0x02200000, 0x02200000, + 0x02200000, 0x3a535050, 0x70784520, 0x65746365, 0x65722064, 0x65726566, + 0x6465636e, 0x53505020, 0x20642520, 0x62206f74, 0x61762065, 0x0a64696c, + 0x00000000, 0x02060606, 0x40404010, 0x75736e55, 0x726f7070, 0x20646574, + 0x6f736572, 0x6974756c, 0x00006e6f, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x2d746573, 0x2074706f, 0x63766568, + 0x3a636564, 0x736e5520, 0x6f707075, 0x64657472, 0x74706f20, 0x006e6f69, + 0x3a535052, 0x202d2d20, 0x65666552, 0x636e6572, 0x61422065, 0x53206b6e, + 0x65746174, 0x0a2d2d20, 0x53505200, 0x6572203a, 0x73755f66, 0x6d5f6465, + 0x3a6b7361, 0x20202020, 0x20202020, 0x25783020, 0x0a783830, 0x53505200, + 0x6572203a, 0x61765f66, 0x5f64696c, 0x6b73616d, 0x2020203a, 0x20202020, + 0x25783020, 0x0a783830, 0x53505200, 0x6572203a, 0x6f6e5f66, 0x78655f6e, + 0x69747369, 0x6d5f676e, 0x3a6b7361, 0x25783020, 0x0a783830, 0x53505200, + 0x6174203a, 0x74656772, 0x6172665f, 0x203a656d, 0x20202020, 0x20202020, + 0x0a642520, 0x53505200, 0x6174203a, 0x74656772, 0x636f705f, 0x2020203a, + 0x20202020, 0x20202020, 0x0a642520, 0x53505200, 0x616d203a, 0x65725f78, + 0x72665f66, 0x73656d61, 0x2020203a, 0x20202020, 0x0a642520, 0x53505200, + 0x6552203a, 0x73552066, 0x3a656761, 0x50520020, 0x52203a53, 0x50206665, + 0x3a73434f, 0x7c200020, 0x202c0020, 0x53505200, 0x202d203a, 0x20535052, + 0x74617473, 0x0a2d2065, 0x53505200, 0x7563203a, 0x635f7272, 0x746e756f, + 0x2020203a, 0x20202020, 0x20202020, 0x0a642520, 0x53505200, 0x7563203a, + 0x6e5f7272, 0x635f6765, 0x746e756f, 0x2020203a, 0x20202020, 0x0a642520, + 0x53505200, 0x6f66203a, 0x635f6c6c, 0x746e756f, 0x2020203a, 0x20202020, + 0x20202020, 0x0a642520, 0x53505200, 0x7563203a, 0x6c5f7272, 0x6f635f74, + 0x3a746e75, 0x20202020, 0x20202020, 0x0a642520, 0x53505200, 0x6f66203a, + 0x6c5f6c6c, 0x6f635f74, 0x3a746e75, 0x20202020, 0x20202020, 0x0a642520, + 0x53505200, 0x7563203a, 0x645f7272, 0x61746c65, 0x636f705f, 0x62736d5f, + 0x6572705f, 0x746e6573, 0x73616d5f, 0x30203a6b, 0x38302578, 0x52000a78, + 0x203a5350, 0x6c6c6f66, 0x6c65645f, 0x705f6174, 0x6d5f636f, 0x705f6273, + 0x65736572, 0x6d5f746e, 0x3a6b7361, 0x25783020, 0x0a783830, 0x53505200, + 0x6853203a, 0x2074726f, 0x6d726574, 0x66657220, 0x00203a73, 0x202c6425, + 0x53505200, 0x6f4c203a, 0x7420676e, 0x206d7265, 0x73666572, 0x7500203a, + 0x74544c53, 0x61745300, 0x61206b63, 0x70252074, 0x7473000a, 0x206b6361, + 0x20643425, 0x7830203d, 0x78383025, 0x0000000a, 0x2a2a2a2a, 0x53415220, + 0x20642543, 0x524f4241, 0x2a2a2054, 0x000a2a2a, 0x43502020, 0x20202020, + 0x7830203d, 0x78383025, 0x2020000a, 0x20205253, 0x203d2020, 0x30257830, + 0x000a7838, 0x41462020, 0x20202052, 0x7830203d, 0x78383025, 0x2020000a, + 0x32255b52, 0x3d205d64, 0x25783020, 0x0a783830, 0x73657200, 0x61756469, + 0x3020736c, 0x20702578, 0x78257830, 0x0000000a, 0x0000f708, 0x0000f708, + 0x0000f708, 0x0000f708, 0x00000000, 0x00000003, 0x00000001, 0x00000004, + 0x00000002, 0x00000005, 0x75736e55, 0x726f7070, 0x20646574, 0x6e776f64, + 0x6c616373, 0x20676e69, 0x69746172, 0x4600216f, 0x6978656c, 0x20656c62, + 0x6e776f44, 0x6c616373, 0x20676e69, 0x73656f64, 0x746f6e20, 0x70757320, + 0x74726f70, 0x6c697420, 0x6f206465, 0x75707475, 0x6f662074, 0x74616d72, + 0x6c46002e, 0x64207865, 0x63206c73, 0x20706f72, 0x6f727265, 0x636f2072, + 0x72727563, 0x202c6465, 0x61656c70, 0x66206573, 0x69207869, 0x2a002174, + 0x202a2a2a, 0x43534152, 0x41206425, 0x54524f42, 0x2a2a2a20, 0x20000a2a, + 0x20435020, 0x3d202020, 0x25783020, 0x0a783830, 0x53202000, 0x20202052, + 0x30203d20, 0x38302578, 0x20000a78, 0x52414620, 0x3d202020, 0x25783020, + 0x0a783830, 0x52202000, 0x6432255b, 0x203d205d, 0x30257830, 0x000a7838, + 0x000111d6, 0x000111d6, 0x000111d6, 0x000111d6, 0x33323130, 0x37363534, + 0x00003938, 0x33323130, 0x37363534, 0x62613938, 0x66656463, 0x72726f43, + 0x65747075, 0x6e692064, 0x20747570, 0x75657571, 0x4f002e65, 0x20796c6e, + 0x5f45564d, 0x46465542, 0x435f5245, 0x5f45444f, 0x4d415246, 0x726f2045, + 0x45564d20, 0x4655425f, 0x5f524546, 0x45444f43, 0x4e45475f, 0x4c415245, + 0x6c6c6120, 0x6465776f, 0x6e49002e, 0x696c6176, 0x75622064, 0x72656666, + 0x61656820, 0x20726564, 0x4d206e69, 0x435f4556, 0x5f4d4d4f, 0x5f465542, + 0x5154554f, 0x4444415f, 0x54002e52, 0x6c206f6f, 0x65677261, 0x71657220, + 0x74736575, 0x73656d20, 0x65676173, 0x6f54002e, 0x616c206f, 0x20656772, + 0x66667562, 0x6d207265, 0x61737365, 0x002e6567, 0x61766e49, 0x2064696c, + 0x66667562, 0x69207265, 0x564d206e, 0x4f435f45, 0x425f4d4d, 0x495f4655, + 0x415f514e, 0x2e524444, 0x45564d00, 0x723a5052, 0x705f6d61, 0x746e6972, + 0x20667562, 0x6e207369, 0x6120746f, 0x6c696176, 0x656c6261, 0x4d000a2e, + 0x50524556, 0x6172203a, 0x72705f6d, 0x66746e69, 0x6d75645f, 0x72662070, + 0x30206d6f, 0x0a702578, 0x54505200, 0x504d5544, 0x616c663a, 0x78253d67, + 0x6e69202c, 0x3d786564, 0x202c7525, 0x635f7277, 0x253d746e, 0x72202c75, + 0x6e635f64, 0x75253d74, 0x46000a2e, 0x75252d57, 0x7325203a, 0x45564d00, + 0x663a5052, 0x3d67616c, 0x202c7825, 0x3d786469, 0x202c7525, 0x635f7277, + 0x253d746e, 0x72202c75, 0x6e635f64, 0x75253d74, 0x20000a2e, 0x78343025, + 0x78382500, 0x0a73253a, 0x30252000, 0x00007832, 0x1007f000, 0x49574558, + 0x35565644, 0x2d37562f, 0x43564548, 0x3a434544, 0x65720020, 0x657a6973, + 0x7470203a, 0x78302072, 0x78383025, 0x77656e20, 0x7a69735f, 0x75252065, + 0x766d000a, 0x656d5f65, 0x65725f6d, 0x657a6973, 0x6c616d00, 0x3a636f6c, + 0x7a697320, 0x75252065, 0x616d202c, 0x75252078, 0x6572202c, 0x6e6f6967, + 0x2c752520, 0x676f6c20, 0x6c615f32, 0x206e6769, 0x000a7525, 0x6c6c616d, + 0x203a636f, 0x75746572, 0x64656e72, 0x25783020, 0x6d000a70, 0x6d5f6576, + 0x615f6d65, 0x636f6c6c, 0x6c6c4100, 0x7461636f, 0x6d206465, 0x726f6d65, + 0x61682079, 0x72772073, 0x20676e6f, 0x67696c61, 0x6e656d6e, 0x78450074, + 0x74636570, 0x61206465, 0x636f6c6c, 0x64657461, 0x6d656d20, 0x2079726f, + 0x50206e69, 0x45544f52, 0x44455443, 0x67657220, 0x2e6e6f69, 0x70784500, + 0x65746365, 0x6c612064, 0x61636f6c, 0x20646574, 0x6f6d656d, 0x69207972, + 0x5246206e, 0x42454d41, 0x72204655, 0x6f696765, 0x52002e6e, 0x3a435341, + 0x20642520, 0x2d2d2d2d, 0x2d2d2d2d, 0x2d2d2d2d, 0x2d2d2d2d, 0x6e756620, + 0x6f697463, 0x2d2d206e, 0x6c616320, 0x2d20736c, 0x7963202d, 0x73656c63, + 0x61202d20, 0x61726576, 0x2d206567, 0x202d2d2d, 0x0a78616d, 0x33252c00, + 0x202c7333, 0x34252020, 0x20202c64, 0x2c753725, 0x37252020, 0x20202c75, + 0x0a753725, 0x25732500, 0x73255b73, 0x25783020, 0x5d783830, 0x7325000a, + 0x2f5b7325, 0x25207325, 0x000a5d64, 0x73257325, 0x5d73255b, 0x7325000a, + 0x73257325, 0x25783000, 0x00783830, 0x25006425, 0x00202c64, 0x78343025, + 0x30250020, 0x00207838, 0x78323025, 0x00000020, 0x00045c20, 0x00045ca0, + 0x00045d20, 0x00045da0, 0x00045e20, 0x00017837, 0x09090909, 0x09090909, + 0x09090909, 0x00090909, 0x20746f6e, 0x74696177, 0x00676e69, 0x3d3d3d3d, + 0x3d3d3d3d, 0x44563d3d, 0x525f414d, 0x445f4745, 0x3d504d55, 0x3d3d3d3d, + 0x0a3d3d3d, 0x34302500, 0x78302864, 0x78343025, 0x20202029, 0x25783020, + 0x0a783830, 0x20732500, 0x656c6469, 0x6379635f, 0x0a73656c, 0x20732500, + 0x38312d25, 0x31252073, 0x000a6435, 0x54207325, 0x6c61746f, 0x6c64695f, + 0x20202065, 0x20202020, 0x35312520, 0x63000a64, 0x2065726f, 0x25206425, + 0x2d252073, 0x20733032, 0x65646f63, 0x6433253d, 0x63697020, 0x6433253d, + 0x736f7020, 0x5d75705b, 0x3325283d, 0x33252c64, 0x63202964, 0x253d6b6c, + 0x63000a64, 0x2065726f, 0x25206425, 0x2d252073, 0x20733032, 0x20202020, + 0x20202020, 0x63697020, 0x6433253d, 0x736f7020, 0x5d75705b, 0x3325283d, + 0x33252c64, 0x000a2964, 0x20746f6e, 0x20746573, 0x74696177, 0x00676e69, + 0x5f434f53, 0x2e464552, 0x54415453, 0x20205355, 0x20202020, 0x20202020, + 0x78257830, 0x4f53000a, 0x45525f43, 0x4f432e46, 0x4749464e, 0x20202020, + 0x20202020, 0x78302020, 0x000a7825, 0x5f434f53, 0x2e464552, 0x4556494c, + 0x20464552, 0x20202020, 0x20202020, 0x78257830, 0x4f53000a, 0x45525f43, + 0x54532e46, 0x414d504f, 0x20204b53, 0x20202020, 0x78302020, 0x000a7825, + 0x5f434f53, 0x532e434d, 0x54524154, 0x20202020, 0x20202020, 0x20202020, + 0x78257830, 0x4f53000a, 0x434d5f43, 0x4154532e, 0x20535554, 0x20202020, + 0x20202020, 0x78302020, 0x000a7825, 0x5f434f53, 0x2e465254, 0x54415453, + 0x20205355, 0x20202020, 0x20202020, 0x78257830, 0x4f53000a, 0x52545f43, + 0x42442e46, 0x41545347, 0x20535554, 0x20202020, 0x78302020, 0x000a7825, + 0x5f434f53, 0x2e4c4244, 0x4c525443, 0x20202020, 0x20202020, 0x20202020, + 0x78257830, 0x4f53000a, 0x42445f43, 0x54432e4c, 0x20314c52, 0x20202020, + 0x20202020, 0x78302020, 0x000a7825, 0x5f434f53, 0x2e4c4244, 0x54415453, + 0x20205355, 0x20202020, 0x20202020, 0x78257830, 0x4f53000a, 0x42445f43, + 0x54532e4c, 0x53555441, 0x20202031, 0x20202020, 0x78302020, 0x000a7825, + 0x5f434f53, 0x2e4c4244, 0x54415453, 0x20325355, 0x20202020, 0x20202020, + 0x78257830, 0x4f53000a, 0x42445f43, 0x54532e4c, 0x53555441, 0x20202033, + 0x20202020, 0x78302020, 0x000a7825, 0x5f434f53, 0x53544942, 0x41455254, + 0x43412e4d, 0x2e444142, 0x54415453, 0x20205355, 0x20202020, 0x25783020, + 0x53000a78, 0x425f434f, 0x54535449, 0x4d414552, 0x42444d2e, 0x41535449, + 0x4c494156, 0x20202020, 0x20202020, 0x78257830, 0x4f53000a, 0x49425f43, + 0x52545354, 0x2e4d4145, 0x5f464544, 0x4c525443, 0x20202020, 0x20202020, + 0x30202020, 0x0a782578, 0x434f5300, 0x5449425f, 0x45525453, 0x482e4d41, + 0x5250564d, 0x532e4445, 0x55544154, 0x20202053, 0x78302020, 0x000a7825, + 0x5f434f53, 0x53544942, 0x41455254, 0x43482e4d, 0x44414241, 0x4154532e, + 0x20535554, 0x20202020, 0x25783020, 0x53000a78, 0x45524148, 0x41525f44, + 0x69702e4d, 0x735f6570, 0x65746174, 0x25202020, 0x25282075, 0x000a2973, + 0x52414853, 0x525f4445, 0x692e4d41, 0x616c5f73, 0x635f7473, 0x2065726f, + 0x000a7525, 0x52414853, 0x525f4445, 0x6a2e4d41, 0x705f626f, 0x65736168, + 0x20202020, 0x000a7525, 0x52414853, 0x525f4445, 0x6a2e4d41, 0x735f626f, + 0x65746174, 0x20202020, 0x000a7825, 0x52414853, 0x525f4445, 0x6f2e4d41, + 0x6d5f7475, 0x20202062, 0x20202020, 0x000a7525, 0x52414853, 0x525f4445, + 0x742e4d41, 0x736e6172, 0x6d726f66, 0x20626d5f, 0x000a7525, 0x52414853, + 0x525f4445, 0x6c2e4d41, 0x5f747361, 0x6e69626d, 0x20206f66, 0x000a7525, + 0x52414853, 0x525f4445, 0x6f2e4d41, 0x75707475, 0x74735f74, 0x65706972, + 0x6f635f73, 0x656c706d, 0x20646574, 0x000a7525, 0x52414853, 0x525f4445, + 0x612e4d41, 0x5f716572, 0x69727473, 0x5f736570, 0x75737369, 0x25206465, + 0x53000a75, 0x2e414d44, 0x4c554146, 0x20202054, 0x20202020, 0x20202020, + 0x30202020, 0x0a782578, 0x61745300, 0x20737574, 0x6220666f, 0x6b636f6c, + 0x74206465, 0x736b7361, 0x726f6620, 0x726f6320, 0x75252065, 0x6c63203a, + 0x75253d6b, 0x53000a20, 0x535f434f, 0x54435359, 0x532e4c52, 0x45524e56, + 0x20202056, 0x20202020, 0x20202020, 0x20202020, 0x78252020, 0x5746000a, + 0x5645525f, 0x20202020, 0x20202020, 0x20202020, 0x20202020, 0x20202020, + 0x20202020, 0x20202020, 0x0a782520, 0x53455300, 0x4e4f4953, 0x4d41525f, + 0x7463612e, 0x5f657669, 0x65726f63, 0x20202073, 0x20202020, 0x20202020, + 0x000a7525, 0x6d726946, 0x65726177, 0x61747320, 0x20737574, 0x6d20666f, + 0x65747361, 0x63282072, 0x2065726f, 0x3a296425, 0x6b6c6320, 0x2064253d, + 0x4553000a, 0x4f495353, 0x41525f4e, 0x69662e4d, 0x61776d72, 0x5f736572, + 0x755f6e69, 0x20206573, 0x20202020, 0x2c642520, 0x2c642520, 0x2c642520, + 0x2c642520, 0x2c642520, 0x2c642520, 0x2c642520, 0x0a642520, 0x53455300, + 0x4e4f4953, 0x4d41525f, 0x73616d2e, 0x5f726574, 0x65726f63, 0x20202020, + 0x20202020, 0x20202020, 0x000a7525, 0x53534553, 0x5f4e4f49, 0x2e4d4152, + 0x7473616d, 0x615f7265, 0x636f6c6c, 0x64657461, 0x20202020, 0x25202020, + 0x53000a64, 0x49535345, 0x525f4e4f, 0x6d2e4d41, 0x65747361, 0x69735f72, + 0x6c616e67, 0x20202073, 0x20202020, 0x30252020, 0x25207838, 0x20783830, + 0x78383025, 0x4553000a, 0x4f495353, 0x41525f4e, 0x69702e4d, 0x72757463, + 0x695f7365, 0x69705f6e, 0x20206570, 0x20202020, 0x0a642520, 0x53455300, + 0x4e4f4953, 0x4d41525f, 0x7069702e, 0x69705f65, 0x61745f63, 0x20206c69, + 0x20202020, 0x20202020, 0x000a7525, 0x53534553, 0x5f4e4f49, 0x2e4d4152, + 0x65706970, 0x6369705f, 0x6165685f, 0x20202064, 0x20202020, 0x25202020, + 0x53000a75, 0x49535345, 0x525f4e4f, 0x702e4d41, 0x69646e65, 0x735f676e, + 0x65746174, 0x20202020, 0x20202020, 0x75252020, 0x4553000a, 0x4f495353, + 0x41525f4e, 0x65732e4d, 0x6f697373, 0x74735f6e, 0x20657461, 0x20202020, + 0x20202020, 0x0a752520, 0x53455300, 0x4e4f4953, 0x4d41525f, 0x6d6f632e, + 0x74656c70, 0x705f6465, 0x75746369, 0x20736572, 0x20202020, 0x000a7525, + 0x53534553, 0x5f4e4f49, 0x2e4d4152, 0x6576696c, 0x7274735f, 0x5f657069, + 0x64616568, 0x20202020, 0x25202020, 0x53000a75, 0x49535345, 0x525f4e4f, + 0x6c2e4d41, 0x5f657669, 0x69727473, 0x745f6570, 0x2e6c6961, 0x65646e69, + 0x75252078, 0x4553000a, 0x4f495353, 0x41525f4e, 0x696c2e4d, 0x735f6576, + 0x70697274, 0x61745f65, 0x702e6c69, 0x64696369, 0x0a752520, 0x53455300, + 0x4e4f4953, 0x4d41525f, 0x76696c2e, 0x74735f65, 0x65706972, 0x6961745f, + 0x65722e6c, 0x20207966, 0x000a7525, 0x73202d2d, 0x63746977, 0x676e6968, + 0x0a2d2d20, 0x53455300, 0x4e4f4953, 0x4d41525f, 0x78656e2e, 0x6f625f74, + 0x745f746f, 0x6e656b6f, 0x20202020, 0x20202020, 0x000a7525, 0x53534553, + 0x5f4e4f49, 0x2e4d4152, 0x5f626f6a, 0x75657571, 0x6f742e65, 0x206e656b, + 0x20202020, 0x25202020, 0x53000a75, 0x49535345, 0x525f4e4f, 0x6a2e4d41, + 0x615f626f, 0x76697463, 0x20202065, 0x20202020, 0x20202020, 0x75252020, + 0x4553000a, 0x4f495353, 0x41525f4e, 0x6f6a2e4d, 0x68705f62, 0x5f657361, + 0x6e756f63, 0x20726574, 0x20202020, 0x0a752520, 0x53455300, 0x4e4f4953, + 0x4d41525f, 0x626f6a2e, 0x6174735f, 0x705f7472, 0x20206369, 0x20202020, + 0x20202020, 0x000a7525, 0x53534553, 0x5f4e4f49, 0x2e4d4152, 0x5f626f6a, + 0x5f646e65, 0x20636970, 0x20202020, 0x20202020, 0x25202020, 0x53000a75, + 0x49535345, 0x525f4e4f, 0x732e4d41, 0x61657274, 0x69705f6d, 0x65685f63, + 0x20206461, 0x20202020, 0x75252020, 0x2d2d000a, 0x696c7320, 0x71206563, + 0x65756575, 0x2d2d2073, 0x4553000a, 0x4f495353, 0x41525f4e, 0x69662e4d, + 0x735f6f66, 0x6563696c, 0x626f6a5f, 0x20202020, 0x20202020, 0x20642520, + 0x72746e65, 0x0a736569, 0x53455300, 0x4e4f4953, 0x4d41525f, 0x6669662e, + 0x6c735f6f, 0x5f656369, 0x706d6f63, 0x6574656c, 0x20202020, 0x65206425, + 0x6972746e, 0x000a7365, 0x6576696c, 0x626f6a5f, 0x77733e2d, 0x68637469, + 0x7165725f, 0x74736575, 0x20202020, 0x20202020, 0x20202020, 0x000a7525, + 0x6576696c, 0x626f6a5f, 0x65723e2d, 0x73657571, 0x5f646574, 0x626d756e, + 0x6f5f7265, 0x6f635f66, 0x20736572, 0x000a7525, 0x6576696c, 0x626f6a5f, + 0x6f633e2d, 0x5f736572, 0x746f6f62, 0x20206465, 0x20202020, 0x20202020, + 0x20202020, 0x000a7525, 0x6576696c, 0x626f6a5f, 0x69703e2d, 0x735f6570, + 0x63746977, 0x20202068, 0x20202020, 0x20202020, 0x20202020, 0x000a7525, + 0x75706e69, 0x75622074, 0x72656666, 0x74732073, 0x73757461, 0x000a2d3a, + 0x65727473, 0x685f6d61, 0x3a646165, 0x6d207525, 0x65747361, 0x65685f72, + 0x253a6461, 0x616d2075, 0x72657473, 0x6176615f, 0x253a6c69, 0x62000a75, + 0x65666675, 0x636f2072, 0x61707563, 0x3a79636e, 0x62000a2d, 0x695f6675, + 0x25207864, 0x73000a75, 0x61657274, 0x6425206d, 0x6f63000a, 0x255b6572, + 0x25205d75, 0x63000a64, 0x5f65726f, 0x64616568, 0x5d75255b, 0x0a752520, + 0x52545300, 0x004d4145, 0x43494c53, 0x4d002045, 0x20202043, 0x52410020, + 0x20205145, 0x41525400, 0x0020534e, 0x5054554f, 0x50005455, 0x51455049, + 0x41570020, 0x4f005449, 0x52524556, 0x31004e55, 0x41505453, 0x50004547, + 0x44494349, 0x544e4900, 0x00465542, 0x4556494c, 0x53524150, 0x4c004445, + 0x43455649, 0x00504d4f, 0x49434950, 0x5845444e, 0x4c414e00, 0x504e4900, + 0x45004349, 0x554f434e, 0x46554254, 0x45525000, 0x51455356, 0x46455200, + 0x4b4e4142, 0x5345525f, 0x4f005445, 0x55505455, 0x4c465f54, 0x00485355, + 0x44524c43, 0x45004250, 0x445f434e, 0x505f5045, 0x52004349, 0x535f4e55, + 0x45544154, 0x494c5300, 0x465f4543, 0x004f4649, 0x4556494c, 0x494c535f, + 0x44004543, 0x45555145, 0x45004555, 0x4555514e, 0x43004555, 0x52004c4f, + 0x44495345, 0x004c4155, 0x45544942, 0x4553434e, 0x49420051, 0x434e4554, + 0x00465542, 0x4d434e45, 0x464e4942, 0x4143004f, 0x42434142, 0x00535449, + 0x50564d48, 0x00444552, 0x4f424552, 0x4445544f, 0x4f525000, 0x43005342, + 0x544e554f, 0x50560053, 0x00434239, 0x56455250, 0x4152465f, 0x4500454d, + 0x55425458, 0x52454646, 0x50495000, 0x57004445, 0x57003050, 0x45003150, + 0x535f444e, 0x50495254, 0x424d0045, 0x4f464e49, 0x4145485f, 0x00524544, + 0x46464552, 0x454d4152, 0x56494c00, 0x4f4c5345, 0x4f4a0054, 0x57530042, + 0x48435449, 0x46455200, 0x454c4449, 0x46455200, 0x544f4c53, 0x46455200, + 0x49525453, 0x45520050, 0x52545346, 0x00455049, 0x4d464552, 0x44534942, + 0x5000414d, 0x44455049, 0x4e494152, 0x514e4500, 0x494c535f, 0x45004543, + 0x4d5f514e, 0x57525f42, 0x514e4500, 0x5f424d5f, 0x4e450057, 0x52465f51, + 0x00454d41, 0x5f514e45, 0x45005057, 0x535f514e, 0x50495254, 0x41524400, + 0x535f4e49, 0x50495254, 0x424d0045, 0x45525f49, 0x54534947, 0x4d005245, + 0x41500043, 0x43455352, 0x00504d4f, 0x53424f4a, 0x00544f4c, 0x525f434d, + 0x0030574f, 0x525f434d, 0x0031574f, 0x49415244, 0x45445f4e, 0x52545350, + 0x00455049, 0x53504544, 0x50495254, 0x54535f45, 0x00545241, 0x415f5748, + 0x4c494156, 0x5f574800, 0x454c4449, 0x444e4200, 0x52474d5f, 0x4c424400, + 0x4f4c535f, 0x4f520054, 0x5f4e4957, 0x44414f4c, 0x574f5200, 0x5f54554f, + 0x524f5453, 0x4f520045, 0x52544357, 0x4f4c5f4c, 0x43004441, 0x55425249, + 0x52500046, 0x54535645, 0x45504952, 0x43495000, 0x504d4f43, 0x46525400, + 0x4c424400, 0x52444c5f, 0x4d445600, 0x52545341, 0x00455049, 0x414d4456, + 0x544f4c53, 0x52545300, 0x5f455049, 0x504d4f43, 0x58495000, 0x4c5f4e49, + 0x0044414f, 0x5f574f52, 0x524f5453, 0x4d530045, 0x424d5f56, 0x4f464e49, + 0x4c424400, 0x0053425f, 0x5f465254, 0x524f5453, 0x4f435f45, 0x5254004d, + 0x54535f46, 0x45504952, 0x504d4f43, 0x52544300, 0x504f004c, 0x45004e45, + 0x4500534f, 0x425f534f, 0x52004655, 0x44524f45, 0x46005245, 0x454d4152, + 0x455a4953, 0x59485000, 0x00444953, 0x004e5552, 0x00424a50, 0x00545753, + 0x00424a43, 0x00037094, 0x000370e0, 0x0003712c, 0x0003714c, 0x000371b0, + 0x000371fc, 0x00037248, 0x000182b1, 0x000182b8, 0x000182bf, 0x000182c6, + 0x000182cd, 0x000182d4, 0x000182db, 0x44532020, 0x2020414d, 0x61747320, + 0x30737574, 0x20202020, 0x74617473, 0x20317375, 0x207c2020, 0x6c637273, + 0x20206e65, 0x6c747364, 0x7c206e65, 0x70747320, 0x7c206e65, 0x70747320, + 0x7c206469, 0x76656420, 0x65702023, 0x6e69646e, 0x20000a67, 0x32255b20, + 0x20205d64, 0x78383025, 0x25202020, 0x20783830, 0x207c2020, 0x20643625, + 0x64362520, 0x25207c20, 0x25206432, 0x7c206432, 0x78322520, 0x78322520, + 0x23207c20, 0x25206425, 0x20202c64, 0x20642523, 0x000a6425, 0x414d4453, + 0x50545320, 0x4d415220, 0x000a203a, 0x20202020, 0x2d643225, 0x20643225, + 0x2000203a, 0x00643725, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x02020100, + 0x03030303, 0x04040404, 0x04040404, 0x05050505, 0x05050505, 0x05050505, + 0x05050505, 0x06060606, 0x06060606, 0x06060606, 0x06060606, 0x06060606, + 0x06060606, 0x06060606, 0x06060606, 0x07070707, 0x07070707, 0x07070707, + 0x07070707, 0x07070707, 0x07070707, 0x07070707, 0x07070707, 0x07070707, + 0x07070707, 0x07070707, 0x07070707, 0x07070707, 0x07070707, 0x07070707, + 0x07070707, 0x08080808, 0x08080808, 0x08080808, 0x08080808, 0x08080808, + 0x08080808, 0x08080808, 0x08080808, 0x08080808, 0x08080808, 0x08080808, + 0x08080808, 0x08080808, 0x08080808, 0x08080808, 0x08080808, 0x08080808, + 0x08080808, 0x08080808, 0x08080808, 0x08080808, 0x08080808, 0x08080808, + 0x08080808, 0x08080808, 0x08080808, 0x08080808, 0x08080808, 0x08080808, + 0x08080808, 0x08080808, 0x08080808, 0x63617453, 0x7461206b, 0x0a702520, + 0x61747300, 0x25206b63, 0x3d206434, 0x25783020, 0x0a783830, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x40ab4107, 0x1e0f43d8, 0x23130115, 0x03030524, 0x1e040314, 0x53420707, + 0x58410342, 0x192586f4, 0x1d110314, 0xa8010304, 0x05fe0bf2, 0xc8040301, + 0x53fe0bf2, 0x01258622, 0x05140314, 0xa8040304, 0x33fe0bf2, 0x0001f505, + 0xf5ff0218, 0x02180403, 0x234027ff, 0xfde8000e, 0x0e030435, 0xf5fde800, + 0x02181002, 0x1403f5ff, 0x23ff0218, 0xfde7f00e, 0xfe0b0435, 0xd007fc4e, + 0x03334327, 0x3d07e307, 0x120004f5, 0xc107ff02, 0x12070d47, 0x34f13333, + 0xff021000, 0x87f848dc, 0x0024f120, 0xdcff0210, 0xf608004d, 0x01033427, + 0x120023f5, 0x4087ff02, 0x120043f5, 0xe623ff02, 0x40273c87, 0x160034f5, + 0xec83ff02, 0x333d070f, 0x33330e1c, 0x00001f83, 0xec333ff0, 0xf5e1ab10, + 0x02140034, 0x043ef5ff, 0x9bff0214, 0xfc8e0ef4, 0xb207f64e, 0xa0079107, + 0x93406c27, 0x02f60bf8, 0xefff7ea7, 0x07451efd, 0x41bc10cb, 0x8401c607, + 0xd633d407, 0x840541c3, 0xfe74de23, 0x337411fe, 0x4c53184c, 0xf642cc1d, + 0x23032c07, 0x0d0723e3, 0x087e1907, 0x9b4027ff, 0x00270ef4, 0x1d072a07, + 0x087e3c07, 0x2bac0bff, 0xd69c0bbc, 0xf68ebabf, 0xefff2ea7, 0xe8031efd, + 0x272411f3, 0x6a4ddc33, 0xfe0bf6fc, 0xb107fb4e, 0xe53ec007, 0x2b070c07, + 0xfeb31ea7, 0x5efb0efe, 0xfb4efec3, 0xb107c007, 0x1c07cf3e, 0x00273b07, + 0xfeb32ea7, 0x5efb0efe, 0x4f27febb, 0x10000011, 0x33a0f49b, 0x0001f505, + 0xf5ff0218, 0x02180402, 0x233027ff, 0xfde8000e, 0x4c270335, 0x000e0323, + 0x04f5fde8, 0xff021810, 0x181402f5, 0x0e23ff02, 0x35fde7f0, 0x83fe0b03, + 0x03330f0c, 0xff7e0e23, 0xc60439ff, 0x17139e44, 0x33fe0b00, 0x1e040303, + 0xf1f3e803, 0x02100004, 0xdc3327ff, 0xf2fc6a4d, 0x0533fe0b, 0x04f54327, + 0xff021800, 0x180402f5, 0x4027ff02, 0xe8000e23, 0x030435fd, 0xfde8000e, + 0x181001f5, 0x02f5ff02, 0xff021814, 0xe7f00e23, 0x0b0435fd, 0xbefe4efe, + 0xf6000aa9, 0xa7302706, 0xfeffff4e, 0x0d6043bd, 0x930af313, 0x02f4c7f4, + 0xfe8e4305, 0x7abefe4e, 0x06f60008, 0x4ea73027, 0xbdfeffff, 0x130d6043, + 0xf4930af3, 0x0502f4a8, 0x4efe8e43, 0x124cbefe, 0x1b04cc00, 0x4ea73027, + 0xbdfeffff, 0xc40d6043, 0xf3130d03, 0x85f493a9, 0x430502f4, 0xfe8e0027, + 0x4ea7fc4e, 0x99ffffff, 0xd4c6274d, 0x051e0027, 0xfe9b2cbe, 0xffff4ea7, + 0xf94411fe, 0x000a3843, 0x4bc407ff, 0xc8ce233f, 0xd32efff5, 0x101e0027, + 0x2d073007, 0xf5bf0ea7, 0xbe1c07ff, 0x19fe9bac, 0xa707e6c1, 0xffffff3e, + 0x34bd4127, 0x33990634, 0x9b40270f, 0x41270ef4, 0x34f53387, 0xff02b040, + 0x0027123c, 0xfc93fc8e, 0xa702f414, 0xfeffffde, 0xf08bc001, 0xd4990536, + 0x1e47760a, 0x1504c8f4, 0xfe9bb0be, 0xffff4ea7, 0x0a4499fe, 0x45160127, + 0x031e0027, 0x30270127, 0xffff4ea7, 0x0a439dfe, 0x1499fc8e, 0x1b47d814, + 0x418a049d, 0xc1133114, 0x340b3c02, 0x43334307, 0x2b9003c5, 0xc5210824, + 0xfe0b3c04, 0x412b4007, 0x8663f49b, 0x03200716, 0x634f9b28, 0x044e3827, + 0xf39b242e, 0x27f31e65, 0x00007f4f, 0x61f49b40, 0x4ea7fe0b, 0x91fdefff, + 0x182c3342, 0x1e1d2c53, 0x8904991b, 0x231231c4, 0x87438341, 0x2b443334, + 0x99400b43, 0x45e66144, 0x9988019d, 0x13078803, 0x23ca1123, 0x4efe0bdd, + 0x3ed007fd, 0x88d499c6, 0x3f9b45f6, 0x634f9b62, 0x4027432e, 0x8e8ad49d, + 0x6af09bfd, 0x0b6bf09b, 0x62f19b10, 0x9b63f09b, 0x4ca3604f, 0x60f49b10, + 0x0b63f09b, 0x604f9bfe, 0x9b104ce3, 0x4f9b60f4, 0xff3ea76b, 0x4327fdef, + 0x022034d5, 0x48dc3481, 0xff3ea7fc, 0x3481fdef, 0x08004ddc, 0xd54427fa, + 0xd5022034, 0x27022434, 0x6832d520, 0xdf3ea706, 0x3205fdeb, 0x00004f27, + 0x34150704, 0x990ef29b, 0x45468804, 0x029d4027, 0x89049d88, 0xf393fe0b, + 0x9902f2d0, 0x0f6baa34, 0x309d4223, 0x144f6bb0, 0x00270f4c, 0x0bbc30c5, + 0x100c5cfe, 0xf2b2f493, 0xac41c102, 0x1007183c, 0x070f1c83, 0x0f4c8341, + 0x2f274333, 0x80020100, 0x2f6b247b, 0x24964127, 0xf3934027, 0x3302f28c, + 0xac31c545, 0xc54c349d, 0x0f9bc032, 0xc034c160, 0xab830ce3, 0x93fe0b04, + 0x02f26ff4, 0x538b4099, 0x0b018302, 0x634f9bfe, 0x48134783, 0xf49b4800, + 0x9bfe0b65, 0xf493630f, 0xc102f250, 0x43075043, 0x042b4333, 0x030b0373, + 0xe81efe0b, 0x9b674f9b, 0x4c30640f, 0x0b00a720, 0x9b4103fe, 0x412365f4, + 0x5b1f4c13, 0x0b012304, 0xa7fb4efe, 0xffffff4e, 0xb9380cc1, 0x070a5a4b, + 0x5e0027d0, 0x4307009d, 0x8331d099, 0xe4070f4c, 0x45330183, 0xe40be333, + 0x30072007, 0xf5a4ee23, 0x332333ff, 0x71322b35, 0x613d0be1, 0x35e481e2, + 0x0be14131, 0x25210742, 0x802c8334, 0x24963127, 0x23073027, 0x11382633, + 0x151e27a3, 0xa3101c38, 0x380e1e23, 0xa304001d, 0x0c061e21, 0x802ca310, + 0x45334007, 0x402b0333, 0x429d4d0b, 0x54d1c114, 0x41454031, 0x439dc319, + 0x54d3c115, 0xe231e121, 0x4105300b, 0xd3c54215, 0x27c41954, 0x1d410301, + 0x31d499c4, 0x0330d399, 0x9d310341, 0xd39d31d4, 0x30d49930, 0x190c42d4, + 0x2b4307c3, 0x804cfc4b, 0xfb8eff56, 0x0499fa4e, 0x30039931, 0x2b340bc1, + 0x07e40743, 0x27ef6bd1, 0x31411ea0, 0x0b324131, 0x07233321, 0x284d2b42, + 0x14349941, 0x46204cd8, 0xdc143499, 0xd817104c, 0x15b60e44, 0x0499d24e, + 0xd84e1b32, 0x192f804c, 0x1d4103b4, 0x300499b4, 0x4123ec07, 0x049def6b, + 0x07a12730, 0x0741834e, 0x33353334, 0x99342b43, 0xce073104, 0xc103300b, + 0x1ea9e4ce, 0x1e344105, 0x5404c104, 0xe65004c5, 0xff3ea7a7, 0x4127ffff, + 0x063534bd, 0x270f3399, 0x0ef49b40, 0x33874127, 0xb04034f5, 0x0499ff02, + 0x30029931, 0x2b320399, 0x2b4f6b42, 0x803c1834, 0x8e32049d, 0x99f84efa, + 0x1e218904, 0x94074383, 0x44879433, 0x1d31942b, 0xe30bb907, 0xbec5b00b, + 0x07d32b58, 0x07a107c0, 0x102f6b43, 0x000001df, 0x00df2701, 0x9d010000, + 0xbdc560b2, 0x0ba3315c, 0x0e80274d, 0xa7812743, 0xfde77f2e, 0xa411a301, + 0xb89d2e05, 0xd0c3c561, 0x15d4c4c5, 0x35e0272d, 0x6f3ea72e, 0x4c27fde7, + 0x1534051a, 0x61b4993d, 0x44a63e35, 0x99fc5d7e, 0xc39989c4, 0x03290788, + 0x0c07582c, 0x31034103, 0xc49d020b, 0x88c39d89, 0xfc4ef88e, 0x07300499, + 0x2744d6d0, 0x27771ec0, 0xa66b1ec0, 0x89d4994a, 0x43834123, 0x34333407, + 0x342b4487, 0x34993d0b, 0x9947f661, 0x3ec16030, 0x07400758, 0x33433310, + 0x0b142b15, 0xc114211d, 0xe42b5c33, 0x271ee30b, 0xdc8ad499, 0xd4993841, + 0x31d29932, 0x01830407, 0x10073007, 0x15333333, 0x3407132b, 0x24ce3103, + 0x32d39d1d, 0x20071d0b, 0x0d073e07, 0x11ff007e, 0x0b433304, 0x88d499c4, + 0x42c8e027, 0x8e0c078f, 0x07f54efc, 0x070107d0, 0x2b720781, 0x635f9b02, + 0x9b1850ce, 0x42076c3f, 0xda604c03, 0x01070d34, 0xb97e1207, 0x5ed027fb, + 0xd3c10114, 0xe3a00750, 0x073333a7, 0xcc432b4a, 0xa8071240, 0x4a07a7e3, + 0x402c432b, 0xf55ed127, 0x07702700, 0xfc1f7e0d, 0x9931de99, 0x302730d4, + 0xd39d4e1b, 0x6b94078a, 0x8329079f, 0x07420721, 0x334333c2, 0x2b6907c5, + 0x0b6103c4, 0x509ececd, 0xc441c131, 0x43331333, 0x0a07b107, 0x0b14c399, + 0x07042bb4, 0xd84b2b45, 0x38072d37, 0x40083b2b, 0x30c818d6, 0x070d0722, + 0xfb187e1c, 0x41034907, 0x9932d49d, 0xab0714c4, 0xd1274483, 0xd0274486, + 0x1027d203, 0x0008711e, 0x070901da, 0x27991e96, 0xc1c02700, 0x4a0754d3, + 0x432b3333, 0xce2c40c8, 0xa3070938, 0xd4271027, 0xd2c14d1e, 0xff4ea738, + 0x43b9ffff, 0x24190a5a, 0x0d07344e, 0xd0be1807, 0xa807fea0, 0x1027a72b, + 0xc4412b1e, 0x33733007, 0x1c07430b, 0x9d90d4c5, 0x0d0732d9, 0x99fdd87e, + 0x0c1132d4, 0xd49d4103, 0x7e0d0732, 0xc333fe56, 0x1c0b1007, 0x0a07d027, + 0x36fb207e, 0x070807d5, 0xfaa27e17, 0xf58e0d07, 0x93603f9b, 0x02ee53f2, + 0x58ac24c1, 0xc024c148, 0xab830ce3, 0x83430704, 0x4ca3104c, 0xcb40ab0c, + 0x9b38c634, 0x3cd860f4, 0x1f9b1e83, 0x834cd863, 0x4024c10d, 0x1b4c2299, + 0x08243241, 0x93202740, 0x02ee17f0, 0x0bfe7c5e, 0x07fb4efe, 0x09fd93b0, + 0xd4c102ee, 0x4cd29940, 0x24324b1b, 0x20274008, 0x1b070d07, 0x07fe5c7e, + 0x9b0344c0, 0xd4c5634f, 0x9be01e40, 0x84be630f, 0xd1c10011, 0x7e0d0744, + 0xd499fc7c, 0x1b41c4aa, 0xc1634f9b, 0x432b40d3, 0x00014f50, 0x4f9b7000, + 0x004f0363, 0xc5f00000, 0xc44440d4, 0x927e0d07, 0xa70fd6fb, 0xfb8e0c07, + 0xd007fd4e, 0x3f9b0401, 0xc8432b63, 0x03997340, 0x93312409, 0xfea3f9f2, + 0x32240f1e, 0xa4a7f293, 0x93061efe, 0xfea254f2, 0xed7ef493, 0xaa439d02, + 0x999c42c5, 0x9f7e08d0, 0x0ad099fa, 0x9bfab47e, 0xd00160f0, 0xc0ff547e, + 0xf393f902, 0x9902ed5c, 0xd2118a34, 0xc10e41d8, 0x42079033, 0x432b3333, + 0x23074108, 0xed42f493, 0x3c42c502, 0x270bdd99, 0x8b4d9d30, 0x9b8c439d, + 0xfd0e630f, 0x0010ce9e, 0xfe4efd8e, 0x078a0499, 0x4041dce0, 0x99310399, + 0x34ce3204, 0x624f9b37, 0x2b633f9b, 0x604ccc43, 0x631f9b20, 0xed02f493, + 0x4043c102, 0x074c4299, 0x32432b41, 0x27400824, 0x0e0e0720, 0xfd535efe, + 0x9bfcc97e, 0x400b624f, 0x8e62f49b, 0x07f94efe, 0x639f9ba0, 0x9b62bf9b, + 0xfd9363cf, 0xc102eccc, 0x0d0744d1, 0x7e48dac5, 0x0d07fb64, 0x99fa9c7e, + 0x41588ad4, 0x0c2b0b07, 0xd4c1f98e, 0x4cd29940, 0x2452491b, 0xd0274028, + 0xd207031e, 0xec9af093, 0xf9007e02, 0xec92f093, 0xff687e02, 0x9b624f9b, + 0x432b633f, 0x9331a4d2, 0x02ec7ff0, 0xdc8a0499, 0x04992641, 0x99484630, + 0x41233104, 0x34074183, 0x43333533, 0x34f9342b, 0x00047f9c, 0x07104c5c, + 0xbe2d0719, 0x9bfea0c6, 0x4f9b620f, 0x8e042b63, 0x93f84ef9, 0x02ed1bf4, + 0xc1124a99, 0xaff6ec4d, 0x4ea70115, 0xa7ffffff, 0xfffb430e, 0x0cdc4cd1, + 0x000e4fbe, 0x0fc4b007, 0xffffffff, 0xbe0c070b, 0x27fea91f, 0x07f88e05, + 0xa7333330, 0xfd4fff4e, 0x48110027, 0x04d03cf1, 0x39f1ff00, 0xff0004cc, + 0xfff6cabe, 0xebff3ea7, 0x273a05fd, 0x0200004f, 0x27341512, 0x0ef49b40, + 0x29070027, 0x5bbe1c07, 0xf393fff6, 0x9302ebcc, 0x02f1d6f2, 0xe37f3ce3, + 0x34197f2c, 0xc2803c03, 0xc907f932, 0xec92f493, 0xc1c25302, 0x3c07ec42, + 0x05ae4f9b, 0x03c12324, 0x27f3a024, 0xc0bafda0, 0xa7ff0004, 0xfffb434e, + 0x45664479, 0xfb410ea7, 0x0d6fbeff, 0xff4ea700, 0xf193fd4f, 0x0102ec5c, + 0xec10c143, 0x149d4127, 0x971a9d12, 0x017018d5, 0x016a13bd, 0x14210251, + 0x6b3924ce, 0xff4ea72f, 0x2c33feff, 0xa343110c, 0x1000002e, 0xdfff4ea7, + 0x0842d5fd, 0x084cd502, 0x6e1c9d02, 0x51421c9d, 0xf5338700, 0x000d4830, + 0xa73127ff, 0xfdcfff4e, 0xc16843c5, 0x0c03ec10, 0xfd7ebe44, 0xf9fc93ff, + 0xc32102eb, 0x344ed451, 0x11be0d07, 0x0ad6fea6, 0x2740d499, 0x68c4bd00, + 0x40d49901, 0x4e234333, 0xc5fffaa4, 0xd499e0c4, 0x15c49d39, 0x3534d4c1, + 0xbd4027c4, 0x270143c4, 0x12c49d43, 0x493cd4c1, 0x2cc48d44, 0xf74ef88e, + 0xc007a007, 0x0730ac03, 0x039c070a, 0xcbc15c9c, 0x1236be38, 0x07800700, + 0x64ccc109, 0x00122bbe, 0x0a077007, 0x00143bbe, 0xb82b0907, 0x001433be, + 0xfb9bb253, 0x53c72b24, 0x25fc9bc2, 0xfb4ef78e, 0xf055f1a3, 0x8914fe89, + 0x312316f0, 0xfd93be07, 0x0b02eb60, 0xa1b12b34, 0x8dd16df4, 0xdb2d10d3, + 0xc207d04d, 0x16ecd1c1, 0x1df41545, 0x8d4f07f4, 0xfe8d16f0, 0x07f25114, + 0x98dc8d34, 0x0ebe0d07, 0xc0070004, 0xd43106f6, 0x2b12d399, 0x20d4354b, + 0x7e0d0734, 0x4427ff6a, 0x0712d49d, 0x8ef1830c, 0x93fc4efb, 0x02eb0bfd, + 0xd612d499, 0x8e002744, 0xcb44e4fc, 0x29d46900, 0x31d309dc, 0x2bc40bd2, + 0x0b242bc3, 0x6cd2d52c, 0x2ec4c201, 0x07e0d4c1, 0x05310332, 0xca441143, + 0x335e2043, 0x89124901, 0x13812614, 0x2c0b249b, 0x230b2287, 0x1ea70827, + 0x27fef2cb, 0xf31dbe34, 0x0dfdbeff, 0x93402700, 0x02eaaffd, 0x0127d40d, + 0xbe1adc8d, 0x07000429, 0x300c030d, 0x0011eebe, 0x0c030d07, 0x11e5be5c, + 0xf3f6be00, 0x030d07ff, 0xa4be300c, 0x0d070014, 0xbe5c0c03, 0x2100149b, + 0xf45dbed0, 0xecd3c1ff, 0x99393299, 0x42c20434, 0x97d4991d, 0x33c14566, + 0x6cd3d534, 0x070f1e01, 0x9d410342, 0x00273934, 0xa65e4127, 0xff4ea700, + 0x4311fd4f, 0xea42f493, 0x7443d502, 0x97439901, 0x016b43bd, 0x43c4201e, + 0x030d071d, 0x7cbe300c, 0x0d070011, 0xbe5c0c03, 0xc1001173, 0x44c1ecd4, + 0x6cd4d534, 0x11fd9301, 0xc22702ea, 0xfaf30ea7, 0x12dc9dff, 0x000b9dbe, + 0x0627002c, 0xd3d1fc8e, 0x40070168, 0x43f54433, 0xff00051c, 0x016cd3d1, + 0x052043f5, 0xd3d1ff00, 0x43f50170, 0xff000524, 0x0174d3d1, 0x052843f5, + 0x3ea7ff00, 0xfdffffff, 0x0005100c, 0xbd4127ff, 0x99063634, 0x40270f33, + 0x270ef49b, 0xf5338741, 0x02b04034, 0x270027ff, 0x12d49d40, 0xf193fc8e, + 0x8902e9a0, 0x13699814, 0x4ce2430b, 0xbe5efedd, 0x19fd4efe, 0x0703390d, + 0x4744272d, 0xf52333ed, 0x02120024, 0x273387ff, 0xf5e10340, 0x02160034, + 0x870129ff, 0xf543273e, 0x02120034, 0x0034f1ff, 0xdcff0210, 0x2e87f848, + 0x100024f1, 0x4ddcff02, 0x07f60800, 0x03342741, 0x0023f54a, 0x83ff0212, + 0x2d070f4c, 0x23331653, 0x27141c33, 0x104c3330, 0x23f541ab, 0xff021400, + 0x140424f5, 0xf39bff02, 0x4efd8e0e, 0x07e007fd, 0x915e1ed1, 0x0834f5e4, + 0x99ff0218, 0xe07104e4, 0x3305e399, 0x99e16145, 0x0d2b20e2, 0x180043f5, + 0x1d0bff02, 0x180440f5, 0x3027ff02, 0xe8004e23, 0x034335fd, 0xfde8004e, + 0x181041f5, 0x2c33ff02, 0x1440f510, 0xa3ff0218, 0x0000002f, 0xf04e2304, + 0x4235fde7, 0xe471e391, 0x4d2b430b, 0xd027e495, 0x4704e499, 0xf1433334, + 0x02100044, 0x333103ff, 0x4c53184c, 0xc834331d, 0xfd8e8a42, 0x27040499, + 0x07433335, 0xf5203324, 0x02120043, 0xe8031eff, 0x0024f1f3, 0x27ff0210, + 0x0a4ddc33, 0xfe0bf2fc, 0xe107fe4e, 0x01713c1e, 0x1e2b04a1, 0x180834f5, + 0x0419ff02, 0x02990361, 0x0b453320, 0x0043f53e, 0x33ff0218, 0x2fa3102c, + 0x04000000, 0x180441f5, 0x4e23ff02, 0x35fde800, 0x2704a142, 0xa5410be0, + 0x07031904, 0xf1433343, 0x02100044, 0x333533ff, 0x4c53184c, 0xaf42c81d, + 0xf94efe8e, 0x0c03d007, 0x29b107ac, 0xfe837ed9, 0x99aad289, 0xd199a8d0, + 0x833207a9, 0x2d833f3c, 0x91beffc0, 0x3ea7fff0, 0x27fde7cf, 0x3405164c, + 0x34154027, 0x00004f27, 0x3435a000, 0xc0b0dcc1, 0xb2c00ab1, 0x27c02718, + 0xc1151e10, 0xd3c1d8d4, 0xc1c40bc4, 0xc34ad4d1, 0x041ec32b, 0x07b4d1c1, + 0x2c3c2b31, 0xc4d4c130, 0x4307340b, 0xd4c54c0b, 0xd0dcc5cc, 0xf49b4253, + 0xc8d49926, 0x07ccd3c1, 0x034487ad, 0x43f5a8ac, 0xff001c00, 0x747e0a07, + 0x9d4127fe, 0xd48996d4, 0x0d302798, 0x8dd32dd3, 0x0d07dcd4, 0x000d34be, + 0xf49305b6, 0xd102e774, 0xd6016044, 0x1eb02744, 0xbe0d071d, 0xe600158f, + 0x09f31e07, 0x23b103d4, 0x0d4fab41, 0xbe4516d4, 0x66000d24, 0xce0d0705, + 0xb027eab9, 0xb727031e, 0xe73ef493, 0x29420902, 0x9d302744, 0x422b96d3, + 0x0a07944e, 0xb17e1c07, 0x8e0b07fe, 0x63f94ef9, 0xec04c1f0, 0xc107f205, + 0x07424199, 0x29b307d0, 0xbefa09f9, 0x89000111, 0xd48910c3, 0x3cccc198, + 0x2027439b, 0xdca51447, 0xd2c5d469, 0xd4d2c5d8, 0x19c4d1c5, 0x47349bb2, + 0x96b411c3, 0xb4d2c52b, 0x56b0d2c5, 0xb8d0c149, 0x4c070586, 0x0bbcd3c1, + 0x1243c241, 0x0726d289, 0xbc1c031d, 0xe9be3027, 0xd0c5fea3, 0xb8d3c1b8, + 0x1ec0d3c5, 0xc0d4c518, 0xd4c5b441, 0x210e1ebc, 0xc0d4c5b3, 0x31b0d3c5, + 0xb4d4c5b4, 0x07c0d4c1, 0xc54c0b0d, 0xb119c0d4, 0xc6fe717e, 0x27d36905, + 0x4d3a1b40, 0x2dd40dd9, 0x8ef043d3, 0xb6fc4ef9, 0x75fc9308, 0xc28902e6, + 0xa8c099aa, 0xc1993207, 0x3f3c83a9, 0xffc02d83, 0xffeef3be, 0x0c030c07, + 0xfdba7ea8, 0xe6fef093, 0x5efc0e02, 0xf74efcbd, 0xc0079307, 0x9fabf063, + 0x016000d1, 0x8107f405, 0xb2071907, 0xfa09f729, 0x000518be, 0x0164c3d1, + 0x9b26c489, 0x0b44874b, 0xadf04334, 0xad0150ca, 0xad0138c0, 0xd5013ec8, + 0xad0158c3, 0xad0144c9, 0xad0152c7, 0xad013cc0, 0x8e013acb, 0x27fd4ef7, + 0x4303b940, 0xbd1f6b01, 0x63014304, 0xc4d007f0, 0x272fff1c, 0x277fff4d, + 0x3604ad20, 0xbd40a701, 0xd5015c04, 0x27016002, 0xff4ea732, 0xf193feff, + 0xbd02e5c8, 0xc50be843, 0x12bdf012, 0xd35e0143, 0x5c04b900, 0x07412e01, + 0x07231e23, 0x33410731, 0x2b453333, 0x9444f143, 0xbdff0001, 0x01015c01, + 0x6004d543, 0xd5430b01, 0x27016404, 0x60d4d120, 0x9f4fe601, 0x69d32900, + 0x07430bd4, 0xad3fab34, 0xc40136d3, 0xd4a91022, 0x434e0148, 0x014ad3a9, + 0x34ced449, 0x56d2a965, 0x54d0b901, 0x55d1b901, 0x83320701, 0x2d833f3c, + 0xe1beffc0, 0xd369ffed, 0x8998d289, 0x230b10d4, 0xf20d4103, 0xd1a9f42d, + 0xd2490136, 0x0d07f401, 0x27fee57e, 0xff4ea720, 0xd2bdfeff, 0xd2bd0134, + 0x11270135, 0x0be841bd, 0xe516f393, 0xdef49302, 0x32bd000f, 0x34c50142, + 0x4032bdf0, 0x4132bd01, 0xff4ea701, 0x44b9feff, 0x41c40be8, 0xf1fd930e, + 0xd0c102e4, 0xc0f08bf0, 0xf043f901, 0xfe4efd8e, 0xd1c80e99, 0x0b010000, + 0x471007e1, 0x0b1203ee, 0x471e091e, 0x0b3e0d22, 0x2d200920, 0x0d112930, + 0x2d222941, 0x99fe8e42, 0x4786e704, 0xf6e60499, 0x0403a946, 0x90048901, + 0x930c43c2, 0xfea581f4, 0x04053027, 0xf453091e, 0x04050220, 0x03073327, + 0xfe0bfe0b, 0x0499fc4e, 0x03c027b8, 0x994f6b41, 0x0c9dc903, 0xe90c9de4, + 0x07b8049d, 0x1243cad0, 0x9db90499, 0x4103b80c, 0x89b9049d, 0x048dd204, + 0xbe0127d0, 0x99fffde1, 0x4566e8d4, 0xdc9d0d07, 0x1efc0ee8, 0x07f41393, + 0xd4050027, 0xfa4efc8e, 0x23ea0499, 0x36d007f1, 0x18fabe46, 0xf6b00700, + 0x2700fb0f, 0xead49d41, 0x99b9d399, 0x342ac8d4, 0xd49d4127, 0xe6d499e6, + 0x0d074586, 0x07ff5a7e, 0x00da5eb0, 0x0104d4a9, 0xd1994ae6, 0xb9d299b8, + 0x4d073d07, 0x03ac3c03, 0x0d07b04c, 0x89ff117e, 0xd189b0d2, 0xacd489b2, + 0x1baed389, 0x23311b42, 0x8d112321, 0xd38db4d4, 0xb0d28db6, 0x99b2d18d, + 0x4546e4d4, 0x898ed489, 0x071e8cd3, 0x89acd389, 0xf34daed4, 0xd189f46d, + 0xb4d289ac, 0x89aed389, 0xf011b6d4, 0xfe05e027, 0xfff835be, 0x0fd6b007, + 0x81f3936c, 0xfc930019, 0x2702e398, 0xd1d305a1, 0x270160c4, 0xead39d30, + 0x26e9da9d, 0x90d4894e, 0x0104d3a9, 0x42c8432b, 0xb8d19944, 0x03c9d499, + 0xb9d29911, 0x2103142a, 0x3f071027, 0x38034f07, 0x070c4c03, 0xfe787e0d, + 0x8908f489, 0xf2890af3, 0x0cf1890e, 0x0146c4ad, 0x0143cabd, 0x014ac3ad, + 0x014ec2ad, 0x014cc1ad, 0x0148c4ad, 0xf1030b07, 0xfc4efa8e, 0x9b844c27, + 0x302721f4, 0xcfff4ea7, 0x4043c5fd, 0xe492fd93, 0xffcea702, 0xd401feff, + 0xf48b0d07, 0xc49904f6, 0x2742a60a, 0x21f49b40, 0xfc4efc8e, 0x02c1c107, + 0x6bd00740, 0xff1ea7cf, 0x031efdef, 0x1411f3e8, 0x4c333327, 0x1d4c5318, + 0x07f244c0, 0x401d0312, 0xa7002701, 0xf9f4ff2e, 0xbe803c27, 0x16ffeb2f, + 0x00d4d1c5, 0x994d3601, 0xd499c8d3, 0x30d1c1c9, 0x3203340b, 0x50601c03, + 0x2f1e113c, 0x061ef2e8, 0xefff0ea7, 0x270411fd, 0x184c3323, 0xc01d4c53, + 0x3347eb44, 0x2ea70027, 0xbefef33f, 0xa7ffeaef, 0xfef33f4e, 0x0100d4d5, + 0xd1d5fc8e, 0xfc8e0100, 0x0299fc4e, 0x9d03619c, 0x0299c802, 0xf004c19d, + 0x07c9029d, 0x0e1027d0, 0x07112734, 0x40d2c1c1, 0x1ea7cf6b, 0x1efdefff, + 0xc1f3e803, 0x33274414, 0x53184c33, 0x44c01d4c, 0x031207f1, 0xa7082718, + 0xfef31f2e, 0xbe403c27, 0x07ffea93, 0x7e1c070d, 0xc7a6ff2a, 0xd4d54027, + 0xd4d50244, 0xd4d50128, 0xd4d5012c, 0xd4d50118, 0xd461011c, 0x27f0d4c5, + 0x0000ff4f, 0x61f49b40, 0x6ebe0127, 0xc9beffee, 0xd2c1fff2, 0xa4d4c1a0, + 0xc5acd2c5, 0xd399b4d4, 0x80d4c116, 0x89b6de89, 0x4953aed1, 0xd2c13347, + 0x0b3d0b5c, 0x53e4071e, 0xee338944, 0xd49d4183, 0x0f2c83e4, 0x329b4027, + 0x27e5d49d, 0x9d412720, 0xd49dead2, 0x04d2adca, 0x8940a701, 0xdc899ed2, + 0xacd089b4, 0x89dad48d, 0xd28d94d4, 0x96d289b8, 0x0bd2d48d, 0x98d4890c, + 0x1123e183, 0xd28dc027, 0x890123d4, 0xde9d9ad2, 0xb2d18de7, 0x8dbcd3c5, + 0xd48db0d0, 0xdcdc8dd6, 0x8dc0dcc5, 0xd489d8d2, 0x8d0d0792, 0x82bed0d4, + 0x00270000, 0xffeb56be, 0xfd14f453, 0xd4050027, 0xfe4efc8e, 0x03571499, + 0x4447621c, 0x1c23410b, 0x58139962, 0x023004d5, 0x010c03bd, 0x071938d4, + 0x341d0310, 0x07230702, 0x034e0931, 0x033e0d42, 0xd5f2a832, 0x8e023001, + 0x93fb4efe, 0x02e28bfc, 0x0244c4d1, 0xb107d007, 0x070b04ce, 0x3e1d070c, + 0x44cdd5b2, 0x0cc4b902, 0x30c0d101, 0x27410302, 0x09091e20, 0x2a020303, + 0xa82307b3, 0x8e0207f4, 0x63f54efb, 0xa7d007f0, 0xfbffff8e, 0x042089d1, + 0x91839153, 0xc1f691c4, 0xdb995cd4, 0x4084d586, 0x60d4c104, 0x84d5b1c3, + 0xd4c10444, 0x1cbc3364, 0x044884d5, 0x9980d3c1, 0x43077fd0, 0x070d4c33, + 0x79de9924, 0x4d833207, 0x2d838000, 0xd1994000, 0x0742ab78, 0x7edc9923, + 0x2e83e833, 0x33010000, 0xab303304, 0x830eab42, 0x0200003e, 0x0cab1213, + 0x138343ab, 0x1c3340ab, 0xd541ab0c, 0xc1044c84, 0x84d568d4, 0xd4c10400, + 0x0484d56c, 0x80dac104, 0x077fd299, 0x0dcc33ca, 0xd1994c07, 0x833a0779, + 0x8380004d, 0x010000ce, 0xab193c33, 0x003f83c4, 0x33400000, 0x99183324, + 0xde997ed0, 0xabc3ab78, 0x2720ab21, 0xabcbab42, 0xc14e2bc2, 0x438370d2, + 0xc50c4c33, 0xc4abe0d2, 0xa653e240, 0xab1fac33, 0x088cd5ca, 0xd5402704, + 0xc1041884, 0xf49b74d4, 0xb0dd03a3, 0x033d0701, 0x2d077fdc, 0xd57f3ce3, + 0xe3043089, 0xdd237f2c, 0x3419022f, 0xc2803c03, 0x0827f932, 0xffe9c6be, + 0xcd03cd07, 0xed0701b0, 0xf31f7ea7, 0x27a027fe, 0xff6ea780, 0xe399fbff, + 0x0558077e, 0x10ac53f3, 0x00271c07, 0xbc275433, 0x01300710, 0x334707f2, + 0x0b960735, 0xc235ab40, 0x44191320, 0x00002e27, 0x40203b01, 0x4153ff4c, + 0x34aba2ab, 0x041c93d5, 0x01031305, 0xfbf01403, 0x038103d1, 0xe10340cc, + 0x7c038220, 0xc5b01e20, 0x4027ecda, 0x043464d5, 0x4388d4c1, 0x1464d5f0, + 0x9d402704, 0xf58ee6d4, 0xcf5bf04e, 0xfe2bdf3b, 0x0f07fc4e, 0xfe8316be, + 0xf00efc0e, 0x1ea7ff0b, 0x01fd4fff, 0x122f9b14, 0x44334103, 0xab3813c1, + 0x27322e24, 0xabfe0b00, 0x3812c5f3, 0xce3814c1, 0xf3ebf842, 0xfe0b0127, + 0xd33efe4e, 0x0c270576, 0x9efe0e20, 0x8efea699, 0x07fc4efe, 0xa85ebec0, + 0x19c339ff, 0xab1307c4, 0x27c41d43, 0xe6c43d40, 0x9b402705, 0x3ea70ef4, + 0xc5fd4fff, 0x40273834, 0xa70ef49b, 0xffffff4e, 0xa70e4399, 0xfd4fbf2e, + 0x3138318b, 0x24054127, 0x24033153, 0xfc8e32d6, 0xd007fd4e, 0xffa841be, + 0xb60cd499, 0x0ed49944, 0x01230407, 0x3d0b3007, 0xc4043499, 0x41270b42, + 0x9d04349d, 0x141e0cd0, 0x4fff4ea7, 0x01d239fd, 0x3b412743, 0x3d42ab43, + 0x2700a7d4, 0x0ef49b40, 0x4fff3ea7, 0x3834c5fd, 0xfd4efd8e, 0xf7bed007, + 0xd499ffa7, 0x9944b60d, 0x04070ed4, 0x30070123, 0x34993d0b, 0x27459604, + 0x04349d41, 0x1e0dd09d, 0x032d0718, 0xff4ea722, 0x2139fd4f, 0x41274301, + 0x41ab433b, 0x00a7243d, 0xf49b4027, 0xff3ea70e, 0x34c5fd4f, 0x00fd8e38, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00014cd4, 0x00014c34, 0x00014b94, 0x00014b94, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0xd007fb4e, 0x0ea7b107, + 0x07fffa23, 0xbec2071d, 0x36fe8474, 0x071d0706, 0xa73c072b, 0xfffa230e, + 0xfe88c3be, 0xf49b4027, 0x4efb8e0e, 0x59f493fe, 0x43c102dc, 0x4c429940, + 0x432b4007, 0x40282452, 0x031ee027, 0xf193e207, 0xc102dc40, 0x20075013, + 0x33332e2b, 0x432b4207, 0xe007404c, 0x2307e32b, 0x9d4412c5, 0xfe8e4e1e, + 0x1499fb4e, 0x07e30710, 0x5bc307b2, 0x07245be4, 0x51cb2bd1, 0x27e24e11, + 0x1ee02730, 0x87e1830d, 0x8b4d0b4e, 0x2b4e6131, 0x872183c3, 0x614d0b42, + 0x0b1b8b44, 0x05033541, 0x250c1504, 0x4efb8e0e, 0xb5fc93f9, 0xc49902dc, + 0xe6f3e313, 0x2901a54f, 0x09cd69c4, 0x2bd40bc3, 0x1ac489d3, 0xb42bbd07, + 0x4027b556, 0x5e13c49d, 0x0dbe018a, 0x05360011, 0xfe94d3be, 0xa1017d5e, + 0x2ccc89c3, 0xf325fb6d, 0x4f9bfc4d, 0x9b43a6a2, 0xa487244f, 0x9325bf9b, + 0x02dc67fc, 0x0734c2c1, 0x071c070f, 0x0c0c033a, 0x7e301c03, 0xbb87ff5c, + 0x0760c2c1, 0x071c070f, 0x240c033b, 0x7e5c1c03, 0xc499ff48, 0x6fc39943, + 0xc11ef48d, 0xf38d34c4, 0xc1f48536, 0xc48960c3, 0x38f3c594, 0x271cf48d, + 0xa0f49b41, 0xc369c431, 0x2be0c2c1, 0x054d0b43, 0xea231124, 0x5e00e534, + 0xae0700ee, 0x34013007, 0x03b0f49b, 0xf731ce34, 0xec03ea07, 0xcb4e0738, + 0x0742424a, 0x76428b4e, 0xe5f49340, 0x449902db, 0x5b3a0740, 0x83430734, + 0x03448741, 0x0480604f, 0xc1920700, 0x9a8b484d, 0xc0b14f9b, 0xf393fb41, + 0x9902dbc0, 0x25273034, 0x42f54333, 0xff021200, 0xa75c3499, 0xfdefffae, + 0x42f54333, 0xff021200, 0xf3e8031e, 0x2744a4c1, 0x184c3333, 0x131d4c53, + 0xef42c844, 0xdb8af093, 0xffbea702, 0x0449feff, 0xb9260389, 0x890d30bc, + 0x439b1a01, 0xc383140b, 0xd90b0481, 0x2c87e423, 0xaed51187, 0x2df50908, + 0xff010d20, 0xe027140b, 0x990efe9b, 0x3ea74304, 0x23fde6ff, 0xfef2e02e, + 0x4c333205, 0xa3242710, 0x0000004f, 0x35321504, 0xef4ea734, 0x4105fde6, + 0xc1034215, 0xbcbd4e35, 0x30270d30, 0xdb22f493, 0x13439d02, 0xf493151e, + 0x0702db18, 0xc11f070f, 0x04034442, 0x5e3c1c03, 0xf3c3ff04, 0xfe4ef98e, + 0xdafef093, 0x96040902, 0x00cabe45, 0x2704d600, 0x93fe8e07, 0x02daebf1, + 0xc6131499, 0x8e002744, 0x291469fe, 0x0b120913, 0x8d422b43, 0x4f9b1a14, + 0xfb41c0b1, 0x93244f9b, 0x02dac7f0, 0x873803c1, 0x3c02c144, 0x04c5342b, + 0x1223c234, 0x20270121, 0xbe300c03, 0xd600050e, 0x8e082704, 0x254f9bfe, + 0xda9ef093, 0x6403c102, 0x02c14487, 0xc5342b68, 0x23c26004, 0x27012112, + 0x5c0c0320, 0x0004e5be, 0x092704d6, 0xf193fe8e, 0x6902da78, 0x1a138914, + 0x342b1231, 0x0be014c1, 0x11430532, 0x244f9b42, 0x14c54487, 0x8d402790, + 0x32229414, 0xfe8e0127, 0x00274127, 0x8e13149d, 0x3603a9fe, 0x89046901, + 0x342bdc01, 0x31022007, 0x20293107, 0x031b232d, 0xfe0b200d, 0xf493fc4e, + 0xd102da28, 0x07016044, 0x690129c0, 0x07468602, 0x3603a942, 0x27410b01, + 0xbe434ed1, 0x1e000837, 0x29d02703, 0x98c489c3, 0x0c074342, 0xb21efc0e, + 0xffff3ea7, 0x2034d1fb, 0xfa42d804, 0xc1264f9b, 0xc3c1c4c2, 0x2b4487cc, + 0x2b340232, 0xc1432b32, 0xc4c5b4c3, 0xb0c3c5b4, 0xfffd16be, 0xb697c499, + 0x31c4494f, 0x894103c2, 0xc44d98c3, 0x4027230b, 0xc389c149, 0x35c42d10, + 0x4131cac2, 0x627e0c07, 0xa7d766ff, 0xfeffff4e, 0x0be844b9, 0x930e41c4, + 0x02d997fd, 0x8bf0d0c1, 0xf901c0f0, 0x27acc499, 0xa8cc0335, 0x10274333, + 0x43f50c07, 0xff021200, 0xfff0ffbe, 0x10270c07, 0xfff052be, 0xfc8e00a7, + 0x0499fd4e, 0x27412412, 0x39fd8e00, 0x9be5360e, 0x4144b14f, 0x4f9bfa1e, + 0x1943a6a2, 0x07432702, 0xf5333332, 0x02120034, 0x0031f1ff, 0x47ff0210, + 0x181c33d2, 0xd61d1c53, 0x1e002714, 0x8725331c, 0x0423f14e, 0x99ff0218, + 0x40f11002, 0xff021600, 0x030b1123, 0x010b123b, 0x42273d87, 0x120034f5, + 0xfd8eff02, 0x14470419, 0x31871103, 0x34f54327, 0xff021200, 0x100032f1, + 0x2c33ff02, 0x1d2c5318, 0x410726a6, 0x03994433, 0x0444f110, 0x23ff0218, + 0x0b233b21, 0x27318724, 0x0034f542, 0x21ff0212, 0x0034f100, 0xdcff0210, + 0x3187f848, 0x100034f1, 0x4ddcff02, 0x2bf60800, 0x4efe0b02, 0x120499fb, + 0x42e4d007, 0x041900a0, 0x43333527, 0x120043f5, 0x031eff02, 0xd419f3e8, + 0x43333b27, 0x10004bf1, 0xbd83ff02, 0xb1d6fc0a, 0xdc210d07, 0x19ff137e, + 0x2bd239de, 0x074127c0, 0x12d49d3e, 0x3333dc25, 0x1e474427, 0x120034f5, + 0x2287ff02, 0x2bf51103, 0xff021600, 0x43273187, 0x34f5d029, 0xff021200, + 0x100034f1, 0x48dcff02, 0xf12187f8, 0x02100024, 0x004ddcff, 0x4007f608, + 0x4a033427, 0x120023f5, 0x4c83ff02, 0x532e070f, 0x33233306, 0x3027140c, + 0xab104c33, 0x0023f540, 0xf5ff0214, 0x02140424, 0x0ef39bff, 0xfe4efb8e, + 0x41834107, 0x87110399, 0x2b400b44, 0xd84e6131, 0x9119803c, 0x19028101, + 0x0b438713, 0x034e0542, 0x99131d31, 0x41031104, 0x8e11049d, 0x21fd4efe, + 0x1ee0070d, 0x10e49970, 0x245b2d07, 0x41834207, 0xe319e251, 0x4e0b4487, + 0x12074061, 0x35334d07, 0x3c03428b, 0x2b110310, 0x083df514, 0x0bff0218, + 0x39e41904, 0x994533e3, 0x43f513e2, 0xff021800, 0x180441f5, 0x3027ff02, + 0xe8004e23, 0x034335fd, 0xfde8004e, 0x181040f5, 0x2c33ff02, 0x002fa310, + 0xf5040000, 0x02181441, 0xf04e23ff, 0x4235fde7, 0xed25d10b, 0xd4cee4a1, + 0x9d42278d, 0xfd8e12e4, 0x30070419, 0x41274624, 0x99a2f49b, 0x44a61234, + 0x0bff6c5e, 0x390419fe, 0xf5453300, 0x02180041, 0x0442f5ff, 0x27ff0218, + 0x004e2330, 0x4335fde8, 0xe8004e03, 0x1040f5fd, 0xf5ff0218, 0x02181442, + 0xf04e23ff, 0x4335fde7, 0xfc4efe0b, 0x0019d007, 0x30074327, 0x20073333, + 0xdc39d129, 0x34f52333, 0xff021200, 0x24f13047, 0xff021000, 0x87f848dc, + 0x00e4f1e3, 0xdcff0210, 0xf608004d, 0x31032427, 0x1200e2f5, 0x3387ff02, + 0x32f54107, 0xff021200, 0x2c874a03, 0x23f53027, 0xff021600, 0x070f4c83, + 0x33165320, 0x141c3323, 0xab104c33, 0x0023f541, 0xf5ff0214, 0x02140424, + 0x0ef39bff, 0xd3554027, 0x3504d49d, 0x4efc8ed3, 0x990319fa, 0x33330404, + 0xc427a207, 0xb107d007, 0xc42baf6b, 0x34f13403, 0xff021000, 0x53184c33, + 0x44131d4c, 0x31f04cda, 0x212566d2, 0x7e0d07d1, 0xc123ff1d, 0x2566d251, + 0x0d07d141, 0x23ff107e, 0x074d07c1, 0x2748031b, 0x013627b6, 0x05b12312, + 0x03140342, 0xe6f39844, 0x26d231c6, 0x21a5e626, 0x7e0d07d1, 0xc127fee9, + 0x031edb35, 0xdc9dc127, 0x4efa8e04, 0xff4ea7fa, 0x4d01fd4f, 0xd433c007, + 0xa407d8a3, 0xf4e8031e, 0x4627cb01, 0xf1beb356, 0xc401fff6, 0x44963027, + 0xf39bcd05, 0x38abc50e, 0xd4cec401, 0x4efa8ee4, 0x990d21fb, 0x0c991004, + 0x5bd12311, 0x2b4c07d4, 0xd8b0074d, 0xa72a804c, 0xffffdf0e, 0xdf6bae3e, + 0xc4070a1e, 0x1c07cf6b, 0x07fdb57e, 0x0741034c, 0xefdcce0b, 0xf49b4027, + 0xdf3ea70e, 0x3405ffff, 0xf94efb8e, 0x0ea7d007, 0x07ffffdf, 0xa1c107b2, + 0x10da99d9, 0x99ff767e, 0x2b0710d0, 0x21be1c07, 0xb007fff8, 0x40270656, + 0xa70ef49b, 0xffffdf4e, 0x4b050027, 0xc907f98e, 0x1c07ca5b, 0x12230d07, + 0x27fd5d7e, 0x0ef49b40, 0xffdf3ea7, 0x993405ff, 0xd3a110d2, 0x4127c183, + 0xcc87423b, 0xcd0b340b, 0xcb650d07, 0x667ed3a5, 0x8e0127fd, 0x93fd4ef9, + 0x02d52ffd, 0x013ad3a9, 0x0152d4a9, 0xb93534ca, 0xc40143d4, 0xd4d11f41, + 0xd1a9014c, 0xd2a90148, 0xd3a9014a, 0x0d070146, 0xffeebdbe, 0xd4bd4227, + 0x101e0143, 0x4ea73327, 0x27feffff, 0xe843bd03, 0x93fd8e0b, 0x02d4ebf4, + 0x013843a9, 0x015844d1, 0x340b3387, 0xffff2ea7, 0xbd4027fe, 0xd50be824, + 0x270bec23, 0x0ef49b40, 0xefff2ea7, 0xe8031efd, 0x4c24c1f3, 0x4c333327, + 0x1d4c5318, 0x42c84413, 0xff4ea7ef, 0x41d1feff, 0x09270bec, 0xf40f2ea7, + 0xbe3427fe, 0x27ffdcff, 0xc61ea709, 0x2ea7fef2, 0x27fef417, 0xdcedbe31, + 0x0ff353ff, 0x81f49302, 0x002702d4, 0x8ef043c5, 0x93fb4efd, 0x02d473f3, + 0x01423eb9, 0x4e07e383, 0x42f94433, 0x0004815c, 0x43834207, 0x271041c4, + 0xff4ea732, 0x0227feff, 0x0be843bd, 0x34b9fb8e, 0x1ea70154, 0x33fef40b, + 0xf1440343, 0x02100044, 0x331351ff, 0x0127184c, 0x00273486, 0x4c533007, + 0x1332131d, 0x27343244, 0xd8fb8e00, 0x14891422, 0x31460618, 0x02340712, + 0x2b320742, 0x35145543, 0x0b4ea713, 0x4031fef4, 0xd4074c21, 0xd3fafb93, + 0xb9601e02, 0x71015414, 0xf54533d3, 0x02180843, 0x5414b9ff, 0x1ad38901, + 0x21274533, 0x27ff3c04, 0xb93f6b20, 0x33015511, 0x4cf5103c, 0xff021800, + 0xab1a2c33, 0x0440f523, 0x23ff0218, 0xfde8004e, 0x4e034235, 0xf5fde800, + 0x02181041, 0x1440f5ff, 0x27ff0218, 0xf04e2330, 0x4335fde7, 0xd051dc41, + 0x1b07d355, 0x339d0fd6, 0xfd4127e4, 0x04815de4, 0x42b4b900, 0x4ef35301, + 0x274103fe, 0xf0b3c501, 0x0142b4bd, 0xf94efb8e, 0xd36efd93, 0x0b1ea702, + 0xd2a9fef4, 0x1b290138, 0x013ed3a9, 0x3bdab20b, 0x22f45310, 0xc50127fe, + 0xdbadf0d4, 0xf98e0138, 0x0141dab9, 0x0140d4b9, 0x4f6b4a1b, 0x00b544f4, + 0x43834a07, 0x04330407, 0xcf03c007, 0x00048060, 0x2bf4c28d, 0x3ad2a932, + 0x8d410301, 0xd2b9f6c2, 0x90270135, 0x11fcc29d, 0x03443311, 0x0481540f, + 0xfac38d00, 0x9df8cb8d, 0x41f5fdc9, 0x00048150, 0x00028cbe, 0x0150d0a9, + 0x0726d189, 0x12310330, 0xbd310731, 0x320135d9, 0xbd4127b3, 0xda0135d4, + 0xd3a936b3, 0xd2d1013a, 0x41870158, 0x3103240b, 0x0138d4a9, 0x013ad3ad, + 0x0158d2d5, 0x990d40ce, 0x46a3fcc4, 0xbdfcc49d, 0xa90135d9, 0xa90144d4, + 0xad013cdb, 0x07013ed4, 0x9df3932a, 0x210302d2, 0xfe1ff453, 0x34c50127, + 0x383badf0, 0x4132bd01, 0x27f98e01, 0xff4ea732, 0x0027feff, 0x0be843bd, + 0xfc4ef98e, 0xffffcea7, 0xf0c1d1fe, 0x9319160b, 0x02d267fd, 0x015cd0b9, + 0xfe7785be, 0x0becc4d1, 0x16764101, 0xfd1ff453, 0x27f0d4c5, 0xbd412701, + 0x8e0134d4, 0x41f093fc, 0x402702d2, 0x04bd3107, 0x31830134, 0x4ea73d76, + 0xbdfeffff, 0x270be843, 0x0ef49b40, 0xefff2ea7, 0xe8031efd, 0x4c24c1f3, + 0x4c333327, 0x1d4c5318, 0x42c84413, 0xa70927ef, 0xfef40b2e, 0xbe383c27, + 0x27ffda63, 0xc61ea709, 0x2ea7fef2, 0x27fef417, 0xda51be31, 0xbe051eff, + 0x53fe9162, 0x93fe71f3, 0x02d1dff4, 0x43c50027, 0x4efc8ef0, 0x980889f5, + 0x0bb90469, 0x09a90140, 0xc0070136, 0x7ea7840b, 0x93feffff, 0x02d1bbf5, + 0xffff6ea7, 0x83ab07fb, 0x1798daa3, 0xffff3ea7, 0xe834b9fe, 0x2742240b, + 0xe834bd41, 0x5ec0690b, 0xda07010f, 0xdc0bd433, 0x0141c3b9, 0xd4993b2e, + 0xb94bb6fd, 0xc60be874, 0xe8141e44, 0xff3ea7f3, 0x34c1fdef, 0xdc33274c, + 0xf0fc6a4d, 0x4244131e, 0x74bd4127, 0x091e0be8, 0xb32e4344, 0xf58e0127, + 0x0be874b9, 0x50c14144, 0xc0f08bf0, 0xc4b9f901, 0xb4ce0141, 0x34c4b90c, + 0xad4fc601, 0xf58e0027, 0x49f6d389, 0x3743cec4, 0x76fdd499, 0xfcd4994a, + 0xd19641d8, 0xd8042064, 0xc2a9fa42, 0xc0b90156, 0x32070154, 0x0155c1b9, + 0x833f3c83, 0xbeffc02d, 0x99ffd99c, 0x41c3fcd4, 0x5efcd49d, 0x1a07ff6c, + 0x1c0b1433, 0xd2f41289, 0x11891a92, 0xc81f8bfa, 0x4a071011, 0x44334103, + 0x40c14c0b, 0x0291bef0, 0x07290700, 0x0741034a, 0x334433da, 0x0b4c0bd4, + 0xf040c1dc, 0x07f8d389, 0x01b1be19, 0x07081200, 0x0d90ce08, 0x41034b07, + 0xbf6bb407, 0x161e4127, 0x3af4d489, 0xfcd49940, 0x070944d8, 0x0741034b, + 0x27bf6bb4, 0x40cbbd40, 0xf6900701, 0xadfed84f, 0x270136c0, 0xa7f58e01, + 0xfbffff3e, 0x042034d1, 0xd1fa42d8, 0xab041830, 0x0b00870f, 0x93fe4efe, + 0x02d1dff3, 0x34d10131, 0x14ce0128, 0x2c34d164, 0x5d14ce01, 0xa75a11c0, + 0xfeffff3e, 0x0be934b9, 0x274e42c0, 0xe934bd42, 0x2c31d50b, 0x9b40270c, + 0x2ea70ef4, 0x1efdefff, 0x11f3e803, 0x33332724, 0x4c53184c, 0xc844131d, + 0x1d03f042, 0x0027013c, 0xf3cf2ea7, 0x883c27fe, 0xffd872be, 0x1ea70027, + 0xa7fef2c6, 0xfef4162e, 0xfe0e3127, 0xffd85e9e, 0xfa4efe8e, 0xd16af293, + 0x2824d102, 0x07c00701, 0x1340ceb1, 0x23a90207, 0x41270124, 0x01300d03, + 0x010d24bd, 0x24d1181e, 0x40ce012c, 0x07402715, 0x2623a902, 0x0d24bd01, + 0x700d0301, 0x8eb30501, 0x0d01c4fa, 0x40270207, 0x01300d03, 0xfa8e1405, + 0xffffdea7, 0xe9d4b9fe, 0xd147860b, 0xce0c2cd4, 0x00271440, 0xffd98ebe, + 0xaea74027, 0xbdfef3cf, 0x1e0be9d4, 0x03ac0707, 0x99013cad, 0xa39985a4, + 0xab444784, 0xe9f19343, 0xae0102d0, 0x13b9b405, 0x4307010d, 0x04074183, + 0x31030633, 0x01300d03, 0x2487010b, 0x010d13bd, 0x3007210b, 0x0c034447, + 0x0bbb093f, 0x282cd541, 0xe3200701, 0x4bad7f3c, 0x2ce30124, 0x3f0c237f, + 0x3c033419, 0xf932c280, 0x34033a07, 0x2c274007, 0x1c112720, 0x0d3129e1, + 0x53340341, 0x784203e1, 0x4efa8ef2, 0x07f063f7, 0x079307a1, 0xeeb00782, + 0x0700b013, 0xff047e1f, 0xd06efc93, 0x18c4d102, 0x2e700701, 0x1ed027b4, + 0x1cc4d145, 0x27b42e01, 0xb93b1ed1, 0xd1010ecd, 0x070108ce, 0xa744334d, + 0x01ffff3d, 0x99345bf1, 0x2127ccc0, 0x3e8b143b, 0x4d872d3b, 0x81d84f03, + 0x31ab0004, 0x47d502ab, 0xc09d0110, 0x184bd5cc, 0x08c3d501, 0x93412701, + 0x02d017f3, 0x34bd4d2b, 0xa8ce010e, 0x334d071b, 0xdc33124c, 0x89d4ab13, + 0x3dd52c34, 0x49d20120, 0x23090720, 0xd21c1e01, 0x34d1178a, 0xdc330120, + 0x004e8313, 0xd4ab0400, 0x3dd50807, 0x031e0120, 0xf3930907, 0x9902cfd4, + 0xa007cc34, 0x349d44a3, 0x430a07cc, 0x4ef78ef0, 0x4311c8fe, 0x00270124, + 0x04b90d1e, 0x03b901c1, 0x044701c0, 0xf49303ab, 0xc102cfa8, 0x40076842, + 0xffff3ea7, 0x104c33fb, 0x040032d5, 0x34d540ab, 0x31d5040c, 0x34d1042c, + 0x42d80420, 0x81f093fa, 0x0abe02cf, 0x3127fe92, 0xcf76f493, 0xca439d02, + 0x0000fe8e, 0x01274c27, 0x05140313, 0xa8040303, 0x9bfe0bf4, 0x4927643f, + 0x9b173c53, 0x030565f4, 0x01fe3d30, 0xfe0b0027, 0xfc003ea3, 0x2703051f, + 0x4efe0b01, 0x8004c1fc, 0x99780399, 0x41837a01, 0x448743cb, 0xc0071f4b, + 0xa28040f1, 0x102c0001, 0x071e1027, 0x27341c08, 0xd007331c, 0xc4c1d833, + 0xced1abfc, 0x0ea70fd4, 0xa7fbf7ff, 0xf9e7ff1e, 0x081e933e, 0xfe910fbe, + 0x99fccdc5, 0xc3997ac2, 0x232f4b7b, 0x9b462738, 0x03240b43, 0x2402334c, + 0xc2c52407, 0x4efc8ec4, 0xb20489f9, 0xd007f063, 0x3027c107, 0x3127420e, + 0x9d2ed489, 0x4123cbd3, 0xce16d399, 0xd4890c42, 0x3b1207aa, 0x1e412b13, + 0x3b412705, 0xab340743, 0xaed4893f, 0x27bad38d, 0x27420e30, 0xc0d4c131, + 0xaf6ba307, 0x16e4d399, 0x27313845, 0x891b1e91, 0x9027d2d3, 0x46dad38d, + 0xd4d189a6, 0x8dd0d489, 0x4d00dcd1, 0xd48dffff, 0xacd489da, 0xc40e1027, + 0x40271127, 0x07dad389, 0xced49db1, 0x3c2abf6b, 0x101e4027, 0x27dcd489, + 0x27c40a30, 0xc3430731, 0x074f6b41, 0x893f6b34, 0xd39ddad4, 0x0ac4cace, + 0x2adcd489, 0x1e42274c, 0x07402703, 0x0713ab14, 0xdad3894c, 0x03ced19d, + 0x0a43ca41, 0x22dcd489, 0x1e44274c, 0xab402703, 0xced49d41, 0x27aed389, + 0xcfd49d40, 0x891723c2, 0x3b07b0d4, 0x112731c3, 0x1027c40a, 0x418732a3, + 0xd49d43ab, 0xe0d4c1cf, 0x00034ee3, 0xc549ab0c, 0xa546e0d4, 0x00004ea3, + 0xe0d4c504, 0x0097bfe6, 0x89e0d1c1, 0x4107d6d3, 0xd4c542a3, 0x89232ae0, + 0x2422d8d4, 0xd1c513a3, 0x85d499e0, 0xd6774fc6, 0x9fd674af, 0x630f9b71, + 0xffeefabe, 0x9b624f9b, 0x432b633f, 0x271f49cc, 0xde6bbe09, 0x1609ccff, + 0xcb3ef493, 0x3c44c102, 0x2b633f9b, 0x27403243, 0x815e0e0c, 0x7e0f0700, + 0x04d6fe1b, 0x751e0127, 0xffff3ea7, 0x6834d1fb, 0xfa41dc04, 0x99cfd499, + 0x438bced3, 0x1ea74438, 0x1ef9e763, 0xff1ea706, 0x0ea7f9e7, 0x7efbf7ff, + 0xf301fddc, 0xffff4ea7, 0x5043d5fb, 0xcad49904, 0x4bab2027, 0x21274486, + 0xd3894c07, 0xcad29dd2, 0x1c074fab, 0x13074302, 0x8d85d499, 0x4516d2d1, + 0xa70694d6, 0xd399b6c6, 0xff4ea7c4, 0xd3d5fbff, 0x00270248, 0x047443d5, + 0x0027031e, 0xf98ef043, 0xffff3ea7, 0x2034d1fb, 0xfa42d804, 0xcceaf293, + 0x3433d102, 0xec24c104, 0x438b0027, 0x0127430e, 0x23990f6b, 0xc34007e6, + 0x2743ab41, 0x27448630, 0xe6239d31, 0xfe4efe0b, 0x8ebe1027, 0xfe0efe8f, + 0xfe85f89e, 0xf063fc4e, 0x2f9bd007, 0x634f9b62, 0x29cc242b, 0x51fc932c, + 0xc4c102ca, 0x633f9b3c, 0x42d2432b, 0x630f9b1c, 0xffede2be, 0x5ebe0927, + 0x09ccffdd, 0x3cc4c10c, 0x2b633f9b, 0x3a04da43, 0x36c0d4c1, 0x7e0d0745, + 0x131efd33, 0xf685d499, 0xff0ea745, 0x1ea7fbf7, 0x7ef9e7ff, 0x4027fcf0, + 0x070ef49b, 0xfcf57e0f, 0xf3010806, 0xffff4ea7, 0xd50027fb, 0x1e045043, + 0x3cc4c11b, 0x2b633f9b, 0x27492843, 0x0c1e0e0c, 0xd49d4127, 0xbe0d07e6, + 0x43ffe5f7, 0x4efc8ef0, 0xb00489fd, 0x41ced007, 0xab410769, 0xd401894f, + 0x07dc048d, 0x07140234, 0xb2d48931, 0xced4d38d, 0xd3894142, 0xaed189d6, + 0x4fab4307, 0x31074102, 0x8dd8d189, 0x4207d6d3, 0x3fab3107, 0x43024fab, + 0xd4a91207, 0xd3890104, 0xab410390, 0xd8d18d4f, 0x0104d4ad, 0x4127432e, + 0x93e8d49d, 0xffe5bff4, 0x8cbed405, 0x3027ffed, 0xffff4ea7, 0x1843d5fb, + 0x9d402704, 0xfd8ee5d4, 0x00000000, 0x00000001, 0xff060b80, 0xff060bc0, + 0x00048060, 0xf493f54e, 0x6902ca18, 0x09432946, 0xa3444942, 0xe50199f1, + 0xf445630b, 0x622bd007, 0x048917d6, 0xc1462eac, 0x4696c004, 0x1607f241, + 0x55fc8e7e, 0xc30ff6f0, 0x9d412704, 0xdfbee5d4, 0xf055ffee, 0x04b404ec, + 0x1685d499, 0x3500a745, 0x89081ef0, 0x1103acd1, 0x4027f135, 0x9bcdd49d, + 0x41c0b14f, 0xff3ea7fb, 0x34d1fbff, 0x42d80420, 0x114f27fa, 0x9b600000, + 0x4e27a0f4, 0x9b200000, 0xf25122f4, 0x04702ff6, 0xf3935127, 0x2902c994, + 0x09376934, 0x2cd38932, 0x722b740b, 0xff52f453, 0x48013123, 0xf053732e, + 0x0801ff4c, 0x99bada89, 0x85a616d4, 0x07a8d189, 0x2b243b27, 0x27051e12, + 0x27143b11, 0xb0d48930, 0x474ef325, 0xff22f453, 0x151e4c01, 0x2785d499, + 0x46f02501, 0x15f25345, 0x1e2c01ff, 0xcbdc9904, 0x4aacd489, 0x01f35347, + 0x1e3e01ff, 0xc0d4c112, 0x44963027, 0x43073127, 0xe40741c3, 0xd399ef6b, + 0xcfd299ce, 0x238b9a07, 0x98334207, 0xa3104c33, 0x0800009f, 0x004e8380, + 0x94ab0200, 0xb207a353, 0xcc3391ab, 0x33b93312, 0x273f0ba4, 0x27e48601, + 0xabf42100, 0x0704ab9c, 0x104c334e, 0xbaab94ab, 0x830d8c33, 0x33400737, + 0xb8ab183c, 0x4c331353, 0xab43ab1b, 0x33f905b1, 0x33beabe8, 0xabf30144, + 0xa304c6b4, 0x994000bd, 0x44c6cad4, 0x1000bda3, 0xc8a6f193, 0xccd49902, + 0x3707a007, 0x331a1289, 0xab3123a3, 0x20d8d1a4, 0xbcdcc101, 0xaca3320e, + 0x15202710, 0xff3ea7f2, 0x34d1fbff, 0x41dc0468, 0x0c4cfcf5, 0x3f9b018d, + 0x634f9b62, 0xc3d2342b, 0x7e30e878, 0xcdd49901, 0x2f9b4bf6, 0x634f9b62, + 0xc2d2242b, 0x79f09364, 0x04c102c7, 0x633f9b3c, 0x42d2432b, 0x630f9b54, + 0xffeb0abe, 0x86be0c07, 0xc0d2ffda, 0x59f19344, 0x14c102c7, 0x633f9b3c, + 0x40d2432b, 0x03281e34, 0x9d4f6b41, 0x44d0cdd4, 0x630f9b28, 0xffeadebe, + 0x9b624f9b, 0x432b633f, 0x070cc4d2, 0xda4fbe0c, 0x9bc012ff, 0x0d07634f, + 0x27fcad7e, 0xcdd49d41, 0x277fafc6, 0x0ef29b20, 0xff8b0007, 0x2117a8d8, + 0xe0d3c1f4, 0xab134c33, 0xe0d4c543, 0xffff3ea7, 0x1034d5fb, 0x52a7d804, + 0xd1ccd299, 0xd10110d4, 0xd80114d1, 0xf0531821, 0x3407fd90, 0x30010401, + 0x40053403, 0x4fc44403, 0xff060bc0, 0x1822d8f2, 0xf1533107, 0x1401fd78, + 0x34033201, 0x44034205, 0x0c004fc4, 0xd1f2ff06, 0xa70108d4, 0xfbffff3e, + 0x040c34d5, 0xd49d4027, 0x10ac38cc, 0x15244f9b, 0x9b4027f4, 0x00070ef4, + 0x0ea7ff8b, 0xabfbffff, 0x240bd5b8, 0x6409d504, 0xced29904, 0x21533027, + 0x89cad39d, 0x3707dad4, 0xd29d1707, 0x033203ce, 0x0d34ca11, 0x42dcd489, + 0xa3420741, 0xced49d44, 0x89cfd399, 0x3153aed4, 0x41cfd39d, 0x0d24c2f2, + 0x42b0d489, 0xa3430741, 0xcfd49d44, 0x11e0d4c1, 0xc543e3f3, 0x3556e0d4, + 0xfcdaf353, 0x221e3c01, 0xc6fef093, 0xc1f41102, 0xf1539003, 0x4487fcc8, + 0x432b1c01, 0x1e94048d, 0xb5f25309, 0x1e2c01fc, 0xff3ea722, 0x34b9feff, + 0x41c40be8, 0xd1f4930e, 0x40c102c6, 0xc0f08bf0, 0xf053f401, 0x0501fc94, + 0xf1316707, 0x930e16ce, 0x02c6b7f2, 0x41002409, 0x00fdcff6, 0xffff3ea7, + 0x6834d1fb, 0xf541dc04, 0x4c183027, 0x07312710, 0x271f6b13, 0x27481830, + 0x273f6b31, 0x27441820, 0xd62f6b21, 0xa6249634, 0xa7002719, 0xfbffff4e, + 0x046840d5, 0x15c63496, 0xffff1ea7, 0x2014d1fb, 0xf541d804, 0xf2532546, + 0x2501fc34, 0x34c60d1e, 0x071e5227, 0xfc22f353, 0xf4933501, 0xc102c574, + 0x1f9b3c42, 0x623f9b63, 0x422b4307, 0x32074008, 0x432b4107, 0x931641c8, + 0x02c557f0, 0x1b3c04c1, 0x1848c441, 0xfe7817be, 0x101e0726, 0x93614f9b, + 0x02c53ff1, 0x8bbc13c1, 0x53450643, 0x01fbdff2, 0xcdd49925, 0x4f9b4aa6, + 0x633f9b62, 0x40cc432b, 0x1df49329, 0x43c102c5, 0x634f9b3c, 0x00c034ee, + 0x0762cf9b, 0x8d49be0d, 0x624f9bfe, 0x41ec4c2b, 0x342700b2, 0xab5ef355, + 0x1251c000, 0x644ef431, 0xe7630ea7, 0xff1ea7f9, 0xc97efbf7, 0x53c556f7, + 0x01fb8bf1, 0xc0231e10, 0xf2933c51, 0x0902c5ac, 0x0d012320, 0x53059620, + 0x01fb7ff3, 0xeb6ebe30, 0xc0d4c1ff, 0xd4c54103, 0xec55d6c0, 0x76fbf501, + 0x55472705, 0xc05c1ef4, 0xf2410c51, 0x0d071607, 0x1eface7e, 0x9d412706, + 0xd499e6d4, 0x934726e6, 0x02c48ff4, 0x994443c1, 0x030b4e40, 0xffd674be, + 0xfe7da3be, 0x52c4181e, 0xc4d4011d, 0x019bd44f, 0x00270c00, 0xf0554127, + 0x1ee8d49d, 0xbe0d0716, 0x07ffe07f, 0x9b402750, 0xf55522f4, 0x5127051e, + 0xf051b41e, 0xf58ef183, 0xd007fb4e, 0x0ea7b107, 0x07fffa23, 0xbec2071d, + 0x36fec911, 0x071d0706, 0xa73c072b, 0xfffa230e, 0xfecd60be, 0xf49b4027, + 0x00fb8e0e, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0xff0102cc, 0x00049000, 0x00000001, 0x00000000, + 0x00000003, 0x00000004, 0x1007fd4e, 0xd1871f6b, 0x917cdf03, 0x08530004, + 0x01103f9b, 0xc1f293d4, 0x2e610195, 0xd405432b, 0x9908e19d, 0x3ea71624, + 0x9dfd4fff, 0x248909e4, 0x99e44d08, 0x21890c24, 0x0b32110a, 0x05e46d41, + 0x2707f6e2, 0x0ef49b40, 0xff8b0007, 0x30274027, 0xe39de405, 0x102f9b08, + 0x420bd401, 0xfd8ed405, 0x42734007, 0xf4e84103, 0x4007e31e, 0x45334a03, + 0x180042f5, 0x100bff02, 0x180443f5, 0x2027ff02, 0xe8004e23, 0x034235fd, + 0xfde8004e, 0x181041f5, 0x43f5ff02, 0xff021814, 0xe7f04e23, 0x0b4235fd, + 0x274027fe, 0x1253ff2c, 0x028d31a7, 0x2d030d32, 0x15048501, 0x55043504, + 0x95042504, 0x8d04b504, 0xf49b1a02, 0xa7fe0b0e, 0xf7ffff4e, 0x010040d5, + 0x25c62253, 0x34d13407, 0x14050108, 0xf2a81403, 0x0301fe0b, 0x430731ab, + 0x23051207, 0x44331403, 0x00003fd8, 0xc80e0f00, 0x04014140, 0xffff4f83, + 0x0405f0fc, 0x060b0499, 0x83040146, 0x0300004e, 0x40274706, 0x470b049d, + 0x1d4c5343, 0x40274644, 0x14031405, 0xfe0b0107, 0x2cdc0211, 0x2cd81c10, + 0x1415e120, 0x18031405, 0x0411d91e, 0x4ee31403, 0xa30c0002, 0x1e241541, + 0x111405b2, 0xd8140302, 0x1ec0202c, 0x074207de, 0x28114823, 0x1e102741, + 0x27020782, 0x0000004f, 0x050403f0, 0x4efe0b24, 0x07c207f9, 0x072307b1, + 0x4f11c890, 0xc04cc1c8, 0x0739101c, 0x3819cca1, 0xc9ccdc07, 0x0732073a, + 0x072d071a, 0x23bf3e09, 0x073007b8, 0x071b072d, 0x23b33e09, 0x073007c8, + 0x072c071a, 0x07a73e09, 0x071b0730, 0x0e2c0709, 0xc09b1ef9, 0x271a10cc, + 0xc8dc07a8, 0xd827c8c9, 0x0207c41e, 0x40004f27, 0x0403f000, 0xf98e2405, + 0x40001d27, 0x035ef90e, 0x07f94eff, 0x07b107c2, 0xc8900723, 0xc1c85a11, + 0x201cc057, 0xcca10741, 0x073f111c, 0x11ccccdc, 0x07320742, 0x072d071a, + 0xff657e09, 0x0710bc23, 0x072d0730, 0x7e09071b, 0xcc23ff57, 0x07300710, + 0x072c071a, 0xff497e09, 0x1b073007, 0x2c070907, 0x3c5ef90e, 0x20ccc0ff, + 0x10ac271d, 0xccc8dc07, 0xdc27c011, 0x07bb1e10, 0x004f2702, 0x03f00080, + 0x8e240504, 0x001d27f9, 0x5ef90e80, 0xf94efe86, 0xb107c207, 0x90072307, + 0x46401cc0, 0x1ccca107, 0xdc074421, 0x3521cccc, 0x1a073207, 0x09072d07, + 0x23ff607e, 0x300720bc, 0x1b072d07, 0x527e0907, 0x20cc23ff, 0x1a073007, + 0x09072c07, 0x07ff447e, 0x071b0730, 0x0e2c0709, 0xff375ef9, 0x1e20dc27, + 0x40ccc0c8, 0x20ac270c, 0xccc8dc07, 0xed1ebb21, 0xc0001d27, 0x1b5ef90e, + 0x27fe4efe, 0x0a029941, 0x070b049d, 0x3024c031, 0x23c02534, 0x20061e15, + 0x1926c025, 0x0299ff1e, 0x08019909, 0xf25efe0e, 0x090299fe, 0x0e080199, + 0xfe5b5efe, 0x99090299, 0xfe0e0801, 0x99ff595e, 0x01990902, 0x5efe0e08, + 0xf84efe5f, 0xffff4ea7, 0x0a0399ff, 0x010844d1, 0x3fc6b007, 0x53a4076c, + 0x6b940748, 0x10ac539f, 0xeb070307, 0xc0a78027, 0xe299d027, 0x07420758, + 0x33433332, 0xc0342b35, 0xf113ff2c, 0x00018c34, 0x3b1127ff, 0x004ed81d, + 0xeb260400, 0x03d103c1, 0xd7f0f0e1, 0x842eb441, 0x4cceb431, 0xff4ea720, + 0x4cc5f7ff, 0x4848c544, 0xb8450027, 0xf88ebc35, 0x07db92ce, 0x108c338d, + 0xd21e8aab, 0xf88e0427, 0x8027c027, 0xfd4ecf1e, 0xffff4ea7, 0x074301f7, + 0xdc0107d0, 0x16b60d38, 0x0e27fd8e, 0x7e271006, 0x0d07fc50, 0x76ff5d7e, + 0x0efd8e02, 0xfc425efd, 0x3ea7fc4e, 0xc1fdefff, 0xd0077034, 0x53184c33, + 0x44c41d4c, 0x07c30719, 0x3e10270d, 0xe84327ba, 0x70c3c1f4, 0x53183c33, + 0x34c01d3c, 0x4efc8eeb, 0x190499fb, 0x4487f0e3, 0x369841f1, 0x04310004, + 0x15140389, 0x07f105f4, 0xd43fe6d0, 0xf9302700, 0x04369233, 0x1ad49900, + 0x9d10d289, 0xf39308f3, 0xf90136d8, 0x04369444, 0x9d331900, 0xf39d09f4, + 0x9d2fe60a, 0x18d49900, 0x00964ff6, 0x1ea70f07, 0x7ef9e0ff, 0xb007fe85, + 0x0716d099, 0x03433340, 0x43f1544c, 0xff021000, 0x53183c33, 0x34c41d3c, + 0xbdfc9328, 0x0c070192, 0x0a0e1d27, 0x99ff297e, 0x400716d0, 0x4c034333, + 0x0043f154, 0x33ff0210, 0x3c53183c, 0xdf34c01d, 0xe100be03, 0xe33b07f9, + 0x361c2733, 0xe0ff2ea7, 0xfbd07ef9, 0x0316d499, 0xf143334a, 0x02100043, + 0xe03cd8ff, 0x71fc9320, 0x0c070192, 0x0a0e1d27, 0x99fedd7e, 0x4a0316d4, + 0x43f14333, 0xff021000, 0xe7e03cdc, 0xfb8ef0c3, 0x00001fa3, 0x40270900, + 0xf415f105, 0x99ff5f5e, 0x2c5e1b03, 0x07fc4eff, 0xffdea7c0, 0x0b1ef7ff, + 0x272241dc, 0x7e640a0d, 0xd401fb08, 0xd81044dc, 0x0c07ef48, 0x8f7e1027, + 0xd8d401fe, 0x0227f244, 0xfe21c99e, 0x0000fc8e, 0x0003e81c, 0x0003e80f, + 0x0003e81b, 0x0003e807, 0xf1a3f54e, 0x9107a007, 0xa469161e, 0x450b4c2b, + 0x41c84f8b, 0xd9f41362, 0x0a074101, 0xa7fe517e, 0xffffff2e, 0x010224a9, + 0x010423a9, 0x9289c407, 0x1b4307ca, 0x07422b4c, 0xc89d8964, 0xd62b6fab, + 0xd123f305, 0xffff3ea7, 0x093499fe, 0x019fd0e8, 0x34074383, 0x44873433, + 0x32f1342b, 0xff000054, 0x7307a401, 0xffb47e23, 0x8e24e2ff, 0x09a49901, + 0xd608a599, 0x9231954f, 0xf235b127, 0x74191207, 0x990f1c83, 0x13330473, + 0x31078307, 0xff843e23, 0x7c12f9ff, 0x15ff0000, 0x00f345f4, 0x18b02782, + 0xb2a3402c, 0x14f9b906, 0xff00007d, 0x231e4bce, 0xff4ea7c1, 0x43b9ffff, + 0x4c070108, 0x030f4c83, 0x53344ec1, 0x01ff2ff2, 0xff505e21, 0x0131dfe6, + 0xffff2ea7, 0xb93c07ff, 0x83010824, 0xf3550f3c, 0x00b334ee, 0xfe4851be, + 0x2ea77459, 0xa9ffffff, 0x25010223, 0xaf3ceef4, 0x27b42700, 0x9b402704, + 0x2ea70ef4, 0x21fd4fff, 0x3824c5f3, 0xd608a39d, 0x2ea75ebf, 0xa9feffff, + 0x27014224, 0xad4103e1, 0x9d014224, 0x3ea709ae, 0x6dfd4fff, 0x193211ac, + 0x899d2d94, 0x9129c893, 0x012892d5, 0x4383f251, 0x941d923d, 0x31c0312b, + 0xa7d8d634, 0xffffff3e, 0x06373ebd, 0x270f3299, 0x0ef49b40, 0x22873127, + 0xb04023f5, 0x9431ff02, 0x41037321, 0xc87734ce, 0x10072d05, 0xe8001e03, + 0xfea05e03, 0x2ea7f331, 0x6bfddfff, 0xa343873f, 0xd504004d, 0xd5020824, + 0x1e02082b, 0x65f453b5, 0x5e4101fe, 0x04e0fe7e, 0xf183fe7f, 0x24a9f58e, + 0xf3010104, 0xff4b43ee, 0x54eef421, 0x7419ff45, 0x42eef211, 0x6f26ff3d, + 0x2439f241, 0x997bb4ce, 0x4fd605a4, 0x034c076e, 0xff3ea741, 0x34adffff, + 0xdad60102, 0x0027b027, 0x1a5e746d, 0xa39419ff, 0x1e941d44, 0x27943183, + 0x83410302, 0x8ea405f1, 0x830227f5, 0xfcf58ef1, 0xf6fecf28, 0x53fecb8f, + 0x01fdeff3, 0xfe0c5e31, 0x0027b027, 0x99fee85e, 0x4fd605a4, 0xa18fc6a4, + 0x0ea7f331, 0x25fff9cf, 0x27741973, 0x1d410331, 0x05a39d74, 0xfe9e74be, + 0xb227871e, 0xbe5e0227, 0x272b3dfe, 0xff4ea730, 0x43adffff, 0x44a9010a, + 0x36070104, 0x2ea7340b, 0x27ffffff, 0xad0427b4, 0x5e010423, 0xfa4efe99, + 0xd107a007, 0xcea7b207, 0x11fdcfff, 0x01d101de, 0x11d431e0, 0x2b132112, + 0x0b340b40, 0x1132ab24, 0x483028e0, 0xa7fa8e00, 0x27f91e00, 0x44c4c542, + 0x1b070a07, 0x27fbd17e, 0x44c4c540, 0x1e64c4c5, 0x000000cb, 0x00000055, + 0x000492b8, 0x00000018, 0xff1afe3c, 0x000001c4, 0xa007f54e, 0xf0e32a07, + 0x01480d03, 0x05202c03, 0xc1f225f0, 0xf001bca4, 0x49894229, 0xcd4399c8, + 0x2b994199, 0x2b340392, 0x142c2731, 0xf7d2f193, 0x3b9123ff, 0xff707e93, + 0x04334087, 0x3407400b, 0x340b3433, 0x01a6f413, 0xbca2c141, 0xf5f83e23, + 0x014107fe, 0x0511232d, 0x0324033d, 0x93f49834, 0x018c1ff2, 0x24012311, + 0x41033103, 0x24052315, 0x069e31ec, 0x8c0af393, 0xa7340101, 0xfefd33de, + 0x4127d405, 0xcfff0ea7, 0x6c04c5fd, 0x04c52027, 0xbcabc170, 0x31274027, + 0x9d0da39d, 0xa29d0ca4, 0x89a24d10, 0xa18d0cb2, 0x0aa98d08, 0xa716a28d, + 0xfef29b3e, 0xb489a365, 0x99b39972, 0x04874123, 0xf0ccb299, 0x89062f34, + 0x342374b4, 0xa39d492b, 0x02433b0f, 0x5b420742, 0x07340743, 0x07212320, + 0x87412343, 0x2b230b13, 0x9da26d13, 0x11030ea4, 0x41e80407, 0x23070617, + 0x3a072123, 0x349d42a7, 0xb0310311, 0x9d0a0bf2, 0xbd891101, 0x0ea4990c, + 0xe016ad8d, 0x05caff4c, 0x8b72f093, 0x10048901, 0x34870231, 0x139b1907, + 0x0307120b, 0xe307010b, 0x8cbefd93, 0x99e00b01, 0xdea70ed2, 0x0befffff, + 0x93dca13e, 0x018b47fd, 0x8deed48d, 0xd48d16d4, 0xa6d48d5e, 0x012cd3d5, + 0xc554d1c5, 0xdec59cd0, 0x892103e4, 0x2f6b72bd, 0x9b99b699, 0x0fa799d2, + 0xc174bb89, 0xc0c8b4a8, 0x75f25324, 0xa74227fe, 0xefffff3e, 0x34052001, + 0x7e1a1c27, 0x0ea7fa22, 0x27efffff, 0xa1040540, 0xde30cc03, 0x48234647, + 0xdfabd43b, 0x2ea7d8ab, 0x85efffff, 0xff3ea72d, 0x3401f7ff, 0xdb204cf8, + 0xff2ea705, 0x0027f7ff, 0x993820c5, 0x49070fa3, 0x24c5433b, 0xbca1c13c, + 0x890ea499, 0x41037213, 0x4a334f6b, 0x03ff3d83, 0x43ab973b, 0xb1231907, + 0xabe824c5, 0x3b40271f, 0x9ddb07b7, 0xa18de1a4, 0xf6dfabda, 0x9d412714, + 0xa09de1a4, 0x27d12ee2, 0xe2a49d41, 0x3127f221, 0x073b0307, 0xe027010b, + 0x8de12e9d, 0x3103da20, 0x412704f6, 0x9de1249d, 0x0deee22e, 0x2c0304a6, + 0xdd34c420, 0xc10ca599, 0xd507bca2, 0x33982499, 0x08a389d5, 0x2a0b2d07, + 0x343b4423, 0x15dc2189, 0xd8238dfd, 0x03bb1ff6, 0x4910a499, 0xf6438ba3, + 0xa703b04f, 0xf7ffff0e, 0x4cf80401, 0x07054310, 0x33450765, 0x0b463363, + 0x606df164, 0x07000490, 0x03d101c6, 0x049028cf, 0xbd1fe600, 0x83410704, + 0xd34fe641, 0x070c0703, 0xf61f7e2a, 0x3f033607, 0x0004900c, 0x891e3189, + 0x21871634, 0x348d412b, 0x1c348916, 0x348d2d0b, 0x65f41114, 0x8d4a0b3c, + 0x32c5dc41, 0xf951e054, 0x9351f403, 0x01fd9303, 0xbea7018b, 0xa7fefd27, + 0xfefd17ce, 0xd401b311, 0x432bd211, 0x50104cf4, 0xe8320705, 0x07052830, + 0x03160743, 0x04900c1f, 0x33338700, 0x89432b45, 0x4c0b1e12, 0x1c034205, + 0x2744033c, 0x03100136, 0x03400514, 0x01f3a844, 0x053103d3, 0x11b305d3, + 0x834103d4, 0xd4150f4c, 0x0f030607, 0x0004900c, 0xdea74127, 0x11fdcfff, + 0x1c0389f1, 0x896cd4c5, 0x1a0b08ae, 0x3d044027, 0x4127fffe, 0xc1e4149d, + 0x1389bca4, 0x724289dc, 0x40273e0b, 0x4127320e, 0x89e3149d, 0x0489c813, + 0x3134ee1c, 0x27086102, 0x27890910, 0xf1418724, 0x04914043, 0x7039ee00, + 0x78110304, 0x272027f2, 0xf1428714, 0x04914043, 0xff3fe000, 0x84ffffff, + 0x58210303, 0xedf493f1, 0x41890188, 0x5c408914, 0x89a44e89, 0x1f8bec4d, + 0xef8b0f8b, 0x3027df8b, 0x43872427, 0x914044f1, 0x144e0004, 0x4e0e042e, + 0x036bd4ee, 0xf2483103, 0xfc26f053, 0xc0a70b01, 0x8411d0a7, 0x03fb4fe6, + 0xe61f2ea7, 0x272405fd, 0x1501c43d, 0x35402723, 0x0f0ea724, 0x2c27fde6, + 0x15020524, 0xfdf35303, 0xa73201fb, 0xfde60f3e, 0x1b070027, 0xd07e3435, + 0xf54c87f4, 0x04914049, 0x06b39900, 0x00863fe6, 0x24332d07, 0xf8f02e23, + 0x6462f5e4, 0x07000490, 0x27142732, 0x03340540, 0x07f1b834, 0x2700271b, + 0x081499e8, 0x11ff4cc0, 0x92d044f9, 0x23010004, 0x403b4153, 0x230534ab, + 0xc0101499, 0xf911ff4c, 0x0492d044, 0x53231100, 0xab403b41, 0x99231534, + 0x4cc02814, 0x44f911ff, 0x000492d0, 0x41532321, 0x34ab403b, 0x14992325, + 0xc0110330, 0xf911ff4c, 0x0492d044, 0x53233100, 0xab403b41, 0x03233534, + 0x9efef004, 0xe6a1a499, 0x9901ae4f, 0x3fe606b3, 0x64e901a7, 0x00049028, + 0xfffe4de0, 0x31e0019b, 0xac990329, 0x33dc07b9, 0xc72616dc, 0x0f0fdda3, + 0x9911c1c4, 0xb49948b3, 0x103c3349, 0xab134c33, 0x01d3ab34, 0x7e9027f0, + 0xa499f6f0, 0xf54487ba, 0x0109f84d, 0x0ef99bff, 0xa7baa499, 0xfde63fde, + 0x4e234487, 0x05fef608, 0x153427d4, 0x354127d3, 0xff0ea7d9, 0x04c5f7ff, + 0xf1c766e0, 0x04902464, 0x11f00100, 0xf6b27e4c, 0x054ccc03, 0xf02c27dc, + 0xd935d215, 0x03baa499, 0x9d438341, 0xb399baa4, 0xf13b6606, 0x04906464, + 0x01250700, 0x07243343, 0xf5140314, 0x0a3f4023, 0x470127ff, 0x534007e5, + 0x0b300741, 0x8344474e, 0x0b120131, 0xf5448743, 0x0a3f4042, 0x030103ff, + 0xe204c414, 0xb349f411, 0x438d4a0b, 0x06bd99c8, 0x4d9d3127, 0x48b099ca, + 0x99cf409d, 0x439d49bb, 0xd04b9de0, 0x62f18507, 0x00049024, 0xb8078a03, + 0x2409b533, 0x0b077507, 0x21312c21, 0x2e512d71, 0x23367c03, 0xfde8000e, + 0x4d003027, 0x3127fffe, 0x3b079307, 0x9c33b807, 0xf03e231a, 0xb533fde7, + 0x2c41051e, 0xbdf5e027, 0xff021808, 0x051a2489, 0x334f6b0c, 0x49ab104c, + 0x04350115, 0x31153705, 0x34354027, 0x1e07d10b, 0xe9d8efd6, 0x04902a63, + 0xf5458700, 0x0800ec43, 0x0bfd11ff, 0xdcd489da, 0x23e4d399, 0xdcd48d41, + 0x01173ff6, 0xd49d4027, 0x69a249e0, 0xab12eea1, 0x83420700, 0x994a0b43, + 0x3f4b1143, 0x20c8230b, 0xee12daf1, 0x42073207, 0x42533383, 0x9d08a48d, + 0xa24d0ca3, 0x27fbdf5e, 0x5ec027d0, 0x52c0fe87, 0x3953c04e, 0x2ea7ff1e, + 0x05fde61f, 0x1f3ea721, 0x2c27fde6, 0x15160738, 0x281f0332, 0xa7000490, + 0xfde60f0e, 0x3c273435, 0x15030524, 0x0f3ea702, 0x0027fde6, 0x487e3435, + 0xfc025ef2, 0x874afd93, 0x8fbea701, 0xcea7fef9, 0x5efef7c7, 0xfd93fc30, + 0xa7018730, 0xfef997be, 0xf987cea7, 0xfc1e5efe, 0x8716fd93, 0x1fbea701, + 0xcea7fefd, 0x5efefb57, 0x4127fc0c, 0x5ee2249d, 0xabc1fb56, 0x0da49dbc, + 0xb41d4127, 0x01bca1c1, 0xf6567ef0, 0xf9250fe6, 0xf58ef0c3, 0x432b4427, + 0x890fa49d, 0x243b74b3, 0x32e2392b, 0x3207f9d7, 0x27f9d25e, 0xf9f75e00, + 0x4103432b, 0x21152405, 0x07f95b5e, 0x073d07d2, 0x3334334d, 0x0b432b47, + 0x23b4874d, 0xe50000be, 0xa75ecd07, 0x1ed307fc, 0x03f211e5, 0x0207c82c, + 0xc47e0a0b, 0xfede5ef4, 0xffff1ea7, 0x091499fe, 0x24874383, 0x422b4433, + 0x005043f9, 0x32c0ff00, 0x27b10725, 0x1388100e, 0x01f0af7e, 0x1e1ff6d1, + 0x09b499fb, 0x24874383, 0x422b4433, 0x005043f9, 0x32c4ff00, 0x2264e9df, + 0x87000490, 0x5e11a314, 0xd307fafd, 0x0128cc27, 0x0d1c27f0, 0x7e40dcc5, + 0x4827f40e, 0x0140d4c5, 0x203cfcd3, 0xe81efa0d, 0xf842f253, 0x3ea72d01, + 0x01f7ffff, 0x403dc5f0, 0x7e0c1c27, 0x0ea7f3ea, 0x27f7ffff, 0x4004c548, + 0x3cfc0301, 0x1efa9a10, 0xb1f493de, 0x41210184, 0x2fbe0b07, 0x2a5efd3d, + 0xb8ac99fc, 0x07fcd85e, 0x23343331, 0xe4f8f03e, 0x63f54107, 0x00049064, + 0x3e034733, 0x2be4f8f0, 0x87410b43, 0x00be23b4, 0x915ee500, 0xa74227fc, + 0xfdcfff2e, 0x24c5f001, 0x161c2744, 0x27f3897e, 0xff3ea740, 0x34c5fdcf, + 0x6434c544, 0xa7faa75e, 0xfab15e30, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0xf6dbf800, 0xf333f555, 0xeaabf000, 0xc000e000, + 0x40000000, 0x15552000, 0x0ccd1000, 0x09250aab, 0x00000800, 0x10101010, + 0x10101010, 0x10101010, 0x10101010, 0x10101010, 0x18151211, 0x10101010, + 0x19161311, 0x12111010, 0x1d191614, 0x15121010, 0x241f1b18, 0x18141111, + 0x2f29231e, 0x1b161312, 0x41362c23, 0x1f191615, 0x58463629, 0x241d1918, + 0x7358412f, 0x10101010, 0x18141211, 0x11101010, 0x19181412, 0x12111010, + 0x1c191814, 0x14121110, 0x211c1918, 0x18141211, 0x29211c19, 0x19181412, + 0x3629211c, 0x1c191814, 0x47362921, 0x211c1918, 0x5b473629, 0x08010400, + 0x090c0205, 0x0a0d0306, 0x0f0b0e07, 0x10010800, 0x11180209, 0x1920030a, + 0x28040b12, 0x0c131a21, 0x22293005, 0x060d141b, 0x232a3138, 0x070e151c, + 0x242b3239, 0x3a0f161d, 0x1e252c33, 0x2d343b17, 0x353c1f26, 0x363d272e, + 0x3f373e2f, 0x071e03dc, 0xab483341, 0x07140741, 0x101c3332, 0x14ab3253, + 0x071e3103, 0x24230105, 0xf3b80403, 0x011d2506, 0xf2c80103, 0x0000fe0b, + 0xb7cef393, 0x44340101, 0x030f8a4f, 0xfff45300, 0x0b340501, 0x3e4fc4fe, + 0x1300030f, 0x023cf453, 0x30273405, 0xfa5af493, 0x06439d01, 0xff1efe0b, + 0xa7233f9b, 0xffffff2e, 0x0cdc24d1, 0x1027432e, 0x23d5071e, 0x11270cdc, + 0xb792f493, 0x4843c101, 0x04003d14, 0x04003d27, 0xffff2ea7, 0xe024d1ff, + 0xd5342e0c, 0x270ce023, 0x4800c111, 0x062424d1, 0x20d5042e, 0x031e0624, + 0x0ea715e6, 0x39fffb43, 0x9e44c604, 0x0bfe93b5, 0xbefe4efe, 0x93fe140e, + 0x01f9eff4, 0x24584499, 0xfe0e204c, 0xfdb6679e, 0x2d9efe0e, 0xfe4efdd5, + 0xf9d6f493, 0x58449901, 0xbe204c24, 0x1efdb64e, 0xd518be05, 0x9efe0efd, + 0x4efe13ec, 0x9d4127fe, 0xdb3e0604, 0xfe8e0427, 0xb703f493, 0x27421901, + 0xff4ea731, 0x439dfeff, 0x9326a60b, 0x01f99bf4, 0x04584499, 0x179e204c, + 0x0b9efdb6, 0xfe0b002e, 0xf493fc4e, 0x1901b6d9, 0xff3ea744, 0x3199ffff, + 0x26329927, 0x34d145c6, 0x47560634, 0x063834d1, 0x34994696, 0x4e45e610, + 0xff4ea721, 0x44d1feff, 0x44860148, 0xdea7a33e, 0xa7fff9cf, 0xfd4fffce, + 0xc301d419, 0x41dc437b, 0xcd4ea70f, 0x4419fff9, 0x437bc301, 0xbe2e41d8, + 0x190031dd, 0x7bc301d4, 0x1741d843, 0x2127d319, 0x1207c401, 0x31eb143b, + 0x4ea7d31d, 0xc5fdcfff, 0x05466442, 0xf49b4027, 0x38c4c50e, 0x4ea73127, + 0xc5fdcfff, 0xfc8e6043, 0xf4933127, 0x9d01f8f4, 0x3d5e6843, 0xa7fc4eff, + 0xffffff4e, 0xc6274d99, 0x1e0027d4, 0x44f0be05, 0x2af493fd, 0x441901b6, + 0xcea747c6, 0x19fff5bf, 0xce4f4bc4, 0x20070b4d, 0x0c071d07, 0xfd45b7be, + 0x4f4bc419, 0x0027423c, 0xfc93fc8e, 0xa701b5fc, 0xfeffffde, 0xf08bc001, + 0xd4990536, 0x1e47760b, 0x1504c8f4, 0xfd4679be, 0xffff4ea7, 0x0b4499fe, + 0x45160127, 0x031e0027, 0x30270127, 0xffff4ea7, 0x0b439dfe, 0xfb4efc8e, + 0xf86efc93, 0x9db02701, 0x42be69cb, 0xd0070008, 0x0d7e0c07, 0x2ad4ccfe, + 0xffff4ea7, 0x544bbdfe, 0x7ed4f60d, 0x1f1efdcc, 0x1e1cd1c4, 0xbe0d070e, + 0x07fd4626, 0x5efb0e0c, 0xb57efe7b, 0x1ed027fd, 0x05c49906, 0x0d074136, + 0xfc4efb8e, 0xf822f493, 0x99302701, 0x439d5842, 0x202c2469, 0xfdb47abe, + 0x70be051e, 0xd007002c, 0x271804cc, 0xff4ea730, 0x43bdfeff, 0x03440d54, + 0x27fd777e, 0xc4461ed0, 0xf0934302, 0x0701f7ec, 0xfd967ec0, 0xd605c499, + 0xff4ea748, 0x4411feff, 0xffff3ea7, 0x2433d1ff, 0xf5448706, 0x000d4843, + 0xa73127ff, 0xfdcfff4e, 0x1e6843c5, 0x07d42810, 0x459cbe0d, 0x0e0c07fd, + 0xfdf15efc, 0xfc8e0d07, 0xffff4ea7, 0x094499fe, 0x43832027, 0x44333487, + 0x43f9432b, 0xff00004d, 0x131e3103, 0x0a3824f9, 0x4f4bff00, 0x142e408b, + 0xfe0b0027, 0xf3582103, 0xfe0b0127, 0x4ea7fc4e, 0x01fd7fff, 0x58c0074d, + 0x070027d8, 0x4857be1c, 0x00ded8fd, 0x93260400, 0x01b4acf4, 0x31274219, + 0xb4a2f493, 0xa6431d01, 0xa7302726, 0xfd4fff4e, 0x43b50027, 0xfe0693be, + 0xfffe3fbe, 0x0000ded8, 0x31273f80, 0xb47ef493, 0xa7431d01, 0xfd4fff4e, + 0x4ea74301, 0x87ffffff, 0x4142b933, 0xf540270a, 0x02b04034, 0x9326e6ff, + 0x01b45cf4, 0x45064419, 0xfd4a25be, 0x83be051e, 0xff1efd43, 0xfffd6bbe, + 0x0000ded8, 0xf4931702, 0x1901b43d, 0x2745e644, 0x31f49331, 0x431d01b4, + 0x0010d4be, 0x1b10dcd8, 0x4ea73127, 0x07fdafff, 0xbe43550c, 0x27fd8dcb, + 0x40f19309, 0x379efe3f, 0x4ea7fe0d, 0xd1ffffff, 0xa60a4442, 0xff3ea725, + 0x3441fdaf, 0x3405420b, 0xf54efc8e, 0xffff5ea7, 0xeaf993ff, 0xf69301b3, + 0xa701f690, 0xfeffffbe, 0xcfffaea7, 0xbf7ea7fd, 0x53d1fff5, 0x35a60a44, + 0xafff2ea7, 0x0b2441fd, 0x99240543, 0x47161054, 0xffeb0ea7, 0x0e50beff, + 0x4667befe, 0xeb0ea7fd, 0x20beffff, 0x9419fe0e, 0xc02744d6, 0x68be171e, + 0x40270002, 0x2768649d, 0x270496c1, 0x2704e6c0, 0x69649d41, 0x0d99b4b9, + 0x532f4cd8, 0x47be0027, 0xb4b9fd47, 0xd0070140, 0x0c5845a6, 0x83045330, + 0x7c19be01, 0x832d07fd, 0x2676102c, 0x4c834d07, 0x274cab25, 0x27448600, + 0x6bc00701, 0x833d07cf, 0x3556303c, 0x0d99b4b9, 0x130f4cd8, 0x0d99bdbd, + 0x24e635c6, 0xa4c54127, 0xc5412764, 0xb2b960a4, 0x2cd80d99, 0xb4992f30, + 0x87438309, 0x2b443334, 0x5044f943, 0xa6ff0000, 0x48b4d147, 0xc5412401, + 0x111e64a4, 0x42544223, 0xe6265499, 0xfc01c84f, 0x01c3202c, 0x0d99b4b9, + 0x1d104cd8, 0x46469419, 0xfffcacbe, 0x40270cab, 0x41270486, 0xcf6bc407, + 0xfd4113be, 0x019f0ff6, 0xc5b6b811, 0xb2cef393, 0x27341901, 0x27448631, + 0x07941930, 0x66df6bd3, 0x6964994c, 0x45a67c19, 0x96056499, 0x416cbe45, + 0x2704d6fd, 0x27031e41, 0x68619940, 0xf610c2d8, 0x04649945, 0x43183027, + 0x23073127, 0x2127031e, 0x41c34107, 0x30274d8b, 0x31274486, 0xdf6bd307, + 0xdfe6d28b, 0x94190135, 0x74194506, 0x741d41a3, 0xf49b4027, 0x65f2930e, + 0x241901b2, 0x54d14656, 0x45960620, 0x0d99b3b9, 0x31833453, 0x3027031e, + 0xd3079419, 0x4a06df6b, 0x11270127, 0xe6fd437e, 0xd8741907, 0x3ea71941, + 0xd1fbffff, 0x27021034, 0x104c1c30, 0x43073127, 0x4f6b41c3, 0x4027031e, + 0x30274d8b, 0x84f90b1e, 0xff000a38, 0x4d8b3027, 0x31274486, 0x4f6b4307, + 0x941947c6, 0x57be4506, 0x131efd7b, 0x270f5499, 0x0ef39b30, 0x44873127, + 0xb04043f5, 0x2ea7ff02, 0xd1fbffff, 0xab021024, 0xd9f393fd, 0x341901b1, + 0xbe7e4fd6, 0x27fe0ec6, 0xc0041e20, 0x24f92022, 0xff010d94, 0x428747c6, + 0x300044f1, 0x44d8ff02, 0x27420712, 0x2b410335, 0x27461032, 0xf0210331, + 0xa2c1daf3, 0x07302748, 0xc544a342, 0xf39b48a4, 0x8b00070e, 0x48a2c5ff, + 0xd168a3c5, 0xa70a4452, 0xfd4fff4e, 0xa66443c5, 0xff3ea728, 0x3441fdaf, + 0x7fff3ea7, 0xa7420bfd, 0xfdafff2e, 0x34212405, 0x25104ce3, 0xa3341134, + 0x3415104c, 0xfe0e6fbe, 0x9419fdeb, 0x74194506, 0x741d41e3, 0xf49b4027, + 0x9340270e, 0x01b13ff3, 0x675e341d, 0x4ef58efd, 0x08ecbefa, 0xff4ea700, + 0x44b9feff, 0xd0070d99, 0xbe2f4c1c, 0xa700089a, 0xffffff4e, 0x99264399, + 0x3224274a, 0x0d1eb127, 0xa200b127, 0xb4d6b027, 0x181e0027, 0xf3aaf493, + 0x58449901, 0x4c043027, 0x07312720, 0x0741c343, 0xbe0f6b04, 0xa7000ba8, + 0xffffff2e, 0xd4964127, 0x40ab4027, 0x063623b9, 0x4496c127, 0x3706c027, + 0x24bd4027, 0x3ebe0636, 0x0cab0007, 0x04864027, 0xc4074127, 0xdea7cf6b, + 0xb9ffffff, 0xc6063ad4, 0x4770be44, 0x3bd4b9fd, 0x27460606, 0x49f49330, + 0x439d01f3, 0x3bd3bd06, 0x27b4c606, 0x27a49601, 0xff3ea700, 0x34b9ffff, + 0x45060637, 0x34bd4027, 0x34be0637, 0x0cab0000, 0x04864027, 0x04074127, + 0x4ea7fa8e, 0xc1ffffff, 0x44b9fc43, 0x03ca0100, 0xc2430b13, 0x0c830e40, + 0xf903330f, 0x00007c00, 0x27fe0bff, 0x4efe0b00, 0xedf493f5, 0xf0e301f2, + 0x44990f6b, 0xe6f02508, 0x5e002744, 0x3ea70291, 0xb9ffffff, 0x36063834, + 0x15002745, 0x00b85ef0, 0xc0274027, 0xbd28ac27, 0x5e063834, 0xcd070095, + 0x47334d07, 0xc40bc533, 0x08f4c0f1, 0xbc07ff00, 0xfd4c5bbe, 0x08f4c4f1, + 0xbe23ff00, 0x83fff70c, 0x34070f4c, 0x44873533, 0x4307342b, 0x432b4333, + 0x0c9443f1, 0x1b070005, 0x2a074307, 0x10014403, 0x40051403, 0xf2a84403, + 0xc564b1c1, 0xb4c1b431, 0xb834c568, 0xc56cb0c1, 0xb1c1bc30, 0xdc31c570, + 0x8352b489, 0x34c50f4c, 0x54b4c1c4, 0xc1d434c5, 0x3bc55cbb, 0xfd4027d8, + 0x0008e8d4, 0x1b4ea7ff, 0x4479fff7, 0x0ea74566, 0xbefff719, 0x27fe8be5, + 0x1b0ea7c1, 0x21befff7, 0xd007fe8c, 0xffff0fe4, 0xff5cffff, 0x4ea7fc15, + 0xd1ffffff, 0x930a3448, 0x01f207f5, 0x215ef693, 0x4df79301, 0x08070121, + 0xfffee1be, 0x4c834007, 0x184ce418, 0xc0070160, 0xf620cc83, 0x070157cf, + 0x0f4c8348, 0x35333407, 0x342b4487, 0x93339307, 0x9f03932b, 0x00050be8, + 0x99119499, 0x9dc10493, 0xab4733ac, 0xa4d39d34, 0xd14094c1, 0x2b040453, + 0xc5433343, 0x90c1c8d4, 0x0450d540, 0x68adbe04, 0x0b9499fd, 0xc5ccd0c5, + 0x4566d0dc, 0x4ea3d461, 0x65010000, 0xb99499d4, 0xd4614546, 0x20004da3, + 0xd489d465, 0xc442e490, 0x04949900, 0x271d44d8, 0x28649d41, 0xf6169499, + 0x98d1c148, 0xd4c17105, 0xc174159c, 0x7025a0d0, 0x3800a25e, 0x1e412748, + 0x9d402703, 0x40272864, 0x74057425, 0x4d077415, 0x4c033607, 0x01282778, + 0x05440341, 0xa8340331, 0x0c1c27f2, 0x891a618d, 0x9c891a94, 0x5345531c, + 0x24648dc5, 0x11266c8d, 0xc1c49b73, 0xac079cd0, 0xa153030b, 0x0a0b1c07, + 0xfe3230be, 0xd4c17321, 0x0bb007a0, 0x07040743, 0xbe0a0b1c, 0xc1fe321d, + 0x730198d4, 0x430b2007, 0xbd830407, 0x2c3303ff, 0x0b1c0716, 0x0cbc330a, + 0xfebeb2ab, 0x4d27fe31, 0x1c270bbc, 0x2df40d2c, 0x834007f1, 0x010fff4d, + 0x07b4abf0, 0xbe6b8516, 0x07fd7b5d, 0x9a1dbe09, 0x615499fd, 0x0d074144, + 0xbea40c03, 0x99fd7797, 0x44e60b94, 0x549d4227, 0xbe080704, 0x03fd4900, + 0xfe945e81, 0xffff3ea7, 0x3434d1ff, 0x1e48ce0a, 0x0a3438d5, 0xf49b4027, + 0x0e33990e, 0x4fbf2ea7, 0x273138fd, 0x53240541, 0xd6240331, 0x86f42132, + 0x55babe46, 0x27f111fd, 0x8601ab40, 0x6b412704, 0x11f4154f, 0x8ef0c3f0, + 0x89fc4ef5, 0x0d89280e, 0xff1f8326, 0x9b0fffff, 0x22c307de, 0x9efc0ed1, + 0x270024b9, 0x07240540, 0x8e34050d, 0x93f54efc, 0x01f01ff3, 0x634839c1, + 0x0f9f83f1, 0xc1800000, 0x904c5437, 0x9fa39123, 0xfffffff0, 0x34399103, + 0x022e4ff6, 0x4c303459, 0x160c2710, 0xc103bc5e, 0x30278831, 0x2c27f325, + 0x27f42110, 0x07343b31, 0x16418b43, 0xab430746, 0xd5f39341, 0x34c501ef, + 0x210a1e88, 0x253103f3, 0xdef2f0f3, 0x72c1f121, 0x40719d3c, 0x22993907, + 0x33498706, 0x9d342b35, 0x43074172, 0xefaaf293, 0x482dc101, 0x432b4333, + 0x993473c1, 0xdc333871, 0xab420b1c, 0x35f621d3, 0x6043a9f1, 0xa91d0704, + 0x33045e44, 0xff1f8363, 0x310fffff, 0xf5439bfc, 0x00055c61, 0x6064f5ff, + 0x33ff0005, 0xc1c20bc3, 0xcba94822, 0xc4a90110, 0xf1450112, 0x083c62f5, + 0xb4da0005, 0x27473632, 0x1e27800c, 0x27010000, 0x0705be20, 0x10ac27fe, + 0x010cc0d5, 0x14070f1e, 0x010cc0d1, 0xa4471433, 0xfe0617be, 0x4333f431, + 0x08c24aed, 0xf4310005, 0x43333b07, 0x08bc44f1, 0x33330005, 0xf493340b, + 0x0701ef10, 0x2340791b, 0x07110338, 0xf0580353, 0x1f1e03f1, 0x4d073a01, + 0x2d074acb, 0x111c4c53, 0xf62a2b38, 0x1320cc46, 0x3823b123, 0x00fa0fe6, + 0xa027da1e, 0x00008f27, 0xf4318000, 0x44e94333, 0x000508c0, 0x01134bd2, + 0xdd4dee54, 0xff4f8300, 0xf50fffff, 0x00056064, 0x534d07ff, 0x34071c4c, + 0x44873533, 0xc307342b, 0xc32bc333, 0x3f070c07, 0x0be80f03, 0x1d070005, + 0x34032f07, 0x11fe4c7e, 0xf14606f4, 0x050c34c4, 0x0b308700, 0x05402734, + 0x108cf434, 0x4a070228, 0x4c534dcb, 0x1d4ff61c, 0x41480702, 0xf54333f1, + 0x00056041, 0x5c44f1ff, 0xe2ff0005, 0x27020741, 0x11701e05, 0x15210124, + 0x23310534, 0x104c3428, 0x43f54333, 0x00050840, 0x53ca3823, 0x314907e7, + 0x333987f1, 0x07432b45, 0x03133334, 0x0507b01f, 0xa9333300, 0x2b011012, + 0x03f42134, 0x33541521, 0x1012ad43, 0x4045f501, 0x05000508, 0xb03f035d, + 0x25000507, 0x4434b9f4, 0xfdf29304, 0x410301ed, 0x044434bd, 0x31272459, + 0x233d4103, 0x191e245d, 0xf2930127, 0x2101ede4, 0x8823c1f1, 0x413b4127, + 0x23c534eb, 0x019b5e88, 0xbe1a0c27, 0xa700054c, 0xfdeb2f4e, 0x43053027, + 0x00002f27, 0x42151442, 0x930ef39b, 0x01edb3fb, 0x61e4b639, 0x74c100df, + 0x01b3813c, 0x5683c248, 0xa748bcc1, 0xffffdf0e, 0xfe0585be, 0xdc83dc07, + 0x24b0990f, 0x1c07d333, 0xdaf92027, 0xff000080, 0xfea10fbe, 0x0686c007, + 0x3a877481, 0x4a07340b, 0x41033005, 0x0080d4fd, 0x0ea7ff00, 0xbeffffdf, + 0xf6fe052b, 0x5e0627c4, 0xb3990121, 0x3b460724, 0x75b48543, 0x3c7cc1bc, + 0xed46f293, 0x4e238901, 0x2d71c449, 0x073f34ce, 0x2728071d, 0xc8be1a0c, + 0x38070004, 0x1ea72c07, 0x53f7ffff, 0x03240132, 0x1814d524, 0x93f3a801, + 0x01ed17f4, 0x42814371, 0x380bcc49, 0x7dc5282b, 0x504dc53c, 0x42854375, + 0x1e4e4c8d, 0x5022c107, 0x073c72c5, 0x33398749, 0x07432b45, 0x2b133314, + 0xe81f0314, 0x9300050b, 0x01ecdff0, 0xa3be2707, 0x32270004, 0xecd2f493, + 0xa7433d01, 0xfffb430e, 0xfe8711be, 0x0f24d007, 0xffffffff, 0x5e150c27, + 0x40070081, 0x43337c09, 0x04d041f1, 0x2c07ff00, 0x071a0c27, 0x0439beb4, + 0x34be2300, 0xc253fffb, 0x2ea73707, 0x01f7ffff, 0xd5340334, 0xa8011824, + 0x1a0c27fc, 0x000403be, 0xfc937409, 0x0501ec7c, 0x6cc3c1b4, 0x275073c5, + 0xc0d4fd42, 0xa7ff0004, 0xfffb430e, 0x44c60439, 0xfe8618be, 0x00274027, + 0x1e1ec43d, 0x4333f431, 0x07b04f03, 0x43a90005, 0x44d10110, 0x3333010c, + 0x2307340b, 0xfb5e2823, 0x8ef143fd, 0x27f84ef5, 0xff8ea7d0, 0xfa93fd4f, + 0x1e01ec28, 0xa7d12703, 0xfffaf30e, 0xfe861bbe, 0x0fe0b007, 0xffffffff, + 0x100700da, 0x1df91433, 0xff00051c, 0x052013f1, 0x4d07ff00, 0x4f034333, + 0x000507b0, 0x039040c1, 0x0000003f, 0xc1031580, 0xe1078c49, 0x4c834907, + 0x3334070f, 0x2b448735, 0x33c30734, 0x03c32bc3, 0x050be8cf, 0xacc2c100, + 0xfae4ee23, 0xa824c1ff, 0x052413f1, 0x44c6ff00, 0x404c431b, 0xf9a823c5, + 0x00051e14, 0xc024c5ff, 0x4d5c0401, 0x4f3cfff0, 0x0fff0000, 0x24c58411, + 0xa6e479e0, 0xb9c49946, 0x41274616, 0x93b9c49d, 0xfe3a05f0, 0xfd5250be, + 0x2788a3c1, 0xeb4d3b41, 0x88a3c534, 0x230ccd99, 0x0ccd9dd1, 0x4123a459, + 0x4027a45d, 0x0510b4fd, 0x4ea7ff00, 0x79fffaf3, 0xa7456644, 0xfffaf10e, + 0xfe8508be, 0xff27dff6, 0xee48a4c1, 0x07ff2049, 0xbe0a071c, 0x5efd5373, + 0x0d07ff15, 0xfd4ef88e, 0xffff4ea7, 0x274d99ff, 0xce264199, 0x44b92f1d, + 0x45a60d44, 0x44cdf093, 0xbe2d07fe, 0xc4fdfe54, 0xc5be0bd2, 0x06c6fd3a, + 0x0b1e0227, 0x5abed616, 0x0546fd3a, 0xfd0e0027, 0xfd79c69e, 0xfd4efd8e, + 0x26c2f493, 0x09432902, 0x3534ce44, 0xfb8af493, 0x03240701, 0x3407c32c, + 0xe37f2ce3, 0x34197f3c, 0xc2803c03, 0xd027f932, 0xfb6ef093, 0xfa9bbe01, + 0x930626fd, 0x01fb63f0, 0xfd7bb7be, 0xe91ed127, 0xf493d027, 0x9901fc20, + 0x44994043, 0x1134ce41, 0xfd766bbe, 0x40270dab, 0x41270486, 0xdf6bd407, + 0xfd8e0d07, 0x071e03dc, 0xab483341, 0x07140741, 0x101c3332, 0x14ab3253, + 0x071e3103, 0x24230105, 0xf3b80403, 0x011d2506, 0xf2c80103, 0x4107fe0b, + 0x43d840ab, 0x01151e0f, 0x05242313, 0x03140303, 0x07071e04, 0x03425342, + 0x86f45841, 0x03141925, 0x03041d11, 0x0bf2a801, 0x030105fe, 0x0bf2c804, + 0x862253fe, 0x03140125, 0x03040514, 0x0bf2a804, 0xf50533fe, 0x02180001, + 0x0403f5ff, 0x27ff0218, 0x000e2340, 0x0435fde8, 0xe8000e03, 0x1002f5fd, + 0xf5ff0218, 0x02181403, 0xf00e23ff, 0x0435fde7, 0xfc4efe0b, 0x4327d007, + 0xe3070333, 0x04f53d07, 0xff021200, 0x0d47c107, 0x33331207, 0x100034f1, + 0x48dcff02, 0xf12087f8, 0x02100024, 0x004ddcff, 0x3427f608, 0x23f50103, + 0xff021200, 0x43f54087, 0xff021200, 0x3c87e623, 0x34f54027, 0xff021600, + 0x070fec83, 0x0e1c333d, 0x1f833333, 0x3ff00000, 0xab10ec33, 0x0034f5e1, + 0xf5ff0214, 0x0214043e, 0x0ef49bff, 0xf64efc8e, 0x9107b207, 0x6c27a007, + 0xc5f89340, 0x7ea701a6, 0x1efdefff, 0x10cb0747, 0xc60741bc, 0xd4078401, + 0x41c3d633, 0xde238405, 0xc1fefdb4, 0x4c33d474, 0x1d4c5318, 0x07f542cc, + 0xe323032c, 0x070d0723, 0xff077e19, 0xf49b4027, 0x1a0c270e, 0x1d072a07, + 0x067e3c07, 0x2bac0bff, 0xd69c0bbc, 0xf68eb8bf, 0xefff2ea7, 0xe8031efd, + 0xd424c1f3, 0x4ddc3327, 0x0bf5fc6a, 0x07fb4efe, 0x3ec007b1, 0x070c07e4, + 0xf31ea72b, 0xfb0efefd, 0x4efec05e, 0x07c007fb, 0x07ce3eb1, 0x273b071c, + 0x2ea71a0c, 0x0efefdf3, 0xfeb75efb, 0x00114f27, 0xf4fb1000, 0x3fffff40, + 0x01f50533, 0xff021800, 0x180402f5, 0x3027ff02, 0xe8000e23, 0x270335fd, + 0x0e03234c, 0xf5fde800, 0x02181004, 0x1402f5ff, 0x23ff0218, 0xfde7f00e, + 0xfe0b0335, 0x330f0c83, 0x7e0e2303, 0x0439ffff, 0x3e9e44c6, 0xfe0bfe82, + 0x04030333, 0xf3e8031e, 0x100004f1, 0x3327ff02, 0xfc6a4ddc, 0x33fe0bf2, + 0xf5432705, 0x02180004, 0x0402f5ff, 0x27ff0218, 0x000e2340, 0x0435fde8, + 0xe8000e03, 0x1001f5fd, 0xf5ff0218, 0x02181402, 0xf00e23ff, 0x0435fde7, + 0xfc4efe0b, 0x0207c007, 0x0c03d207, 0x0573be44, 0x9940a700, 0xd49d41d3, + 0x42d49d43, 0x991a32c4, 0x4cc03ad4, 0x444713ff, 0x43b94c0b, 0xd39d014c, + 0x4d44b942, 0x43d49d01, 0x0000fc8e, 0x00000001, 0x00000000, 0x00000001, + 0xff02b040, 0x0f6bf54e, 0x0fe6f063, 0xdea70184, 0xb9ffffff, 0x460635d4, + 0x8507be46, 0x270586fd, 0xbd612740, 0x1e0635d4, 0x27602703, 0xffcea7d0, + 0x7027ffff, 0x052ef993, 0xff8ea702, 0x5ea7fd7f, 0xb9fdcfff, 0xf40a5bc4, + 0x0122104c, 0x0ce5c4b9, 0x94994606, 0x9df1139a, 0x4c501a01, 0x010e5e10, + 0x0196f213, 0x930f072a, 0x01f947f1, 0xfd72e6be, 0x00fa0fe6, 0x4d24f409, + 0xf4290bba, 0xfb284ce0, 0x93062700, 0xfe49e8f1, 0x4307311e, 0x3707400b, + 0x00014f30, 0xf4537000, 0x4319ff64, 0x41c34307, 0x2f6b2407, 0xf90af193, + 0x61147101, 0x0a430b13, 0x2725b604, 0xfff19306, 0xb39efe49, 0xc0b9fdfd, + 0xfbab0a5a, 0xdc83d007, 0x073d070f, 0x3345334d, 0x23340b33, 0xfff5a43e, + 0x4a272107, 0x24032101, 0x34033105, 0xc2b9f4a8, 0xf3930a5b, 0x8101f8c4, + 0x0731613e, 0x0333714d, 0x33210301, 0x5ac0bd43, 0x5bc2bd0a, 0x244f030a, + 0x0b000525, 0x0543151e, 0x9a949941, 0x41033027, 0x9b9a949d, 0xa6260ef3, + 0x0ce5c4b9, 0x84114244, 0x00004ea3, 0xeb841502, 0xff2ea7fb, 0x4027fd4f, + 0xf49b2301, 0x9921270e, 0x233b0ec4, 0xf45324cb, 0x4301feb8, 0x41272138, + 0x21533405, 0x340324c6, 0x4127f31e, 0x276054c5, 0x8df493d1, 0x479d01e6, + 0xfed95e06, 0x46ab4d07, 0x44860027, 0x0f6b0127, 0xf493171e, 0x8101f834, + 0xf4405143, 0x0000003f, 0x27ff0120, 0xff165e20, 0xf58ef043, 0x4ea7fb4e, + 0xb9ffffff, 0xb90ce64c, 0x070ce743, 0x1eb407d2, 0xe844f122, 0x07ff000c, + 0x2b14053e, 0xc83f6b40, 0x22f90d40, 0xff000d28, 0xd21d0127, 0xb3bdfb8e, + 0x23070ce7, 0x070f2c83, 0x034287e3, 0xd2c3cee1, 0xfb8e0027, 0xffff3ea7, + 0xe734b9ff, 0xbd41030c, 0x0b0ce734, 0xa7f94efe, 0xfbffff3e, 0x02183ad1, + 0x9a073431, 0x3c1f9c53, 0x0000004f, 0x1ee02701, 0x103ed105, 0x9395b602, + 0x020353f4, 0xc58043c1, 0x4e078443, 0x43e44383, 0xbea7009a, 0xb9ffffff, + 0xb90ce6b1, 0x070ce7b4, 0x07411b0e, 0x272f6b24, 0xfd93104c, 0x33020328, + 0x422b1d0c, 0xc11f0c53, 0xc02780d3, 0xc1274210, 0x2b102cd4, 0x4f834a07, + 0x0fffffff, 0x2c832107, 0x33342b0f, 0x03428733, 0xe843f511, 0xfdff000c, + 0x000d2820, 0xe6b1bdff, 0x9b40270c, 0xc5160ef4, 0xb4bd4127, 0xd4c10ce4, + 0x90d3c188, 0x305b4103, 0x8b88d4c5, 0xe335e63c, 0xa7e8a3e3, 0xfbffff4e, + 0x02104ed5, 0xb4bd4127, 0x3616063b, 0xfd94d8be, 0xe394d4c1, 0x94d4c543, + 0x9ff6f98e, 0xf39300f1, 0xa70202a4, 0xffffff4e, 0x0a5a4db9, 0x99803bc1, + 0xa0279a34, 0x2300815e, 0x07e21141, 0x031f6b14, 0xc6e00141, 0xc49d6d2f, + 0x10d2079a, 0x0000012f, 0x00df2701, 0x07010000, 0x833d0710, 0xa7370317, + 0xfde75f4e, 0x07e3310b, 0x37e34005, 0x00274315, 0x2ea74035, 0x27fde74f, + 0x24050e4c, 0x4d072315, 0xffff4f83, 0x4fa30fff, 0x80000000, 0x351c1c33, + 0xa741ab20, 0xfbffff3e, 0x021834d5, 0x0180c4c1, 0xc54d0be3, 0xe41180c4, + 0x4d2b3d0b, 0xe305e415, 0x41071d1e, 0xed07a127, 0xec83e42b, 0x03e3330f, + 0x052524ef, 0xf6c30700, 0x9dff6e4f, 0xf4939a34, 0xc10201f4, 0xb4ce8044, + 0xff3ea70f, 0x3411fd7f, 0x00004ee3, 0x26341502, 0xff3ea7a8, 0x4127ffff, + 0x063534bd, 0x270f3399, 0x0ef49b40, 0x33874127, 0xb04034f5, 0xf98eff02, + 0xf49b4027, 0x99f98e0e, 0x47d81414, 0x8a049d1b, 0x13311441, 0x0b3c02c1, + 0x33430734, 0x9003c543, 0x2108242b, 0x0b3c04c5, 0x2b4007fe, 0x23f49b41, + 0x20071686, 0x4f9b2803, 0x4e382723, 0x9b242e04, 0xf31e25f3, 0x007f4f27, + 0xf49b4000, 0xa7fe0b21, 0xfdefff4e, 0x33dc42c1, 0x2c53182c, 0x991b1e1d, + 0x31c48904, 0x83412312, 0x33348743, 0x0b432b44, 0x61449940, 0x019d45e6, + 0x88039988, 0x11231307, 0x0bdd23ca, 0x07fd4efe, 0x99c53ed0, 0x45f688d4, + 0x9b223f9b, 0x432e234f, 0xd49d4027, 0x9bfd8e8a, 0xf09b2af0, 0x9b100b2b, + 0xf09b22f1, 0x204f9b23, 0x9b104ca3, 0xf09b20f4, 0x9bfe0b23, 0x4ce3204f, + 0x20f49b10, 0xa72b4f9b, 0xfdefff3e, 0x34d54327, 0x34c102d8, 0xfb48dcd8, + 0xefff3ea7, 0xd834c1fd, 0x08004ddc, 0xd54427f9, 0xd502d834, 0x2702dc34, + 0x3c32d520, 0x273ea706, 0x3205fdeb, 0x00004f27, 0x34150d04, 0x990ef29b, + 0x45468804, 0x029d4027, 0x89049d88, 0x0c5cfe0b, 0x89f49310, 0x41c101a0, + 0x07183cac, 0x0f1c8310, 0x4c834107, 0x2743330f, 0x0201002f, 0x6b247b80, + 0x9641272f, 0x93402724, 0x01a063f3, 0x31c54533, 0x4c349dac, 0x9bc032c5, + 0x34c1200f, 0x830ce3c0, 0xfe0b04ab, 0xa046f493, 0x8b409901, 0x01830253, + 0x4f9bfe0b, 0x13478323, 0x9b480048, 0xfe0b25f4, 0x93230f9b, 0x01a027f4, + 0x075043c1, 0x2b433343, 0x0b037304, 0x1efe0b03, 0x234f9be8, 0xf4930405, + 0xc101a00c, 0x03153c43, 0x9db04399, 0x43990803, 0x09039daa, 0x9dac4399, + 0x44990a03, 0x0b049d8b, 0xfe4efe0b, 0x9fe6f293, 0x4023c101, 0xce234f9b, + 0x24990f34, 0x104c388b, 0x9d204ca3, 0x933e8b24, 0x9fcaf093, 0x8c049901, + 0xab8a0399, 0x8a049d43, 0x049d4027, 0x223f9b8c, 0xce234f9b, 0x55be0b43, + 0x04c6fd97, 0xfe8e0227, 0x9fa2f093, 0x8b049901, 0x24f04c83, 0x0027104c, + 0x04c1fe8e, 0x8ef48b9c, 0x274f9bfe, 0x30240f9b, 0x00a7204c, 0x4103fe0b, + 0x2325f49b, 0x1f4c1341, 0x0123045b, 0xfb4efe0b, 0xffff4ea7, 0x380cc1ff, + 0x0a5a4bb9, 0x0027d007, 0x07009d5e, 0x31d09943, 0x070f4c83, 0x330183e4, + 0x0be33345, 0x072007e4, 0xa4ee2330, 0x2333fff5, 0x322b3533, 0x3d0be171, + 0xe481e261, 0xe1413135, 0x2107420b, 0x2c833425, 0x96312780, 0x07302724, + 0x38263323, 0x1e27a311, 0x101c3815, 0x0e1e23a3, 0x04001d38, 0x061e21a3, + 0x2ca3100c, 0x33400780, 0x2b033345, 0x9d4d0b40, 0xd1c11442, 0x45403154, + 0x9dc31941, 0xd3c11543, 0x31e12154, 0x05300be2, 0xc5421541, 0xc41954d3, + 0x41030127, 0xd499c41d, 0x30d39931, 0x31034103, 0x9d31d49d, 0xd49930d3, + 0x0c42d430, 0x4307c319, 0x4cfc4b2b, 0x8eff5680, 0x99fa4efb, 0x03993104, + 0x340bc130, 0xe407432b, 0xef6bd107, 0x411ea027, 0x32413131, 0x2333210b, + 0x4d2b4207, 0x34994128, 0x204cd814, 0x14349946, 0x17104cdc, 0xb60e44d8, + 0x99d24e15, 0x4e1b3204, 0x2f804cd8, 0x4103b419, 0x0499b41d, 0x23ec0730, + 0x9def6b41, 0xa1273004, 0x41834e07, 0x35333407, 0x342b4333, 0x07310499, + 0x03300bce, 0xa9e4cec1, 0x3441051e, 0x04c1041e, 0x5004c554, 0x3ea7a7e6, + 0x27ffffff, 0x3534bd41, 0x0f339906, 0xf49b4027, 0x8741270e, 0x4034f533, + 0x99ff02b0, 0x02993104, 0x32039930, 0x4f6b422b, 0x3c18342b, 0x32049d80, + 0xf84efa8e, 0x21890499, 0x0743831e, 0x87943394, 0x31942b44, 0x0bb9071d, + 0xc5b00be3, 0xd32b58be, 0xa107c007, 0x2f6b4307, 0x0001df10, 0xdf270100, + 0x01000000, 0xc560b29d, 0xa3315cbd, 0x80274d0b, 0x8127430e, 0xe49f2ea7, + 0x11a301fd, 0x9d2e05a4, 0xc3c561b8, 0xd4c4c5d0, 0xe0272d15, 0x3ea72e35, + 0x27fde48f, 0x34050f4c, 0xb4993d15, 0xa63e3561, 0xfbed7e44, 0x9989c499, + 0x290788c3, 0x07582c03, 0x0341030c, 0x9d020b31, 0xc39d89c4, 0x4ef88e88, + 0x300499fc, 0x44d6d007, 0x771ec027, 0x6b1ec027, 0xd4994aa6, 0x83412389, + 0x33340743, 0x2b448734, 0x993d0b34, 0x47f66134, 0xc1603099, 0x4007583e, + 0x43331007, 0x142b1533, 0x14211d0b, 0x2b5c33c1, 0x1ee30be4, 0x8ad49927, + 0x993841dc, 0xd29932d4, 0x83040731, 0x07300701, 0x33333310, 0x07132b15, + 0xce310334, 0xd39d1d24, 0x071d0b32, 0x073e0720, 0xff007e0d, 0x43330411, + 0xd499c40b, 0xc8e02788, 0x0c078f42, 0xf54efc8e, 0x0107d007, 0x72078107, + 0x5f9b022b, 0x1850ce23, 0x072c3f9b, 0x604c0342, 0x070d34da, 0x7e120701, + 0xd027fb49, 0xc101145e, 0xa00750d3, 0x3333a7e3, 0x432b4a07, 0x071240cc, + 0x07a7e3a8, 0x2c432b4a, 0x5ed12740, 0x702700f5, 0xb07e0d07, 0x31de99fb, + 0x2730d499, 0x9d4e1b30, 0x94078ad3, 0x29079f6b, 0x42072183, 0x4333c207, + 0x6907c533, 0x6103c42b, 0x9ececd0b, 0x41c13150, 0x331333c4, 0x07b10743, + 0x14c3990a, 0x042bb40b, 0x4b2b4507, 0x072d37d8, 0x083b2b38, 0xc818d640, + 0x0d072230, 0xa87e1c07, 0x034907fa, 0x32d49d41, 0x0714c499, 0x274483ab, + 0x274486d1, 0x27d203d0, 0x08711e10, 0x0901da00, 0x991e9607, 0xc0270027, + 0x0754d3c1, 0x2b33334a, 0x2c40c843, 0x070938ce, 0x271027a3, 0xc14d1ed4, + 0x4ea738d2, 0xb9ffffff, 0x190a5a43, 0x07344e24, 0xbe18070d, 0x07fd9472, + 0x27a72ba8, 0x412b1e10, 0x733007c4, 0x07430b33, 0x90d4c51c, 0x0732d99d, + 0xfdd87e0d, 0x1132d499, 0x9d41030c, 0x0d0732d4, 0x33fe567e, 0x0b1007c3, + 0x07d0271c, 0xfab17e0a, 0x0807d536, 0x327e1707, 0x8e0d07fa, 0x203f9bf5, + 0x9ba2f293, 0xac24c101, 0x24c14858, 0x830ce3c0, 0x430704ab, 0xa3104c83, + 0x40ab0c4c, 0x38c634cb, 0xd820f49b, 0x9b1e833c, 0x4cd8231f, 0x24c10d83, + 0x4c229940, 0x2432411b, 0x20274008, 0x9b66f093, 0xfe7c5e01, 0xfb4efe0b, + 0xfd93b007, 0xc1019b58, 0xd29940d4, 0x324b1b4c, 0x27400824, 0x070d0720, + 0xfe5c7e1b, 0x0344c007, 0xc5234f9b, 0xe01e40d4, 0xbe230f9b, 0xc1fd929b, + 0x0d0744d1, 0x99fc7c7e, 0x41c4aad4, 0x234f9b1b, 0x2b40d3c1, 0x014f5043, + 0x9b700000, 0x4f03234f, 0xf0000000, 0x4440d4c5, 0x7e0d07c4, 0x0fd6fb92, + 0x8e0c07a7, 0x07fd4efb, 0xf1f093d0, 0x7f7e019a, 0xe9f493fb, 0x43c1019a, + 0x4c429940, 0x432b4d07, 0x40082432, 0x1d072027, 0x9ad2f093, 0x5efd0e01, + 0xfe4efde6, 0x078a0499, 0x4041dce0, 0x99310399, 0x34ce3204, 0x224f9b37, + 0x2b233f9b, 0x604ccc43, 0x231f9b20, 0x9aa6f493, 0x4043c101, 0x074c4299, + 0x32432b41, 0x27400824, 0x0e0e0720, 0xfda85efe, 0x9bfd1e7e, 0x400b224f, + 0x8e22f49b, 0x07f94efe, 0x239f9ba0, 0x9b22bf9b, 0xfd9323cf, 0xc1019a70, + 0x0d0744d1, 0x7e48dac5, 0x0d07fbb9, 0x99faf17e, 0x41588ad4, 0x0c2b0b07, + 0xd4c1f98e, 0x4cd29940, 0x2452491b, 0xd0274028, 0xd207031e, 0x9a3ef093, + 0xf8e57e01, 0x9a36f093, 0xff687e01, 0x9b224f9b, 0x432b233f, 0x9331a4d2, + 0x019a23f0, 0xdc8a0499, 0x04992641, 0x99484630, 0x41233104, 0x34074183, + 0x43333533, 0x34f9342b, 0x0004c520, 0x07104c5c, 0xbe2d0719, 0x9bfd9491, + 0x4f9b220f, 0x8e042b23, 0x93f54ef9, 0x0199e7f4, 0xa34c4399, 0x4d439df0, + 0x30276f07, 0x074c439d, 0xa7b407c0, 0xffffff5e, 0xf7936403, 0x2701f9e0, + 0xc499108c, 0x5a4fe6a8, 0xe554b901, 0x524fe60c, 0x9bf9ab01, 0x1607230f, + 0xf1be2f07, 0x0c26fff5, 0x24c4c4c1, 0xf419804c, 0xc4c145c6, 0x804cc4c8, + 0xc4f41914, 0xf0110f41, 0x2b7e0223, 0xc5d007fe, 0x0d1eccc8, 0x1f7ef011, + 0x074227fe, 0xccc4c5d0, 0x008fdff6, 0xfff5ffbe, 0xfd8db6be, 0xbe00845e, + 0xc1fd8daf, 0x43338474, 0x3f9bf415, 0xc8432b23, 0xfa116940, 0x9940b4c1, + 0x4a1b4cb2, 0x40082432, 0x0b072027, 0x577e1a07, 0xc4d007fc, 0x4f9b0b03, + 0xc5d22723, 0x4a1e40b4, 0xbe230f9b, 0xc1fd9093, 0x0b0744b1, 0x99fa747e, + 0x41c4aab4, 0x234f9b1b, 0x2b40b3c1, 0x014f5043, 0x9b700000, 0x4f03234f, + 0xf0000000, 0xc440b4c5, 0x0b070ad4, 0xa6f9897e, 0xe6a21e05, 0x0ad4c4d4, + 0xd427031e, 0xc49d4027, 0x1ef9eb8b, 0x8ac49918, 0x009046fc, 0xd4274027, + 0x5e8bc49d, 0x6abe008a, 0xd007fd8e, 0xff04d3e0, 0x9910d2c4, 0x0c078ac4, + 0xc49d4783, 0xf7977e8b, 0xdfd66d1e, 0x234f9b6a, 0xc58ac399, 0x315840c4, + 0x3390c4c1, 0x93191e43, 0x01989bf4, 0x9b4044c1, 0x2f9b223f, 0x03322b23, + 0xffff004f, 0xc5432b7f, 0xc0c13cc4, 0x104c27c0, 0x7e8bc49d, 0xc4c1fcd1, + 0x004fa3bc, 0x9b400000, 0x402721f4, 0x1eb4c4c5, 0x7e00271e, 0x0f9bfcb9, + 0x8fc5be23, 0x000d27fd, 0xfdd37e20, 0x5e800fd6, 0xd227ff6d, 0xf493861e, + 0x99019844, 0x0d074d43, 0x439df083, 0x07f58e4c, 0x243f9b20, 0xf49b4127, + 0x0c012725, 0x13002730, 0x241551f4, 0xfd4efe0b, 0x981afe93, 0xc1d00701, + 0x1f9b3ce2, 0x223f9b23, 0x422b4307, 0x32074008, 0x432b4107, 0xc11141c8, + 0x411b3ce4, 0xbe2048c4, 0xc6fd9091, 0x9b181e05, 0xe3c1214f, 0xf6438bbc, + 0x8f3ebe45, 0x0bf413fd, 0xd4150027, 0x0427fd8e, 0xfd4efd8e, 0xe3bed007, + 0x0536fff7, 0x1522f413, 0x20fd8ed4, 0x8e042702, 0xbe0d07fd, 0xbefdb31f, + 0x66fff76c, 0x1df49305, 0xd415fd98, 0xfd8e0027, 0xf0e3f64e, 0x0f9bd007, + 0x8f05be23, 0x224f9bfd, 0x2b233f9b, 0x004dcc43, 0x0d271040, 0x06be4000, + 0x0d0cfffd, 0x4f9b4000, 0x243f9b23, 0xf49b4127, 0xe730e825, 0x244f9b00, + 0xf39b3627, 0x1a4c5325, 0x9b78d49d, 0xf39b244f, 0x1a4c5325, 0x9d7ad399, + 0x34ea79d4, 0x4f9b00c6, 0x9b332724, 0x4c5325f3, 0x9d41231d, 0xf0937bd4, + 0xc101973c, 0x1f9b3c02, 0x223f9b23, 0x422b4307, 0x32074008, 0x432b4107, + 0xc11341c8, 0x411b3c04, 0x009448e4, 0xfd8fb4be, 0x8b5e0606, 0x214f9b00, + 0x8bbc03c1, 0x7f4fd643, 0xc078d199, 0xd44b221c, 0x5417231c, 0x1cd4161c, + 0x1ad42310, 0xc01e1e66, 0xc427201c, 0x1e5c211c, 0x261c3429, 0x42241cd4, + 0x1cc0381e, 0x1cd04426, 0x471e2829, 0x4dbe0d07, 0xb0070001, 0x1e4200cc, + 0xbe0d0731, 0x1efd9745, 0xbe0d072e, 0x1efd9f0c, 0xbe0d0726, 0x1efdac6b, + 0xbe0d071e, 0x1efdb0a1, 0xbe0d0716, 0x1efdb08c, 0xbe0d070e, 0x1efdb058, + 0x7e0d0706, 0xb007fe72, 0xb127071e, 0xb427031e, 0x9682f093, 0x3c02c101, + 0x9b231f9b, 0x4307223f, 0x4008422b, 0x41073207, 0x41c8432b, 0x3c04c111, + 0x48c4411b, 0x8efbbe13, 0x1e0606fd, 0x214f9b0b, 0x8bbc03c1, 0x27448643, + 0x224f9bb1, 0x2b233f9b, 0x1540cc43, 0x963ef493, 0x3c44c101, 0x2b233f9b, + 0x27412843, 0x091e0cbc, 0x00a4bfe6, 0x00a0b3e0, 0x9622f493, 0x4443c101, + 0x0b4e4099, 0xfab8be03, 0x27b224ff, 0x00885eb0, 0xf453b448, 0xd415fe64, + 0xf6937d1e, 0xd101d8a4, 0xb6108064, 0x800c2745, 0xfd5a66be, 0x108060d5, + 0x108068d1, 0x89486ac1, 0xd78910d9, 0x8af8be0e, 0xbec107fd, 0x25fd8af2, + 0x074907f0, 0x15f293bc, 0x3a07fe3f, 0x1c270807, 0x15f70580, 0xe549befb, + 0x10d289fd, 0x27846489, 0x89424ec0, 0xd4898263, 0x0f34ce0e, 0x628d4127, + 0x80649d84, 0x8d0ed489, 0xf4938264, 0xd101d83c, 0x27108040, 0x3effbeb0, + 0x7e0d07fd, 0x0b07fd6a, 0xf68ef0c3, 0xf0e3f54e, 0xb107d007, 0x2724cf9b, + 0x25f49b41, 0x4c234107, 0x27483010, 0x9b0c1ea0, 0x412724af, 0x9b1fac53, + 0x1f9b25f4, 0x411cf428, 0xd4b90c3f, 0x144e1a04, 0x8ebe0d07, 0x0ff6fda5, + 0x7d070c47, 0x1a047d03, 0xc87cd399, 0x3fe63bc0, 0x34e00c23, 0xd4d10c1f, + 0x41d81a08, 0x243f9b0d, 0xf49b4127, 0x0c30e825, 0x81d2b90c, 0x240f9b1a, + 0xa925f29b, 0xd11a8ed3, 0xe21a84d4, 0x270bf234, 0x422b204c, 0x7b1e045b, + 0x43073323, 0x33034f6b, 0x070b42d4, 0x0ef0c30d, 0xb0a69ef5, 0x5b32d4fd, + 0x2778d399, 0x23130720, 0x1814101c, 0x43072427, 0x44544623, 0x381028a3, + 0x14102ca3, 0x402ca313, 0xa3153c24, 0x0a1e802c, 0x4c234307, 0xa3421413, + 0x83430721, 0xa344a641, 0x3c14202c, 0x14449610, 0x8922a317, 0xd4d13cd3, + 0x340e1a90, 0xa3412c18, 0x2701002d, 0x9dd22541, 0x40277cd4, 0x0188d4ad, + 0xf0150027, 0x1a08d4d1, 0x1a0cd3b9, 0x4b53c407, 0x4153e407, 0x18531407, + 0x04075d07, 0xe183c183, 0x5d031183, 0x01831a94, 0x4f9b3506, 0x25f39b24, + 0x1befdd03, 0x35072d07, 0x237f2ce3, 0xe31befdd, 0x34197f3c, 0xc2803c03, + 0x4507f932, 0x3c272027, 0x03420557, 0x99f3c844, 0x3a477bd2, 0x1aa2d2bd, + 0x1aa0d4d1, 0x1a11d9b9, 0x43ab42e3, 0xd3bd3127, 0xd4d51a95, 0xd3b91aa0, + 0xd4b91a81, 0xdbbd1a10, 0xd3bd1a98, 0xd4bd1a99, 0xd9bd1aa8, 0x9f9b1aa9, + 0x6b290728, 0xbdf2252f, 0xf41a94d2, 0x110ad293, 0x1842d874, 0x27244f9b, + 0x25f39b31, 0x1aa0d3d1, 0xe31f4c53, 0xd534ab31, 0x071aa0d3, 0x548d038d, + 0xd8846107, 0x3f9b1042, 0x9b422724, 0x3c5325f4, 0xa3d3bd1e, 0x33c9331a, + 0x33ceabea, 0x33c0ab0b, 0x4b070c1c, 0x4c23c1ab, 0x00cda313, 0x93423420, + 0xfe3e6bf6, 0xb901a75e, 0x9b077ad4, 0xf49b243f, 0x204c1325, 0xd3d5345b, + 0x3f9b1ab0, 0x9b412724, 0xd4d125f4, 0x3c531aa0, 0xe333871f, 0xd543ab44, + 0x311aa0d4, 0xb6d3b954, 0x1944dc07, 0xbd03bd07, 0x0d071b80, 0x2b071807, + 0xfdba72be, 0x0a490ff6, 0x3a1e6b07, 0xb91f32d0, 0x9b1a82d4, 0xf49b243f, + 0x204c1325, 0x3f6b345b, 0x07b6d4b9, 0x1aa4d3bd, 0x0c5e344a, 0xbd40270a, + 0xb91aa4d4, 0x071aa4d4, 0x33633364, 0x03640b46, 0x0b07fc6d, 0xd540276d, + 0x611ab8d4, 0x004df884, 0xb900fa40, 0x2607b7d4, 0x284f9b45, 0x1aa5d4bd, + 0xb9284f9b, 0x6b1aa5d3, 0x7cd2b94f, 0xbd340b03, 0xfa1aa6d4, 0x2709c223, + 0x07ad0740, 0xbde027bd, 0x5e1abcd4, 0x3ec200b9, 0xb7d4b94a, 0x27423407, + 0xb9121e20, 0x9b1a83d4, 0x3c27242f, 0x5b342b20, 0x25f49b23, 0x07f8d3d1, + 0x1ab8d0d1, 0x3183325b, 0xd1b92247, 0x43071abc, 0x4e3b2d0b, 0x07b822a9, + 0x130b04ab, 0x1abea2ad, 0x1ab8d0d5, 0x1abcd1bd, 0xd4b9371e, 0x3f9b077a, + 0x25f49b24, 0x5b204c13, 0xbea3ad34, 0x241f9b1a, 0x1c534127, 0x25f49b1f, + 0x1ab8d3d1, 0x1abcd2b9, 0x4e3b4107, 0x210b34ab, 0x1ab8d3d5, 0x1abcd2bd, + 0x27244f9b, 0x25f39b31, 0x30274028, 0xd4d1101e, 0x3e3b1ab4, 0xd4d543ab, + 0x3f9b1ab4, 0xb9e5c628, 0x2e1aa5d4, 0xfcb4d14e, 0xd5340b1a, 0x031b00b3, + 0x03b403e1, 0xa5d3b9a2, 0xa6d4b91a, 0xea430b1a, 0x61ff3de4, 0x004dd884, + 0x3f9b1302, 0x9b412724, 0x3c5325f4, 0xe336331f, 0xc3ab40cc, 0xb9046499, + 0x0b1abcd3, 0xacd4bd43, 0xd884611a, 0x9b21804c, 0x3127244f, 0x5325f39b, + 0x44871f4c, 0xc4abc4e3, 0x9b244f9b, 0x4c5325f3, 0xe343331f, 0x24c4abc8, + 0x5ea12792, 0xb1270105, 0xb0279496, 0x3f9bb213, 0x9b412724, 0xd4b925f4, + 0xd0b91a06, 0xd4bd1a07, 0xd0bd1a9a, 0x30cc1a9b, 0x284f9b19, 0xd4bd4103, + 0x95361a9a, 0x03284f9b, 0x27031e41, 0x9bd4bd40, 0x9ad4b91a, 0x104cf41a, + 0xd4b90857, 0x4cf41a9b, 0x11084e10, 0x004ed874, 0xb9160800, 0xd01aacd4, + 0x0d070f42, 0x2b071507, 0xfdb807be, 0x08490ff6, 0x3f9b9676, 0x9b412724, + 0x3c5325f4, 0xe333471f, 0x11c3abc2, 0x1048d874, 0x27243f9b, 0x25f49b41, + 0xe31f3c53, 0xe3c3abc1, 0xa30180cd, 0xcc3c20cc, 0x1ea12740, 0x2794c62f, + 0x9b0c1e31, 0x4127243f, 0x9b1f3c53, 0x402725f4, 0x1aa7d4bd, 0xd4b93506, + 0x051e1a9a, 0x1a9bd4b9, 0x4f9b4230, 0xa7d4bd28, 0x11a3071a, 0x004d1874, + 0xd8912001, 0x1d02004d, 0x1d079796, 0x0d072b07, 0x1a9a1d03, 0xfdbb2fbe, + 0x07c50ff6, 0x4213f421, 0x1becd4bd, 0xf4284f9b, 0x13079e45, 0x95d4bd45, + 0x0bd4b91a, 0x293f9b1a, 0xd1b9430b, 0xd2b90778, 0xd3b91a0e, 0xd4bd1a0f, + 0xd1bd1a96, 0xd2bd1a97, 0xd3bd1aaa, 0x74111aab, 0x1b804cd8, 0x1aaad4b9, + 0x0b293f9b, 0xaad4bd43, 0xabd4b91a, 0x293f9b1a, 0xd4bd430b, 0x74111aab, + 0x00004e3c, 0x1e302701, 0x243f9b0c, 0x3c534127, 0x25f49b1f, 0x1a08d2d1, + 0x83112c53, 0x9b3a4621, 0x4127242f, 0x5325f49b, 0x42071f2c, 0xcde34733, + 0xc4ab0180, 0xcce34a07, 0xab453320, 0x80ccdcc4, 0x294f9b0f, 0x1aa8d4bd, + 0xbd294f9b, 0x111aa9d4, 0x004dd874, 0x42072a40, 0xcde34733, 0xc4ab0180, + 0x45334a07, 0xab20cce3, 0x834c07c4, 0x4cc08c4c, 0x3f9b0e80, 0x9b412724, + 0x3c5325f4, 0xd10a1e1f, 0x531a08d3, 0x31830e3c, 0x38334c07, 0x01004de3, + 0x273343ab, 0xab804ce3, 0xe3a53342, 0x4aab204c, 0x1a9cd4d5, 0xd4bd4027, + 0xd4a9012e, 0xd6d51a16, 0xf4051bc8, 0xd4a9f901, 0x73111a14, 0xf905949b, + 0x18003df8, 0xbf9b00a1, 0x9abfe628, 0x3c741100, 0x0110004d, 0x89041ef0, + 0x0be228d0, 0xcf9b0673, 0xf4c10328, 0x066921cc, 0x4dd87411, 0xa76d0800, + 0xfeffff4e, 0x83094499, 0x33348743, 0xf9432b44, 0x00004d41, 0x132bbeff, + 0x070b02fe, 0x272b070b, 0x210320bc, 0x10273007, 0xbc2be127, 0x4f9b311e, + 0x25fc9b24, 0x11034b5b, 0x3816140b, 0x012ed4b9, 0x43333007, 0x4ead4d0b, + 0x41d50148, 0xd4b90144, 0x4103012e, 0x012ed4bd, 0x3123031e, 0xf2f0e103, + 0x001fd0ce, 0x0e100000, 0x0705f65e, 0x244f9b3b, 0xb825fc9b, 0x385421f3, + 0xa908004d, 0xe41a14d4, 0x1105de41, 0x004ed874, 0x9b121000, 0x3103283f, + 0x4f9b091e, 0x9b482724, 0xf3a825f4, 0x27243f9b, 0x25f49b41, 0x05b930ec, + 0xffee91be, 0x8ec6f093, 0x3c02c101, 0x9b231f9b, 0x4307223f, 0x4008422b, + 0x41073207, 0x41c8432b, 0x3c04c113, 0x48e4411b, 0x3ebe0597, 0x0626fd87, + 0x9b058e5e, 0x03c1214f, 0xf6438bbc, 0x9905824f, 0x13e07cd1, 0xd88901d3, + 0x4cd49926, 0xd122f293, 0xa9980701, 0x3b107823, 0x0f39ca94, 0x9928d489, + 0x22a94dd3, 0x433b107a, 0xf0934242, 0xbefe3920, 0x5efd37c9, 0xcd070543, + 0xe018cc03, 0x0300f412, 0x07054cdd, 0x03dd033d, 0xe32d0702, 0x2ce37f3c, + 0x4fdd237f, 0x03341907, 0x32c2803c, 0x073d07f9, 0x4c3d034d, 0x484d0305, + 0x812c2703, 0x44034001, 0x34033005, 0xd421f2a8, 0x30274138, 0xd4b90d1e, + 0x31271a94, 0x30274496, 0xd4d13213, 0xd39d1a08, 0x27423c20, 0xd1091e20, + 0x831aa0d2, 0xb921c321, 0x990756d4, 0xd29d7bd3, 0x27412350, 0x27431210, + 0x07d42111, 0x8341530d, 0xab41ab41, 0x032d0742, 0x9d03480d, 0x150724d4, + 0x3c072803, 0xfdafbcbe, 0x442704f6, 0x9904ae5e, 0xd3996fd4, 0x6cd2d170, + 0x47430b07, 0x83470344, 0x8dfffc4d, 0x4c0372d4, 0x23d46560, 0x2cd8604c, + 0x4d030b10, 0xd4650448, 0x031e4227, 0xd2994027, 0x9d302750, 0xd39d74d4, + 0x83d39d82, 0x939dd29d, 0x01d017f4, 0x1a8cd9a9, 0x8d6c44c1, 0x4c1890d9, + 0x9dd39d20, 0xd49d4227, 0x070d077c, 0x800c031c, 0xbe602c27, 0xf6fd3d0f, + 0xc1044e0f, 0xbd07acd0, 0x07600c03, 0x1e20273d, 0x4031a90b, 0x0d21031a, + 0xa9020301, 0x031a16d4, 0xee24c232, 0x61acdec1, 0x07a887d4, 0x27e40b9a, + 0x1e9013c0, 0x18b3a931, 0x86030d1a, 0x14d4a9c8, 0x1c4cc21a, 0x33872307, + 0x071e3e0b, 0x14054027, 0xd4a9280b, 0x3a0b1a8e, 0x130b1907, 0x03ee24ca, + 0x03c10302, 0x14d4a9b2, 0xcac4c21a, 0x996fd499, 0x430b70d3, 0x40274138, + 0x0d07040d, 0xfd9f09be, 0xe674d499, 0xacd3c145, 0x349d4127, 0x9b40275c, + 0x43270ef4, 0xd103ae5e, 0xd11a94d2, 0xb91a98d3, 0xa91a14d0, 0x271a16db, + 0x1bd4bd40, 0x1ad4bd01, 0xf4d2c501, 0xd1f8d3c5, 0xbd1a9cd9, 0xbd0119d0, + 0xa90118db, 0x110768dc, 0xfcd9c5f0, 0x4abe1c07, 0xd489fe10, 0xe2900728, + 0x11035e40, 0xbe1c07f0, 0x07fe1033, 0x273d076d, 0x08d0ad21, 0x0ad9ad01, + 0xa9161e01, 0x031a4434, 0x0b49c232, 0x41234207, 0x011bd4bd, 0x2103061e, + 0xb9e92bc2, 0xa9011bd4, 0x470768dc, 0x0b410334, 0xa944473d, 0x0b1a4231, + 0x424ea94d, 0xa9c19b1a, 0x2b1a14d8, 0x077c07e1, 0x27b0272d, 0xa93e1ea1, + 0x031a1a24, 0x2b340722, 0x2740c23b, 0xc00b4907, 0x439b412b, 0xc40bcb2b, + 0x41234a07, 0x011ad4bd, 0x011cdbad, 0x011ed1ad, 0x0120d3ad, 0x0122dead, + 0x3e9b0e1e, 0xa103c30b, 0x7c07b407, 0xd1c1a8c2, 0xb91a9cd2, 0x071aaade, + 0x07355332, 0x83488343, 0x8734ab34, 0x104c8342, 0x228731a3, 0x1aabd1b9, + 0x2c8334ab, 0x3fec8320, 0x1aa8d0b9, 0xe63332ab, 0xab3f1c83, 0x0c1c333e, + 0x1a14dea9, 0xb90f0c83, 0xb9011bd2, 0xab1aa9d4, 0x180c3331, 0x011ad1b9, + 0x30ab2e9b, 0x0b1c4c33, 0xa734ab12, 0x93002720, 0xfda696f4, 0x012edeb9, + 0x012ad1ad, 0x0116d0ad, 0x010ed2ad, 0x15ecd3c5, 0x28d1add4, 0xb4dcc501, + 0x0110d2ad, 0x0112d0ad, 0x0114d2ad, 0x008defe6, 0x022dc7ee, 0xa923ef9b, + 0x270148d2, 0xad1d0700, 0x1e010cd2, 0x4414d130, 0x4813a901, 0x28d2a901, + 0x0b433301, 0xd5320b4e, 0xab014414, 0xadf4013f, 0x03014813, 0x0b34ca18, + 0x41234007, 0x012ed4bd, 0x01030a1e, 0x012ed4b9, 0xb9cb04ca, 0x06012ed4, + 0xf1f3934d, 0x39c1018a, 0x44d2d13c, 0x34d9d501, 0x8a349901, 0xc10e41d8, + 0x42079033, 0x432b3333, 0x23074108, 0x8acef493, 0x3c42c501, 0xd4ad4027, + 0xf493012c, 0x15fda6c4, 0xa90d1ed4, 0x010128d4, 0xad401bf0, 0xb9010cd4, + 0x131a94d4, 0x8ad4bd42, 0xc44d2701, 0x84d4d501, 0xbd402701, 0x21018bd4, + 0x8ad3b954, 0x404cd801, 0xc443070a, 0x42270b31, 0x4307071e, 0x41273204, + 0x018ad4bd, 0x1a9cd4d1, 0x1becd2b9, 0x34074253, 0x31834153, 0xd3bd4183, + 0xd4bd0344, 0x2b160345, 0xd2bd4027, 0xd4bd01cd, 0xdd0301cc, 0x3d0701d0, + 0x07efdc03, 0x7f3ce32d, 0x237f2ce3, 0x1902bfdd, 0x803c0334, 0x07f932c2, + 0xd00d030d, 0x27102701, 0x96be3c2c, 0xd4b9ffe2, 0xbd071a94, 0x018cbd03, + 0x072942c0, 0x48cd03cd, 0x07150703, 0xbe0c072b, 0x27000413, 0x27049691, + 0x072d0790, 0x030c071b, 0xbe02c42d, 0x07000360, 0x27201ea0, 0x0b07202c, + 0xbeff1c27, 0x07ffe200, 0x102c273d, 0x34d54027, 0x340302c4, 0xa027f2a8, + 0xd4b99027, 0xcd071a94, 0x01accd03, 0xbd074a76, 0x0348bd03, 0x15070b07, + 0xb1be2c07, 0x09ab0001, 0x04864027, 0x2d074127, 0x1c070b07, 0x03042d03, + 0x09be9407, 0x0c330003, 0xab9f6b10, 0x071a1ea0, 0xff1c270c, 0xbe202c27, + 0x27ffe1a4, 0x4027103c, 0x030464d5, 0xf3a86403, 0x4d034d07, 0xd3b90184, + 0xd4c51a94, 0x02d9bdbc, 0x04dad501, 0xc0dad501, 0x4332c002, 0xd1b95421, + 0x4c581aa7, 0xb91d0b20, 0x1e018c11, 0xb91d0b07, 0xc001ac11, 0x5331ff1c, + 0x9d0d0711, 0x0d03bad1, 0x4ebe0348, 0x0f6bfdae, 0xc0bbd09d, 0x9919100c, + 0x4447bad4, 0x08fc44f9, 0x4cc00005, 0x41270aff, 0xd49d0327, 0x27191e7d, + 0xa7151e01, 0x27111e00, 0x9d0d1e04, 0xd4997cd4, 0x4c44e47c, 0xc3ed1efc, + 0x4ef58ef0, 0x5dfc93fc, 0xc41101eb, 0x0c07dc07, 0x04d6f48b, 0x4286c419, + 0xc41d4027, 0x3127fc8e, 0xeb42f493, 0x0b431d01, 0x07f74efe, 0x35fc93e0, + 0xc0c101eb, 0x34e4c140, 0x8207d107, 0xeb897307, 0x1740ce26, 0x2c079c07, + 0x1a14caa9, 0x1a16cea9, 0x1a189d03, 0x1a422d03, 0xe4c1171e, 0x574e9944, + 0x2c032407, 0x47220360, 0x584a999e, 0x2223920b, 0x4aab4e07, 0x076e41c0, + 0x1e112732, 0x0330291e, 0x9b400732, 0x114dc24b, 0x22232c0b, 0xc4072409, + 0x042bcb9b, 0x0c1edc2b, 0xc1471103, 0x27df1ec2, 0x070027c0, 0x1e412719, + 0x291e091b, 0x2b200713, 0x03239b3e, 0x2a120341, 0x1ed22bd2, 0x05ce0b07, + 0xc2041e83, 0x8101e44a, 0xf8be0d07, 0x4007fe0b, 0x81017005, 0xd4070d07, + 0xeebedc0b, 0xb09bfe0b, 0x0d1edb0b, 0x1b078b05, 0xd8be0d07, 0x7005fe0b, + 0xf78e0d07, 0x1899f64e, 0x181d9907, 0x9107f123, 0xb207c007, 0xd8078d02, + 0xbc033b07, 0xe3eb070f, 0xece37f3c, 0x0fbc237f, 0x3c033419, 0xf93ec280, + 0x0200c3b9, 0x01fcc2b9, 0x01b43d03, 0x030b0c07, 0x3d2340a7, 0xe20701b4, + 0xf41de32b, 0x1027e103, 0x2616230a, 0x0b1ee127, 0x11030419, 0x241d4447, + 0x2f070103, 0xfef0210b, 0xce041e03, 0x2307ebd1, 0x2103ef07, 0xe10b0c07, + 0x0d1e3c07, 0x01b334b9, 0x44471103, 0xe103e41d, 0x1e03f2f0, 0xca310306, + 0xceb9eb1d, 0x2f0701fe, 0xe1033107, 0x0d1e210b, 0x01d304b9, 0x44473103, + 0x2103241d, 0x0715fef0, 0x07432b4d, 0x074103ef, 0x0ae30b2f, 0x27d8d6d3, + 0x03211e41, 0xd93dca01, 0xec272f07, 0x2b230b11, 0x113cd0e3, 0x1ee12719, + 0x03211915, 0x03e11d31, 0x98e10321, 0xa7e21ef4, 0x03241d40, 0x99feb821, + 0x28070d9a, 0x0907c671, 0x7027a283, 0x21039027, 0xeb074d1e, 0xa4d6e90b, + 0x051e4907, 0x014804b9, 0x410b1f07, 0xe41d4419, 0x4cd4e419, 0x4153291f, + 0x34333407, 0x342b4487, 0x3dc13c0b, 0x27102740, 0x276d1a41, 0x8647ab40, + 0x99112744, 0x71073e34, 0x44967f6b, 0x40a7d62e, 0x9103e41d, 0xf2f00103, + 0x272b07b2, 0x280b113c, 0x8cd0382b, 0x31270b11, 0x40a7071e, 0x2103241d, + 0x0707f3b8, 0xf68ef103, 0x0000007f, 0x04d1f54e, 0xa00701b0, 0x61074711, + 0x8027b207, 0x5ca79027, 0x0b46077f, 0x50431949, 0x4027203c, 0x6f1eb405, + 0xd153d307, 0x3d874d07, 0x432b4433, 0x44c14a0b, 0x2bc70740, 0x034c07c4, + 0x114cd448, 0xe94c470d, 0x030c1040, 0x1e0f8b00, 0x80cf2c2a, 0x07ffffff, + 0x07101e15, 0x80ccc81c, 0x9df4130a, 0x01074101, 0x0107071e, 0x0013100c, + 0x0d030173, 0xbfbe4000, 0x4d87fe09, 0xd42bd433, 0xd499da0b, 0x2742443d, + 0xab493b41, 0x100c3384, 0xc0abcfab, 0x9103bc05, 0x9ce4b403, 0x07ff7c10, + 0x4ef58e08, 0x99a107f6, 0x11990618, 0x07f12318, 0x02d20790, 0x07180781, + 0x0fdc033d, 0x3ce3ed07, 0x7fece37f, 0x190fdc23, 0x803c0334, 0xb9f93ec2, + 0xa701fc93, 0x07310340, 0x27e90709, 0x1ef41d20, 0xb3e4b90b, 0x47210301, + 0x07c41d44, 0xf0c20bcf, 0x061e03f3, 0x21cee103, 0xfe9eb9e9, 0x074f0701, + 0x0be10332, 0xb90d1e24, 0x0301d304, 0x1d444731, 0xf0210324, 0x410715fe, + 0xef07432b, 0x2f074103, 0x130ae30b, 0x412718d6, 0x0103211e, 0x07d931ca, + 0x11ec272f, 0xe32b230b, 0x19113cd0, 0x151ee127, 0x31032119, 0x2103e11d, + 0xf498e103, 0x40a7e21e, 0x2103241d, 0xab99feb8, 0x71c8070d, 0x830a0796, + 0x277027b1, 0x1ec103a0, 0x0bed074d, 0x07b4d6ea, 0xb9051e4a, 0x07013804, + 0x19410b1f, 0x19e41d44, 0x1f4cd4e4, 0x07415329, 0x87343334, 0x0b342b44, + 0x4032c139, 0x41271027, 0x4027621a, 0x448647ab, 0x34991127, 0x6b71073e, + 0x2e44967f, 0x1d40a762, 0x03a103e4, 0xb2fcf001, 0x3c272d07, 0x2b280b11, + 0x118cd038, 0x1e31270b, 0x1d40a707, 0xb8210324, 0x030707f3, 0x4ef68ef1, + 0x3bcf5bf0, 0x4efe2bdf, 0xbe0f07fc, 0x0effcfe8, 0x0bf00efc, 0xff1ea7ff, + 0x1401fd4f, 0x03122f9b, 0xc1443341, 0x24ab3813, 0x0027322e, 0xf3abfe0b, + 0xc13812c5, 0x42ce3814, 0x27f3ebf8, 0x4efe0b01, 0x76d33efe, 0x200c2705, + 0xd39efe0e, 0xfe8efdb0, 0x90004f27, 0x43291007, 0xa0004f27, 0x44291007, + 0x03fc3d10, 0x4d10ff1e, 0xff1e03fc, 0x042b0307, 0x0d03000c, 0x412703fc, + 0x4027010c, 0xfe0b0407, 0xc007fc4e, 0xfe0929be, 0x4fff1ea7, 0x01c239fd, + 0x3b412713, 0x3d42ab43, 0x9b4027c4, 0x14c50ef4, 0x00fc8e38, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x0489fd4e, 0xe40d89e8, + 0x4fab410b, 0x99e8048d, 0x4d2be70e, 0x1fab1407, 0x3ea7eaa6, 0xc1fdefff, + 0x1e2bb434, 0x11e04cd8, 0x076515d0, 0xe8432723, 0xb423c1f4, 0xf6e03cdc, + 0x4d0b4e07, 0x039d3027, 0xe4048de7, 0xffff3ea7, 0x4234adfe, 0x0718060d, + 0x3815d441, 0x9ddc01c1, 0x2407e704, 0xe52feea7, 0x9e0489fd, 0x40484f8b, + 0x01c5f2b0, 0xc1fd8edc, 0x0389bc04, 0x03410bec, 0x15e40548, 0x893027e3, + 0xe335a004, 0xf2f0140b, 0x27e01ed9, 0x8ec61e44, 0x07fd4efd, 0x871f6b10, + 0x04df03d1, 0x530004d1, 0x103f9b08, 0xf293d401, 0x51018f54, 0x05432b2e, + 0x08e19dd4, 0xa7122499, 0xfd4fff3e, 0x4909e49d, 0x99e44d24, 0x21690824, + 0x410b3211, 0xe205e46d, 0x402707f6, 0x070ef49b, 0x27ff8b00, 0x05302740, + 0x08e39de4, 0x01102f9b, 0x05420bd4, 0x07fd8ed4, 0x03427340, 0x1ef4e841, + 0x99fb4ee3, 0x43c0e604, 0xe0140713, 0xc000e242, 0x4ff62244, 0x02c10146, + 0xa7471ea4, 0xfdefff4e, 0xfca843c1, 0x00a1e03c, 0x049d4427, 0xc00489e6, + 0xa7e0048d, 0xfdefff4e, 0xfc8443c1, 0x0112e03c, 0x27c00389, 0xca049d40, + 0xa7c4038d, 0xfeffff4e, 0x0d3e43ad, 0x89a402c1, 0x1027a204, 0x02c5240b, + 0xa804c1a4, 0x891242c2, 0xe20ba20e, 0xe407e402, 0x01d004c1, 0x52e3c243, + 0x27e60499, 0x27144e20, 0xff4ea731, 0x43c5fdcf, 0xe6029d70, 0x893913c4, + 0x4f8b9e04, 0x893140cc, 0x0189c00c, 0xa40ec1e0, 0xe55fdea7, 0xb804c1fd, + 0x0bec0389, 0x0548034e, 0x07d315d4, 0x89310331, 0x4027a002, 0xd4351307, + 0xe20b1fab, 0x8edfc1ce, 0xcc0499fb, 0x009d4ff6, 0x89a00189, 0x210bc003, + 0x4207210b, 0x3103412b, 0x8df64eca, 0x4ea7c003, 0xadfeffff, 0xa70d3c43, + 0xfeffff3e, 0x0d4034a9, 0x89c00b89, 0x4b1bc403, 0x4ccc4f8b, 0x0ec15c11, + 0xa71307a4, 0xfde5ffce, 0xe5efdea7, 0xb804c1fd, 0x4e0b3827, 0xc315c405, + 0x4c834107, 0x3320270f, 0x23c23543, 0xfef4a44e, 0xd315d405, 0x41034107, + 0x07a00389, 0xabd23514, 0xcee30b1f, 0x0499d0b1, 0x271327e6, 0xff2f5e23, + 0x27e60499, 0x5e242714, 0x2407ff25, 0x2a5e2f6b, 0xe60499ff, 0x22271227, + 0xa7ff145e, 0xd07fff3e, 0xe4e23411, 0x3e25ff5c, 0x00feff5e, 0x0004d34c, + 0x0004d0e8, 0x0004d080, 0xff0102d8, 0xff0102e8, 0x0004d088, 0xff0102e0, + 0xff0104a8, 0x0004d090, 0xff010668, 0xff010678, 0xd007f54e, 0x9051f193, + 0xd5f09301, 0x2d070188, 0x0ce3f1a3, 0x7f1ce37f, 0x45f82c03, 0x35f155f0, + 0xff4ea7f2, 0x43d1ffff, 0x3fe60a44, 0x3ea7070a, 0x11fd6fff, 0x104ca334, + 0xf0933415, 0xa7018cc4, 0xfefd331e, 0x03011401, 0x432b0211, 0x06fc41e8, + 0x070820e8, 0x24334287, 0x3407420b, 0x340b3433, 0x31551c27, 0xf83e23f4, + 0x2107fef5, 0x11233001, 0x34034005, 0xf2984403, 0x8c86f293, 0x11240101, + 0x93410322, 0x018c7bf3, 0x34052103, 0x41233215, 0x06bd21ec, 0x4ea73301, + 0x15fefd33, 0xc0d3a943, 0xfad18901, 0xcfff4ea7, 0xc52127fd, 0x312b6442, + 0xd4993123, 0x98d38df8, 0x066741f8, 0xb998de89, 0xb901c5d4, 0x3b0191d1, + 0x4514f0e4, 0x6cdba906, 0x07142301, 0x03413b4b, 0x074e1b14, 0x8d9fab94, + 0x14f09ed9, 0x14230621, 0x015b0e07, 0x20271403, 0xf2834ea7, 0x6adca9fe, + 0x0cd29d01, 0xd24dd20d, 0x0104d2a9, 0x3027d455, 0xc1234127, 0x9d12d28d, + 0xd49d08d3, 0x87d06d09, 0xc4d2b9ac, 0xf0c10301, 0x0705ce14, 0x8b310749, + 0x2734234f, 0x27400810, 0xab410711, 0x2b4b0b4f, 0x0bd39d40, 0x4202433b, + 0x435b4207, 0x2a073407, 0x43072123, 0x13874123, 0x132b230b, 0xd49dd22d, + 0x0711030a, 0xe641e804, 0x23230705, 0xa73d0721, 0x0d349d42, 0xf2b03103, + 0x019d0d0b, 0x5df0530d, 0x050401fe, 0x2c4c034e, 0x4fc4e103, 0x0004d3fc, + 0xf9d499f3, 0x0100d2a9, 0x41233407, 0x330f4c83, 0x27433333, 0x23c29b00, + 0xfffef43e, 0xfef44e23, 0xb91247ff, 0xc5015bde, 0xd4c5d4d3, 0xa2d18dd0, + 0x9da8dcc5, 0xd28dcdd0, 0xccd09da0, 0x051defe6, 0xffff4ea7, 0x4143b9fe, + 0x103fe601, 0xfad48905, 0xffff3ea7, 0xc0d2a9df, 0xbcd3c501, 0x03b8d3c5, + 0x27422e41, 0xccd49d41, 0x38f8d499, 0x9d412744, 0x3027cdd4, 0xd3c54027, + 0xe6d49ddc, 0xc5a4d3c5, 0xd3c5b0d3, 0xb4d3c5ac, 0x07d8d3c5, 0xfc437e0d, + 0x00004f27, 0xd3b98000, 0xd4c50190, 0x9a36e0f0, 0xf6d48905, 0x2bf4d389, + 0x33478343, 0x004fa347, 0xc5800000, 0xf353f0d4, 0xf193fd98, 0x93018adc, + 0x018aebf2, 0xf9933601, 0x15018abc, 0x99f205f1, 0x4fe609d4, 0xd2b90122, + 0xdb990190, 0x6b242308, 0x3b4b072f, 0x87340742, 0x2b343314, 0x2bdc4931, + 0xf4d18934, 0x0191d4b9, 0x3c078387, 0xd3488f03, 0x323b0004, 0x46e01c0b, + 0x844902e4, 0x930d8305, 0x2d0a9b9d, 0x999c4d94, 0x2b07f6d4, 0x3783340b, + 0x949d4327, 0x0b939d0c, 0x83f0d3c1, 0x23830f1c, 0x23ab4187, 0x924524ab, + 0x2e0ad499, 0x402da3b4, 0x09924504, 0x6ed2a994, 0x334f8b01, 0x10242b44, + 0x2c27412c, 0xa9942940, 0x8b0170d3, 0x0344334f, 0x53342b27, 0x413c1023, + 0x03403c27, 0x23335337, 0x83944121, 0x33312327, 0xab37832b, 0x143c3324, + 0x924523ab, 0x01afbff6, 0x07ead289, 0xe2412342, 0xa701a74c, 0xfeffff1e, + 0x0d3e14a9, 0x03c8d389, 0xab432bc1, 0x20c4ca4f, 0x0d27a107, 0xba7e6411, + 0x7e0d07fa, 0xa4a9fb1d, 0xd3890d3e, 0xab432bc8, 0xe74cc24f, 0x93ead289, + 0x0189b7f0, 0xd3490401, 0x04054103, 0x01fc32ea, 0x949d4127, 0x05bfe60c, + 0x0c949902, 0xa71043c4, 0x08848d40, 0x8d0c9399, 0x33e00894, 0x3ea700c5, + 0x21ebffff, 0x1641dc34, 0x4127c307, 0x0c27c435, 0xfa5f7e0f, 0xc4354027, + 0x31d8c321, 0x0c6499ee, 0x2ea748c6, 0x93feffff, 0x01895ff4, 0x24d14301, + 0x31230be0, 0x24d54103, 0xf0930be0, 0x0501894c, 0x9d402703, 0xd4990c64, + 0x304ff609, 0x0c949901, 0x018342f0, 0xf1939241, 0x01018930, 0xff4ea713, + 0x4245ebff, 0x071b31c8, 0x01f21146, 0x07f915f6, 0x5ef20594, 0x0d07fe63, + 0x657e1027, 0xe84327f9, 0xe4d389f4, 0xcee8d489, 0xd089ed43, 0xf6d489ea, + 0xa9c8d389, 0x89016ad1, 0x310be2d2, 0x4103400b, 0x89c8d38d, 0x200b9ed3, + 0xd28d41e3, 0xf6d48de2, 0x30ec3f8b, 0xd489fbed, 0x8d400bf4, 0xe25ef4d4, + 0x9cd499fb, 0x44863027, 0x9a993127, 0x073f6b0a, 0x33f3254a, 0x2b3a8744, + 0x214a2b43, 0x03c487f1, 0x04d348cf, 0xf614c600, 0x310345af, 0x963027c4, + 0x41312744, 0x6b5307c4, 0x724fe65f, 0x5f5fe601, 0x03ba0701, 0x7b0711bc, + 0x7333ab47, 0x74f1ce61, 0xff021000, 0x100b0d27, 0x0138efe6, 0x4c33c151, + 0x1d4c5318, 0x00001ff0, 0x035c1000, 0x4413c881, 0x03618ff6, 0x00eb4ff6, + 0x1ef9387e, 0xead289d0, 0xfe8d21e4, 0xfe89bff6, 0xffff1ea7, 0x3e14a9fe, + 0xc8d3890d, 0x4fab432b, 0xfe75c4ea, 0x0d27a107, 0x0e7e6411, 0x7e0d07f9, + 0xa4a9f971, 0xd3890d3e, 0xab432bc8, 0xe74cc24f, 0x09fe535e, 0xeed129d2, + 0x0702d912, 0x0b438342, 0x0d43994d, 0x230b3f4b, 0xdaf120c8, 0x3207ee12, + 0x33834207, 0xd44d4253, 0x0d08d39d, 0x0a9299d2, 0xd4892716, 0x239349ea, + 0x0d43d241, 0x899ed489, 0x4f8be2d1, 0x017d40e8, 0xee0ad499, 0x07fe8842, + 0x7e11270d, 0x9499f814, 0x8142f40c, 0x5e2027fe, 0xd499fe7e, 0x89d36908, + 0x430b9ad2, 0xfdfa24e2, 0xfdffbff6, 0xea7e0d07, 0xfdf75ef8, 0x1b5e1383, + 0x334b07fd, 0xf1ce6143, 0x02100044, 0x51eda6ff, 0x001ff0c1, 0x77100000, + 0x184c3302, 0x4c53c881, 0xf644131d, 0xe602da8f, 0x33c4a14b, 0x08a4f5a4, + 0x89ff0218, 0xc25126c4, 0x35333b07, 0x32f54f6b, 0xff021800, 0xf5104c33, + 0x0218043e, 0x004fa3ff, 0x23040000, 0xfde8003e, 0xc3413435, 0x430bc431, + 0xc4353027, 0xf321c345, 0xfd9c3ff6, 0x4123c431, 0x935ec435, 0x90a1e0fd, + 0x6ea1d400, 0xf9e6f353, 0xf9e6f453, 0xf9e6f053, 0x47013b01, 0x5fc60801, + 0x01730161, 0xeeb211b4, 0x0701ab34, 0xd040e842, 0x33340701, 0x2b448735, + 0x0b4c0734, 0x104c0338, 0x30012727, 0x40053403, 0xf2a84403, 0x4103b401, + 0x7415b405, 0x3103b311, 0x150f3c83, 0x074127b3, 0xff2ea7ba, 0xbc03fdcf, + 0x6424c511, 0x5fe6ab47, 0x7b07ff21, 0x2d5e7333, 0x43a2c0fe, 0x1e2ea3c0, + 0x017301ff, 0xeeb211b4, 0x07017134, 0xff4fe042, 0x63ffffff, 0x539b1eff, + 0x53f967f1, 0x53f967f2, 0x01f967f3, 0x0127011b, 0xff745e38, 0x8662fb93, + 0x8f7ea701, 0x8ea7fef9, 0x5efef7c7, 0xf453ff62, 0xf053f94c, 0xf153f94c, + 0x4b01f94c, 0x18010701, 0x03ff4d5e, 0x89310b31, 0xc307e0d4, 0x4c2bcfab, + 0x41ec4f8b, 0x0d07fe74, 0x89f7887e, 0x4c2be0d4, 0x41c84f8b, 0x0a9299f2, + 0xc1fe5f5e, 0xd4c5fcd4, 0xb8d4c5bc, 0x27fb0d5e, 0x07412b44, 0x2b243b3b, + 0x0bd49d30, 0xfa4832e2, 0x435e3207, 0x2b4427fa, 0x3b0e0741, 0xf9e05e04, + 0x016cdba9, 0x412b4427, 0x047b0b07, 0xba5e4007, 0xbe0d07f9, 0x41fda6d7, + 0x513419f3, 0x803c03f4, 0x5ef734c2, 0x3ea7f988, 0x11fd6fff, 0x104ce334, + 0xf75e3415, 0x5e0027f8, 0x20a7fa28, 0x03f9035e, 0x05422b42, 0x5e311534, + 0x4027f93c, 0x9b0bf49b, 0xbea70ef4, 0x07fdcfff, 0xffaea791, 0x4827feff, + 0x274cb4c5, 0x97a3bd32, 0x9bc0270d, 0x41270efc, 0x2768b4c5, 0xf66b7e05, + 0xa4bd4027, 0xfc9b0d97, 0x4cbcc50e, 0x936cbcc5, 0x018567f1, 0x13019401, + 0x432b1211, 0x20a7410c, 0xf8aa20ec, 0xf293c11e, 0x310187f8, 0x35412324, + 0xfbc45e24, 0x565e40a7, 0x04d4d1fe, 0xead38901, 0x438b4183, 0x4fa34733, + 0x80000000, 0x5ef0d4c5, 0x4027fa66, 0x5e09d49d, 0x40a7fd45, 0x27fe905e, + 0xff2ea748, 0x24c5fdcf, 0x7e0b274c, 0x4027f5fd, 0xcfff3ea7, 0x4c34c5fd, + 0x5e6c34c5, 0x2e07fe05, 0x2787f093, 0xcf42befe, 0xf0ff1efd, 0xa1fca342, + 0x330a07c4, 0x0804f504, 0x89ff0218, 0xc35126c4, 0x25332b07, 0x23f54f6b, + 0xff021800, 0x4c331207, 0x004fa310, 0xf5040000, 0x0218042e, 0x001e23ff, + 0x1435fde8, 0xe30bc3a1, 0x18080ef5, 0xc489ff02, 0x6bc37126, 0x0023f54f, + 0x33ff0218, 0x28f5104c, 0xff021804, 0x00004fa3, 0x14350400, 0xd4fd5d5e, + 0x635e9e42, 0x000000fd, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x4007fb4e, 0x6b174c53, 0x07c0074f, 0xc0d027b1, + 0x0741ff4c, 0xff3e8330, 0x4ba67fff, 0x0c230407, 0x1f0ccc77, 0x003ea32f, + 0x13078000, 0x01e82027, 0x4c23008c, 0x6940c897, 0xe43be307, 0xd03bd107, + 0x2d074e07, 0x49333e07, 0x73172c53, 0x24ab173c, 0x272831c8, 0x27fb8e00, + 0x773c2720, 0x07574c27, 0x07d47bd2, 0x07e37be2, 0x072d074e, 0x5349333e, + 0x3c73172c, 0xcc24ab17, 0x3536da31, 0xba602fd4, 0xc8d10ccc, 0xffffff3f, + 0x3fc0caff, 0xffffffff, 0x07b2051f, 0x21c0cc42, 0x01274013, 0xfb8eb405, + 0x2b204c27, 0x5be20740, 0xabe03b34, 0xd08e1ee3, 0x0000002f, 0xda1e9e80, + 0xfb8e0127, 0x30133007, 0x4c234307, 0x9840cc20, 0x2b204c27, 0x07020743, + 0x5b043bd1, 0x1ed0abd3, 0xa3f84e8b, 0x09f005f0, 0x8b8207f0, 0x1593070f, + 0xea2dbef1, 0x49c007fd, 0xbe0f8bf0, 0x07fdea23, 0xbe0c0710, 0x07fde7e0, + 0x07f029b0, 0xbe0f8bab, 0x07fdea0f, 0x8bf069c0, 0xea05be0f, 0x071007fd, + 0xe7c2be0c, 0x00df27fd, 0x07448000, 0x071d07c0, 0xbebc070b, 0xc8fdeba6, + 0xd0272201, 0x0b071907, 0x07fec77e, 0x071807c0, 0xfebe7e0a, 0x08b60c8b, + 0xf1930427, 0x9efe25a4, 0x07fdd05e, 0x270c071d, 0xeb78bed0, 0x270108fd, + 0xc34d07d1, 0x6bd40741, 0xc6ca1edf, 0xf083dbdf, 0xfc4ef88e, 0xefff4ea7, + 0xf04ec1fd, 0xec33d107, 0xb6028918, 0x53b20389, 0xd1031dec, 0xe43fcea7, + 0x143222fd, 0x03fdf0e4, 0x0489fc8e, 0x2b1407bc, 0x3b42c212, 0x02c00489, + 0xc1140714, 0x0389cc04, 0x0b240bdc, 0x15c20523, 0xc00289c1, 0x89b60389, + 0x320bb204, 0x0189420b, 0xb6038dc8, 0x03b2048d, 0x89402711, 0x0389b602, + 0x8dc435b2, 0x4e07c801, 0xe4074103, 0xaa1eef6b, 0x04a9fe4e, 0x492602d4, + 0x31071353, 0xc1c80e89, 0x3fabd402, 0x14072411, 0x13c21fab, 0x27e142f8, + 0x5efe0e10, 0x1e2bff66, 0xfe0e1fab, 0x8eff5d5e, 0x07fc4efe, 0x6bd007c1, + 0x3df093cf, 0xad7e019d, 0xa7c7a600, 0xfeffff2e, 0x014223a9, 0x014424a9, + 0x277834ce, 0x9823bd30, 0x9b40270d, 0x1d070ef4, 0x01871f6b, 0xea980f03, + 0xd8530004, 0x01103f9b, 0xb5f29304, 0x2e51019b, 0x0405432b, 0x9908e19d, + 0x3ea71224, 0x9dfd4fff, 0x244909e4, 0x2499e44d, 0x11216908, 0x6d410b32, + 0xf6e205e4, 0x9b4027dc, 0x00070ef4, 0x2027ff8b, 0xe49d4027, 0x9be20508, + 0x0401103f, 0x0405430b, 0x3ea7c606, 0xbdfeffff, 0x270d9832, 0x0ef49b40, + 0x3227fc8e, 0x0d9823bd, 0xf49b4027, 0xa731270e, 0xfdcfff4e, 0x5e6843c5, + 0x4d07ff7e, 0x41034273, 0xbb1ef4e8, 0x0499f94e, 0xe6c00725, 0xa700a54f, + 0xfddfff1e, 0x01c014d1, 0x00944fe6, 0x020c13d1, 0x03250271, 0x021014d1, + 0x35270d99, 0x1413d104, 0x45402702, 0xa811d103, 0xff3ea701, 0x210bffff, + 0x7525049d, 0xb9d12302, 0x83010834, 0xd4ee0fdc, 0xd3330168, 0xc3894027, + 0x0cd4f520, 0xa7ff0001, 0xffffff2e, 0x24b93e56, 0x4ce00101, 0xb90131ff, + 0x07010124, 0x07db07b4, 0x3347334b, 0x23d40bd5, 0xfff70cde, 0x20274d07, + 0x05283c27, 0xc8440342, 0xc1c451f3, 0xd40550d2, 0x4ea7c161, 0xc5fd4fff, + 0x430164d1, 0xab103c33, 0x50d2c523, 0x00271c1e, 0x0127f98e, 0x24b9f98e, + 0xd4070101, 0xd533b407, 0xd40b4733, 0xf70cde23, 0x071c07ff, 0x0318032d, + 0x0327942c, 0x13012401, 0x430b1403, 0x24032405, 0xaea7f088, 0x81fd4fff, + 0xff9ea7ae, 0xa091feff, 0x012894d1, 0x013093d1, 0xe3330333, 0xc154d2c1, + 0x301b5cd1, 0x240b4e1b, 0x90d5130b, 0x9ed50130, 0xd2c50128, 0x5cd1c554, + 0xd4c1c371, 0x50d2c170, 0xd4c5430b, 0x27a30170, 0xab033b01, 0x22c49902, + 0x5650d0c5, 0x20c1894c, 0x0329c499, 0x2ac39911, 0x3b28c299, 0x06132b14, + 0xa3115325, 0x9980001d, 0xc39926c4, 0xa9483327, 0xab014492, 0x101c3343, + 0x3ea741ab, 0x03ffffff, 0x0834d521, 0xad012701, 0x8e014492, 0x07a401f9, + 0x144c331b, 0xd0c504ab, 0xbe0c0750, 0xa7fdbee3, 0xff4ea730, 0x43bdffff, + 0xa21e0101, 0xe8070e27, 0x7e102703, 0x0ea7fdad, 0xbefff71b, 0x07fe5106, + 0xe900c8b0, 0xffff4ea7, 0x0140bdff, 0xfebf5e01, 0x0d27b307, 0x10276406, + 0xb9fd887e, 0xee0108b4, 0x1efe894d, 0x07f84eee, 0xffbea7c0, 0x8c27fddf, + 0x65fd9310, 0x9c270199, 0xffaea70c, 0x471efd4f, 0x9b30b8c5, 0xd4c1102f, + 0x2bd35138, 0x38d4c542, 0x9908399d, 0x349d12d4, 0x11d44909, 0x99344da1, + 0xd26908d4, 0x420b3105, 0x4027346d, 0x070ef49b, 0x9dff8b00, 0x30050834, + 0xc1104f9b, 0xb0c538d3, 0xc5430b30, 0x0c0738d4, 0xc6fdd37e, 0xf88eb30f, + 0xcea7fc4e, 0x27fdcfff, 0xc4c5104c, 0x7e1f6b50, 0x4027fd01, 0xc550c4c5, + 0xfc8e70c4, 0xfc93fb4e, 0x070198e8, 0xffdea7bc, 0xbd03e7ff, 0xd3210150, + 0x40273158, 0xfb8ed435, 0x02cec4b9, 0x10270b27, 0xb90c4c38, 0x7602edc4, + 0x35412745, 0xfcc37ed4, 0x0b07dd1e, 0x1eff407e, 0x99fb4ed6, 0xc107231e, + 0x1401e30b, 0x8920cd89, 0xbe071e11, 0x120bb383, 0xd30bb4ab, 0x0091eff6, + 0x00fadff6, 0x07980489, 0x2f1fe634, 0x4414ee01, 0x9a048901, 0xc4994d2e, + 0xa3421824, 0xb98000bd, 0xa9021504, 0x2301f003, 0xe2343b44, 0xe601173d, + 0xa9011adf, 0xa9033c04, 0x03021003, 0xf241e341, 0x07009d4d, 0x0f4c0343, + 0x41034473, 0x41ea41e3, 0x21070086, 0x21032fab, 0x00a92433, 0x32c20212, + 0x07c02749, 0x033fab3d, 0xca343331, 0x03ee5730, 0x430700a8, 0x04ce4823, + 0x004f276e, 0xab100000, 0x7ec4abcb, 0x4ea7ff20, 0x45e7ffff, 0xe4fb8e4c, + 0xa9ff73e3, 0xe6017e04, 0xe6ff6b4f, 0x89009a1f, 0xbda39804, 0x665e1000, + 0x6423ceff, 0x48234207, 0x077c34ce, 0x033fab3d, 0x27343331, 0x000000cf, + 0xab03c204, 0xcbab4027, 0xd97ec4ab, 0xff4ea7fe, 0x4c45e7ff, 0x04b9fb8e, + 0x46e40214, 0xbea3ff76, 0x5e800000, 0x4f27ff6e, 0x20000000, 0xc4abcbab, + 0xa7feb37e, 0xe7ffff4e, 0xfb8e4c45, 0x07980489, 0x0614ee34, 0x00bda3ff, + 0x021ff608, 0x272c1eff, 0x000000cf, 0xff4d5e0c, 0x00004f27, 0xcbab3000, + 0x817ec4ab, 0xff4ea7fe, 0x4c45e7ff, 0xcf27fb8e, 0x08000000, 0x89ff2e5e, + 0xbea39803, 0x07010000, 0xfecb5e43, 0x4400bda3, 0xa3fee65e, 0x040000be, + 0xa3fee25e, 0x024000be, 0x4efeb85e, 0x241499f9, 0xa007d107, 0xc3079207, + 0xc04542c0, 0x41c02b43, 0x7eb9072d, 0xb103fe6d, 0x0a073c07, 0x2b071d07, + 0x03fe607e, 0x072907c1, 0x071d070a, 0xfe537e3c, 0x1d070a07, 0x3c072b07, + 0x465ef90e, 0xfe437efe, 0x0a073c07, 0x29071d07, 0xf90e3103, 0x7efe345e, + 0x2907fe31, 0x1d070a07, 0x3c072103, 0x225ef90e, 0x99fc4efe, 0xd1072414, + 0x42c0c007, 0x4143c04d, 0x272a41c0, 0x3e302720, 0x070c0783, 0x2722271d, + 0xff797e30, 0x1d070c07, 0x32272027, 0x07ff6e7e, 0x271d070c, 0x0e322722, + 0xff615efc, 0x30272027, 0x07ff5a7e, 0x271d070c, 0x0e322720, 0xff4d5efc, + 0x30272027, 0x445efc0e, 0x272027ff, 0xff3d7e30, 0x1d070c07, 0x30272227, + 0x305efc0e, 0xa7fc4eff, 0xfeffff4e, 0x0d3c43a9, 0x011804a9, 0x2bfc0ec1, + 0xc83f8b34, 0x01d11631, 0x1ec20100, 0xf802890f, 0x04ad4103, 0xe20b0118, + 0xc55ef3f0, 0x4ea7fc0e, 0xd1fdefff, 0xc1013001, 0xe1c2b844, 0x184c334a, + 0xd41d4c53, 0xd4274144, 0xcea7d42b, 0xd1fde51f, 0xc2013404, 0x04d11941, + 0x03a90110, 0x410b014a, 0x02a9430b, 0xc405014c, 0x4027c215, 0x04a9c435, + 0x03890140, 0x0b4103f8, 0x4004ad13, 0x3001d501, 0xf0e10201, 0xfc8ecafd, + 0xa9a11ec2, 0x1e011804, 0xa9fd4e90, 0x07017e04, 0xc61f6b12, 0x4ea77a4f, + 0xc1fdefff, 0x0389fc4d, 0x18dc33c6, 0x53ca0489, 0x3d2b1ddc, 0x0bc40289, + 0xc111c343, 0x210bd803, 0x01894fab, 0xb40e89b8, 0x028d3415, 0xca048dc4, + 0xd647e1c2, 0xbc0489dc, 0x072741c2, 0xc0038924, 0x2302212b, 0x04c12307, + 0xdc0389d0, 0x130b140b, 0xe40f4ea7, 0x154105fd, 0xb8018942, 0x35b40e89, + 0xc004894d, 0x31072e07, 0x240bd127, 0x038d340b, 0xb4028db8, 0x8ec60d8d, + 0x8ddfabfd, 0xf81ec60d, 0x09a9f74e, 0xe0070148, 0x7907910b, 0x8ea77fab, + 0xadfdefff, 0xa7014807, 0xfde4efae, 0xb9c48cc1, 0x330146e3, 0xcc5318cc, + 0xa93c2b1d, 0x060142e4, 0xad430b35, 0x070142e4, 0x073c0b34, 0xce4fab43, + 0xc4d46247, 0x0703074d, 0x2b310349, 0xabb40743, 0x0bd427bf, 0xd1dc2bb3, + 0xd10138e1, 0x03013ce4, 0x1941c2c1, 0x0114e4d1, 0x014ae3a9, 0x430b410b, + 0x014ce2a9, 0xa215a405, 0xa4354027, 0x03f8e489, 0xd5410b01, 0x070138e4, + 0xce4fab40, 0xfdf0160b, 0xbd471bc7, 0xab0146ec, 0x0c45d04f, 0xf4e84327, + 0xbdff7b5e, 0xa70146ec, 0xfeffff4e, 0x0d4243a9, 0x0142e2a9, 0x422b4307, + 0x80004dfc, 0x820700f0, 0xefff4ea7, 0xcc42c1fd, 0x0123e4b9, 0x53182c33, + 0x422b1d2c, 0x011ee1a9, 0x140b4766, 0xffff4ea7, 0x4041adfe, 0x1ee1ad0d, + 0xa7312701, 0xfdcfff4e, 0x076c43c5, 0x07320b31, 0xee4fab43, 0xf400ab47, + 0x0700a724, 0x2bd103d3, 0xabc9079d, 0x23b207cf, 0xa7c103d1, 0xfde4df9e, + 0xe4cfaea7, 0x834d07fd, 0x43330f4c, 0x010ce0d1, 0xf4a44e23, 0x10e3d1fe, + 0x27940501, 0x0bb10318, 0x27911530, 0x05923520, 0x89a115a3, 0xa235f8e4, + 0xe4d5400b, 0xd103010c, 0xa946fcf0, 0xbd011ae2, 0xce0123eb, 0xeca94928, + 0x2cce011e, 0x04e1d142, 0xf8ed8901, 0x012ce0d1, 0x7fffbea7, 0x072103d0, + 0x25e4b932, 0x0b3fab01, 0x8623071d, 0x05b10544, 0xce380e01, 0xe3ade8c3, + 0xe1d5011a, 0xf78e0104, 0xa983b4c4, 0xbd011ae2, 0xce0123eb, 0xf78eb982, + 0xa81eb207, 0x115e8307, 0xe3f54eff, 0x07d007f2, 0x2710273f, 0x054a272a, + 0x03212331, 0x07f4b834, 0x504d034d, 0x15f22501, 0x006d27f2, 0xff7ea720, + 0x5ea7feff, 0xa5e7ffff, 0x08d199f4, 0xd3b9db69, 0xd4b90214, 0xdc490215, + 0x4423b10b, 0x8c073423, 0xa1072b07, 0xa43b243b, 0x4027833b, 0x9d20f28d, + 0xf49d22f1, 0x1cfc8d24, 0x9d1ef88d, 0xf60523fa, 0x01f0d9a9, 0x010faff6, + 0xea98d489, 0xe200dd84, 0x27023c9b, 0x24f49d41, 0x3623f499, 0x14d4b94f, + 0x98d38902, 0xf2894423, 0xc2345b1c, 0xd4a92632, 0xd3a90144, 0x420b0140, + 0xcfabc407, 0x3f8b3c2b, 0x071131cc, 0xfc7f7e0d, 0x0140d4a9, 0x4f8b4c2b, + 0xb9f141c8, 0xd802ced4, 0x991a0c4c, 0xf189b1d4, 0x8b41231e, 0xb945f641, + 0x2602edd4, 0x98d48945, 0x01c914ea, 0x9922f399, 0x43ce0ad4, 0x1ef1892a, + 0xc298d489, 0xd4b92141, 0x4cd802ce, 0xd499120c, 0x8b4123b1, 0xb9455641, + 0xf602edd4, 0x0701a64f, 0x7e11270d, 0x957efd44, 0xfcf401f9, 0x2020004d, + 0x45402701, 0x75d4b954, 0x814ff601, 0x29d20900, 0x8612eed1, 0x83420700, + 0x994d0b43, 0x3f4b0d43, 0x20c8230b, 0xee12daf1, 0x42073207, 0x42533383, + 0xd39dd44d, 0x5ed20d08, 0x74a9fee1, 0xd3a90d3e, 0x432b0120, 0xc4ca4fab, + 0x27102724, 0x217e160c, 0x7e0d07f9, 0x74a9fbc1, 0xd3a90d3e, 0x432b0120, + 0x4cc24fab, 0x98d489e5, 0xfef548e2, 0xd489b92a, 0xc6413c9a, 0xf1b9eaa5, + 0x9d4227fe, 0xe95e24f4, 0x7e0d07fe, 0xb9eafb91, 0xee1efee0, 0xad7ef0a1, + 0x29d209f6, 0x7e21eed1, 0x274027ff, 0xffbea7c4, 0xd49de7ff, 0xf8e67e09, + 0xb4454027, 0xdd7efcb0, 0x1ad3a9f8, 0x48d4a901, 0x1734ce01, 0x10270d07, + 0x27fc777e, 0xa9f4e843, 0xa9011ad3, 0xce0148d4, 0xd3b9eb43, 0xd0890214, + 0x2cdcd198, 0x20d2a901, 0x44d1a901, 0x2340a701, 0xeedea934, 0x5bc40501, + 0x0b2e0b03, 0xced4b910, 0x20d2ad02, 0x44d1ad01, 0x0c4c3801, 0x02edd4b9, + 0xd4d14a36, 0xd38902d8, 0x0b410398, 0xc341e343, 0xd8d4d5f2, 0xd1f58e02, + 0x0702e8d4, 0x271f070d, 0x8b302720, 0xfed75ef4, 0x10270d07, 0x727e2127, + 0xc4d489fb, 0xcecad289, 0xd4a9ef42, 0x48c602d4, 0x89b6d389, 0x34cabcd4, + 0x891a1e0c, 0xd489b6d3, 0x0e43c2bc, 0x11270d07, 0xa9f4797e, 0x9602d4d4, + 0xcad28941, 0xa7d8d3c1, 0xd1341540, 0x8902d8d4, 0x410398d3, 0x41e3430b, + 0xd28df2c3, 0xd8d4d5c4, 0x07f58e02, 0xf4c27e0d, 0x07fe335e, 0x7e20270d, + 0x545efb11, 0x9d4327fe, 0xc55e24f4, 0x000000fd, 0x00000055, 0x00000001, + 0x00000000, 0x00020000, 0x07f54e00, 0x071d07d0, 0x073d072d, 0x03f7234d, + 0x0301500d, 0x03017c1d, 0x0302f02d, 0x03018c3d, 0xc502ac4d, 0xf1c550f0, + 0x44f2c55c, 0xc560f3c5, 0xbea764f4, 0xd1ffffff, 0xe60a44b4, 0xa709bc4f, + 0xfd5fffce, 0x4ca3c411, 0x93c41510, 0x019063f1, 0xfd330ea7, 0x010401fe, + 0x2b121113, 0x3c41e843, 0xd220e80b, 0x3342870a, 0x07420b24, 0x53c433c4, + 0x0bff7ffe, 0x23e101c4, 0xfef5f8ce, 0xc55cf2c1, 0x3c0740fc, 0x30014107, + 0x20051123, 0x24033403, 0xfc93f498, 0x0101901c, 0x03c311c4, 0x05310341, + 0x23c315c4, 0x8331ec41, 0x05fe930a, 0xe4010190, 0xfd330ea7, 0xa90425fe, + 0xa9017ed1, 0x270244d4, 0xff2ea7c1, 0xf1c5fdcf, 0x642cc548, 0x4123412b, + 0x017cd3b9, 0x02d4d4ad, 0xc11b31dc, 0x6e7e50f0, 0xbe0d07f6, 0xa9fd9cf9, + 0xa9017ed3, 0xc50188d4, 0xd48d48f3, 0xced4b912, 0x0c4cf802, 0xd8b908f3, + 0x8fe602ed, 0xdba90939, 0xd2a902d4, 0xfbc50352, 0x49deb94c, 0xc5b10302, + 0xd3b930fe, 0xfb6502d0, 0xd4b9be3b, 0xfb650248, 0x02d1d0b9, 0xfb65b37b, + 0xb934f0c5, 0x330355d1, 0x3bf235b4, 0xb94433b1, 0x7b0354d2, 0x65037b43, + 0x4cf3c1fb, 0x0350dba9, 0x013bc13b, 0xf0a5f3b5, 0xfb25fc95, 0x0216dcb9, + 0xc548fec1, 0xfec538fc, 0x314fab3c, 0x4cd5d1f3, 0x132ff603, 0x1bfa910a, + 0xc1a153a5, 0x02e030f0, 0xb02709fb, 0xf761fb75, 0x742b413b, 0x09dd2ff6, + 0x951bf991, 0x40279153, 0x7ff6f405, 0xd48d08b7, 0xeed78de8, 0x8be8d489, + 0x124f8b3f, 0xa9430743, 0x8d0352db, 0xbf8be8d4, 0x07eed489, 0x68fbc53b, + 0x31734f8b, 0x43074312, 0x89eed48d, 0xde89e8dc, 0x074c07ee, 0x9b459b3e, + 0x0b012735, 0x0b013b4a, 0xc51027a3, 0xfec554fc, 0xe0d4c558, 0xc5e4dac5, + 0xfd156cf0, 0xf185cd07, 0x2fe6f281, 0xd8c10851, 0x27f381e4, 0x27349641, + 0x91f26140, 0x7bf371fe, 0x07347b24, 0x2b6e07b2, 0xa1621bb3, 0x5bf281f3, + 0x6bbe2b34, 0x2b632b2f, 0xe6a807b3, 0xc1081a2f, 0xf08158f4, 0xf4c17407, + 0x7b7fab68, 0x2b102740, 0x9d940747, 0xc19df0c1, 0xc29fabf2, 0xd1d131b8, + 0x0b07034c, 0xb2be082b, 0x0f6bfdec, 0x459b4007, 0x0bf0c09d, 0x074b4a48, + 0x9d412340, 0xc499f0c4, 0x6b4103f0, 0x9ba4074f, 0x9da80ba5, 0x4907f0c4, + 0x8bf0c399, 0x0743124f, 0x2b4f6b43, 0x9db90794, 0xbfabf0c4, 0x06ce6ae2, + 0x06cabfe6, 0x034cd1d1, 0x0a2b0607, 0xfdec64be, 0x40070f6b, 0x4a0b459b, + 0x4af2c09d, 0x23400746, 0xf2c49d41, 0x27f2c499, 0x9d410310, 0x4b07f2c4, + 0x8bf2c399, 0x0743124f, 0xf0c29943, 0x720b4f6b, 0xc49d740b, 0x113707f2, + 0xc13fabf4, 0x438d6cfb, 0xd65beeea, 0x54d4b907, 0xce42e003, 0x11f48107, + 0x034103fb, 0x15f485b2, 0xe4c103fb, 0xd1fef342, 0xa70348d4, 0xfddfffee, + 0x022ce4d5, 0x034cd3d1, 0xd534fcc1, 0xc10230e3, 0xf1c1e0d2, 0x3ce2d554, + 0xe4d3c102, 0x1d83c253, 0xe3d53fff, 0xfcc50240, 0x54f1c534, 0xb130f0c1, + 0xd0d2b9f4, 0x7b403b02, 0x5b4433c2, 0xc1c78342, 0xcc3358f2, 0xff4d8310, + 0x34fcc53f, 0xab101c33, 0xff2d83c4, 0x34ecd51f, 0x54f1c502, 0xe1d512ab, + 0xd4990238, 0xf1d299f2, 0xc140fbc1, 0x4c8338fc, 0x1f2c833f, 0x99f0de99, + 0xb389f3d0, 0x33483396, 0x1127102c, 0x1027c486, 0xec8342ab, 0xab317b3f, + 0x1f0c834e, 0xb289fe31, 0x180c3394, 0x3fff3d83, 0x40abf121, 0x3fff2d83, + 0xdfff0ea7, 0x103c33fd, 0x3fffed83, 0x024404d5, 0xec3332ab, 0xff1d8310, + 0x2403d53f, 0xb1fe3502, 0xd5e1abf3, 0xb902280e, 0x270354d2, 0x27348641, + 0x3cfbc140, 0x83184c33, 0x86312723, 0xab3027b4, 0x193c3342, 0x04d543ab, + 0xd4b90220, 0xf6c10249, 0x4ad3b94c, 0xf6643b02, 0xb905333f, 0xa90215d1, + 0x2701f0dc, 0xf0e027a0, 0x23051814, 0x5b060714, 0xa9140301, 0x2701eed2, + 0x0b212341, 0x88dea92e, 0x27302701, 0x09d49db0, 0xf2774ea7, 0x08db9dfe, + 0x550cd39d, 0x4dd30dd4, 0x8dd06dd3, 0x228712de, 0x0248dbb9, 0x051414f0, + 0x4c0b4a07, 0x34233107, 0xd39d402b, 0x02433b0b, 0x5b4b074b, 0x23340743, + 0x23430721, 0x0b138741, 0x2d132b23, 0x0ad49dd2, 0x04071103, 0x069741e8, + 0x21232307, 0x42a73d07, 0x030d349d, 0x0bf2b031, 0xecd5b90d, 0x0d019d02, + 0x04c35fe6, 0x04bf61e8, 0x71237607, 0x01a4d4a9, 0x40e84f8b, 0xe0270514, + 0x02a8d4d1, 0x4df8fe45, 0x05120100, 0x02d0d3b9, 0x437b4707, 0x21732407, + 0x34070207, 0xe2070283, 0x14073283, 0x90878387, 0x02073407, 0x1183e183, + 0xee471147, 0x34830483, 0xdcd1810b, 0x9e0b0318, 0x03333333, 0x0324d1d1, + 0x900b830b, 0x47e327e3, 0x219b4c9b, 0x94338433, 0x920b840b, 0x0328d4d1, + 0x031cdad1, 0xc153cb07, 0xab9bc49b, 0x034cf1c1, 0xcc037fac, 0x3cd0a97f, + 0x7face303, 0xd17fcce3, 0xd10314d4, 0x9b0320d3, 0x2ba19bc1, 0x0ba40b06, + 0x070b12c3, 0x48f2c10b, 0x04302fe6, 0xfa9af353, 0x02d1d1b9, 0x40273e01, + 0x045a6fe6, 0xefe63027, 0x6fe6015c, 0xfb530154, 0xb201fa84, 0x17831253, + 0x13ab14ab, 0xdfffeea7, 0xd512abfd, 0x2501d4e1, 0xf6f041e0, 0xb9013c0f, + 0xe601ecd4, 0xd100914f, 0xd802a8d4, 0x5101004d, 0x019cd4d1, 0x02d0d0b9, + 0x0330dbd1, 0x20c04cd8, 0x21732707, 0x05a820e8, 0x0338d4d1, 0xd3d12373, + 0x249b0334, 0xdfff1ea7, 0xd5c20bfd, 0x2701f413, 0x07103b18, 0xe8f8be07, + 0xff2ea7fd, 0x4427fddf, 0x01d824d5, 0x032cd3d1, 0xab0bb09b, 0x01bc23d5, + 0x41275626, 0x40276486, 0xdfff3ea7, 0x9834d5fd, 0xc6f44101, 0x9cd4d146, + 0xc04c5801, 0xdfffbea7, 0xe4b9d5fd, 0xe8bcd501, 0xffcea701, 0xcad5fddf, + 0xc8d5019c, 0xdab901ac, 0xac8302ce, 0xa5afe60c, 0xedd8b900, 0x9d8fe602, + 0x9cd4d100, 0xc0d3d102, 0xc4dcd101, 0x5a4ce001, 0x4cf4049f, 0xf603c35b, + 0x8903bd4f, 0xd289e8d0, 0xeede89ea, 0xd1894007, 0x9b422bec, 0xa73e0743, + 0xfddfffbe, 0xb4d5312b, 0x3c9b0114, 0x0118b3d5, 0x1e2b202b, 0x011cb3d5, + 0xa91921c8, 0xa90340d3, 0x2b033ed4, 0x12402b30, 0xe8320732, 0xfa04f940, + 0x27036743, 0xc80027c0, 0xd3a91911, 0xd4a90346, 0x3e2b0344, 0x31124e2b, + 0x40e83107, 0x43fa0464, 0x2027034f, 0x291e4027, 0xfeac5fe6, 0xad5e2027, + 0xc0d4d1fe, 0xd141fc01, 0xff1e5efe, 0x033edca9, 0x0340d0a9, 0x44334607, + 0xc42b042b, 0x40272027, 0xdfffeea7, 0x50ecd5fd, 0x58e0d501, 0x44e2d501, + 0x48e4d501, 0x2b6fe601, 0xa7302702, 0xfddfff0e, 0x02c4d4a9, 0x016403d5, + 0x048642e0, 0x1ea77327, 0xb9fddf23, 0xc102edd8, 0xf15544fb, 0xb3615707, + 0xac06369b, 0xd4d18bc6, 0xdad1029c, 0xd9d101c0, 0xd38901c4, 0xeed089e8, + 0x99ead189, 0xd289f4de, 0xf5dc99ec, 0x615a4ce0, 0x5b4cf403, 0x4fe601c8, + 0xff1e02c5, 0x3a9b4007, 0x3013499b, 0x73004013, 0xb4313407, 0x430bf251, + 0x06a824c5, 0x0bb40185, 0x23240543, 0x78f5f871, 0x7dd4b901, 0x84d1a901, + 0x23340701, 0x0f4c8341, 0x01eed2a9, 0x43333333, 0x219be027, 0xfef43e23, + 0xf44e23ff, 0x0147fffe, 0xdcb9b027, 0xd7d501df, 0xd3d502dc, 0xd4d5012c, + 0xd08d0128, 0x00d2d5fa, 0x25debd01, 0xe4dead01, 0xf8d18d02, 0x0124dbbd, + 0x0137cfe6, 0xffff4ea7, 0x4143b9fe, 0x2a3fe601, 0x7edea901, 0xff4ea701, + 0x3e07dfff, 0x0244d2a9, 0x0114d4d5, 0x0110d4d5, 0x23ee3103, 0xd4b9047a, + 0x4438017c, 0xd4bd4127, 0xd3b90125, 0xd0890214, 0x23402798, 0xf8d28934, + 0x037bd169, 0x0138d4d5, 0xd5fcd4c5, 0xd50108d4, 0xd50104d4, 0xd5010cd4, + 0x9b0130d4, 0xa21fe602, 0xe6400703, 0xd503a2ef, 0xd50134d4, 0x07013cd0, + 0xf20b7e0d, 0x02ced4b9, 0xb90c4c38, 0xf602edd4, 0x07038b4f, 0xf4cb7e0d, + 0x7e50f0c1, 0x4127eee1, 0x0175d4bd, 0x0150d3d1, 0x2760f4c1, 0x4001122c, + 0x30054403, 0xf2a83403, 0x0188d2d1, 0x017dd1b9, 0x02a4d3d1, 0x0187dbb9, + 0x02d4dca9, 0x02d0deb9, 0x0249d0b9, 0x017ed4a9, 0x0164d2d5, 0x0177d1bd, + 0xf74ef253, 0x0168d3d5, 0x0176dbbd, 0x0170dcad, 0x0178debd, 0x0179d0bd, + 0x44962119, 0xd3b91127, 0xd4890248, 0x54d2d198, 0x33439b01, 0xecd3b944, + 0x6cd4d502, 0x64f4c101, 0x017ad3bd, 0x0172d1bd, 0x4b013827, 0x2b054403, + 0xf3a82403, 0xb9f7355e, 0x5102ceda, 0x03b403f4, 0x0cac8344, 0x1f5ef455, + 0x80d4d1fe, 0x7edea901, 0x14d4d501, 0x10d4d501, 0xfef05e01, 0x3db44ce0, + 0x0e4de0fe, 0x5e010101, 0xd3a9fe32, 0xd45e0342, 0x2b4427fd, 0x3b060741, + 0xfae95e04, 0x0215d1b9, 0x01f0dca9, 0x4c071423, 0xd389413b, 0x0341239a, + 0x8d34e214, 0x27a12701, 0xfabd5ee1, 0xf68ef253, 0x5b5e2101, 0x5e7607f9, + 0x4427fb44, 0x412b3c07, 0x0b07302b, 0x3b0bd49d, 0xf430e204, 0x5e3007fa, + 0xd4b9faef, 0xe12701ea, 0x02d1d1b9, 0x0212d3a9, 0x44182027, 0x327b2127, + 0x46072307, 0x02d0d3b9, 0x4433210b, 0x34c6242b, 0x23e32303, 0x44334007, + 0x4633422b, 0x03004d83, 0xfbaa6ff6, 0x31c33507, 0x3c333183, 0xfba05e10, + 0x01c0d4d1, 0xfc45c127, 0xfaf242fc, 0x0318d8d1, 0x0324d4d1, 0x91739707, + 0x879b949b, 0xa9fb2f5e, 0xc502d4dc, 0x0b5e4cfc, 0xffeea7fa, 0xe411fd5f, + 0x15104ce3, 0xf6455ee4, 0x0307c407, 0x07fc9a5e, 0x5e430724, 0xff1efcdc, + 0x97b44ce0, 0x0e4de001, 0x1e00ce01, 0x9b4007f2, 0x5e499b3a, 0x1e3bfd42, + 0x31272c3b, 0x312b4127, 0x335e422b, 0xd4dea9fd, 0x4cfec502, 0xc1f9bd5e, + 0xe75e54f4, 0xe0d8c1f7, 0x07f7b05e, 0x0760278f, 0x96412715, 0x07402764, + 0x91fca1b7, 0x5bb45bfe, 0x0bbe2bc4, 0x030b07c9, 0xc20c2b61, 0x92be1bbc, + 0x0fabfde4, 0x459b4007, 0x4c0b800d, 0x4b0a0123, 0x8409800d, 0x840d4103, + 0x62c48203, 0xd4d1a9c3, 0xa9f20902, 0xc5017ed0, 0xf0c54cf1, 0xe8d28d48, + 0xd3a9f429, 0xd1b90352, 0xd48d0355, 0xf6ee5eee, 0x3e3b4007, 0xaf5e4c3b, + 0x48fec1fc, 0xf82feff6, 0x8168f4c1, 0xf2407bf0, 0x07f82443, 0x03f31143, + 0xea348d41, 0x42071b26, 0xc49d4103, 0xf80f5ef0, 0xe127a027, 0x27f9325e, + 0xffcea740, 0xd089fddf, 0xeede89e8, 0x89ead289, 0xc4d5ecd1, 0xc4d50114, + 0x202b0118, 0xc4d51e2b, 0x755e011c, 0xf2c499fb, 0xc49d4103, 0xf7d75ef2, + 0x9b5e4027, 0x5e0027fb, 0x4203f977, 0xc405432b, 0x765ec115, 0x50f0c1f5, + 0x27ec147e, 0x0bf49b40, 0x270ef49b, 0x7e112705, 0x2ea7ec70, 0x93fefd33, + 0x01855ffb, 0xb3012401, 0x432bb211, 0x20a7410c, 0x5ee120c8, 0x2703f501, + 0x00fa575e, 0x27222021, 0xf6245e90, 0x91539507, 0x07f61d5e, 0x3bc153c4, + 0x5efc75c1, 0x2100f602, 0xa0272220, 0x07f5ee5e, 0x5ea153a5, 0x4027f5e7, + 0xa7fb065e, 0xf4c35e20, 0x16070d07, 0xfdab17be, 0x02cedab9, 0x5e0cac83, + 0xd089fb6c, 0xead289e8, 0x89eede89, 0x202becd1, 0xdfff4ea7, 0x2b329bfd, + 0x1443d51e, 0x9b410701, 0xffbea74c, 0xb4d5fddf, 0xb4d50118, 0xa95e011c, + 0xf64027fa, 0x27fc62ef, 0xfc5d5e00, 0xfc9330a7, 0x150184c8, 0x7dd4b9c3, + 0xd4d2a901, 0x23340702, 0x0f4c8341, 0x43333333, 0xfef43e23, 0xf44e23ff, + 0xd3c5fffe, 0xd4d4c5d8, 0xdcc524b6, 0xccdea9d4, 0xa6d08902, 0x89bede8d, + 0x0103bed3, 0x44272007, 0xd49d239b, 0x273387b0, 0xc0d38d48, 0x9dbcd28d, + 0x0303b1d4, 0x8fbe1427, 0xd389fde2, 0xa74027c0, 0xd17fff2e, 0x8dbad08d, + 0xd48db4d3, 0xd0d2c5dc, 0x8dc4d48d, 0xd48dc2d4, 0xcad48dc8, 0x8db6d48d, + 0xd38db8d4, 0xc6d48db2, 0x5eccd2c5, 0x4127fbe7, 0x0124d4bd, 0x00fb815e, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010020, 0x00000000, + 0x00000000, 0x00010020, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00045c0c, 0x00045c0c, 0x00045c0c, 0x00045c0c, 0x00045c0c, 0x000182e2, + 0x000182e7, 0x000182ef, 0x000182f7, 0x000182fd, 0x00018304, 0x0001830f, + 0x00018318, 0x00018321, 0x00018325, 0x0001832b, 0x00018335, 0x0001833d, + 0x0001834b, 0x00018358, 0x0001835f, 0x0001836b, 0x00018375, 0x00018380, + 0x000182e2, 0x0001838b, 0x00018393, 0x0001839b, 0x000183bf, 0x0001839f, + 0x000182ef, 0x000183a8, 0x000183b2, 0x000183bc, 0x000183c6, 0x000183d0, + 0x000183d8, 0x000183e1, 0x000183e7, 0x000183ee, 0x000183f4, 0x000183ff, + 0x00018409, 0x000182e2, 0x0001838b, 0x0001840f, 0x00018413, 0x00018417, + 0x00018385, 0x000183bf, 0x00018422, 0x000182e2, 0x0001838b, 0x00018430, + 0x00018439, 0x00018442, 0x00018446, 0x0001844d, 0x00018455, 0x0001845d, + 0x00018466, 0x00018470, 0x0001847b, 0x000183bf, 0x00018485, 0x0001848f, + 0x00018499, 0x000184a2, 0x000184ac, 0x000184b3, 0x000184bd, 0x00018422, + 0x000184ca, 0x000184d7, 0x000184da, 0x000184e4, 0x000182e2, 0x0001838b, + 0x000184ec, 0x000184f4, 0x000183bf, 0x00018422, 0x00018385, 0x00018460, + 0x00018502, 0x000184fc, 0x0001850c, 0x0001851c, 0x00018525, 0x0001852d, + 0x00018535, 0x0001853e, 0x00018549, 0x00018556, 0x00018563, 0x000182e2, + 0x0001838b, 0x0001856a, 0x00018575, 0x0001857d, 0x000183bf, 0x00018422, + 0x00018581, 0x00018589, 0x00018594, 0x00018385, 0x0001859d, 0x000185a9, + 0x000185b4, 0x000185be, 0x000185c9, 0x000185d0, 0x000185de, 0x000185ed, + 0x000182e2, 0x000185f2, 0x000184da, 0x000185f7, 0x000185fb, 0x00018603, + 0x0001860b, 0x00018615, 0x000183b8, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, +}; +const int fw_hevcdec_size = 219392; + +int get_fw_hevcdec(unsigned char **data) +{ + *data = (unsigned char *)fw_hevcdec; + return fw_hevcdec_size; +} diff --git a/drivers/media/platform/canaan/vpu/fw_hevcenc.c b/drivers/media/platform/canaan/vpu/fw_hevcenc.c new file mode 100644 index 0000000000000..58f9f05ce7c7e --- /dev/null +++ b/drivers/media/platform/canaan/vpu/fw_hevcenc.c @@ -0,0 +1,14775 @@ +// SPDX-License-Identifier: GPL-2.0-only +/* + * Copyright (c) 2024, Canaan Bright Sight Co., Ltd + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND + * CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, + * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, + * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + */ + +#include "mvx_firmware_cache.h" + +const unsigned int fw_hevcenc[] __aligned(0x1000) = { + 0x0000eb5e, 0x02020305, 0x33363635, 0x32303137, 0x36322e48, 0x504d2035, + 0x636e4520, 0x7265646f, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x43564548, 0x20434e45, + 0x33346332, 0x31643430, 0x30703172, 0x6530302d, 0x00306361, 0x00000000, + 0x00056580, 0x00058000, 0x00000014, 0x000fc0ff, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00066000, 0x0000557c, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x01a70d27, + 0x6ea7f07b, 0x53fdcfff, 0xa50207f0, 0x25012760, 0x25002760, 0x0ef09b60, + 0x4fff6ea7, 0x036101fd, 0xa3143311, 0x3861c510, 0xce3860c1, 0x1ea7f810, + 0x27ffffff, 0x07142131, 0x24169924, 0x96806c40, 0x806c2765, 0x2724169d, + 0x03302761, 0x27620e21, 0x0b510720, 0x66501952, 0xf042ce0b, 0x33273826, + 0x270d139d, 0x6a13bd31, 0x9b002706, 0x10990ef0, 0xff6ea70f, 0x0233fd4f, + 0x63c5600b, 0x9b302740, 0x6ea70ef3, 0xc5fd4fff, 0x0d273863, 0xf0e81000, + 0x1225871e, 0x501d0127, 0x070c1399, 0x9d310353, 0x32070c13, 0x9b182c33, + 0x21a304f2, 0xffff0ea7, 0x270205fe, 0x0ef29b20, 0x059d0315, 0x000d2708, + 0x4df19302, 0x2d270583, 0xf09b0400, 0x93f10706, 0x0578bff1, 0x0b361001, + 0x10050127, 0x7032f093, 0x2df39305, 0x03c2056e, 0x0331011e, 0x30ca803c, + 0x1df393f9, 0xf293056e, 0x01056198, 0x05240321, 0xca340331, 0x58bef630, + 0x00270002, 0xbe0bf09b, 0x27000280, 0x9b102701, 0xff8b06f0, 0x0000fd1e, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x01a70d27, 0x6ea7f07b, + 0x93feffff, 0x000213f1, 0x937f1ce3, 0x00020bf2, 0x05b66001, 0x9bfa21d2, + 0x1c030ff1, 0xe3f21e80, 0x04f09b01, 0x02000d27, 0xa24ef193, 0x012d2705, + 0x06f09b20, 0x12bef107, 0xff8b00f7, 0x0000fd1e, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x01a70d27, 0x6ea7f07b, 0x93feffff, 0x000193f1, 0x937f1ce3, 0x00068ff2, + 0x05b66001, 0x9bfa21d2, 0x1c030ff1, 0xe3f21e80, 0x04f09b01, 0x02000d27, + 0xbacef193, 0x022d2705, 0x06f09b20, 0x61bef107, 0xff8b0001, 0x0000fd1e, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x01a70d27, 0x6ea7f07b, 0x93feffff, 0x000617f1, + 0x937f1ce3, 0x0009cdf2, 0x05b66001, 0x9bfa21d2, 0x1c030ff1, 0xe3f21e80, + 0x04f09b01, 0x02000d27, 0xd54ef193, 0x032d2705, 0x06f09b20, 0xe5bef107, + 0xff8b0005, 0x0000fd1e, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x01a70d27, 0x6ea7f07b, + 0x93feffff, 0x000955f1, 0x937f1ce3, 0x000a29f2, 0x05b66001, 0x9bfa21d2, + 0x1c030ff1, 0xe3f21e80, 0x04f09b01, 0x02000d27, 0xe14ef193, 0x042d2705, + 0x06f09b20, 0x23bef107, 0xff8b0009, 0xf09bfd1e, 0x07fe0b06, 0x4efe0b0f, + 0x25fd93f5, 0xd0010000, 0xf08b0506, 0xf71ed403, 0xf54ef58e, 0x0016fd93, + 0x06d00100, 0x03f08b05, 0x8ef71ed4, 0x000000f5, 0x00000000, 0x00000000, + 0xf3abfe4e, 0x7e36f493, 0xbef41b01, 0x93009fdc, 0x0572a7f0, 0x90be1027, + 0xfe0e00e3, 0x00f5069e, 0xf493fd4e, 0x1b0182ac, 0xff3ea7f4, 0x4e27fd7f, + 0x25382a02, 0xab341534, 0xeb0127f2, 0xff2ea7f0, 0x4f27ebff, 0xa0050078, + 0x3e272405, 0x15c00000, 0xa74d2723, 0x5c24c580, 0xffffeea7, 0x0c4f27e7, + 0x05900000, 0xa71027e4, 0xfefddb4e, 0xf3934125, 0x1505b910, 0x50e0c531, + 0x41154105, 0xb90afd93, 0xd5310505, 0xd50230d1, 0x9b0234d1, 0x3ea70ef1, + 0x93fdcfff, 0xfffe6bf4, 0x303534b5, 0xf4933135, 0xc5fffee0, 0x30453034, + 0x2ea73145, 0x27fddfff, 0x5024c547, 0x275421c5, 0xc520004d, 0x3d275824, + 0x23c53000, 0x004d275c, 0x6024c532, 0x52003d27, 0x276423c5, 0xc562004d, + 0x3ea76824, 0x27f3ffff, 0x5434c548, 0xa75431c5, 0xefffff4e, 0x30274015, + 0xffff4ea7, 0xd443adfe, 0x872ea71c, 0x2105fdeb, 0x00004f27, 0x24150c83, + 0xfdcf3ea7, 0xef4ea7fe, 0xd3d5fef5, 0xd44501d0, 0xa70ef19b, 0xfdefff3e, + 0x34d54327, 0x03070238, 0xdc3804c1, 0x1427fb48, 0x023801d5, 0x023c01d5, + 0x02d52027, 0x3ea706c0, 0x05fdebc7, 0x004f2732, 0x150b8300, 0x0ef29b34, + 0xe70f3ea7, 0x304c27fd, 0x32153405, 0x00004f27, 0x3435a000, 0x024001d5, + 0x06c402d5, 0x04d54327, 0x1ea70244, 0xc1fdefff, 0x48dc4414, 0xd54427fb, + 0xa7024414, 0xfdebbf2e, 0x23053027, 0x00004f27, 0x24150c03, 0xa70ef39b, + 0xfde6ff2e, 0x05314c27, 0x27231524, 0x0000004f, 0x272435a0, 0x6813d533, + 0xff1ea702, 0x14c1fdef, 0xfb48dc68, 0x14d54427, 0x14d50268, 0x3027026c, + 0x06d013d5, 0xeb972ea7, 0x272305fd, 0x0400004f, 0x9b241501, 0x43270ef3, + 0x024814d5, 0xefff0ea7, 0x4804c1fd, 0x27fb48dc, 0x4801d514, 0x4c01d502, + 0xd5202702, 0xa7065402, 0xfdebb73e, 0x4f273205, 0x0e420000, 0xf29b3415, + 0xcf3ea70e, 0x4c27fde6, 0x15340515, 0x004f2732, 0x35a00000, 0x5001d534, + 0x5002d502, 0xd5432706, 0xa7025404, 0xfdefff1e, 0xdc5414c1, 0x4427fb48, + 0x025414d5, 0xebaf2ea7, 0x053027fd, 0x004f2723, 0x150e8200, 0x0ef39b24, + 0xe6bf2ea7, 0x144c27fd, 0x23152405, 0x00004f27, 0x2435a000, 0x13d53327, + 0x0ea70258, 0xc1fdefff, 0x48dc5804, 0xd51427fb, 0xd5025801, 0x27025c01, + 0xcc02d520, 0xa73ea706, 0x3205fdeb, 0x00004f27, 0x34150ec2, 0xa70ef29b, + 0xfde68f3e, 0x05334c27, 0x27321534, 0x0000004f, 0xd53435a0, 0xd5026001, + 0x2706c802, 0x6404d543, 0xff1ea702, 0x14c1fdef, 0xfb48dc64, 0x14d54427, + 0x2ea70264, 0x27fdeb9f, 0x27230530, 0x0200004f, 0x9b24150f, 0x2ea70ef3, + 0x27fde67f, 0x2405324c, 0x4f272315, 0xa0000000, 0x33272435, 0x02d013d5, + 0xefff1ea7, 0xd014c1fd, 0x27fb48dc, 0xd014d544, 0xd414d502, 0xd5302702, + 0xa7069413, 0xfdeb2f2e, 0x4f272305, 0x10c20000, 0xf39b2415, 0xaf2ea70e, + 0x4c27fde4, 0x15240525, 0x004f2723, 0x35a00000, 0xd5332724, 0xa702d813, + 0xfdefff2e, 0xdcd824c1, 0x4427fb48, 0x02d824d5, 0x02dc24d5, 0x23d53027, + 0x2ea70698, 0x05fdeb27, 0x004f2723, 0x15110200, 0x0ef39b24, 0xe48f2ea7, + 0x264c27fd, 0x23152405, 0x55fef193, 0x004f2703, 0xe3a00000, 0x0ea77f1c, + 0x35feffff, 0x4804d124, 0xc0362701, 0x1ff41843, 0x0003836c, 0xf19b00b4, + 0x4804d10f, 0x801c0301, 0x43c43627, 0xff3ea7ea, 0x34c1fd4f, 0x9e40e874, + 0x874ea700, 0x2027fef6, 0xffffeea7, 0x48e0d1fe, 0x09429d01, 0x0142e2ad, + 0xd4d510a7, 0x302701d4, 0x4504439d, 0x05429d41, 0x429d4135, 0x9d426d0a, + 0x03c00842, 0x272e070e, 0xd1f4e846, 0xc4014823, 0x4ea7f633, 0x93ffffff, + 0x05b6b7f3, 0x065842d1, 0x1c031307, 0x874ea797, 0x4205fef6, 0xe37f1ce3, + 0x34197f3c, 0xc2803c03, 0x2c27f931, 0x91f39326, 0x102705b6, 0x31054207, + 0x34032123, 0x4ea7f4b8, 0x93fee2f3, 0x05b543f0, 0xd5bcd2c5, 0xc5014cd4, + 0x3dbec0d2, 0xff1e0368, 0x3a5ef3e8, 0x7434c1ff, 0x00004ef8, 0xa7ff5c01, + 0xebffff2e, 0xffff1e27, 0x0021d5ff, 0xb84e2701, 0x24d5c8c0, 0x3e270104, + 0xd5a8a098, 0x27010823, 0xfffff34e, 0x010c24d5, 0xa49c3e27, 0x1023d5af, + 0x8e4e2701, 0x24d59a94, 0x21d50114, 0x4e270118, 0xd5c0a49c, 0x27011c24, + 0x8c847c3e, 0x012023d5, 0xf5f04e27, 0x2424d5fa, 0x843e2701, 0x23d5a08c, + 0x4e270128, 0xd57e7872, 0x27012c24, 0x03060c3e, 0x013023d5, 0x08101e27, + 0x3421d504, 0x3821d501, 0x184e2701, 0x24d5060c, 0x3e27013c, 0xd5081020, + 0xd5014023, 0x27014423, 0x1e0e064e, 0x014824d5, 0x014c24d5, 0x015024d5, + 0x06023e27, 0x5423d50e, 0x5823d501, 0x5c23d501, 0xfe9f5e01, 0xf393f54e, + 0x9305cd58, 0x05d1eef2, 0x3ce3f1a3, 0x7f2ce37f, 0x3c033419, 0xf932c280, + 0x7e02f493, 0xa7f41b01, 0xfd6fff3e, 0x60024d27, 0x34153425, 0x4127f2ab, + 0xf193f4eb, 0x2705cf94, 0xa7e10740, 0xebffff3e, 0xf2933435, 0x9305cf14, + 0x05d103f6, 0xcf72f093, 0xdfec0305, 0x04152415, 0x64c52405, 0x9464c590, + 0xece30405, 0x7f1ce37f, 0x1c031419, 0xf91ec280, 0xcf56f393, 0x27202705, + 0x3205384c, 0xf4c83403, 0xd026fb93, 0x033b0705, 0x2b079fbc, 0xe37f3ce3, + 0xbc237f2c, 0x0334199f, 0x32c2803c, 0x28dc27f9, 0xd006f393, 0x07202705, + 0x2332054d, 0xb83403d1, 0x95fe93f4, 0xc12705d0, 0xf093ec1d, 0x2705cff8, + 0x2a27131c, 0x08003d27, 0xbd054a27, 0x010372be, 0xd02af093, 0x121c2705, + 0x272c2c27, 0x2740003d, 0x035dbe48, 0x3beea701, 0xbec5ffe9, 0xf5f0934c, + 0x1c2705d0, 0x3c2c271e, 0x1c003d27, 0xbdc54a27, 0x033dbe94, 0xe1f09301, + 0x1c2705d0, 0x3d2c271f, 0x20003d27, 0x28be4a27, 0xf0930103, 0x2705d0d0, + 0x2c27201c, 0x003d273e, 0xbe4a2724, 0x93010313, 0x05d0bff0, 0x27211c27, + 0x3d273f2c, 0x4a272800, 0x0102febe, 0xeb5f3ea7, 0x273d05fd, 0x0400004f, + 0xc5341503, 0x6dc5786d, 0x8c6dc57c, 0x6d456d75, 0x6d656d55, 0xf19b1027, + 0x0538030e, 0x004f273d, 0x15040400, 0x0ef19b34, 0xe56f2ea7, 0x1f4c27fd, + 0x2d152405, 0x00000f27, 0x2035a000, 0xe55f3ea7, 0x054103fd, 0xa73d1534, + 0xfdeb4f2e, 0x2d053035, 0x00004f27, 0x24151042, 0x270ef19b, 0xff4ea720, + 0x42adfeff, 0x3ea71cd6, 0x19fee3ff, 0x7f4ea732, 0x4219fee3, 0xe3cf3ea7, + 0x274027fe, 0x649d260c, 0x8063c566, 0x40072027, 0x01233205, 0xf4b83403, + 0xffff3ea7, 0xad2027fe, 0x271cde32, 0x1434bd40, 0xd832ad02, 0xcf4ea71c, + 0x1ea7fee3, 0x55fee2e7, 0x2c30d541, 0x2b4ea71c, 0x32adfefa, 0x2ea71cda, + 0xc5ffffff, 0x24d18464, 0x4fe60e5c, 0x3ea70156, 0x11fd6fff, 0x104ca334, + 0xf0933415, 0xbe05cf20, 0xc10488ce, 0x6ec18460, 0x39019980, 0x40272027, + 0x6dc13127, 0x09e39d88, 0x9d08e49d, 0xe20d0ce2, 0x1613e24d, 0x02bc02a9, + 0xed6dd13b, 0xa712e28d, 0xfee2e73e, 0x0489e355, 0x39039912, 0x14874123, + 0x036302b9, 0x012834f0, 0x23140489, 0x9d4d2b34, 0x433b0be3, 0x42074202, + 0x3407435b, 0x21232107, 0x41234307, 0x230b0387, 0xe22d032b, 0x030ae49d, + 0xe8140701, 0x07011041, 0x07212323, 0x9d42a73e, 0x31030d34, 0x1e0bf2b0, + 0xc10d109d, 0x62298463, 0x41233439, 0x070f4c83, 0x33353334, 0x23430b43, + 0xfffef44e, 0xea7864c5, 0x9300acd2, 0x05ce6ff0, 0x04b1e8be, 0x67995127, + 0x5061c166, 0xc13869c1, 0x6ec15c64, 0x0bd70744, 0x4c60c119, 0xc13468c1, + 0x6ac15462, 0x5863c13c, 0x87406bc1, 0x0bd533c7, 0x15dc2b4e, 0x486199f1, + 0x3b0b2a0b, 0xf445080b, 0xf3354d07, 0xf005f225, 0x2314f19d, 0xfee93c4e, + 0x36272f07, 0x24032101, 0x44034105, 0x6299f3a8, 0xff1ea70b, 0xd2fdfeff, + 0xff0116dc, 0x16ddd5fd, 0x4707ff01, 0x021413b9, 0x43834103, 0x0366649d, + 0x1413bd31, 0xff2ea702, 0x24d1ffff, 0x4ff60e5c, 0x1ea7feae, 0x11fd6fff, + 0x104ce314, 0xab5e1415, 0x7156befe, 0x931d0704, 0x05cdc3f0, 0x048013be, + 0x0da34007, 0x44ccfa00, 0x5e5027e9, 0x4427ff4a, 0xe49d432b, 0x1403890b, + 0x3d2b243b, 0xfede32e2, 0xd95e3207, 0x5e1027fe, 0xfd4efefe, 0xf493f4a3, + 0x1b017b74, 0xff3ea7f4, 0x4d27fd5f, 0xfd938202, 0x2505d810, 0x032d0734, + 0x341597dc, 0x2ce33d07, 0x7f3ce37f, 0x1997dc23, 0x802c0324, 0x27f923c2, + 0xf39326ec, 0x2705d7ec, 0x054e0720, 0x03e12332, 0xa7f4b834, 0xfdeb372e, + 0x4f272e05, 0x10820000, 0xf1932415, 0xa705d7c4, 0xfee2db3e, 0x1e15d355, + 0x40271e05, 0xab0ef49b, 0xeb2127f3, 0xff4ea7f2, 0x4ec5fddf, 0xc84ec5c4, + 0x20003d27, 0xd5cc43c5, 0xa7015c42, 0xfeffff3e, 0x1cd03ed5, 0xffff4ea7, + 0x274e35e7, 0xe0d4bd40, 0x07302704, 0x81f0934f, 0xd38d05d7, 0x00deadd2, + 0x08d4d501, 0xd8ded501, 0xdcded504, 0x3cded504, 0xd4de8d05, 0x8dd6de8d, + 0xde8dd8de, 0xf8de8dda, 0x8dfade8d, 0x11befcde, 0xf4830536, 0x0000fd8e, + 0x8226f493, 0xc0400105, 0x02084a0f, 0x41270f00, 0x0a230f00, 0x40270002, + 0xfe0b0407, 0xfe0b0127, 0xd007fb4e, 0x08c6db3e, 0xe3172ea7, 0x082499fe, + 0x93524dce, 0x0649bff1, 0x4fff4ea7, 0x9d4311fd, 0x1199082d, 0x9d230544, + 0xfb8e0921, 0x81e2f493, 0x29406905, 0x0beea742, 0x4309fee3, 0x0b08e199, + 0x21032b02, 0xce4b494c, 0x4ea72b1d, 0x11fd4fff, 0x0b3ea742, 0x3205fee3, + 0x9d083d9d, 0x304d093c, 0xfb8e3b6d, 0x496ef193, 0x09239906, 0xce4414c1, + 0xfb8ea743, 0xce09e499, 0xe449d1c4, 0x69cc40ce, 0xc7b4cee4, 0x3ea7dd1e, + 0x99feffff, 0x1ea70934, 0x83ffffff, 0x87410343, 0x5012d134, 0x2b443306, + 0x4843f143, 0x56ff0000, 0x5c14d12a, 0xc2012706, 0xf1ab2834, 0x23873127, + 0x31c038a6, 0x3034f921, 0x03ff011d, 0xf1478631, 0x02300024, 0x1244d8ff, + 0x83e435d0, 0x0bf1eb01, 0x1e0027fe, 0x1e3103d6, 0xeb0027d6, 0x4efe0bf1, + 0x35f093fa, 0x1cbe0148, 0xf0930113, 0xbe014835, 0xa7011313, 0xfff9f34e, + 0xf0934249, 0x0701484a, 0x0cac33a2, 0x070c1c27, 0x12f9be3a, 0xedbea701, + 0xdc27fff9, 0x07b2090d, 0x3bc2071d, 0x27f093cd, 0x3c070148, 0xdcbeb203, + 0xac0b0112, 0xbfc4d103, 0xff000630, 0xf3cea7e1, 0xc189fff9, 0x2cf09332, + 0xc0be0148, 0xc1a10112, 0x2107c3b1, 0xf0934a07, 0x2b014833, 0x9efa0e2a, + 0x4e0112ab, 0x1c88befe, 0xff3ea701, 0x3411feff, 0x4850f093, 0xf1448701, + 0x00156841, 0x128dbeff, 0x5efe0e01, 0xfe4eff63, 0xebef2ea7, 0x053027fd, + 0x004e2723, 0x24150400, 0xf39be107, 0xff3ea70e, 0x3411fdef, 0x33240c03, + 0x4c53184c, 0x24ec031d, 0x071244c4, 0xe8432723, 0x332311f4, 0x3c53183c, + 0xf234c01d, 0xe7ff3ea7, 0x273005fd, 0x150cd81d, 0x35202731, 0xef4ea732, + 0x4e05fde7, 0x3ea74115, 0x35fdefff, 0x33345142, 0x4c53184c, 0x1244c41d, + 0x43272307, 0x2351f4e8, 0x53183c33, 0x34c01d3c, 0xbf4ea7f2, 0x0d03fde7, + 0x40050cd8, 0x0cd82d27, 0x30274215, 0xe20b4335, 0xe7af4ea7, 0x154e05fd, + 0x8e433542, 0xa1f493fe, 0x40010647, 0xffff1ea7, 0xff545eff, 0xdea7fc4e, + 0x27ffffff, 0xd1102702, 0xbe0650dc, 0xb9018d70, 0x270e58d4, 0x27c48631, + 0x8b415330, 0x8b41c330, 0x2744c643, 0xa7fc8e01, 0xfd4fff4e, 0x00274201, + 0xf49b4027, 0x9911270e, 0x123b0ed3, 0x3ea713cb, 0x38fd4fbf, 0x05412711, + 0x03115334, 0x8e12d634, 0x31f193fc, 0x13010691, 0x937f0c03, 0x069123f4, + 0x0b7f0ce3, 0x05420103, 0x0b030710, 0x4efe0b02, 0xff3ea7fe, 0x4027ffff, + 0xbd0d3299, 0x10066a34, 0x87202724, 0xa041f142, 0x27000192, 0x14839e01, + 0xa7fd4e01, 0xfd4fff3e, 0x07683dc1, 0x0f4de34d, 0x004fc4f0, 0x67566301, + 0xf87434c1, 0x0100004e, 0x34c1008c, 0xc1483c70, 0x4f5c7434, 0x08000000, + 0xf1930427, 0x9e0147ab, 0xa7011449, 0xd07fff2e, 0x24a121a1, 0x830c4c53, + 0x4cc00f4c, 0x24a10f0f, 0x285322a1, 0xd40f2c83, 0xfd8e0923, 0x23a124a1, + 0x1d83fd8e, 0xf0930fff, 0x27014796, 0xbe422732, 0x270110d3, 0xc0f19304, + 0x069e0147, 0xf0930114, 0xbe014694, 0x930110bf, 0x0146b6f0, 0x71021f27, + 0xb0be5663, 0x1d070110, 0x46cbf093, 0x10a5be01, 0x93042701, 0x0146e6f1, + 0x0113d89e, 0xf1930427, 0x9e01470c, 0x4e0113cd, 0x93f523fa, 0x0147bbf0, + 0x011082be, 0x47cbf093, 0x1079be01, 0xc2fb9301, 0xdea70647, 0x27fffc72, + 0x030d1ea0, 0x10bc03a1, 0xc014dc03, 0x076210ac, 0x01e123ed, 0x00ced8ec, + 0x59e90300, 0x23b319b0, 0x03b419b1, 0x08b299b1, 0x0509b199, 0x01f115f2, + 0x53be39e2, 0x2183122c, 0xd119f225, 0x3510cc53, 0x07d2c1f1, 0x0e3bf055, + 0xf065f245, 0x070bdec1, 0x831a072c, 0xabf09323, 0xc0270147, 0xfe75a103, + 0xbc03fc85, 0x1005be10, 0x14dc0301, 0xa010acc4, 0x47c8f093, 0x0ff5be01, + 0xffcea701, 0xc1b9ffff, 0xc2c10100, 0xc7f093fc, 0xe0be0147, 0xf093010f, + 0xbe0147d4, 0xc1010fd7, 0xcab9fcc1, 0xa10b0100, 0x00caa1e2, 0xa95ed107, + 0x7c21f900, 0xe6ff0000, 0x07009a1f, 0x2b453343, 0x87432b42, 0xf9e40be4, + 0x00007f23, 0xf9e333ff, 0x00008322, 0x64ef03ff, 0x99000678, 0xf21507e4, + 0xe399f305, 0x25210705, 0x38e3c1f3, 0xe199f335, 0x45300790, 0x91e099f1, + 0xf0551d07, 0x9392ec99, 0x0147a9f0, 0xeb99fc65, 0x99fb7593, 0xfc8594ec, + 0x9595eb99, 0x96ec99fb, 0xeb99fca5, 0x99fbb597, 0xfcc598ec, 0x99eb9930, + 0x9934fbc5, 0xfcc59aec, 0x9beb9938, 0x993cfbc5, 0xfcc59cec, 0x9deb9940, + 0x9944fbc5, 0xfcc59eec, 0x9feb9948, 0xbe4cfbc5, 0x03010f23, 0x1dadced1, + 0x3c833d07, 0x3323070f, 0x7e20f923, 0xe6ff0000, 0xf9ff480f, 0x00007c21, + 0xff495eff, 0xfa8ef503, 0xfc93fc4e, 0xc1068eac, 0xc1c160ce, 0x58c2c154, + 0x8964c389, 0xf06366c4, 0xf093fe05, 0xbe014783, 0x93010edb, 0x0147c5f0, + 0x010ed2be, 0xc311c219, 0x47d8f093, 0xbe102701, 0x03010ec3, 0xd1270ccc, + 0xc311c219, 0xf0931d07, 0x030147c2, 0x0eadbed1, 0x0ccc0301, 0x93ead7c4, + 0x0147c4f0, 0xfc0ef043, 0x010e9a9e, 0xf093fe4e, 0xbe0147d4, 0xbe010e8f, + 0x7e011a9f, 0xf87efbdf, 0x1efe0efd, 0x99fb4e84, 0xd1271004, 0x03c14153, + 0x07b10738, 0xabd43bc2, 0x6bbf6bd3, 0x271027cf, 0x4127112c, 0x4d8b413b, + 0x4d861103, 0x07900499, 0x03e433e4, 0x066834ef, 0xff4cc000, 0x84e3b915, + 0x85e4b901, 0x2b3b2b01, 0x85e4bd4c, 0x84e3bd01, 0x91049901, 0xe433e407, + 0x6834ef03, 0x4cc00006, 0xe3b915ff, 0xe4b90184, 0x3b2b0185, 0xe4bd4c2b, + 0xe3bd0185, 0x02030184, 0x8ea8f2f0, 0x07fc4efb, 0x0fdc83d0, 0x0ea7cd07, + 0x33ffffdf, 0x12a3bec3, 0x7cc3f901, 0xdcff0000, 0x0725103c, 0x2b05330d, + 0x870d2b0c, 0xa3040b40, 0x0333103c, 0x007cc3fd, 0x0f03ff00, 0x00067864, + 0x20271127, 0xa7ff487e, 0xffffdf0e, 0x011249be, 0xffff4ea7, 0x0e4199ff, + 0xf99d0ea7, 0x9efc0eff, 0x930115dc, 0x068df3f4, 0x0b544089, 0xedf493fe, + 0x40590642, 0xfb4efe0b, 0xd007c107, 0xf463b207, 0x10270227, 0x2dbebf6b, + 0xc5d60189, 0x4b8b4007, 0x01164ff6, 0xfb8ef443, 0x93fac2c4, 0x063c03f1, + 0xf3932107, 0x0301e346, 0x9305931d, 0x06431ff4, 0x31074305, 0xe37f2ce3, + 0x1d237f3c, 0x24190593, 0xc2802c03, 0xf393f923, 0x27063bd8, 0x654d2720, + 0x03320501, 0x27f4c834, 0x604d2731, 0x5b13bd02, 0x88148d01, 0x014d13bd, + 0x014e13bd, 0x3f072027, 0x05114c27, 0xc8340332, 0x273227f4, 0x29f49d45, + 0x9d05f39d, 0xf39d07f3, 0x1df29306, 0x3f07063d, 0x01114c27, 0x05340330, + 0xa8240320, 0xc44d27f4, 0x603c2701, 0x03b814d5, 0x035813d5, 0xf39320a7, + 0x27063f30, 0x03320548, 0x93f4c834, 0x063f43f3, 0x482720a7, 0x34033205, + 0xfc93f4c8, 0x93064288, 0x00bdf2f4, 0x3bd2f393, 0x07140506, 0xc5b1270c, + 0x86be50c3, 0xcb9d01e1, 0xe166be05, 0x9d402701, 0xc49d0dcb, 0x1d422704, + 0xff3ea7d4, 0x3201fd4f, 0xf49b4027, 0xff3ea70e, 0x3499ffff, 0x3b31270e, + 0xa734cb32, 0xfd4fbf2e, 0x41273138, 0x31532405, 0x32d62403, 0xfb8ef443, + 0x422afc93, 0x05c49906, 0x20274736, 0x3ea7d21d, 0x27ffffff, 0xadf44340, + 0xbd187e34, 0x8e187c32, 0xf8167efb, 0x0c070706, 0x01e118be, 0xc605c499, + 0xf5bed94f, 0xc1be01e0, 0xcf1e0187, 0x01e100be, 0x0187b7be, 0x0f6be11e, + 0x34333007, 0x302b0087, 0xb2203f03, 0x34190006, 0x270941c4, 0x1d012742, + 0x27fe0b34, 0x0bfe0b00, 0x07fc4efe, 0x76fcabd0, 0xff3ea7cb, 0x34c1ffff, + 0x154dc2fc, 0x663fdc27, 0xdf0ea7c5, 0x67beffff, 0xfceb0110, 0xfc8e0d07, + 0x010033b9, 0x34d24d1b, 0x0fdc830e, 0xddf9d333, 0xff00007c, 0xd027da1e, + 0x0ea7d61e, 0xbeffffdf, 0x1e011061, 0xff4ea7bd, 0x41b9ffff, 0x40c10100, + 0x071926fc, 0x0f3c8330, 0x34f93333, 0xff00007e, 0x21074756, 0x01034027, + 0x007c34fd, 0x3007ff00, 0x330f3c83, 0xf0112333, 0x4ea70ff2, 0xbdffffff, + 0xc5010041, 0xfe0bfc40, 0x007e34f9, 0x4fc6ff00, 0xff4ea7d4, 0x41bdffff, + 0x40c50100, 0xabfe0bfc, 0x05f1932f, 0x2c03068b, 0x6414890f, 0x3fab2473, + 0x0127242e, 0x4307fe0b, 0x890f4c03, 0x44736613, 0x340e0027, 0xfe0b0127, + 0xfd93fd4e, 0xc1068adc, 0x088660d0, 0x010e0bbe, 0x2c274027, 0x60d4c515, + 0x10273d07, 0x31054207, 0x34032123, 0x4027f4b8, 0x8d66d28d, 0xfd8e64d4, + 0x404af493, 0x64409906, 0xfe0b0f4b, 0xf9f34ea7, 0xa74149ff, 0xfff9ed0e, + 0x270c1c33, 0x3c270d2c, 0x0304090f, 0x0b423b02, 0x98210314, 0xf34ea7f3, + 0x40a1fff9, 0xfe0b012b, 0x4012f493, 0x14409906, 0x2107fe0b, 0x5c9e04c6, + 0x4ea7010e, 0xc1fd4fff, 0x30c87443, 0x281e270e, 0x02070e36, 0x1b9e2027, + 0x1e27010f, 0x1e0e5648, 0x07fd4ef2, 0x271007d0, 0xf093502c, 0xbe0642d4, + 0x0601026a, 0x930d0708, 0x0642c7f3, 0x01144c27, 0x05040302, 0xa8340332, + 0x933127f4, 0x06402ff4, 0x8e0a439d, 0xadf493fd, 0x4099063f, 0x93fe0b54, + 0x063fa3f4, 0x0b5040c1, 0x99f493fe, 0x40c1063f, 0x93fe0b4c, 0x068a8bf4, + 0x02b443d1, 0xffff3f04, 0x01fdffff, 0x0006b2d1, 0xfe0b0027, 0x3f76f493, + 0x0b402106, 0x6df493fe, 0x4011063f, 0xf493fe0b, 0x99063f64, 0xfe0b4440, + 0xa007f94e, 0xac23c107, 0x0b114714, 0x0713091a, 0x240999d0, 0x0c073e66, + 0x4c234007, 0x01493b0c, 0x873123d2, 0x87e20be4, 0x0d4e0b43, 0xc24b0113, + 0x4427320c, 0x2047493b, 0x1e073007, 0xd4072223, 0x3123e007, 0x2a0b142b, + 0xec2bd013, 0x23413cca, 0x3b412701, 0x274b0b40, 0x05230d31, 0x0b222314, + 0x07fe581d, 0x07f98e0b, 0x4741034c, 0x1cec2724, 0x2a0b0c07, 0x4cd4ec2b, + 0x12071a1d, 0x22030103, 0x2707fef0, 0x8e0b07b0, 0xe61309f9, 0x278a1e31, + 0x27bd1ee1, 0x30e41ee1, 0xd3f09302, 0xfe0b0142, 0x3f32f393, 0x9d402706, + 0x00275d30, 0x0b6034c5, 0x930230fe, 0x0142dff0, 0xf393fe0b, 0x27063ea0, + 0xc6341d40, 0x1d412704, 0x0b002734, 0xff4ea7fe, 0x40d5ffff, 0x08860e5c, + 0xafff1ea7, 0xa71341fd, 0xfd9fff2e, 0x1305300b, 0x00272421, 0x25104ce3, + 0xa3231124, 0x2315103c, 0x3ea7fe0b, 0x11fd9fff, 0xe3002734, 0x3415104c, + 0xf493fe0b, 0xc5063ec8, 0x07536840, 0x4ea70183, 0x9dffffff, 0x00274540, + 0x4007fe0b, 0x42d04123, 0x1104c014, 0x400e08c0, 0x0c20100c, 0x82f09320, + 0xfe0b0142, 0x3e96f393, 0x56349906, 0x4536408b, 0x4293f093, 0x9dfe0b01, + 0x00275430, 0x3ea7fe0b, 0xc1fff9f3, 0x040e3434, 0x273430c5, 0x30fe0b00, + 0x9af09302, 0xfe0b0142, 0x7fff4ea7, 0x3c4391d0, 0xf093103c, 0x0b0142b7, + 0xd9f393fe, 0x4027063d, 0xe614349d, 0x9d412704, 0x00271434, 0x0469fe0b, + 0x42ce0249, 0x1928c030, 0xf0932a20, 0x0b014300, 0xff4ea7fe, 0x43c1fd4f, + 0x003fd874, 0xeb010000, 0x3da2f393, 0x27412706, 0x17329d00, 0x9d15349d, + 0xfe0b1632, 0x42a5f093, 0x20fe0b01, 0xfff09301, 0xfe0b0142, 0x3d7ef393, + 0x19309d06, 0x00274127, 0x0b18349d, 0x0b0127fe, 0x000e10fe, 0x0d270100, + 0xf493ffff, 0x15063d60, 0x0b002740, 0x930230fe, 0x014301f0, 0xf493fe0b, + 0x3d063d4c, 0x0b002740, 0x210211fe, 0xa32c5403, 0x0f4d3cd0, 0x4335f093, + 0x93fe0b01, 0x014307f0, 0xf493fe0b, 0x27063d28, 0x35434500, 0x3cfe0b42, + 0x930e000d, 0x01433df0, 0x0d3cfe0b, 0xf09340c8, 0x0b01435b, 0x0b0027fe, + 0x930430fe, 0x014377f0, 0xf393fe0b, 0x27063cf8, 0x1b309d41, 0x349d0027, + 0x93fe0b1a, 0x063ce7f4, 0x0b2e4099, 0xddf493fe, 0x4099063c, 0x93fe0b32, + 0x063cd3f4, 0x0b5c4089, 0xc9f493fe, 0x4089063c, 0x93fe0b5a, 0x063cbff4, + 0x0b5e4089, 0xb5f493fe, 0x4089063c, 0x30fe0b56, 0x46f09302, 0xfe0b0143, + 0x04963127, 0x4ea73027, 0x27ffffff, 0x6443bd00, 0x93fe0b15, 0x06878bf3, + 0x4e523489, 0x9d412704, 0x308d6934, 0x0b002752, 0x75f393fe, 0x34890687, + 0x27044e50, 0x69349d41, 0x2750308d, 0x93fe0b00, 0x06875ff3, 0x4e543489, + 0x9d412704, 0x308d6934, 0x0b002754, 0x49f493fe, 0x40890687, 0x4efe0b52, + 0x3e4c27fd, 0xd007407b, 0xc01a41d8, 0x05c04904, 0x3101c065, 0x931703c0, + 0x063c2bf4, 0xe0274d5d, 0xfd8e0e07, 0x42ecfe93, 0x8e0e0701, 0x3eb13efd, + 0x870fabc5, 0xd0010300, 0x0100000e, 0x10fe9315, 0xdd1e0143, 0xc8f9067e, + 0xfe93ce06, 0x1e0142e9, 0xff777ed0, 0xf193c21e, 0x27063bec, 0x93202702, + 0x0686c3f4, 0xe0273127, 0x9d44109d, 0x139d0a42, 0x1e105d65, 0xcdf493ac, + 0x3127063b, 0xe0272227, 0x5d54439d, 0x4e9a1e42, 0xc5f6e3f5, 0x029958f0, + 0x07312724, 0x07323b4f, 0x404c03e0, 0xc554f2c5, 0xf1c54cf3, 0x14ec235c, + 0xf4c52f07, 0x103c2768, 0x24054027, 0xf3b82403, 0x274cf3c1, 0x27312320, + 0x40fec54a, 0x2748f2c5, 0xf3c50d6c, 0x64f4c560, 0x8940f2c1, 0x27891a23, + 0x50f3c518, 0x00b172f0, 0xee4cf4c1, 0xc100aa34, 0x460754f2, 0x3b0d4c23, + 0x58f2c142, 0x23010487, 0x7fe6030b, 0xf4c10100, 0x60f2c150, 0x010324e2, + 0xf2c14607, 0x0c4c2354, 0xf2c1423b, 0x0b612350, 0x27548742, 0x27530b81, + 0x07863b30, 0x076103a2, 0x44f3c510, 0xc7079027, 0x3f070201, 0x465b4207, + 0x870f4c83, 0x013d0bd4, 0x8be80734, 0x854fe6e4, 0x07b40700, 0x07e4d632, + 0x07b20734, 0xce480b43, 0x1205774b, 0x04031403, 0xfcf09103, 0x013f0748, + 0x05454634, 0x03402714, 0xc1340514, 0x340368f2, 0xc1ed32ce, 0x36ce5cf3, + 0x44f4c169, 0x1b40f3c1, 0x18348d47, 0xc11a3a8d, 0xf2c140f4, 0x23420364, + 0x40f4c521, 0x0364f2c5, 0x2d2ff661, 0x48f0c1ff, 0xf58ef6c3, 0xea60f4c1, + 0x07ff7fa4, 0x03370749, 0xca392b41, 0x7ee65874, 0x04030201, 0x14031205, + 0x9a1ef3a8, 0x8f1e3205, 0x0744f2c1, 0x0b53054f, 0x272203d4, 0x03540340, + 0x44f2c5a1, 0x775ed405, 0x50f2c1ff, 0x2a2e4127, 0x1e48f4c5, 0xc540278d, + 0x861e48f4, 0x2750fac1, 0xc5100730, 0x5e5e44f3, 0x50fac1ff, 0x10079027, + 0x1e44f9c5, 0x1e31279f, 0x4efe0ba8, 0x7ec007fc, 0x4127f925, 0x40270c0e, + 0xfc8e0407, 0xc007fc4e, 0xffffcf03, 0xcf8303ff, 0xfc000000, 0x20271c07, + 0xbe163c27, 0xa701088b, 0xfff9f34e, 0x4cc53027, 0x3c43c540, 0x8e3840c5, + 0x07fa4efc, 0x14dc23d0, 0xcd0bc247, 0x9914dc03, 0xc00924de, 0x4e3b4127, + 0xb30bb007, 0xa3074223, 0xb432d301, 0xfa8e0127, 0x3b0c2c23, 0x87020b2e, + 0x87030b00, 0xfc6dbe2a, 0x27412700, 0x9dcb0d00, 0xfa8e31d4, 0x0399f74e, + 0x3b412724, 0x07f06343, 0x070b0184, 0x07f10570, 0x878333d1, 0x27c00794, + 0x07c249a0, 0x871b070d, 0xbea10322, 0x0b00fc37, 0x03d80bb9, 0x10acc4c2, + 0x247499e9, 0xd4077c01, 0x749d4103, 0x03f40124, 0x077405d6, 0x071f0707, + 0x0531272d, 0xff6b7efc, 0x73b10596, 0x4d3b4127, 0x73b5340b, 0xf78ef043, + 0xfd4efe0b, 0xffff4ea7, 0x6443b9ff, 0x6bd00715, 0x933776df, 0x055d47f4, + 0x07d43d27, 0x04072427, 0x42154305, 0xfd0e4d25, 0x00ff719e, 0x4044f093, + 0x03c1be01, 0x4edd1e01, 0x81f693f5, 0x6ad10639, 0xf06302d8, 0xd007ab71, + 0x0027b45c, 0xf58ef043, 0x0724ac89, 0x7e0c071b, 0xf593fb7d, 0x990638e8, + 0xf0051554, 0x99704fc6, 0x58991657, 0x23782317, 0x10bcd888, 0x22a9895a, + 0x8920ab89, 0xb42e20d4, 0xce22d489, 0xfc937d49, 0xc1055934, 0xdb8d6864, + 0x9d448320, 0xf40148d4, 0x9d22d98d, 0xd79d4cd4, 0x4bd89d4a, 0x9df5b07e, + 0xcc794ed0, 0x9d22d489, 0x539949dc, 0x1401271a, 0x2702d04d, 0x06004700, + 0x43012735, 0x7ef58ef0, 0x0127fb79, 0xa989f61e, 0x22ab8920, 0xcdc0a61e, + 0xd4120321, 0x670322cd, 0x0182cd20, 0x0281cd00, 0x0121cd44, 0x4fff4ea7, + 0x7443c1fd, 0x00003fdc, 0x27630100, 0x5e802770, 0x6499ff71, 0x48d39968, + 0x43ee4483, 0xd499ff7a, 0xeef3014c, 0x99ff7143, 0x74ee4ad4, 0xd499ff6a, + 0x6384ee4b, 0x4edc99ff, 0xeef52c7e, 0x93ff59c0, 0x05588bfc, 0x4fe6c439, + 0xd399ff12, 0xeec47949, 0x5eff4a43, 0xcdc0ff06, 0xd0a21121, 0xac1121cd, + 0x7fdfcd03, 0x4fab4c07, 0x1ea142d4, 0x27722790, 0xff0f5e82, 0x1f6bfe4e, + 0x16260f6b, 0xffff3ea7, 0xa434d1ff, 0xd5410316, 0x8616a434, 0xff4ea707, + 0x40d1ffff, 0x1c2716a4, 0xbe012312, 0x27013623, 0xb004fd44, 0x27ff0016, + 0x93fe8e00, 0x0682a3f4, 0x0b504089, 0x1000d1fe, 0x190c5301, 0xfe0b0183, + 0x04c4fe4e, 0x07111122, 0xd4412341, 0x0000004f, 0x24d12010, 0x21d50110, + 0x4fa3010c, 0x80000000, 0x011024d5, 0x0627fe8e, 0x3eaef193, 0x05539e01, + 0xcbf19301, 0x4a9e013e, 0xf94e0105, 0xb207c107, 0x730c0cc4, 0x02071d01, + 0x19211a11, 0x0a76a83e, 0xd4c0da66, 0x234a073d, 0xd403e84d, 0x9ac6194f, + 0xc301603b, 0x0110b4d1, 0x11ecb3c5, 0x004fa3c3, 0xc5100000, 0xcc21f0b3, + 0x0110b4d5, 0x8ef4bcc5, 0xc6d956f9, 0x0427ddaf, 0x3f0af193, 0x04f39e01, + 0x23490701, 0x1403e84d, 0x9ac6194f, 0xb6a9c23b, 0xf1930427, 0x9e013f2b, + 0x270104d9, 0x9bf19306, 0xce9e013e, 0x06270104, 0x3e68f193, 0x04c39e01, + 0x93042701, 0x013f34f1, 0x0104b89e, 0x04c4fe4e, 0xc811111a, 0x24d12011, + 0x21d50110, 0x4fa30108, 0x40000000, 0x011024d5, 0x0627fe8e, 0x3f35f193, + 0x048f9e01, 0x93062701, 0x013f66f1, 0x0104849e, 0x0cc4fe4e, 0xf493220c, + 0xc1063704, 0x38964443, 0x56faf493, 0x1d312705, 0x15130143, 0x25131143, + 0x35112143, 0x27fe8e41, 0x5ef19306, 0x529e013f, 0x06270104, 0x3f7ff193, + 0x04479e01, 0xc4fe4e01, 0x9324440c, 0x0556c7f2, 0x32074127, 0x3c03243d, + 0x114c2710, 0x14031001, 0x34033005, 0x2479f4a8, 0x247d4103, 0x0627fe8e, + 0x3f8cf193, 0x04139e01, 0x07fe4e01, 0xf40cc420, 0x91f39315, 0x03070556, + 0x345d4127, 0xbe540c03, 0x8e00f8c3, 0x930627fe, 0x013f96f1, 0x0103ec9e, + 0xd007fd4e, 0x76f2fe7e, 0x10d4d108, 0xa3202701, 0x0000004f, 0x10d4d504, + 0x93302701, 0x063657f4, 0x064842d5, 0x064c43d5, 0x0627fd8e, 0x3f94f193, + 0x03b79e01, 0x07fc4e01, 0xc4d207c1, 0xc47e2904, 0xd10a16f2, 0x010114d4, + 0x104ca3cc, 0x0114d4d5, 0xf4932027, 0x27063620, 0xd0dcc530, 0x064842d5, + 0x064c43d5, 0x0627fc8e, 0x3f8cf193, 0x037b9e01, 0x93062701, 0x013fb0f1, + 0x0103709e, 0xc107fc4e, 0x04c4d207, 0xf27d7e18, 0xd4d107f6, 0xcc010114, + 0xc5204ca3, 0xd4d5d4dc, 0xfc8e0114, 0xf1930627, 0x9e013f56, 0x27010345, + 0x7af19306, 0x3a9e013f, 0xfe4e0103, 0x0f140cc4, 0x41271131, 0x015024bd, + 0x014821d5, 0x0627fe8e, 0x3f9bf193, 0x031b9e01, 0x07fe4e01, 0x540207e0, + 0x930627e4, 0x013fb0f1, 0x0103089e, 0x42071219, 0x44333287, 0x4403432b, + 0xd4e7e4ca, 0xd14a112c, 0x38011003, 0x0000003f, 0xc0041901, 0x2745ff4c, + 0x27249641, 0x184c3340, 0xffff3f83, 0x34abfeff, 0x011003d5, 0x031d1319, + 0x13391419, 0x1904049d, 0x05039d14, 0xfe8e4496, 0x44332487, 0x0803241b, + 0xfe0e1403, 0x00f7769e, 0xf1930627, 0x9e013f6f, 0x270102a1, 0x9df19306, + 0x969e013f, 0xfe4e0102, 0x06270454, 0x3fe0f193, 0x02879e01, 0x07131901, + 0x03433343, 0xeb04ca44, 0x864133d4, 0x07e30738, 0x49036901, 0x27434204, + 0x2df19306, 0x629e0140, 0x03890102, 0x0804890a, 0x03ed34ca, 0xd1fe0808, + 0x07011024, 0x004fa302, 0xd5080000, 0x03011024, 0x2c27d80c, 0xf705be14, + 0x27fe8e00, 0xb7f19306, 0x2e9e013f, 0xfe4e0102, 0x141904e6, 0x27ff4c40, + 0x19f19306, 0x1a9e0140, 0x08d00102, 0x1020d1f3, 0x000fd801, 0x13010000, + 0x46062419, 0x27114c54, 0x38f19306, 0xfa9e0140, 0x40a70101, 0x1319241d, + 0x25ff3cc4, 0x00000fa3, 0x20d50100, 0x14990110, 0x04249d04, 0x9d051499, + 0x14990524, 0x06249d06, 0x9d071199, 0xfe8e0721, 0xf1930627, 0x9e014062, + 0x4e0101c1, 0x07e107fd, 0x20ecd010, 0x8604414c, 0x6604514e, 0x1a04894f, + 0x895f4fc6, 0x41401804, 0xf1930627, 0x9e014188, 0xb9010199, 0xb6013824, + 0x0741274e, 0x3824bd32, 0x183d0301, 0x27400701, 0x034d0108, 0x033d0544, + 0x07f0a834, 0x200c230e, 0x0e201c03, 0xff405efd, 0xf1930627, 0x9e014047, + 0x27010161, 0x6ff19306, 0x569e0140, 0x06270101, 0x4090f193, 0x014b9e01, + 0x93062701, 0x0140aef1, 0x0101409e, 0xf1930627, 0x9e0140cc, 0x4e010135, + 0x03e007fd, 0x0d0354ec, 0x200701a7, 0x2ce33e07, 0xa70d237f, 0x7f3ce301, + 0x3c033419, 0xf932c280, 0x41073e07, 0x01552c27, 0x0544034e, 0xa834033e, + 0x6703b9f2, 0xe6318301, 0x101ed13a, 0x1414d101, 0x832e0701, 0xffffff2f, + 0x3f4ce303, 0x14d53027, 0x13bd0114, 0x12d50150, 0x2f380110, 0x01000000, + 0x4cc01419, 0x402713ff, 0x013814bd, 0x4027fd8e, 0x9d54049d, 0xc21e5803, + 0x89220289, 0x04712003, 0x031f2c03, 0x0d991f3c, 0x73257358, 0x59009935, + 0x21104cd8, 0x41034d07, 0x072d43ce, 0xce410340, 0xef831b42, 0x02ffffff, + 0x1ed54027, 0x14bd0110, 0xfd8e0138, 0x23074207, 0xd91e3407, 0xf1930627, + 0x9e0140f6, 0x2701006d, 0x90f19306, 0x629e0140, 0xfe0b0100, 0xc107fc4e, + 0x08c4d207, 0x7e02076c, 0x0fd6fac5, 0xc8c0116f, 0x0ccc5b00, 0xe33e1c34, + 0x1cc0c101, 0x1cc01f0d, 0x1cc02b0e, 0x0627370c, 0x4181f193, 0x002b9e01, + 0x330c2701, 0xc101c53e, 0xe30d1cc4, 0x0114d4d1, 0x0111d0bd, 0xd4d542a3, + 0xfc8e0114, 0x0114d4d1, 0x0112d0bd, 0xd4d544a3, 0xfc8e0114, 0x0114d4d1, + 0x0110d0bd, 0xd4d541a3, 0xfc8e0114, 0xa71e0027, 0xf1930627, 0x9e0140c6, + 0x2700ffe1, 0xe6f19306, 0xd69e0140, 0xfc4e00ff, 0xc207d107, 0x074e08c4, + 0xfa3b7e02, 0xd0010e76, 0xcc3e00c8, 0x112e340c, 0x31d0c8dd, 0x2034dccc, + 0x7e48d0ca, 0xc0d5ff4e, 0x0d070100, 0xd1ff457e, 0xd50114c4, 0xa30104c0, + 0x14c4d548, 0x27fc8e01, 0xdd1e33dc, 0x0c27dd11, 0xd1d0cc33, 0xd11ed027, + 0xc41e0027, 0xf1930627, 0x9e0140ea, 0x2700ff75, 0x11f19306, 0x6a9e0141, + 0x042700ff, 0x4157f193, 0xff5f9e01, 0x07fc4e00, 0xc4c207d1, 0x02075008, + 0xb6f9c47e, 0xc8d0010e, 0x0ccc4000, 0xdd113034, 0xcc33d0c8, 0xca2234dc, + 0xd77e4ad0, 0xf8c0c5fe, 0xcf7e0d07, 0x10c4d1fe, 0xfcc0c501, 0x00004fa3, + 0xc4d52000, 0xfc8e0110, 0x1e33dc27, 0x27dd11db, 0xd0cc330c, 0x1ed027cf, + 0x1e0027cf, 0x930627c2, 0x014130f1, 0x00fefc9e, 0xf1930627, 0x9e014098, + 0x2700fef1, 0x48f19304, 0xe69e0141, 0xfe4e00fe, 0x114c08c4, 0x5242d414, + 0x3dc01301, 0xd127fffe, 0xa3011024, 0x0000004f, 0x1024d502, 0x2b30c801, + 0x3ccc4307, 0x11110b34, 0xc5c824c5, 0xfe8ecc21, 0x1e334c27, 0x1024d1f2, + 0xff4f8301, 0xd5fdffff, 0x11011024, 0xcc21c511, 0x4027fe8e, 0x0627d91e, + 0x4125f193, 0xfe8b9e01, 0x93062700, 0x01413bf1, 0x00fe809e, 0x3007fe4e, + 0x00ec14f0, 0x01070401, 0x4ce00423, 0xd0008112, 0xe023134c, 0x00a1194c, + 0x321a4cd4, 0xb1154ce0, 0x174ce000, 0x4cc000a5, 0x06275c14, 0x4158f193, + 0xfe479e01, 0x674ac000, 0xc02d4bd4, 0x49c07143, 0xe742c467, 0x14031307, + 0x4b5efe0e, 0x1b4cc0ff, 0x1b4cd070, 0x1c4ce028, 0x4cc4008d, 0x1307cd1d, + 0xfe0e1403, 0xc0fadd5e, 0xd02b0f4c, 0xc46b104c, 0x07b8104c, 0x0e140313, + 0xf97e5efe, 0x14031307, 0xe65efe0e, 0x031307f9, 0x5efe0e14, 0x0207fb5a, + 0xfd5efe0e, 0x031307f9, 0x5efe0e14, 0x1307f999, 0xfe0e1403, 0x07f88d5e, + 0x5efe0e13, 0x1307f84c, 0xfe0e1403, 0x07faac5e, 0x0e140313, 0xfde85efe, + 0x14031307, 0xfe5efe0e, 0x0e1307f9, 0xf8f65efe, 0x14031307, 0x465efe0e, + 0x0c4cf0fe, 0x1307ff4e, 0x395efe0e, 0x031307fd, 0x5efe0e14, 0x0627fa20, + 0x4073f193, 0xfd839e01, 0xb80f0300, 0x990006b2, 0x14ce4d04, 0x4d019d0e, + 0xf4933127, 0x9d067a7c, 0x00276943, 0xfc4efe0b, 0x011003d1, 0x30ccd007, + 0x65f2931c, 0x01d1067a, 0x24c1010c, 0x0d14ce60, 0x249d4127, 0x6021c569, + 0x011003d1, 0x00003fd8, 0xc14f1000, 0x31e0ecd3, 0xfc930123, 0xc1067a3c, + 0x344e34c4, 0xc3c54127, 0x69c49d34, 0xc1f0d3c1, 0x344e58c4, 0xc3c54127, + 0x69c49d58, 0xc1f4d3c1, 0x34ee5cc4, 0x030700db, 0x032b0333, 0x1a274127, + 0x9d5cc3c5, 0x76be69c4, 0xc0c5012d, 0x10d3d158, 0x003fd801, 0x1e200000, + 0x79eef393, 0xfcd2c106, 0xc13834c1, 0x24eef8d1, 0x412700ae, 0xc569349d, + 0x31c53832, 0x14d4d13c, 0x2248d801, 0x79caf393, 0x04d2d106, 0x4434c101, + 0x0100d1d1, 0x276b24ce, 0x69349d41, 0xc54432c5, 0x349d4831, 0x10d4d140, + 0x004fd801, 0x17400000, 0x799ef393, 0x08d2d106, 0x6434c101, 0x4127244e, + 0xc569349d, 0xd4d16432, 0x41dc0114, 0xdc423c23, 0xfc8e1344, 0x0111d1b9, + 0xe67e0127, 0x14d4d1fe, 0xef44d801, 0x0112d1b9, 0xfc0e0227, 0xb9fed45e, + 0x270110d1, 0xfecb7e00, 0x0114d4d1, 0x1ed142d8, 0x4834c1d4, 0x279f14ce, + 0x69349d41, 0xc54432c5, 0x349d4831, 0xd18f1e40, 0x5e0110d3, 0x34c1ff3d, + 0x5a14ee3c, 0x9d4127ff, 0x32c56934, 0x3c31c538, 0x93ff4c5e, 0x06791bfc, + 0x2734c4c1, 0xdd43ee32, 0xfee25efe, 0x00fffffc, 0x7007f54e, 0xa107b207, + 0x2fc60481, 0xa7940774, 0xfdefff8e, 0xe7ff5ea7, 0xef6ea7fd, 0x7299fde7, + 0x5b4a072d, 0x3b312742, 0xa1410332, 0x87312372, 0x07420b44, 0x032307ca, + 0x07c38b21, 0x012c2bdb, 0xfdbe3040, 0xf413ffff, 0xc24d01b4, 0xd20709d2, + 0x3327051e, 0x8411f3e8, 0x53184c33, 0x44131d4c, 0x7ef041c8, 0xc00bf37d, + 0x5d155c05, 0x54354027, 0x6d156905, 0xbd2b6435, 0x9d0bb506, 0x9f1ead0b, + 0xefff3ea7, 0xd83411fd, 0x0efc6a4d, 0x43272307, 0x2311f4e8, 0xfc6a3ddc, + 0x654027f6, 0x4ef58e74, 0x110419fc, 0x0324471e, 0x27d28721, 0x310c3943, + 0x00d4f510, 0xf1ff0212, 0x021000d1, 0x33e00bff, 0x1c53181c, 0x3317461d, + 0x0424f124, 0x87ff0218, 0x0032f13c, 0x2bff0216, 0x00e22be4, 0xc4e02b11, + 0x9b0c1ecc, 0x4c53a04f, 0x0c4c8314, 0x4227e42b, 0xd4f50e07, 0xff021200, + 0xf093fc8e, 0x27055af8, 0xad38084d, 0x27028e04, 0x27202745, 0x8c04bd10, + 0x93312702, 0x017f33f4, 0xbd09019d, 0xd5028d03, 0x05029802, 0x08019d04, + 0x029002d5, 0x029402d5, 0x0b2c0c03, 0x51f74efe, 0x0bb30704, 0x07f06332, + 0x07d20770, 0x553402c1, 0xa7de8603, 0xfdefffae, 0xe7ff8ea7, 0xef9ea7fd, + 0x0707fde7, 0x2f071b07, 0x018d26be, 0x4d07f301, 0x4307d302, 0x051ef405, + 0xf3e83327, 0x4c33a411, 0x1d4c5318, 0x41c84413, 0x05f301f0, 0x2783158c, + 0x05843540, 0x35931590, 0x2bf40194, 0x0bd506d4, 0x1eb40bc4, 0xff3ea7be, + 0x3411fdef, 0xfc6a4dd8, 0x2723070e, 0x11f4e843, 0x6a3ddc23, 0xf043f6fc, + 0xfa4ef78e, 0xb3070451, 0xf063320b, 0xd207a007, 0x3402c107, 0xd9260355, + 0x2f071b07, 0xb0be0a07, 0xf301018c, 0x4d071c07, 0x4307d302, 0xf4052407, + 0x0172c1be, 0xd42bf401, 0xb40bc40b, 0x43dadfd6, 0x4efa8ef0, 0x07c007fb, + 0x8e2ebeb1, 0x07c45101, 0x554b0b0c, 0x9efb0ec4, 0x4e018cb7, 0x9bd007fc, + 0xc1d848cf, 0xbe0d07fb, 0x51018c0a, 0x17cc33d4, 0x4333402b, 0x071bcc53, + 0x8e0c0b04, 0x07f94efc, 0x163f6b91, 0x27399625, 0xc4f98e00, 0x0419fa22, + 0x42404f4b, 0x646ef493, 0x86431905, 0xd4f49331, 0xf3930192, 0x0505645c, + 0x27222734, 0x8e921d01, 0x51f493f9, 0x43190564, 0xf49335a6, 0x99062c10, + 0x3fd60543, 0x41fd937b, 0xd4990564, 0x2749760f, 0x2540a730, 0x0fd39dd4, + 0x270ed39d, 0x21f49b44, 0x595afa93, 0x08a49905, 0x577e4896, 0x9b4027fe, + 0x012721f4, 0xf98e941d, 0x0c030d07, 0x8ac0be14, 0x030d0701, 0xb7be100c, + 0xc41e018a, 0x04030a07, 0x018d67be, 0xaba1c027, 0xbc75ac65, 0xa161bc65, + 0x04030a07, 0x018fb0be, 0x6174d3c1, 0xc5430ba4, 0x412774d4, 0x9d56b49d, + 0xac9d09ac, 0x7eac1e08, 0x0fc6e198, 0xca82be81, 0x714ebe01, 0xff775e01, + 0x33280089, 0x0b40870b, 0x4efe0b04, 0xd5f793f7, 0x71990675, 0xbdd00710, + 0x7e034f01, 0x4007eb70, 0x4d838d07, 0x8d030208, 0x4de00308, 0x05ba0208, + 0x4d834007, 0x4de00440, 0x05a70440, 0xb5277a41, 0x930b7499, 0x06759ff9, + 0x05684ff6, 0x41273427, 0x0310d3bd, 0x0354d4bd, 0x030ed3bd, 0x030fd3bd, + 0x2aa2f993, 0x3492c106, 0x0164d2d5, 0xd53893c1, 0xc10168d3, 0xd4d53c94, + 0x9ec1016c, 0xd54a0740, 0x020170de, 0x274b07ba, 0x3b1c07c1, 0x23410714, + 0x074fab41, 0x28d2a934, 0x2ad1a903, 0xab3f0b03, 0x0b04073f, 0x07410b02, + 0x3f2c03e3, 0x8b3f1c03, 0x53308be4, 0xad165326, 0xad031cd3, 0xad031ede, + 0xad0330d2, 0x7e0332d1, 0x0cf4ed71, 0xbd045c34, 0xbd02e2d0, 0x7e02e1dc, + 0x0cf4ed57, 0x27044334, 0xe4d0bd41, 0xe3d4bd02, 0xed597e02, 0x28340cf4, + 0xbd412704, 0xbd02e6d0, 0x7e02e5d4, 0xd0bdeaa2, 0x948902c0, 0xc4d4d546, + 0x65929902, 0x02e0d2bd, 0xe0e7047e, 0xe004e302, 0x7e04d603, 0x01e8e6ef, + 0x4427048d, 0x0308d4bd, 0x0308d4b9, 0xd4bd4203, 0xd4a90308, 0xd2a90330, + 0x3d270332, 0x249b0500, 0x0334d3ad, 0x30004d27, 0x0308d3b9, 0x0336d4ad, + 0xd5604c27, 0xad0338d2, 0xbd033cd4, 0x07030ad3, 0xfe9e7e08, 0x0348d0d5, + 0x10000d14, 0x10000d27, 0x0352d4b9, 0x0348d0d5, 0x03864ff6, 0x4fff3ea7, + 0x7434c1fd, 0x049340e8, 0x06644d27, 0x033ed4ad, 0xd4bd4127, 0x7499030b, + 0xbd080709, 0x99034dd4, 0xdebd0a7e, 0x7199034e, 0x4cd1bd0c, 0xe9737e03, + 0x034cd4b9, 0x0332d0a9, 0x4007400a, 0x032adca9, 0xcc034f6b, 0xafd4bd3f, + 0x07340703, 0x2346734c, 0x34123fcc, 0xd3bd3407, 0xd2b903af, 0xd3b90352, + 0x11270353, 0xd2bd4827, 0xd3bd0395, 0xd4bd0396, 0xd1bd0398, 0xd1bd03b0, + 0xd4bd0394, 0x74990397, 0x4fdeb908, 0xbd302703, 0x27039bd4, 0x9fd4bd40, + 0x99d3bd03, 0x9ed1bd03, 0x9ad1bd03, 0xaedebd03, 0xff2ea703, 0x24c1fd4f, + 0xb2d3ad74, 0x4340e803, 0xff3ea703, 0x34c1fd4f, 0x2a40e874, 0x99d4b903, + 0x344ff603, 0x19719904, 0x03b2d4a9, 0x03acd1bd, 0x99604c03, 0xdba91a72, + 0xd4d50328, 0xd3a90358, 0xd4a90330, 0xdea9031c, 0xd2bd031e, 0xd0ad03ad, + 0xd3ad0368, 0xd4ad0366, 0xdead0388, 0xdbad038a, 0xdcad036a, 0x057e036c, + 0x000df8e9, 0xf8021a02, 0xa9021608, 0xa9036ad4, 0x2b036cd3, 0xad3c2b4b, + 0xad036ed4, 0x270370d3, 0x56d3b941, 0x27262703, 0x8ed4bd10, 0xbd472703, + 0xd5038dd2, 0xbd02f4d1, 0xbd014cd4, 0xd5038cd2, 0x9d02f0d1, 0x9499dcd3, + 0xe64f4b66, 0x93020a4f, 0x06282bf3, 0xbd683499, 0xbd015bd4, 0xbd014dd4, + 0x93014ed4, 0x067313fb, 0xd560b4c1, 0x7e0154d4, 0xd1b9e513, 0xdeb9034d, + 0xd0bd034e, 0xd0bd0159, 0xd1bd0158, 0xdebd0153, 0x08070152, 0xb9fceb7e, + 0xb90397d4, 0xb90398d1, 0x83038cd2, 0x1c830f4c, 0x8dd3b90f, 0x33453303, + 0xab232319, 0x23238341, 0x0e2c3333, 0x20014ea3, 0xab338304, 0x103c3342, + 0xd2b943ab, 0xd0d50159, 0xd4d50120, 0x2ff60124, 0x402701fb, 0x015ad4bd, + 0x281af193, 0x54149906, 0xe0ded399, 0x2701c541, 0x07430b43, 0x9d3f6b34, + 0xf093ded3, 0x19054800, 0x99494604, 0x41405414, 0x41034307, 0xb9ded49d, + 0xa3014cd4, 0x4cd4bd48, 0xd5021101, 0x21017cd2, 0x80d3d503, 0xd5043101, + 0x390184d4, 0xcdf39304, 0x4e860547, 0x41d83441, 0x5414991b, 0xd4994140, + 0x9d4103de, 0xd4b9ded4, 0x4ca3014c, 0x4cd4bd10, 0xd8344101, 0x14991942, + 0x99414054, 0x4103ded4, 0xb9ded49d, 0xa3014cd4, 0xd4bd204c, 0x4d07014c, + 0x01884d03, 0x4796f293, 0x113c2705, 0x24032e01, 0x44034e05, 0x0459f3a8, + 0xf4934ba6, 0x99054770, 0x31d85443, 0x54149919, 0xd4994140, 0x9d4103de, + 0xd4b9ded4, 0x4ca3014c, 0x4cd4bd40, 0x034d0701, 0x9301cc4d, 0x05479bf2, + 0x013d3c27, 0x05240321, 0xa8440341, 0xd67011f3, 0xd4a9710f, 0xd2a9031c, + 0xd1d1031e, 0x249b0154, 0x03ff2c03, 0xa7ffff1d, 0x2853453c, 0x27101c53, + 0xafdcb941, 0x58bbc103, 0xd3bd129b, 0xd4bd0150, 0xf3930151, 0x270151a4, + 0x150c27e0, 0x42ca3401, 0xca341111, 0x34210c41, 0x34994b2a, 0xc0c4e20c, + 0x03e10301, 0xf018143c, 0x151a3c27, 0xa9f78e73, 0xa90388d1, 0xad038ad2, + 0xad036ad1, 0x5e036cd2, 0xf293fddb, 0x27015174, 0x153c2710, 0x04ce2409, + 0x0311036f, 0xf398142c, 0x27454ca7, 0x50d4bd31, 0x51d3bd01, 0xb9ff1e01, + 0xb9014dd4, 0xb9014ed3, 0xc3015bd2, 0xc331c341, 0x4dd4bd21, 0x4ed3bd01, + 0x5bd2bd01, 0xfded5e01, 0x4fff4ea7, 0x7443c1fd, 0x010430e8, 0x07144d27, + 0x033ed4ad, 0x27fc7b5e, 0xe5d4bd40, 0xfbdd5e02, 0xd4bd4027, 0xc25e02e3, + 0xbd4027fb, 0x5e02e1d4, 0x4127fba7, 0x87fe3c5e, 0x0b143341, 0xd84f0341, + 0x99000192, 0x44990e4e, 0x50debd0d, 0x51d4bd01, 0x7ef78e01, 0x0100e2c1, + 0xfe0003e4, 0xd4bd4127, 0xfd5e015a, 0x7434c1fd, 0x00004ef8, 0x5efcd001, + 0x24c1fcd5, 0x004ef874, 0xfcb70100, 0xe87424c1, 0xa700ad40, 0xfd4fff3e, + 0xec7434c1, 0xc1fca440, 0x4ef87434, 0x9a010000, 0x309499fc, 0xfc934fe6, + 0x0399d4b9, 0xd4bd42a3, 0x865e0399, 0x5e4327fc, 0x4ea7fb74, 0x99feffff, + 0x33830943, 0x34334387, 0x3cf9342b, 0xff00004d, 0x31e8527e, 0xc00f6b94, + 0x42f07b41, 0xc2d0fa78, 0x9d40276e, 0x6d5e0b94, 0x277a41fa, 0xfa5a5eb4, + 0xab077b41, 0x27fa535e, 0x08d4bd43, 0xfb325e03, 0xf6e2127e, 0x7efb1e0f, + 0x0fc6e4b8, 0xbd4127a9, 0x5e0308d4, 0x4d27fb26, 0xd4ad0724, 0x795e033e, + 0x7434c1fb, 0x00004ef8, 0x27fb6701, 0xad06744d, 0x5e033ed4, 0x24c1fb64, + 0x004ef874, 0xff4d0100, 0xe62f9499, 0xbdff464f, 0x5e0399d1, 0x02d4ff3f, + 0xfa025e91, 0x2734c2d0, 0x09949d41, 0x87f9f75e, 0x0be4334e, 0xd84f034e, + 0x99000192, 0x43890e41, 0x0d449910, 0x0150d1bd, 0x0151d4bd, 0x27fe2e5e, + 0xb6f19304, 0x729e0135, 0x02d400f2, 0xf9c65ecb, 0xa007fa4e, 0xd007c107, + 0xd4d1b027, 0x1c07029c, 0x46e60407, 0x00f2bebe, 0x029cd0d5, 0xd403b103, + 0xd5e8b2c4, 0x8e02a4ac, 0x270c07fa, 0x2760001d, 0xf378be20, 0x9cd0d500, + 0x4ee21e02, 0x07d007fc, 0x07c403c0, 0x030c071d, 0x20272c1c, 0x01871dbe, + 0x0c070676, 0xcbbe1127, 0xf4930188, 0x0501765c, 0x8e0327d4, 0x230646fc, + 0x2705c601, 0x03015340, 0x07039641, 0x27fe0b04, 0x0b040740, 0x003e27fe, + 0xf39b0100, 0xf5049940, 0xab0f4c33, 0x40f49b4f, 0xe0f30199, 0xc0009211, + 0x13206d12, 0x00be14e0, 0x3e27ff1e, 0x9b041800, 0x402740f3, 0x9b40f49b, + 0xf49b40f4, 0x003d2740, 0x40f39b80, 0x00004e27, 0x40f49b0b, 0x00002e27, + 0x40f29b0f, 0x80003d27, 0x2740f39b, 0x40f49b40, 0x9b40f49b, 0x112340f3, + 0x4f6b4107, 0x43d41103, 0x40f29b46, 0x2740f29b, 0x0b00004e, 0x9940f49b, + 0x4833f404, 0x00004ea3, 0x40f49b07, 0x4e27fe0b, 0x9b041000, 0x302740f4, + 0x2740f39b, 0x9b80004d, 0xf49b40f4, 0x003e2740, 0xf39b0c00, 0x279e1e40, + 0x0408004e, 0x1400de1e, 0xf39bff1e, 0x40f39b40, 0x9b40f39b, 0xf39b40f3, + 0x9b402740, 0xf39b40f4, 0x40f49b40, 0x9b40f29b, 0x4e2740f2, 0x9b030000, + 0x9c1e40f4, 0x20003e27, 0x40f39b04, 0xf49b4027, 0x40f49b40, 0x9b40f49b, + 0x3d2740f4, 0xf39b8000, 0x004e2740, 0xf49b0a00, 0xff425e40, 0xf4a3f54e, + 0xf49d4027, 0x04f49d05, 0xd007fe49, 0x96490499, 0x06f49deb, 0xf7ff4ea7, + 0x003d27f9, 0x27f42508, 0x35212746, 0x27f41df3, 0x094d2739, 0x06f1992c, + 0xf29dfe55, 0x2df33d04, 0x45fe95f4, 0x05f29dfe, 0x98101ce0, 0xbe0f0705, + 0x99018367, 0xd7c145d4, 0x7dd29958, 0x4496c027, 0xd4c1c127, 0x96302760, + 0x07312744, 0x577399b3, 0xf3a5bf6b, 0x0102d6b9, 0x0377cfe6, 0xf4c54227, + 0x138c2744, 0x18070d07, 0x018766be, 0x4c334b07, 0x40f49b0f, 0x4027c4e6, + 0x9940f49b, 0xf49bffd4, 0xf0bfe641, 0x44f4c103, 0x7e41f49b, 0x9007df57, + 0x8996d589, 0xda8998dc, 0x138ce08e, 0x74990165, 0xa3483320, 0x0700004e, + 0xb940f49b, 0x230264d3, 0xf03f6b35, 0xb9032834, 0x7e0ab8d0, 0xb007fe09, + 0x0a07bf6b, 0x80be1c07, 0xf3c10120, 0x07890744, 0xab8f6b90, 0xd83fe69f, + 0xfdd19900, 0xe2fcd499, 0x99034641, 0x4fe6fed4, 0x3027033f, 0x9b40f39b, + 0x412740f3, 0x9b41f49b, 0xd49941f3, 0x41f49bfd, 0x80003d27, 0xb940f39b, + 0x230264dc, 0x6b4c07c1, 0xf0c1034f, 0x2306e842, 0x6b4c07c3, 0xf0c3034f, + 0xe0057342, 0xe005e8c5, 0xe004c5c6, 0xe4052bc7, 0x0700c0c8, 0x81a103a8, + 0x9bca077b, 0x070b07c5, 0x2005be1c, 0x740fe601, 0x84b4e007, 0x071c0706, + 0x1ffbbe0b, 0xabc09b01, 0x07bc2bcf, 0x34fcc54b, 0x4aee4fab, 0xc907066b, + 0x0c07c80b, 0x89be1a07, 0x0616011f, 0x0c071a07, 0x011fa1be, 0x79be1507, + 0x4127011f, 0xc141f49b, 0x3f6b34f3, 0x3ea33833, 0x9b070000, 0x402740f3, + 0xf040f49b, 0xfb0100bd, 0x004d2709, 0x40f49b80, 0xfb9bb853, 0x99431e41, + 0x4ff6fed4, 0x3d270334, 0xf39b8000, 0x64d4b940, 0x6b432302, 0xde42f04f, + 0x103c2708, 0x41273b2b, 0x433bb123, 0x330fbc83, 0x4fab10bc, 0xf49b4bab, + 0x64d3b940, 0x07332302, 0x034f6b43, 0x4f42f033, 0xf6d49908, 0xd49945a6, + 0x0f4c337b, 0xf49b4fab, 0x41739940, 0x2ea735c6, 0xc1fd4fff, 0x40e87424, + 0xf3c103ba, 0x8832f044, 0x1a6c2302, 0xb942f69b, 0xf60104d4, 0x9901a24f, + 0x43fc4174, 0xd499019b, 0xa14516f7, 0xe732f0f3, 0xb4dca900, 0x6ac2f002, + 0x071c0705, 0x272d07ed, 0xd1112300, 0xd102bc23, 0x0302b824, 0x23342b24, + 0x07300231, 0xf0f15803, 0x0100000e, 0x0c53018d, 0x10ac2710, 0x01000df0, + 0x38270189, 0x4827035b, 0x0cf03007, 0x27018910, 0x27325b24, 0xf02307b4, + 0x27018934, 0x07122702, 0xab3aab34, 0xab215b3b, 0xab215330, 0x23b30732, + 0x9bb103c1, 0xf39b41fc, 0xb4d4a941, 0x6f42d002, 0x4c234307, 0x2314070f, + 0x83030711, 0x0c830f1c, 0x10ac270f, 0x3310cc27, 0x1c33100c, 0x2b212710, + 0x1ec42bab, 0x40f49b19, 0x3ea33fab, 0x9b0f0000, 0xd4a940f3, 0x210302b4, + 0x42c2e403, 0xb8e4d132, 0xbce3d102, 0x23342b02, 0x53430731, 0x4c3b104c, + 0x41ab4fab, 0xce11bccc, 0x3a3b3fab, 0x30ab3fab, 0xa940f39b, 0x0302b4d4, + 0xcae40321, 0x4d27d024, 0xf49b8000, 0x483f9b40, 0x271a31dc, 0x9b02202d, + 0x402722f2, 0x070ef49b, 0x9bff8b00, 0x3f9b22f4, 0xec31d848, 0x33484f9b, + 0x4c53174c, 0x8348131b, 0x2345a647, 0x0f4c8341, 0x9b104c33, 0x0f0740f4, + 0x0183d4be, 0xcd27d161, 0xc02b0800, 0xb0071c2b, 0xeabe0f07, 0x0f070183, + 0x0183bcbe, 0x0d07f251, 0x3c074027, 0x1ea70403, 0x9df9f7ff, 0xf49d05f4, + 0xf2737e04, 0xf293d4a1, 0x710557f8, 0x2b4c6543, 0xc143753c, 0x24897421, + 0x0b310b78, 0x78248d4b, 0xa17423c5, 0x9d4127d2, 0xf3935624, 0x2701715c, + 0x05f48303, 0x27f58ed3, 0x9b80004d, 0x5f5e40f4, 0x272d16fe, 0xc5812732, + 0x895e44f3, 0xb9d0b9fc, 0xb8d4b90a, 0x7e040b0a, 0xb007fadd, 0xd35ebf6b, + 0xf4a027fc, 0x7b01000d, 0x5b3027fe, 0x07402703, 0x100cf430, 0x2027fe7b, + 0xb027325b, 0x34f42307, 0x0027fe7b, 0x785e1027, 0x4521e0fe, 0x27302703, + 0x44f3c581, 0xb9fc3f5e, 0x230264d3, 0x6b430731, 0xf031034f, 0x2303dc42, + 0x6b430733, 0xf033034f, 0xe0041942, 0xe005a535, 0xe005cc36, 0xe006c437, + 0x27051c38, 0x9b80004d, 0xd3b940f4, 0x32d00ab8, 0x83b1230c, 0xbc330fbc, + 0x40fb9b10, 0x0264dcb9, 0x89fc9a5e, 0x74891070, 0x7e049b0e, 0x0cecfa49, + 0x07011a11, 0x83312330, 0x3c330f3c, 0x100c1310, 0x3b60d489, 0xab4fab40, + 0x40f49b43, 0x27fbe85e, 0x40f49b40, 0xd49937d6, 0x994696fe, 0x45e6fcd4, + 0x80004d27, 0x9b40f49b, 0xf39b40f4, 0x9b402740, 0xd4b940f4, 0x4c330101, + 0x9b4fab0f, 0xd39940f4, 0x9935e6f6, 0x45467bd4, 0xb644f4c1, 0x40f49b44, + 0xf49b4027, 0xfd335e41, 0x99fcd399, 0x34e2fdd4, 0x402702e7, 0x9b40f49b, + 0x312740f4, 0x9b41f39b, 0xd4b941f3, 0xf49b0103, 0x002d2741, 0x40f29b80, + 0xb9fdd499, 0x2b0103d3, 0x9b412343, 0xf29b41f4, 0x64d4b940, 0x0f45e002, + 0xc246e003, 0x8247e003, 0xbe48e402, 0x078103fc, 0x23b59bb8, 0xfa7c8181, + 0x270631b9, 0x27ffff3d, 0x40f3c5a0, 0x94f05027, 0xa123027f, 0x4fab4a07, + 0x43f0a103, 0x0c070273, 0xeabe1b07, 0x4b07011b, 0x482b0b9b, 0x49f20fab, + 0x41270759, 0x2741f49b, 0x0700003e, 0x2740f39b, 0x40f49b40, 0x0df00c1b, + 0x06100100, 0x80004d27, 0x5340f49b, 0x41f09b08, 0x07fc585e, 0x104c2340, + 0x2762d389, 0x242b102c, 0x323b4123, 0x330f4c83, 0x3fab104c, 0xf39b34ab, + 0x003e2740, 0x00270f00, 0x27fecf5e, 0x5ef45544, 0x24c1fa65, 0x004ef874, + 0xfc400100, 0x038131fc, 0xf49b4027, 0x41749940, 0x051442f8, 0x80004d27, + 0x5e40f49b, 0xc807fc26, 0xbc07c103, 0x1b07b59b, 0x1fbe0907, 0xa007011b, + 0x09071c07, 0x011b15be, 0x01031507, 0x011aebbe, 0x2a07ab9b, 0x2fab7181, + 0x01500ff6, 0x99fcd399, 0x43eefdd4, 0x41270179, 0xf241f49b, 0x270677b9, + 0x0700004e, 0x2740f49b, 0x9b80003d, 0x410740f3, 0x4df0422b, 0x05200100, + 0x5340f39b, 0x41f49b48, 0x0264dcb9, 0xfad9c7e4, 0x017591e0, 0x99fcd399, + 0x43eafdd4, 0x0807024d, 0x18078103, 0x159b090b, 0x011a87be, 0x013e0ff6, + 0xf49b4127, 0x003e2741, 0xf39b0700, 0x004d2740, 0x40f49b80, 0xf39b3027, + 0xfb5f5e40, 0x07fdda99, 0x0309071a, 0xbe012311, 0xf6011a58, 0xe002000f, + 0x2701fc91, 0x41f49b41, 0x0264dcb9, 0x0589c3e0, 0xfa69c4e4, 0xc8078103, + 0x0907c59b, 0x53be1c07, 0x0c9b011a, 0x81230fab, 0x0693c0f2, 0x00003e27, + 0x9bb02707, 0x080740f3, 0x090b1c07, 0x011a13be, 0x06630ff6, 0x80004d27, + 0x0740f49b, 0xe80b2b09, 0x6601000d, 0x40f49b05, 0xf09b0873, 0x64dcb941, + 0x1cc5e402, 0x031807fa, 0xbe090711, 0x03011a06, 0xbe150701, 0xd60119dc, + 0x91c0780f, 0xfcd39979, 0x22fdd499, 0xfed49934, 0x276b4fd6, 0x41f49b41, + 0x00003e27, 0x40f39b07, 0x80003d27, 0x0740f39b, 0xe8490b48, 0x1701004d, + 0x40f39b04, 0xf49b4873, 0x64dcb941, 0xf9cd5e02, 0x81274127, 0x5e44f4c5, + 0x02c8f8fc, 0x9b412731, 0x3a0741f4, 0x38333f6b, 0x00003ea3, 0x40f39b07, + 0xf49b4027, 0x2b310740, 0x003df432, 0x9b037101, 0xdcb940f4, 0x945e0264, + 0xa091e4f9, 0x9b402701, 0xdcb941f4, 0x845e0264, 0x9b4027f9, 0x6f5e41f4, + 0x1c94d0fb, 0xf49b4127, 0x003e2741, 0xf39b0700, 0x9b402740, 0xf49b40f4, + 0xfa275e40, 0x27e693d4, 0x41f49b40, 0x27fa1c5e, 0x9b80004d, 0xd3b940f4, + 0x4c270103, 0x034b2b10, 0x3bb12331, 0x0fbc8334, 0xab10bc33, 0x9b3bab3f, + 0x265e40f3, 0x2bc1e0fd, 0xb1c2e003, 0x9b402701, 0xdcb941f4, 0x085e0264, + 0x004d27f9, 0x40f49b80, 0x0264d3b9, 0x018931e0, 0x03dd32e0, 0xbc83b123, + 0x10bc330f, 0xb940fb9b, 0x5e0264dc, 0x4807f8d7, 0x94f24103, 0x41270125, + 0x2741f49b, 0x0700003e, 0x2740f39b, 0x40f49b40, 0xb940f49b, 0x5e0264d4, + 0x4d27fcd5, 0xf49b8000, 0x64dcb940, 0x39c3e002, 0xa0c4e403, 0xfdda99f8, + 0x0a0b0907, 0x1a07a103, 0x7dbe159b, 0x0ff60118, 0x91e003f8, 0x3c2703f4, + 0x273b2b10, 0x3bb12343, 0x0fbc8343, 0xab10bc33, 0x9b4bab4f, 0xdcb940f4, + 0x685e0264, 0x9b4027f8, 0xdcb941f4, 0x745e0264, 0xfed499f8, 0xff194ff6, + 0x07fdad5e, 0xab2c2b2b, 0x9b31272f, 0x420741f3, 0x48334f6b, 0x00004ea3, + 0x40f49b07, 0x80004d27, 0x0740f49b, 0xf4022b0b, 0xad01000d, 0x9b4027fc, + 0x065e40f4, 0x03b807f9, 0x077481b1, 0x07c59bcb, 0xc51c0704, 0x4ebe38f4, + 0x0c9b0118, 0xf0c50fab, 0xa69bf23c, 0xa2c9f201, 0x9b412701, 0x3e2741f4, + 0x9b070000, 0x402740f3, 0xc140f49b, 0xf3c138f0, 0xf4032b3c, 0xbd01000d, + 0x40f49b02, 0x0264d4b9, 0x27fbf45e, 0x41f49b41, 0x00003e27, 0x40f39b07, + 0xf49b4027, 0x40f49b40, 0x0264dcb9, 0x27f7d65e, 0x9b80004d, 0x7e5e40f4, + 0x9b4027fc, 0xd4b941f4, 0xc25e0264, 0x031807fb, 0x9b080711, 0xbe090b15, + 0xf6011780, 0x27fad60f, 0x9b80004d, 0xd3b940f4, 0x4c270ab8, 0x234b2b10, + 0x83343bb1, 0xbc330fbc, 0xab3fab10, 0x40f39b3b, 0x0264dcb9, 0xe0f7665e, + 0x99031051, 0x41e490d4, 0xd71efe74, 0xe090d499, 0xe0034b41, 0xe0032742, + 0x89031b44, 0x312792d2, 0x0741f39b, 0x334f6b42, 0x004ea348, 0xf49b0700, + 0x9b302740, 0x402740f3, 0xb940f49b, 0x5e0264dc, 0x1103f72f, 0x2bbe0907, + 0x01030117, 0x01be1507, 0x09d60117, 0x272a91c0, 0x9b80004d, 0xd39940f4, + 0x104c27fd, 0x4b2b3103, 0x7c5e3f6b, 0x071103ff, 0x1700be09, 0x07010301, + 0x16d6be15, 0xd80fc601, 0x80004d27, 0xb940f49b, 0xf40ab8d3, 0xb9fdef32, + 0x5e0264dc, 0x33e0f6cf, 0x34e4fd8c, 0x7c81f7ad, 0xfd85c3f0, 0xa103a807, + 0xb59bba07, 0x5c0b5807, 0x1b070507, 0x0116eabe, 0xacea0314, 0x4127fd6b, + 0x0741f49b, 0xbe1b0705, 0x9b0116dd, 0x040fe60b, 0x07082b03, 0x334f6b40, + 0x004ea348, 0xf49b0700, 0x9b402740, 0x091b40f4, 0x01000df0, 0x4d270106, + 0xf49b8000, 0x9b085340, 0x4e5e41f0, 0x103c27f7, 0x42273b2b, 0x235eb123, + 0x23a907f7, 0x070a07a1, 0x163ebe1c, 0xa20bfa01, 0x9b4127fe, 0x1c0741f4, + 0x4fbe0a07, 0xc09b0116, 0x4f6b4c07, 0x4ea34833, 0x9b070000, 0x302740f4, + 0xc140f39b, 0xf4c138f0, 0xf4042b3c, 0xfd01000d, 0x5e402700, 0x4027fe3d, + 0x5e40f49b, 0x4d27f716, 0xf49b8000, 0x9b385340, 0xdcb941f3, 0x1c5e0264, + 0x031807f6, 0x9b080711, 0xbe090b15, 0xf60115dc, 0xe4ff070f, 0x5efe5a91, + 0x91e0ff00, 0x41270171, 0x2741f49b, 0x0700003e, 0xe040f39b, 0x9900f851, + 0x41e090d4, 0x402700f1, 0xf040f49b, 0x8f01009d, 0x004d27fe, 0x40f49b80, + 0x38533907, 0xb941f39b, 0x5e0264dc, 0x4027f5b3, 0xb940f49b, 0x5e0264dc, + 0x0907f5bb, 0x1b070123, 0x0115a1be, 0x4b9b4007, 0x01035407, 0x49075fab, + 0x452b0b9b, 0xa407082b, 0xafab0fab, 0x5e40f0c5, 0xf49bf9b6, 0xf6535e40, + 0x07fdda99, 0x0b3a0749, 0x0731034a, 0xb5130704, 0x30f3c5f4, 0x011543be, + 0x00b30ff6, 0x00af91e0, 0xb130f1c1, 0xbe159bf0, 0xf6011530, 0x27fc570f, + 0x4b2b104c, 0xc43bb123, 0x330fbc83, 0xcfab10bc, 0xfc9bcbab, 0x64dcb940, + 0xf5215e02, 0x80004d27, 0x5340f49b, 0x41f09b08, 0x0264d4b9, 0x99f9305e, + 0xc1c090dc, 0x84d4b9cb, 0x784fc602, 0x15070907, 0x011536be, 0x01230fab, + 0x4fab4007, 0x42d00103, 0x6002c06f, 0x275d01dc, 0x3b2b103c, 0xb1234427, + 0x5e5e433b, 0x004d27fc, 0x40f49b80, 0x27ff0e5e, 0x0700004e, 0x9940f49b, + 0x0907fdd1, 0x1103010b, 0xa5be159b, 0x0ff60114, 0x4d2700ed, 0xf49b8000, + 0x9b402740, 0xdcb940f4, 0xb85e0264, 0xb8d4b9f4, 0xb142f40a, 0xfa215efb, + 0x0ab8d4b9, 0xfba642f4, 0xe4f48a5e, 0x07fb9fc2, 0xe64f6b49, 0x27fb974f, + 0x3b2b103c, 0xb1234127, 0xf65e433b, 0x6651e4fb, 0xfe8c5efb, 0x490b4807, + 0x4f6b4b2b, 0x4ea34833, 0x9b070000, 0x805e40f4, 0x104c27f9, 0x35074b2b, + 0xb123343b, 0xca5e4307, 0x9b4127fb, 0x350741f4, 0x38333f6b, 0x00003ea3, + 0xf8a25e07, 0x0284d4b9, 0xfce14fe6, 0x2792d289, 0x41f39b31, 0x4f6b4207, + 0x4ea34833, 0x9b070000, 0x3d2740f4, 0xf39b8000, 0xfcdc5e40, 0xfcbd9fe6, + 0x8992d389, 0x212794d4, 0x3fab342b, 0x0741f29b, 0x334f6b43, 0x004ea348, + 0xf49b0700, 0x002d2740, 0x40f29b80, 0x432b4907, 0x01004de8, 0xf29bfcaa, + 0x9b487340, 0xdcb941f4, 0xd45e0264, 0x9b4027f3, 0x165e40f4, 0x9b4027ff, + 0x090740f4, 0x0dcc0b2b, 0x9b290100, 0xdcb940f4, 0xc05e0264, 0x07082bf3, + 0x074fab40, 0x333f6b34, 0x003ea338, 0xb4070700, 0x27f9625e, 0x0700004e, + 0x27fd055e, 0x5e80004d, 0x0cc8f975, 0x4e2710ff, 0x2307ff00, 0xf49bff0c, + 0xff0ccc40, 0xab0833f7, 0x000ea30f, 0xf09b0700, 0x4efe0b40, 0x3ec107fc, + 0x0e0c07da, 0xa7d41efc, 0xfbffff3e, 0x041834d1, 0xefff2ea7, 0x874fabfd, + 0x9004d544, 0xd1432702, 0xd502a401, 0x81022024, 0xbd412723, 0xd8029804, + 0xd120e03c, 0xd1088424, 0x27065c22, 0x2b201332, 0xff4ea724, 0x43d5fdef, + 0x210b0220, 0x029402d5, 0x2027fe0b, 0x4ea73227, 0xd5fdefff, 0x0b022043, + 0x9402d521, 0x0bfe0b02, 0xc1f64efe, 0xf0a3880e, 0x70276027, 0xde07b307, + 0xf715f605, 0x9107a207, 0xce078407, 0xc11fdc73, 0x03c17802, 0xb2b1e07c, + 0x230b0700, 0x73100701, 0x9ebe1f1c, 0x3d0700ef, 0x2fbe2c07, 0x480700f0, + 0x071f4c73, 0x0be407d8, 0xe8e14bd0, 0x0700a9a1, 0x271a0709, 0x07210780, + 0x33410730, 0x31531f2c, 0x417332ab, 0x14070307, 0x41cc8103, 0xd44536e9, + 0x0000003f, 0x2d07e080, 0x2c533d87, 0xab4e871e, 0x53230742, 0x14871e2c, + 0x038712ab, 0x144b030b, 0xec53e007, 0x07c1871e, 0xab3b072b, 0x73b087ce, + 0x0b0b1f3c, 0xc3be1c4b, 0x380700ef, 0xc8203c23, 0x61076330, 0x7107637b, + 0x30c8787b, 0x7b4a0741, 0x07f40543, 0x15387b3a, 0x11f201f3, 0x070607f3, + 0xef98be17, 0x8ef08300, 0x030e07f6, 0x73100701, 0xeebe1f1c, 0x3d0700ee, + 0x7fbe2c07, 0xd00700ef, 0xa1ece107, 0xa9e6ff5b, 0x7b5e8027, 0x204c27ff, + 0x2a07482b, 0x243b3907, 0x4207385b, 0x24ab2307, 0xb01ef205, 0x2b204c27, + 0x07210748, 0x5b243b60, 0x1e62ab68, 0x009ff492, 0x24800000, 0x5e8027ff, + 0xfb4eff46, 0xbf6bb107, 0x5e86fc93, 0xd10df906, 0x400006b2, 0x2602c001, + 0xfb8e0d07, 0x02a0c4b9, 0xc0b94306, 0xc49902a3, 0x0b0f4b19, 0x2f00c804, + 0x0cc8d007, 0xdc27e334, 0x8e0d0733, 0xd0677efb, 0xc019c399, 0x03c01f01, + 0xcd02c41a, 0x02a1c4b9, 0xb9c64fc6, 0x4b02a4c0, 0xcc030b0f, 0xd027d300, + 0xb156b71e, 0x02a2c4b9, 0xb9ae4fc6, 0x4b02a5c0, 0xcc030b0f, 0xd027bb00, + 0x00009f1e, 0x00000064, 0xf793f54e, 0x01065e0c, 0x07f2a37c, 0xb9c736a0, + 0xb9020800, 0x7e0371a1, 0xa0bdff6a, 0xacd502aa, 0xf2830284, 0x00b9f58e, + 0xa1b90208, 0x537e0371, 0xbd4127ff, 0xbd02aba0, 0x9302aca4, 0x06134ff3, + 0xd14433c1, 0xd1037ca1, 0x75017474, 0x6071d5f3, 0xcf34ce02, 0x017473d5, + 0x0208a2b9, 0x22e0f265, 0x74d10724, 0x73d10288, 0x72990284, 0xd5439b71, + 0x9301cc74, 0x065d9bf1, 0x40272786, 0x31272027, 0x021a14bd, 0x021813bd, + 0x01c812d5, 0x021914bd, 0x01c412d5, 0x01d01cd1, 0x7120c1c8, 0xbe1c07f0, + 0xf6011090, 0x7e03630f, 0x0ceedac3, 0x3027035c, 0x73d54027, 0x74d501d4, + 0x749901d8, 0x51fd9371, 0x4ff6065d, 0xa47e0649, 0x87fe61da, 0x6043f14e, + 0xc10006b4, 0x3ce07cd4, 0xd1068d33, 0xe80188d3, 0x61033731, 0x3d2fe6f2, + 0x6c74c103, 0x037542e0, 0x01a474b9, 0x5d1af393, 0x99452606, 0x4ff67134, + 0x402705fc, 0x7e72749d, 0x05e6cf13, 0x01a674b9, 0x5cfef393, 0xd64ff606, + 0x9d402705, 0xa67e7474, 0xb905e6d5, 0x9301a574, 0x065ce7f3, 0x05b04ff6, + 0x749d4027, 0x3474d173, 0xd5fd9301, 0x41e0065c, 0xf26104e6, 0x0371abb9, + 0x44f94287, 0x0006b460, 0x02aaa4bd, 0x023cddb9, 0x0339adbd, 0x053f2fe6, + 0xd5a073c1, 0xc10298a3, 0xa4d5a474, 0x4ea7029c, 0x99feffff, 0xb47e094c, + 0x87c383d4, 0x2bc4334c, 0x4dcef9c4, 0x12ff0000, 0x71e0070e, 0x23f471f1, + 0x7c72d112, 0x23412b01, 0x99429b41, 0x70d1707d, 0xe4d20184, 0x0b32470e, + 0x2b430732, 0xda112342, 0xf471f64e, 0x4d2b4103, 0x40070412, 0x0336aebd, + 0x026ca4d5, 0x0270a1d5, 0x01987ed1, 0x0278aed5, 0x01a871b9, 0x02afa1bd, + 0x019c72d1, 0x01a473b9, 0x027ca2d5, 0x01ac74b9, 0x02b2a3bd, 0x02b0a4bd, + 0x01a07ed1, 0x01a571b9, 0x0280aed5, 0x01b072b9, 0x02b3a1bd, 0x02b1a2bd, + 0xb97c73c1, 0xd501a672, 0xc10290a3, 0x73d18074, 0xa4d501b4, 0x71c10294, + 0x787ea930, 0xb874d101, 0x8ca1d501, 0xc0a3d502, 0x8873d102, 0xa4aead01, + 0xc4a4d502, 0xb4a2bd02, 0x88a3d502, 0xbc74d102, 0x2073d101, 0xc8a4d502, + 0xc07ed102, 0x2474d101, 0xd4aed502, 0xc471d102, 0xcca3d501, 0xd8a1d502, + 0xc872d102, 0xd0a4d501, 0xdca2d502, 0xcc73d102, 0x95f19301, 0xa3d5065b, + 0x74b902e0, 0xa4bd0218, 0x73d102e4, 0x74d101d4, 0x7ed101d8, 0xa3d501d0, + 0xa4d502ec, 0xaed502f0, 0xf39302e8, 0x07065d48, 0xd532014a, 0x1102f442, + 0xf84ed53e, 0xd5322102, 0x3102fc42, 0x004ed53e, 0x03324103, 0x42d5143c, + 0x4c030304, 0xd03fc414, 0xd60006b4, 0x018c13d1, 0x0260a3d5, 0x019014d1, + 0xa4d5f361, 0x1ed10264, 0xaed50194, 0x3ff60268, 0x149903dd, 0xada4bd86, + 0x87129902, 0x02aea2bd, 0x23d86a7e, 0x000d0801, 0xff0c2701, 0x0274a0bd, + 0x018074d1, 0x5afafc93, 0x004d1006, 0xff4c2701, 0x0275a4bd, 0xbd89c199, + 0x890276a1, 0x4ff620c4, 0xc2d1041d, 0xc4990258, 0xa0a2d571, 0x5cc3d102, + 0xa6a4bd02, 0x44a3d502, 0x60ceb903, 0xbcaebd01, 0x64c1b902, 0xbda1bd01, + 0x68c2b902, 0xbea2bd01, 0x72c39902, 0x0134ced1, 0x02a7a3bd, 0x1973c499, + 0xa8a4bdc3, 0x74c19902, 0xbd6cc2c1, 0x610277a3, 0xb8aed5f4, 0xa9a1bd02, + 0x84a2d502, 0x204ff602, 0x9cccb903, 0x38acbd02, 0x9471d103, 0xff4ea702, + 0xa1d5ffff, 0x72d1033c, 0x1c270298, 0x40a2d512, 0xac40d103, 0xbe012316, + 0xf9010dc7, 0x0016b004, 0x4df193ff, 0x4586065a, 0x018014d1, 0x14d54103, + 0x14d10180, 0x30270180, 0x139d4123, 0x7812c171, 0x14d5f371, 0x23ee0180, + 0x7499036f, 0x88709989, 0x5a1ef393, 0x2b04e206, 0x8034d1fc, 0x234ff601, + 0x9df283fc, 0xf58e8930, 0xeed7627e, 0x61fcadc0, 0xa74ff6f4, 0xfc985efc, + 0x1ff6f161, 0x4027fccd, 0x023c74bd, 0xd1d7467e, 0x93018074, 0x0659e3f2, + 0x04c246c6, 0x88239912, 0x30ea4007, 0x4cf40886, 0x9d08783d, 0x40278924, + 0x74d53027, 0x202701b8, 0xd56c74c1, 0xd5018070, 0xd501b473, 0xe401bc72, + 0x93fc8f42, 0x0659abf4, 0x71704399, 0x55432bf4, 0x0f4c83f4, 0x3407e407, + 0xe3333633, 0xe42be30b, 0x58eaf393, 0x33330106, 0x0b4e07e3, 0x85f34543, + 0x3841b9fe, 0x3c44d111, 0x33f11511, 0xe0f40543, 0x41096912, 0x27f481f3, + 0xd1430b90, 0x11114443, 0x878307f4, 0x444bf144, 0x950006b4, 0x07db07f4, + 0x1fdc73cb, 0x02ff3ff6, 0x1d070b07, 0x40273107, 0x349634ab, 0x6c07c007, + 0x6b0bfe11, 0xeff66173, 0xf48105e2, 0x410bf141, 0x11484dd1, 0x021c7dd5, + 0x4d473027, 0x02ed39ea, 0x02e539ee, 0x49ea4027, 0x49ee0793, 0x4d07078b, + 0x41533027, 0x091b39ea, 0x091339ee, 0x1a270d07, 0x010c6cbe, 0x49ea4027, + 0x49ee0bbd, 0xf4110bb5, 0x4433fe91, 0x4f034e0b, 0x0006b2b8, 0x01ec43d1, + 0xc173c30b, 0x01ec4cd5, 0x04016de8, 0x6d270573, 0xfc910400, 0xfb81f141, + 0x029074d1, 0xb2b8cf03, 0xb10b0006, 0x018cc6d5, 0x1154b2d1, 0x30271407, + 0x1c730407, 0xe8b3be1f, 0x8c74d100, 0x07340702, 0x1f3c7324, 0x00e8a4be, + 0xe107f201, 0x0198c2d5, 0x1158b2b9, 0x41073007, 0x5310ec33, 0xc2d5103c, + 0x3eab01a8, 0x4c532027, 0x001d2710, 0x4b310b80, 0x33240742, 0x3c53102c, + 0x0132ab10, 0x93f32570, 0x065857fd, 0x02a404e0, 0x2ff6f211, 0x4ea70340, + 0xd1ffffff, 0x07188045, 0x875d0335, 0xe3250702, 0x2ce37f3c, 0x875d237f, + 0x03341902, 0x32c2803c, 0x41f481f9, 0xa9430bf3, 0xe6116c44, 0x81063e4f, + 0x03fe41fc, 0x0b1170cd, 0x071407ce, 0x2780272c, 0x27230190, 0x4b830b40, + 0x98240394, 0x41f681f1, 0x0be027f4, 0x27d50764, 0x5efe35b0, 0xf1610200, + 0x01681ff6, 0x0198dcd1, 0x060acff6, 0x73d1e027, 0x72d10164, 0x4307016c, + 0xf193422b, 0x0c0657cc, 0x73401340, 0x27440841, 0x13231243, 0x6012d140, + 0x0b342b01, 0xd5430724, 0xd5016413, 0x23016012, 0x03245a41, 0x07421242, + 0x994e0b42, 0x74d58673, 0x72990160, 0x07435a87, 0x07421234, 0xa872b932, + 0x6073d501, 0xaaa2bd01, 0x3c73b902, 0x71abb902, 0x39a3bd03, 0x1f4d2703, + 0xe43c2701, 0x0298a4d5, 0x029ca3d5, 0x61fac15e, 0x51e1c0fe, 0x00c5bfe6, + 0x029dc3b9, 0x74b93f4b, 0x4f4b029c, 0xa4bd431b, 0xce5e0338, 0x841e99fc, + 0x02adaebd, 0xbd851199, 0x5e02aea1, 0x3499fc24, 0x4d4fe671, 0x9d4127fa, + 0x4a5e7334, 0x733499fa, 0xfa274fe6, 0x349d4127, 0xfa245e74, 0x349d4127, + 0xfa055e72, 0xa4bd4027, 0x8e5e0338, 0x274027fc, 0xd5c02730, 0xd5022cd4, + 0xd50238d4, 0xd50228d3, 0xd50234d3, 0x7e0230dc, 0x1007d443, 0x277cd2c1, + 0x1f1c7330, 0x00e6ecbe, 0xd4bd4027, 0xd0d5023c, 0xd1d50220, 0xdcd50224, + 0x985e01c0, 0xc8d77ef9, 0x0337a0bd, 0xc1fbdd5e, 0x41e46c14, 0x4227fc8e, + 0x5e6c14c5, 0x049bfc86, 0x0188d3d1, 0x34f24047, 0x4127f96f, 0x023cd4bd, + 0xb9f96a5e, 0x4b029ec3, 0xff3c5e3f, 0xe4c8a07e, 0x27f8d902, 0x5ef36531, + 0xd3d1f8d2, 0xd4990168, 0x85d09984, 0x4007345a, 0x43070312, 0x74d5fe61, + 0x4e870168, 0xb46044f9, 0xabb90006, 0xa4bd0371, 0x71b902aa, 0xa1bd023c, + 0x9d5e0339, 0x27f001f9, 0x53400710, 0x1833184c, 0x14ab2307, 0x08333907, + 0x00eeeabe, 0xe2fcef5e, 0x11fd1b84, 0x33fe91f4, 0x034e0b44, 0x06b2b84f, + 0xdc43d100, 0x73c30b01, 0xdc4cd5c1, 0xfd425e01, 0x53650c28, 0x01f7f7f1, + 0x6b430713, 0x08d49d4f, 0x64a9f231, 0x230b116c, 0xf235b103, 0xd103c403, + 0x04134bf2, 0x4027c101, 0x31870107, 0xab1e0c53, 0x53230740, 0x14871e2c, + 0x038712ab, 0x144b030b, 0x2c532007, 0xab41871e, 0x0b308742, 0x07144b03, + 0xbe390728, 0x0700e666, 0xa501cc30, 0x41273127, 0xf311ac1e, 0x064531e0, + 0x01d074d1, 0xf393f251, 0xd20655a0, 0x34d10d24, 0x45160134, 0x34d54127, + 0xe87e0134, 0x89fd93d2, 0x30070655, 0x019874d1, 0x014c71d1, 0x015072d1, + 0x0c030d07, 0xf5b37ea8, 0x013474d1, 0x015c70d5, 0x05c441e0, 0x01acd4d1, + 0x01a8ded1, 0x0164d4d5, 0x0160ded5, 0x016073d1, 0x99867499, 0x345a8772, + 0x23124207, 0x73d14307, 0x7d990164, 0x6074d584, 0x85749901, 0xd4073d5a, + 0xd3074312, 0x7dd5f111, 0x11e40164, 0x7c7efcd4, 0x511007d2, 0x0889bef0, + 0x93012401, 0x065513f4, 0x016c4dd5, 0x02307dd1, 0xeed2627e, 0x11048e0d, + 0x822ff6f2, 0x27402701, 0x3874d530, 0xb874d502, 0x3473d501, 0x3072d502, + 0xb473d502, 0xbc72d501, 0xddf79301, 0x74d10654, 0x410301c0, 0x034c44ec, + 0x74d5f311, 0x73d501c0, 0x73d501c4, 0x7dd101c8, 0xd1c801d0, 0x07f05120, + 0x07d6be1d, 0x260ff601, 0xd2097e01, 0x011f0dee, 0x40273027, 0x01d473d5, + 0x01d874d5, 0x01d473d1, 0x01d874d1, 0xe027fd01, 0x4e4b3d0b, 0x01bc72d1, + 0x01d473d5, 0x01d874d5, 0x547ef993, 0x1b20c806, 0x01b493d1, 0x01b894d1, + 0x3d0b2103, 0x93d54e4b, 0x94d501b4, 0x92d501b8, 0x9bd101bc, 0x9cd10234, + 0x93c10238, 0x3090d17c, 0x2891d102, 0x2c92d102, 0x0b402702, 0x2bce4bbd, + 0x0be46bd3, 0x03e24bd1, 0x20988901, 0x02349bd5, 0x02389cd5, 0x023090d5, + 0x02289dd5, 0x022c9ed5, 0x033b8ff6, 0x07c9847e, 0xc96b7ed0, 0xdff604c6, + 0x402702cb, 0x118c749d, 0x4d4ff6f4, 0x1f1d2701, 0xe42c2701, 0xc1a074c1, + 0x4103a473, 0x410b3103, 0x4153320b, 0x72d13153, 0xf1510184, 0xc5a074c5, + 0x12faa473, 0xf493f6bc, 0xd10653d8, 0xc801d04d, 0x01071dd1, 0xe9be1d07, + 0x0ff60106, 0x1c7e03ae, 0xa70deed1, 0x3074c103, 0x74d54373, 0x74d10188, + 0xfe010188, 0x0b7c73c1, 0xd5432b4e, 0x07018874, 0x004fec34, 0x39400000, + 0x95f49302, 0x43d50653, 0x6d5e0188, 0xd0e57ef6, 0xfeead0ee, 0x1ff6f111, + 0xd55efee4, 0xc473d1fe, 0x75f29301, 0x30e80653, 0x24d1feae, 0xfe2101c8, + 0x3e0b4103, 0x01c824d5, 0x01c423d5, 0xecfe995e, 0xfa90406c, 0x5e406c27, + 0xf211fa8a, 0x534af593, 0x1c7dd106, 0x2121e402, 0x2b4c07fa, 0x8140e84b, + 0x33048706, 0x87040b44, 0x07040b40, 0x066cbe1b, 0x07b00701, 0x321c270d, + 0xbe310c03, 0x41010691, 0x1bf481f3, 0xd1430b0d, 0xc2114c43, 0xbccc1d03, + 0x54b91928, 0x41030219, 0x3f6b3407, 0x3a273b08, 0x54bd4027, 0x53bd021a, + 0xbce80219, 0xb9059129, 0x93021a74, 0x0652e3f2, 0x34074103, 0x3b083f6b, + 0x40273a27, 0x021924bd, 0x021a23bd, 0x021a74b9, 0x52c6f393, 0x7d46f406, + 0x1c3dd105, 0xf99a5e02, 0xcf6bfc21, 0xbe47fe11, 0xb346b4e9, 0x4de00006, + 0x017bffff, 0x01774cee, 0xe407f191, 0xb34c10f1, 0x2c070006, 0x029a4ce2, + 0xf0013007, 0x41034207, 0x1d27d027, 0x2e1b011f, 0x063be4ea, 0x0637efe6, + 0x4c034307, 0x003ee880, 0x017f0800, 0x419b4873, 0xd1033407, 0x03e2f248, + 0x3fe605be, 0xe02705ba, 0x1d272027, 0x4307011f, 0xe8804c03, 0x0800003e, + 0x21030137, 0x419b4873, 0x2dee3407, 0x0402013c, 0x4d0740d6, 0x24024153, + 0x4e07e103, 0x749d4f6b, 0x91f1018c, 0x8c7299fe, 0xb346bced, 0xe1f50006, + 0x0006b34c, 0xe68d749d, 0x27fe0c2f, 0x27011f4d, 0x0407e43c, 0x4ee81307, + 0xe2080000, 0x804c0300, 0x409b4873, 0x00003ee8, 0x0300ca08, 0x3873803c, + 0xf208319b, 0x23071407, 0x35fde35e, 0x05f331f4, 0xfcca5e53, 0x0130d4d1, + 0xf11e4ce4, 0xcf257ef9, 0xd1d13007, 0xd2d1014c, 0x0d070150, 0x0c034c07, + 0xf1f77ea8, 0x013cd4d1, 0x050240fa, 0x0138d4d1, 0x04123027, 0xe3073127, + 0x014474d1, 0x04f304fa, 0x5196f493, 0x4043d106, 0xb330f201, 0x5ee0a7f9, + 0x4327f9ae, 0xe2fcb35e, 0x11f8758d, 0x33f191f4, 0x03410b44, 0x06b2b84f, + 0xe043d100, 0x73c30b01, 0xe04cd5c1, 0xf8925e01, 0xffff3f27, 0xc25e3fff, + 0x3c4c27fd, 0x5e89249d, 0x4307f786, 0x7c3d4cf0, 0x7eef1ef7, 0xf411c6a3, + 0x4ff66007, 0xfe510325, 0x02647ed5, 0x74d5f401, 0x1f5e0280, 0x8d7499fd, + 0x9bfefd5e, 0x803c0331, 0x375e3873, 0x03409bff, 0x4873804c, 0x07ff1f5e, + 0x03419b43, 0x4873804c, 0x34072103, 0xfec8d2ee, 0xfec804e2, 0x2027e103, + 0xfebee6e4, 0xc75e4627, 0x9b4307fe, 0x804c0341, 0x7d5e4873, 0xc2f77efe, + 0xf27e0120, 0xbd03e4c2, 0xe0f211fc, 0xd103d122, 0x27019c7c, 0x27b027d0, + 0x87280710, 0xf843f141, 0x030006b4, 0x88b30b11, 0x074c07f2, 0x184c533d, + 0x38330807, 0x34ab2c07, 0x01032833, 0xb2be1027, 0x2b0700e0, 0x2c0b3027, + 0x48be3d4b, 0x0dec00e9, 0x00df0100, 0x01000d27, 0x025873d1, 0x430b4347, + 0x0273040b, 0x025870d5, 0x93fc5b5e, 0x065073f4, 0x077c42c1, 0x0730271d, + 0x1f1c730d, 0x00e074be, 0x27142c27, 0x07500730, 0xe100be61, 0x51fe9300, + 0xecd10650, 0x8007022c, 0xebd19107, 0xc1e80228, 0x4c07032a, 0xec07db07, + 0x531f4c33, 0xabe173d1, 0x669edad4, 0x07609ece, 0x2b460735, 0xd54e6b3d, + 0xd5022073, 0x5e022474, 0x707efb17, 0x5fd0eecd, 0xf6f211fc, 0x5efc592f, + 0x1a7efc4d, 0x9402e4c2, 0x152127f6, 0xf68d5ef2, 0x0343c4e2, 0x2407f301, + 0x615eec07, 0xed84e2fd, 0x91f411f6, 0x0b4433f2, 0xb84f0342, 0xd10006b2, + 0x0b01e443, 0xd5c173c3, 0x5e01e44c, 0xd8c2f6fc, 0x0735079f, 0x6b382b46, + 0xbdf19349, 0x13d5064f, 0x14d50220, 0xb05e0224, 0x010de8fa, 0x27ff2304, + 0x5e04000d, 0xd4d1ff1c, 0x04f20148, 0x012702d3, 0x017074d1, 0x4f92f193, + 0xb74ff606, 0x6414d102, 0x6c12d101, 0xd5400b01, 0x23016414, 0x1234072a, + 0x99320724, 0x13d57014, 0x41530164, 0x017014d5, 0xd1fa135e, 0xe80130d4, + 0x027f1e4c, 0x012cd0d1, 0x0120dbd1, 0x21f12087, 0x0006b360, 0x0124dcd1, + 0x31074107, 0x2b1f4c73, 0x03c46bb3, 0x1e1c2701, 0x0120dbd5, 0x0124dcd5, + 0x01024fbe, 0x012cd0d5, 0x74d1fc01, 0x72d10128, 0x73d10120, 0xdc070124, + 0x071fdc73, 0x4b2c0b04, 0x0344873d, 0x1e1c2701, 0xb3604cf5, 0x72d50006, + 0x73d50120, 0x19be0124, 0x74d10102, 0x70d50130, 0xf6930128, 0xe8064eec, + 0xf93e1e4c, 0x4d072c07, 0x331d2c53, 0xab3c0743, 0x07333342, 0x2b940783, + 0x079d6b8c, 0x2068d5e0, 0x2469d501, 0xe8e12301, 0x870276e0, 0x6021f12e, + 0x070006b3, 0x332107be, 0x07212b23, 0x1f4c7342, 0xd407c207, 0xd94bc80b, + 0x6cd5b123, 0x6dd50120, 0xb0e80124, 0x2b870245, 0xb36021f1, 0xeb070006, + 0x210b2147, 0x4c734207, 0x0702071f, 0x4b0c0b14, 0xd5e1231d, 0xd5012060, + 0xe8012461, 0x870216e0, 0x6042f14e, 0x270006b3, 0x0b3247db, 0x73430732, + 0x300b1f4c, 0x63d5414b, 0x64d50120, 0xe1230124, 0x872ae0c8, 0x6040f14e, + 0xd10006b3, 0xd1012071, 0x07012472, 0x73300740, 0x310b1f4c, 0x73d5424b, + 0x74d50120, 0xfdf00124, 0xf8765ed6, 0x1e1eec03, 0xd1c007d3, 0x0b026474, + 0x07f051cd, 0x23042b3c, 0x05fb9331, 0x03e2064e, 0x0c2bfccc, 0x68be1c07, + 0xd0e20101, 0xb4b9fcc0, 0xf101027c, 0x41033487, 0x31f54f6b, 0x0006b520, + 0x027cb4bd, 0x4027482a, 0x027cb4bd, 0x0280b8d1, 0x90270d07, 0x2027d027, + 0x43f14287, 0x0006b520, 0xd30b2103, 0x4807f088, 0x4c531907, 0x07183318, + 0xab2c0708, 0x33302714, 0xddb7be08, 0x07b00700, 0x072807c1, 0x27060739, + 0xdda7be10, 0x272d0700, 0x4b200b30, 0x070b0731, 0xe639be1c, 0x81f29300, + 0x0d08064d, 0x0d270101, 0x24d10100, 0xfc21025c, 0x340b3447, 0x0273030b, + 0xcf6b4027, 0xd58c249d, 0x5e025c20, 0x74b9faa8, 0x46f00219, 0x3027fa88, + 0x4d4ef493, 0x1843bd06, 0xfa7a5e02, 0x021c3dd1, 0x34bd4127, 0x195e0218, + 0x4b80e2f4, 0x91f411f4, 0x0b4433f3, 0xb84f0343, 0xd10006b2, 0x0b01e843, + 0xd5c173c3, 0x5e01e84c, 0xc4d6f448, 0xfcd4b1f4, 0x4cab4b07, 0x276d4fd6, + 0x5ee027d0, 0x94b9fcdb, 0xfe010254, 0x41033487, 0x3ef54f6b, 0x0006b4f8, + 0x025494bd, 0xfc1948ea, 0x94bd4027, 0x105e0254, 0xd54103fc, 0x5e0130d4, + 0x41e8fdb0, 0x4123f780, 0x017014d5, 0xd1f7775e, 0x270140d4, 0x27401231, + 0x23030730, 0xfd225e01, 0x7e5e4013, 0x27f301f9, 0xfa4c5ed0, 0x095ee227, + 0x5ee1a7fb, 0x4027f4ca, 0x07fa755e, 0x1f4c734c, 0x1c531407, 0x0b20271f, + 0x072c4b1b, 0x07310702, 0x1f0c3342, 0x10273153, 0x30ab2027, 0x182b4173, + 0xd307296b, 0x423ae407, 0xfc4542ee, 0xfc4113e2, 0x49073807, 0x464b350b, + 0x022073d5, 0x022474d5, 0x03f7565e, 0xe85e1eec, 0x1ebc03fd, 0x03fdb95e, + 0x885e1eec, 0x5e2127fd, 0xfa4ef9c8, 0xc027329b, 0xb1072107, 0x33182c53, + 0xab4027c8, 0x07b833c2, 0x072307a0, 0x0734070b, 0xe4d1be1c, 0x87ea0700, + 0x2be4334a, 0x33ea0be4, 0x03d007e4, 0x01947cef, 0x27002700, 0xe41133bc, + 0xe403e201, 0x3407420b, 0x0b1f3c53, 0x3a317334, 0x4001033d, 0x4efa8efb, + 0xc5f563f5, 0xf09930f0, 0xddfd937c, 0x4f6b064b, 0xc540f4c5, 0xd48944f0, + 0x50d0891c, 0xf045f435, 0x891ed489, 0xf2c552d0, 0x39f29338, 0xf4550601, + 0x22c1f065, 0x20d48944, 0xc554d089, 0xf2253cf3, 0x7534f1c5, 0x99f085f4, + 0xdec118d4, 0x99f49564, 0xd3014cd0, 0xd2c1f0a5, 0x80e0e834, 0x30d4c106, + 0x4eee1027, 0x41070672, 0x140741c3, 0xd0c11f6b, 0x68d4993c, 0x2150f0c5, + 0xc1d811de, 0xd79938dc, 0x40db990c, 0xdac1d651, 0xc1d54148, 0x4ff644d9, + 0x412705c9, 0x06d923ee, 0x2407f021, 0x0ff64127, 0xf33105ee, 0x42abf041, + 0x03ee2127, 0xf3510652, 0x42abf061, 0x03ee2127, 0xf3710654, 0x42abf081, + 0x03ee2127, 0xf3910656, 0x42abf0a1, 0x03ee2127, 0xf3c10658, 0xab42ab50, + 0xee212714, 0x2706873e, 0xbb1fe641, 0x2742ab05, 0x4e8cee31, 0x2743ab06, + 0x507bee21, 0x2742ab06, 0x526aee31, 0x2743ab06, 0x5459ee21, 0x2742ab06, + 0x7e4ff630, 0x84d4d105, 0x30f0c102, 0x04eef305, 0x2127055a, 0xf2c1f2b5, + 0x30f3c134, 0x0288d2d5, 0x0284d3d5, 0x4abafd93, 0x0d1c2706, 0x2d073d07, + 0x07343c03, 0x23300141, 0x03200511, 0x98240334, 0x20d289f4, 0xf2154027, + 0x029cd1bd, 0x029ed4bd, 0xbd69d49d, 0x93029dd4, 0x064a87fc, 0x05502ff6, + 0xc4bd4327, 0xd4b9029c, 0xfc9302a0, 0x46064a74, 0xa3c3b945, 0x9cc3bd02, + 0xa1c4b902, 0xb9454602, 0xbd02a4c4, 0xb9029dc4, 0x4602a2c4, 0xa5c0b945, + 0x9ec0bd02, 0xb9302702, 0xd502a6c4, 0x460294c3, 0xa8c2d145, 0x94c2d502, + 0xacc4b902, 0x98c3d502, 0xd1454602, 0xd502b0c3, 0x7e0298c3, 0x0506c249, + 0xc4bd4027, 0xf4c1029c, 0xc14d7630, 0x0cd634f0, 0x4027c005, 0x02b4d2d1, + 0x936cd4c5, 0x064a03f3, 0xffff2fc0, 0x272affff, 0x19329d41, 0x02a234bd, + 0x029e32b9, 0x02a034bd, 0x02a134bd, 0x029d30b9, 0x029c34b9, 0x02a532bd, + 0x02a334bd, 0x02a430bd, 0xf58ef543, 0xf493d801, 0xc60649c8, 0x47b1b58f, + 0x30274291, 0xa0279707, 0x00002f30, 0x2f274000, 0x3fffffff, 0x42073027, + 0x02071307, 0x33104c53, 0x14ab101c, 0x07100c33, 0xbe3a0729, 0xf000e247, + 0x27048711, 0xffffff0f, 0xc5dba13f, 0xc0277cd0, 0xbff45007, 0x40000000, + 0x4b07043b, 0x4c531c07, 0x101c3310, 0x29070b07, 0x0c3314ab, 0xbe3a0710, + 0xc100e213, 0xd0c530d2, 0x1320e880, 0xc925fa05, 0x73420706, 0x32071f4c, + 0x044d41f0, 0xffff3f27, 0xf0933fff, 0xc105feb8, 0x6307440b, 0xd3c56373, + 0x88d6d530, 0x84dbd501, 0xe0c30701, 0x0704d284, 0xbe15070c, 0xe800fc91, + 0x08052101, 0x2701000d, 0xf493ff0c, 0x9d06490c, 0xd2998840, 0x89d29d88, + 0xa7c11a7e, 0xfeffff4e, 0x6b094399, 0x8733830f, 0x2b343343, 0x4d34f934, + 0x99ff0000, 0x400218d1, 0x04e00407, 0x03e00486, 0x0123047d, 0x4f6b4007, + 0x42f00103, 0x3ebe0471, 0x010300fc, 0x2f6b2007, 0x0144f3c1, 0x70d29df4, + 0xf19343ab, 0x270648b4, 0x27448630, 0xabf4b131, 0x094fe643, 0x38f4c103, + 0x43330c07, 0x14d5460b, 0x01730188, 0x061504f2, 0x3027b123, 0x4127b20b, + 0x01002d27, 0x12d50027, 0x14c50194, 0x781bc56c, 0x9d71149d, 0x139d7413, + 0x73139d72, 0x018c12d5, 0x019012d5, 0x40873007, 0x430b3433, 0xb2b84f03, + 0x30270006, 0x01ec43d5, 0x01dc43d5, 0x01e043d5, 0x01e443d5, 0x01e843d5, + 0x03c40103, 0x40f0c1d8, 0x6127d421, 0x60270496, 0x482ef293, 0xdd40e806, + 0x11140704, 0x84219d24, 0x27344c08, 0x3407334c, 0x9d0c2499, 0x4fe68523, + 0x2351041f, 0x049030e8, 0x239d2441, 0x344cec86, 0x249d0472, 0x004d2787, + 0x5cd4d501, 0x58d4d502, 0xedfc9302, 0x447e0647, 0x2002e8c5, 0xf6f21105, + 0xd1047d2f, 0x070294d4, 0xe84a26a5, 0x08046a41, 0x4c27654c, 0x07c40764, + 0x1fcc73b4, 0x07c51e7e, 0x27209b25, 0x070b0730, 0xd7c7be1c, 0x642c2700, + 0x57be3027, 0x501200d8, 0xd4d1a007, 0x1a070258, 0x24073407, 0x3c730a07, + 0x1f1c731f, 0x00d7a4be, 0x27807c27, 0x4b070b80, 0x07410718, 0x184c33b0, + 0xb4abb853, 0xc130f2c1, 0x460734f3, 0x1b070127, 0x99fb317e, 0xe00784d4, + 0x4766fa93, 0x07401206, 0x85a499e4, 0xe407e412, 0x0188a0d1, 0xd130a1c1, + 0x2b0294a9, 0x73210710, 0x42071f2c, 0x0c530107, 0x07473319, 0x3340ab31, + 0x4b370b37, 0x33240748, 0x3853182c, 0x019cabd5, 0x01acaed5, 0xa30732ab, + 0x91e89d46, 0x490703a7, 0x27659c08, 0xc407644c, 0xcc73b407, 0xc4657e1f, + 0x277cd4c1, 0x07409b30, 0x070b0724, 0xd70bbe1c, 0x27302700, 0x9bbe642c, + 0xd4d100d7, 0x30070298, 0x033345d6, 0x1a27030b, 0x00fa21be, 0xa3123007, + 0xf2c1a307, 0x34f3c130, 0x1a074607, 0x8b7e0027, 0x7cd4c1fa, 0x0258ded1, + 0x3e071407, 0x04072e07, 0x731f3c73, 0xc2be1f1c, 0x3c2700d6, 0x0b402780, + 0x07414b30, 0x182c3324, 0x32ab3853, 0xf2c11307, 0x34f3c130, 0x01274607, + 0x07fa517e, 0xc3e57ec0, 0x15190ccc, 0x0c271007, 0xf9c0be1e, 0x0b00e800, + 0x100cec03, 0xc00b02ec, 0x03030c07, 0xd586d499, 0x0701acd0, 0x61f29330, + 0x40120646, 0x24993407, 0x07341287, 0x84249934, 0x40121207, 0x14990407, + 0x07041285, 0xa823d504, 0xac20d501, 0x982ad501, 0x9cded101, 0xe43c2701, + 0xd3c52e07, 0xacd3d1a4, 0xa7215301, 0x1f4d27c0, 0x84d1d101, 0xd5b02702, + 0xc50250d2, 0xded5a0d4, 0xd3d501a0, 0xd2d501b0, 0xd2d50240, 0xd2d50244, + 0xd2d50248, 0xdc8d024c, 0x92dc8d8e, 0x2790dc8d, 0x0100000e, 0xbd8ddb9d, + 0xbe0254db, 0xd100f959, 0xd50288d1, 0x27028cd0, 0x0100000e, 0x00f948be, + 0xd534f4c1, 0xd50290d0, 0x7e017cd4, 0x4027c31f, 0xd52edc89, 0xd50180d0, + 0x7e01d0d4, 0xc012c30f, 0x131e0ce8, 0xd0d0d502, 0x93d40101, 0x0645a3f1, + 0x01c144e0, 0x433cf2c1, 0xd52333f5, 0x8e0178d2, 0x8df493f5, 0x30270645, + 0x2768439d, 0xc1f40541, 0xd4d130f0, 0x40ee0284, 0xf493faaa, 0xd1064574, + 0xc1028843, 0x402734f0, 0x4127030e, 0x975ef4b5, 0x5e3127fa, 0xf331fa81, + 0x4027f041, 0x212742ab, 0xfa1430ee, 0x4027611e, 0x312742ab, 0xfa47c8ee, + 0x2700905e, 0xffffffbf, 0x5ec0273f, 0x467efbbe, 0xad02e0b7, 0xbf01e0fa, + 0xbd472700, 0x27029ec4, 0xbd452732, 0xbd029cc3, 0x5e029dc4, 0x1127fa9a, + 0x27f98d5e, 0xf9905e10, 0xfb7f1ff6, 0x00000ff0, 0xfb774000, 0xf6fb6e5e, + 0xf0fbb94f, 0x0000002f, 0x5efbb140, 0xf351fba8, 0x2027f061, 0x212742ab, + 0xf9b030ee, 0xf081f371, 0x42ab2027, 0x30ee2127, 0xf391f9ae, 0x2027f0a1, + 0x212742ab, 0xf9ac30ee, 0xf3c12027, 0xab42ab50, 0xee212714, 0x1ef9aae3, + 0xab30272c, 0xee212743, 0x27f9b4b7, 0x2742ab20, 0xb2a6ee31, 0xab3027f9, + 0xee212743, 0x27f9b095, 0x2742ab20, 0xae4fe630, 0xff275ef9, 0x41272027, + 0xf97b1ff6, 0x21ff315e, 0x074027f0, 0xe6412724, 0x5ef9290f, 0x4527ff12, + 0xc4bd3227, 0xc3bd029e, 0xe35e029c, 0x5e2427f9, 0x2627fb98, 0x07fb935e, + 0x108c5387, 0x481e8cd4, 0x5e88d89d, 0x84e0fb3e, 0x82e000f9, 0x0c2700ba, + 0x0710271e, 0xbe302725, 0x3400d441, 0x1015d611, 0x0000000f, 0xff0f2740, + 0x933fffff, 0x05f997f3, 0x07443bc1, 0x07637360, 0x30d0c5c0, 0x0188d6d5, + 0x0184dbd5, 0x07fae25e, 0xbe15070c, 0xcc00f771, 0x01270f01, 0x9dfae55e, + 0x219d8723, 0xfbef5e86, 0xd7790ce8, 0x780c27fa, 0x27fad15e, 0x3c27504c, + 0x4814d564, 0x8010c101, 0x276e4c27, 0x3813d520, 0x3c14d501, 0x3c3c2701, + 0xd51e4c27, 0xd5016c12, 0xd5014013, 0xd5014414, 0xd5013412, 0xd5014c10, + 0xd5015012, 0xd5015c12, 0x5e017012, 0xf493fe00, 0xd5064398, 0x5e01d04c, + 0x4c27fde9, 0xfb8c5e33, 0x5e0f0c27, 0x0c27fd12, 0x5e102778, 0x3027ff47, + 0x27fb6f5e, 0x5ec027b1, 0x0027fc65, 0x27fcf95e, 0x5ec027b1, 0x767efba0, + 0xca01e0b5, 0x7c03e400, 0x004d27fb, 0x58c4d502, 0xfb715e02, 0x225e4027, + 0x538707fb, 0xb007108c, 0x4807c027, 0x271f8c10, 0x24071e4c, 0x0b073027, + 0x3ebe1c07, 0x900700d3, 0x1134a107, 0x0f301616, 0x40000000, 0xffff9f27, + 0xa0273fff, 0x24074027, 0x0c530507, 0x0723331d, 0x3320ab15, 0x07010713, + 0x1c0c5342, 0x31074433, 0x343340ab, 0x426b312b, 0xce234aca, 0xf2931d4a, + 0xc105f864, 0x6907442b, 0xc9076373, 0xd530d9c5, 0xd50188d6, 0x5e0184db, + 0x93c2fe84, 0x079307e2, 0xc1dc1ea4, 0xf3c130f2, 0x27460734, 0x7e150700, + 0xc499f67a, 0x07401286, 0x87c49904, 0x04070412, 0xc4d54027, 0xc5d501ac, + 0xc0d50198, 0xc4d501a8, 0x5e5e019c, 0x554d27fc, 0x58c4d501, 0xfaad5e02, + 0xf1930427, 0x9e0108e4, 0xd500c571, 0x5e018810, 0xfb4ef9e8, 0xfe99f063, + 0x2cfc9928, 0xdf6bd407, 0xfc054e07, 0x9918fb99, 0x747e14fc, 0x34dc54f6, + 0x3419f371, 0xf2934e36, 0x27064250, 0xa424bd40, 0x34cc5401, 0xe419fe81, + 0x402749b6, 0x01a524bd, 0x9134bc54, 0x963419f3, 0x43402745, 0xa624bdf0, + 0x27fb8e01, 0x43341d40, 0xbd3127f0, 0xd501a623, 0x8e01b02b, 0x1d4027fb, + 0xd54127e4, 0xbd01ac2c, 0x1e01a524, 0x1d4027cc, 0xfdf29334, 0x41270641, + 0x01a82dd5, 0x01a424bd, 0x3ea7a81e, 0x11fdefff, 0x6a4dd834, 0x23070efc, + 0xf4e84327, 0x3ddc2311, 0xa7f6fc6a, 0xfdefff3e, 0x4dd83451, 0x070efc6a, + 0xe8432723, 0xdc2351f4, 0xf6fc6a3d, 0xfe4efe0b, 0x12270227, 0x013d0fbe, + 0xffff3ea7, 0x5834b9ff, 0x8b41530e, 0x27413840, 0xa7fe8e01, 0xfd4fff4e, + 0x00274201, 0xf49b4027, 0x9911270e, 0x123b0e33, 0x3ea713cb, 0x38fd4fbf, + 0x05412711, 0x03115334, 0x8e12d634, 0x07fb4efe, 0x01c321c2, 0x072211c4, + 0x931007b1, 0x0107ddf0, 0x00c112be, 0xf093c231, 0x27010800, 0xc105be10, + 0x03bf6b00, 0x31d127c4, 0x931d07c2, 0x0107ebf0, 0xf0bed103, 0xc40300c0, + 0xec0fdcc4, 0xc027bd86, 0xbfffdea7, 0x03091efd, 0x20dc03c1, 0x413ac8c0, + 0x8742c6d4, 0x8042f14c, 0x07000192, 0xcbf0931c, 0xc0be0107, 0xd14100c0, + 0x07d8f093, 0xc0b5be01, 0x93d15100, 0x0107ddf0, 0x00c0aabe, 0xd4454027, + 0xdc03c103, 0xc8c8c420, 0x2e9af493, 0xe6431905, 0x5efb0e34, 0xfb0eb1f8, + 0x4eade25e, 0x272007fe, 0xbff09310, 0x567e0107, 0xff2ea7ff, 0x4127ffff, + 0x4fff3ea7, 0x5924bdfd, 0x2731010e, 0x0ef49b40, 0x270e2399, 0xcb213b21, + 0xbf3ea723, 0x2138fd4f, 0x34054127, 0x34032153, 0x4f2722d6, 0x017d7841, + 0xfe8ef4e8, 0x0f6bfd4e, 0xfd930706, 0x07010783, 0x270d0721, 0xff077e11, + 0x01271d07, 0x00c3649e, 0x0778fd93, 0x07e91e01, 0x1e012710, 0x07fb4ed8, + 0x931027b0, 0x01076ff0, 0x00c00abe, 0xf093b111, 0xbe01077c, 0x2100bfff, + 0x83f093b1, 0xf4be0107, 0xb10100bf, 0x078af093, 0xbfe9be01, 0x93b23100, + 0x010791f0, 0xdcbe1027, 0xdb0700bf, 0xc127d403, 0x1c07d231, 0x077cf093, + 0xbec10301, 0x0300bfc7, 0x0fccc4d4, 0x0e0b07ec, 0x4e9d1efb, 0xffeea7f9, + 0x1ea7ffff, 0x99feffff, 0x14992ae3, 0x6ba00708, 0x8e43eeaf, 0xd72ea701, + 0x2479ffff, 0x022744d6, 0x2379f98e, 0x93072479, 0x30274f4b, 0x017740e8, + 0x03072419, 0x44874383, 0x002c4cf1, 0xe499ff00, 0x9dbc0744, 0x11990914, + 0x830f6b09, 0x87d10713, 0x2bd43341, 0x0fbc83d4, 0xffb4de23, 0x510ff6ff, + 0xa7a62601, 0xd07fff4e, 0x43353127, 0x21e44231, 0xec07012d, 0xf610ec53, + 0x9901590f, 0x202705d4, 0x40084f4b, 0xd4592127, 0x4103e1c3, 0xd45d3e07, + 0x4ea73183, 0x07feffff, 0x4143bdb2, 0xc6bf6b01, 0xff3ea7ba, 0x32c1ffff, + 0x07086640, 0xc548534c, 0x4f6b3c32, 0x00f44fe6, 0x4ea7240b, 0xc5ffffff, + 0x3ca74042, 0x25402720, 0x04d49dd3, 0xffff4ea7, 0x3c42d5fe, 0xa7a97601, + 0xfeffff4e, 0x1d3543b9, 0x3127385c, 0x7fff4ea7, 0xa74335d0, 0xd07fff3e, + 0x41c03431, 0x2723070c, 0x31f4e843, 0xf831c423, 0xffff0ea7, 0x4104b9fe, + 0x27457601, 0xff4ea731, 0x4345d07f, 0x1c831907, 0x1b11c40f, 0xffff2ea7, + 0x442499ff, 0x41033127, 0xa744249d, 0xd07fff4e, 0x014003bd, 0xd9be4155, + 0xd31900f2, 0xffd71ea7, 0x1d3103ff, 0x831479d3, 0x41230f4c, 0x2fab2407, + 0x2f6b28e6, 0xffd73ea7, 0x59327dff, 0x5d410334, 0x2705e634, 0x0ef49b40, + 0x4fff3ea7, 0x3834c5fd, 0x0c27b906, 0x19f98e10, 0x1d410314, 0x39131914, + 0x4b34ce14, 0x43831419, 0x42f14487, 0xff00002c, 0xa30f2c83, 0xbd1e802c, + 0x8e200c27, 0x8e0827f9, 0x8e0127f9, 0x5e3127f9, 0x2ca7fe88, 0xff0c5e20, + 0x0e4ce4d1, 0xc524e399, 0x430740e4, 0x40cc4f4b, 0x24eb9d3e, 0x4fe6d479, + 0x0427fe99, 0x2027f98e, 0x4107831e, 0x43834123, 0x44333487, 0x44e9432b, + 0xff000052, 0xdb7d3027, 0xd46dd35d, 0xdb3dd31d, 0x2780ec38, 0x04d49d41, + 0x5e05de9d, 0x3bcefe7f, 0x930327c4, 0x010579f1, 0x00c0e89e, 0x2ea7f54e, + 0x27fddfff, 0x2000004e, 0x273415c1, 0x0824d530, 0x0823d502, 0xff4ea702, + 0x4211fd4f, 0x89d413c1, 0x32c52614, 0x281a8950, 0x070d1899, 0x33a49bc5, + 0x61071ccc, 0xac0b7007, 0x90078103, 0x01089ba9, 0x01049ed1, 0xb6e62b07, + 0x4ccbe401, 0x00004fd0, 0x070b1000, 0x23e8033b, 0xb8f3f821, 0x03020700, + 0x231e0701, 0x07dc0718, 0x23180320, 0xb3f2f801, 0x2b410700, 0x8643734e, + 0xad4b1b48, 0x86010894, 0x11300707, 0x15120114, 0x03e205e4, 0x104c5418, + 0x470b4333, 0x03884ec5, 0x03f338e8, 0x9df8f098, 0x0ea7c507, 0x83ffffdf, + 0xa6be0fcc, 0xc33300c1, 0x007cc3f9, 0xc4f9ff00, 0xff00007e, 0x412338a3, + 0x007ec4fd, 0x0ea7ff00, 0xfdffffdf, 0x00007cc3, 0xc15cbeff, 0x3460c100, + 0x330f0c83, 0x7e0e2303, 0x0439ffff, 0x3ea74eb6, 0x01fd4fff, 0x9b402732, + 0x3ea70ef4, 0x99ffffff, 0x31270e34, 0x34cb323b, 0x4fbf2ea7, 0x273138fd, + 0x53240541, 0xd6240331, 0x01f58e32, 0xf44ccbe4, 0x0000004f, 0x5eff3810, + 0x1301ff3d, 0x43cb4d07, 0x4ff4d307, 0x10000000, 0xa3eeff41, 0x3a5eff35, + 0xc40dbeff, 0x4ea81e00, 0x29fc93fc, 0xc11905f2, 0xc1681fc6, 0x402744cd, + 0x30a72027, 0x8d0cc49d, 0xc2654ac3, 0xc50bc49d, 0xdf834cc2, 0x8000000f, + 0xc061d0c8, 0x4d276a11, 0xd49b0398, 0x3f033d07, 0x00066834, 0x104632b9, + 0x103431b9, 0x2c264127, 0x41ab4633, 0xb95ac49d, 0x93104034, 0x05f1d7f2, + 0xb95bc49d, 0x27103534, 0xc1467610, 0x40274423, 0x241d3103, 0xc55c219d, + 0xfc8e4423, 0x274423c1, 0x27310311, 0x9d241d40, 0x23c55c21, 0x27ec1e44, + 0x23be1e40, 0xf0dfa3d1, 0x03ffffff, 0xbe951ed1, 0xbe00c2b7, 0xbe00c0bb, + 0x0700c0aa, 0x333d074d, 0x2b353343, 0x873d2b34, 0x33d30bd3, 0x70d4f9d3, + 0xf6000678, 0x07ff774f, 0x030c071d, 0x0678641f, 0xfdf27e00, 0x4eff675e, + 0x7ec007fc, 0xc4d1ff2b, 0xf35302f8, 0x41036cbf, 0xc3050027, 0x02f8c4d5, + 0xfc4efc8e, 0x0f30c007, 0x40000000, 0x036ff093, 0x7efc8e01, 0x0fabadbf, + 0x0103dc07, 0xd09bdfab, 0xde30d103, 0x93010000, 0x010377f0, 0x0c07fc8e, + 0x07b40a7e, 0xb41b7e0d, 0xfc8e0027, 0xc007fc4e, 0xc0ad9c7e, 0x03c01002, + 0x93012029, 0x010399f0, 0xc6d4fc8e, 0xabdc07f7, 0xb4237edf, 0xd1030fab, + 0xd103d09b, 0x0000ded0, 0xf0931201, 0x8e010357, 0xe2c3c0fc, 0x0370f093, + 0x07fc8e01, 0xb3e97e0c, 0xce7e0d07, 0x8e0027b3, 0x000000fc, 0x00001000, + 0x08000000, 0x0000000f, 0x07c1f54e, 0x3c0dc138, 0x07240a99, 0x27c107b0, + 0x27502780, 0xddfc0c6c, 0x00a41000, 0x4d034d07, 0xc4ea2000, 0x3c27009a, + 0x2b06071b, 0x27010336, 0x3b4d0722, 0x0b405b20, 0x5b41dc2d, 0x2755f3f0, + 0x4a3b0f4c, 0xf4139487, 0x134e01b0, 0x4201aff4, 0x2b0b2247, 0xb3012149, + 0x490b4187, 0x3707430b, 0x11033d0b, 0x3a074305, 0x3703214d, 0x030ade0b, + 0x18025127, 0x41278107, 0x42234a3b, 0x5936841a, 0xa194dcca, 0x3cb3c1b4, + 0x2b3cbcc5, 0xa54c0b43, 0xc2f58eb4, 0x2007982c, 0x070c2c23, 0x274a3b42, + 0x3b9487e1, 0x07aa1ee0, 0x7e0b0713, 0x1007b02c, 0xd97e0b07, 0x24ba99b5, + 0xff5cdcea, 0xf453c61e, 0x4e01ff34, 0x20270607, 0x851e9027, 0x02c1fa4e, + 0x4003c13c, 0x04a1d107, 0x0fffdd03, 0x0fffdde3, 0xb007322b, 0x00c1d42b, + 0xd634d638, 0x07fa8ed7, 0x243dcaad, 0xc20bca07, 0x90be1c07, 0x0b0700bd, + 0xfd7e1c07, 0xc6da2bfe, 0x7e0d07d0, 0x0b07b510, 0xfa0e1d07, 0x07feeb5e, + 0x0bca07a3, 0xbe1c07c2, 0x0700bd6b, 0x7e1c070b, 0xda2bfed8, 0xfa4eda1e, + 0x07310499, 0x07a207d0, 0x56c107b3, 0x0cb2c04f, 0xc87e0a07, 0x5d0fc6b4, + 0x475ab3c0, 0x144c234c, 0x0b24d199, 0x3b31274d, 0x23420931, 0x2932c231, + 0x41273c07, 0xd1a1433b, 0x31233407, 0x13eb130b, 0x0d07140b, 0x89ff577e, + 0x0d0732d4, 0x1c074103, 0x0e32d48d, 0xaf525efa, 0x47034107, 0x071ac4c2, + 0x1e31033c, 0xb2e17ece, 0x402706d6, 0xc431d49d, 0xa81e9fb2, 0xfa8e0027, + 0x38033107, 0x0d07b51e, 0x257e1c07, 0x9d4027af, 0x0fc631d4, 0x4efa8e81, + 0xffcea7f9, 0xc4d1ffff, 0xb0070640, 0x91070a99, 0x274d760d, 0xe6d4a1c1, + 0xa700894f, 0xffffdf0e, 0x00bdb0be, 0x2c07b161, 0xdfbe0a07, 0xd4990414, + 0x87d3a12c, 0x07430b44, 0xa74005c0, 0xffffdf0e, 0x00bd6dbe, 0xd499cf26, + 0x0321272c, 0x2cd49d41, 0x2a3bb341, 0x0027320b, 0xf98eb345, 0xffdf0ea7, + 0xbd6fbeff, 0x40c4d100, 0x34c3d106, 0x27448706, 0x1c43ca20, 0x187dc2bd, + 0x187dc4b9, 0xc12745f6, 0xffdf0ea7, 0xbd28beff, 0x278b1e00, 0x27f21ec3, + 0x7dc2bd21, 0x7dc4b918, 0x1e40a618, 0x150c27ef, 0x0ea7f98e, 0xbeffffdf, + 0x6100bd29, 0x0c0c27b1, 0x57be2c07, 0x90070414, 0xffdf0ea7, 0xbcf0beff, + 0xda9fc600, 0xd4999905, 0x03d9a52c, 0x2cd49d41, 0x4eff4a5e, 0x034007f5, + 0x07f06344, 0x99f405d0, 0x1d074902, 0x1c030407, 0x5078be2c, 0x06500701, + 0x43050705, 0x01f58ef0, 0x001d27f0, 0x5458be02, 0xd6500701, 0xf0d49901, + 0x04a441fc, 0x011742fc, 0x06d644fc, 0x081d48fc, 0xd8104cfc, 0x204cfc09, + 0x4cf80595, 0x07009a40, 0x271c270d, 0x01523abe, 0x025ed1b9, 0x1c030527, + 0xd8097e10, 0x3d071d07, 0xb9102c27, 0x33017134, 0x004ea348, 0xf49b0700, + 0x68310340, 0x5ed4b9f2, 0x2747a602, 0x8114b920, 0xa3483301, 0x0700004e, + 0xb940f49b, 0x03025ed3, 0xda110321, 0x4d27e823, 0xf49b8000, 0x483f9b40, + 0x271a31dc, 0x9b02202d, 0x402722f2, 0x070ef49b, 0x9bff8b00, 0x3f9b22f4, + 0xec31d848, 0x33484f9b, 0x4c53174c, 0x8348131b, 0x2345a647, 0x0f4c8341, + 0x9b104c33, 0xd49940f4, 0xbf4c83f0, 0x26f0d49d, 0x49d49945, 0xff2b41e0, + 0xa181d499, 0x9d4103d2, 0x3d2781d4, 0xf0010480, 0xfb932345, 0x8905254c, + 0x987e78bc, 0x0b0353c0, 0x27f001c0, 0x78bc8d11, 0x015129be, 0xffff3ea7, + 0xbd4127ff, 0x99066934, 0x40270f32, 0x270ef49b, 0xf5228741, 0x02b04024, + 0xf0d399ff, 0xfedb3ff6, 0x3e5cf493, 0x43050701, 0x8ed405f0, 0xb0d6d1f5, + 0x08d8d102, 0x14648901, 0x89306a89, 0x69891263, 0x10d7d132, 0x18d2d101, + 0x1cded101, 0x270d0701, 0xdcd1211c, 0xdbd1010c, 0xa32b0114, 0x820b942b, + 0x0cbe7e0b, 0xd4990151, 0x33ac0bf1, 0x9b0b0c4c, 0x81534fab, 0x00004ea3, + 0x53715303, 0x9b9153a1, 0x3e2740f4, 0x9b020000, 0x4d2740f3, 0xf49b8000, + 0x7e0d0740, 0xd499c7e9, 0x41f49bf2, 0x9b3c6399, 0x648941f3, 0x41f49b30, + 0x9b326389, 0x85f641f3, 0x7576a5b6, 0x40279536, 0x1e40f49b, 0x004d2714, + 0x40f49b80, 0x9b41f89b, 0xf79b41fa, 0x41f99b41, 0x9b3d6499, 0x639941f4, + 0x41f39b3e, 0xf49b4427, 0x9b302741, 0xd49940f3, 0xc743e080, 0x64d4b903, + 0x6b412302, 0xe144f44f, 0xfcd49907, 0x44863127, 0x33133027, 0x2741f39b, + 0x41f49b42, 0xf49b4027, 0x56639941, 0x2b346299, 0x9b332323, 0xf29b41f3, + 0x41f49b41, 0x23346499, 0x27440842, 0x41f49b43, 0xf49b4027, 0x41f49b41, + 0x9b40f49b, 0x639940f4, 0xa735c641, 0xfd4fff3e, 0xe87434c1, 0x2708d040, + 0x40f49b40, 0xf39b3027, 0x64d4b940, 0x6b452302, 0xc644f44f, 0xb9d4b905, + 0xb8d3b90a, 0x9b430b0a, 0xd49941f4, 0x404cecfc, 0xd49903da, 0xd34fe6fe, + 0xb8d4b903, 0x684fc60a, 0xcd270027, 0x0fe68000, 0xd49903ad, 0x2d43e080, + 0x07012308, 0x031f6b10, 0x27212701, 0x40f49b40, 0x41273207, 0x9b41f49b, + 0xf19b41f3, 0x40fc9b41, 0x298609c6, 0xe1271027, 0xe0270100, 0x2780d499, + 0x27148631, 0x6343e030, 0xfcd49903, 0x4f6b402b, 0x3341f49b, 0xf39b0f3c, + 0xf0110340, 0xd4b9dff2, 0x01030ab8, 0xb9a004da, 0xe00264d3, 0xe0080235, + 0x2307fe36, 0x6b430737, 0xf037034f, 0x23084c42, 0x6b430731, 0x2448f44f, + 0x004d2705, 0x40f49b80, 0xf39b3027, 0xf6d49941, 0xab0f4c33, 0x40f49b4f, + 0x33426399, 0x3fab0f3c, 0xd140f39b, 0x070130d4, 0xff4ce30d, 0x012c0d03, + 0x4f003027, 0x02020200, 0xd4b93127, 0x13070130, 0x30271f6b, 0x078642e0, + 0x2f6b2307, 0x02e91ff6, 0x02e52ff6, 0x0154d4b9, 0x02dd4ff6, 0x4efc04a1, + 0xbeff00ff, 0x58d4b907, 0xb64ff601, 0x27002707, 0x40f49b30, 0x00df3fe6, + 0x0156d4b9, 0x07534fe6, 0x80004d27, 0xb940f49b, 0x330157d3, 0x003ea338, + 0xf39b0700, 0x57d4b940, 0xff4ce001, 0x4027078a, 0x0740f49b, 0x0f3c3330, + 0xa640f39b, 0x55d4b90d, 0x0d4c3301, 0x4ea34fab, 0x9b020000, 0x2c3340f4, + 0x40f29b0f, 0x4c334107, 0x40f49b0f, 0xd4b91986, 0x48330131, 0x00004ea3, + 0x40f49b07, 0x0132d3b9, 0x3ea33833, 0x9b070000, 0xd4b940f3, 0x48330133, + 0x00004ea3, 0x40f49b07, 0xf49b4027, 0x40f49b40, 0x9b40f49b, 0xf49b40f4, + 0x58d3b940, 0xca3fe601, 0x003d2706, 0x40f39b80, 0x0162d4a9, 0x00004ea3, + 0x40f49b0f, 0x0160d3a9, 0x00003ea3, 0x40f39b0f, 0x0166d4a9, 0x00004ea3, + 0x40f49b0f, 0x0164d3a9, 0x00003ea3, 0x40f39b0f, 0xf49b4027, 0x40f49b40, + 0xf49b4027, 0x9b402740, 0x3d2740f4, 0xf39b8000, 0x484f9b40, 0x271a41dc, + 0x9b02202d, 0x402722f2, 0x070ef49b, 0x9bff8b00, 0x3f9b22f4, 0xec31d848, + 0x33484f9b, 0x4c53174c, 0x8348131b, 0x2345a647, 0x0f4c8341, 0x9b104c33, + 0xd49940f4, 0xfd4c83f0, 0x5ef0d49d, 0x0d07fc13, 0xc1201c27, 0xb0bef8dc, + 0xd499014d, 0x0c4c33f1, 0x4ea34fab, 0x9b030000, 0x3e2740f4, 0x9b01c000, + 0x4e2740f3, 0x9b050000, 0x3e2740f4, 0x9b020000, 0x4d2740f3, 0xf49b8000, + 0xff3e2740, 0xf39b0fff, 0x7e0d0740, 0x4027c481, 0x9940f49b, 0x33e080d3, + 0xd4b9045e, 0x41230264, 0x44f44f6b, 0xd4990081, 0x863127fc, 0x13302744, + 0x41f39b33, 0xf49b4227, 0x9b402741, 0x3e2741f4, 0x9b050000, 0xf49b40f3, + 0x58d3b941, 0x563fe601, 0x40f49b01, 0xf49b4027, 0x003d2740, 0x40f39b80, + 0xdc484f9b, 0x2d271a41, 0xf29b0220, 0x9b402722, 0x00070ef4, 0xf49bff8b, + 0x483f9b22, 0x9bec31d8, 0x4c33484f, 0x1b4c5317, 0x47834813, 0x412345a6, + 0x330f4c83, 0xf49b104c, 0xf0d49940, 0x9dfe4c83, 0x345ef0d4, 0xfcd499fb, + 0x44863127, 0x32133027, 0x9941f39b, 0x3027fed4, 0x31274486, 0x5e41f39b, + 0xf49bff79, 0x9b322741, 0x515e41f3, 0x270d07fc, 0xacbe271c, 0x0c27014c, + 0x7e142790, 0xd4a9d27f, 0x4ea3014c, 0x9b0f0000, 0xd3a940f4, 0x3ea30150, + 0x9b0f0000, 0x4d2740f3, 0xf49b8000, 0x483f9b40, 0x271a31dc, 0x9b02202d, + 0x402722f2, 0x070ef49b, 0x9bff8b00, 0x3f9b22f4, 0xec31d848, 0x33484f9b, + 0x4c53174c, 0x8348131b, 0x2345a647, 0x0f4c8341, 0x9b104c33, 0xd49940f4, + 0xdf4c83f0, 0x5ef0d49d, 0x4127fa97, 0xfca23fe6, 0x9d5e4e07, 0xfcd199fc, + 0x30272027, 0x27fc655e, 0x27312701, 0x5e80004d, 0xd4b9fd31, 0x41230264, + 0x44f04f6b, 0x30270317, 0x80000d27, 0x0ab8d4b9, 0x01b843f2, 0x402734e6, + 0x0340f49b, 0x41f39b31, 0xf49b4027, 0x99230741, 0x1027fed4, 0x046b4fe6, + 0x9bfcd499, 0xf09b41f4, 0x1ef25840, 0x272c07d0, 0x112c5340, 0x070f4c33, + 0x0742ab3c, 0x0f3c3324, 0x53102c33, 0x32ab103c, 0x80000d27, 0x2740f09b, + 0x0f00002e, 0x2740f29b, 0x0f80001e, 0x0740f19b, 0x102c5323, 0x00002ea3, + 0x40f29b0f, 0x3ea33fab, 0x9b0f0000, 0xf09b40f3, 0xff4d2740, 0x41f49b7f, + 0xf39b3027, 0xfe565e41, 0x2758dbc1, 0x57b499c0, 0xc1274210, 0x1c270d07, + 0x4b6dbe22, 0x99cf6b01, 0xf49bffd4, 0xf2d29941, 0x2741f29b, 0x40f39b30, + 0x2740f39b, 0x0200004e, 0x9b40f49b, 0x1d2740f3, 0xf19b8000, 0x41f39b40, + 0x9b41f39b, 0xb49942f3, 0x0f4c3343, 0xf49b4fab, 0x40f39b40, 0x2740f19b, + 0x41f49b42, 0x4b54b299, 0x42f29b2f, 0x4b55b499, 0x42f49b4f, 0x9b40f39b, + 0xf39b40f3, 0x40f39b40, 0x2c332c07, 0x40f29b0f, 0x33f7d499, 0x4fab0f4c, + 0x6640f49b, 0x41f39bc6, 0x2357b499, 0x41f49b41, 0x9b40f19b, 0xf19b40f1, + 0x40f19b40, 0xf49b4027, 0x04d3b940, 0x563fe601, 0x40f49b02, 0x9b42f49b, + 0x402742f4, 0x9940f49b, 0x36d6fed3, 0x27fcd499, 0x27449630, 0xc3430731, + 0x33418341, 0x4fab0f4c, 0x2740f49b, 0x41f49b40, 0x9b40f49b, 0x3d2740f4, + 0xf39b8000, 0x484f9b40, 0x271a41dc, 0x9b02202d, 0x402722f2, 0x070ef49b, + 0x9bff8b00, 0x3f9b22f4, 0xec31d848, 0x33484f9b, 0x4c53174c, 0x8348131b, + 0x2345a647, 0x0f4c8341, 0x9b104c33, 0xd49940f4, 0xfb4c83f0, 0x5ef0d49d, + 0xd3b9f8a7, 0xe05e0264, 0xb8d4b9fa, 0x41f49b0a, 0x27fa415e, 0x40f49b40, + 0x07fae45e, 0x271c270d, 0x014a2ebe, 0x0120dbd1, 0x0124d9b9, 0xa183ab07, + 0x0125dcb9, 0x0281aff6, 0x027d95e0, 0x0c271627, 0xcfe97e2d, 0xf29b2027, + 0x40f29b41, 0x49334907, 0x4ea34fab, 0x9b060000, 0x3a0740f4, 0x9b0f3c33, + 0xca3340f3, 0xcea3cfab, 0x9b050000, 0x4b0740fc, 0x830e4c33, 0x9b80004d, + 0x3b0740f4, 0x830d3c33, 0x9b80003d, 0x4b0740f3, 0x830c4c33, 0x9b80004d, + 0xbb3340f4, 0x8000bd83, 0x9b40fb9b, 0xf29b40f2, 0xc0ad3640, 0xd4b94595, + 0x4c330126, 0xa34fab0c, 0x0300004e, 0xb940f49b, 0x330127d3, 0x3fab0c3c, + 0x00003ea3, 0x40f39b03, 0x0128d4b9, 0xab0c4c33, 0x004ea34f, 0xf49b0300, + 0x29d3b940, 0x0c3c3301, 0x3ea33fab, 0x9b030000, 0x4e2740f3, 0x9b070000, + 0x3d2740f4, 0xf39b8000, 0x9b402740, 0xf39b40f4, 0x484f9b40, 0x271a41dc, + 0x9b02202d, 0x402722f2, 0x070ef49b, 0x9bff8b00, 0x3f9b22f4, 0xec31d848, + 0x33484f9b, 0x4c53174c, 0x8348131b, 0x2345a647, 0x0f4c8341, 0x9b104c33, + 0xd49940f4, 0xf74c83f0, 0x5ef0d49d, 0x4327f763, 0x2741f49b, 0x41f39b32, + 0x27fbb85e, 0x41f29b21, 0xf49b4027, 0x41f49b41, 0x80001d27, 0x9b40f19b, + 0xf49b40f4, 0x41f49b41, 0x2740f49b, 0x41f39b32, 0x9b41f49b, 0xf19b41f4, + 0x41f49b40, 0x9b40f19b, 0xf29b40f4, 0x41f49b41, 0x9b41f49b, 0xd3b940f4, + 0x3fe60284, 0x3027fe66, 0x2740f39b, 0x41f49b41, 0x9b41f39b, 0xf19b41f4, + 0x64d3b940, 0xf9315e02, 0x27fcd499, 0x27448631, 0x9b321330, 0xd49941f3, + 0x863027fe, 0x9b312744, 0x195e41f3, 0x40f19bf8, 0x07fdb15e, 0x271c270d, + 0x01486ebe, 0x27181c27, 0x407e890c, 0x272d07ce, 0x3424a910, 0x004ea301, + 0xf49b0f00, 0x3a23a940, 0x003ea301, 0xf39b0f00, 0x03110340, 0xe213c422, + 0x0140d4a9, 0x00004ea3, 0x40f49b0f, 0x0142d3a9, 0x00003ea3, 0x40f39b0f, + 0x0146d4a9, 0x00004ea3, 0x40f49b0f, 0x0144d3a9, 0x00003ea3, 0x40f39b0f, + 0x014ad4a9, 0x00004ea3, 0x40f49b0f, 0x0148d3a9, 0x00003ea3, 0x40f39b0f, + 0x80004d27, 0x9b40f49b, 0x31dc483f, 0x202d271a, 0x22f29b02, 0xf49b4027, + 0x8b00070e, 0x22f49bff, 0xd8483f9b, 0x4f9bec31, 0x174c3348, 0x131b4c53, + 0xa6478348, 0x83412345, 0x4c330f4c, 0x40f49b10, 0x83f0d499, 0xd49def4c, + 0xf6055ef0, 0x02002127, 0x21032027, 0x01e41027, 0x1127f7d3, 0x27f7ce5e, + 0xfd845e14, 0x795e3127, 0x9b4027f8, 0xc75e40f4, 0x9b4027f8, 0x715e40f4, + 0x41f19bf9, 0x27fb995e, 0x40f49b40, 0xf39b3127, 0x41f49b41, 0x9bfcd399, + 0xf49b41f3, 0x40f49b40, 0x9b41f49b, 0xd3b941f4, 0xe05e0264, 0x7434c1f7, + 0x00004ef8, 0x27f72a01, 0x9b80004d, 0x255e40f4, 0x5e0027f7, 0xd4a9fb15, + 0x4ea3015a, 0x9b0f0000, 0xd3a940f4, 0x3ea3015c, 0x9b0f0000, 0x5f5e40f3, + 0x9b4027f8, 0x312740f4, 0x9b41f39b, 0x332741f4, 0x9b41f39b, 0xf49b40f4, + 0x41f49b40, 0xb941f49b, 0x5e0264d3, 0x0000f793, 0x000000ff, 0xfe93f54e, + 0xc1051ab0, 0xf6e360e2, 0xe489e349, 0x60f2c50c, 0xc164f0c5, 0x43c23021, + 0x0b238724, 0x36240121, 0x0d0c2745, 0xf58ef6c3, 0xf2c12401, 0xc1310360, + 0x00273c22, 0x4215f6c3, 0xf58ee34d, 0x74037007, 0x07071207, 0xa3be2027, + 0x0ff60144, 0xf3c100a4, 0x60f4c160, 0xb160fec1, 0xc1445133, 0xf3c530ee, + 0xc5f40548, 0x308140fe, 0x1548f4c1, 0x253291f0, 0x3533a1f2, 0x104389f3, + 0x3fe64387, 0xfec102d9, 0x40f5c148, 0x070eea89, 0x27e40783, 0x27ffffcd, + 0x71afc690, 0xff62f253, 0x26015001, 0xb027dc07, 0x04310251, 0xa13003c1, + 0x09420b01, 0x03310b0c, 0x2607184c, 0xe40b2103, 0xcd4e930b, 0x43010411, + 0x0429e30b, 0xb40b6207, 0x6f6bdc07, 0x03d2bada, 0xbef8f054, 0x0148f0c1, + 0x0bf95504, 0x01f4454e, 0x0b070701, 0x241c0314, 0xf3be190b, 0x07c60147, + 0xff3203e4, 0x2764f3c1, 0x3df49303, 0xf6c30133, 0xf58e3405, 0xfef2f353, + 0xc41e3601, 0x11be0707, 0xf2c10143, 0xe6245160, 0x2702454f, 0x18dc2730, + 0x1f070707, 0x7e182c27, 0xf3c1b482, 0xb1070760, 0x013d0731, 0x7e2c071c, + 0xf4c1b472, 0x48fec160, 0x012a4189, 0x874107ee, 0x2b453331, 0x0bcd0b43, + 0xc53c07e4, 0xfec53cfc, 0xf6340b38, 0x2701e46f, 0xc58e0700, 0x1fe638f0, + 0x460701ce, 0x4333e607, 0xe42be533, 0x0760f0c1, 0x184c034f, 0x0354f3c5, + 0x89302744, 0xfec52802, 0xffbd2744, 0x4cf3c5ff, 0xc550f3c5, 0xf4c558f3, + 0xac2fe668, 0x58f2c100, 0xc138f5c1, 0xa28740f3, 0xa30b5833, 0x4b0756ab, + 0x1c1ed027, 0xc1b3f57e, 0xf3c13cf0, 0x03942960, 0x32891c0c, 0x3cf0c528, + 0x2dd2d40b, 0x014b0778, 0x091f07a9, 0x3cf3c19b, 0x1c030707, 0x1c2c2718, + 0x110a4bce, 0x50f8c59e, 0x840be401, 0x6550fec1, 0x31fe85f5, 0xa59c5194, + 0x95c40bf8, 0xc19ea1fc, 0xfb8d3094, 0xc14e0b1c, 0xf4b54cfe, 0x2930fec5, + 0x8d8c0b9e, 0xfec11efe, 0xc5e40b4c, 0xdfc64cfe, 0x54f3c194, 0x0768f1c1, + 0x182c0323, 0x0754f2c5, 0x182c2707, 0xc1b3757e, 0x942960f3, 0x0b283289, + 0x8ad2dad4, 0xc12a3189, 0x410358f4, 0xd258f4c5, 0xfec10f14, 0x44f0c138, + 0xfec5e00b, 0xff3b5e38, 0x00d41fe6, 0x2740f4c1, 0x54fdc1e0, 0x0734f4c5, + 0xff6d2754, 0x5cfec5ff, 0x07622fc6, 0x1e802746, 0x01460703, 0x09bd0759, + 0x073d0796, 0xceb40307, 0x91111946, 0x2c071c01, 0x07b28c7e, 0x0707073b, + 0x7e222719, 0x9609b306, 0x9c31dc0b, 0x3d079121, 0x2c070707, 0x07b2707e, + 0x0b9a51bd, 0x079141bc, 0x072a0707, 0xb25f7e3b, 0x2960f0c1, 0x28028994, + 0x840bdb07, 0x82dada0b, 0x2a0189a9, 0x035cf3c1, 0xc5310354, 0x31da5cf3, + 0x271da690, 0x272b8660, 0x34f4c180, 0x4c013d07, 0xcba10707, 0x2b07c191, + 0x07b2247e, 0x30c9c1ad, 0xc1b1ab0b, 0x07072907, 0x127e3a07, 0x60fec1b2, + 0xe289c429, 0x0bda0728, 0xdad90b84, 0xe189cc82, 0x34f0c12a, 0x04036103, + 0xda34f0c5, 0x0707b861, 0x67be1127, 0xb55e0143, 0x9b4607fd, 0x33840741, + 0xc1433385, 0x842b38f2, 0x135e820b, 0x27e407fe, 0x5e602790, 0x3027fd78, + 0xf1930707, 0x270109a8, 0x3f7e0c2c, 0x0c3c27b2, 0x5e24dc27, 0xfd4efdac, + 0x0ea7d007, 0xbeffffdf, 0x9900add9, 0xd16108d0, 0x07be2027, 0xd0450405, + 0xd3110706, 0x3419d201, 0x420b4487, 0xd4314005, 0x3419d455, 0x341d4103, + 0xffdf0ea7, 0xad88beff, 0x27d44100, 0x27449600, 0x8301c301, 0x4efd8e01, + 0x070451fb, 0x07d207c0, 0x4642cab1, 0xe7ff3ea7, 0x153b05fd, 0x27c1413d, + 0xa7323520, 0xfde7ef4e, 0x4d154105, 0xefff3ea7, 0x114235fd, 0x6a4dd834, + 0x23070efc, 0xf4e84327, 0x3ddc2311, 0x41f6fc6a, 0x0bc451c3, 0x2b03073d, + 0x550d2b4d, 0x8ec345c4, 0xff647efb, 0x8eb60fd6, 0x51fa4efb, 0x07b0070e, + 0x07d207c3, 0x024307a1, 0x154e073e, 0x96b451d4, 0x11dc1544, 0x05893ed2, + 0x1108a6d0, 0x2b2c07d4, 0x16d23524, 0x25012725, 0x07fa8ed2, 0x07140b1a, + 0xff6d7e0b, 0x4127d025, 0x40270496, 0xfa8e0407, 0xd207fa4e, 0xb107a007, + 0xfa8e27b6, 0xf9f3cea7, 0x24c099ff, 0x22271027, 0x17be0703, 0x10070404, + 0xd17e0c07, 0x073d07a3, 0xa72b071a, 0xfff9f30e, 0xd6a3807e, 0x4027d70f, + 0x8e0ef49b, 0xc1f54efa, 0xc1073412, 0xdc83d207, 0x5811990f, 0xb127d333, + 0xde23fd23, 0x07ffff84, 0x0370073b, 0x3bf265d4, 0x50c2c131, 0xf335a027, + 0xfd154027, 0x5508f19d, 0x076707fa, 0x45d4230f, 0x03f205f4, 0x7961186c, + 0x16fe957e, 0xdf0ea70c, 0x6ebeffff, 0xc0c100ac, 0x04d29950, 0x0358c199, + 0x7e212304, 0xc199ff64, 0x54c0c159, 0x7e05d299, 0x4027ff58, 0x0ea73127, + 0x9dffffdf, 0xd39d05d4, 0xac1cbe04, 0x03042700, 0x99f58efd, 0xc3c159c4, + 0xa5b43b54, 0x30fac5fb, 0x0324f49d, 0xc10f07d5, 0xfd8534c4, 0x231c0c03, + 0xb5f375d5, 0x34f4c5fa, 0xc6fe2d7e, 0x3f07980f, 0x27383c03, 0x204c2720, + 0x34033205, 0xc289f4c8, 0x132fe628, 0x0b302701, 0xff1d2796, 0x26c489ff, + 0xc5bcf9c5, 0xf1c5c0f3, 0xc8f3c5c4, 0x01bcf1c1, 0x5334c613, 0xc5360b38, + 0x4fe6ccf3, 0xf8c100d3, 0xc8f4c1bc, 0x87c4f9c1, 0x27840344, 0xb8f4c550, + 0x41008a5e, 0x40ac23fb, 0x4540bc03, 0x23fa55fb, 0x55a640bc, 0x07ccf8c1, + 0x181c0318, 0x09ccf1c5, 0xc4fac58a, 0x03189ace, 0xab4a07a2, 0x0794874f, + 0xc1920b2f, 0xa2233893, 0xc6c0f3c5, 0xba0d633f, 0xf2c18129, 0x2d8431c0, + 0x07b215b1, 0x212b0716, 0x07140b83, 0x7e28030f, 0x0fe6fe21, 0x7141fee9, + 0x160b8451, 0x0f078341, 0x140b2b07, 0x03242c03, 0x067e1c0c, 0xb8f3c1fe, + 0x0b4cc4c1, 0x294b0543, 0x26c489b3, 0x45d2530b, 0x519a0734, 0x40acf4fa, + 0x0f07ff73, 0xe6fd417e, 0x51feac0f, 0xff655efa, 0x0f078111, 0x1201160b, + 0xe6fd767e, 0x09fe980f, 0xc0f0c58a, 0xc53890c5, 0x831ec4fa, 0xc128c289, + 0x1103c8f1, 0xd2c8f1c5, 0xf3c10d21, 0x1c3c03bc, 0x5ebcf3c5, 0x0027ff08, + 0x4efea65e, 0xa7f063fd, 0xffffdf0e, 0x00aad4be, 0x0ea72f07, 0x03ffe93b, + 0x053f0723, 0x7f2ce3f0, 0x197f3ce3, 0x803c0334, 0xa7f932c2, 0xffe93b0e, + 0x01b404b9, 0x30274bc6, 0x101ed027, 0x3d07f001, 0x01b404b9, 0xd3073103, + 0x0b2843d2, 0x6434b930, 0xe942d801, 0x31994d87, 0x27040b42, 0xfd8a7e21, + 0x3499f301, 0x9d412340, 0xf0014034, 0xd6400499, 0x1027cd4f, 0x01b82d27, + 0xe93b0ea7, 0x9decbeff, 0xdf0ea700, 0x37beffff, 0xf04300aa, 0xf94efd8e, + 0xdcaef493, 0x03240705, 0x34073f2c, 0x2ce3f063, 0x7f3ce37f, 0x3c033419, + 0xf932c280, 0x93100c27, 0x05dc8ff3, 0x400720a7, 0x01233205, 0xf4b83403, + 0xdb3afd93, 0x93302705, 0x0625b7f1, 0x40a72127, 0x9d68129d, 0xd0c566d4, + 0x9dd33d80, 0xd09d0bd3, 0x1dd35d0c, 0x69129dd3, 0x9d039d07, 0x49071030, + 0x4ce33d07, 0xb03d037f, 0xe44f5449, 0x9b0006b1, 0x4c030cf4, 0xf843ca80, + 0xfc9bc027, 0xffbea70e, 0x0027fdeb, 0x0121dbbe, 0x0000af27, 0xbc050d02, + 0xfc9bba15, 0xff3ea70e, 0x4427fde7, 0x2d273405, 0x32153980, 0xe7ef4ea7, + 0x053c35fd, 0x27421549, 0xbe4c3500, 0x050121ac, 0x9bba15bc, 0xdcd50efc, + 0xf4931028, 0x0705dbac, 0x3f2c0324, 0x2ce33407, 0x7f3ce37f, 0x3c033419, + 0xf932c280, 0xdb96f293, 0x27382705, 0x03240d40, 0x23f3b828, 0x1207c42c, + 0x077f1c03, 0x7f1ce332, 0x197f3ce3, 0x803c0334, 0x93f931c2, 0x05daebf3, + 0x4c272027, 0x03320520, 0xa7f4c834, 0xfffb330e, 0x29be1827, 0x0ea700ad, + 0x27fffae3, 0xad1ebe14, 0x802c2700, 0x0ea71027, 0xbefffa73, 0x7e009ca6, + 0x2f07fe3b, 0x4ea72303, 0x07ffe777, 0xe3f4053f, 0x3ce37f2c, 0x0334197f, + 0x32c2803c, 0x774ea7f9, 0x4001ffe7, 0x31be04c6, 0xf30100a7, 0xf0434027, + 0x34053425, 0xf98e3415, 0x4007f74e, 0x070f4c83, 0x33340724, 0x2b353323, + 0x87342b32, 0x33a30ba3, 0x037007a3, 0x067864af, 0xdf0ea700, 0x9207ffff, + 0xbe07a899, 0x2300a8b5, 0xffff849e, 0xdb4bfd93, 0x6bcea705, 0x3027fffc, + 0xcc030e1e, 0x10dc0314, 0x04d4cfc0, 0x2332ff00, 0x03c401c8, 0x004e83c8, + 0x4ec40300, 0xe3030000, 0xb016db19, 0x4fc6c401, 0xf6d459da, 0x0500ef4f, + 0x14cc03cb, 0xdc033127, 0xd4cfc410, 0xd0ff0004, 0x01153ff6, 0x1aff8cc0, + 0x48872807, 0x420b2433, 0x038c43f1, 0x3ea3ff00, 0xf5030000, 0x00038c43, + 0xfc9419ff, 0xe000d744, 0x00e0ff8c, 0x24332807, 0x420b4887, 0x039443f1, + 0x3fe6ff00, 0xa3c100ce, 0x03420750, 0x0668344f, 0x8843d500, 0x58a39901, + 0xd92afd93, 0x8643bd05, 0x5aa39901, 0x018c43bd, 0xbd049399, 0x99018743, + 0xa0c10592, 0x59a19954, 0x27faf77e, 0x05929d20, 0xc009a399, 0x3313ff3c, + 0x343f0334, 0xb9000668, 0x23018534, 0x8534bd41, 0x1d945901, 0x5d412392, + 0xffcea794, 0xc4b9ffff, 0x71030100, 0xc4bd4123, 0xa3c10100, 0xfcc7c5d4, + 0xd1d13219, 0x41271028, 0x41cb423b, 0xa3c53027, 0xdf0ea7d4, 0xd4d5ffff, + 0x73be1028, 0xc19900a7, 0x9d0ea70e, 0xf70efff9, 0x00ab0b9e, 0x9903d0c1, + 0x212707d1, 0xc1fa837e, 0xd25903d0, 0x0403d139, 0x757e2123, 0x5d4027fa, + 0xfef55ed4, 0x10270a07, 0x327e2127, 0xff8ce494, 0x9499ff24, 0x9347d604, + 0x05d86bfd, 0xa7ff525e, 0xffffff4e, 0xa70e4199, 0xfff99d0e, 0x00aabfbe, + 0xc1fedb5e, 0xa19950a0, 0x7e21275a, 0xa0c1fa34, 0x04929950, 0x0358a199, + 0x7e212304, 0x4027fa24, 0xd832fd93, 0x04949d05, 0x4eff165e, 0xa9fc93f7, + 0xf0a305d9, 0x30274027, 0xffdf0ea7, 0x057c07ff, 0x9df34df4, 0xaea706f4, + 0xbefffc6b, 0x2700a6ed, 0x23d02780, 0x0e1e407c, 0xcc03d103, 0x14ac0310, + 0x9410dce0, 0x23ba0700, 0xd8b401b8, 0x0300004e, 0x86c41923, 0x09c39948, + 0x09ff3cc0, 0x340b4f07, 0x341d4127, 0xc00ac399, 0x0709ff3c, 0x27340b4f, + 0x19341d41, 0xa745d6c4, 0x0ac39d30, 0x2709c39d, 0x01a41540, 0x004e83b4, + 0x4ec40300, 0xa9030000, 0x9616c939, 0x4586a401, 0x4ff6c479, 0xa9050088, + 0xc3098127, 0x01923fd6, 0xe32707b4, 0x0300004e, 0xa38db405, 0x9340270a, + 0x05d8fff3, 0x2b08a48d, 0xce241937, 0x2103594d, 0xd103f3b0, 0x0310cc03, + 0xdce414ac, 0x27ff7010, 0x03061ed0, 0x1fd7c0d1, 0x4d0b4f07, 0x32b64319, + 0x637e0d07, 0x2708ab95, 0x27048640, 0x03840741, 0xc48f6bd1, 0x0ea7e3d7, + 0xbeffffdf, 0x6600a5f2, 0xff4ea786, 0x4199ffff, 0x9d0ea70e, 0x85befff9, + 0xf08300a9, 0x40a7f78e, 0xa31e241d, 0xc199c011, 0x7e212708, 0xc011f8f4, + 0xc159c279, 0x21230403, 0x27f8e77e, 0x5ec47d40, 0xfb4eff5e, 0x00c1d007, + 0x7e1d07f4, 0xb007f911, 0x0b0704c6, 0xcea7fb8e, 0xd1ffffff, 0xa70650c4, + 0xfff24b0e, 0xc4d54103, 0x83be0650, 0x00c80125, 0x87300739, 0xc1363340, + 0x430b34dd, 0x0dc44df5, 0x4227ff00, 0x0db804fd, 0x807eff00, 0xbd4127fe, + 0x990668c4, 0x40270fc3, 0x270ef49b, 0x07338741, 0x4034f50b, 0x8eff02b0, + 0x00ff1efb, 0x00000290, 0x000001e0, 0x00000200, 0x00000180, 0x000669b8, + 0xff00038c, 0x000667da, 0x3ea7f54e, 0x99ffffff, 0xf3632734, 0x050b4fe6, + 0xd65af993, 0x08949905, 0x04ff4ff6, 0x065830d1, 0x065c3ad1, 0x010234a9, + 0x010433a9, 0x1407a02b, 0xabe6e307, 0x21832007, 0x32874207, 0x340b4733, + 0x4307320b, 0x432b4333, 0x4e23420b, 0xa9fff994, 0xa9034842, 0x2b034643, + 0x0be1071e, 0x2befab32, 0xec3f8b3e, 0x0704a731, 0x2301031a, 0x70f1f8a1, + 0xff4ea704, 0x40d5ffff, 0xa0270658, 0xf2a52027, 0xffff7ea7, 0xd1f593ff, + 0x78d1061f, 0x4807065c, 0x24074183, 0x27333487, 0x340b320b, 0xd333d307, + 0xd40bd32b, 0x156178bd, 0xde230807, 0xbefff994, 0xf80174f3, 0x0706a304, + 0x0f4c8348, 0x34072407, 0x35332333, 0x342b322b, 0xc30bc387, 0xcf03c333, + 0x00067864, 0xe004c199, 0x06a2101c, 0xe030c4c1, 0xb906c541, 0xd10257c4, + 0xa9064490, 0xa9034cc2, 0xf00210c3, 0x2705b842, 0x1323ca41, 0x73b94656, + 0x40070e65, 0x4223432b, 0x41ec4f4b, 0xc49906e1, 0x99474605, 0xf39507c3, + 0xf3b53433, 0x68343f03, 0x34b90006, 0x4ce0018d, 0x3603f8ff, 0x05c49915, + 0x058c4ff6, 0x4c073d07, 0x03643c03, 0x2c27d84c, 0x034b0112, 0x033b0544, + 0x01f2a834, 0x274427c1, 0xbdd10532, 0xbd0363d4, 0x990364d3, 0xc48917c3, + 0xd0c2c12c, 0xbd34cbc1, 0xad035bd3, 0x070350d4, 0xd54c073d, 0xd50274d2, + 0x0302bcdb, 0x0301943d, 0x2701204d, 0x4001322c, 0x30054403, 0xf2a83403, + 0x01e8c2d1, 0x4c073d07, 0x025cd2d5, 0x02603d03, 0x01ec4d03, 0x4b012427, + 0x3b054403, 0xf2a83403, 0x340d4409, 0xd544c1c1, 0x990278d1, 0xd2bd07c2, + 0xc3c1035e, 0xc0d3d530, 0x72c4b902, 0x62d4bd03, 0x2ecb8903, 0xad4cc1c1, + 0x890346db, 0xd1d526c0, 0xd0ad027c, 0xc2890342, 0x070d0728, 0x44d2ad1c, + 0x000d0303, 0x402c2703, 0xbe901c03, 0xc1011a96, 0x4c073c93, 0x028cd3d5, + 0x34033d07, 0x02004d03, 0x01182c27, 0x0544034b, 0xa834033b, 0x48c1a9f2, + 0x4ad1ad03, 0x4ac2a903, 0x4cd2ad03, 0x94577e03, 0xd0ad0fab, 0x0ff6034c, + 0xc4a9044a, 0x3d07034c, 0x034ed4ad, 0x3c034c07, 0x604d03ac, 0x3a2c2702, + 0x44034b01, 0x34033b05, 0xc4b9f2a8, 0x3027035a, 0x31274486, 0xbd5094c1, + 0x990354d3, 0xd4bd5444, 0xc1b90355, 0xd1bd0350, 0xc2b90356, 0xd2bd0351, + 0xc3d10357, 0xd3d50354, 0xc4b902d8, 0xd4bd0358, 0xcbb90358, 0xdbbd035b, + 0xc0d10359, 0xd0d50364, 0xc1d102d0, 0xd1d50368, 0xc2c102d4, 0x80d2d550, + 0x54c3c102, 0x0284d3d5, 0xd558c4c1, 0x7e0288d4, 0x0f6b92e8, 0x0384d0bd, + 0x5bc107c6, 0x74dbd568, 0x5850c103, 0x0378d0d5, 0xd57051c1, 0xc1037cd1, + 0xd2d57452, 0x3d070380, 0x3d034c07, 0x4c030290, 0x0129275c, 0x0544034b, + 0xa834033b, 0x80c199f2, 0x02b4d1bd, 0x036cc2b9, 0x035ad2bd, 0xbd18c399, + 0x99035fd3, 0xd4bd05c4, 0xcbb9035c, 0xdbbd0371, 0xc0b9035d, 0xc1c1036e, + 0x65d0bd38, 0xc4d1d503, 0x6dc2b902, 0xbdfb9303, 0xd2bd05d2, 0xb4990366, + 0x654fe61c, 0xb5f35303, 0xd53401fc, 0xb902b8d4, 0xbd036fc4, 0xd10367d4, + 0xd50374c0, 0x9902c8d0, 0xd1bd1bb1, 0xc2b90360, 0xd2bd0370, 0xb3990361, + 0x69d3bd31, 0x959f7e03, 0x036ad0bd, 0x0394c4b9, 0x4fff2ea7, 0xa0d4bdfd, + 0x33b39903, 0xbd7424c1, 0xe8036ed3, 0xe602e040, 0x99043b3f, 0xd0bd60b0, + 0xb199036f, 0x70d1bd61, 0x62b29903, 0x0371d2bd, 0xbd63bb99, 0xb90372db, + 0xbd0378c4, 0x060385d4, 0x84c3d14c, 0x79c2b903, 0x90d3d503, 0x80c4d103, + 0x86d2bd03, 0x8cd4d503, 0x88cbd103, 0xd5402703, 0xd10394db, 0xbd037cc0, + 0xd50387d4, 0xd10388d0, 0xd50390c1, 0xd1039cd1, 0xd5038cc3, 0xb90398d3, + 0x930395c4, 0x05cb33f3, 0x03a1d4bd, 0xd4bd4127, 0x34b9036b, 0x20270153, + 0x21274486, 0x01283bd1, 0x036dd2bd, 0x02dcdbd5, 0x013830d1, 0x02ecd0d5, + 0x014831b9, 0x02fcd1bd, 0x012c32d1, 0x02e0d2d5, 0x013c34d1, 0x02f0d4d5, + 0x01493bb9, 0x02fddbbd, 0x013030d1, 0x02e4d0d5, 0x014031d1, 0x02f4d1d5, + 0x014a32b9, 0x02fed2bd, 0x013434d1, 0x02e8d4d5, 0x01443bd1, 0x4fff4ea7, + 0xf8dbd5fd, 0x4b33b902, 0xffd3bd01, 0x4492d102, 0x5073d106, 0x48908906, + 0xd0ad4111, 0x21030348, 0x40273103, 0x065073d5, 0x13e872d5, 0x156074bd, + 0x064492d5, 0x155871d5, 0x41034807, 0x065c74d5, 0xf39b3027, 0x2ec4890e, + 0xa7489389, 0xfff99f0e, 0x948d430b, 0xa379be48, 0x03112700, 0xf0f1a5a1, + 0x27fbb1a2, 0x073d1ed1, 0x07218320, 0x33428732, 0x0b430b37, 0x33340742, + 0x0b342b33, 0x943e2332, 0x32a9fff9, 0x34a90348, 0x420b0346, 0x4f8b4e2b, + 0xfb5f41e8, 0xffff4ea7, 0x5840d5ff, 0x65a1e006, 0x07d027fb, 0x8ef3430d, + 0x8e34b9f5, 0xff4ce401, 0x187efc03, 0x22c689f9, 0x9924cb89, 0x6c0306c4, + 0x0fbc030f, 0xb4736473, 0xb10344c6, 0xc4c1b153, 0x30f4c534, 0x8930f0c1, + 0x0c836454, 0xc503330f, 0x01f930f0, 0xff00007f, 0x46eef185, 0x117e0266, + 0x64568d90, 0xc1665b8d, 0x4fe66054, 0x54c10281, 0x0746a658, 0x27350724, + 0xe0341910, 0x03016642, 0x0c3c0311, 0x6c7ef290, 0x4c0ff68d, 0xff1ea702, + 0x1499feff, 0x2ec18909, 0x24874383, 0x422b4433, 0x004d43f9, 0x3203ff00, + 0x023413e2, 0xffdf0ea7, 0x9f97beff, 0x30f2c100, 0x30274027, 0x007f2ef9, + 0xf405ff00, 0xf49df34d, 0x21f35306, 0x21f453fa, 0x013001fa, 0xd8140141, + 0x0300004e, 0xc6021929, 0x09049928, 0x0bff4cc0, 0x4b0bbf07, 0x230b4319, + 0x0499421d, 0xff4cc00a, 0x0b2f070d, 0x19431942, 0x1d320b02, 0x141c0343, + 0xc4100c03, 0x0004cc1f, 0x1027c4ff, 0x4f072727, 0x4319410b, 0x011831e0, + 0xf2881103, 0xffdf0ea7, 0x9efcbeff, 0x48998900, 0x4fff4ea7, 0xad4211fd, + 0xa70348d9, 0xffffff3e, 0x34bd4b27, 0xfda11560, 0x32d51b27, 0x13e41558, + 0x3ea7fec3, 0xd1ffffff, 0xa7065c34, 0xfff99f0e, 0x34d54103, 0xd8be065c, + 0xa85e00a1, 0x7424c1fe, 0x00004ef8, 0x5efd1a01, 0x9389fd1b, 0x4ad3ad58, + 0x58948903, 0x4fab4103, 0xa958948d, 0xee034cd3, 0x27fba143, 0xcdf49330, + 0x438d05cf, 0xfb945e58, 0xa05e4027, 0x58c4b9fc, 0x10e02702, 0x07e12742, + 0x5e4f6b4e, 0x217efa3d, 0x710fe68f, 0xdf0ea7fa, 0x86beffff, 0xc399009e, + 0xdf0ea707, 0x3433ffff, 0x69b83f03, 0x34190006, 0x341d4203, 0x009e49be, + 0x81fa4b5e, 0xee4147fb, 0x07fe96b4, 0x33418731, 0x27342b34, 0xfdb10721, + 0x06b22032, 0xe0bf6b00, 0xfe84ffbc, 0xf1b14b07, 0x44333b87, 0xf091432b, + 0x69c11bfd, 0x4f030006, 0x0006b220, 0x20874311, 0x23f5210b, 0xff000398, + 0x24f54421, 0xff000390, 0x5e04c199, 0x4147f9ef, 0xfee6e4ee, 0xbf6bb107, + 0xffdf0ea7, 0x9de0beff, 0xffbcc400, 0xfedf5eb8, 0x25271527, 0xa7489989, + 0xfd4fff4e, 0xd9ad4311, 0x4ea70348, 0xbdffffff, 0xa1156042, 0x5843d5fd, + 0xfedc5e15, 0x065074d1, 0x94994816, 0xe5fc9304, 0x42dc05ce, 0x7e080714, + 0xc4998b0d, 0xa3122704, 0x9d222742, 0x0b1e04c4, 0x27271727, 0x1327b71e, + 0x4ea72327, 0x89fd4fff, 0x43114899, 0x0348d9ad, 0xffff4ea7, 0xd5d127ff, + 0xbd155843, 0x5e156042, 0x5489fe8e, 0x97b4ee66, 0xfd9d5efd, 0xf1930427, + 0x9e00e156, 0x7e009c05, 0x02e08b25, 0x1b27fdb1, 0x715e2b27, 0x0c1c27ff, + 0x695e2107, 0x8db27eff, 0x0fe60f6b, 0x52c1016c, 0x5453c15c, 0x89645189, + 0x23f86654, 0x17030270, 0x17e34803, 0xed2747e3, 0x0d271000, 0x3cf80fff, + 0xf8023920, 0x53022c32, 0x01f7bbfb, 0x0d21d8b3, 0x2c832307, 0x0324e67f, + 0x322b803c, 0x649b6107, 0x26076433, 0x24c6208b, 0x622b6e0b, 0x14072187, + 0x1303239b, 0x02073107, 0x0c833253, 0xe631237f, 0x8701dd0f, 0x53411b43, + 0x802c0342, 0x0407202b, 0x1007030b, 0xf035029b, 0x2287f431, 0xf245460b, + 0x2427f455, 0x89645489, 0x53c1665b, 0x23430358, 0x0343e331, 0x9b4153b1, + 0x0bb15313, 0x33b49b12, 0x7051c5b6, 0xf151f031, 0xbc03fb65, 0x0b3103a0, + 0x6850c5b1, 0x9b7456c5, 0x8cee7eb3, 0x05460f6b, 0xf231f441, 0xb40b422b, + 0x0b071b07, 0x53be2127, 0x50c5009c, 0x7eb00760, 0x0f6b8cd0, 0x011b0fe6, + 0xe65854c1, 0x27fca94f, 0x75150730, 0x27f325f3, 0x834b07e0, 0x3b071f4c, + 0x3c0344e6, 0x07342b20, 0x074e0b43, 0x1f2c8324, 0x4c0324e6, 0x15422b20, + 0x83430714, 0x03077f4c, 0x0c0344e6, 0xc1042b80, 0xb0075854, 0xf0313607, + 0x4123349b, 0x340b409b, 0xf421f241, 0x320b3b0b, 0x4307340b, 0xe67f4c83, + 0x803c0344, 0x4227342b, 0x1325141d, 0xf221f071, 0x0103f361, 0x54c1230b, + 0x25f07558, 0x0c1c03f2, 0x04cae60b, 0xfc135e8d, 0xc15c52c1, 0x50895453, + 0x66548964, 0x00f923f8, 0x07031407, 0x07e31803, 0xbd2717e3, 0xed271000, + 0x3cf80fff, 0xf800fa20, 0x5300d532, 0x01f64ff3, 0x0d21d834, 0x3c833407, + 0x0334e67f, 0x432b804c, 0x319b3007, 0x23073433, 0x24c62e8b, 0x322b3b0b, + 0xe09be407, 0x01072e87, 0x42070303, 0x4c830253, 0xe601237f, 0x802c0344, + 0x4087242b, 0x4e9b411b, 0x1c831407, 0x0314e67f, 0x412b804c, 0x230b209b, + 0xf255240b, 0x20276027, 0xf6351027, 0x8d5ef245, 0x5854c1fe, 0xfb904fe6, + 0x10272507, 0xfb61051e, 0x3b07b00b, 0x071f3c83, 0x0334e64b, 0x432b204c, + 0x2415f051, 0x4007040b, 0xe67f4c83, 0x800c0344, 0x4227042b, 0x54c1241d, + 0x03202558, 0x0c2c0311, 0x5ecc14ca, 0x4387fb3d, 0x4253411b, 0x130b1407, + 0x329b3107, 0x295ef335, 0x95fb53fe, 0x5eb301f5, 0x32d8fdd5, 0x8dfb5337, + 0x5eb301f5, 0xf353fdc9, 0x3401f580, 0x07ff2c5e, 0x27110314, 0xec2780bc, + 0xff105e7f, 0xec274103, 0x7f0c2780, 0xd8fd995e, 0xf3531332, 0x3401f560, + 0x53ff085e, 0x01f55bfb, 0xfd935eb3, 0xf552f353, 0xf65e3401, 0x93fa4efe, + 0x05cbc3fa, 0x41e0a419, 0x4ea7012b, 0xb9ffffff, 0xc101004b, 0xbc0bfc4c, + 0x1e10cbca, 0xfd40273b, 0x00007cd4, 0xcec103ff, 0xdc072ebc, 0x330fdc83, + 0x7cd4f9d3, 0x83ff0000, 0x42c4224c, 0xfd4127e1, 0x00007ed4, 0x7e0c07ff, + 0x4027f180, 0x007cd4fd, 0xc103ff00, 0x93d4cbce, 0x05cceff4, 0x2c032407, + 0xe33407ff, 0x3ce37f2c, 0x0334197f, 0x32c2803c, 0x70a399f9, 0xcb4efd93, + 0xff3cc005, 0x03343319, 0x0669b83f, 0xa7343900, 0x3d412320, 0x9d402734, + 0xd4c570d2, 0xf3057e74, 0xffdf0ea7, 0x9a0bbeff, 0x44dcc100, 0xffff3ea7, + 0xbd4027ff, 0x27010034, 0xc501402d, 0x3cd5fc3c, 0x0ea70654, 0x27fffc73, + 0x8d70be10, 0x034d0700, 0x2701844d, 0x403c2720, 0x44034205, 0xf393f3c8, + 0x9305cc79, 0x05cae7fd, 0xa7102c27, 0x1d343d40, 0x103c0334, 0xd4c1f2a0, + 0x2749d63c, 0x88e87e00, 0x0d07d127, 0xdf7ed103, 0xf7d7c488, 0x302740a7, + 0xffdf0ea7, 0x44acc5ff, 0xc570a49d, 0x6fbe74a3, 0xfa0e0099, 0x99ef395e, + 0xf0933ad1, 0x2705cadc, 0xec867e21, 0xd4c54027, 0x27c11e3c, 0x7ea41d42, + 0xcf5ed85f, 0xd0fe4efe, 0x2810010d, 0x030c2c27, 0x3be12721, 0xf8e0cae2, + 0xffff3ea7, 0x3834d1ff, 0x0b020706, 0x271027e4, 0x383ed522, 0x9efe0e06, + 0x2703f07a, 0xed270c2c, 0xdd1e1000, 0xeea7fc4e, 0xc1fff9f3, 0xd10734e4, + 0xd4074606, 0xf9f3cea7, 0xcac4a1ff, 0xfc8e484d, 0xffff3ea7, 0x093499fe, + 0x8324e299, 0x33348743, 0xf9432b44, 0x00004d41, 0x032803ff, 0x271d9b12, + 0x3b100b41, 0x0be3a142, 0x4013ca14, 0x1fd0d107, 0x10000001, 0xf3cea7c0, + 0xc4a1fff9, 0x0000df27, 0xd4c21000, 0xdf0ea7ba, 0xb4beffff, 0x09760098, + 0xffdf0ea7, 0x98c3beff, 0x070c0700, 0xd9f67e1d, 0xffdf0ea7, 0x9efc0eff, + 0x0700988e, 0xf0d10713, 0x0000011f, 0x1eff7f10, 0x070c07bd, 0x5efc0e1d, + 0x0000d9d4, 0x0000000c, 0x00060000, 0x00001000, 0xa107f54e, 0xc99ef193, + 0x1df59305, 0x11c10614, 0xc1f3a344, 0xa1a56c54, 0xb530f2c5, 0x85f293f0, + 0x2cc105c9, 0x2542c444, 0x017454d1, 0x991e4cce, 0x0c1b7050, 0x8387ac7e, + 0x0c40180c, 0x130c2718, 0xf58ef383, 0xc95ef393, 0x443cc105, 0xffdf0ea7, + 0x9837beff, 0x87d77e00, 0xffff3ea7, 0x093499fe, 0x24874383, 0x422b4433, + 0x004d43f9, 0x3403ff00, 0xc3ca300b, 0xdf0ea710, 0xebbeffff, 0x0b270097, + 0xf58ef383, 0x2c832c07, 0x3332070f, 0x7c34f933, 0x07ff0000, 0x84ee23e3, + 0x4ff6ffff, 0x420700a9, 0x432b4533, 0x0487422b, 0x0333040b, 0x78640f03, + 0x04c10006, 0x340cc5d4, 0x441946e6, 0xc8e6f793, 0x2872d105, 0x3b312710, + 0xd532cb34, 0x93102873, 0x05c8d3f1, 0x10281dd1, 0x102c14d1, 0x41f84dab, + 0x2027126a, 0x21034153, 0x27fa41dc, 0x07123b11, 0x33428732, 0x0b1dab34, + 0xa9f39343, 0x31d505c8, 0xf3931028, 0x01061280, 0xa7422b31, 0xfd4fff2e, + 0x43332311, 0x13c5140b, 0xd401c588, 0x20a73027, 0xe39d4127, 0x9de33d05, + 0xe41d04e3, 0x029de27d, 0xff3ea707, 0x34b9ffff, 0x44b60100, 0x03fc3cc5, + 0x0034bd41, 0xdf0ea701, 0x1bbeffff, 0xf4930097, 0xc105c854, 0x41994449, + 0x8339070a, 0x23070f3c, 0x23334307, 0x422b4533, 0xd487432b, 0xd333d40b, + 0x7864df03, 0xd7c10006, 0x29fb93d4, 0xf79505c8, 0x033a1fe6, 0xe00aa499, + 0x0332104c, 0x02ceb1b9, 0xe1def793, 0xb9402704, 0xb90286b2, 0x0502cfb0, + 0x15180374, 0x03210374, 0xb9715d08, 0xb90285b3, 0x9d02d0b1, 0x707d0572, + 0x02d1b2b9, 0x0288b0b9, 0x713d3103, 0x739d1b07, 0x9d701d04, 0x1d030672, + 0x28271020, 0xebbe0707, 0xc0070089, 0x8910a189, 0xa2890ea0, 0x32a38930, + 0x27869e7e, 0x27c49641, 0xa940ab40, 0xc102b0b3, 0x11276cb2, 0x10274496, + 0x230e0027, 0xb3b90127, 0xb4990284, 0xab210709, 0x0e102720, 0x07112734, + 0xe641ab42, 0x0700a54f, 0x7e012309, 0x04e685bd, 0x8f200cf8, 0xef4d7e11, + 0xf0937459, 0xb905c770, 0xf0028402, 0x39116649, 0x00c12774, 0x03c02742, + 0x938021cd, 0x05c757f3, 0x936834c1, 0x06113bf9, 0x01004d83, 0x93c1b207, + 0x96812758, 0x03802744, 0x898847b1, 0xa1890ea0, 0x30a28910, 0xee32ae89, + 0x7e11163b, 0xf293eeff, 0x27061110, 0x03241937, 0x41e00c2c, 0xf3a010fd, + 0xee5894c1, 0x7e10bc4b, 0x98c58618, 0x589bc55c, 0x93549cc5, 0x05c6fff0, + 0x04a97111, 0x770102b0, 0x028402b9, 0x102401d5, 0xd56c04c5, 0x9d102007, + 0xf7930902, 0x2705c6e0, 0x8570b940, 0x0a749d02, 0x028674b9, 0x9d35709d, + 0x70b93674, 0x74b9028a, 0xf393028b, 0x9d05c6c0, 0x749d3770, 0x8c70b938, + 0xc074d102, 0xac32a902, 0xb031a902, 0x8d33b902, 0x39709d02, 0x9b4074c5, + 0xef3fe612, 0x07320704, 0x33383342, 0x47430b44, 0x0b410b84, 0x27744581, + 0x81f79340, 0x0ea705c6, 0xbdffffdf, 0xbe49d874, 0xa7009559, 0xffffff2e, + 0x064029d1, 0x9ff6c707, 0x73a90f0e, 0x7ca902b2, 0x4c2702ac, 0x7824bd10, + 0x7d29bd18, 0xa7c39b18, 0xffffdf0e, 0x009509be, 0xc642f093, 0xc001d105, + 0xbc04d102, 0xb802a902, 0x03140b02, 0x0b07f81d, 0xae03a912, 0xc402d102, + 0x55338702, 0xdc02d50c, 0xf0130b49, 0xb510018d, 0x0c3c270f, 0x41273103, + 0x48ca433b, 0x933f6bf8, 0x05c603f7, 0x739d7451, 0x023c0724, 0xf034074c, + 0x7a10013d, 0x0c2c270e, 0x41272103, 0x43ca423b, 0x6b4207f8, 0xddf0934f, + 0x049d05c5, 0x011df025, 0x270e5610, 0x31030c3c, 0x433b4127, 0x07f841ca, + 0x934f6b43, 0x05c5bff1, 0x9926149d, 0x4c142414, 0x0c4c270c, 0xc5aef293, + 0x25219905, 0x1424249d, 0x1c270c1c, 0x9df3930c, 0xf79305c5, 0xa905c598, + 0xb9029a32, 0xa902d074, 0x23029833, 0x03239b42, 0x9d03ff2d, 0x4f6b2571, + 0x42f02a53, 0x32470e1d, 0x3153320b, 0xc56ef093, 0x9302b905, 0xb9b00702, + 0x9602ce01, 0x104c2725, 0x029304bd, 0x07102c27, 0x53470343, 0x0b419b43, + 0x24b09943, 0x2127429b, 0xe207203b, 0x4a334553, 0xb1993227, 0x0be12325, + 0x3b4307e4, 0x13303b41, 0x8b430b20, 0x074e02e2, 0x271e07e4, 0xface7e00, + 0x02acbca9, 0x02bab2a9, 0x4ea7c303, 0xe3d07fff, 0x81c203c3, 0x8d402743, + 0xb49d28b2, 0x2ac29b34, 0x9d41273c, 0xb4c134b4, 0x5e4cea30, 0x87b1b90d, + 0x07b19d02, 0xf2930d07, 0x0305c4e4, 0x27025fdd, 0x000d0330, 0xc540a702, + 0x248d4c23, 0x0730074a, 0x7f2ce32d, 0x025fdd23, 0x197f3ce3, 0x803c0334, + 0xc1f932c2, 0x1a0730f2, 0x010ad9be, 0x1d031d07, 0x0d070120, 0x0c031123, + 0x072107d8, 0x7f2ce330, 0x3ce31103, 0x0334197f, 0x32c2803c, 0x8df393f9, + 0x39d105c4, 0x2c2702d8, 0x07490712, 0x0c4c0330, 0x44034701, 0x34033705, + 0xf293f2a8, 0xd105c470, 0xb902d820, 0x83016703, 0x583fe631, 0xe7dd0302, + 0x072d0701, 0x7f2ce331, 0x01e7dd23, 0x197f3ce3, 0x803c0334, 0x07f932c2, + 0x03310740, 0x2c27544c, 0x03470132, 0x03370544, 0x93f2a834, 0x05c42ff1, + 0x02d814d1, 0x017c44d1, 0x01e8d4d5, 0x832ad489, 0x8dffdf4d, 0xee7e2ad4, + 0x14ab8983, 0x0378d0bd, 0x7a21bcf4, 0xbd402701, 0xb90378d4, 0xe60379d4, + 0x2702054f, 0x9d102746, 0xa49909a4, 0x554fe608, 0xe9f79301, 0x73d105c3, + 0x002702d8, 0x016434d1, 0x4f1c2027, 0x08000000, 0x42072127, 0x418b41c3, + 0x01274486, 0x4f6b4007, 0x01ecd4bd, 0xb9694fc6, 0xbd012c34, 0xc601edd4, + 0x13075e4f, 0x00272d07, 0xa912a389, 0x02013014, 0x53430743, 0xee24ad45, + 0x12a38901, 0x013214a9, 0x43074302, 0x531f4c03, 0xf024ad45, 0x14a38901, + 0x013414a9, 0x43074302, 0x24ad4553, 0xa38901f2, 0x3614a914, 0x07430201, + 0x1f4c0343, 0x24ad4553, 0xd3b901f4, 0x010301ed, 0x28031803, 0x93aa03ca, + 0x05c353f0, 0x02d803d1, 0x34d1c007, 0x4ff80164, 0x02000000, 0x34b90170, + 0x2027011c, 0x549d30a7, 0xb453d51b, 0xa352bd02, 0x19549d02, 0x02a052bd, + 0x271a549d, 0x95d4bd41, 0x08a39903, 0xd4b93576, 0x4ce00120, 0xc101a7ff, + 0x9351e8d1, 0x9461f7b1, 0x28532107, 0x074073c5, 0x303c8331, 0x834474c5, + 0xc6345321, 0x83320324, 0x53410733, 0x0e418349, 0xb134a324, 0x95039df0, + 0xd582eb7e, 0x930354d0, 0x05c2d3f1, 0x49d811b9, 0xbdf0d489, 0xc50394d1, + 0x4de030d4, 0x0b3b1102, 0x11034df4, 0x4de000c7, 0x0b070182, 0x01834df4, + 0x4de00112, 0x0b350102, 0x01034df4, 0x41e0011a, 0xff1e0c37, 0xd4bd4027, + 0x3c5e01ec, 0x8c0fe6ff, 0x826d7efe, 0x0384d0d5, 0x6e7ec007, 0x031b0782, + 0x15731f1c, 0x0380d0d5, 0x02144107, 0x10020227, 0xc10b1007, 0xdcd50407, + 0xd1d50388, 0x56be0380, 0xd0d500c0, 0xa499037c, 0x9345d608, 0x05c24ff2, + 0xd54423c1, 0x9349d423, 0x05c243f4, 0x49d443d1, 0x0388d1d1, 0x0390d3d5, + 0x074440c1, 0x2b412341, 0x2d04c203, 0x2608a499, 0xbe012b49, 0xd100c013, + 0xd50380d4, 0xc2038cd0, 0x41271740, 0x0379d4bd, 0x27fe125e, 0x20d4bd40, + 0x24d3bd01, 0xfdde5e01, 0xd4bd4027, 0x11270379, 0xe0fe015e, 0x4e31044d, + 0x054df40a, 0xe000cd31, 0xb511214d, 0x224df40b, 0xe000b211, 0xa311044d, + 0xff385e0b, 0x016431b9, 0xc07e0027, 0xd8c4d181, 0xb9012702, 0x7e016541, + 0xc4d181b3, 0x022702d8, 0x016641b9, 0x5e81a67e, 0x4107fe8b, 0x07404c03, + 0x0b815384, 0x5e744584, 0x4de0fb17, 0x09f10281, 0x02824dd4, 0x014de019, + 0x5e0a1f02, 0x4de0feee, 0x0a210104, 0x01214de0, 0xdf5e0a15, 0x014de0fe, + 0xe00b3c03, 0x3003214d, 0xfed05e0b, 0xc166f193, 0xd813d105, 0xd1c10702, + 0xf6012034, 0xb9fe4a4f, 0x27016431, 0x81457e00, 0x02d8c4d1, 0x41b90127, + 0x387e0165, 0xd8c4d181, 0xb9022702, 0x7e016641, 0x4027812b, 0x0395d4bd, + 0xe0fe1e5e, 0x0512014d, 0x044de00b, 0x5e0af921, 0x4dc0fe82, 0x341d8002, + 0xe080034d, 0x7480014d, 0xfe705e09, 0x80214de0, 0x4de0093c, 0x09308022, + 0x27fe615e, 0xd4bd154c, 0xfb930372, 0x3905c078, 0x894566b4, 0x4ca32ad4, + 0x2ad48d10, 0xd4bd4027, 0xb2990358, 0xd5f0930c, 0xd2bd05c0, 0xb7990350, + 0x10d3a910, 0x51d7bd02, 0x6800c103, 0xd5ead489, 0xad0374d0, 0x93034cd3, + 0x05c0b3f1, 0x83541199, 0x4fd1bd41, 0x0dfc9303, 0xd4bd060b, 0xc299034e, + 0x0ed1a908, 0x5ad2bd02, 0xa6c05103, 0x9b430706, 0x0d40c241, 0x010b0123, + 0x00be7cbe, 0x034cd0ad, 0x42e0c401, 0x43340632, 0x1e0d41c0, 0xe743e0ff, + 0xde44e007, 0x27f51e07, 0x3cd4d131, 0x004ef802, 0x060dffff, 0xd4bd4227, + 0xf493035d, 0xb905b91c, 0x07030343, 0x70d3bd0d, 0x0444b903, 0x3df79303, + 0xd4bd05c0, 0xcc990371, 0x6fdcbd0b, 0xaca27e03, 0x8912a489, 0xf1b12ad0, + 0xd50e708d, 0x59021cd4, 0x89717d11, 0xd28d12a2, 0x14a3891a, 0xc00ef293, + 0x1cd38d05, 0x2716a489, 0x1ed48d30, 0x8d18a789, 0xa08920d7, 0x22d08d30, + 0x9332a189, 0x05bfeff0, 0x9924d18d, 0xd29d3522, 0x36a4990f, 0x31274496, + 0x9906d39d, 0x40273703, 0x035bd3bd, 0x9d0cd49d, 0xa4810bd4, 0x9184d4c5, + 0x88d7c5a7, 0xd1c5a1a1, 0x0aa2998c, 0x9904d29d, 0xd39d0ca3, 0xc5a4b105, + 0xa7b13cd4, 0x9938d7c5, 0xa4990ba3, 0x8333470a, 0x07340b41, 0x9d4f6b43, + 0x019910d4, 0x401cdc5a, 0x04d29924, 0x991e24d8, 0x41c35b03, 0x071734ee, + 0x275c0399, 0x26356640, 0x8ad49945, 0x41c34183, 0x031e4f6b, 0xd49d4027, + 0x37a09916, 0xd09d40a7, 0x09d49d08, 0x9d38a199, 0xf2b111d1, 0x2299f3b1, + 0x6ed2bd4f, 0x27345903, 0xa642e030, 0xc3430705, 0x12d49d41, 0xbf36f493, + 0x28448905, 0xd48df7b1, 0x10a0892c, 0xbf26f293, 0x2a708d05, 0xb10ea189, + 0x28718d22, 0xc504d399, 0x739dd0d2, 0x15302718, 0x04d499a3, 0x5332a289, + 0x5b418342, 0x3f2c0324, 0x4c834207, 0x5bd3b93f, 0x404c1303, 0xbeeef093, + 0x02102705, 0x0b112734, 0x27442723, 0x14d49d32, 0x9d17d19d, 0x420715d3, + 0x03994653, 0x2ed48d0b, 0x024c3ff6, 0xd48d4027, 0x64d38d62, 0xd10ea489, + 0x4702d802, 0x62d48d44, 0xc110a389, 0x33474400, 0x01a424b9, 0xc564d38d, + 0x4fe634d0, 0x22b905e3, 0xd29d019c, 0x95f49380, 0x449905be, 0x34dbc107, + 0xffdf0ea7, 0x10d599ff, 0x66bef4a5, 0x2b07008d, 0x330f2c83, 0x27820723, + 0x848e2340, 0x3327ffff, 0x007e23fd, 0x25fdff00, 0xff00007f, 0x008224fd, + 0x8603ff00, 0xa799843d, 0x65150737, 0x0ca499f7, 0xf7657183, 0xd7998623, + 0x6144d607, 0xfd05a6f0, 0x00007f21, 0xff7ce0ff, 0xd79d0426, 0x7857fd07, + 0x19000669, 0xa3423c84, 0x93841d42, 0x05be1ff3, 0xc3073461, 0x03f44fe6, + 0xe680d299, 0x8901092f, 0xd48962d3, 0x7121fc64, 0x27439b05, 0x75148700, + 0x5c22fcf0, 0x47302705, 0xfcf38504, 0x89053b24, 0xd3891ad4, 0x0f4c031c, + 0x730f3c03, 0x9b447334, 0x07602734, 0x0bb303b1, 0xe3b30bb0, 0x0bcb47b3, + 0x00cd14cb, 0x00cd2710, 0x774ea710, 0x4001ffe7, 0x05390fe6, 0xc4c24411, + 0x300fe630, 0xbe1c0705, 0x07008b8b, 0xa74c2640, 0xffe7779e, 0x1b070c07, + 0x9c159405, 0x00bb90be, 0x0c080fab, 0x100c2711, 0x403b4127, 0x94254123, + 0xeea73027, 0x27ffe777, 0x1127102c, 0x4107e021, 0xc307433b, 0xcf6b408b, + 0x46563103, 0x0ea7f258, 0xbeffffdf, 0x27008c22, 0xf4365e08, 0x2f4b2c07, + 0xffff2fc0, 0x3be8ffff, 0xeb400712, 0x773ea741, 0x3425ffe7, 0x0180d199, + 0x0b2b9b33, 0x8511f832, 0xc5430705, 0x12fc68d4, 0x40270575, 0xfc6cd4c5, + 0x27056114, 0xc5f27130, 0xd4c170d3, 0xc5f38134, 0xd3c574d2, 0x7cd6c578, + 0xc560dc9d, 0x41275cd4, 0x849d3027, 0x05839d04, 0xc60ca499, 0xd6f0a144, + 0xa6f16104, 0x87370716, 0x0b343347, 0xfdf29343, 0x42f505bc, 0xff000394, + 0x41238459, 0xa399845d, 0xa23ff636, 0x04d49902, 0x029444fc, 0x57fd51c3, + 0x00066978, 0xffdf0ea7, 0x8b7cbeff, 0xb5f29300, 0x226105bc, 0x0c030d07, + 0x44d2c590, 0xf3932007, 0x0705bca4, 0xe34127d0, 0x349d7f2c, 0x90dc230b, + 0x34193207, 0xc2803c03, 0xf193f932, 0x2705bdcc, 0xa7be402c, 0xa4890102, + 0x8df0b110, 0xa78928d4, 0x71f2930e, 0xd78d05bc, 0xc1007926, 0xd09d44db, + 0x07f1b10d, 0x0411990b, 0xbc5af793, 0x0ed19d05, 0x014023c1, 0x10a489ac, + 0x0b30f2c1, 0x074487c3, 0xbec40b1a, 0x01010266, 0x0b4b07a9, 0xc59b0b4c, + 0xd9c550d4, 0x2df3934c, 0x339905bc, 0x25f19324, 0xd39d05bc, 0x26779958, + 0x03fccd03, 0xb15ad79d, 0x071161f0, 0x0b04853b, 0xc541053c, 0xf29354d3, + 0x9905bc04, 0x4d072522, 0x9559d29d, 0x03300703, 0x0303fccd, 0x4c03703c, + 0x0129275c, 0x05440347, 0xa8340337, 0x80d299f2, 0xf393f1b1, 0x9d05bbd8, + 0xdcc59412, 0x5ad29948, 0x02bc34d1, 0x4c0b3127, 0x342b323b, 0xa289b40b, + 0xb9f49310, 0x4b7505bb, 0x26864385, 0x10272907, 0x24054027, 0x0310a389, + 0xda240311, 0x4027f313, 0xb90ef49b, 0xb1034fd0, 0x91f193f7, 0x709d05bb, + 0x0c14991d, 0x01f04fe6, 0xd2c1f1b1, 0x44d3c134, 0x19c51255, 0x9913b530, + 0xf09308a4, 0x9d05bb70, 0xa7991914, 0x1a179d09, 0x9d240099, 0xf1931b10, + 0xd105bb5c, 0xf049dc12, 0x7d10012d, 0x0c3c2703, 0x41273103, 0x42ca433b, + 0x6b4307f8, 0x0c4c144f, 0x6b0c4c27, 0x93f2b14f, 0x05bb33f3, 0x411c249d, + 0x29f79334, 0x242505bb, 0x23c17751, 0xd527353c, 0x310364d4, 0x15f19320, + 0xd0d505bb, 0x33990368, 0xbdc10708, 0xc1036cd3, 0x4c834414, 0x0734070f, + 0x33263324, 0x93320b33, 0x0604d3f2, 0x2401342b, 0xa2993333, 0xbd340b08, + 0x99113832, 0x202709aa, 0x11393abd, 0x532ad489, 0xbd418345, 0x99113b34, + 0x32d505d4, 0x34bd1140, 0xf7b1113a, 0x113c32d5, 0xc13c74c1, 0x449930d3, + 0x6dd4bd28, 0x34109903, 0xc018d09d, 0xbebe6631, 0x0fabff7a, 0x034ad0ad, + 0xc1890766, 0x48d1ad58, 0x58c48903, 0x4fab4103, 0xa958c48d, 0xee034ad3, + 0x93021434, 0x05ba7ff2, 0x27042499, 0x9d42e331, 0x231d0424, 0xbee4037e, + 0xa7008b7d, 0xfd4fff4e, 0xf4914211, 0x00273027, 0xc56443c5, 0x43c58c42, + 0x5443c54c, 0x07f12b5e, 0x5e4f6b43, 0x3327f9f2, 0x07f9e05e, 0xe34c7e0d, + 0x5e940fc6, 0xd499f114, 0x714ff616, 0xa751c3fd, 0x7854fd40, 0x5e000669, + 0x3099fd64, 0x271b0726, 0xe038be20, 0xf6c06503, 0x5efbff0f, 0xf393fcaa, + 0x2705bb90, 0xa7e02720, 0xfffc730e, 0x01101c27, 0x004e8304, 0x48360300, + 0x0c032103, 0x103c0314, 0x863122d4, 0x28e9d624, 0xdf0ea7f1, 0x9fbeffff, + 0x07270088, 0xc4f0b35e, 0x0300004e, 0xd63419de, 0x3421d94f, 0xff004e83, + 0x004ec4ff, 0x03ccffff, 0x27c81ee1, 0x73eea710, 0x0c27fffc, 0x03e20110, + 0x2e8314ec, 0xe6030000, 0x03015b2f, 0x1ef06811, 0x5e3127b9, 0x0ea7fa59, + 0xbeffffdf, 0xc1008875, 0x012734d2, 0x330f2c83, 0x7c24f923, 0x07ff0000, + 0xfd44a31d, 0x00007c24, 0x10d399ff, 0x5338d4c1, 0x03033b31, 0x04ab901c, + 0xcc27e027, 0x3b412711, 0x03408b4e, 0x194d46e1, 0x33240714, 0x342f0324, + 0xc0000668, 0xb915ff4c, 0xb9018523, 0x03018424, 0xbd410331, 0xbd018424, + 0x39018523, 0x33240714, 0x342f0324, 0xc0000668, 0xb915ff4c, 0xb9018523, + 0x03018424, 0xbd410331, 0xbd018424, 0x03018523, 0xaafcf012, 0xc007d499, + 0x872fff4c, 0x0b443334, 0x8c34f134, 0xe3ff0003, 0x0300004e, 0x00004ea3, + 0x8c34f502, 0xc1ff0003, 0xd79944d4, 0x9434f534, 0xfdff0003, 0x00038c37, + 0xdf0ea7ff, 0x8fbeffff, 0x41270087, 0xb8c6f093, 0x0c049d05, 0x99fd3b5e, + 0xdb9d55bb, 0xfa1f5e80, 0x891cd689, 0x6c031ad4, 0x0f4c030f, 0x44736473, + 0x3607649b, 0x47fac65e, 0x85040744, 0xfaa55ef4, 0x1487439b, 0x925ef175, + 0x5e3227fa, 0x3427f825, 0x07f8205e, 0x001e270c, 0x2027a000, 0x00872dbe, + 0xca5e4007, 0x8d4027fa, 0xe85e58c4, 0xcb4107fd, 0xe4458342, 0x99f8e341, + 0xd4995c03, 0x0e202705, 0x07212734, 0x8341c342, 0xf8d35e41, 0x7f6b7107, + 0x5eff7ce0, 0x331707fe, 0x0b378714, 0x8c34f131, 0xf5ff0003, 0x00039432, + 0x004ee3ff, 0x4ea30300, 0xf5010000, 0x00038c34, 0x04d099ff, 0x30fd4027, + 0xff00038d, 0x039834f5, 0x1f03ff00, 0x00066834, 0x12bd20a7, 0x12bd018e, + 0x34f1018d, 0xff00038c, 0x00004ee3, 0x8c34f504, 0x89ff0003, 0x31ed30a1, + 0xff00039c, 0xed32a289, 0x00039e32, 0xf9a45eff, 0x5e0c4c27, 0x4c27fc99, + 0xf6d45e16, 0x5e144c27, 0xf071f6ce, 0x300bf181, 0x9a5e310b, 0x0bf471fa, + 0xfa8a5e43, 0x7c5e4027, 0x104c27fa, 0x27f6b15e, 0xab5e0f4c, 0x1b4c27f6, + 0x27f6a55e, 0x9f5e134c, 0x07b0b1f6, 0x770cbe1c, 0xc5b0b5ff, 0x965e30bc, + 0x0c4c27f2, 0x27f6895e, 0xb85e0c4c, 0x0c4c27f1, 0x27f1945e, 0xf6785e4b, + 0x735e4227, 0x0d4c27f6, 0x27f66d5e, 0x675e184c, 0x5e3247f6, 0x77bef1e8, + 0x74a9ff77, 0x734102ae, 0x04962127, 0x439b2027, 0x0407423b, 0x1a270333, + 0x00b534be, 0x00000e03, 0x2740a704, 0x34f0c530, 0xc6a90f07, 0xf42502ac, + 0xf405f355, 0xf335f415, 0xb907f345, 0x0c03c027, 0xb2cee90c, 0x07000192, + 0x9b4c0b40, 0xf04e05e6, 0x241001ed, 0x4df15301, 0x271301ed, 0x07310371, + 0xca433b47, 0x3f6bf64e, 0x6d123cd0, 0x22271307, 0x3b34f3c1, 0xe3230b21, + 0x03ffff2e, 0x00002e34, 0x25f45306, 0x074201ed, 0x054c0b4f, 0xb0c3f942, + 0x42000192, 0xc4c40329, 0x07a70ccc, 0xe2f401b2, 0x1101044b, 0xfa4be2f4, + 0xe2f42100, 0x9300e14b, 0x05b6a3f7, 0x49d873bd, 0xffff4ea7, 0x7d42b9ff, + 0x837e5518, 0x07342721, 0x7843bdce, 0x404bd518, 0x7d42bd06, 0xf0315e18, + 0x22532e07, 0x13074707, 0x433b2e0b, 0x038824d2, 0x6b130731, 0x27801e1f, + 0xf56c5e40, 0x5e0c3c27, 0x2027f057, 0xa05e1127, 0x5494c1ed, 0xef41c4ee, + 0x0036f493, 0x5c43c106, 0xef3583ee, 0x27ef355e, 0x435e114c, 0x5e4127f5, + 0x4c27f53e, 0xf5385e19, 0x5e0e4c27, 0x4c27f532, 0xf52c5e1a, 0x275e4a27, + 0x100c27f5, 0xc1ecf35e, 0xc4ee5494, 0x3e07eee7, 0xff74eebe, 0xef050fe6, + 0x79eeda5e, 0x9849f474, 0xc5f493ee, 0x433904cf, 0x270e32c0, 0x5e8001cd, + 0x0c27ee93, 0xecc25e0f, 0x8002cd27, 0x53ee865e, 0x07ec2bf1, 0x5313012e, + 0x53ec2bf7, 0x0b740122, 0x5e13072e, 0x3227ff58, 0x4f073387, 0x4e31430b, + 0x92b033f9, 0x105e0001, 0x1e3127ff, 0x1e3027ec, 0x07f64ee8, 0x6802a970, + 0x07740303, 0xaf09b9c0, 0xff1c2703, 0x03be0707, 0x41270078, 0x20273027, + 0x0128c4d5, 0x0704c39d, 0x68c3b947, 0x34c2d503, 0x2cc2d501, 0x30c2d501, + 0x1d490b01, 0x68caa943, 0x07190703, 0xb35fbe0a, 0x07600700, 0xbe0a0719, + 0x0700b34f, 0x079c8680, 0x07b02719, 0x0b4707e9, 0x0743194b, 0x0b182b0b, + 0x03d1270c, 0xe8360bb1, 0x07011e11, 0x05039d43, 0xc0a94553, 0x24870368, + 0x03c22c0b, 0x2824d110, 0x1f3c8301, 0xd4abd33b, 0x01282dd5, 0x07c7fef0, + 0x79f493a0, 0x405105ff, 0xc1a99c07, 0x9d030366, 0x05460148, 0x419b4a07, + 0x00e404ea, 0x4027ba07, 0x941d947d, 0x945d943d, 0x0148c3b9, 0x31032027, + 0xc2d54127, 0xc3bd0144, 0xc4d50148, 0xc2d50138, 0xc2d5013c, 0xabc60140, + 0x85038c07, 0x0807d027, 0x0d0b3707, 0x34193d0b, 0xe0270219, 0xb4e2421b, + 0x1a070089, 0x1b121e2b, 0x1fe61b07, 0x300700a1, 0x3219031e, 0x4e2b4207, + 0xd1033103, 0x0bf441ca, 0x2feacae4, 0x1c070c07, 0x03880c03, 0x2703581d, + 0xdd7e602c, 0xc10776ea, 0xf4939cc2, 0xd105b478, 0xd502d843, 0x9302f8c2, + 0x0153d8f4, 0xc4053225, 0x0e07f68e, 0x30870553, 0x2e073c0b, 0x013831d1, + 0x271f2c83, 0xab423b41, 0xd5290741, 0x0b013834, 0x07241920, 0x07410308, + 0x0b241d37, 0x193d0b0d, 0x1b021934, 0x7b4bea42, 0x2b4207ff, 0x074b224e, + 0x038d1e4b, 0x0b891ed1, 0x5e310319, 0x0123fedf, 0x0abe010b, 0xb00700b2, + 0x135ebfab, 0x5e4027ff, 0xfb4eff6f, 0x00000e27, 0x796abe02, 0xf3bea7ff, + 0x4827fff9, 0x0524b49d, 0x001e27b0, 0x0b070200, 0x99c3377e, 0x0b0724bc, + 0x1c07c603, 0xff7403be, 0x4c3b4127, 0xfb8eb4b5, 0x3ea7f54e, 0x99ffffff, + 0x45361134, 0xe6123499, 0x27016d4f, 0x4ea70f3c, 0x35fdbfff, 0x5f2c2743, + 0x4fff4ea7, 0x3442c5fd, 0xa7b63c27, 0xfdefff4e, 0x0f0443d5, 0x0083c3be, + 0x9fff1ea7, 0x0a4e27fd, 0x14158000, 0x13253227, 0x0ea71411, 0xa3fdebff, + 0x1504004d, 0x27132114, 0x003da320, 0x05132504, 0x004f2702, 0x150d0200, + 0x0ef29b04, 0xffff2ea7, 0x112499ff, 0x24994536, 0x154fe612, 0xa7d02701, + 0xffffff1e, 0xa7111499, 0xfeffffce, 0x149d4103, 0xd5332711, 0xa70148c3, + 0xfd4fff0e, 0xb1270301, 0x433b4b07, 0x12993407, 0x073f6b0e, 0x9d42ab43, + 0x03c50e14, 0x9b40273c, 0x01270ef4, 0xbdbd8e7e, 0x181d35c0, 0x0cfc300c, + 0xe600aa10, 0xa7008cdf, 0xffffff0e, 0x0e5c04d1, 0x1ea74806, 0x41fdafff, + 0xff2ea713, 0x340bfd9f, 0x24211305, 0x25104ce3, 0xa3231124, 0x2315103c, + 0xb2cef193, 0xe6141905, 0x9900b34f, 0x20072504, 0x03cc42e0, 0xb2baf393, + 0xa7321905, 0xffffff4e, 0x439d3027, 0x27263625, 0xbe19d40d, 0x93ff6b5d, + 0x05b297f4, 0x4ea74005, 0xb9ffffff, 0xf6156443, 0xa703df3f, 0xfd4fff4e, + 0xf2934101, 0x2704d628, 0x2707d14d, 0x05020734, 0x25231524, 0x7854be21, + 0x9b402700, 0x1ea70ef4, 0xa7feffff, 0xfd4fff3e, 0x014012b9, 0xf63834c5, + 0xa7f58e2a, 0xfdcfff4e, 0x5e684bc5, 0xf493ff4f, 0x1905b248, 0x8c3ff643, + 0x7c33befe, 0xfe855e00, 0xb236f493, 0x46431905, 0x24249935, 0x457f4cf8, + 0x5ed12703, 0x10b9fedb, 0x04531d35, 0xf50e0183, 0xff78619e, 0xff6b0cbe, + 0xa7fe117e, 0xfff99d3e, 0x341d4027, 0x3ea7343d, 0x01ffffdf, 0x07458634, + 0xe8462723, 0x562301f4, 0xff3ea733, 0x3401fd4f, 0xffdfbea7, 0xa34433ff, + 0x27b40548, 0x7e20000d, 0xfc93e755, 0x0505fbbc, 0xbe0b07c0, 0x01008092, + 0x214fe6c4, 0x4b0ea703, 0x1227fff2, 0x008497be, 0x4ea70027, 0x1dffffd7, + 0x7d403d40, 0xff2ea740, 0x4027ffff, 0xa72a209d, 0xfff19fee, 0xf393e41d, + 0xa705b0d8, 0x43319d10, 0x0e5024bd, 0x3d25209d, 0x3c24c5e4, 0x9d4024c5, + 0x249d2624, 0x6424bd27, 0x27382715, 0xfd402721, 0x000e5024, 0x982103ff, + 0xf1fe93f3, 0x1c2705b0, 0x273e071b, 0x05410720, 0x03112332, 0x27f4b834, + 0xffdea740, 0xd2c1fd4f, 0xa23c2774, 0x4c27e43d, 0x3501274c, 0x27e445e3, + 0xc84d2732, 0x25e35d4e, 0x1ce19de4, 0xe115e01d, 0x9d1be09d, 0xe09d1ae1, + 0xa9f3932e, 0x20e805b0, 0x40270255, 0x9d30e49d, 0x3ea72fe4, 0x27fd4fff, + 0x7434c120, 0xe855e29d, 0x27022740, 0x33e49d41, 0xfd934027, 0xa705b0f8, + 0x70d39d30, 0x2774d4c5, 0x84dd0330, 0x9d0d0701, 0xdc0360e3, 0xa73127ff, + 0x331c2720, 0x0746e38d, 0x7f0ce33d, 0x8d63e19d, 0xe49d5ee2, 0x34e4c558, + 0xc538e4c5, 0xe4c53ce4, 0x61e19d40, 0x9d62e49d, 0xe28d44e4, 0x5ce28d5a, + 0x9d32e49d, 0xe49d64e4, 0x68e4c566, 0xc565e49d, 0xe4c550e4, 0x54e49d4c, + 0x237f3ce3, 0x190283dd, 0x800c0304, 0x93f903c2, 0x05b210f4, 0xa7103c27, + 0x3d421d20, 0x104c0342, 0x4ea7f3a0, 0xbdffffff, 0x27010142, 0x7d7cbe00, + 0x27c007ff, 0x73be330c, 0xfa93ff7d, 0x0705fadc, 0x005d272a, 0x006e27fa, + 0x7c271e00, 0x1d9c271e, 0x071a1c27, 0x2740278a, 0x27e0a7b0, 0x9d240531, + 0x249d1823, 0xb525950c, 0x152c2526, 0x452c5520, 0x1c278d20, 0x8d1e298d, + 0x219d202b, 0x1a219d19, 0xc51b219d, 0x2c03302e, 0x202fc434, 0xc60006b3, + 0x8ed53207, 0x8b9d0174, 0x383d0368, 0x27202702, 0x03320546, 0x27f4c834, + 0xf393232c, 0x2705fb14, 0x05420710, 0x03212331, 0x27f4b834, 0xe0d4bd40, + 0xbd40a702, 0xd502e1d2, 0xa702b4a4, 0xffffff3e, 0xd5520c27, 0xd5159032, + 0x930134a2, 0x04cfb7f3, 0x40072027, 0x01233205, 0xf4b83403, 0xffff4ea7, + 0xbd3027ff, 0xbd0e6443, 0xbd0e6642, 0xbd0e6542, 0xbd187c42, 0xbd0e6740, + 0x2702d4d2, 0x44429d10, 0x0e5942bd, 0x187e41ad, 0x16a040d5, 0x9d06d19d, + 0x40d508d1, 0x40d50658, 0x3ea7065c, 0x1dfff99f, 0xad313d31, 0x27010240, + 0x43bd0f3c, 0x20a70108, 0x010942bd, 0xada0ec27, 0xd5010a40, 0xd50e4c40, + 0xbd065040, 0xa7156041, 0xfffef33e, 0x4e072027, 0xe1233205, 0xf4b83403, + 0x1ea720a7, 0xa7fffc9b, 0xffffff3e, 0x40271215, 0x16b034bd, 0x16ac3ed5, + 0x3ed51205, 0x3ed516a4, 0x212716a8, 0x27113c27, 0xb024fd40, 0x03ff0016, + 0x5ef39821, 0x4027fc38, 0x249d3027, 0x0a23ad25, 0xfc4c5e01, 0xff6738be, + 0x27b7797e, 0xfb915ed1, 0xf87434c1, 0x0100004e, 0xf493fdd3, 0x9d05ae58, + 0xcd5e3342, 0x74d4c1fd, 0x00004ef8, 0x9dfda501, 0x309d3030, 0xfda45e2f, + 0xc1d7f093, 0x78e5be00, 0xfc195e00, 0xf1930127, 0x9e00c1a4, 0x4e007c15, + 0xff4ea7fd, 0x43b9ffff, 0xd0071564, 0x93673fd6, 0x04d22bf1, 0x4d273327, + 0x132507e0, 0x1c031405, 0x0331070c, 0x21074f1c, 0xe37f3ce3, 0x1c237f2c, + 0x0334195b, 0x32c2803c, 0x27d8c6f9, 0x1415544c, 0xf3930d07, 0x2704d204, + 0x0101144c, 0x31050403, 0xf4a83403, 0xd1e6f093, 0x9efd0e04, 0x2700741e, + 0x93141544, 0x04d1e3f3, 0x4c272027, 0x03320514, 0x1ef4c834, 0x5ff093e0, + 0x58be00c1, 0x901e0078, 0x4ea7fd4e, 0xb9ffffff, 0xf6156443, 0xa700893f, + 0xfeffff3e, 0x27093499, 0x07438310, 0x87d433d4, 0x23d42b44, 0xffffb4de, + 0xffd70ea7, 0x070479ff, 0x4b310331, 0x4823874f, 0x83041940, 0x5114ce43, + 0x002824f1, 0x4ea3ff00, 0xf5800000, 0x00002824, 0xc41307ff, 0x83bed834, + 0x312700ac, 0x1904d39d, 0x033027d4, 0x9bd41d41, 0x4ea70ef3, 0xc5fd4fff, + 0xf39b3843, 0xff4ea70e, 0x4399ffff, 0xbf2ea70e, 0x3138fd4f, 0x24054127, + 0x24033153, 0xfd8e32d6, 0x31033107, 0xf093bc1e, 0xbe00c0d1, 0x5e0077b7, + 0xfd4eff6f, 0xffff4ea7, 0x6443b9ff, 0xf6d00715, 0x8900ec3f, 0x4fe608d4, + 0x49f400da, 0xd43100cb, 0xfffe4ffc, 0x00b6ffff, 0xf40ad489, 0xa201004d, + 0xac08be00, 0xd70ea700, 0x0439ffff, 0x432b0319, 0x397143cc, 0x08de8901, + 0x0339d431, 0x330ad289, 0x3103104c, 0xab0fec83, 0x33033de4, 0xab138328, + 0x791187e2, 0x2c1ef504, 0x27ff0000, 0x8345f631, 0x4e070fec, 0xff804fa3, + 0x047dffff, 0xf49b4027, 0xff2ea70e, 0x24c5fd4f, 0x013ba638, 0x9b402722, + 0x3ea70ef4, 0x99ffffff, 0x31270e34, 0x34cb323b, 0x4fbf2ea7, 0x273138fd, + 0x53240541, 0x03354631, 0x27f31e24, 0x93c61e30, 0x05abfff3, 0x03433499, + 0x43349d41, 0x0127fd8e, 0xc0ddf193, 0x7a239e00, 0x93042700, 0x00c0a9f1, + 0x007a189e, 0xf1930427, 0x9e00c07a, 0x27007a0d, 0x47f19304, 0x029e00c0, + 0x0427007a, 0xc00ef193, 0x79f79e00, 0x89013100, 0x03890a02, 0xd3f09308, + 0xa8be00bf, 0x045e0076, 0xa7fb4eff, 0xffffff4e, 0x156443b9, 0xb007f123, + 0x3fd6d107, 0x930f0765, 0x00c0acf1, 0xbe102c27, 0xe6006e8b, 0xe5fc93dd, + 0x4d2704cf, 0x3c2707e1, 0x15c40584, 0x07cb25c3, 0x7118be0d, 0x03200700, + 0x0ccc0321, 0x43273f07, 0x34033101, 0xc403c105, 0x3459f4a8, 0x1d073309, + 0xc30dc45d, 0xcfc9f093, 0x6e49be04, 0xa5f09300, 0xdfbe04cf, 0xf1030071, + 0xfd93fb8e, 0x1e00c050, 0x32f093ad, 0x24be00c0, 0x921e0076, 0xcea7fa4e, + 0xb9ffffff, 0x231564c4, 0xf6d007f8, 0x99057d4f, 0x4ff626c4, 0xdc21056b, + 0x08030d07, 0x513bcce0, 0x3cccd002, 0x4bcce04d, 0xccd0025d, 0xcce07e4c, + 0xf002aa56, 0x011257cc, 0xe259cce0, 0x5accf401, 0xcce00439, 0xe001fa57, + 0x017858cc, 0x1418cce0, 0x19ccf407, 0xcce005a8, 0xf406c415, 0x06a716cc, + 0x06d7c3e0, 0x8414cce0, 0x9ff19301, 0x1b5e00c3, 0x23cce001, 0xccd00204, + 0xcce05d24, 0xf002322d, 0x00a82ecc, 0xa832cce0, 0x33ccf402, 0xcce0034c, + 0xc402be2e, 0x31b62fcc, 0x034007d0, 0x4cf0334c, 0x93010c67, 0x00c083f1, + 0xe000e15e, 0x024642cc, 0xb843ccf0, 0x46cce000, 0xccf40174, 0xe003fb47, + 0x013643cc, 0x8544ccc4, 0x32f0d331, 0xf1930588, 0x5e00c1a1, 0xcce000b6, + 0xf001f610, 0x00b311cc, 0xbf13cce0, 0x14ccf401, 0xcce0043a, 0xe401d611, + 0xff5a12cc, 0x30bed031, 0xdc21ff6e, 0x1ff61007, 0x4ea7008a, 0xb9ffffff, + 0xf6156443, 0x93048f3f, 0x04ce73f4, 0x07d33d27, 0x04072427, 0x42154305, + 0x9fbe4c25, 0xf8030070, 0xcce0fa8e, 0xf4012b27, 0x031828cc, 0x2e24cce0, + 0x26cce401, 0x67beff10, 0xdc21ff6c, 0xb71e1007, 0x3651cce0, 0x52ccf402, + 0xcce00241, 0xe401ca4c, 0xfef250cc, 0x930cd399, 0x05aa0bf4, 0x2160439d, + 0xe0981edc, 0x01943ecc, 0xa23fccf4, 0x3ccce002, 0xcce40199, 0x31fecf3d, + 0xe942f0d4, 0x94f19304, 0x0c0700c0, 0x1efdec7e, 0x02c4e096, 0x5ac5f401, + 0x75c1c003, 0xfeaec2e4, 0x1ebed031, 0xdc21ff6b, 0x535e1007, 0x94f97eff, + 0x2f6b2007, 0x4f4b4207, 0x931a04ce, 0x00bf97f1, 0xd331c91e, 0xa9a6f493, + 0x46438d05, 0x214843c5, 0xff305edc, 0xf492f493, 0x9d312705, 0x42bd6943, + 0x43bd02a5, 0xdc2102a2, 0x31ff195e, 0x1c32f0d3, 0x83f19306, 0x931e00c2, + 0xa972f293, 0x64249905, 0x4f4bd331, 0x03df4fe6, 0xc0f5f193, 0xff7c5e00, + 0x1fbed031, 0xdc21ff6b, 0xe35e1007, 0xf0d331fe, 0x0386203c, 0xbf7af193, + 0xff605e00, 0x39f4d331, 0xf493063d, 0x8d05a938, 0xdc215643, 0x31fec55e, + 0x25f493d2, 0x312705f4, 0x02b042d5, 0xbd69439d, 0x2102ac43, 0xfeac5edc, + 0x88bed031, 0xdc21ff6b, 0x9b5e1007, 0x6bc3befe, 0x07dc21ff, 0xfe905e10, + 0xbe4bf193, 0xff145e00, 0x9abed031, 0xdc21ff6b, 0x7b5e1007, 0x0cd289fe, + 0xa8e2f493, 0x5c428d05, 0x6f5edc21, 0xbed031fe, 0x21ff6c27, 0x5e1007dc, + 0xd031fe5e, 0xff6b5cbe, 0x1007dc21, 0x31fe515e, 0x034007d0, 0x4cf0334c, + 0x93037c67, 0x00be1ff1, 0x31fec95e, 0xb8167ed0, 0x1007dc21, 0x31fe315e, + 0xb7d07ed0, 0x1007dc21, 0x31fe255e, 0x89f493d2, 0x312705f3, 0x02a842d5, + 0xbd69439d, 0x2102a643, 0xfe105edc, 0x39f0d331, 0xf19302bd, 0x5e00bfa1, + 0xd331fe8a, 0xa866f493, 0x3443c505, 0xf35edc21, 0xf0d431fd, 0x93038642, + 0x00bedaf1, 0x89fe6d5e, 0xf4930cd3, 0x8d05a848, 0xdc215e43, 0x93fdd55e, + 0x05a83bfc, 0x1d070c07, 0x031e0c03, 0x2c270c1c, 0x6ae1be10, 0x9d412700, + 0xdc211cc4, 0x31fdb55e, 0x034007d0, 0x4cf4334c, 0x7efd4a67, 0x2007934b, + 0x42072f6b, 0x40ee4f4b, 0xf493fe53, 0x2705f2fc, 0x69439d31, 0x02a442bd, + 0x02a143bd, 0x835edc21, 0x0cd299fd, 0xa7e6f493, 0x61429d05, 0x735edc21, + 0x53ccc0fd, 0x53ccd024, 0x54cce430, 0xf293fcb0, 0x9905a7cc, 0xd3314424, + 0x01cd4fe6, 0x01c93fe6, 0xc02bf193, 0xfdd45e00, 0x930cd299, 0x05a7aff4, + 0x2163429d, 0xfd3c5edc, 0x930cd399, 0x05a79ff4, 0x2162439d, 0xfd2c5edc, + 0x1c38ccc0, 0x273accc0, 0x6933cce4, 0x07d331fc, 0xf0412343, 0x9301eb48, + 0x00bdddf1, 0x31fd955e, 0x340cf0d0, 0xf1930222, 0x5e00bd7c, 0xd331fd86, + 0xc0203cf0, 0x36f19301, 0x775e00be, 0x40ccc0fd, 0x41ccd014, 0x93d2311f, + 0x05a74bf4, 0x214042c5, 0xfcd85edc, 0xf493d331, 0xc505a73c, 0xdc213c43, + 0x31fcc95e, 0x2df493d2, 0x42c505a7, 0x5edc2138, 0xccc0fcba, 0xccd01729, + 0xcce41b29, 0x31fbf72a, 0x6883bed0, 0x07dc21ff, 0xfc9c5e10, 0xc1f1f193, + 0xfd205e00, 0xfabed031, 0xdc21ff69, 0x875e1007, 0x5bccc0fc, 0x5bccd01e, + 0x5ccce429, 0xd431fbc8, 0xa6e2f293, 0xc5312705, 0x239d6824, 0x5edc2166, + 0xd231fc6a, 0xa6cef493, 0x5042c505, 0x5b5edc21, 0x93d331fc, 0x05a6bff4, + 0x214c43c5, 0xfc4c5edc, 0x1849ccc0, 0x224accd4, 0x8947cce4, 0xf0d331fb, + 0x93012438, 0x00be61f1, 0x31fcb95e, 0xf332f0d3, 0xd4f19301, 0xab5e00be, + 0x0cd389fc, 0xa686f493, 0x5a438d05, 0x135edc21, 0x15c6c0fc, 0xe41fc6d0, + 0x31fb53c9, 0x6868bed0, 0x07dc21ff, 0xfbf85e10, 0x0fbed031, 0xdc21ff68, + 0xeb5e1007, 0xbed031fb, 0x21ff678f, 0x5e1007dc, 0xccc0fbde, 0xccc02c1a, + 0xcce44122, 0x31fb1f19, 0x39fa93db, 0xa42105a6, 0x4ec8bd83, 0x0b07b4ab, + 0xff690ebe, 0x0ff61007, 0xab25fc42, 0xb35edc21, 0x19fa93fb, 0xd43105a6, + 0xb4ebab21, 0xf0be0b07, 0x1007ff68, 0xfc240ff6, 0xd031e11e, 0xff680abe, + 0x1007dc21, 0x9dfb895e, 0xdc216423, 0x27fb855e, 0x04f19304, 0xd29e00bb, + 0x01110073, 0x03310221, 0xbabbf093, 0x7085be00, 0xfa755e00, 0xc09ef093, + 0x7079be00, 0xfb695e00, 0xa5c2f493, 0x32439d05, 0x4f5edc21, 0xb5f293fb, + 0x249905a5, 0xe64f4b64, 0x93008b4f, 0x00bd0df1, 0x93fbc15e, 0x05a59ff4, + 0x2131439d, 0xfb2c5edc, 0xa592f493, 0x2e439d05, 0x1f5edc21, 0x46238dfb, + 0x175edc21, 0x933783fb, 0x05a57bf4, 0x2155439d, 0xfb085edc, 0x542ccce0, + 0x2dccf401, 0xcce000de, 0xe4019b1c, 0xfa5b2bcc, 0x32f0d331, 0xf19301ea, + 0x5e00bfaf, 0xdbbefb6e, 0xf393ff72, 0x2705f044, 0x69349d41, 0x02b430d5, + 0xcf5edc21, 0x90717efa, 0x2f6b2007, 0x4f4b4207, 0x013304ee, 0xbabef193, + 0xfb405e00, 0x2144239d, 0xfab05edc, 0xa516f293, 0x9d402705, 0x3fe63324, + 0x4127fc30, 0x2133249d, 0xfa985edc, 0xa4fef293, 0x9d102705, 0x44f63021, + 0x249d4127, 0xff3ea730, 0x34c1fd4f, 0x0940ec74, 0x7434c1fc, 0x00004ef8, + 0x9dfbff01, 0xdc213021, 0x93fa695e, 0x05a4cff2, 0x219d1027, 0x2744f62f, + 0x2f249d41, 0x4fff3ea7, 0x7434c1fd, 0xfbda40ec, 0xf87434c1, 0x0100004e, + 0x219dfbd0, 0x5edc212f, 0xf293fa3a, 0x2705a4a0, 0x58249d40, 0xfbba3fe6, + 0x249d4127, 0x5edc2158, 0xcce0fa22, 0xe400a730, 0xf97f31cc, 0x4307d331, + 0xf40c4c03, 0x00c8194c, 0xef52f493, 0x1a439d05, 0xff5edc21, 0x16ccc0f9, + 0x17cce423, 0xd489f95d, 0xd741e00e, 0x21f19300, 0x6f5e00be, 0xf0d331fa, + 0x93011032, 0x00bd7ef1, 0x31fa615e, 0x2632f0d3, 0xd8f19301, 0x535e00bd, + 0x0cd389fa, 0xc00ed289, 0x34c07131, 0x6b32c06e, 0x936833c0, 0x00bce7f1, + 0x99fa395e, 0xf4930cd3, 0x9d05eef4, 0xdc210b43, 0x31f9a15e, 0x7548c0d4, + 0xb8104ce0, 0x26f19300, 0x175e00be, 0xf1f493fa, 0x312705ee, 0xbd69439d, + 0xbd02a342, 0x2102a043, 0xf9785edc, 0x4307d331, 0xd40c4c03, 0x9330194c, + 0x05eeb3f4, 0x2119439d, 0xf9605edc, 0xf493d231, 0x5505eea4, 0x5edc2142, + 0x2cd0f952, 0xf193191b, 0x5e00bc9e, 0xf193f9ce, 0x5e00be59, 0xf193f9c6, + 0x5e00be2e, 0xf493f9be, 0x1505ee7c, 0x21430542, 0xf9285edc, 0xf4933327, + 0x4505ee6c, 0x5edc2143, 0xd389f91a, 0x2343070c, 0x164cf041, 0xf1930093, + 0x5e00bd6e, 0xf493f98e, 0x9d05ee4c, 0xdc211843, 0x93f8f95e, 0x05ee3ff2, + 0x249d4027, 0x793fe608, 0x9d4127fa, 0xdc210824, 0x27f8e15e, 0x25f49334, + 0x434505ee, 0xd35edc21, 0x19f293f8, 0x243105ee, 0x3fd64100, 0x9d40275f, + 0x3fe60924, 0x3127fa4c, 0xee02f493, 0x09439d05, 0xaf5edc21, 0xf5f293f8, + 0x402705ed, 0xe60a249d, 0x27fa2f3f, 0x0a249d41, 0x975edc21, 0x274307f8, + 0x0f07801c, 0xbaeaf293, 0xbe382700, 0x27006833, 0x9e1f0703, 0xc00070d5, + 0xf2931a31, 0x9905edc0, 0x45360924, 0xdc212335, 0x93f8695e, 0x00bc33f1, + 0x93f8e95e, 0x05eda7f2, 0xfe4eeb1e, 0xffff4ea7, 0x6443b9ff, 0x93379615, + 0x05a2aff3, 0x45063419, 0x341d4027, 0x0427fe8e, 0xbdbff193, 0x708b9e00, + 0xa3f09300, 0x44be00bd, 0xdc1e006d, 0xdea7fc4e, 0xb9ffffff, 0x211564d4, + 0x694fd60c, 0x4027c9f6, 0x1588dcd5, 0x158cd4ad, 0xffff4ea7, 0x6443b9ff, + 0x603fd615, 0xc67ef493, 0xe33d2704, 0x07202707, 0x15430504, 0x9efc0e42, + 0xd40068aa, 0xd4d1dbc6, 0xdcad1588, 0x4fd6158c, 0x00cf27d0, 0x27101000, + 0x1000804f, 0x88d4d510, 0x270c0715, 0x802c2710, 0x006511be, 0x33563f27, + 0xc3c51122, 0x9b402740, 0xa51e0ef4, 0x2c070111, 0xbd4ff093, 0x6cbdbe00, + 0x938a1e00, 0x00bd71f0, 0x07e31d27, 0x006caebe, 0xfb4e931e, 0xffffcea7, + 0x64c4b9ff, 0x8e449615, 0xe5f493fb, 0x411905a1, 0xa18ef393, 0x8df49305, + 0x320105a1, 0xf0934301, 0xbe00bd58, 0xb9006c7f, 0xc61564c4, 0x1f27da4f, + 0x1007a000, 0x90000f27, 0x64be1007, 0xb0070068, 0xc0001f27, 0x0f271007, + 0x1007b000, 0x006852be, 0x1f27c007, 0x1007e000, 0xd0000f27, 0x40be1007, + 0x30070068, 0x2c071b07, 0xbd48f093, 0x9efb0e00, 0x4e006c33, 0xff4ea7fd, + 0x43b9ffff, 0xd0071564, 0xf2933a56, 0x2704c588, 0x0507e04d, 0x2c3c2724, + 0x24254427, 0x0d072315, 0x270c2c03, 0x0303014a, 0x03230504, 0x93f4a824, + 0x04c563f0, 0x9b9efd0e, 0xf0930067, 0xbe00bd38, 0x1e006beb, 0xabfb4ec6, + 0xa3d1070f, 0x071207f0, 0xb90dc0e3, 0x0de0670b, 0x008d0bba, 0x0bbb0de0, + 0x0dc000bd, 0xa7120bbc, 0xffffff4e, 0x156443b9, 0x00f63ff6, 0xfb8ef083, + 0xffffcea7, 0x64c4b9ff, 0x064ff615, 0x1ad48901, 0x00b144f4, 0xffffcea7, + 0x64c4b9ff, 0xe24ff615, 0xd0d45100, 0xc4b9d744, 0xd3411564, 0x79ce4fc6, + 0x39311934, 0x93335932, 0x00be16f0, 0xfb0ef083, 0x006b729e, 0xffffbea7, + 0x64b3b9ff, 0x0e3ff615, 0x18d48901, 0x40e84f8b, 0x3ff6008b, 0xd4c1021d, + 0x9944c834, 0x1564b4b9, 0x4fc6d371, 0xa7c11e90, 0xffffffbe, 0x1564b4b9, + 0x017c4ff6, 0x44f0d471, 0xb4b9ff7c, 0xd3611564, 0x4fe6d081, 0x030bff70, + 0x01190479, 0x03590239, 0xf093f083, 0x0e00bdb3, 0x6b119efb, 0xff4ea700, + 0x43b9ffff, 0x3fe61564, 0xd301ff4c, 0xf0932e07, 0x8300beca, 0x9efb0ef0, + 0xb9006af3, 0xe61564c4, 0x99ff4b4f, 0xd29920d1, 0x22d39921, 0x9323d499, + 0x00bf23f0, 0x006ad6be, 0xf6ff335e, 0x9101ef3f, 0x1144f0d4, 0xff765eff, + 0x2e073007, 0xbf55f093, 0x0ef08300, 0x6ab59efb, 0x51d14100, 0x1df093d2, + 0xa8be00bf, 0x125e006a, 0x9df493ff, 0xf293059f, 0x01059f9c, 0x93240143, + 0x00be86f0, 0x8cbe2e07, 0xc4b9006a, 0x4fe61564, 0xd421fedd, 0xd201d111, + 0xf093d331, 0xbe00bc08, 0xb9006a73, 0xe61564c4, 0x89fec44f, 0xd28918d1, + 0x8cf0931a, 0x5cbe00be, 0xb25e006a, 0x51f493fe, 0xf293059f, 0x01059f50, + 0x93240143, 0x00bba1f0, 0x40be2e07, 0xb3b9006a, 0x3fe61564, 0xd331fed5, + 0xd201d111, 0xf093d421, 0xbe00bbbc, 0xb9006a27, 0xe61564b3, 0x41febc3f, + 0xdef093d2, 0xc20700bb, 0x42073207, 0x070ccc53, 0x53335312, 0x2253104c, + 0x3183c183, 0x41832183, 0xf8befc05, 0xb3b90069, 0x3fe61564, 0xd389fe8d, + 0x18d18914, 0x9316d289, 0x00bbdcf0, 0x0069debe, 0x1564b3b9, 0xfe733fe6, + 0x8944d189, 0xf09346d2, 0xbe00bbe6, 0xb90069c7, 0x5e1564b3, 0xf493fe5d, + 0x93059eb8, 0x059eb7f2, 0x24014301, 0xbcd5f093, 0xbe2e0700, 0xb90069a7, + 0xe61564b4, 0x21fe674f, 0x01d111d4, 0x93d331d2, 0x00bb23f0, 0x00698ebe, + 0x1564b4b9, 0xfe4e4fe6, 0xf093d341, 0x0700bce1, 0x07c307e3, 0x53230713, + 0xcc5314ec, 0x07e18310, 0x532a5341, 0x83c18334, 0x83218341, 0x15fe0531, + 0x6959befc, 0x64b4b900, 0x194fe615, 0x51d181fe, 0x71d361d2, 0xeaf093d4, + 0x40be00bc, 0x055e0069, 0x71d391fe, 0x93d281d1, 0x00bbebf0, 0x00692ebe, + 0x1564b3b9, 0xfdd03fe6, 0xa130d3c1, 0x93d2b1d1, 0x00bbf7f0, 0x006916be, + 0x1564b3b9, 0xfdb83fe6, 0xc13cd3c1, 0xd2c134d1, 0x01f09338, 0xfcbe00bc, + 0xb3b90068, 0x3fe61564, 0xd189fd9e, 0x42d28940, 0xbc02f093, 0x68e5be00, + 0xfd8c5e00, 0xd281d171, 0xbb0ef093, 0x68d5be00, 0x64b3b900, 0x003fe615, + 0xa1d191fe, 0x14f093d2, 0xc0be00bb, 0xb3b90068, 0x3fe61564, 0xdec1fdeb, + 0x2cd18934, 0x892ed289, 0xd48930d3, 0x06f09332, 0xfe0500bb, 0x00689ebe, + 0x4efdce5e, 0x99f493fb, 0x428905eb, 0x0843890a, 0xb107c007, 0x0027322e, + 0xeabefb8e, 0xf3930145, 0x01059d7c, 0x0bd00734, 0x56340540, 0x860d0705, + 0x8e0127d4, 0xff4ea7fb, 0x43b9ffff, 0x31e61564, 0x1b07c009, 0xbd2df293, + 0x2cf39300, 0x667e00bd, 0x4edb1efc, 0x07f063fd, 0x15f193d0, 0x0f0704ba, + 0x0726a23e, 0x4d24f409, 0xf4290bba, 0x14284cc0, 0xf1930627, 0x9e00bd21, + 0x85006b61, 0x430027d0, 0x93fd8ef0, 0x04b9ebf2, 0x21512481, 0x00004fd4, + 0x27182000, 0x71236100, 0x0a430b24, 0x2707d614, 0xdbf19306, 0x329e00bc, + 0x410b006b, 0x4fd03027, 0x70000001, 0x6b03071e, 0x07db1e0f, 0xb1f3930d, + 0x4a2704b9, 0x34033201, 0x04030205, 0x0127f4a8, 0x3127ae1e, 0xfb4ee01e, + 0x9cc2f493, 0xa7430105, 0xffffffbe, 0x3123f063, 0x1564b2b9, 0x4305f005, + 0xfc09d107, 0xfc0d2b36, 0x4d27f001, 0xfc9307d6, 0x2704c104, 0x07c40530, + 0xbec3151d, 0x07006304, 0x6330be0c, 0xd8d44100, 0x710f114c, 0xb94586d4, + 0x030e65b4, 0x65b4bd41, 0x8ef0430e, 0x930c07fb, 0x00bcaef2, 0xbc41f393, + 0xfb7b7e00, 0xfc4eb91e, 0xf005f063, 0xd107fc09, 0x0bbbcdc0, 0x49f3930c, + 0x3401059c, 0x34054123, 0xffff4ea7, 0x6443b9ff, 0x0d38b615, 0x93f001fc, + 0x04c09bfc, 0x07d54d27, 0x1d073027, 0xc315c405, 0x0062b0be, 0xf0430c07, + 0xbf9efc0e, 0x0c070062, 0xbc55f293, 0x58f39300, 0x227e00bc, 0x63cd1efb, + 0xb94d27f0, 0x483c270b, 0xf32df40d, 0xf0011007, 0x931ef043, 0xf493f54e, + 0xb9059cb4, 0xb902e149, 0xee02e046, 0x0700f569, 0x07218329, 0x33420732, + 0x2b463334, 0x33d40743, 0x07d40bd3, 0x18af03ad, 0x0100066b, 0x103cf8a3, + 0xe02700d2, 0xcbe9c247, 0xff00159c, 0x1598c4e9, 0xc8e9ff00, 0xff001594, + 0x47a6b7e6, 0x1d078806, 0x68341f03, 0x12b90006, 0x14b90491, 0x42420490, + 0x43834307, 0xca6542c0, 0xa3015eb8, 0x072b32d8, 0x342f032d, 0xd1000668, + 0x2702e424, 0x2742e310, 0xe424d530, 0x9121bd02, 0x9023bd04, 0xed402704, + 0x001594c4, 0x8c21d5ff, 0x03490704, 0x6b940741, 0x2469ce9f, 0x21832907, + 0x42073207, 0x46333433, 0xd407432b, 0xd40bd333, 0xaf03ad07, 0x00066b18, + 0x3cfca301, 0x07ff6f10, 0xd1f58e0e, 0x07048c15, 0x07420771, 0x33363332, + 0x0b430b43, 0x46438945, 0xb3ca0407, 0xff017e83, 0x049174b9, 0x049073b9, + 0x24074103, 0x72bd2f6b, 0xe1270491, 0x5ed323ca, 0x0027ff67, 0xfb4ef58e, + 0xe8e6f493, 0x49426905, 0x07d00743, 0x27322eb1, 0xbefb8e00, 0x070062fc, + 0x0907e6c0, 0xbb0dc0d0, 0xf3930c0b, 0x01059abc, 0x05410334, 0xff4ea734, + 0x43b9ffff, 0x35961564, 0xc4c60c07, 0xfb8e0127, 0x1b07fb8e, 0xba75f293, + 0xe4f39300, 0xae7e00ba, 0x4ee61ef9, 0xff3ea7f8, 0x34b9feff, 0x4cf81d35, + 0xa700d510, 0xffffff1e, 0x99093399, 0x432b4414, 0x41e84f4b, 0xfb9300c2, + 0x99059a70, 0xb29941bc, 0x2b4c0740, 0x6b340742, 0x393fe63f, 0x83e20701, + 0x03e333e7, 0x066770ef, 0x44bd9900, 0x008fefe6, 0x4fe4e401, 0x0000ba18, + 0x910700b1, 0xffd7aea7, 0x798b07ff, 0x449399a4, 0x20274f4b, 0x010140e8, + 0x422b4307, 0x0f6b0407, 0x10070323, 0x03031f6b, 0x077b01ce, 0x87438341, + 0x2b443324, 0x4f43f942, 0xf6ff0000, 0x03410737, 0x6b140741, 0x8331071f, + 0x33438733, 0xce342b34, 0x34f95401, 0xff00004f, 0xe49940a6, 0x2b310704, + 0xc83f4b34, 0xb4994c31, 0x96280742, 0x99d12344, 0x30274024, 0x14074103, + 0x239d1f6b, 0x40219d42, 0x2747c1ce, 0x44bd9d30, 0x36f60027, 0xf493f88e, + 0x990599b0, 0x43994042, 0x6b322b41, 0xa600273f, 0x8e012731, 0x04e499f8, + 0x342b3007, 0x31cc3f4b, 0x42b499b6, 0xa644bd9d, 0x85f49349, 0x42990599, + 0x2b3c0740, 0x1e3f6b32, 0x83e107d5, 0x03e333e7, 0x066770ef, 0x01ee8600, + 0x184fe0e4, 0x2c0000ba, 0x448d9dff, 0xb49d4127, 0xff4ea742, 0x4499feff, + 0x9de30109, 0xfc9304e4, 0xc0059948, 0x00ba183f, 0xcd9d2400, 0x8be40144, + 0x40c399f4, 0x2b41c499, 0x6b340743, 0x27871e3f, 0xfefe5e21, 0x9d44bd99, + 0x655e44bd, 0x1ed123ff, 0x2b4c07da, 0x6b340741, 0xff535e3f, 0xdea7f84e, + 0xb9ffffff, 0xa31564d4, 0x4c4ff6f0, 0xbdf89301, 0xd4990599, 0x2e42e026, + 0xe2c7be01, 0xff4ea700, 0x4bb9ffff, 0x4cb90e64, 0xbcce0e67, 0xba9d2759, + 0x28ac270b, 0x4c070c1e, 0xc4074103, 0xbccecf6b, 0x833c0745, 0x43070f3c, + 0x44332387, 0x432b422b, 0x04074333, 0xde23d407, 0x23fff198, 0xfff1700e, + 0x00e23cbe, 0x4fc6d481, 0x754027ce, 0x0dd465d4, 0x01fa2df9, 0x7e1d07f0, + 0x4c07fbc6, 0xc4074103, 0xcbcecf6b, 0xff2ea7bd, 0x2bbdffff, 0x2bbd0e67, + 0x81c10e66, 0x9d302744, 0x839d0683, 0xd48bbd08, 0x5821d502, 0x5824d106, + 0xd530a706, 0x07065c24, 0x0923bddf, 0x03402701, 0x0a24add4, 0x4c21d501, + 0x110b1e0e, 0x0df193f0, 0x737e04b8, 0x930d07fb, 0x04b803f1, 0x07fa967e, + 0xa70156c0, 0xffffffde, 0x1564d4b9, 0x00884ff6, 0xbc82f493, 0xd83d2704, + 0x05040707, 0xbe4c1543, 0x93005eb2, 0x05980bf2, 0x27402499, 0x9d410330, + 0x249d4223, 0xfd657e40, 0x064488b9, 0xd8bd1d07, 0xdcbd0e65, 0x212716b0, + 0x27113c27, 0xb024fd40, 0x03ff0016, 0x27f39821, 0xd5f08340, 0xd516a014, + 0xd516ac14, 0xd516a814, 0x8e16a414, 0x088499f8, 0xfecf4ff6, 0xf1930427, + 0x9e00b837, 0x930065ed, 0x059873f8, 0x9926d199, 0xf0930882, 0xbe00b7f1, + 0x5e00629b, 0xf093fea6, 0xbe00b866, 0x5e00628f, 0xfd4eff70, 0x061ef063, + 0x237ef001, 0x4df193fb, 0x0f0704b7, 0x07fc917e, 0x41f193d0, 0x015604b7, + 0xffff4ea7, 0x6443b9ff, 0x9339d615, 0x04bbc7f4, 0x07d73d27, 0x43050407, + 0xf7be4d15, 0xf293005d, 0x99059750, 0x30274024, 0x239d4103, 0x40249d42, + 0x43fcaa7e, 0x93fd8ef0, 0x00b81df0, 0x00622ebe, 0xfb4eca1e, 0xffffdea7, + 0x64d4b9ff, 0xf6f06315, 0x9900e74f, 0x4ff626d4, 0xfc9300ec, 0x7e0597d8, + 0xcbb9fb1c, 0xcdb902e0, 0xdbce02e1, 0x073d1e0e, 0x0741034d, 0xcedf6bd4, + 0x4d0732bd, 0x34074183, 0x44333633, 0x0307342b, 0x030b0333, 0x6b1804f1, + 0x43830006, 0x03d942c4, 0x066b240f, 0xfac97e00, 0x41034d07, 0xdf6bd407, + 0xb9d0dbce, 0xc60ec9c4, 0x07d02748, 0x330d073d, 0x2b063334, 0x33400703, + 0x03040b43, 0x066e980f, 0xfa9d7e00, 0x0ec9c4b9, 0xd4dad103, 0x273027df, + 0xd5202740, 0xd1064cc3, 0x2702d8c1, 0x48c2d530, 0xe1c4bd06, 0xdcc3d502, + 0xc9c4bd02, 0xe0c4bd0e, 0x2115e602, 0xff3ea714, 0x4103ffff, 0x159034d5, + 0xf1930f07, 0x7e04b0fc, 0x07e6fb76, 0x4dc0f409, 0x01ee0bbb, 0xe9f193f0, + 0xeb7e04b0, 0x930f07f9, 0x04b0dff1, 0xb6fb597e, 0xfeb07e00, 0xfb8ef043, + 0xb733f093, 0x612dbe00, 0xff115e00, 0xf1930427, 0x9e00b73b, 0x4e00645d, + 0xffdea7fd, 0xd4b9ffff, 0x4e361564, 0x9926d199, 0x41ce27d4, 0xff3ea73c, + 0x3499feff, 0x87438309, 0x2b443324, 0x4d43f942, 0x23ff0000, 0x3738d431, + 0xd49d4227, 0x8e120027, 0xe5f493fd, 0x43990595, 0x03202740, 0x42429d31, + 0x0e40439d, 0xfb3d5efd, 0xf1930827, 0x9e00b71c, 0x93006401, 0x00b706f0, + 0x0060babe, 0x0827a71e, 0xb749f193, 0x63eb9e00, 0xa7fd4e00, 0xffffffde, + 0x1564d4b9, 0xd2994a96, 0x27d49926, 0x271f42ce, 0x27d49d40, 0xfd8e2486, + 0x958ef393, 0x40349905, 0x0342329d, 0x40349d41, 0xe85efd0e, 0x930827fa, + 0x00b72ef1, 0x0063ac9e, 0xb716f093, 0x6065be00, 0x4ec41e00, 0xffcea7fb, + 0xc4b9ffff, 0xd0071564, 0xdc064f96, 0xc4b9b027, 0xcbbd1564, 0x4f760664, + 0xb9aaf293, 0x27cd9d04, 0x07db4d27, 0x24053427, 0x2d252315, 0xcd9d0207, + 0x5bd0be26, 0x29f39300, 0x34990595, 0x423b9d40, 0x349d4103, 0x5efb0e40, + 0xf493fa83, 0x990595d8, 0x20270443, 0x439d32e3, 0x08429d04, 0x7e064d9d, + 0xa91ec9fd, 0xb6f6f093, 0xbe1d0700, 0x1e005fef, 0xfdf0939a, 0x1d0700b6, + 0x005fe2be, 0xfb4e9b1e, 0xffffcea7, 0x64c4b9ff, 0x93499615, 0x05951bfb, + 0xd486bd19, 0xc4b9fb8e, 0x48161564, 0xb926f493, 0xdd3d2704, 0x05040707, + 0xbe4d1543, 0x27005b56, 0x8eb41d41, 0xf2fc7efb, 0xf093d21e, 0x2700b05a, + 0xbe07dd1d, 0x1e005f97, 0xa7fb4ed4, 0xffffffde, 0x1564d4b9, 0x00c24ff6, + 0x7fff4ea7, 0xf84391d0, 0x00d1103c, 0xff50dfbe, 0x9472f493, 0x69f39305, + 0x42010594, 0xf0933101, 0xbe00b70e, 0x27005f5f, 0x07a0001f, 0x000f2710, + 0xbe100790, 0x07005b4b, 0x001f27b0, 0x271007c0, 0x07b0000f, 0x5b39be10, + 0x27c00700, 0x07e0001f, 0x000f2710, 0xbe1007d0, 0x07005b27, 0x072c0730, + 0xf1f0931b, 0x1cbe00b6, 0x4127005f, 0x4fff3ea7, 0x59d4bdfd, 0x2732010e, + 0x0ef49b40, 0xd399c127, 0xcbc23b0e, 0xbf3ea7c3, 0xc138fd4f, 0x34054127, + 0xc4c6c153, 0xf31e3403, 0x78414f27, 0xf4e8017d, 0xffff3ea7, 0x6434b9ff, + 0x93487615, 0x04b83ff4, 0x07dc3d27, 0x43050407, 0xfb0e4c15, 0x005a6d9e, + 0xb623f093, 0x5ebdbe00, 0xff365e00, 0xaf70f093, 0xdc1d2700, 0x5eadbe07, + 0x27d11e00, 0x15f19304, 0xde9e00b6, 0xfc4e0061, 0xffff4ea7, 0x6443b9ff, + 0xbe397615, 0x16ff53cc, 0xff4ea70a, 0x43b9ffff, 0x3fd61564, 0xe5f49374, + 0x3d2704b7, 0x202707d9, 0x43050407, 0xfc0e4215, 0x005a119e, 0xb66df093, + 0x5e61be00, 0x93cd1e00, 0x059287f2, 0x99092399, 0x34ce0824, 0x03430764, + 0xf9478341, 0x0666983c, 0x09249d00, 0xffdf0ea7, 0x62e7beff, 0x333c0700, + 0x0bcc8734, 0x8cc4f1c3, 0xd8ff0003, 0x0300004e, 0x03c3070d, 0x0669b8cf, + 0xb6c41900, 0x93082747, 0x00b654f1, 0x00614c9e, 0xaec4f093, 0xd91d2700, + 0x5e01be07, 0xff7f5e00, 0x0ea74223, 0x1dffffdf, 0x627cbec4, 0xff635e00, + 0xf1930827, 0x9e00b5fe, 0x4e006121, 0xffbea7fb, 0xb4b9ffff, 0xc0071564, + 0x4ff60d01, 0xdde0013a, 0x00e903ee, 0x03efddd0, 0xf2dde024, 0xf400e303, + 0x8d03f3dd, 0xf0dde000, 0xe0011803, 0x0b03f1dd, 0x93042701, 0x00b647f1, + 0x0060e09e, 0x03ebdde0, 0xddd000c7, 0xe07d03ec, 0xd303ecdd, 0xedddc400, + 0xfd93e003, 0x9905928c, 0x4e9644d4, 0x2741de99, 0x831e0741, 0x9d133317, + 0x1d0b44d4, 0xe51af453, 0xd0991405, 0xff3ea743, 0x109dfeff, 0x44b49904, + 0x2b093299, 0xcc4f4b42, 0x4ea71141, 0x79ffffd7, 0x07353643, 0x9d410340, + 0x4e070414, 0xd3994103, 0x9d4f6b40, 0x432b41d4, 0x49f44f6b, 0xfb8e00a8, + 0x03f4dde0, 0xdde40081, 0xff7703f5, 0xfb0e0c07, 0xc0efdb5e, 0x1d03e9dd, + 0x03eadde4, 0xfd93ff65, 0x99059210, 0xf45341de, 0x1e07fc59, 0x13331783, + 0x8d1e1d0b, 0x91fafd93, 0x41de9905, 0xfbd1f453, 0x17831e07, 0x1d0b1333, + 0x0eff775e, 0xfe405efb, 0xfb0e0c07, 0x93e6b75e, 0x0591d7fd, 0x5341de99, + 0x07faa1f4, 0x3317831e, 0x5e1d0b13, 0xfd93ff54, 0x990591c0, 0xf45341de, + 0x1e07f8ac, 0x13331783, 0x3d5e1d0b, 0x5efb0eff, 0x0c07ef32, 0xeb5efb0e, + 0x5efb0ee4, 0xf093fd05, 0x0700b510, 0x5c8dbe1d, 0xfebc5e00, 0xf1930427, + 0x9e00b50b, 0x4e005fbd, 0xff4ea7fe, 0x4391d07f, 0x4e103cd8, 0x03c10471, + 0x3802c134, 0x00004fd0, 0x0b347000, 0x014fd443, 0x2bf00000, 0x813e32ca, + 0x91475604, 0xa146d604, 0xb1465604, 0xc145d604, 0x45363004, 0x963c04c1, + 0x27fe8e44, 0x9ef19306, 0x6e9e00b5, 0x0627005f, 0xb514f193, 0x5f639e00, + 0x93062700, 0x00b4d9f1, 0x005f589e, 0xf1930627, 0x9e00b527, 0x00005f4d, + 0x00000012, 0x0000006c, 0x07b9f54e, 0xd00702e0, 0x02e100b9, 0x4007f563, + 0xf0c5471b, 0xbe840738, 0xc1ff4e4d, 0xf0b544d1, 0x1fe68f6b, 0x1123045d, + 0x4f834107, 0x80000003, 0x40e81103, 0x448708e9, 0x897c44f1, 0x31070005, + 0x00033f83, 0xf4a58000, 0x078630e8, 0x4387f1a1, 0x41f5f2b1, 0x0005897c, + 0x03ed22e4, 0xf3953027, 0x02dcd4d1, 0x82f4f485, 0xf2910138, 0x0d07ed07, + 0x3d071d07, 0xed034d07, 0x0d030808, 0x1d030658, 0x21030ecc, 0x02e43d03, + 0x04a84d03, 0xc53cfec5, 0xf1c540f0, 0x48f2c544, 0xc54cf3c5, 0xd4b950f4, + 0x4fe60eca, 0xd4b90114, 0x4fe60ec9, 0xd4b9010c, 0x45060ecb, 0xd4bd4127, + 0x47070ec8, 0x34074183, 0x44333633, 0xd2b9342b, 0xc3070ec8, 0xc30bc333, + 0x1c073207, 0x36332433, 0x322b1d0b, 0x02e414d1, 0xe333e307, 0x2407e30b, + 0x0e0721e3, 0x02e412d5, 0x03d10d0b, 0x43e30658, 0x43ab3283, 0x02e414d5, + 0x065803d1, 0x348344e3, 0x14d543ab, 0xd3b902e4, 0x48e30ecb, 0x33333183, + 0x14d543ab, 0x00d102e4, 0xcd03065c, 0x10d502f0, 0xf05302e8, 0xed03fecc, + 0x2d070664, 0x04013d07, 0x3e0b2c0b, 0x02f0cd23, 0x0664ed23, 0x34033101, + 0x24032105, 0x3e07f4a8, 0x4d034c07, 0x3d0302e4, 0x0d0706ac, 0x040b1d07, + 0xacbe130b, 0xd4b9ff5c, 0x4ff60ecb, 0xd4b9008f, 0x41030ec8, 0x0ec8d4bd, + 0x0ec9d4b9, 0x34074123, 0xd3bd3f6b, 0x35960ec9, 0xd4bd4027, 0xd3bd0eca, + 0x40270ec8, 0xd4bd8103, 0x71030ecb, 0xff0082f0, 0xf3c1f481, 0xe0d7bd38, + 0x6b432b02, 0xa148ea4f, 0x0d0c2702, 0xf58ef543, 0xf1930f07, 0x7e04ab24, + 0x0fc6f45e, 0xc0f409dc, 0x1f0bb94d, 0x0bbb4dc0, 0xbc4dc44a, 0xf1291b0b, + 0x9344f2c1, 0x04ab03f0, 0xff5ba2be, 0xfeb882f0, 0xf429b71e, 0x40484cc0, + 0xf1930627, 0x9e00b8d8, 0x27005d49, 0xc8d4bd41, 0xf9f1530e, 0x3cf2c1fd, + 0x0140f3c1, 0x033e0114, 0x032e0534, 0x5ef4a824, 0xf129ff60, 0x9344f2c1, + 0x04aabff0, 0xff5e9fbe, 0xfe7482f0, 0x93ff735e, 0x04aaaff1, 0x3dfc1341, + 0x01eb0800, 0xaaa2fe93, 0x4cd1d104, 0x48d0d106, 0x14e48906, 0xc534f1c5, + 0x1e0730f0, 0x01b14ff6, 0xaa86f093, 0x44048904, 0x4fe65007, 0x712300df, + 0x61836707, 0x46073607, 0x46333433, 0xa407432b, 0xa40ba333, 0x3d0b3a07, + 0x04903bb9, 0xb1037103, 0xcf6bcb07, 0x04903cbd, 0x39d1b123, 0x06be048c, + 0x0ceaff52, 0x2b0700a5, 0x46334b07, 0x240b2333, 0xfd4efe53, 0xe401290b, + 0x32071507, 0x14031001, 0x34033005, 0xf093f4a8, 0x0704aa20, 0x0b04411a, + 0x0013d11d, 0x004e8303, 0x43ab0100, 0x030014d5, 0x20890341, 0x003d8346, + 0xd543ab20, 0x38030014, 0x14a93f0c, 0x40ee0304, 0x2389018f, 0x33460744, + 0x334b0b43, 0x4487103c, 0x43f530ab, 0xff0015a0, 0x41f52171, 0xff0015e0, + 0x10272381, 0x162043f5, 0x2291ff00, 0x42f53647, 0xff001660, 0x159830ed, + 0xf493ff00, 0x4104a9b4, 0x0d0c5340, 0x3dbe0183, 0x82f0ff56, 0x615efd62, + 0x89ff1efe, 0xa007180c, 0x097dc1e0, 0xcdc00b41, 0xf4201102, 0x521103cd, + 0x82cdc004, 0xcdf41501, 0x06aa0183, 0x0104cd20, 0x0121cd00, 0x0102cde4, + 0x1c0706ba, 0x260f1c53, 0xff4ea716, 0x43c1fd4f, 0x003ef874, 0x09368000, + 0x4fff4ea7, 0x7443c1fd, 0x00003f5c, 0xcd400100, 0xcd200121, 0xccfc1121, + 0xe0092cf0, 0xaa0281cd, 0x2db1fc04, 0x3fb2fc09, 0xa6b8fc09, 0xd5b4f808, + 0x16a98900, 0x08a69fe6, 0xe614a389, 0x9308cb3f, 0x058e03f2, 0x49b024a9, + 0x08c949ea, 0x49b224a9, 0x08cc43ea, 0x04011fe6, 0x0030bcfc, 0xc0bcfc09, + 0xbdfc0932, 0x09210300, 0xa391a471, 0x00004ff4, 0x06467000, 0xf1930627, + 0x9e00b3ec, 0x07005b3d, 0xf6248323, 0x41fe4b2f, 0xe3302714, 0x4520004d, + 0x14138d14, 0x8d46128d, 0x355e4412, 0x9cd2d1fe, 0x44d4c10f, 0x4f832103, + 0x80000003, 0x40e8f2a5, 0xfea104f2, 0x4ef54487, 0x0005897c, 0xbefdf75e, + 0x95ff4a13, 0xfc125ef0, 0x0d07f381, 0x23073183, 0x34332633, 0x4207232b, + 0x420b4333, 0x02e44d03, 0x340b3d07, 0x0b544c03, 0xd8d3d504, 0x5d68be02, + 0x430027ff, 0x1ef58ef5, 0x5529beff, 0xa53027ff, 0xfbc25ef0, 0x0000bef8, + 0x93082001, 0x04a84bfe, 0x8918e489, 0x4f8b12ec, 0x40e8c183, 0xf2c10534, + 0x30f0c148, 0x2734f1c1, 0x6c3abe30, 0xc601ab00, 0x5bcfe604, 0x83470703, + 0x33340741, 0x2b443336, 0x33130734, 0x03130b13, 0x0702e41d, 0xe43d2331, + 0xd13d0b02, 0x0702e434, 0xa347e39d, 0xe434d542, 0x48d2d102, 0x4cd4d106, + 0xab710306, 0x0b810324, 0x91250691, 0xa10ff6f0, 0x03390703, 0xf2290c3c, + 0xa7d6fc93, 0x07030704, 0xbef3751c, 0xc1004ef7, 0x090744f1, 0xff58f2be, + 0x274cf2c1, 0x73291be0, 0x33420724, 0x0b328744, 0x07322b34, 0x2b493343, + 0x33b40743, 0xb40b12bc, 0x6b47b013, 0x159c6eed, 0x9489ff00, 0x9464ed20, + 0xc1ff0015, 0x0ff644c0, 0xc489015a, 0x41457614, 0x004ef8c4, 0x014c0100, + 0x91899401, 0x104ce320, 0x2b073027, 0x93bd9405, 0x9ebd01ac, 0x253301ad, + 0x15a021f5, 0x90d5ff00, 0xce7101a8, 0x15e02ef5, 0xc081ff00, 0x162020f5, + 0xc391ff00, 0x159861ed, 0x23f5ff00, 0xff001660, 0x1127c041, 0x830d0c53, + 0x53c2be01, 0xff1ea7ff, 0x10d1ffff, 0xf25316a8, 0x2101fa38, 0xf8be0123, + 0x04f90089, 0xff0016b0, 0x019a42e0, 0x041b41e0, 0x0648d4d1, 0xffff4fe0, + 0x03d5ffff, 0xff4b23be, 0x4ea70826, 0xd1ffffff, 0x5316a840, 0x01fa03fe, + 0xbe0123e1, 0xf90089c3, 0x0016b004, 0xf241e0ff, 0xd5f09302, 0x044104a6, + 0x4dd8b007, 0x270f0400, 0xd5302740, 0xd50648d3, 0x41064cd4, 0x004dfc04, + 0xd1016d08, 0xd10648dc, 0xab064cd4, 0x444ff64c, 0xa5f19301, 0x118904a6, + 0x9df29316, 0xd1ad04a6, 0x22890652, 0x91f39314, 0xd2ad04a6, 0x33890650, + 0xff4ea718, 0x9c15ffff, 0xf996fe53, 0x16a840d1, 0xd3ade101, 0x50be0654, + 0x04f90089, 0xff0016b0, 0x028e44e0, 0x0648d0d1, 0x064cd1d1, 0xb127f2a1, + 0x3027c027, 0x1c4b0b0b, 0x006a5bbe, 0xffff2ea7, 0xa824d1ff, 0x48d0d516, + 0xd5410306, 0xd5064cd1, 0xf016a824, 0x5ef9f182, 0x9401faf0, 0xd57af593, + 0x104ca305, 0xdebe9405, 0x5401ff4d, 0x4fe6a007, 0x2a0701a3, 0x46334a07, + 0x53012333, 0x2b9b240b, 0xf91efe53, 0xf071230b, 0x92d5e401, 0x320701a8, + 0x04030101, 0x34033105, 0x4127f4a8, 0x94bd3027, 0x93bd01ac, 0x218901ad, + 0x3f1c3846, 0xee209489, 0x8900d441, 0x3b074424, 0x33104c33, 0xf541ab35, + 0x0015a034, 0x932071ff, 0x04a5bffe, 0x15e030f5, 0x2481ff00, 0x162034f5, + 0x2291ff00, 0x159861ed, 0x32f5ff00, 0xff001660, 0x1127e041, 0x830d0c53, + 0x522abe01, 0xff1ea7ff, 0x10d1ffff, 0xf25316a8, 0x2101f8a0, 0x60be0123, + 0x04f90088, 0xff0016b0, 0xfe6a42e4, 0x40273027, 0x0648d3d5, 0x064cd4d5, + 0xbefe6b5e, 0xe6ff4a72, 0xd1feb80f, 0x510650d3, 0x89434eb4, 0xd4a918b3, + 0x34ee0654, 0x3027fea5, 0x0648d3d5, 0x0648dcd1, 0xd4d54027, 0x925e064c, + 0x04cde0fe, 0xf4fbc531, 0x723105cd, 0x21cde002, 0xf0fbb911, 0x001122cd, + 0x01cde003, 0xe4fbad12, 0x5f2104cd, 0xfba45e02, 0x3fa33123, 0xfffffffc, + 0x715e3103, 0xfcff1ef8, 0x0461c0bc, 0x1b070c07, 0xff4bfcbe, 0x014902e4, + 0x0182cdc0, 0x02cdc012, 0xcd400d11, 0x4c070102, 0x44e44783, 0xbcf803b1, + 0x27012e30, 0xe0f19306, 0x2e9e00b0, 0xd4b90057, 0x9d070ec9, 0x36333407, + 0x342b4433, 0x23332307, 0x2d03230b, 0x12070658, 0x06581d23, 0x13d11d0b, + 0x920b0658, 0x34e332a3, 0x065813d5, 0x0ec9d4b9, 0xd4bd4103, 0xb25e0ec9, + 0xff4ea7fc, 0x43c1fd4f, 0x003efc74, 0xfb4b1000, 0xf1930427, 0x9e00ada3, + 0xd00056d9, 0xc0073102, 0x47334007, 0xffdf0ea7, 0x0bc433ff, 0x5833bec4, + 0x7e0c0700, 0x5005bec1, 0xffdf0ea7, 0x5800beff, 0x07500100, 0xbe10272c, + 0x5e004ba2, 0xff1efe2e, 0x0ec9d1b9, 0xfc5b1fe6, 0x41073107, 0x46333433, + 0x2407432b, 0xa42afe93, 0xc1233304, 0xe34150f0, 0x200b240b, 0x022c34f8, + 0x4307c706, 0x00004ee3, 0x71e44501, 0x003ea323, 0x23750100, 0x0ec9d1b9, + 0x31274027, 0x0ec8d4bd, 0x0ecad3bd, 0x01da13e0, 0xd2bd2027, 0x0a5e0ecb, + 0x273027fc, 0x48d3d540, 0x4cd4d506, 0xfd035e06, 0x064cd4d1, 0x4ff64cab, + 0x42270125, 0x16b004fd, 0x615eff00, 0xa34123fd, 0xfffffc4f, 0x5e4103ff, + 0x4123f70e, 0xfffc4fa3, 0x4103ffff, 0x89fb055e, 0x1fe640a1, 0xa08903c8, + 0xb60fe642, 0x01cde003, 0xf402a203, 0x3f0302cd, 0x21cde001, 0xf4018201, + 0x470122cd, 0x02cde002, 0xe402c001, 0x440104cd, 0x87402701, 0x15b12731, + 0x65f045f3, 0x35f425f4, 0x07f455f4, 0x61f293af, 0xe02704a3, 0xa403c027, + 0x01d0bee2, 0x4c0b4a07, 0x23c14001, 0xd830fa34, 0x034f0702, 0x2371104c, + 0x44014c0b, 0x00003ff4, 0x01dc7000, 0xf1930627, 0x9e00b00e, 0xd100558d, + 0xe4064cd4, 0xffffff4f, 0xa1fc23ff, 0x234027f3, 0x48d3d531, 0xd5310306, + 0xa5064cd4, 0xfc0e5ef3, 0x8916e289, 0xe38914e1, 0x2ee4892c, 0x410b320b, + 0x8d14e48d, 0xb75e16e3, 0x48d3d1fa, 0x4cd4d106, 0xa710a706, 0x4b310b20, + 0x48d3d542, 0x4cd4d506, 0xfbce5e06, 0x0281cde0, 0xcdf0f962, 0x00a00282, + 0x0301cde0, 0xcd24f956, 0x4f5e0321, 0x01cdd4f9, 0x06275180, 0xab58f193, + 0x550f9e00, 0xfd412700, 0x0016b004, 0xfc3e5eff, 0x4ff4430b, 0xf0000001, + 0x3fe6f9b4, 0xa48102e4, 0x02d34ff6, 0x4ff6a4a1, 0xa4c101f6, 0x3444fc34, + 0x034907fa, 0xa3890f4c, 0xe2445330, 0x27fa2643, 0x1ef19306, 0xca9e00ae, + 0xcdf00054, 0xf8f48003, 0x4d034c07, 0x4fab7fdf, 0xf8e842f0, 0xcdc09d1e, + 0xf4451121, 0x291122cd, 0x02cde001, 0xe0018411, 0xc61104cd, 0x21cde0fe, + 0x27015f03, 0xbdf19306, 0x8e9e00ae, 0xcde40054, 0xff700201, 0xe4f8b55e, + 0x671104cd, 0xf8ac5eff, 0x13e4f1b1, 0x2127fe24, 0x0ecbd2bd, 0x07fa2c5e, + 0x27410340, 0x87415330, 0x15b12721, 0x65f445f2, 0x35f325f3, 0x5ef355f3, + 0x1e07fe8b, 0xf502fe53, 0xf393e401, 0x0104a19c, 0x05140310, 0xa8340330, + 0x530207f4, 0x03f4ebfe, 0xe4010c0c, 0xa1caf193, 0x01300704, 0x0534033e, + 0xa814031e, 0x533007f4, 0x01f4cff0, 0x69f19304, 0x1e0104a1, 0x3e051403, + 0xf4a83403, 0x31272471, 0x00004ea3, 0x27247501, 0xbd402720, 0xbd0ec8d4, + 0xbd0ecad3, 0x5e0ecbd2, 0x2471f9a9, 0x01274ff6, 0x4ff624a1, 0x24c10121, + 0x0f4ff634, 0x03e10301, 0xe42403c4, 0xe2fe13e3, 0x27f91a91, 0xeff19306, + 0xbe9e00ae, 0x409b0053, 0x4ff4430b, 0xf0000001, 0x24a1fe1c, 0x27d74fc6, + 0x50f19306, 0xa29e00ae, 0xcdc00053, 0xc02c0201, 0x7d0281cd, 0x0182cde4, + 0xb65efefb, 0x930627fd, 0x00af6cf1, 0x0053849e, 0x2104cde0, 0xcde0fda5, + 0xfd9f3104, 0x1201cde4, 0x4007fedb, 0x30274103, 0xb2274153, 0xf365f455, + 0xf125f115, 0xf045f335, 0x07fd925e, 0x03410730, 0x53410331, 0x27315341, + 0x65f435b3, 0x25f115f3, 0x55f045f4, 0xfd755ef3, 0x41034007, 0x31474153, + 0xf315b327, 0xf125f465, 0xf045f135, 0x5c5ef455, 0x474027fd, 0xfd475e31, + 0x41034007, 0x20273147, 0xb2274153, 0xf455f325, 0xf315f265, 0xf045f235, + 0x27fd3a5e, 0x80f19306, 0xf69e00ac, 0x06270052, 0xac1df193, 0x52eb9e00, + 0x93062700, 0x00aa59f1, 0x0052e09e, 0xf1930627, 0x9e00aa88, 0x270052d5, + 0x21f19306, 0xca9e00ad, 0x06270052, 0xadc9f193, 0x52bf9e00, 0x93062700, + 0x00ad96f1, 0x0052b49e, 0xf1930627, 0x9e00aa7f, 0x270052a9, 0x98f19306, + 0x9e9e00aa, 0x06270052, 0xaaabf193, 0x52939e00, 0x93062700, 0x00adebf1, + 0x0052889e, 0xf1930427, 0x9e00a8ef, 0x7e00527d, 0xc85ef2bf, 0x930427f7, + 0x00a903f1, 0x00526c9e, 0xf1930627, 0x9e00a95c, 0x27005261, 0x8df19306, + 0x569e00aa, 0x06270052, 0xa98cf193, 0x524b9e00, 0x93062700, 0x00ac42f1, + 0x0052409e, 0xf1930627, 0x9e00ac0b, 0x27005235, 0xaef19306, 0x2a9e00aa, + 0x06270052, 0xaa7df193, 0x521f9e00, 0x93062700, 0x00ab15f1, 0x0052149e, + 0xf1930627, 0x9e00aae4, 0x4e005209, 0x07f423f5, 0x89f093d0, 0xb97e0584, + 0x34f0c5f2, 0x02fc0ff6, 0x847af693, 0xd86cd105, 0x71402702, 0xf5f293c0, + 0xf0c50583, 0xded49d38, 0x0734f1c1, 0x61d1bd0d, 0x58249903, 0x03080d03, + 0x02d74ff6, 0xff4acabe, 0x02f30ff6, 0xffff3ea7, 0xa034d1ff, 0x03202716, + 0xa034d541, 0x78d2d516, 0x74d2d501, 0x38c38901, 0x02d86ad1, 0x0174d3d5, + 0xd53ac489, 0xd10178d4, 0xd80168a3, 0xd119103c, 0xf00124ab, 0x000000bf, + 0x2707ba40, 0xd5902700, 0xd502f0d0, 0x9302fcd9, 0x05ce7ff4, 0xf6694399, + 0xd102de3f, 0x380164a4, 0x0000004f, 0xd5002704, 0xb902f0d0, 0xa902e0d3, + 0xc502c4d4, 0xf4c53cf3, 0xb53ff630, 0xc0dbb902, 0x07b12302, 0x034f6b4b, + 0x6b42f0b1, 0xb5102708, 0x30f2c1f1, 0xbef2d28d, 0xc1ff4b93, 0xd08d3cf3, + 0x5b3ff6f4, 0xcbbff602, 0x4031be02, 0xbe5007ff, 0x07ff46d5, 0x402fbe80, + 0x2c02e0ff, 0xd864d104, 0x56441102, 0xfcd4d545, 0xf0d4d502, 0xff4ea702, + 0x40d1ffff, 0x1c2716ac, 0xbe012312, 0xf9008163, 0x0016b004, 0xde42e0ff, + 0x0341e004, 0x07b12307, 0x034f6b4b, 0x5e42f0b1, 0xb0b5e004, 0x8bb6e005, + 0x9eb7e007, 0x2eb8e002, 0xfcd4b90b, 0x23002702, 0x03740741, 0xd1418371, + 0x8302f4dc, 0xa5f49571, 0xc1cfe6f0, 0xd864d102, 0x53490102, 0xe0918393, + 0x070785c3, 0xa94c2b45, 0x0702ecd3, 0x6b310314, 0xb942271f, 0xbd0302d2, + 0xad02e8d4, 0xbd02ead3, 0xe6015fd1, 0xe6047f2f, 0x9107819f, 0x474747f0, + 0xc0d4bd30, 0xe0d3bd03, 0xe6f3a103, 0xa9047b3f, 0x2702ead8, 0x03d4bd40, + 0xecd8ad03, 0xd5c12302, 0xb902f4dc, 0xbd02e8da, 0xa10360da, 0xeb3ff6f3, + 0xe0a2e002, 0x07b12306, 0x034f6b4b, 0xf342f0b1, 0x16b5e009, 0xcbb6e008, + 0xb3b7e00a, 0x1ab8e00b, 0xfcd4d109, 0x832a0702, 0x63d4bd41, 0x4722e003, + 0xbdc12708, 0xbe0304dc, 0xf6ff41f8, 0x0708470f, 0x64d4bd4c, 0x38f2c103, + 0x24834127, 0x40272486, 0x02d863d1, 0x33114433, 0x037cd8ad, 0x0378d3d5, + 0x0362d4bd, 0x02db8fe6, 0x0629a1e0, 0x0302d4b9, 0x031c4fe6, 0x03189ff6, + 0x015fd2b9, 0x094921e0, 0x4127f091, 0x4ca3403b, 0x84d4d534, 0xbaa2e003, + 0xfcd4d102, 0xd5410302, 0x0702fcd4, 0xa5f2934d, 0xb1230581, 0x03b84d03, + 0xd4c52219, 0x9d4b07c4, 0x4f6bd6d2, 0x42f0b103, 0xb32303cd, 0x4f6b4b07, + 0x42f0b303, 0xb523042b, 0x4f6b4b07, 0x42f0b503, 0xb7230483, 0x4f6b4b07, + 0x42f0b703, 0xd4b904a5, 0x4fe60152, 0xafe6026e, 0xd4b9026a, 0x30270303, + 0xeaff4ce0, 0xc3430709, 0x23418341, 0xd7d49db1, 0x4f6b4b07, 0x03bc42f0, + 0x03bedabd, 0xffffbea7, 0xacbcd1ff, 0x07402716, 0xbcd4ad0c, 0x27022303, + 0x8cbe121c, 0x4027007f, 0x16b004fd, 0xc103ff00, 0xcbdff453, 0x16acbcd5, + 0xf0c1d405, 0x8ef40334, 0x47f5bef5, 0xbd0fe6ff, 0xff4ea700, 0x40d1ffff, + 0x1c2716a0, 0xbe012312, 0xf9007f57, 0x0016b004, 0x1142e0ff, 0xbe0d07fd, + 0x5eff55e3, 0xf4c1fd08, 0xa641e43c, 0xa2bfe6fd, 0xf0d4d1fd, 0x9a4fe602, + 0xd864d1fd, 0x30f1c102, 0x0c074c11, 0x007f22be, 0xfc690fc6, 0x270d29c1, + 0x61d4bd41, 0xfd7b5e03, 0x02c0dbb9, 0xa9fd585e, 0xa90330d0, 0xb90332d1, + 0xb902e2d4, 0xb902e4dc, 0x0302e6db, 0x2502e1dd, 0x35d203fd, 0x27d203fd, + 0x27fd45e0, 0x3927542c, 0x02e5dd23, 0xfb15fc05, 0xfe55fe65, 0x5e88ed7e, + 0xd4d1fceb, 0x4fe602f0, 0x64d1fd31, 0xf1c102d8, 0xbe401130, 0xf6007ebb, + 0x27fd200f, 0x61d4bd44, 0xfd175e03, 0x02d864d1, 0x3ff64311, 0x3a5efc68, + 0xd864d1ff, 0xe64c1102, 0x07010dcf, 0x30f1c145, 0x149b4103, 0x88be0c07, + 0x0fe6007e, 0xd4a90862, 0x4fe6058e, 0xc4f4085a, 0xd2d100ee, 0x302702fc, + 0x21832123, 0x02f4dcd1, 0xf3a5f295, 0x058ad7b9, 0xfd43cff6, 0x02f0d0d1, + 0x01870fe6, 0xd3a9f491, 0x244702ec, 0xd4bd4127, 0x40a702e8, 0xd4bdb123, + 0x402703e0, 0xd4bd3103, 0x4b070303, 0x03c0d2bd, 0x02ecd3ad, 0x015fdcbd, + 0x02f4d5d5, 0x02ead3ad, 0x0302dcbd, 0xb1034f6b, 0x089542f0, 0x02d864d1, + 0x0300d3a9, 0x324a4211, 0x41234307, 0x0300d4ad, 0x0300d2ad, 0x0123c007, + 0xffff4ea7, 0xf0d0d5ff, 0xac40d102, 0x121c2716, 0x007de6be, 0x16b004f9, + 0x41e0ff00, 0xdab90584, 0xd8a902e8, 0xdabd02ea, 0xf3a10360, 0x3fe69027, + 0xb3e0fd19, 0xb4e003e0, 0xd0d104d2, 0x132702fc, 0x007db6be, 0xd0bd4127, + 0xd4bd0363, 0x3a5e0304, 0x032307fd, 0x562aee24, 0x834c070e, 0xa243e043, + 0x0ba3c20d, 0x43072a42, 0xa4ee4303, 0xd4b9ff16, 0xdcd102fc, 0x412302f4, + 0x71037407, 0xf4954183, 0x40277183, 0x525ef4a5, 0x84d8d5fc, 0x4aa2e403, + 0xe6f1a1fd, 0x5efd4e1f, 0x4027fd41, 0xe6fda65e, 0xe0fbd45f, 0xe0083bb3, + 0xd105afb4, 0x2702fcdc, 0x230c0713, 0x7d41be01, 0x950f6b00, 0x230c07f0, + 0xbe132702, 0x07007d33, 0xf4dcd170, 0x6b212702, 0x5ef2a57f, 0xb323fc05, + 0x4f6b4b07, 0x42f0b303, 0xb5230781, 0x4f6b4b07, 0x42f0b503, 0xb72307de, + 0x4f6b4b07, 0x42f0b703, 0x412708a3, 0x3407f291, 0x423b373b, 0xd3d534ab, + 0xca5e0384, 0xf0d4d1fc, 0x124ff602, 0xf4dcd102, 0x0ecff602, 0xfcd7d102, + 0xa5002702, 0x957183f0, 0x2730a7f0, 0xe8d4bd40, 0xe0d3bd02, 0xc0d3bd03, + 0xd862d103, 0xd5302702, 0xd502f0d8, 0x4902f4d3, 0xbd402722, 0xbd015fd4, + 0xbd0159d5, 0xad0303d4, 0xc10300d2, 0xd4ad3cf2, 0xd3ad02ea, 0xd4bd02ec, + 0x24c60302, 0x0592d3ad, 0x02ead8a9, 0xd9d59027, 0xc05e02fc, 0x270027fb, + 0xf0d0d590, 0xfcd9d502, 0xfb1b5e02, 0x4747f291, 0xd4bd3247, 0xd3bd03c0, + 0xf3a103e0, 0xfb893ff6, 0x03059fe6, 0x02ead8a9, 0x02ecd8ad, 0x0159d4b9, + 0x015fd3b9, 0xe0dcd299, 0xf4070442, 0xe0039343, 0x27056e41, 0xd4bdff4c, + 0x6a5e0303, 0xd864d1fb, 0xe6431102, 0x99fc2d3f, 0x3123ecd3, 0x4f6b4307, + 0x42d03103, 0x51b2e017, 0x3cf4c105, 0xfc144fe6, 0xfc10b2e4, 0x3ce43800, + 0x27fc2d10, 0x9db12340, 0x4b07d7d4, 0x42f44f6b, 0xf0c1fc48, 0x410ff63c, + 0xe6f1b1fc, 0xd1fc3b1f, 0x9302d4d3, 0x057d6ff2, 0xb946238d, 0x2702e8da, + 0x0100004e, 0x02d0d4d5, 0x02c4d3d5, 0xd1fc1b5e, 0x1102d864, 0xcf3fe643, + 0xc14507fb, 0x410330f1, 0x149b0507, 0xa8be030b, 0x4007007b, 0x42d04123, + 0xb3b4e4a3, 0xc70ff6fb, 0xd1991efb, 0x0702d864, 0xc14c11a5, 0xa10330f1, + 0x0c071a9b, 0x007b82be, 0x02030fe6, 0x01f7cff6, 0xfdecace2, 0x02fcd2d1, + 0x02f4dcd1, 0x21832123, 0x74273027, 0xf3a5f295, 0xd1fa405e, 0x1102d864, + 0x77cfe64c, 0x0da2e0fb, 0xc1850704, 0x810330f1, 0x189b0c07, 0x007b42be, + 0x89ee9007, 0xb6e4ff3f, 0x9ff6fb5a, 0x345efb62, 0xd864d1ff, 0xe64c1102, + 0x07fb55cf, 0x30f9c175, 0x979b7103, 0x19070c07, 0x007b16be, 0x41234007, + 0x42f08007, 0x0c07ff0f, 0x19070103, 0x007b02be, 0xff010fe6, 0x19070c07, + 0xf4be0203, 0x0fe6007a, 0x78eefef3, 0xb8e0feef, 0xa1e40433, 0x0c07fb12, + 0xdcbe1707, 0x0fe6007a, 0xd85efb06, 0xf4dcd1fe, 0x0eb1e002, 0xd864d106, + 0xc8d3d102, 0xc1441102, 0xa40730f0, 0x0aeea32b, 0x34ee03a2, 0xd9d1039a, + 0xf1c102fc, 0xbe090730, 0xe0007aa7, 0xfc054202, 0xc1053e01, 0x4fe63cf4, + 0x4ea70537, 0xd1ffffff, 0x2716ac40, 0x0123121c, 0x007a86be, 0x16b004f9, + 0x4596ff00, 0x0592d4a9, 0xd4ad4103, 0x39070592, 0xd4b93f6b, 0x03070592, + 0x0123042b, 0x73070183, 0x7183f095, 0xf4a54027, 0x5eead98d, 0xd9d1f935, + 0x912302fc, 0x02fcd9d5, 0xbef8f45e, 0x07ff38df, 0x07cfabc0, 0xabc1034b, + 0x03c49b4f, 0x00cef4c1, 0xf8310100, 0x2cbe0b07, 0x0c07ff3f, 0xff3f3cbe, + 0xe0f8225e, 0xe0052ab1, 0x230260b2, 0x6b4b07b3, 0xf0b3034f, 0x23074542, + 0x6b4b07b5, 0xf0b5034f, 0x23081642, 0x6b4b07b7, 0xf0b7034f, 0x9108f042, + 0x3b4a07f1, 0x84d4d541, 0xf9c75e03, 0x01bbaff6, 0x43273127, 0x0363d4bd, + 0x0304d3bd, 0x0364d3bd, 0xb9f9645e, 0xe60302d4, 0x27017c4f, 0x27948641, + 0xbd420340, 0x5e0363d4, 0x64d10173, 0x350702d8, 0x0330f1c1, 0x9b401131, + 0x79a5be13, 0x950ff600, 0x86d0b901, 0x84d7b905, 0xf4dcd105, 0x95102702, + 0x5ef1a5f0, 0xd9bdf86d, 0x785e0302, 0x88d4a9f8, 0x054ff605, 0xfcd7d1fe, + 0xf4dcd102, 0x27042702, 0x95718310, 0x5ef1a5f0, 0x11e0f849, 0xf191051d, + 0x31474427, 0x03c0d4bd, 0x03e0d3bd, 0xa9f87c5e, 0x5e02ead8, 0xa4d1fd00, + 0x4cfc0168, 0xd1014c20, 0xd102d864, 0x1102d0dc, 0xab2c0743, 0x1b23ee2f, + 0xb5302706, 0xff4ea7f3, 0x40d1ffff, 0x1c2716ac, 0xbe012312, 0xf900791b, + 0x0016b004, 0xd94ff6ff, 0x30f4c104, 0x02ccd4d5, 0x0168a4d1, 0x52204cf8, + 0x42e9bef7, 0x4ac0eaff, 0xd5c127f7, 0x5e02d0dc, 0xafe6f741, 0xa1e00112, + 0xd0d10632, 0x132702fc, 0x0078debe, 0x0363d0bd, 0xd4bd4127, 0xd4bd0304, + 0xa7660364, 0xf85fa1e4, 0xf1c14507, 0x07410330, 0x0b149b08, 0x78b9be05, + 0x4a0ff600, 0x63d4b9f8, 0x80d4ad03, 0xf83f5e05, 0x01d143e0, 0xfc6d45e4, + 0x43073123, 0x31034f6b, 0xfc6143f4, 0x432b4427, 0xd4bd4f6b, 0xc65e0303, + 0xb4aff6f7, 0x27442700, 0x63d4bd30, 0x88d3ad03, 0xbd412705, 0xbd0304d4, + 0x070364d4, 0xe6a1e42a, 0xd864d1f7, 0x49c12702, 0x88d4ad44, 0xf7dd5e05, + 0x02ead8a9, 0xdcd59027, 0x905e02f0, 0xbd4227f7, 0x230363d4, 0x6b4b07b7, + 0xd0b7034f, 0xc9077742, 0x0304dcbd, 0xff39b3be, 0xf7bd0fe6, 0xba5e4127, + 0xfcd0d1f7, 0xbe132702, 0x2700781f, 0x63d0bd41, 0x04d4bd03, 0x64d4bd03, + 0xf7a35e03, 0x0582d2b9, 0x0584d7b9, 0x02f4dcd1, 0xf2953027, 0xda5ef3a5, + 0xd864d1f6, 0x27431102, 0xd5310341, 0xd102d0d3, 0xbd0128a0, 0xd502d8d4, + 0x5e02d4d0, 0x4427fe9b, 0x0363d4bd, 0xd1fefb5e, 0x8302fcd4, 0x63d4bd41, + 0xff4f5e03, 0x02d864d1, 0xd4ad4449, 0x7f5e058e, 0x7cd4a9ff, 0x07f09105, + 0x3b1a073a, 0xab143b30, 0x84d3d531, 0xf7835e03, 0x02eadca9, 0x050ecff6, + 0x02fcd0d1, 0x02231327, 0x00778ebe, 0x0580d2b9, 0x7007f295, 0x02f4dcd1, + 0x7f6b3127, 0x5a5ef3a5, 0x31aff6f6, 0xbd452705, 0x270363d4, 0xad402735, + 0xad058ad3, 0xd1058cd4, 0x0702d864, 0xad44492a, 0xe4058ed4, 0xb9f6d0a1, + 0x270363d4, 0x90d4adc1, 0xf6c95e05, 0xf7c18507, 0x9b810330, 0x070c0778, + 0x7735be17, 0xe2900700, 0x03fb3205, 0x0b0c07c1, 0xbe170705, 0xe2007723, + 0x5efb2205, 0x4fe6fbde, 0x4ea7fc66, 0xd1ffffff, 0x2716ac40, 0x0123121c, + 0x007706be, 0x16b004f9, 0x41e0ff00, 0xd3b9054e, 0xf395057c, 0x02fcd9d1, + 0x71837907, 0x91fc8f5e, 0x3b4207f3, 0xab233b47, 0x344ca342, 0x0384d4d5, + 0xe0f6b45e, 0xe602dd23, 0xe402dd3f, 0x27fa9631, 0x03d4bd42, 0xf5ff5e03, + 0xfac131e0, 0xfaab34e4, 0xe6faba5e, 0x5efab68f, 0xb1e0fbca, 0x40270310, + 0xd1ecd49d, 0xd102d863, 0x1102c8dc, 0xa5f29334, 0x4c2b0578, 0xe04741c0, + 0xc103c142, 0x16063cf1, 0x02d824d1, 0x4c2b4411, 0xc04a43c0, 0xaff63f44, + 0x4227028f, 0x0363d4bd, 0x02d863d1, 0x32114227, 0xd2d5c127, 0x334902c8, + 0x057cd4ad, 0x27eed38d, 0xecd39d31, 0x8d30f3c1, 0xd05ef0d3, 0x9d4227f5, + 0x23d1ecd4, 0x341102d8, 0xac1e4c2b, 0x9d104c27, 0xbb1eecd4, 0xd49d4827, + 0xd823d1ec, 0x2b341102, 0xab44c44c, 0xd7d1e71e, 0xd0b902fc, 0xdcd1058a, + 0x102702f4, 0xf0957183, 0xee5ef1a5, 0x8edca9f4, 0xd1c0a605, 0x1102d864, + 0x87a4f04a, 0xc14507f7, 0x410330f1, 0x0a07149b, 0x0075eebe, 0x04f70ff6, + 0x02fcd7d1, 0x058ad4b9, 0x02f4dcd1, 0xf4957183, 0xb65ef0a5, 0x5e3127f4, + 0xaff6f615, 0x4427019e, 0xd4bd3427, 0xd3ad0363, 0x41270586, 0x0304d4bd, + 0x0364d4bd, 0xa2f42a07, 0xd0a9f52d, 0xd4b90582, 0xd0ad0363, 0xd4ad0584, + 0x22e40582, 0x5f5ef51d, 0x914127fd, 0x3b3407f2, 0xab473b32, 0x183ca334, + 0x0384d3d5, 0xe0f5605e, 0xd1f76bb1, 0xd102d863, 0x1102c8d2, 0x30f1c133, + 0x422b4307, 0xf76a14ee, 0x0300d3ad, 0xe0f7675e, 0xe0023ca1, 0xc1023302, + 0x3fe63cf3, 0xd4b90281, 0x491b0592, 0x41234f6b, 0x71037407, 0x71834183, + 0xe15ef495, 0x943ff6fa, 0xbd432701, 0x5e0303d4, 0x4127f46d, 0x3407f091, + 0x473b303b, 0x3ca334ab, 0x84d3d518, 0xf4f75e03, 0x02ead0a9, 0x01a50ff6, + 0x02fcd0d1, 0x02231327, 0x007506be, 0xdcd17007, 0x132702f4, 0x7f6b2127, + 0xf2a5f195, 0x91f3d45e, 0x3b4a07f3, 0xd544a343, 0x5e0384d4, 0xaff6f4c5, + 0x452701ab, 0xd4bd3527, 0xd3ad0363, 0x64d1058a, 0x2a0702d8, 0xd4ad4449, + 0x22e4058e, 0x875ef445, 0x30f1c1fc, 0x02e111e0, 0x02d864d1, 0x02c8d2d1, + 0xf4c14311, 0xee322b30, 0xa901c734, 0xe602ead4, 0xa701bf4f, 0xffffff4e, + 0x16ac40d1, 0x23121c27, 0x748dbe01, 0xb004f900, 0x23ff0016, 0xf04f6b41, + 0xd104eb42, 0xe002fcd9, 0x2304ce91, 0x83390791, 0x03f39531, 0x27790791, + 0xa5718340, 0xead98df4, 0x27f3405e, 0x07f19141, 0x3b313b34, 0xa334ab47, + 0xd3d5303c, 0x265e0384, 0x274747f4, 0xc0d4bd34, 0xe0d3bd03, 0xf3635e03, + 0x02ccd0a9, 0x5e30f0c5, 0x64d1fb28, 0x510302d8, 0xf4c14c11, 0x9b0c0730, + 0x85140745, 0xbe5123f4, 0xf6007417, 0x8102140f, 0xbe0c07f1, 0x23007411, + 0x03018301, 0xad0f6b03, 0xbd0586d0, 0x5e0363d0, 0x32f0fe3a, 0x4427fd2b, + 0x0303d4bd, 0xd1f3285e, 0xee0378d4, 0xd1030f4c, 0xc102d863, 0x341130f2, + 0x24ee4c2b, 0xdcd1035c, 0xf1c102fc, 0xbe0c0730, 0xe00073c7, 0xfc01f702, + 0xc101f301, 0x2ff63cf2, 0x4c0701f3, 0x2a074183, 0x0363d4bd, 0xf32b22e4, + 0x27fb6d5e, 0x03d4bd41, 0xf2db5e03, 0xd49d4027, 0xfaaff6ec, 0x27422701, + 0x63d4bd31, 0xecd39d03, 0x02d862d1, 0x22114227, 0xc1273227, 0x057cd4ad, + 0x057ed3ad, 0x02c8d2d5, 0xe0f2f25e, 0x07031101, 0x30f1c145, 0x4103050b, + 0x149b0103, 0x00735abe, 0x02280ff6, 0x02fcd0d1, 0x02231327, 0x00734abe, + 0xdcd17007, 0x432702f4, 0x7f6b0127, 0xf0a5f495, 0xd1f2185e, 0x8302fcd4, + 0x63d4bd41, 0xfe585e03, 0x463cf1c1, 0x7cd2b91e, 0x83790705, 0x5ef29571, + 0x2fe6f8bc, 0xd3d1f9e5, 0x23ee02c8, 0xb1e0f9dd, 0xb2e40381, 0xd4d1f9d5, + 0x42f002d4, 0x321bf9cd, 0x1fab1307, 0xf1c52127, 0x27f2b530, 0xd8d4bd40, + 0xc4d3d502, 0xf9b75e02, 0x057cd0b9, 0x02fcd9d1, 0x6a5ef095, 0x5e4907fe, + 0x4427fd84, 0x5eecd49d, 0xf291fc3b, 0x423b4a07, 0xd5184ca3, 0x5e0384d4, + 0xfcc1f299, 0x9b510330, 0x230807c5, 0x07050b51, 0x72a5be1c, 0xbb0ff600, + 0x071c07f9, 0x729fbe08, 0x03018300, 0x63d0bd03, 0xf9b65e03, 0x02a6c1e0, + 0xa103a507, 0x1a070c07, 0x00727ebe, 0x023d0ff6, 0xf1c1c50b, 0x030c0730, + 0xbe1a9b01, 0xf600726b, 0xd102450f, 0x2702fcd0, 0xbe022313, 0xb900725b, + 0x070580d3, 0xf4dcd170, 0x6b412702, 0xa5f3957f, 0xf1275ef4, 0x02d864d1, + 0x1130f1c1, 0x9b51034c, 0x750c0715, 0xbe5123f1, 0xf600722f, 0x7101a60f, + 0xbe0c07f1, 0x23007229, 0x03018301, 0xbd0f6b04, 0x930363d0, 0x05741ff4, + 0x02d843d1, 0x058ad0ad, 0xd3ad3349, 0xa05e058c, 0xfcd4d1fa, 0xbd418302, + 0x5e0363d4, 0x4527fc36, 0x0361d4bd, 0x91f0545e, 0x3b4a07f3, 0x184ca343, + 0x0384d4d5, 0xb9f1bc5e, 0xd1057cd2, 0x9502fcd9, 0xfd635ef2, 0xe63cf3c1, + 0xb9fe113f, 0x070592d3, 0x07c32b2a, 0xbd41834c, 0xe40363d4, 0x5ef13422, + 0xd0a9f976, 0x02e0057c, 0x03e001ea, 0x0f6b0202, 0xa95ef095, 0xfcd4d1fa, + 0xc8d1d102, 0xbd418302, 0xd10363d4, 0x9102d863, 0x30f0c1f4, 0x057ed4ad, + 0x2a073411, 0x312b3407, 0xce2b03ce, 0x31c02414, 0xb632e00e, 0xe42a0701, + 0x5ef0e822, 0x4227f92a, 0xd1ecd49d, 0xd102d863, 0x1102c8d4, 0x1e342b33, + 0xca4fe6e1, 0x9d4127f0, 0xf393ecd4, 0xd1057350, 0x1102d834, 0xc8dcd54c, + 0x2b431102, 0xc231c43c, 0xdcd1cd1e, 0x132702fc, 0x01230c07, 0x007122be, + 0xf0950f6b, 0x13270c07, 0x14be0223, 0x70070071, 0x02f4dcd1, 0x7f6b1127, + 0xe65ef1a5, 0x07f091ef, 0xa3403b4a, 0xd4d5304c, 0xd65e0384, 0x8cd3a9f0, + 0x463ae205, 0xfcd7d1f3, 0x8ad1b902, 0xf4dcd105, 0x83202702, 0xa5f19571, + 0xefb75ef2, 0xfcf1cfe6, 0xffff4ea7, 0xac40d1ff, 0x121c2716, 0xc0be0123, + 0x04f90070, 0xff0016b0, 0xfcd54fe6, 0x057cd3b9, 0xd3bd2a07, 0x64d10363, + 0x401102d8, 0x02c8d0d5, 0xd3ad4449, 0xd48d057c, 0x9d4127ee, 0xf1c1ecd4, + 0xf0d18d30, 0xf00b22e4, 0xd1f84d5e, 0x8302fcd4, 0x63d4bd41, 0xf9195e03, + 0x057cd4a9, 0x00d742e0, 0x32274227, 0x0363d4bd, 0x02d864d1, 0x40112a07, + 0x02c8d0d5, 0xd0d1bb1e, 0x132702fc, 0x50be0123, 0xdcd10070, 0x0f6b02f4, + 0x73273127, 0xf3a5f095, 0xe0ef205e, 0xe400bf01, 0x0bff0902, 0x30f1c1c5, + 0x01030c07, 0x28be1a9b, 0x02e00070, 0xdcd10118, 0x132702fc, 0x01230c07, + 0x007016be, 0xf0950f6b, 0x02230c07, 0x08be1327, 0x70070070, 0x02f4dcd1, + 0x7f6b0127, 0xda5ef0a5, 0x2b4a07ee, 0x5a45f44c, 0xfcd7d1f2, 0x90d0b902, + 0xf9cc5e05, 0xe030f4c1, 0xd100ab41, 0x2702fcd0, 0xbe012313, 0xb9006fd3, + 0xd10580d7, 0x6b02f4dc, 0x9521270f, 0x5ef2a5f0, 0x1327eea1, 0xc55ef195, + 0x074427f8, 0xecd49d2a, 0xef2f22e4, 0x27f7715e, 0x5ef29522, 0x2227fb39, + 0xa95ef295, 0x274327f8, 0xff2a5e33, 0x057ed1b9, 0x02fcd9d1, 0x1e5ef195, + 0xd4d4d1fb, 0x874ff602, 0xf64f5efc, 0xf1c1c50b, 0x030c0730, 0xbe1a9b01, + 0xc0006f6f, 0xdcd14a01, 0x132702fc, 0x01230c07, 0x006f5ebe, 0xf0950f6b, + 0x13270c07, 0x50be0223, 0xc75e006f, 0xfcd7d1f7, 0x8ad3b902, 0xf4dcd105, + 0x83402702, 0xa5f39571, 0xee175ef4, 0x0580d0b9, 0x02f4dcd1, 0x74271127, + 0xf1a5f095, 0xd1ee045e, 0x2702fcd0, 0xbe022313, 0xb9006f17, 0x950580d1, + 0xf1dd5ef1, 0x02fcd0d1, 0x01231327, 0x006f02be, 0x0580d7b9, 0x02f4dcd1, + 0x41270f6b, 0xf4a5f095, 0x4eedd05e, 0x93c007fc, 0x0570f3f0, 0x93df237e, + 0x011058f4, 0xc4050027, 0xfb4efc8e, 0x9daaf493, 0x07431904, 0xc13fe6b0, + 0xff3ea700, 0x34d1fbff, 0x42dc0420, 0x27c3071e, 0x200000de, 0x2722fd9b, + 0x0abe0f0c, 0x402700d0, 0xd122f49b, 0xd80420c3, 0xf093eb32, 0xbe048dd4, + 0x9300c35f, 0x048e93f3, 0xfffb4ea7, 0xff1ea7f9, 0x2c27f9fd, 0x23300111, + 0x11400544, 0x05440330, 0x03302140, 0x03100548, 0x14030c3c, 0xf493f230, + 0xc1048da0, 0x41c1a042, 0xff3ea7a4, 0x32d5fbff, 0x40c10490, 0xb831d5a8, + 0xac42c104, 0x049430d5, 0xd5b041c1, 0xc1049832, 0x31d5b440, 0x42c1049c, + 0xa030d5b8, 0xbc41c104, 0x04b032d5, 0xd5c040c1, 0xc104b431, 0x30d5c442, + 0xb4d10418, 0x32d502b0, 0x45c60434, 0x98be0b07, 0x0b0700c3, 0x00c3fdbe, + 0xf49b4027, 0x4efb8e0e, 0x070419fb, 0x061f6bb0, 0xce1fe645, 0xe6fb8e01, + 0x2701711f, 0xf5fd9341, 0xd49d056f, 0xdf0ea705, 0xcebeffff, 0x0d27003e, + 0x5a7e3740, 0xbdfc93a5, 0xc00505b9, 0xffdf0ea7, 0x3e94beff, 0x27c30100, + 0x07341d40, 0x984c0343, 0x2c271127, 0x03411d1c, 0x984c0311, 0x2307f2b0, + 0x373f2d03, 0x34b83d03, 0xffff4ea7, 0x8043d5ff, 0x7f2ce318, 0x197f3ce3, + 0x803c0334, 0xa7f932c2, 0xffffff4e, 0xd1a21c27, 0x27188044, 0x05310720, + 0x03112342, 0x27f3b844, 0x30a71a2c, 0xbd78d3c5, 0xa70fded2, 0xffffffce, + 0x1890c1d5, 0x0fdcd2bd, 0x0fddd2bd, 0xd1c54027, 0x44d1c53c, 0x1014d1d5, + 0xbd0dd49d, 0xd5101cd1, 0xd51888c1, 0x7e188cc1, 0x4c2793d6, 0x2710270c, + 0x9d01b82d, 0xd49d26d4, 0x25d49d24, 0xe93b0ea7, 0x3198beff, 0x000d2700, + 0x07202740, 0x3dd4be10, 0xe0c0d500, 0x03212704, 0x2708000d, 0x33420737, + 0xe040f543, 0x03ff0004, 0x000d0321, 0xa7f36808, 0xfd4fff4e, 0x276843c1, + 0x103c3320, 0xd49d40a7, 0x5cd29d5b, 0x535ad29d, 0x35e01c3c, 0x4d27011b, + 0x21272000, 0x93133c27, 0x05b93bf1, 0x49b2d4ad, 0x9d54d29d, 0xd4ad56d3, + 0xd29d49b0, 0x27310755, 0x27072720, 0x23320547, 0xb8340301, 0x274327f4, + 0x27144521, 0xc5402731, 0x149d60d0, 0x0a139d08, 0x12051235, 0x109d1015, + 0x5dd09d09, 0xb41d4127, 0xf293fb8e, 0x9300d52f, 0x04a6b7f3, 0x40273205, + 0x9321f49b, 0x04a6b3fc, 0x20273c07, 0x051f4c27, 0xc8340332, 0x9d4027f4, + 0xd7be0ec4, 0x4227ff40, 0x2710c49d, 0x8d35084d, 0x3c2716c4, 0x9d412723, + 0xc49d15c3, 0x273a2714, 0xc0c51e4c, 0x12c38d60, 0xbe11c49d, 0x1e00cd04, + 0xccfebea4, 0x69fc9300, 0x61be04a6, 0xc49900bf, 0x934a160f, 0x049b8ff0, + 0x93fd397e, 0x049b87f3, 0xe6083499, 0x99fe104f, 0x4b360534, 0xf49b3481, + 0x9b339130, 0xf09331f3, 0x0e049b70, 0xce399efb, 0x07c27100, 0x031c070c, + 0x1c03100c, 0xd603be44, 0x070c0700, 0x03c2611c, 0x1c03140c, 0xd5f3be28, + 0x81b11e00, 0x48f49b34, 0xf39b3391, 0x27c81e49, 0x5e10004d, 0xfb4efee6, + 0xffffdea7, 0x10d499ff, 0xfb8e4486, 0xc027fbab, 0x9b0dfc9b, 0x3ea70efc, + 0x11fd9fff, 0xa3012734, 0x0400004e, 0xe4be3415, 0x4ea70033, 0x01fd4fff, + 0x9d212743, 0xf4930fd3, 0x1d04a5bc, 0x10d29d42, 0x9b0fd499, 0x31270efc, + 0x43f54487, 0xff02b040, 0xf093fbeb, 0x27056d64, 0x5efb0e11, 0xfc4efd53, + 0xd8484f9b, 0xf493fb41, 0x07048a80, 0x292d2324, 0xe3340706, 0x3ce37f2c, + 0x0334197f, 0x32c2803c, 0xff3ea7f9, 0x34d1fbff, 0x42dc0420, 0x27c3071e, + 0x200000de, 0x2722fd9b, 0x72be0f0c, 0x402700cc, 0xd122f49b, 0xd80420c3, + 0xf493eb32, 0x190499dc, 0x8e349643, 0xff4ea7fc, 0x4cd1fbff, 0xf0930418, + 0x07048a28, 0xbeda33dc, 0x9300bff2, 0x048ae3f2, 0x931adc53, 0x048a13fe, + 0x07111c27, 0x40dc304d, 0x4c234d07, 0x33340740, 0x0030f133, 0x87ff0600, + 0xf1200544, 0x06000433, 0x15d103ff, 0x0044f123, 0x25ff0602, 0x0c2c0324, + 0xa7d1f1f0, 0xfbffff2e, 0x049024d1, 0xe4c51c07, 0xb823d1a0, 0x001ee304, + 0xe3c53f00, 0x9424d1a4, 0xa8e4c504, 0x049823d1, 0xd1ace3c5, 0xc5049c24, + 0x23d1b0e4, 0xe3c504a0, 0xb024d1b4, 0xb8e4c504, 0x04b423d1, 0xc5c0e1c5, + 0x24d1bce3, 0xe4c50434, 0x4efc8ec4, 0xc60f6bfd, 0x59f49307, 0x4399056c, + 0x8e349605, 0x225abefd, 0xbe0346ff, 0x0e010b44, 0xb20e9efd, 0x9b442700, + 0xdb7e21f4, 0x484f9bfe, 0x271a41dc, 0x9b02202d, 0x402722f2, 0x070ef49b, + 0x9bff8b00, 0x3f9b22f4, 0xec31d848, 0x9986fd93, 0x08d49904, 0x40274cd6, + 0x9321f49b, 0x04a443fd, 0xc60fd499, 0x1d07ae4f, 0x1c030d07, 0x140c0328, + 0xff3e0ebe, 0x1d07d065, 0x1c030d07, 0x100c0344, 0xff3dfebe, 0x0d07d075, + 0xbe140c03, 0x0700caca, 0x100c030d, 0xbf9efd0e, 0x0d0700ca, 0x71be0403, + 0xd49900cd, 0x9b45d605, 0xd485304f, 0x95313f9b, 0x9ba41ed3, 0xd485484f, + 0x95493f9b, 0x00981ed3, 0x00058538, 0x00001000, 0x00000fff, 0x00000180, + 0x000001e0, 0x00000080, 0x0000007f, 0xf163f54e, 0x4127f3ab, 0x0ea7f4eb, + 0xd1ffffff, 0xa60e5c03, 0xff1ea735, 0x1441fdaf, 0x1405430b, 0xffff2ea7, + 0x102499ff, 0x03604fe6, 0xa392f393, 0xf6341904, 0x2702554f, 0xff1ea780, + 0x14b9feff, 0x4cfc1d35, 0xa701fa2f, 0xfeffff4e, 0x1d3541b9, 0x29301cd8, + 0x83094499, 0x33248743, 0xf9422b44, 0x00005043, 0xa736e6ff, 0xfeffff0e, + 0x014803d1, 0x092a31e0, 0x42234307, 0x092d42f0, 0xffff3ea7, 0x3534b9fe, + 0x104cf81d, 0x4ea70088, 0x99ffffff, 0xcfe6274c, 0xa02707e0, 0xffff0ea7, + 0xf90d11fe, 0x000e50db, 0x4b1d07ff, 0xb01e23bf, 0xcbeefff1, 0x902702f2, + 0xa30af193, 0xa6141904, 0xa70ea746, 0x0419fff1, 0x4c4e4f4b, 0x2a071c07, + 0xff275dbe, 0x2ea797e6, 0x27ffffff, 0x6424bd41, 0x0f239906, 0xf49b4027, + 0x8741270e, 0x4034f533, 0xfcff02b0, 0xa702dcb2, 0xfeffff2e, 0x014824d1, + 0x42e03027, 0x430702fd, 0x302748ab, 0x31274486, 0x8f6b8307, 0xffff3ea7, + 0x233c11fe, 0xfff1b0ce, 0x010a8fe6, 0xf893b027, 0x9304a294, 0x04a297f4, + 0x9d064919, 0x6a56f093, 0x65039905, 0xf1a74ea7, 0x194a19ff, 0x793ff6cd, + 0x07012702, 0x0731533d, 0xc341534a, 0x9334eb31, 0x056a33f4, 0x5c644299, + 0x99053631, 0x43f80444, 0x4207009d, 0x4b8b41c3, 0x44863027, 0xb3073127, + 0xbfe6b183, 0xc4190089, 0xc41d41a3, 0x3ea795a6, 0x19fff1a7, 0x1d41a334, + 0x9b402734, 0x83190ef4, 0x00a43ff6, 0xffff0ea7, 0x5004d1ff, 0x974ff606, + 0xff1ea700, 0x1db9feff, 0xd4531d35, 0xf293d183, 0x1904a20c, 0xa6bdf62b, + 0xd7bff6d7, 0xff3ea707, 0x3499ffff, 0x9b30270f, 0x31270ef3, 0x43f54487, + 0xff02b040, 0x8419fdab, 0x06aa4fe6, 0xc419fdeb, 0xa1daf193, 0x1d41e304, + 0xa61319c4, 0xa73ea735, 0x3419fff1, 0x341d41e3, 0xf49b4027, 0x1d40270e, + 0xfe045e84, 0x11270127, 0x00af5bbe, 0xa7c60fc6, 0xfff1a73e, 0x30273419, + 0x41184d8b, 0xd3073127, 0x941edf6b, 0xa18ef893, 0x27841904, 0xf44fe6b1, + 0x5eb027fe, 0xd027feef, 0x27ff755e, 0x73c5be00, 0xff2ea7ff, 0x24b9feff, + 0xd0070140, 0x06b34ff6, 0xb007c007, 0x8310cc83, 0xc67630bc, 0x4c834d07, + 0x2748ab25, 0x27448630, 0x6b830731, 0x9cbff68f, 0xff3ea705, 0x34b9feff, + 0x4cf81d35, 0xbdfdc60f, 0x5e1d353d, 0x75befdbf, 0x1ea700b6, 0xb9feffff, + 0x271d3514, 0x27049691, 0x2f4cf890, 0x2ea706ab, 0x99ffffff, 0x27992624, + 0xb742e027, 0xb372e002, 0x27802702, 0xff3ea740, 0x34bdffff, 0xdabe0669, + 0x0e3600b1, 0xffff4ea7, 0x6443b9ff, 0x6744b90e, 0x07431b0e, 0xd4df6bd4, + 0x073910dc, 0x1ea027b3, 0x9d402711, 0xd10356c4, 0xa127b103, 0x5f10dcf4, + 0x834b0706, 0xc4070f4c, 0xc4333487, 0xc42bc32b, 0xce23c333, 0x07fff198, + 0xca697e0c, 0xf6d30fd6, 0x27063daf, 0x2749ab40, 0x27448630, 0xff2ea731, + 0x24b9ffff, 0x3f6b0666, 0x4ff6f335, 0x0ea705ef, 0xb9ffffff, 0xf6066a04, + 0xf606074f, 0x27053c8f, 0xa7f12510, 0xffffff3e, 0x066734b9, 0x40274506, + 0x066734bd, 0x682ef093, 0x08049905, 0x02094fe6, 0xf4310027, 0x40ab3027, + 0x31274486, 0xf0934027, 0x6b056814, 0x64049d3f, 0x3fe68307, 0x4127fcb9, + 0x5e65049d, 0x0ea7fcb1, 0xbeffffeb, 0x7e0036dd, 0x0ea7fa36, 0xbeffffeb, + 0x5e0036ae, 0x0ea7fc8c, 0x07fff1a7, 0xbe3a072c, 0xf9ff3b8d, 0x000e50db, + 0x4b9007ff, 0xfcfa5ebf, 0x67caf193, 0x05149905, 0x05ac4fe6, 0x7c5e0027, + 0xedfd93fd, 0xd001049f, 0x0ff6f08b, 0x3ea7081d, 0x99feffff, 0x42060a34, + 0x40273127, 0xffff1ea7, 0x0a149dfe, 0xffff2ea7, 0x4824d1fe, 0x0742e401, + 0xffdea7fd, 0xd411fd9f, 0x15184c83, 0x3772bed4, 0xff4ea700, 0x43b9feff, + 0x35660141, 0x4ea73127, 0x45d07fff, 0x9df29343, 0x2419049f, 0x08b04ff6, + 0xf87e0027, 0x27f1abfa, 0xd92fe621, 0xd521e007, 0x3024f907, 0xf0ff011d, + 0x87083142, 0x0043f142, 0xf8ff0230, 0x03082534, 0xde25d021, 0xf1eb4127, + 0x08464fe6, 0x0065e5be, 0xffff3ea7, 0x263461ff, 0xa7c30747, 0xfd4fffde, + 0xf49b4027, 0x38d4c50e, 0x0065c9be, 0x4256c461, 0xffff0ea7, 0x090399fe, + 0x4fffbea7, 0xa7b201fd, 0xffffffee, 0x990ee199, 0x338311ed, 0x423b4127, + 0x14eb2307, 0x3387d123, 0xe19d2433, 0x9d232b0e, 0x24f911ed, 0xff000050, + 0x24f9c407, 0xff00004f, 0x24fd4123, 0xff00004f, 0x078fdff6, 0x99090399, + 0x432b44e4, 0x41e84f4b, 0xc5860781, 0x0658e4d1, 0xc525ec9d, 0xf49340e4, + 0x01056690, 0x07402741, 0x0ce49d0e, 0x9d2ae49d, 0x3bbe12ed, 0xb101ff1e, + 0x8a22f293, 0xd24d2704, 0x0c3c2707, 0x24050207, 0x21252315, 0x2d452c35, + 0x002c49be, 0x9e9ef393, 0xf6341904, 0x2706ec4f, 0x0bf49b40, 0xa70ef49b, + 0xfeffff2e, 0x4c272111, 0xfc24bd10, 0xfd30271c, 0x00000013, 0x9b4027ff, + 0x3ea70ef4, 0x99ffffff, 0x4fe61234, 0x31270770, 0x4fff4ea7, 0x3043c5fd, + 0x8127ff1e, 0xa7fd4e5e, 0xffffff1e, 0x066814b9, 0x04454ff6, 0xf2152027, + 0xffff0ea7, 0x4c06d1ff, 0x00d95e0e, 0xd9874907, 0xd40b4433, 0x13fad2f9, + 0x729dff00, 0xfcd4f149, 0xe9ff0013, 0x001400d1, 0x9074c5ff, 0x13fcd0f1, + 0x718dff00, 0x54babe94, 0x4ec5be00, 0x07402700, 0x005f27b0, 0x073fe000, + 0xe9350724, 0x001400da, 0xbe0b07ff, 0x07005f58, 0x070a07b0, 0x5492bec1, + 0x4e9dbe00, 0x07400700, 0x07240731, 0xbe0b071c, 0x07005b70, 0xbe040740, + 0x9d004081, 0x40279670, 0xd4edc027, 0xff001400, 0x13fcdcf5, 0xc5beff00, + 0xf241ff24, 0x46334907, 0xf393420b, 0x0105af50, 0x33492b32, 0x7070c543, + 0x43d1420b, 0x7cc5113c, 0xc5333374, 0x84996c73, 0x99453604, 0x4ff60584, + 0xf2930088, 0x99056548, 0x41c05d24, 0x0b849972, 0x42274586, 0x6536f393, + 0x04349d05, 0x317e0607, 0x0761038b, 0x045dbe06, 0x83400701, 0x4ce4184c, + 0xfc01bc18, 0x01b7200c, 0x9c839607, 0x0719070f, 0x33133349, 0x2b412b45, + 0x0b848749, 0x45833384, 0x648f03f1, 0x99000678, 0x83991184, 0xc1473304, + 0x34abd487, 0xb948739d, 0xf6027784, 0xb9fedf4f, 0x2702aa83, 0xd99b14dc, + 0x5e49739d, 0x0707fee1, 0x7e480c03, 0x861eb62b, 0xff2437be, 0xff740fe6, + 0x631ef493, 0x08439905, 0x03094499, 0x83130731, 0xee312317, 0x9905ee14, + 0xf0930782, 0x9d056304, 0xf1530801, 0x32fdf8f4, 0x00066698, 0xaa271401, + 0x3a271027, 0xa1234105, 0xf3b84403, 0x24334287, 0x44f1420b, 0xff000398, + 0x8176f193, 0xa9140504, 0xb902328b, 0xa9035b8c, 0x0702308d, 0x1681a94b, + 0x1880a902, 0x1283a902, 0x1482a902, 0xd14c0b02, 0x0302208e, 0x4c030fdc, + 0x2b312b0f, 0x93445320, 0x04813ff0, 0x0315d453, 0x04450225, 0x0c650a55, + 0x0d350e85, 0x023d84b9, 0x037483d1, 0x048d4803, 0x24048924, 0x31833853, + 0x270fbc03, 0x274a0011, 0x8d410710, 0xb4532603, 0x3fe64533, 0xf25301f9, + 0x1d07f85c, 0xf2532e01, 0x1703f858, 0x2001b803, 0xb7e317e3, 0x4fe63127, + 0xf2530172, 0x2401f84c, 0x340735c6, 0xe67f3c83, 0x804c0334, 0x2107432b, + 0x24332b9b, 0x308b3207, 0x2e0b34c6, 0x0407232b, 0x3087019b, 0x13031b07, + 0x12534307, 0x237f4c83, 0x0344e611, 0x342b803c, 0xb42b4187, 0x4b07b09b, + 0xe67f4c83, 0x80bc0344, 0x319bb42b, 0xf453320b, 0x3b0bf7e8, 0x808af193, + 0x75400104, 0xc1857e13, 0xa7fe315e, 0xfeffff1e, 0x1d351dbd, 0xf82dcfe6, + 0x4ea73127, 0xc5fdcfff, 0x205e6843, 0xff0ea7f8, 0x04d1ffff, 0x46ce0e4c, + 0xff1ea733, 0x0ea7ffff, 0xd5fff99f, 0xbe0e4c16, 0x2700351f, 0x0ef49b40, + 0xffff2ea7, 0x0e2399ff, 0x4fbf2ea7, 0x273138fd, 0x53240541, 0x0334c631, + 0x21f31e24, 0x763ff6f3, 0x6bf01103, 0xfaf45e0f, 0xff19c5be, 0x1d5ea007, + 0x962127f8, 0x25202774, 0xfac15ef2, 0x003440be, 0x2fc62127, 0x6e21c071, + 0x1d3024f9, 0x4626ff01, 0x43f14287, 0xff023000, 0x21033438, 0xa7e425d0, + 0xfdcfff3e, 0x274031c1, 0xa3410720, 0x4034c541, 0x070ef29b, 0xc5ff8b00, + 0x32c54031, 0xff4ea760, 0x41d1ffff, 0x4ea70e5c, 0xc5fd4fff, 0x18066442, + 0xafff0ea7, 0xa70341fd, 0xfd9fff2e, 0x0305310b, 0x4ce32421, 0x11242510, + 0x103ca323, 0xf0be2315, 0xe15e0033, 0x1e2103f8, 0x83b0078a, 0xbff630bc, + 0xc00702c3, 0x5e10cc83, 0xf253f94a, 0x2401f6d8, 0x27fe8f5e, 0x6624bd40, + 0x030cbe06, 0x27f33101, 0x8603ab40, 0x6b412704, 0xa7f4354f, 0xffffff0e, + 0x066a04b9, 0xf9fd4fe6, 0xff1b16be, 0xbef9f65e, 0x5e00af6e, 0x0ea7f952, + 0x39fff19f, 0xff1ea704, 0x1bbdffff, 0x44f60e64, 0xb25e4127, 0x33f9bef9, + 0x5e412700, 0x21bef9a9, 0x2127ff18, 0x20270486, 0xc85e0207, 0x75f253f7, + 0x532e01f6, 0x01f673f2, 0x031d0720, 0x5e3027b1, 0x4b7efe0e, 0xf83e5ecc, + 0xcfff4ea7, 0x6843c5fd, 0xa7f6d75e, 0xffffff2e, 0xe6262499, 0xf8fa4c4f, + 0xf6c6201c, 0x27fa445e, 0xff3ea740, 0x34bdffff, 0x097e0668, 0xa7d007c5, + 0xfff24b0e, 0x00b027be, 0x27119c27, 0x270bbc8d, 0xa007207c, 0xffff0fe0, + 0x019fffff, 0x46334a07, 0xc40bca87, 0x0dc4c0f1, 0xdc07ff00, 0xf23cde23, + 0x1dbbbeff, 0xc4c3f1ff, 0x07ff000d, 0x0f3c831d, 0x43072307, 0x45332333, + 0x432b422b, 0x420b2487, 0x42f14333, 0x00067938, 0x42073907, 0x10014403, + 0x40051403, 0xf3a84403, 0x21c5d171, 0x93d38158, 0x05ab2bf1, 0x915c23c5, + 0xc51e01d4, 0xd0a16024, 0x20c51d07, 0x0ad48980, 0x832c1c03, 0x24c50f4c, + 0xc5d33168, 0xd4517823, 0x017c24c5, 0x83d0a1d4, 0x24070f4c, 0x36333407, + 0x230b2333, 0x2333242b, 0x4e0b4207, 0x116440d5, 0x4d033627, 0x10011144, + 0x40051403, 0xf3a84403, 0xffff1ea7, 0x8010d1ff, 0x11320718, 0x073e0b01, + 0xad410341, 0xc8116c34, 0x32071641, 0x11703d03, 0x20073e0b, 0x038820c1, + 0x03300524, 0xa7f4a034, 0xffffff2e, 0x065024d1, 0x60baf093, 0x23dc0105, + 0xec03d141, 0x5024d502, 0xe00bb906, 0xe10db902, 0xad3cee02, 0x9df19301, + 0x14d10560, 0x4cee049c, 0xc0270187, 0x32d8c301, 0xbb31f820, 0xe3430700, + 0xf8c30532, 0x00a5104c, 0x40273027, 0x01acc4bd, 0x01adc3bd, 0x01a8c3d5, + 0x018cc4b9, 0x017b4fd6, 0x0541a3c4, 0x0edbcec4, 0x4d07291e, 0xd4074103, + 0xbdcedf6b, 0x834d071e, 0x33340741, 0x2b443336, 0x33230734, 0xf1320b23, + 0x066b1834, 0xdb41dc00, 0xf393bd07, 0xbd056030, 0x2702e13b, 0xb8a4fd40, + 0xa7ff000d, 0xfff24b3e, 0x48563479, 0x0ea7d127, 0xbefff24b, 0x0700ae80, + 0xff0fe4a0, 0x65ffffff, 0x964127fe, 0x154027d4, 0xf9ee5ef4, 0xf2490ea7, + 0x31cdbeff, 0x1ed12700, 0x2df80dd6, 0x011c07f7, 0x6c1d03f0, 0xc2b87e01, + 0x07ff765e, 0x0c0c030c, 0x5ec3067e, 0x157eff64, 0xc9f293c3, 0x2bb9055f, + 0x2db902e0, 0xc30102e1, 0x07ff345e, 0x10cc83c0, 0xc4860c07, 0xf3be0127, + 0x7f5eff25, 0x893a7ef6, 0x04abf411, 0x04864027, 0x4f6b4127, 0x7a5ef415, + 0xed04e8fc, 0x15babef7, 0xff0ea7ff, 0x0499feff, 0xf631270a, 0x27f7dd4f, + 0xf7d85e30, 0x225e2103, 0xff1ea7f8, 0x1251ffff, 0x402723d6, 0x979ef093, + 0x27041d04, 0x0bf39b30, 0xa70ef39b, 0xfd4fff4e, 0x9d10129d, 0x42010f12, + 0x270ef39b, 0x0e149931, 0x34cb323b, 0x4fbf2ea7, 0x273138fd, 0x53240541, + 0xdc3fe631, 0x1e2403f8, 0xffcea7f1, 0xc199ffff, 0x9d0ea70e, 0x85befff9, + 0x41270031, 0x5e12c49d, 0x4027f8ac, 0x27f7e15e, 0x33430731, 0x2b343346, + 0x33c40743, 0x03c40bc3, 0x066b18cf, 0xfe665e00, 0xe61e3027, 0xf1eb4127, + 0xf7c24ff6, 0xf4e84327, 0x2127f1ab, 0x21c02d66, 0x3024f947, 0xd0ff011d, + 0x42873a42, 0x300043f1, 0x34d8ff02, 0xd021032f, 0xd11ee325, 0xff6755be, + 0x27f88d5e, 0x33f19308, 0x269e0088, 0x0127002c, 0xabf24a7e, 0xe3d411f3, + 0x0400004e, 0xf3ebd415, 0x27f73f5e, 0x03a81e40, 0x4eb21e21, 0xeb0ea7fe, + 0x6ebeffff, 0xc77e002d, 0xeb0ea7f0, 0x3fbeffff, 0xfe0e002d, 0x4ef2ef5e, + 0x3bcf5bf0, 0x4efe2bdf, 0xbe0f07fc, 0x1eff6889, 0x9b4027ff, 0x00070ef4, + 0xf61eff8b, 0xff1eff1e, 0x03d1fa4e, 0xc00701d0, 0x026134b9, 0xd207b107, + 0x008e4fe6, 0x1407e307, 0xe4a9a027, 0xb4ca0266, 0x68e4a943, 0x3c4bc202, + 0x0264e4a9, 0xe3fcc3c1, 0x1f3c0343, 0x35534303, 0x0262e2a9, 0x4123432a, + 0x89fc34c2, 0x020772c3, 0x2a8703e3, 0x2d0b3123, 0x30073012, 0xc389232d, + 0x12312372, 0x4d430743, 0x03a10324, 0xb3f1f0e8, 0x8924a2c8, 0xd24908d1, + 0x073812ca, 0x03d36942, 0xdad02941, 0x43072543, 0x2d4403ca, 0xca4107d4, + 0xd44d3512, 0xa1c4a123, 0x49d42912, 0x27d46dd3, 0x08d38d41, 0xfa8ed41d, + 0x4a07a027, 0xd41d4f6b, 0xd14dfa8e, 0x2908d28d, 0x49d369d4, 0x08d189d2, + 0xd46dd32d, 0x4207b61e, 0xd44da123, 0x4007c91e, 0x4107d42d, 0x1ebc21c2, + 0xa7f84eee, 0xffffff4e, 0xd10a0399, 0x07010844, 0x6a3fc6b0, 0x4853a407, + 0x9f6b9407, 0x0710ac53, 0x27eb0703, 0x27c0a780, 0x58e299d0, 0x32874207, + 0x340b4433, 0x13ff2cc0, 0x038c34f1, 0x1127ff00, 0x4ed81d3b, 0x26040000, + 0xd103c1eb, 0xf0f0e103, 0x2eb441d9, 0xceb43184, 0x4ea7204c, 0xc5f7ffff, + 0x48c5444c, 0x45002748, 0x8ebc35b8, 0xdb92cef8, 0x8c338d07, 0x1e8aab10, + 0x8e0427d2, 0x27c027f8, 0x4ecf1e80, 0xff3ea7fe, 0x4027ffff, 0x153834d5, + 0x153034d5, 0x153434d5, 0x03460ea9, 0x018202b9, 0x322b3e07, 0x3e0b2307, + 0x4e2b4307, 0x07f641c8, 0x0708330e, 0x5a94be12, 0xff4ea700, 0x40d5ffff, + 0xfe8e13ec, 0x00000180, 0x0499f54e, 0x07f8a3f2, 0xdf4ff670, 0x0c709908, + 0x018374b9, 0xe070f0c5, 0xc105a242, 0x78c1c472, 0xbc74c1b8, 0x7399f215, + 0xc1f31dfb, 0xf025c870, 0x3dfc7199, 0xcc72c1f1, 0x7399f235, 0xc1f35dfd, + 0x48fad475, 0x480700c9, 0x870f4c83, 0x0b443334, 0xf93cf934, 0xd1ff0013, + 0x87012c70, 0xf14a07ac, 0x0013f03b, 0x07470bff, 0xc1204763, 0x6e23ac49, + 0xe2ffec10, 0x0701d6b2, 0x0bd433dc, 0x0b4d07da, 0x4043d147, 0xe0310801, + 0xc201b5c1, 0x4d070fb0, 0x43d1470b, 0x31080144, 0x01dfc1e0, 0x41534007, + 0x070fb4c2, 0xd1470b4d, 0x08014843, 0xd7c1e031, 0xbe1a2701, 0xc2005a01, + 0x4d070fb0, 0x43d1470b, 0x3108014c, 0x01cdc1e0, 0xd4d1d70b, 0x41e80150, + 0xc1e0018e, 0x7d89017f, 0x070907f0, 0x2481be1b, 0x0b2d0702, 0x07d20220, + 0x030f072d, 0xc1a00b04, 0xa205dc74, 0x07096399, 0x0a66991f, 0x361d310b, + 0x72c1421b, 0x0b8103bc, 0x3b82f254, 0xbc72d1ff, 0x4673a902, 0xc5420703, + 0x482b74f2, 0xf4c1349b, 0x8272b974, 0x7948f201, 0x2b430701, 0x2942e842, + 0xa7713905, 0xffffff0e, 0x1123122b, 0x010803b9, 0x4c834807, 0x0f1c830f, + 0x312bb487, 0xb40b4433, 0x230f3c83, 0xffec10be, 0x07a139f4, 0x0709bd99, + 0x33ad8741, 0xf1133345, 0x001530a0, 0xf1140bff, 0x00011411, 0x870506ff, + 0xa014ea40, 0xff4ea705, 0x40d1ffff, 0xd8be13ec, 0xf0c50223, 0x2c70d168, + 0x014a0701, 0x47470bb6, 0xac49c130, 0x05e063e2, 0xc433cd07, 0x4c07ca0b, + 0x43d1470b, 0x31080140, 0x05d4d1e0, 0x070f60c2, 0xd1470b4c, 0x08014443, + 0x86d1e031, 0x5340070b, 0x0f64c241, 0x470b4c07, 0x014843d1, 0xd1e03108, + 0x1a270b7c, 0x0058d8be, 0x070f60c2, 0xd1470b4c, 0x08014c43, 0x70d1e031, + 0xd1c70b0b, 0xe80150c4, 0xe0077641, 0xc10767d1, 0x090768f1, 0x02235abe, + 0x07f07c89, 0x0bd403df, 0x020c0bda, 0x050c07c0, 0x09b499d0, 0xbb991f07, + 0x1d410b0a, 0xdc72c14b, 0x02bc73d1, 0x8103522b, 0xc57cf2c5, 0x500b74f3, + 0x042483fa, 0x74b9691e, 0x4ff60130, 0x9307fe47, 0x27fe8d5e, 0xdc9b14dc, + 0xb9fe3a5e, 0xf6013073, 0x5e940735, 0xc1e4fe7a, 0x73b9fe76, 0x31e40130, + 0x9de8fe6e, 0xfe680181, 0xfd8af453, 0x5f5e4901, 0x3074b9fe, 0x1d4ff601, + 0x5e9307fe, 0x74b9fe52, 0x4ff60130, 0x9307fe25, 0xb9fe455e, 0xf6013074, + 0x07fe2f4f, 0xfe385e93, 0xc5dc72c1, 0x73c17cf2, 0x3474d1d8, 0xc5130701, + 0xf4c55cf3, 0xe8152b60, 0x99035141, 0xf3c5c073, 0xc5310330, 0x34fa78f3, + 0xf0c101fc, 0x07309b7c, 0x5cf4c1d3, 0x14071412, 0x029e11e8, 0xbecd0c27, + 0x0702227f, 0x8870d1c0, 0x64f0c501, 0x02460ff6, 0xad071027, 0x3c07b027, + 0xf145fd55, 0xe86cf3c5, 0xc1026f31, 0x0ff670f0, 0xf1c101ee, 0x9a1ff630, + 0x5cf9c100, 0x78991127, 0x279353c1, 0x270027d0, 0x99f1a520, 0x7199c376, + 0xec64e0c2, 0xd363e001, 0xc1051b03, 0x092b7cfc, 0xc22b1f6b, 0x005745be, + 0x2b60f2c1, 0xab21e8c0, 0x68d9f003, 0xc1d15302, 0xdf6b74f3, 0x02ecd3ea, + 0x537cf8c1, 0x74f4c182, 0x02d6d4ea, 0x018374b9, 0x021341e0, 0x020f43e0, + 0x038574b9, 0x4ff6dc07, 0xf0c10228, 0xc50d126c, 0xf1c16cfd, 0xc581126c, + 0x74d16cf8, 0x70d10114, 0x71d10118, 0x7dd1011c, 0x7ed1010c, 0x41480110, + 0xa160f2c1, 0xfb23eef3, 0x70f3c102, 0x430b4f07, 0xf4414619, 0x027141e8, + 0x4c083407, 0x643c2765, 0x42234307, 0x94071307, 0x1c730307, 0x7384071f, + 0x2a071f9c, 0x7abe3b07, 0x2c270033, 0xbe302764, 0x0700340a, 0x0b443340, + 0x141c2704, 0x005695be, 0x022d00e8, 0xf0c5f151, 0xc5011240, 0x729940f1, + 0x34f2c5f2, 0x04d52ff6, 0xe6f47499, 0x9903864f, 0x7c99f97d, 0x076d5afa, + 0x07c612dc, 0x34f2c1d6, 0x72b92cf6, 0x74a90182, 0x42c20346, 0x74f3c13b, + 0x31237439, 0x2b0f3c83, 0x87412342, 0x0b343323, 0x0f4c8323, 0x13f923f9, + 0x2407ff00, 0x43332533, 0x44f1420b, 0xff000114, 0x34f53387, 0xff001530, + 0x02bc73d1, 0xc174f3c5, 0x302774f4, 0x870f4c83, 0x0b443324, 0xf023f524, + 0xd1ff0013, 0x0702bc74, 0x101e2312, 0x4fd6ffec, 0xdc74c163, 0x43333447, + 0x23f5340b, 0xff0013f4, 0x018874d1, 0xf4c14566, 0xf424f56c, 0x9dff0013, + 0x1d9d0a1d, 0x70f2c108, 0x7609129d, 0xff4ea725, 0x4dd5ffff, 0x0d071884, + 0xf58ef883, 0x275cf0c1, 0x1b03531a, 0xbe033305, 0xc10055b2, 0xf2c17cf1, + 0x7cf3c178, 0xd107129b, 0x31f2102b, 0x1307fded, 0xc1fde85e, 0x20f56cf0, + 0xff0013f4, 0xf9c1b21e, 0x30f2c15c, 0x2ff69353, 0x312700c7, 0xa5c17899, + 0xc37699f3, 0x0027d027, 0xe4c27199, 0xc1fe1864, 0x31535cf3, 0x070d53d2, + 0x0b417343, 0x12115343, 0xec115354, 0x27fe0411, 0xfdff5e11, 0x01e8f045, + 0x400701dc, 0xf3650cec, 0x07140700, 0x1f1c7304, 0x2d07b027, 0x02be3b07, + 0x30270032, 0xbe642c27, 0xd1003292, 0x07018c74, 0xe63007ad, 0x5500854f, + 0x6cf3c5fd, 0xfd9531ec, 0xf4c54127, 0xfd8d5e6c, 0x6a5ec127, 0xec79c1fd, + 0xc1e81c07, 0x090701bd, 0x021fd6be, 0x1807d007, 0xccbe0907, 0x74b9021f, + 0x80070385, 0xfddc4fe6, 0x70d11c07, 0xc1e80190, 0xb4be019e, 0xd007021f, + 0xc1fdc95e, 0x82537cf8, 0xe4fdab5e, 0x27fa5e02, 0x70f1c511, 0x11fa565e, + 0x7cf4c1f0, 0x042b1207, 0x0054b1be, 0x00c700e8, 0xc1c17899, 0xfdc178f1, + 0x9b200730, 0x5ef1a508, 0x0433fd3b, 0x1c27030b, 0x5490be14, 0xe8fd5500, + 0x12009f00, 0x070d070d, 0xf90cf230, 0x5e3c07fc, 0x7099fcf4, 0x7cf2c1c0, + 0x0330f0c5, 0x07209b01, 0x78f0c5d2, 0x27fcb45e, 0x40f0c500, 0x27fdd95e, + 0xa7102701, 0x5e90a780, 0x4c27fda2, 0xff0b5e64, 0xfd2a63e4, 0x5ec88c27, + 0x63e4fd24, 0x0907fd14, 0x1807052b, 0x005435be, 0x0b7cfcc1, 0xfd025ec0, + 0xc5dc74c1, 0x48077cf4, 0xc174f1c1, 0x410374f0, 0x04fa182b, 0x0fe006fe, + 0x80000000, 0x480706f6, 0x870f4c83, 0x0b443324, 0xf923f924, 0x03ff0013, + 0xf9355681, 0x0013fa22, 0x00f21dff, 0xfc105ef1, 0x645e0027, 0x5e0027ff, + 0x63e4ff38, 0x1efafd05, 0x1eee00a7, 0xf2c1009f, 0x6b0d2b60, 0x07242b1e, + 0x1f3c7332, 0x00312dbe, 0x01e8d007, 0x74b9fce5, 0x4ff60130, 0x1a270094, + 0x0053b1be, 0xf1c14d07, 0x5a402b6c, 0x070d0b14, 0x9601fa41, 0x6cf4c500, + 0xfcbf84f2, 0x5e6cf8c5, 0xf8c1fcb9, 0xf082537c, 0x53fc6bd9, 0x5edf6bd1, + 0xf3c1fc5d, 0xfa31535c, 0xf2fe1635, 0x53fe1e95, 0xfe195e11, 0x10270127, + 0x07fe2f5e, 0xe2425340, 0x07fa5c14, 0x33df0731, 0x07d40338, 0x07da0b10, + 0x5383be03, 0xbed10100, 0x89021e27, 0xd45ef07c, 0x5e1127fa, 0x1127fe42, + 0xe2fe615e, 0xc1ff61d0, 0x2ce86cf2, 0x27ff59c9, 0xf3c5c83c, 0xff505e6c, + 0x1fbe1527, 0x4d070053, 0x2b6cf2c1, 0x7624fa40, 0x070d0bff, 0x6e20f242, + 0x5e4007ff, 0xcc27ff69, 0x5ecd9b14, 0x74b9fa30, 0x4ff60130, 0x9307fa28, + 0x99fa6e5e, 0x4ff6f574, 0xf4c1fc77, 0xe74ff670, 0xc1f03905, 0xf2c160f1, + 0xeef07578, 0xd1023b12, 0xe8012074, 0xc1021f42, 0x19f030f1, 0xf3190218, + 0x322bf271, 0x01ed31e8, 0x018474b9, 0x4f4b3173, 0x230b242b, 0x65333c27, + 0x99f385f2, 0xf4b5c374, 0x063c44e0, 0xc664f1c1, 0x8c74d115, 0xbc41e001, + 0xa44fe601, 0xf97d9901, 0x13e0f1b1, 0x74b9035b, 0x46460385, 0x038674b9, + 0xf2614586, 0x32faf371, 0xf385061d, 0x7c99f061, 0x2fd0f2fa, 0x81fd9503, + 0x1cd2f2f2, 0xb12d0703, 0x0332e0f3, 0x70f1c103, 0xc14412c0, 0x0f0770f3, + 0xf1c14387, 0x11400b60, 0xe611e840, 0xe23ff602, 0x11f32102, 0xda34e2f4, + 0x07f47102, 0x91320703, 0x072312f2, 0xe471c132, 0xc5e872c1, 0xf1c158f1, + 0x54f2c56c, 0x026801e2, 0x024243fa, 0xf291f395, 0x01fa26ee, 0x2c2cf291, + 0x70f3c119, 0x021331e0, 0x018574b9, 0xf1c145e6, 0x39154670, 0x12f291f4, + 0xc1f49542, 0x39c664f3, 0x3634f4c1, 0x70f0c149, 0x74d10896, 0x47d6018c, + 0xc16cf1c1, 0x12ee40f2, 0xf51100d0, 0xd240f4c1, 0x46077f54, 0x4103f091, + 0xf4954012, 0x24c0f2b1, 0xd2f19141, 0x6d071bd1, 0x99fb3c5e, 0xf3b5c373, + 0x99f97d99, 0xf695fa7c, 0xd07e9f1e, 0xf71f5ef6, 0x6cf2f691, 0x6c07fb21, + 0x27fb1c5e, 0x32070d2c, 0x04b9f3e8, 0x412b0108, 0xf00f4c83, 0x1ef84f49, + 0x0474d1ee, 0xba41c401, 0xc170f4c1, 0x470b70f3, 0x010844b9, 0x31c4f495, + 0x91f339a9, 0x234307f0, 0x0904da43, 0x40073303, 0x43070312, 0x921ef495, + 0x3b072a07, 0x19070807, 0x002e08be, 0x27642c27, 0x2e98be30, 0x7550f200, + 0xf2f191ff, 0x95ff6f61, 0xff6a5ef6, 0x013073b9, 0x940735f6, 0xe4f8925e, + 0xb9f88ed1, 0xe4013073, 0xe8f88631, 0x8001819d, 0x809d27f8, 0xf8795e01, + 0xf3914607, 0x43f24223, 0xf495ff2a, 0x11ff255e, 0x40f2c1f4, 0xfe5742f2, + 0x27f97d99, 0xf385333c, 0x99fe4f5e, 0xfd65f97d, 0xb9fe475e, 0x71018472, + 0x0b2f4bf0, 0x53430732, 0x430b1f4c, 0x022b4173, 0x1c27040b, 0x85f06533, + 0xfe095ef1, 0x018474b9, 0x4f4bf271, 0x3c27242b, 0x85f26533, 0xfdf55ef3, + 0x012871d1, 0x038111e8, 0x012470d1, 0x00508dbe, 0x0312f371, 0x74d10307, + 0x42e80120, 0xf2190370, 0x018474b9, 0x4f4b3207, 0x042b302b, 0xfffb3fcc, + 0x0b39ffff, 0x53140743, 0x140b1f1c, 0x100b1173, 0xf1654207, 0x41124323, + 0xf461f465, 0x4012f071, 0x3fccf065, 0xfffffff7, 0x331c2725, 0xf381f185, + 0x43f2f461, 0xf365fd8f, 0x07fd8a5e, 0x23f06542, 0x65401243, 0x71f361f4, + 0x653412f4, 0x852303f4, 0x342cc8f2, 0x332c27da, 0xd31ef285, 0x0770f3c1, + 0x0b43870f, 0x7cf3c140, 0x351b4211, 0x30ec320b, 0x1607fdf4, 0xf1951123, + 0xfdead1f2, 0xe55efd95, 0x3074b9fd, 0xe941e401, 0x23f471fd, 0x07d41241, + 0xf2f0914d, 0x95fddb40, 0xfdd65ef4, 0xf0c11007, 0x80f3c554, 0xbe84f4c5, + 0xc1021a9f, 0xf3c16cf2, 0x84f4c180, 0xce3802c2, 0x41033534, 0xf1c1df1e, + 0x3f10c26c, 0x42f2f291, 0x1007fd96, 0xc558f0c1, 0xf4c580f3, 0x1a71be84, + 0x6cf1c102, 0xc180f3c1, 0x10c284f4, 0xcef29115, 0x41231024, 0xf391dd1e, + 0xfd6c43f2, 0x675ef495, 0xf2f495fd, 0x5efd6143, 0xf091fd5c, 0xf4954012, + 0x13f2f191, 0x4d5efd52, 0x5e4607fd, 0xf4c1fd29, 0xfa4ff670, 0x30f0c1fc, + 0xfcf90fe6, 0x81fd395e, 0xe42cf2f2, 0x5e2c07fc, 0xf161fcdf, 0x1cf2f195, + 0xfc95fccf, 0xc1fcca5e, 0x21e070f2, 0xf2c102da, 0x9b21e860, 0x5cf0c1fc, + 0x50f20353, 0xf3c10241, 0x073ff670, 0x30f4c101, 0x190b48d4, 0x03f061f4, + 0x65401241, 0x81f061f4, 0x610132f1, 0xc1f385f3, 0x01e470f0, 0xf3c1fc6a, + 0x5539d030, 0xc160f2c1, 0x32077cf0, 0x271f3c73, 0x2ba7be10, 0x07200700, + 0x3870d131, 0x3c71d101, 0x38f0c501, 0xfa3cf1c5, 0xc1024231, 0x13ee3cf1, + 0x42070237, 0x4c531307, 0x3302071d, 0x3314ab13, 0x4b020b03, 0x272a2713, + 0x2c08be30, 0x3cf2c100, 0x020c12fa, 0x020112ee, 0x011871d1, 0x011c72d1, + 0xc544f1c5, 0x010748f2, 0x12073027, 0xe3be2a27, 0xf3c1002b, 0x50f1c57c, + 0x47d471c1, 0x1b230b23, 0x07120b15, 0x1f4c7341, 0x34072107, 0xd14cf0c5, + 0xd1011071, 0xd1010c70, 0x0b011474, 0xc8314b20, 0xf4c12641, 0xc1485660, + 0x41fa48f4, 0x14ee00ea, 0xf4c100df, 0xc343fa48, 0xb834ee00, 0x48f4c100, + 0x008414fa, 0xc17a14ce, 0xf0c130f4, 0xe2415374, 0x71fb9540, 0x23f171f0, + 0x65110301, 0x5ef185f0, 0xf1c1fb86, 0x0611e470, 0x61f471ff, 0x124323f2, + 0x71f46542, 0x03f381f4, 0x8534124a, 0x60f4c1f4, 0xee78f0c1, 0xc1fee840, + 0x112374f1, 0x4c834107, 0x3334870f, 0x74f1c544, 0x32f9340b, 0xff0013f9, + 0xf1c51103, 0xc62ff674, 0x81f419fe, 0x124a03f2, 0x61f48524, 0xf2f481f3, + 0x65fec534, 0xfec05ef4, 0xc244f3c1, 0xf2c18230, 0x48f3c144, 0x316b202b, + 0xf3c11307, 0x5a020750, 0x6c31ee13, 0x4cf2c1ff, 0xff6520e2, 0xf471f371, + 0x41033123, 0xf485f365, 0xc1ff565e, 0x24e244f4, 0xf061ff45, 0x1012f171, + 0xf261f165, 0x23f2f381, 0xf365ff3f, 0xc1ff3a5e, 0x04e244f4, 0xf471ff1e, + 0x27234c0c, 0xf061234c, 0xf4654012, 0xf281f161, 0xff1d12f2, 0x185ef265, + 0x3074b9ff, 0x3f4fe601, 0xf4735efa, 0x013074b9, 0xfa344fe6, 0xb9f47d5e, + 0xf6013074, 0x5ef48c4f, 0x1127fa26, 0x71f9095e, 0xfc8c5ef0, 0x018474b9, + 0x042b4f4b, 0x0c27f065, 0x5ef08533, 0xf4c1fa57, 0xcb41e070, 0x27f23900, + 0xf275330c, 0x018473b9, 0xf3653f4b, 0x0bc37499, 0x99f4b532, 0xf365f97d, + 0x4d5ef085, 0xe005f2fa, 0x60f2c1fd, 0xd278f3c1, 0xf4c11b23, 0x1946f670, + 0x12f081f4, 0x61f48504, 0xf2f281f1, 0x65fdc212, 0xfdbd5ef2, 0xc470f1c1, + 0xf281ee11, 0x2312f371, 0xf471f385, 0x4323f061, 0x65dd04d2, 0xc1d91ef4, + 0x40e238f4, 0xf071fdfc, 0xf0650123, 0xe2fdf35e, 0x71fdc902, 0x234c0cf4, + 0x61234c27, 0x654212f2, 0x81f361f4, 0xd934f2f4, 0x5ef465fd, 0xf419fdd4, + 0x4323f061, 0xf9be40f2, 0xb95ef465, 0x65f471f9, 0x5ef485f4, 0xf3c1f9e0, + 0xb531e860, 0x7cf4c1fd, 0x536cf0c1, 0x1e40ee42, 0x61f419fd, 0x1641f2f1, + 0x5ef465fd, 0xf0c1fd11, 0x07012374, 0x0f4c8340, 0x44333487, 0x0b74f0c5, + 0xf932f934, 0x03ff0013, 0x74f0c501, 0xf3392f66, 0x13074027, 0xf3751323, + 0x4112f165, 0x7499f465, 0xc0f4b5c3, 0x44c03a42, 0x330c2737, 0xf4c1f085, + 0x104cf074, 0x74b9f959, 0x4fe6036a, 0x4307f951, 0x4103f081, 0xf4850412, + 0xf9432ff6, 0x43e2f419, 0xf181f93d, 0x14f24103, 0xf485f935, 0x07f9305e, + 0x85130313, 0x19c81ef1, 0xcaf339f4, 0x4027a534, 0xfe4ea11e, 0x7fff3ea7, + 0xe33411fd, 0x1508004d, 0xff3ea734, 0x3201fd4f, 0xf49b4027, 0x87e1270e, + 0x402ef522, 0xa7ff02b0, 0xfdcfff1e, 0x30074427, 0x234814c5, 0x4232d038, + 0x3ea72127, 0xbdfeffff, 0x271d3232, 0x0ef49b40, 0xbe601ec5, 0x2701f664, + 0xff3ea720, 0x32bdfeff, 0x40271d32, 0xa70ef49b, 0xfdcfff3e, 0xc54834c5, + 0x2ea76834, 0x11fd7fff, 0x004da324, 0x8e241508, 0x1e2227fe, 0xd1fd4ebe, + 0x0701d013, 0x0c3499d0, 0x4fc60207, 0x8b41e06a, 0x10349900, 0x27684fd6, + 0x4b43be16, 0x8302e800, 0x6305cc00, 0x40873007, 0x342b3533, 0x4387300b, + 0x4447432b, 0x07d32c27, 0x330d073d, 0x7f0c833b, 0x3c53029b, 0x03349b12, + 0x3c03800c, 0x53085380, 0x800c1038, 0x837f0c27, 0xdf837f0c, 0x01e00000, + 0x0dab4307, 0x40003d10, 0x3fff4d27, 0x3fff4d83, 0x04ab4733, 0x4c27fd8e, + 0xc12c2792, 0x4c27ba1e, 0xd32c27ae, 0x0427b21e, 0x40873007, 0x342b3533, + 0x4387300b, 0x4447432b, 0x4c279b1e, 0xda2c27ba, 0x4d27961e, 0x8d1e015c, + 0x01d014d1, 0x42991007, 0xb843d10c, 0x292c7602, 0x07330932, 0x33010741, + 0x7f0c834b, 0x4c53029b, 0x03439b12, 0x4c03800c, 0x53085380, 0x800c1048, + 0x837f0c27, 0x1f837f0c, 0x01e00000, 0x4d1001ab, 0x4d274000, 0x4d833fff, + 0x47333fff, 0xfe0b04ab, 0x991621c0, 0x45461044, 0x890a3289, 0xb41e0833, + 0x890e3289, 0xac1e0c33, 0x33493269, 0x14d1a61e, 0x100701d0, 0xd10c4299, + 0x7602b843, 0x0932292c, 0x07410733, 0x834b3301, 0x029b7f0c, 0x9b124c53, + 0x800c0343, 0x53804c03, 0x10485308, 0x0c27800c, 0x7f0c837f, 0x00001f83, + 0x01ab01e0, 0x40004d10, 0x3fff4d27, 0x3fff4d83, 0x04ab4733, 0x21c0fe0b, + 0x10449916, 0x32894546, 0x0833890a, 0x3289b41e, 0x0c33890e, 0x3269ac1e, + 0xa61e3349, 0xc007fc4e, 0xf0931227, 0xbe007a90, 0x1100160b, 0x9df093c1, + 0x00be007a, 0xc1210016, 0x7aa4f093, 0x15f5be00, 0x93c10100, 0x007aabf0, + 0x0015eabe, 0xf093c231, 0x27007ab2, 0x15ddbe10, 0x93c24100, 0x007aa5f0, + 0xd0be1127, 0xc2510015, 0x7a98f093, 0xbe122700, 0x610015c3, 0x8bf093c2, + 0x1327007a, 0x0015b6be, 0xf093c271, 0x27007a7e, 0x15a9be14, 0x93c28100, + 0x007a71f0, 0x9cbe1527, 0xc2910015, 0x7a64f093, 0xbe162700, 0xa100158f, + 0x57f093c2, 0x1727007a, 0x001582be, 0xf093c2b1, 0x27007a4a, 0x1575be18, + 0x30c2c100, 0x7a3cf093, 0xbe192700, 0xc1001567, 0xf09334c2, 0x27007a2e, + 0x1559be1a, 0x38c2c100, 0x7a20f093, 0xbe1b2700, 0xc100154b, 0xf0933cc2, + 0x27007a12, 0x3cbe0c1c, 0xc2c10015, 0x03f09340, 0x1c27007a, 0x152dbe0d, + 0x44c2c100, 0x79f4f093, 0x0e1c2700, 0x00151ebe, 0xf04eff1e, 0xdf3bcf5b, + 0xfc4efe2b, 0x7dbe0f07, 0xfc0effec, 0xff0bf00e, 0xcf5bf04e, 0xfe2bdf3b, + 0x0f07fc4e, 0xfffedfbe, 0x0000ff1e, 0x0b21fb4e, 0xd00704a1, 0x995a4bce, + 0x4b0710d3, 0xdc51435b, 0xd3194183, 0xde394487, 0x1c074d0b, 0x35332b07, + 0x40612c8b, 0x122b1103, 0x18003ef5, 0x200bff02, 0x180431f5, 0x4027ff02, + 0xe8003e23, 0x033435fd, 0xfde8003e, 0x181032f5, 0x31f5ff02, 0xff021814, + 0xe7f03e23, 0x0b3435fd, 0x25d4a1b1, 0xa8b4cedb, 0xd49d4227, 0x4efb8e12, + 0x23e407fe, 0x83e30b46, 0x3c330f4c, 0x1d023d0e, 0x003f8301, 0x333ff000, + 0x33202713, 0x43ab104c, 0x140012f5, 0x14f5ff02, 0xff021404, 0x40270e2d, + 0x8e0ef49b, 0x1eff1efe, 0xff3ea7ff, 0x3499feff, 0x07438309, 0x87343334, + 0xf9342b44, 0x00004f32, 0x4d34f9ff, 0xc2ff0000, 0xf4931d42, 0xc104ccb0, + 0x3ea78442, 0xc1ffffff, 0x24d1fc31, 0x002702bc, 0x0127140e, 0x0027fe0b, + 0xf94efe0b, 0xc107a007, 0x4714ac23, 0x091a0b11, 0x99d00713, 0x3e662409, + 0x40070c07, 0x3b0c4c23, 0x23d20149, 0x0be48731, 0x0b4387e2, 0x01130d4e, + 0x320cc24b, 0x493b4427, 0x30072047, 0x22231e07, 0xe007d407, 0x142b3123, + 0xd0132a0b, 0x3ccaec2b, 0x27012341, 0x0b403b41, 0x0d31274b, 0x23140523, + 0x581d0b22, 0x8e0b07fe, 0x034c07f9, 0x27244741, 0x0c071cec, 0xec2b2a0b, + 0x1a1d4cd4, 0x01031207, 0xfef02203, 0x07b02707, 0x09f98e0b, 0x1e31e613, + 0x1ee1278a, 0x1ee127bd, 0xe3f54ee4, 0x58f0c5f6, 0x27240299, 0x3b4f0731, + 0x03e00732, 0xf2c5404c, 0x4cf3c554, 0x235cf1c5, 0x2f0714ec, 0x2768f4c5, + 0x4027103c, 0x24032405, 0xf3c1f3b8, 0x2320274c, 0xc54a2731, 0xf2c540fe, + 0x0d6c2748, 0xc560f3c5, 0xf2c164f4, 0x1a238940, 0xc5182789, 0x72f050f3, + 0xf4c100b1, 0xaa34ee4c, 0x54f2c100, 0x4c234607, 0xc1423b0d, 0x048758f2, + 0x030b2301, 0x01007fe6, 0xc150f4c1, 0x24e260f2, 0x46070103, 0x2354f2c1, + 0x423b0c4c, 0x2350f2c1, 0x87420b61, 0x0b812754, 0x3b302753, 0x03a20786, + 0xc5100761, 0x902744f3, 0x0201c707, 0x42073f07, 0x4c83465b, 0x0bd4870f, + 0x0734013d, 0xe6e48be8, 0x0700854f, 0xd63207b4, 0x073407e4, 0x0b4307b2, + 0x774bce48, 0x14031205, 0x91030403, 0x0748fcf0, 0x4634013f, 0x27140545, + 0x05140340, 0x68f2c134, 0x32ce3403, 0x5cf3c1ed, 0xc16936ce, 0xf3c144f4, + 0x8d471b40, 0x3a8d1834, 0x40f4c11a, 0x0364f2c1, 0xc5212342, 0xf2c540f4, + 0xf6610364, 0xc1ff2d2f, 0xf6c348f0, 0xf4c1f58e, 0x7fa4ea60, 0x074907ff, + 0x2b410337, 0x5874ca39, 0x02017ee6, 0x12050403, 0xf3a81403, 0x32059a1e, + 0xf2c18f1e, 0x054f0744, 0x03d40b53, 0x03402722, 0xc5a10354, 0xd40544f2, + 0xc1ff775e, 0x412750f2, 0xf4c52a2e, 0x278d1e48, 0x48f4c540, 0xfac1861e, + 0x07302750, 0x44f3c510, 0xc1ff5e5e, 0x902750fa, 0xf9c51007, 0x279f1e44, + 0xa7a81e31, 0xffffff4e, 0x010041b9, 0x26fc40c1, 0x83300719, 0x33330f3c, + 0x007e34f9, 0x4756ff00, 0x40272107, 0x34fd0103, 0xff00007c, 0x3c833007, + 0x2333330f, 0x0ff2f011, 0xffff4ea7, 0x0041bdff, 0xfc40c501, 0x34f9fe0b, + 0xff00007e, 0xa7d44fc6, 0xffffff4e, 0x010041bd, 0x0bfc40c5, 0x07fc4efe, + 0x27a13ec0, 0x270c0e41, 0x8e040740, 0x07fa4efc, 0x14dc23d0, 0xcd0bc247, + 0x9914dc03, 0xc00924de, 0x4e3b4127, 0xb30bb007, 0xa3074223, 0xb432d301, + 0xfa8e0127, 0x3b0c2c23, 0x87020b2e, 0x87030b00, 0x0949be2a, 0x27412700, + 0x9dcb0d00, 0xfa8e31d4, 0x0399f74e, 0x3b412724, 0x07f06343, 0x070b0184, + 0x07f10570, 0x878333d1, 0x27c00794, 0x07c249a0, 0x871b070d, 0xbea10322, + 0x0b000913, 0x03d80bb9, 0x10acc4c2, 0x247499e9, 0xd4077c01, 0x749d4103, + 0x03f40124, 0x077405d6, 0x071f0707, 0x0531272d, 0xff6b7efc, 0x73b10596, + 0x4d3b4127, 0x73b5340b, 0xf78ef043, 0xb007fb4e, 0xf0931327, 0xbe0075bc, + 0x110010c3, 0xc9f093b1, 0xb8be0075, 0xb1210010, 0x75d0f093, 0x10adbe00, + 0x93b10100, 0x0075d7f0, 0x0010a2be, 0xf093b231, 0x270075de, 0x1095be10, + 0x03db0700, 0x31c127d4, 0x931c07d2, 0x0075c9f0, 0x80bec103, 0xd4030010, + 0xec0fccc4, 0xfb0e0b07, 0x00fc265e, 0x00001000, 0x08000000, 0x0000000f, + 0x07c1f54e, 0x3c0dc138, 0x07240a99, 0x27c107b0, 0x27502780, 0xddfc0c6c, + 0x00a41000, 0x4d034d07, 0xc4ea2000, 0x3c27009a, 0x2b06071b, 0x27010336, + 0x3b4d0722, 0x0b405b20, 0x5b41dc2d, 0x2755f3f0, 0x4a3b0f4c, 0xf4139487, + 0x134e01b0, 0x4201aff4, 0x2b0b2247, 0xb3012149, 0x490b4187, 0x3707430b, + 0x11033d0b, 0x3a074305, 0x3703214d, 0x030ade0b, 0x18025127, 0x41278107, + 0x42234a3b, 0x5936841a, 0xa194dcca, 0x3cb3c1b4, 0x2b3cbcc5, 0xa54c0b43, + 0xc2f58eb4, 0x2007982c, 0x070c2c23, 0x274a3b42, 0x3b9487e1, 0x07aa1ee0, + 0x7e0b0713, 0x1007fbae, 0x7d7e0b07, 0x24ba99fe, 0xff5cdcea, 0xf453c61e, + 0x4e01ff34, 0x20270607, 0x851e9027, 0x02c1fa4e, 0x4003c13c, 0x04a1d107, + 0x0fffdd03, 0x0fffdde3, 0xb007322b, 0x00c1d42b, 0xd634d638, 0x07fa8ed7, + 0x503dcaad, 0xc20bca07, 0x10be1c07, 0x0b070013, 0xfd7e1c07, 0xc6da2bfe, + 0xffdf03d0, 0x0703ffff, 0x00cf83cd, 0x03fc0000, 0x000001df, 0x071c07fc, + 0x2720270d, 0x18be163c, 0x3ea70013, 0xc5fff9f3, 0x40273830, 0x0b071d07, + 0xc5403cc5, 0xfa0e3c34, 0x07febf5e, 0x0bca07a3, 0xbe1c07c2, 0x070012bf, + 0x7e1c070b, 0xda2bfeac, 0xfa4eae1e, 0x07310499, 0x07a207d0, 0x56c107b3, + 0x0cb2c04f, 0x6e7e0a07, 0x5d0fc6fd, 0x475ab3c0, 0x144c234c, 0x0b24d199, + 0x3b31274d, 0x23420931, 0x2932c231, 0x41273c07, 0xd1a1433b, 0x31233407, + 0x13eb130b, 0x0d07140b, 0x89ff2b7e, 0x0d0732d4, 0x1c074103, 0x0e32d48d, + 0xfaa85efa, 0x47034107, 0x071ac4c2, 0x1e31033c, 0xfb2f7ece, 0x402706d6, + 0xc431d49d, 0xa81e9fb2, 0xfa8e0027, 0x38033107, 0x0d07b51e, 0x7b7e1c07, + 0x9d4027fa, 0x0fc631d4, 0x4efa8e81, 0x07d207fa, 0xb6b107a0, 0xa7fa8e27, + 0xfff9f3ce, 0x2724c099, 0x03222710, 0x6d5ebe07, 0x07100703, 0xfd227e0c, + 0x1a073d07, 0x0ea72b07, 0x7efff9f3, 0x0fd6fcd1, 0x9b4027d7, 0xfa8e0ef4, + 0x04a1fb4e, 0xd007f063, 0x14ceb107, 0x1001992c, 0xc15bcb07, 0xcc87c183, + 0xc461cd0b, 0x0f072127, 0xa03ef405, 0xa110d199, 0x3b4127d2, 0x27242b41, + 0xa5c36530, 0xd9b2ced2, 0xfb8ef043, 0xcf5bf04e, 0xfe2bdf3b, 0x0f07fc4e, + 0xfff9a4be, 0xf00efc0e, 0xf04eff0b, 0xdf3bcf5b, 0xfc4efe2b, 0x0dbe0f07, + 0xff1efffd, 0xff1eff1e, 0x0499fe4e, 0xc0e1071e, 0x8718ff4c, 0x0b443334, + 0x8c34f134, 0xa3ff0003, 0x0400004e, 0x038c34f5, 0x0499ff00, 0x8303311f, + 0x14070f4c, 0x43331533, 0x0b0f3c83, 0x1444f141, 0x87ff0001, 0x0b343323, + 0xf024f523, 0xa7ff0013, 0xfddfff1e, 0x08004d27, 0x020814d5, 0x10d50027, + 0x3ea70208, 0x11fd4fff, 0x873e0732, 0x0b36334e, 0xe442f543, 0x27ff000d, + 0xb8e4fd42, 0xa7ff000d, 0xffffff2e, 0x24bd4127, 0x23990668, 0x0ef09b0f, + 0x33874127, 0xb04034f5, 0xfe8eff02, 0x4ea73027, 0xc5fddfff, 0x01b9b443, + 0x04a90485, 0x02b90162, 0x410b0165, 0x323b3127, 0x430b4123, 0x2423427b, + 0x4123423b, 0x0b9a048d, 0xb9f94efe, 0x07013a04, 0xe03027d0, 0x2304014a, + 0xa8d39d46, 0x30274f6b, 0x31274214, 0x4f6b4307, 0x0162dba9, 0xb9a9d49d, + 0xb90164da, 0x070165dc, 0x5344861b, 0x85d4b911, 0x23312704, 0x3b230741, + 0x03e4072c, 0x60d0a941, 0x07b40b01, 0x23e10b42, 0x3b4123b1, 0x0bb20b3a, + 0x079e0741, 0x234c5b10, 0x5bbc7b11, 0x2331239c, 0x44d2a9c4, 0x3b300b01, + 0x3ed0a9bc, 0x5bc10701, 0x03ca5b3a, 0xa4230f2c, 0x15530a3b, 0xb123e553, + 0xda992473, 0x9cd38da8, 0x8d9ed48d, 0xd98da2dc, 0xa6d18da0, 0x8da4de8d, + 0xdb8d98d0, 0xe4d2d59a, 0x89a54604, 0x44479ad4, 0xa79ad48d, 0xfd4fff2e, + 0x23c14027, 0xbd0d0774, 0x0304f9d4, 0xe801300d, 0x27032530, 0xc1a02730, + 0x4efc3c04, 0x59ffff00, 0xff2ea703, 0x24c1fd4f, 0xf740e874, 0xa44c2702, + 0x0102d4ad, 0x3ea735d6, 0xc1fd4fff, 0x40e87434, 0x0199031b, 0xb04c2735, + 0x413b1423, 0x0104d4ad, 0xd4b91403, 0x3ea70485, 0xbde7ffff, 0x3304d1d4, + 0x4f83164c, 0x07000000, 0x800c4fa3, 0x3405f084, 0x03f4dbd1, 0xbfe6b483, + 0xcd27008e, 0x02993011, 0x3d04993e, 0x43832383, 0x45332733, 0x4fffeea7, + 0xc124abfd, 0x2aab74e3, 0x30e82cab, 0x24a3022e, 0xffffeea7, 0x50e2c5e7, + 0x99470299, 0x21834604, 0xd3b94183, 0x2c330138, 0x0f4c330e, 0xc02724ab, + 0x025b32e0, 0x99540499, 0x4c835503, 0x332cab1f, 0x1f3c8344, 0x24ab1323, + 0x13833933, 0x1c3323ab, 0x1521ab10, 0xa7b736e2, 0x55e46540, 0x65d4b9e4, + 0x1e45e001, 0xe946e002, 0x1244c001, 0x4027ff1e, 0xe455e465, 0xcd27e81e, + 0x735e1011, 0x61f493ff, 0xd4d50429, 0xd4a904f4, 0x4d8301a8, 0x46a68000, + 0x01c4d4d1, 0xd4d1413c, 0x4c3801a0, 0xbd4027c0, 0x2704f9d4, 0xff2ea740, + 0x24c5fddf, 0xd1d4b9c4, 0x62d0a904, 0x60dea901, 0x03040b01, 0x04730f0c, + 0xd3b94027, 0xec03013c, 0xd0d4bd0f, 0x34d0ad04, 0xe6e47305, 0xd101723f, + 0xf8016cd4, 0xffff004e, 0xdbb9018b, 0x2d27048a, 0xd3d101e0, 0x3d8303f4, + 0x35060100, 0xe37f2c03, 0x4e077f2c, 0xd4d54433, 0x3fe60524, 0xe7030158, + 0xc7e3ce07, 0x48234c07, 0x43333207, 0x3333429b, 0xd1d12633, 0xd3d501c4, + 0xd2d50528, 0xd4d5052c, 0xe7230530, 0x014812f8, 0xc4330703, 0x3d2707e3, + 0x2da71000, 0xdcd50fff, 0xd4d10524, 0x31230524, 0x300b049b, 0xb4334b87, + 0x4b0b328b, 0x0520d3d5, 0xdfff0ea7, 0x9843f1fd, 0x27ff0003, 0x9802d520, + 0xe803c501, 0x02d50e15, 0xd4b901b0, 0x4b26013c, 0x27fc02c5, 0x0004d541, + 0xf4d2d101, 0x6dd4b903, 0xb9120701, 0x83016ed3, 0x83163311, 0x811ca343, + 0x33834a33, 0x3c3314ab, 0x1813ab0c, 0xa301002d, 0x0400001e, 0xa7b401c5, + 0xfdefff3e, 0x34d54327, 0x030702b8, 0xdcb804c1, 0x1427fb48, 0x02b801d5, + 0x02bc01d5, 0x03d53027, 0x2ea70670, 0x05fdeb47, 0x004f2723, 0x15050400, + 0x0ef39b24, 0x02c001d5, 0x067403d5, 0x04d54327, 0x3ea702c4, 0xc1fdefff, + 0x48dcc434, 0xd54427fb, 0x2702c434, 0x3f3ea710, 0x3105fdeb, 0x00004f27, + 0x34150604, 0xa70ef19b, 0xfde50f2e, 0x051c4c27, 0x27211524, 0x0000000f, + 0xa72035a0, 0xfde4ff3e, 0x34054103, 0x30353115, 0xe4c1f98e, 0x004ef874, + 0xfdcc0100, 0x15fdcb5e, 0xb023d52e, 0xff615e01, 0x296ef493, 0xf4d4d504, + 0xfe2c5e04, 0xd2d52e9b, 0x3c270528, 0x7f2ca780, 0xb9fed95e, 0x27048adb, + 0x5e01802d, 0x3d27fe76, 0x2da71000, 0xc35e0fff, 0xd7f493fe, 0xd4d50428, + 0xfb5e04f4, 0x5ec127fd, 0x24c1fda4, 0x004ef874, 0xfd030100, 0xadb44c27, + 0x5e0102d4, 0x24c1fd00, 0x004ef874, 0xfcd50100, 0x27410499, 0x27431830, + 0xc3430731, 0x6b340741, 0x5ea3873f, 0x3127fcc3, 0xc1fbfe5e, 0x4ef87434, + 0xdf010000, 0x350199fc, 0x23c04c27, 0x03413b14, 0x04d4ad14, 0xfcdc5e01, + 0xadd44c27, 0xb60102d4, 0xff3ea735, 0x34c1fd4f, 0x1440c874, 0x27350199, + 0x1423e04c, 0x1403413b, 0x0104d4ad, 0xc1fcb55e, 0x4ed87434, 0xe5010000, + 0x27350199, 0x1423f04c, 0x1403413b, 0x0104d4ad, 0x4efc995e, 0x27b007fb, + 0xa5f09314, 0x94be006e, 0xb1110008, 0x6eb2f093, 0x0889be00, 0x93b12100, + 0x006eb9f0, 0x00087ebe, 0xf093b101, 0xbe006ec0, 0x31000873, 0xc7f093b2, + 0x1027006e, 0x000866be, 0xd403db07, 0xd231c127, 0xf0931c07, 0x03006eb2, + 0x0851bec1, 0xc4d40300, 0x07ec0fcc, 0x5efb0e0b, 0xf04efa6e, 0xdf3bcf5b, + 0xfc4efe2b, 0x5dbe0f07, 0xfc0efffa, 0xff0bf00e, 0xcf5bf04e, 0xfe2bdf3b, + 0x0f07fc4e, 0xffff7ebe, 0x2103ff1e, 0x0319181e, 0x01031419, 0x34ce1103, + 0x2301230d, 0x19001911, 0x0b042b14, 0x27f230fe, 0x4efe0b00, 0xab4107fe, + 0xd8300740, 0x151e0f43, 0x24231e01, 0x14033e05, 0x071e3403, 0x42534207, + 0xf4584103, 0x14192586, 0x341d1103, 0xf2a83103, 0xfd4efe8e, 0x03dce007, + 0x2624d029, 0x3f6b3107, 0x48334307, 0x320743ab, 0x3423e407, 0xec333253, + 0x03e4ab10, 0x05400731, 0x0324234e, 0x07f3b844, 0x272103e4, 0x1d031e40, + 0x0b3e0731, 0xa8410334, 0x00fd8ef2, 0x04110321, 0x04014342, 0x411d430b, + 0x41030421, 0xfe0b0425, 0x00000030, 0xf2e3f54e, 0x5f079307, 0xb0273f07, + 0x3a037027, 0x82074027, 0x5c036027, 0x95fb850c, 0x05f3a5f7, 0x25f115f0, + 0x01c85ef4, 0x1c40b7b6, 0x3e0f0725, 0x01ba5eb8, 0x40276807, 0x61237027, + 0xf485b127, 0xa95ef795, 0x301c2301, 0x4f6b4107, 0xd4301c03, 0x7536184a, + 0x27301c24, 0x47f38531, 0x0b733347, 0x301c2374, 0x855e710b, 0x6c1ce001, + 0x1cd40180, 0x1ce0206d, 0x54010663, 0x1ce0641c, 0xe4015a25, 0x01632d1c, + 0x1cc0261e, 0x1ce42964, 0x1e015869, 0x731ce022, 0x1c3400f6, 0x701ce474, + 0x131e0149, 0x0f751cc0, 0x3e781ce4, 0x27081e01, 0x5ef49541, 0x9001013c, + 0xc4641c00, 0xcc0a691c, 0x00130b00, 0x071eb127, 0x2b751cc4, 0xd007b027, + 0x0d07a027, 0x58be1a27, 0x00f9003a, 0x000199bc, 0x4a0b4507, 0x1a27401d, + 0x4abe0d07, 0xd007003a, 0x07e6a103, 0xa027dd1e, 0x4c834007, 0xf935070f, + 0x0199c844, 0x1d3a0b00, 0x03045334, 0x270176a1, 0x91c707b0, 0x2bca2bf3, + 0x813a76cb, 0x6647a6f4, 0x270f07b7, 0xc57e2d1c, 0x1eb027fe, 0x96f3810e, + 0x071d0734, 0xfeb67e0f, 0xdc27041e, 0x07c12320, 0xbdf3534c, 0x014103fe, + 0xe241cc31, 0x0f07b546, 0x7e2d1c27, 0xda07fe98, 0xd50bd123, 0xd139061e, + 0xa1fe8b7e, 0x07d123f4, 0xf3d4ce0f, 0x061edc07, 0x23fe7b7e, 0x270f07d1, + 0xd1cc201c, 0x01591ef4, 0x03c90791, 0x7e0f07c4, 0x9c07fe64, 0x9d01611e, + 0xb02774d6, 0x0d070b1e, 0x000089be, 0xb02bb707, 0x34e6f391, 0x457e171e, + 0x07b123fe, 0x0741034b, 0x201c270f, 0x1ef041cc, 0xfe327e04, 0x0f07d419, + 0xd1031407, 0xdb0742b6, 0x217e061e, 0x07d123fe, 0x201c270f, 0x03f4d1cc, + 0x07141e94, 0xfe0e7e0f, 0x61190d1e, 0x057e6103, 0xc20f07fe, 0xb027f568, + 0x81198103, 0xfe361ff6, 0x10270f07, 0x21fdef7e, 0x23f2c3f0, 0xa3f58e01, + 0x15f305f0, 0x63fe4ef4, 0x033f07f0, 0x7ef30538, 0xf043fdec, 0xf083fe0e, + 0x3007fe0b, 0x01030419, 0x032b4396, 0xfb4efe0b, 0xeea7f063, 0x05fd4fff, + 0x07c007f2, 0x01b307d1, 0x123f9be4, 0x44334103, 0xab38e2c1, 0x1023ce34, + 0xffe30ea7, 0x09cbbeff, 0xe8101e00, 0xa7061ef3, 0xffffe32e, 0x36272401, + 0xf1294276, 0x1303d409, 0x12732407, 0x03fc4d10, 0x0107ff1e, 0xc4090103, + 0x322b3407, 0x03fc4d10, 0x310cff1e, 0x03fc3d03, 0x87ec30da, 0x104c0342, + 0x4d0bf301, 0x21034305, 0x03fc2d04, 0x01072027, 0x01033b07, 0x3401111e, + 0x14052103, 0x2d103403, 0x2d2303fc, 0x128703fc, 0x0b101c03, 0x0df0301d, + 0xe30ea7d2, 0x0401ffff, 0x2bbe44c6, 0x40270009, 0x270ef49b, 0xff4ea731, + 0xf043fd4f, 0xfb8e43a5, 0xf005f063, 0x20073107, 0xe0001f27, 0x0f271007, + 0x1007d000, 0x2f5ef043, 0x05f063ff, 0x073107f0, 0x001f2720, 0x271007c0, + 0x07b0000f, 0x5ef04310, 0x0409ff16, 0xf40df063, 0x30070449, 0xf201f42d, + 0x0f273803, 0x10079000, 0xa0001f27, 0xf0431007, 0x4efef55e, 0x07a007fa, + 0xbeb10701, 0x07fffede, 0x41fc9330, 0x3503045c, 0x0c072307, 0x07da4d27, + 0x24231b07, 0x050c0c03, 0x15ca25c4, 0xfc15bec3, 0x3e0c07ff, 0x29ff1eae, + 0x10142903, 0x1e03fc3d, 0xfc4d10ff, 0x07ff1e03, 0x0c042b03, 0xfc0d0300, + 0x27fe0b03, 0x0790004f, 0x6b442910, 0x1034070f, 0x2303fc4d, 0x2703fc3d, + 0x07b0004f, 0x93442910, 0x0586cff2, 0x3407230d, 0x03fc4d10, 0x03fc3d23, + 0xd0004f27, 0x44291007, 0x4d10234d, 0x4d2303fc, 0x248d03fc, 0x270ba608, + 0x07a0004f, 0x07442910, 0xfc4d1034, 0xfc3d2303, 0x004f2703, 0x291007c0, + 0x07232d44, 0xfc4d1034, 0xfc3d2303, 0x004f2703, 0x291007e0, 0x10236d44, + 0x2303fc4d, 0x8d03fc4d, 0xfe0b0a24, 0xf493f84e, 0x09058668, 0x07422943, + 0x0c322b90, 0xfc3d0330, 0x2734d603, 0x87f88e00, 0x124de942, 0x07100790, + 0x07d303a3, 0x23c207bd, 0x03b273a1, 0xe9d323c1, 0x07901048, 0x0dbad210, + 0xf1930827, 0x7e006a94, 0xba07feeb, 0x9d159805, 0x27c5dc50, 0xc9f19308, + 0xd87e006a, 0x07b806fe, 0x07080309, 0xfccd103b, 0xfccd2303, 0xf14c8703, + 0x07901044, 0x05c10310, 0x38040304, 0xfccd10f3, 0xfccd2303, 0xe9f39303, + 0x3c2d0585, 0xa0003f27, 0x01271007, 0xf88e3c2d, 0xf493f74e, 0x490585d4, + 0x07426943, 0x07322b90, 0x03300c71, 0xd603fc3d, 0x8e002734, 0xe94287f7, + 0x07b0124c, 0x03a30710, 0x078c07c3, 0x73a123b2, 0x23b10382, 0x104de9c3, + 0xd21007b0, 0x08270d8a, 0x69fef193, 0xfe557e00, 0x9c2d8a07, 0x94299d0d, + 0x0bb9dd24, 0x74484cc4, 0xdd24141e, 0x4cc40bba, 0x0a1e6a28, 0x0bbbdd00, + 0x0bbcddc4, 0x5094295f, 0x0827f94c, 0x6a2df193, 0xfe217e00, 0x37079029, + 0x0123070b, 0xe37f3ce3, 0x34197f0c, 0xc2803c03, 0x87c6f930, 0x38071707, + 0x03fcbd10, 0x03fcbd23, 0x44f14b87, 0x1007b010, 0x1405b103, 0xf3381403, + 0x03fcbd10, 0x03fcbd23, 0x851ef393, 0x273b6d05, 0x07c0003f, 0x2d012710, + 0x27f78e3b, 0xeef19306, 0xc87e0069, 0xa7971efd, 0xfd4fff2e, 0x3f9b2401, + 0x33410312, 0x3822c144, 0x002734ab, 0x0127320e, 0xf0e3fe0b, 0xf315f205, + 0xfa4ef425, 0xffff3ea7, 0x8c34a9ff, 0x07f06315, 0xe6a107d0, 0xfa00ad4f, + 0xd100a940, 0xe6158834, 0x3e00a14f, 0x9b07e6bb, 0x4ea7122f, 0x01fd4fff, + 0xe71ea743, 0x3433ffff, 0x43d61401, 0x32ab38a3, 0x0a1e1305, 0xffe70ea7, + 0x063fbeff, 0x00cf2700, 0xc1101000, 0x4ea744cb, 0xd1ffffff, 0xa7158840, + 0xfd4fff4e, 0x3b074401, 0x030b3733, 0x1d304c03, 0x124f9b04, 0x9b48ddf9, + 0x4c030001, 0x07043d30, 0x204c273f, 0x047d0d5d, 0x03183c03, 0x272a0704, + 0xf3057b1c, 0xfff9d7be, 0x07a6d007, 0x0748c4c1, 0xc541033b, 0xc4c148c4, + 0x10310348, 0x270fff3d, 0x44c3c530, 0xa744c4c1, 0xffffe70e, 0x0005a9be, + 0xd027031e, 0xf0430d07, 0xf0c3fa0e, 0xfa4efe0b, 0xc3073401, 0xa207b107, + 0xffff4fc4, 0x0727ffff, 0x012d2710, 0x27022706, 0xbe01a43d, 0x07fee2ca, + 0x1000ccd0, 0x01060d27, 0xfee2bdbe, 0x5cf2f493, 0x05400504, 0xc0c101cd, + 0xffffff1f, 0x2b071dff, 0x05273a07, 0xfee2a1be, 0x271000cc, 0xbe01060d, + 0x93fee296, 0x045ccbf4, 0xfa8e4005, 0xb6befe4e, 0x2f270007, 0x1007f000, + 0x04e33d27, 0x4307051e, 0x2401f4e8, 0x0ef842c4, 0x07bd9efe, 0x27fb4e00, + 0x0efb9bb0, 0xf000cf27, 0x31271007, 0x4027c305, 0xa70ef49b, 0xfd4fff4e, + 0xc13e43a5, 0xcb05c031, 0xfb4efb8e, 0xfc9bc027, 0x00bf270e, 0x271007f0, + 0x27b30531, 0x0ef49b40, 0x4fff4ea7, 0x3e43a5fd, 0x8ebc059c, 0xa7fe4efb, + 0xffffe70e, 0x0004c3be, 0x4f273027, 0x1007f000, 0xfe8e4305, 0x307efe4e, + 0x9b07e6fe, 0x4ea7122f, 0x01fd4fff, 0xe71ea743, 0x3433ffff, 0x43d61401, + 0x32ab38a3, 0xfe8e1305, 0xffe70ea7, 0x9efe0eff, 0x230004b1, 0x15f105f1, + 0x35f325f2, 0xa7fb4ef4, 0xd07fff4e, 0xf0634491, 0x4cf8b007, 0xab008b10, + 0xfde57efd, 0x2f9b07e6, 0xff4ea712, 0x4301fd4f, 0xffe71ea7, 0x013433ff, + 0xa343d614, 0x0532ab38, 0xa70a1e13, 0xffffe70e, 0x000468be, 0x4fff4ea7, + 0x274401fd, 0x07f000cf, 0x304c0310, 0x9d203c27, 0xc39d0cc4, 0x124f9b0d, + 0x030fc39d, 0x3f07304c, 0x07143c03, 0xf01d272b, 0x0ec49d03, 0xf0100f27, + 0xf3051007, 0xfff80fbe, 0xc4154127, 0xf00c0f27, 0x1fbe1007, 0x0103fffa, + 0xff7ec025, 0xe70ea7fe, 0xebbeffff, 0xfdeb0003, 0xfb0ef043, 0xfe0bf103, + 0x4f27f84e, 0x10100000, 0x48c14a01, 0x4449c140, 0x2a484cc1, 0x1edc07ca, + 0x23dc0705, 0xffbea7d1, 0xb4d1ffff, 0xda2b1588, 0xf0934556, 0x7e00673a, + 0xb1d1ff23, 0xf0931588, 0x7e006754, 0x8fc4ff17, 0x11223356, 0xff9dd457, + 0xde26520f, 0x3c072907, 0xf0931807, 0x0700675a, 0x7e9b074a, 0xca07fef7, + 0x1f1ebd07, 0x0032aabe, 0x158894d1, 0x27332007, 0x2419240b, 0x1c074586, + 0x6766f093, 0xfed57e00, 0xb123c103, 0x1d270c07, 0xbfc40fff, 0xffffffff, + 0x27da0bd4, 0x1000004f, 0x8e4d0510, 0xff4ea7f8, 0x44d1ffff, 0x47c61588, + 0x00004f27, 0x41011010, 0x42014403, 0x43014403, 0x44014403, 0x672cf093, + 0xfe915e00, 0xf54efe0b, 0xf5634207, 0xa2074013, 0x80076107, 0x91075247, + 0xf4c57027, 0x09351e50, 0xbed103b3, 0x0bfff903, 0x07b203c0, 0x501c270c, + 0x6726f293, 0xcead0e00, 0x4027e6d9, 0x1707c41d, 0x671cf093, 0x7e2f0700, + 0xf4c1fe4b, 0x0b7a0b50, 0xc2850b94, 0xb8070967, 0xcf07d027, 0xf543ce1e, + 0xf54ef58e, 0xf5236207, 0x92077107, 0x60135007, 0x8027a107, 0xb319301e, + 0xacbed103, 0xc00bfff8, 0x0c07b103, 0x93501c27, 0x0066ddf2, 0xdace9d0e, + 0x074027e6, 0x93c41d18, 0x0066c5f0, 0xf47e2f07, 0x0b890bfd, 0x0b78c2a6, + 0xb50bb807, 0xcf07d027, 0xf503d11e, 0xf94ef58e, 0xd107b007, 0x9307a207, + 0xd47efcab, 0x9b07e6fb, 0x4ea7122f, 0x01fd4fff, 0xe71ea743, 0x3433ffff, + 0x43d61401, 0x32ab38a3, 0x0a1e1305, 0xffe70ea7, 0x0257beff, 0x004f2700, + 0x271007f0, 0x03431532, 0x254d453a, 0x144a9d43, 0x3515499d, 0xfcff7e4b, + 0x0ea7d007, 0xbeffffe7, 0xeb00020e, 0x07d5c6fc, 0x020d272b, 0xbe1d0702, + 0x07fedf4e, 0x4ef98e0d, 0x07c007fb, 0x7efdabb1, 0x07e6fb67, 0xa7122f9b, + 0xfd4fff4e, 0x1ea74301, 0x33ffffe7, 0xd6140134, 0xab38a343, 0x1e130532, + 0xe70ea70a, 0xeabeffff, 0x3f270001, 0x1007f000, 0x34154327, 0x3c354827, + 0x3b453425, 0x07fc987e, 0xe70ea7c0, 0xa7beffff, 0xfdeb0001, 0xfb8e0c07, + 0xd007fc4e, 0xfcab0d66, 0xe6fb0e7e, 0x122f9b07, 0x4fff4ea7, 0xa74301fd, + 0xffffe71e, 0x14013433, 0x38a343d6, 0x130532ab, 0x0ea70a1e, 0xbeffffe7, + 0x27000191, 0x07f0004f, 0x15342710, 0x35432543, 0xfc687e4d, 0xffe70ea7, + 0x0154beff, 0x8efceb00, 0x23fc4efc, 0x07d107f1, 0x9bf193c0, 0x0f070065, + 0xbe102c27, 0xf6fff4b7, 0x28fd93d4, 0x0d07006c, 0xfff751be, 0x5606f393, + 0x27200704, 0x0707da4d, 0x140c03e3, 0x30153405, 0x21033c25, 0x070cec03, + 0x0143273f, 0x05340331, 0xa8e403e1, 0x093459f4, 0x931d0733, 0x0455f2f0, + 0xe30de45d, 0xfff46ebe, 0x55caf093, 0xf804be04, 0x4eff1eff, 0xff4ea7fc, + 0x44b9ffff, 0xd0071564, 0x45e6c107, 0x6538f093, 0x071d0700, 0xfc3dbe2c, + 0x070d07ff, 0xfec9be1c, 0x270596ff, 0x3ff19302, 0x665e0065, 0x4efc8eff, + 0xff8ea7f8, 0x84b9ffff, 0x90071564, 0xa207b107, 0x4666d307, 0x652ff093, + 0x07190700, 0x073a072b, 0xfc01be4d, 0x14cd07ff, 0x07c227d2, 0x071b0709, + 0xbe3c072a, 0xb9fffe12, 0x07156484, 0x9345a6d0, 0x006537f0, 0xdcbe1d07, + 0xd576fffb, 0xf1930227, 0x1e00653f, 0x3b412712, 0x8b41234c, 0x2745864d, + 0x3af19301, 0xfa5e0065, 0x50a796fe, 0x000000df, 0x0b4d0720, 0x014fd04b, + 0x23700000, 0xf1930127, 0x1e006542, 0x00df50e2, 0x07700000, 0x504b0b4d, + 0x0000014f, 0x930127f0, 0x006558f1, 0x0d07c91e, 0x3c27f88e, 0xff595e0c, + 0x04054027, 0x4027fe0b, 0x050ef49b, 0x01fe0b04, 0x123f9b02, 0x4fff4ea7, + 0x274401fd, 0xa3443300, 0x0e43ab48, 0x0b012742, 0x07fa4efe, 0x123f9bc0, + 0x4fff4ea7, 0x074d01fd, 0xa3d433a4, 0x1ed3abd8, 0x01f4e803, 0x564627cb, + 0x2fb8beb3, 0x27c40100, 0x05449630, 0x0ef39bcd, 0x0138abc5, 0xe4d4cec4, + 0x3027fa8e, 0xffff4ea7, 0x3843d5fe, 0x9bfe0b01, 0x2407124f, 0x25333487, + 0x21f1232b, 0xff010014, 0x03103f9b, 0x87310b41, 0xf5453314, 0x01001423, + 0xa7412bff, 0xfd4fff3e, 0x44f13311, 0xff010000, 0x342b1207, 0x002023f5, + 0x1e23ff01, 0x23fefff4, 0xfeff682e, 0x13014727, 0x23051403, 0xf4a82403, + 0x4ea7fe0b, 0xa7fd4fff, 0xfeffff3e, 0x44914181, 0x012832d1, 0x013030d1, + 0x43331333, 0x041b211b, 0x013034d5, 0x012432d5, 0x012831d5, 0x012c30d5, + 0xfe0bfe0b, 0xf493fe0b, 0x75045668, 0x07fe0b40, 0x87453340, 0xf5402b00, + 0x01000c41, 0x2841f5ff, 0x0b00058d, 0x334007fe, 0x2b008745, 0x1041f540, + 0xf5ff0100, 0x058d2c41, 0x87fe0b00, 0x2b053340, 0x680e2304, 0xfe0bfeff, + 0xcc27fc4e, 0xa72c078c, 0xfefff31e, 0x54f2f093, 0xf239be04, 0xa72c07ff, + 0xfeff671e, 0x556ef093, 0xf229be04, 0xf1f093ff, 0x1ea70455, 0x27fefedb, + 0xfc0e102c, 0xfff2169e, 0xf493fe4e, 0x190454c0, 0xa24ff644, 0xb9f49300, + 0x24070454, 0x078b2c03, 0x7f2ce334, 0x197f3ce3, 0x803c0334, 0x93f932c2, + 0x04549ff3, 0x4c272027, 0x03320523, 0x93f4c834, 0x04551bf4, 0x2c032407, + 0xe334078b, 0x3ce37f2c, 0x0334197f, 0x32c2803c, 0x233c27f9, 0x54fef293, + 0x07102704, 0x23210543, 0xb8240331, 0x79f493f4, 0x43350455, 0x43154305, + 0x20274325, 0x557af393, 0x054a2704, 0xc8340332, 0x273027f4, 0xf5402725, + 0x058db834, 0x2834f500, 0xf500058d, 0x058d2c34, 0xb434f500, 0x0300058d, + 0xf2001c3c, 0xf4933127, 0x1d04541c, 0xa5f19343, 0x2c270454, 0x670ea78c, + 0x58befeff, 0xf193fff1, 0x27045408, 0x0ea78c2c, 0xbefefff3, 0x93fff147, + 0x04550ff1, 0xa7102c27, 0xfefedb0e, 0xfff136be, 0x6f5efe0e, 0xff4ea7fe, + 0x4311fd4f, 0xffff4ea7, 0x3443d5fe, 0xa7fe0b01, 0xfeffff3e, 0x4fff4ea7, + 0xd14111fd, 0xd1013834, 0x0b013432, 0xd5422b41, 0x0b013834, 0x124f9bfe, + 0x35333407, 0x342b4487, 0x4fff4ea7, 0xf14211fd, 0x01002434, 0xf5422bff, + 0x01002434, 0x9bfe0bff, 0x2407124f, 0x44872533, 0x4ea7242b, 0x11fd4fff, + 0x2423f144, 0x0bff0100, 0x2424f543, 0x0bff0100, 0x95f293fe, 0x3ea70454, + 0x27feff67, 0x03310147, 0x03210534, 0xa7f4a824, 0xfeffff4e, 0x013844d1, + 0x5476f393, 0x27349504, 0x0332014a, 0x03020534, 0x0bf4a804, 0xff3ea7fe, + 0x309dffff, 0xbd41270d, 0x99066a34, 0x40270f33, 0x270ef49b, 0xf5338741, + 0x02b04034, 0x4eff1eff, 0xbec007fc, 0x39002cb4, 0x07c419c3, 0x1d43ab13, + 0x3d4027c4, 0x2705e6c4, 0x0ef49b40, 0x4fff3ea7, 0x3834c5fd, 0xf49b4027, + 0xff4ea70e, 0x4399ffff, 0xbf2ea70e, 0x318bfd4f, 0x41273138, 0x31532405, + 0x32d62403, 0xfc4efc8e, 0x97bec007, 0x1ea7002c, 0x39fd4fff, 0x271301c2, + 0xab433b41, 0x27c43d42, 0x0ef49b40, 0x8e3814c5, 0x07fc4efc, 0x2c74bec0, + 0xff1ea700, 0xc319fd4f, 0x41271201, 0x34eb423b, 0x4027c31d, 0xc50ef49b, + 0xfc8e3814, 0xc007fb4e, 0x25beb107, 0xc219002c, 0x2bab4027, 0xc43dc21d, + 0x402705e6, 0xa70ef49b, 0xfd4fff3e, 0x273834c5, 0x0ef49b40, 0xffff4ea7, + 0x0e4399ff, 0x4fbf1ea7, 0x38328bfd, 0x05412731, 0x03315314, 0x8e32d614, + 0x0d0499fb, 0x070c0399, 0x0744c623, 0x99041e34, 0x43070e03, 0x400b4123, + 0x99044499, 0x45960e00, 0x3028321b, 0xfe0b0307, 0xfe0b030b, 0xb027fb4e, + 0x0b9dc007, 0x0ec19d0c, 0x0b9d2107, 0x0310270d, 0xef80be04, 0x3dcb1dff, + 0x03cb5dcb, 0x8ecb3dc2, 0x07fc4efb, 0xfbcc27d0, 0xb3be0d07, 0x004c007b, + 0xf4e84c07, 0xfc8ef31e, 0xd007fc4e, 0x07fbcc27, 0x7b9cbe0d, 0x07004c00, + 0x1ef4e84c, 0x6bfc8ef3, 0x9315361f, 0x006102f0, 0x4087fe0b, 0xabd440f1, + 0x04860001, 0xf0931434, 0x0b006673, 0x0b4187fe, 0x104c2340, 0xfe0b4001, + 0x0087f74e, 0xabf00af1, 0x0bf10001, 0x0001abd4, 0xf093c107, 0x070060d7, + 0x2772071a, 0xf6c5be90, 0x1e8027ff, 0x03cd011c, 0x66c40391, 0x93b201d6, + 0x0060caf0, 0x3d071a07, 0xfff6aabe, 0xb4038d0b, 0x07e397ce, 0x9328071a, + 0x0060c1f0, 0x949ef70e, 0xfa4efff6, 0x23082a99, 0x87d207f1, 0xf1ac8631, + 0x01abd433, 0x34348600, 0xf8f393a4, 0x0a1e0065, 0x430b4a87, 0x01104c23, + 0x09de9943, 0xdb69dc49, 0xfe054187, 0xfb25fc15, 0xabf042f1, 0xdd010001, + 0x4a071007, 0x608ff093, 0xbefd3500, 0x1efff647, 0x09249922, 0xde492c69, + 0xabf032f1, 0x10070001, 0x60e4f393, 0xaaf09300, 0xfe050060, 0x24befc15, + 0xf103fff6, 0xfc4efa8e, 0xffffcea7, 0x63c101f7, 0xd3f093f0, 0x0cbe0060, + 0xc121fff6, 0x60e6f093, 0xf601be00, 0x48c1c1ff, 0x60f8f093, 0xf5f5be00, + 0x44c1c1ff, 0x610af093, 0xf5e9be00, 0xffcea7ff, 0xc181efff, 0x6118f093, + 0xf5d9be00, 0x93c1a1ff, 0x00612bf0, 0xfff5cebe, 0xffffcea7, 0x93c121eb, + 0x006139f0, 0xfff5bebe, 0x9364c1c1, 0x00614bf0, 0xfff5b2be, 0xffffcea7, + 0x93c101e7, 0x006159f0, 0xfff5a2be, 0x9350c1c1, 0x00616bf0, 0xfff596be, + 0xf093c121, 0xbe00617e, 0xc1fff58b, 0xf09354c1, 0xbe006190, 0xc1fff57f, + 0xf09358c1, 0xbe0061a2, 0xc1fff573, 0xf0935cc1, 0xbe0061b4, 0xa7fff567, + 0xfbffffce, 0x0628c1d1, 0x61c0f093, 0xf555be00, 0x30c1d1ff, 0xdaf09301, + 0x48be0061, 0xc1d1fff5, 0xf0930208, 0xbe0061f4, 0xd1fff53b, 0x930420c1, + 0x00620ef0, 0xfff52ebe, 0x0468c1d1, 0x6228f093, 0xf521be00, 0xff4ea7ff, + 0x41c1f3ff, 0x3ef09334, 0x10be0062, 0xcea7fff5, 0x31fddfff, 0x4cf093c1, + 0x00be0062, 0xc1c1fff5, 0x4cc2c148, 0xc16cc3c1, 0xcec170c4, 0x52f09340, + 0xfe050062, 0xfff4e6be, 0xffffcea7, 0x48c1d1fe, 0x48c2d101, 0x71f09301, + 0x22870062, 0xabc42f03, 0xc8be0001, 0xc1b9fff4, 0xf0930140, 0xbe00627d, + 0x99fff4bb, 0xf09309c1, 0xbe00628d, 0xb9fff4af, 0x931d35c1, 0x00629cf0, + 0xfff4a2be, 0x0144c1a9, 0x62abf093, 0xf495be00, 0x42c1a9ff, 0xc6f09301, + 0x88be0062, 0x4ea7fff4, 0xd1fdefff, 0x930f0041, 0x0062d7f0, 0xfff476be, + 0x0003d5be, 0x4fff4ea7, 0x114c01fd, 0x931c0742, 0x0062ddf0, 0xfff45ebe, + 0x10270c07, 0xe3172ea7, 0xfdc07efe, 0x11270c07, 0xe30b2ea7, 0xfdb47efe, + 0x13270c07, 0xe2f32ea7, 0xfda87efe, 0x14270c07, 0xe2e72ea7, 0xfd9c7efe, + 0x15270c07, 0xe2db2ea7, 0xfd907efe, 0xffffcea7, 0x40c1d1ff, 0x48c2d115, + 0x44c3d115, 0x54c4d115, 0xb1f09315, 0x04be0062, 0xc2d1fff4, 0xc1d11550, + 0xf093154c, 0x430062c2, 0x9efc0ef0, 0x4efff3ef, 0xffbea7f8, 0xb1c1fd4f, + 0x93f1236c, 0x0062bcf0, 0xfff3dabe, 0x00042cbe, 0xf0931007, 0xa70062d4, + 0xffffffce, 0xfff3c6be, 0x9311c199, 0x0062eaf0, 0xfff3babe, 0xb211ba01, + 0xf0931a07, 0xbe006302, 0x07fff3ab, 0xa716270a, 0xffeaa72e, 0xa7fd0d7e, + 0xfffffb0e, 0x01030919, 0x4ea70a19, 0x03fffffe, 0x19421901, 0x0341030b, + 0x190e1901, 0x19410343, 0x93c11944, 0x0062f7f0, 0xf905fe35, 0xfb25fa15, + 0xfff36abe, 0x930fc199, 0x006326f0, 0xfff35ebe, 0x9310c199, 0x006341f0, + 0xfff352be, 0x0668c2d1, 0x066cc3d1, 0x0664c1d1, 0x6353f093, 0xf33dbe00, + 0x50c1d1ff, 0x79f09306, 0x30be0063, 0xc1d1fff3, 0xf0930658, 0xbe006393, + 0xd1fff323, 0x93065cc1, 0x0063adf0, 0xfff316be, 0x9327c199, 0x0063c8f0, + 0xfff30abe, 0x9326c199, 0x0063e3f0, 0xfff2febe, 0x0e4cc1d1, 0x63fdf093, + 0xf2f1be00, 0x65c1b9ff, 0x17f0930e, 0xe4be0064, 0xc1b9fff2, 0xf0930e64, + 0xbe006434, 0xd1fff2d7, 0x9313e8c1, 0x006451f0, 0xfff2cabe, 0x0102c1a9, + 0x646ef093, 0x0f1c8300, 0xfff2babe, 0x0108c1b9, 0x6485f093, 0xf2adbe00, + 0x09c1b9ff, 0x9ff09301, 0xa0be0064, 0xc1a9fff2, 0xf093010a, 0xbe0064b9, + 0xd1fff293, 0x931890c1, 0x0064d3f0, 0xfff286be, 0x187cc1b9, 0x64f3f093, + 0xf279be00, 0x7dc1b9ff, 0x0df09318, 0xcea70065, 0xbeffe93b, 0xb9fff267, + 0x9301b4c1, 0x006522f0, 0xfff25abe, 0x9340c199, 0x00653bf0, 0x4cbe8c07, + 0xc027fff2, 0x14f9661e, 0xff001828, 0x183830f1, 0x32f1ff00, 0xff001718, + 0x175833f1, 0x42d8ff00, 0x2bb30749, 0xcad027b2, 0xb0070923, 0xb22bb103, + 0x4187d307, 0x183843f1, 0xeb07ff00, 0xed0b3103, 0x175849f1, 0x42f1ff00, + 0xff0016c4, 0x650bf093, 0x1844f100, 0x27ff0017, 0x27e30ea0, 0x053a07a1, + 0x25fb15f9, 0xf1e5befd, 0x07c103ff, 0x4084991c, 0x31871f6b, 0xa79014ca, + 0xffffffce, 0x0e66c1b9, 0x6526f093, 0xf1c5be00, 0x67c1b9ff, 0x40f0930e, + 0xb8be0065, 0xc1b9fff1, 0xf0930e64, 0xbe00655a, 0x93fff1ab, 0x006578f0, + 0xfff1a2be, 0x930cc199, 0x00657df0, 0xfff196be, 0x932ac199, 0x006598f0, + 0xfff18abe, 0x9312c199, 0x0065b3f0, 0xfff17ebe, 0x9344c199, 0x0065cef0, + 0xfff172be, 0x933cc1c1, 0x0065e9f0, 0xfff166be, 0x9340c1c1, 0x006604f0, + 0xfff15abe, 0x0654c1d1, 0x661ef093, 0xf14dbe00, 0x3cf093ff, 0x44be0066, + 0x0ea7fff1, 0xbefffb33, 0x07fff9b1, 0x3cf09310, 0x30be0066, 0x0ea7fff1, + 0xbefffae3, 0x07fff99d, 0x57f09310, 0x1cbe0066, 0xc027fff1, 0x3c074c07, + 0x35334333, 0x42f1430b, 0xff000110, 0xf0931c07, 0x03006669, 0xf0fdbec1, + 0x10ccc4ff, 0xff4ea7e0, 0x4b99feff, 0x6ef09309, 0xb3830066, 0x4b87cb07, + 0xc42bc433, 0x0050c1f9, 0xce23ff00, 0xbeffffb8, 0x03fff0d3, 0x93c139c4, + 0x006674f0, 0xfff0c6be, 0xf093c159, 0xbe006691, 0x03fff0bb, 0x334b87b1, + 0xf1b42bb4, 0x000048b1, 0xa2f093ff, 0xf1030066, 0xa09ef80e, 0xf64efff0, + 0xf093f4e3, 0xbe006a38, 0x27fff093, 0x87d02771, 0x0044f14d, 0x87ff0210, + 0xf1f49537, 0x02100034, 0x91f4a5ff, 0xe04c3cf4, 0x0b1e40a7, 0x44334d07, + 0x180c44f1, 0xf4b5ff02, 0x4c3cf4a1, 0x1e40a7e0, 0x3347070b, 0x0c44f144, + 0xc5ff0218, 0xdc3030f4, 0x1e402738, 0xf14d8709, 0x02160044, 0x34f4c5ff, + 0x27387c30, 0x87091e40, 0x0044f147, 0xc5ff0216, 0x402738f4, 0xc53cf4c5, + 0xf4c540f4, 0x48f4c544, 0xf3a1f291, 0x4f38f4b1, 0x20000000, 0x0b1e10a7, + 0x44334d07, 0x180441f1, 0xf4c1ff02, 0x004f3830, 0xa7200000, 0x070b1e60, + 0xf1443347, 0x02180446, 0x3cfec1ff, 0xfcc14107, 0xc11d0740, 0xfac144fb, + 0x34f9c148, 0x5538f8c1, 0x031153fd, 0xbcf093d2, 0xf7750069, 0xfe15f605, + 0xfb35fc25, 0xf965fa45, 0x7203f885, 0xffefb6be, 0x2450dce4, 0x8ef4c3ff, + 0xd10f27f6, 0x0b2c4304, 0x07f64efe, 0x07820742, 0x07a20793, 0x102c5330, + 0x3fab4fab, 0xe39be207, 0x71076007, 0x1407b007, 0x9b100c53, 0x07109b34, + 0x53e10b43, 0xe40b104c, 0x1e02209b, 0x00002e03, 0x9b4e0701, 0x10ec33b9, + 0x4c53a79b, 0xabd20710, 0x0bce073f, 0x0bd40bba, 0x071b07c3, 0x8e1d0b0c, + 0x27f54ef6, 0x00df27c0, 0x0741e000, 0x073d072c, 0xbeb107a0, 0xc80020ec, + 0x20271f00, 0x1b073d07, 0x4cbe0a07, 0x4007001e, 0x51070407, 0x001f94be, + 0x00000f03, 0xf58e8000, 0x0a071b07, 0x001f84be, 0xf54ef58e, 0xb207f1a3, + 0xd207c307, 0x10e8e307, 0x302701bd, 0xc0e8f355, 0xa10701c9, 0x5007bd07, + 0x00aceff6, 0x00ccd1e2, 0x0000def4, 0xf401e401, 0xa00100dd, 0x27402703, + 0x3b07202c, 0x33f9345b, 0x0001acc8, 0x132b1207, 0x4c2716e6, 0x2b250720, + 0x5b3a0741, 0x07313b24, 0x3ba3aba2, 0x07b13b51, 0x109c539b, 0x0a071907, + 0x002264be, 0x19078007, 0x54be0a07, 0xab070022, 0x0c334507, 0x53afab10, + 0xc807104c, 0xca9b04ab, 0x0b0bc062, 0x0b0a8123, 0x03540cea, 0x1907c01b, + 0x32be0c07, 0xd0070022, 0x0c071907, 0x002222be, 0x0c334507, 0x074fab10, + 0x9b04abed, 0x0be082ea, 0x2ad1230b, 0x23e0020b, 0x334807d1, 0x0d07104c, + 0x402704ab, 0x2e070b1e, 0x00cae1e2, 0x40270027, 0x6007f351, 0x14077407, + 0x302735c6, 0x302b4027, 0x0307416b, 0xf1831407, 0xd596f58e, 0x10270127, + 0x0021d4be, 0xbef0b007, 0xf3010000, 0x00bff400, 0xb0010000, 0x102c2702, + 0x3b074207, 0x33f9345b, 0x0001acc8, 0x832b8207, 0x01dc8ff6, 0xca074b07, + 0x4fab9b07, 0x9c53cb2b, 0x27f43510, 0x07190781, 0x2193be0c, 0x07a00700, + 0xbe0c0719, 0x07002183, 0x33fc3145, 0x4c53100c, 0x9b04ab10, 0x0bc062ca, + 0x0aa1230b, 0x8e0cea0b, 0x07c01b02, 0xbe0c0719, 0x07002165, 0x071907d0, + 0x2155be0c, 0x31450700, 0x100c33fe, 0x04ab4fab, 0xe082ed9b, 0xd1230b0b, + 0xe0020b2a, 0x4a07d123, 0x07104c33, 0x0704ab0d, 0xff3e5e48, 0x0000eed0, + 0xeff46301, 0x01000000, 0x1c27021b, 0x07410710, 0xf9345b32, 0x01acc833, + 0x2b810700, 0x628fd683, 0x5bea2a0a, 0x0127ff10, 0x0d5e4027, 0x273027ff, + 0x6b302b40, 0xa7140741, 0x07f45540, 0x3bc0ec03, 0x073027fe, 0x514027d3, + 0x0be407f3, 0x6bdb2b3f, 0x5ef355ec, 0xbdf4fe26, 0x01d10100, 0x2c274027, + 0xff105e20, 0x0100edf4, 0x402701a3, 0x1e201c27, 0x00dff49f, 0x9c010000, + 0x102c2701, 0x1b5e4207, 0x203c27fe, 0x4b07382b, 0x283b435b, 0x92ab9407, + 0x4a07ca07, 0x2507d907, 0xdc53c35b, 0x5b483b10, 0x0724ab23, 0x150c071d, + 0x2083bef2, 0x07f04500, 0xbe0c071d, 0x11002073, 0x41a907f4, 0x100c33fc, + 0x4c53afab, 0xabb83b10, 0x05ca9b04, 0x13c0c2fb, 0x090bf441, 0xf4454123, + 0xc042096a, 0xf4454123, 0xc01b090b, 0x0c071d07, 0x002044be, 0x1d07b007, + 0x34be0c07, 0xf4110020, 0xab100c33, 0xabd0074f, 0x42ab9bd4, 0x23d90bad, + 0x309de2b1, 0x01f44101, 0x104c33fc, 0xeb07b4ab, 0xec53f401, 0xab1b0710, + 0x071fab4f, 0x10cc530e, 0x049b2107, 0x2c9b149b, 0x41073007, 0x4c53320b, + 0x0b2d0710, 0x9b2a2b34, 0x030302ec, 0x010000ee, 0x4c534307, 0xeae40b10, + 0xee00b12e, 0x07009a2e, 0x5e40270b, 0xb83bfddc, 0x2b204c27, 0x07ca0748, + 0x079b073a, 0x5bc45b25, 0x53383b24, 0x23ab109c, 0x0c071907, 0xaebef225, + 0xa007001f, 0x0c071907, 0x001f9ebe, 0xf4213b07, 0x0c333fab, 0x104c5310, + 0xf335c307, 0xca9b40ab, 0x4b0bc4a2, 0x4b4aa123, 0xa123c422, 0xc41b4b0b, + 0x0c071907, 0x001f78be, 0x1907d007, 0x68be0c07, 0xf421001f, 0x0c33f231, + 0xab4fab10, 0xa22d9b04, 0x230b0b20, 0x220b4ad1, 0x0bd12320, 0x334a070b, + 0x583b104c, 0x8d07c007, 0x84abc22b, 0x07fda85e, 0x33310743, 0x3fab104c, + 0x283b2507, 0x42e2430b, 0x0b07ff57, 0x40270123, 0x27fd2f5e, 0x181c2748, + 0x27fdfe5e, 0x2827184c, 0x27fc815e, 0x2827184c, 0x27fd515e, 0x1827184c, + 0x27fde65e, 0x182c2748, 0x27fd415e, 0x182c2748, 0xe2fc615e, 0x0bfed0ad, + 0x5eb123d9, 0x8123fec9, 0xa95e0b0b, 0x0ba123fc, 0xfd6f5e0b, 0xf2e3f54e, + 0xc307b207, 0xe307d207, 0x01ab10e8, 0xf2a52027, 0x0194c0e8, 0x7007bd07, + 0xefd6a107, 0xe0d1e265, 0x00def000, 0x01b00100, 0x0000dff4, 0x039a0100, + 0x07102c27, 0x5b0b0742, 0xc803f904, 0x070001ac, 0xf6432b42, 0x2701ad4f, + 0x07f17510, 0x10dc53db, 0x0a071d07, 0x001e80be, 0x1d07c007, 0x70be0a07, + 0x6b07001e, 0x6fab4707, 0x53100c33, 0xc69b104c, 0xc06204ab, 0x0b2a0b0b, + 0x0b0bc002, 0xef5ec01b, 0xc2ce0700, 0x800726e1, 0xf0059107, 0xf1a1f115, + 0x01651fc6, 0x27f111f0, 0x2b402730, 0x07416b30, 0x05140703, 0xc3f415f3, + 0xf0f58ef2, 0x010000ee, 0xeff40134, 0x01000000, 0x2c270318, 0x07420710, + 0xf9345b3c, 0x01acc833, 0x2bd20700, 0x3ddff6d3, 0xcaca0a01, 0x2707157b, + 0x2b2b3a07, 0x41273c2b, 0x030e27e2, 0xa42ba307, 0xf1a17207, 0xfa15f705, + 0x9a078707, 0x019d1fd6, 0xc3f111f0, 0x96f58ef2, 0x270127d5, 0x1dcfbe10, + 0xf0b00700, 0x010000be, 0xbff400b8, 0x01000000, 0x2c2702c0, 0x07420710, + 0xf9045b0b, 0x01acc803, 0x2b520700, 0xd95ff653, 0x07ca0701, 0x276b07db, + 0x53cb2b10, 0x6fab10dc, 0x1d07f175, 0x8ebe0c07, 0xa007001d, 0x0c071d07, + 0x001d7ebe, 0x0c334707, 0x104c5310, 0x04aba69b, 0x0b0ba042, 0x0aea0b0a, + 0xc0070291, 0x1d07ca2b, 0x62be0c07, 0xa007001d, 0x0c071d07, 0x001d52be, + 0x0c334707, 0x9b4fab10, 0x6204aba6, 0x2a0b0ba0, 0x0ba0020b, 0x710a2b0b, + 0x5b8007f1, 0x05902781, 0x5ef915f8, 0x3027feea, 0xd3074027, 0xdb2be407, + 0x615eec6b, 0x273027fe, 0x6b302b40, 0x07030741, 0xa530a714, 0xfe4a5ef3, + 0x0100bdf4, 0x4027021c, 0x5e202c27, 0xddf4ff4b, 0x02060100, 0x2c274027, + 0xfe535e20, 0x0100edf4, 0x402701d8, 0x5e202c27, 0xf475fecf, 0x4c132707, + 0x71245b20, 0x3b3a07f4, 0xaba20734, 0x3bb43ba3, 0xfe415e74, 0x2b204c27, + 0x21f4254d, 0x5b4b07f0, 0x3b3c0740, 0xab54073d, 0x07470753, 0x076507ca, + 0x3bc05b3a, 0x106c533d, 0x43ab405b, 0x0c071607, 0x9abef455, 0xf095001c, + 0x0c071607, 0x001c8abe, 0x1507f451, 0x1fabfc91, 0x53100c33, 0xbd3b104c, + 0xf1857d3b, 0xc19b04ab, 0xf745fb35, 0x9113c0c2, 0x23050bf2, 0x6af29521, + 0x23c04205, 0x0bf29521, 0x07c01b05, 0xbe0c0716, 0x07001c55, 0x071607a0, + 0x1c45be0c, 0x33f45100, 0xf781100c, 0xb0074fab, 0x7a9bb4ab, 0xb50b7b42, + 0x5be2a123, 0xf491015a, 0x4c333a07, 0x0734ab10, 0xabf431c3, 0x10cc533f, + 0x4fabfe31, 0x0c07a307, 0x0710ec53, 0x9b049b13, 0x071e9ba4, 0x0b4a0720, + 0x104c5321, 0x3c071b07, 0x172b240b, 0x02023e9b, 0x00003e03, 0x53420701, + 0x0307104c, 0x040b3207, 0x07103c33, 0x074fab4a, 0xea240b23, 0xee008910, + 0x1b010801, 0x00955e01, 0x4507b53b, 0x07204c13, 0x073a07ca, 0x5b2707db, + 0x10dc53c4, 0x353b245b, 0x1d0723ab, 0xf2650c07, 0xaabef575, 0xa007001b, + 0x0c071d07, 0x001b9abe, 0x6b07f461, 0x0c336fab, 0x104c5310, 0x40aba69b, + 0x4b0ba462, 0xa4024b2a, 0xc4074b0b, 0x1d07ca2b, 0x7abe0c07, 0xa007001b, + 0x0c071d07, 0x001b6abe, 0x0c33f461, 0x9b4fab10, 0x6204aba6, 0x2a0b0ba0, + 0x0ba0020b, 0x3bc0070b, 0x5eca2b75, 0xf431fdbe, 0x421b3007, 0x0127352b, + 0x2b6342c2, 0x2b010730, 0x41240703, 0x2bf141f4, 0x0a312742, 0x1b302714, + 0x5bf02130, 0x3b23074d, 0x07840720, 0x5b82ab93, 0x15f8059d, 0xfcd05ef9, + 0x2c274827, 0xfcf95e18, 0x27184c27, 0xfc675e28, 0x27184c27, 0xfce95e28, + 0x27184c27, 0xfd415e28, 0x2c274827, 0xfc4f5e18, 0x2c274827, 0xfd315e18, + 0xf15e4027, 0x1e0027fc, 0x5e0b0b9b, 0x7be2fd6e, 0xa123fea6, 0x9f5eb50b, + 0xeaf341fe, 0x27ff7932, 0x4e891e00, 0x35f163f5, 0x07b107f0, 0xb83ff6d2, + 0xf621e200, 0x002ef400, 0x01c80100, 0x01002df4, 0x4027037a, 0x07202c27, + 0xf9345b3d, 0x01acc833, 0x2be20700, 0x31e766e3, 0x204c27f2, 0x245b4e2b, + 0x3b07f431, 0xb2073e3b, 0xb3ab4e3b, 0xde3bf435, 0xac53ad07, 0x071a0710, + 0x1a6bbe0b, 0x07900700, 0xbe0b071a, 0x31001a5b, 0x336d07f4, 0x6fab100c, + 0x07104c53, 0x9b04abc9, 0x0bc062c6, 0x0a91230d, 0x3a0cea0d, 0x07c01b03, + 0xbe0c071a, 0x07001a39, 0x071a07b0, 0x1a29be0c, 0x33f43100, 0x4fab100c, + 0x04ab3b07, 0x3082369b, 0xb1230d0b, 0x30020d2a, 0x4907b123, 0x07104c33, + 0x2704ab0b, 0x07140740, 0x43840770, 0x07f58ef1, 0xfb13ea23, 0x003ef000, + 0x00e60100, 0x00003ff4, 0x02a80100, 0x07101c27, 0x5b320741, 0xc833f934, + 0x070001ac, 0xf6632b61, 0x2a01016f, 0xeaf4312b, 0x2700cd4d, 0x07402701, + 0x07700714, 0x8ef14384, 0x272596f5, 0xbe102701, 0x070019b5, 0x00def0d0, + 0x00ba0100, 0x0000dff4, 0x02700100, 0x07102c27, 0x5b3d0742, 0xc833f934, + 0x070001ac, 0xf6932b92, 0x0701939f, 0x07ad07cb, 0x53cd2b6d, 0x6fab10ac, + 0x1a075127, 0x76be0c07, 0x90070019, 0x0c071a07, 0x001966be, 0x0c33f431, + 0x104c5310, 0x04abc907, 0xc062c69b, 0x91230d0b, 0x0cea0d0a, 0xc01b0250, + 0x0c071a07, 0x001948be, 0x1a07b007, 0x38be0c07, 0xf4310019, 0xab100c33, + 0xab3b074f, 0x82369b04, 0x230d0b30, 0x020d2ab1, 0x07b12330, 0x104c3349, + 0x04ab0b07, 0x14074507, 0x84077007, 0xf58ef143, 0x01003df4, 0x402701ce, + 0x5e201c27, 0x0027ff1d, 0x14074027, 0x84077007, 0xf58ef143, 0x0100ddf4, + 0x402701ca, 0x5e202c27, 0x2ff4ff49, 0x01000000, 0x2c2701c2, 0x5e420710, + 0x3c27fe37, 0x07362b20, 0x3b435b4d, 0xaba40726, 0x07f231a2, 0x079a07cb, + 0x5bc35b4b, 0x53463b23, 0x24ab109c, 0x0c071907, 0xaabef215, 0x50070018, + 0x0c071907, 0x00189abe, 0xf4113a07, 0x0c333fab, 0x104c5310, 0xd63bc307, + 0x04abf345, 0xfd05c59b, 0x0a0bc0a2, 0x0a4a5123, 0x5123c022, 0xc01b0a0b, + 0x0c071907, 0x001870be, 0x1907b007, 0x60be0c07, 0xf4110018, 0x41100c33, + 0x074fabf9, 0x9bd4abd0, 0x0b9d429b, 0xe2b123da, 0x070139ad, 0x104c3345, + 0xeb07b4ab, 0xec53f401, 0x07fc0110, 0xab4fab1b, 0x530e071f, 0x210710cc, + 0x149b049b, 0x30072c9b, 0x320b4107, 0x07104c53, 0x2b340b2d, 0x02ec9b29, + 0x00ee0303, 0x43070100, 0x0b104c53, 0xb32eeae4, 0x9c2eee00, 0x270b0700, + 0xfe355e40, 0x4c27d93b, 0x2bf23120, 0x07cb0749, 0x5b3b07ad, 0x3b245bc4, + 0x10ac5339, 0x1a0723ab, 0xf2250c07, 0x0017d8be, 0x1a075007, 0xc8be0c07, + 0xf4210017, 0x0c336d07, 0x536fab10, 0xc507104c, 0xc69b40ab, 0x4d0bc4a2, + 0x4d4a5123, 0x5123c422, 0xc41b4d0b, 0x0c071a07, 0x0017a4be, 0x1a07b007, + 0x94be0c07, 0xf4210017, 0xab100c33, 0xab2b074f, 0xa2269b04, 0x230d0b20, + 0x220d4ab1, 0x0bb12320, 0x3145070d, 0x104c33f3, 0x5b07c007, 0xc22b393b, + 0xf33554ab, 0x07fded5e, 0x07f23143, 0x104c3331, 0x263b3fab, 0x42e2430b, + 0x0b07ff55, 0x40270123, 0x70071407, 0xf1438407, 0x4c27f58e, 0x5e182718, + 0x4827fd59, 0x5e181c27, 0x4c27fd51, 0x5e282718, 0x4827fd91, 0x5e182c27, + 0x4827fc87, 0x5e182c27, 0x4c27fd81, 0x5e282718, 0x9de2fc77, 0xda0bfec7, + 0xc05eb123, 0x0b9123fe, 0xfcc35e0d, 0x0d0b9123, 0x01fdad5e, 0x1342d004, + 0x32b01301, 0x204944c0, 0xc042a434, 0x14113c32, 0x112745c6, 0xfe0b0107, + 0x04113284, 0x10a742c6, 0xfe0b0107, 0x14110311, 0x3106344e, 0xf11e10a7, + 0x14210221, 0x7af442da, 0x31043124, 0xeb04ca10, 0x3fd60442, 0x1e10a7ce, + 0x071027d8, 0xc4fe0b01, 0x1111c934, 0x142b0411, 0xfb4ebb1e, 0x32d00301, + 0xd014012f, 0x34e02842, 0x44c000fb, 0x2242c421, 0x051d32c4, 0x15041123, + 0x25042124, 0x35043124, 0x11031124, 0x8b020714, 0x8e241543, 0x8e0107fb, + 0xfa32c0fb, 0x14210c21, 0xe42bec07, 0x13310b31, 0xe0c8de07, 0x20ecc867, + 0x8c4cfa4c, 0x27c40700, 0x110011b0, 0x7404ce14, 0x3b2b0f66, 0x277e30c8, + 0x25241540, 0x3123352c, 0x23410721, 0xff4fd441, 0x163fffff, 0x11472321, + 0x41073123, 0x23252135, 0x4fd04123, 0x3fffffff, 0x054327ee, 0x2810c824, + 0xfb8e0207, 0x2752d1c8, 0x234e3b41, 0x27438b41, 0x274486d0, 0xab3e5bd1, + 0x13a71e3d, 0x20eccce0, 0x1be21e99, 0x21a61e3b, 0x53310724, 0xab118331, + 0x07410313, 0x25213502, 0x07fb8e24, 0x15130b1b, 0x352c2520, 0x27b31e21, + 0xff775e30, 0x41273013, 0x2c252415, 0x801e2335, 0xff67dfe6, 0x4e3b4127, + 0x4b8b4123, 0xd027ce0b, 0xd1274486, 0xbdabbe5b, 0xe4ff505e, 0x11ff2a44, + 0xee041113, 0x93ff2234, 0x005bfbf0, 0x0001fb8e, 0x40073007, 0x53173c53, + 0x20071f4c, 0x3f6b1415, 0xffff2e83, 0xc639d67f, 0xa7432728, 0x14057d3c, + 0x13254207, 0x4f744733, 0x40000000, 0x31234447, 0x00004fd0, 0x25f64000, + 0x0b143513, 0x054227fe, 0xc0fe0b14, 0x3316ff3c, 0x7f3c2327, 0x00002fa3, + 0x43274000, 0x13251235, 0xfe0b1405, 0x44272516, 0xfe0b1405, 0x00000e83, + 0x27054610, 0x35140541, 0x05fe0b12, 0x4ef91e10, 0x07f163f5, 0x03f0051f, + 0x7e0f0714, 0xf341ff7a, 0x23074027, 0xf0112253, 0xf12142ab, 0x3c33f231, + 0x0c79be1e, 0x43510700, 0x4ef58ef1, 0x07f2a3fb, 0x05b803bf, 0x07f115f0, + 0x7e1b070f, 0xcf07ff4a, 0x0718cc03, 0x0704030f, 0xff3c7e1c, 0x1c070b07, + 0x83fdba7e, 0x01fb8ef2, 0x11033104, 0x6442d002, 0x005744c0, 0x2735f642, + 0xab002740, 0x1f2c3304, 0xfe0b02ab, 0x0fc80021, 0xffffff82, 0x800ccc5b, + 0x83430739, 0x0c037f4c, 0x404cc07f, 0x3f3c031e, 0x072130c8, 0x6b475343, + 0xff4e830f, 0x0c337fff, 0x3304ab17, 0x02ab1f2c, 0x3cd8fe0b, 0x3c03e380, + 0x53de1e40, 0x1e010331, 0x274027db, 0x8000000f, 0x07a91e7f, 0x004ea343, + 0x4e831000, 0x277fffff, 0x8000000f, 0x13951e7f, 0xffff820f, 0x1a0cccff, + 0x3b412753, 0x8b412340, 0x86102743, 0x5b112744, 0xab030730, 0x83400701, + 0x4cc07f4c, 0x40073c40, 0x073f4c03, 0x27375334, 0x004fd001, 0x20400000, + 0x4e834307, 0x337fffff, 0x505e170c, 0x034007ff, 0x3407404c, 0x01273753, + 0x00004fd4, 0x27e24000, 0x27de1e00, 0x1e302700, 0x800cdcd8, 0x533007e1, + 0x14412737, 0x0000000f, 0x07402740, 0x4ec21e04, 0x05f123fe, 0x150f07f0, + 0x35f225f1, 0xfef97ef3, 0xfe8ef103, 0xf163fd4e, 0xd403df07, 0x1d07f005, + 0x137e0f07, 0x27f421fe, 0x27449630, 0x250d0731, 0xfed57ef3, 0xfd8ef143, + 0xf2a3fc4e, 0xc803cf07, 0xf115f005, 0x1c070f07, 0x07fded7e, 0x18dc03df, + 0x04030f07, 0xdf7e1d07, 0xd0f221fd, 0xf1611622, 0x008112f0, 0xf371f431, + 0xf43543cb, 0x22c42400, 0x07126e18, 0xfe917e0c, 0xfc8ef283, 0x59aef093, + 0xfe857e00, 0xfc8ef283, 0xc05d14c0, 0xf2413912, 0xf351f481, 0xf191242b, + 0x1342f245, 0xf2452123, 0x2f273347, 0x40000000, 0x4c270027, 0xab312a1f, + 0x53312b02, 0x98334721, 0x834007f4, 0x4cc07f4c, 0xf0551240, 0x4427ae1e, + 0xf4250c07, 0x83fe3a7e, 0xdcfc8ef2, 0x66ec800c, 0x400c0331, 0x557f0ce3, + 0x07911ef0, 0x278f1e0d, 0x450c0740, 0x1ef455f4, 0xa3fc4e85, 0x03cf07f3, + 0x15f005c8, 0x070f07f1, 0xfd347e1c, 0xdc03df07, 0x030f0718, 0x7e1d0704, + 0xf421fd26, 0xf3614290, 0xe02432d0, 0xe000dc44, 0xc400cc34, 0xf3311642, + 0x2027f471, 0x2127340e, 0xf2350c07, 0x83fdd27e, 0xc4fc8ef3, 0xf3311632, + 0x2027f471, 0x2127340e, 0xf2750d07, 0x83fdba7e, 0x51fc8ef3, 0x27f091f2, + 0xbe102730, 0x81ffeef5, 0x07f441f3, 0x03430bd1, 0xc5302742, 0xf3b530f4, + 0xf331f471, 0x342e2107, 0xf4b54127, 0x20cc3d07, 0x30f4c11a, 0x41032153, + 0x01533138, 0x00000fa3, 0x32078000, 0xc5ee20c8, 0x2fd430f4, 0x40000000, + 0x30f4c123, 0x0047091e, 0x00002fb4, 0x22474000, 0x00cc4123, 0x4721a3f2, + 0x002fd000, 0xef400000, 0x0730f4c5, 0x7f4c8342, 0x14404cc0, 0x43270f07, + 0xc5280c03, 0xf4a534f2, 0x83fd2e7e, 0xdcfc8ef3, 0x26ea802c, 0x402c0301, + 0x1e7f2ce3, 0x4f42e4e0, 0x39f093ff, 0x3d5e0058, 0x2b32e4ff, 0x2df093ff, + 0x315e0058, 0xa3fb4eff, 0x03bf07f3, 0x15f005b8, 0x070f07f1, 0xfc207e1b, + 0xcc03cf07, 0x030f0718, 0x7e1c0704, 0xf471fc12, 0x41c32f07, 0x2c031c07, + 0x750b0728, 0xfae47ef4, 0x83fcce7e, 0x4efb8ef3, 0x07f3a3fb, 0x05b803bf, + 0x07f115f0, 0x7e1b070f, 0xcf07fbe6, 0x0718cc03, 0x0704030f, 0xfbd87e1c, + 0x1c072f07, 0x07282c03, 0xfab07e0b, 0x83fc9a7e, 0x4efb8ef3, 0x27f123fc, + 0x27f40543, 0x270008c1, 0x270636c0, 0x07f40542, 0x7efc150f, 0xf103fc7b, + 0xc876fc8e, 0x4c27d007, 0x250d071e, 0xbefd35f4, 0x2300115b, 0xe001c801, + 0x3b1e4c27, 0x35402bd0, 0x1ef425fd, 0x000f40d3, 0x07800000, 0x1ed013d0, + 0x000f27d6, 0x1ecf0000, 0xa3fc4ec6, 0x03cf07f2, 0x15f005c8, 0x070f07f1, + 0xfb5c7e1c, 0xdc03df07, 0x030f0718, 0x7e1d0704, 0xf421fb4e, 0x611042d0, + 0x074290f4, 0x7e1d070c, 0xf283f9c3, 0x0127fc8e, 0xfe4ef91e, 0x1f07f163, + 0x1403f005, 0x277e0f07, 0x44f411fb, 0x43002742, 0xd0fe8ef1, 0x4440f842, + 0x40c8f431, 0x1f4c88f1, 0x47c6f421, 0x00000f27, 0xf1438000, 0xf041fe8e, + 0x4c13f321, 0xc6045b1e, 0x0013d63f, 0xfe8ef143, 0xffff0f27, 0xf1437fff, + 0xfe4efe8e, 0xf115f2a3, 0xf0051f07, 0x0f071803, 0x07fad57e, 0x031f070f, + 0x181c0304, 0x21fac97e, 0x614290f4, 0x300027f4, 0x8ef28342, 0x830127fe, + 0x4efe8ef2, 0x07f2a3fc, 0x05c803cf, 0x07f115f0, 0x7e1c070f, 0xdf07faa2, + 0x0718dc03, 0x0704030f, 0xfa947e1d, 0x42d0f421, 0x90f46110, 0x070c0742, + 0xf9097e1d, 0xfc8ef283, 0xf91e0127, 0xf2a3fc4e, 0xc803cf07, 0xf115f005, + 0x1c070f07, 0x07fa697e, 0x18dc03df, 0x04030f07, 0x5b7e1d07, 0xd0f421fa, + 0xf4611042, 0x0c074290, 0xd07e1d07, 0x8ef283f8, 0x1e0127fc, 0xa3fc4ef9, + 0x03cf07f2, 0x15f005c8, 0x070f07f1, 0xfa307e1c, 0xdc03df07, 0x030f0718, + 0x7e1d0704, 0xf421fa22, 0x611042d0, 0x074290f4, 0x7e1d070c, 0xf283f897, + 0x00a7fc8e, 0xfc4ef91e, 0xcf07f2a3, 0xf005c803, 0x0f07f115, 0xf77e1c07, + 0x03df07f9, 0x0f0718dc, 0x1d070403, 0x21f9e97e, 0x1042d0f4, 0x4290f461, + 0x1d070c07, 0x83f85e7e, 0xa7fc8ef2, 0x4ef91e00, 0x07f2a3fc, 0x05c803cf, + 0x07f115f0, 0x7e1c070f, 0xdf07f9be, 0x0718dc03, 0x0704030f, 0xf9b07e1d, + 0x42d0f421, 0x90f46110, 0x070c0742, 0xf8257e1d, 0xfc8ef283, 0xf91e0127, + 0xf123fd4e, 0x0676d007, 0xf4054227, 0x40270f07, 0x547ef415, 0x8ef103fa, + 0x274327fd, 0xf4051e3c, 0xf035f325, 0x000f36be, 0x00c80123, 0xdd0fc61c, + 0x2b1e4c27, 0x25d03b40, 0x270f07f4, 0x15fd3540, 0xfa257ef4, 0xfd8ef103, + 0x20132007, 0x423b4127, 0x4d8b4123, 0x46363027, 0x4c27d25b, 0x2b3dab1e, + 0x25f33540, 0x27a61ef4, 0x4eee1e31, 0xd00401fd, 0x13011342, 0x44c032b0, + 0xa434205d, 0x4832c042, 0x45c61411, 0x01071127, 0x3284fd8e, 0x42c60411, + 0x010710a7, 0x0311fd8e, 0x344e1411, 0x10a73106, 0x0221f11e, 0x42da1421, + 0x1524daf4, 0x0e410d31, 0x11411031, 0xcee61eca, 0xe12a141e, 0x0d42e16e, + 0xa7c23fd6, 0x27cc1e10, 0x8e010710, 0xebd0c2fd, 0x1ecc3fd6, 0xb534c4b0, + 0x04111111, 0xa71e142b, 0xf1a3f54e, 0x60275027, 0xf5350301, 0xc007f645, + 0xb2077107, 0x90278027, 0x012f32d0, 0x7d42f014, 0x4b34e001, 0x7544e002, + 0x2442c401, 0x071b32c4, 0x27400732, 0x03410125, 0x03310544, 0x11f2a834, + 0x077411c3, 0x15438bcb, 0x830c07b4, 0xe0f58ef1, 0x21014b32, 0x2514210e, + 0x310341fe, 0x15ae0702, 0x2bf205f3, 0x411d31a4, 0xe83a071e, 0xcc00dfa0, + 0xe84c40ac, 0x07017c31, 0x203c233a, 0x5027f355, 0x30e86027, 0x412701dc, + 0x133b1407, 0x02072127, 0x30a70a3b, 0x300b40a7, 0x3d8b414b, 0x34ab4e8b, + 0x512734c6, 0xf4516027, 0x01a440e8, 0x845b8e07, 0x9a5b9e07, 0xe607d507, + 0xe9abd8ab, 0xf321111e, 0x010643fa, 0x20271027, 0xf105f425, 0xc011f215, + 0x04ee7411, 0x0fe600db, 0xf30100cc, 0x1d07f411, 0x132b2e07, 0x20e8246b, + 0x402700f2, 0xf421b415, 0xb425b135, 0xbc31b245, 0x30a7bd41, 0x3c0b40a7, + 0x4fd44d4b, 0x10000000, 0xff4fe031, 0xc00fffff, 0x07b12100, 0x1f4c534c, + 0x34ab3d47, 0xb3452c47, 0xbc31b235, 0x1123bd41, 0x40a730a7, 0x3c0bb125, + 0x4fd04d4b, 0x10000000, 0x0543271e, 0x00dfd4b4, 0x2c200000, 0x0c07cb07, + 0xf58ef183, 0xaceca013, 0x5eff6d40, 0x4fc4ff1f, 0x0fffffff, 0xff3fd0b7, + 0xb0ffffff, 0xb4054327, 0x0000dfd0, 0x07d62000, 0x330d073c, 0x20271f0c, + 0x4d073153, 0x1c07be21, 0x415330ab, 0x04ab0207, 0xcb071183, 0x13abe103, + 0xf183b045, 0xb1350c07, 0xf58ebe25, 0x0c07c707, 0xf58ef183, 0xf211f101, + 0x2e6b1d2b, 0x01ff395e, 0x15f211f1, 0x4b1d0bb0, 0x21d2072e, 0x25c107f2, + 0x45bc35b2, 0xff735ebd, 0xe027d027, 0xf4ff015e, 0xffffff3f, 0x5eff64ff, + 0xfd21ff39, 0x40273027, 0x426b312b, 0xb2152127, 0xb335bd25, 0x075eb445, + 0xdb3fe6ff, 0x07f321fe, 0x202c232a, 0xf2553a0b, 0x0027f325, 0x20e81027, + 0x41270091, 0x623b6407, 0x52072127, 0xf2015a3b, 0x40a730a7, 0x464b350b, + 0xf211328b, 0x34ab428b, 0x012734c6, 0xf3511027, 0x115030c8, 0x35435bf4, + 0x31f311f4, 0x073a5bf4, 0xab40ab23, 0x05f34521, 0x5ef215f4, 0x4c27fe82, + 0x074a2b20, 0x3b8d071e, 0xab8a5b14, 0xfe525e81, 0x27203c27, 0x073a2b41, + 0x5e135b14, 0x44e4fe20, 0x1311fdd9, 0x34ee0411, 0xfc93fdd1, 0x5e005240, + 0x4c27fdc9, 0x01f21120, 0x3b4a2bf3, 0x073a5b24, 0xab230742, 0x1ef23524, + 0x203c27a1, 0x3a2b4127, 0x635b6407, 0x4eff6b5e, 0x010a11f8, 0x07ba0709, + 0x1fbc533a, 0x83143c53, 0x070307b1, 0x831b15ea, 0x2707ff0d, 0x078107c0, + 0xffee83d9, 0x0e160fff, 0x4eab4907, 0x42274516, 0xf88e1405, 0x3da74327, + 0x140503fd, 0x49071325, 0x4c531e07, 0x07183318, 0x3314ab09, 0x001fd408, + 0x1d100000, 0x2007e307, 0x2c534147, 0x4742ab1f, 0x07030730, 0xd0e12314, + 0x0000004f, 0x8e25e910, 0x81458035, 0x0dc0f88e, 0x072807ff, 0x534e0729, + 0x4833182c, 0x240742ab, 0x00002fa3, 0x39071000, 0x0d233833, 0x124503ff, + 0x10252327, 0x13351205, 0x4907f88e, 0x45164eab, 0x14054427, 0x4e07f88e, + 0x4e833027, 0xab080000, 0x27358634, 0x35140541, 0x8e8e458d, 0x1e1305f8, + 0xe3f54ef7, 0x075107f1, 0x0340071f, 0x050f0718, 0x7ef515f4, 0xf351ff23, + 0x1307f461, 0xffff1f83, 0x20273fff, 0x3c530487, 0xab12ab1e, 0xa3148630, + 0x31f02131, 0xbef241f1, 0xc3fff6d7, 0x4ef58ef1, 0x07f3a3f5, 0x10ac03af, + 0xb007c107, 0x0f071a07, 0xf225f335, 0xfc155307, 0xcf07fb05, 0x03feda7e, + 0x0f0724cc, 0x1c070803, 0x07fece7e, 0x7e1c070a, 0xf383fbab, 0xf64ef58e, + 0x90270401, 0x0d31a027, 0x08110e41, 0x00c942f0, 0x00ba44e0, 0x4d074240, + 0x47f64eab, 0x10270027, 0x31833807, 0x4c334307, 0x0730271f, 0xabc107b0, + 0x07c4abb3, 0x8e1c070b, 0xe80021f6, 0xfffc020f, 0xec00b1ff, 0x8504000d, + 0x6b3d0700, 0x0340273f, 0xc003ff0d, 0x2756803c, 0x40277f3c, 0xe44bd30b, + 0x0000efd0, 0x07162000, 0x073d072e, 0x1f2c334e, 0x32ab3153, 0xd3074153, + 0x0103e407, 0x4e072007, 0x1e070d07, 0x07ff2d83, 0x32071853, 0x53184c33, + 0x0704ab08, 0x143c33e1, 0xd0072027, 0xffffee83, 0x0702070f, 0xab0dab13, + 0xff765e1e, 0x07a94fd6, 0x003d833d, 0xc634ab01, 0x3c27a73f, 0x0b402780, + 0xd0e44bd3, 0x000000ef, 0x9c1eb320, 0x1f270027, 0x7ff00000, 0x07ff4b5e, + 0x004ea34e, 0xe4070800, 0xffffee83, 0x071e070f, 0x001fa30d, 0x5e7ff000, + 0x0f13ff30, 0xfffffc02, 0xba390cec, 0x23100700, 0x6027201c, 0x10e87027, + 0x412700b5, 0xc13bc407, 0xb2072127, 0x30a7b03b, 0x3b0b40a7, 0x3d8b4c4b, + 0x34ab4e8b, 0x612734c6, 0x10e87027, 0x9e07009f, 0xd607915b, 0xae07d9ab, + 0xa05b3d07, 0x3f6be707, 0x4027eaab, 0x44803cc0, 0x277f3c27, 0x4b3d0b40, + 0x3324074e, 0xc127182c, 0x00004f14, 0xc0271000, 0x08530307, 0x02ab1407, + 0x3c071853, 0x07ff3d83, 0xe1074307, 0x27144c33, 0x83d00730, 0x0fffffee, + 0x14070307, 0x1eab0dab, 0xd6fe975e, 0x3d07bb4f, 0x01003d83, 0x34ab4027, + 0x4e073cb6, 0x27184c33, 0x00ef14c1, 0x27100000, 0x530d07c0, 0xab1e0708, + 0x1e185304, 0x27c027b6, 0x1e102700, 0x203c27ae, 0x302b4127, 0xc35bc407, + 0x27ff475e, 0x402b204c, 0x9d073e07, 0x905b343b, 0x575e93ab, 0x803c27ff, + 0x4eff6a5e, 0x05f163f5, 0x150f07f0, 0x35f225f1, 0x7ef445f3, 0x5107fe0a, + 0xf58ef143, 0xf1e3f54e, 0xd803df07, 0x51074007, 0x1d070f07, 0xf515f405, + 0x31fcae7e, 0x963027f4, 0x07312744, 0x7ef3350d, 0x5107fdde, 0xf58ef1c3, + 0xf3e3f54e, 0x1f07c107, 0x1c03b007, 0x250f0710, 0x15f335f2, 0x7efb05fc, + 0xdf07fc7f, 0x0724dc03, 0x0708030f, 0xfc717e1d, 0x22d0f241, 0xf0f19116, + 0x51010912, 0xcbf3a1f4, 0x00f45543, 0x1f22c424, 0x0f0712ae, 0x7e100c03, + 0x5107fd8e, 0xf58ef3c3, 0x4e5af093, 0xfd807e00, 0xf3c35107, 0x14e0f58e, + 0x12c000df, 0xb1f1617f, 0x2bfc81f4, 0x34f8c114, 0xfb71f165, 0xea30f7c1, + 0xce0084c8, 0x4c277d8c, 0x2790273d, 0x000000af, 0x27502710, 0x38f4c560, + 0xe607d507, 0xd9ab4a07, 0x4c33eaab, 0xcec88a1f, 0x5d07548c, 0xb72b6e07, + 0x2907c86b, 0x24ab2153, 0x4c534b07, 0xab1c471f, 0x38f4c114, 0x41233a07, + 0x0b473153, 0x0738f4c5, 0x07a30792, 0xd6c107b0, 0x3507bf4f, 0x40273f6b, + 0x38803cc0, 0xf685f575, 0x07ff615e, 0x0344270f, 0xf445100c, 0x07fce97e, + 0x8ef3c351, 0xb3b7caf5, 0x7bc2a91e, 0x472b0782, 0x1f2c534c, 0x3b4742ab, + 0xb3071123, 0xf165c407, 0xd6ff6d5e, 0x3507c74f, 0x01003d83, 0x3fd634ab, + 0xab4007bc, 0xb54fc641, 0x27803c27, 0x4b350b40, 0xe3530746, 0x6407ff5c, + 0x0d07a31e, 0x07ff0a5e, 0x2730270f, 0x03202740, 0xf375100c, 0xf265f485, + 0x4efef65e, 0x07f5e3f5, 0x10ac03af, 0xc107b007, 0x1a070f07, 0xf225f335, + 0xfb05fc15, 0x07fb2a7e, 0x24dc03df, 0x08030f07, 0x1c7e1d07, 0x90f441fb, + 0xd0f39142, 0x44e02632, 0x34e001f3, 0x42c401e3, 0xa1f35118, 0x0e2027f4, + 0x07212734, 0x7ef2550a, 0x5107fc36, 0xf58ef5c3, 0x511832c4, 0x27f4a1f3, + 0x27340e20, 0xa50d0721, 0xfc1c7ef2, 0xf5c35107, 0xfbc1f58e, 0x27f77130, + 0x076027a0, 0x34fcc12b, 0x1a073607, 0xeabe0707, 0x5b07ffe2, 0xbc073027, + 0xc54cfbc5, 0xf0c550f3, 0x58f1c554, 0xc14cf0c1, 0x3a0750f1, 0x2707f881, + 0xffe2c8be, 0x9007c027, 0x2507a107, 0x08073607, 0xb6be1c07, 0xd007ffe2, + 0xd90be107, 0xb807ea4b, 0x00fdeaea, 0x00f5aeee, 0xf3c11027, 0x58f4c154, + 0xad079107, 0xa44b930b, 0x80277027, 0x00f9a4ea, 0xee58f4c1, 0xc1012c4a, + 0xf2c150f3, 0x070b074c, 0xbebe071c, 0xb1ffe275, 0x27f461f3, 0x03430bc0, + 0xc5302744, 0xf3c540f4, 0x51f4a13c, 0x4bb00bf3, 0x4bb70bc1, 0x27342ec8, + 0x3cf4c541, 0x0000cfd0, 0xc13f2000, 0x4c0740fe, 0x4c331b07, 0x0711531f, + 0xab0a072c, 0x33215314, 0xe1031f0c, 0x0715b1d8, 0x534a0739, 0xab415331, + 0x07a40730, 0x00afa393, 0x07800000, 0xd4c207b1, 0x0000002f, 0xfec5c920, + 0x00cfd440, 0x31100000, 0x0740fec1, 0x1f4c5349, 0x1a472b07, 0x2c5314ab, + 0xab4c471f, 0x473b4742, 0x07b30709, 0xc8e123c4, 0x900759a0, 0xcfd0a107, + 0x10000000, 0x40fec5d7, 0x3f6b3b07, 0x3cc04027, 0x0f074980, 0x0c034327, + 0x44fbc538, 0xc548fcc5, 0xcb7e38f4, 0xc35107fa, 0xe2f58ef5, 0x27ff0b9d, + 0x54f3c110, 0x0758f4c1, 0x0bad0791, 0x27a44b93, 0xe2812770, 0x27ff0b4a, + 0x0b402731, 0x5e844b73, 0x31a3ff07, 0xc407b307, 0x4fd6a11e, 0x833b07b6, + 0xab01003d, 0xab3fd634, 0x4aab4907, 0x27a44fc6, 0x4027803c, 0x4c4b3b0b, + 0xbce3b307, 0x1ec407ff, 0xd439e292, 0xe4c11efe, 0x93fe3a42, 0x004b37f0, + 0xe4fe265e, 0x93fe1432, 0x004b2bf0, 0x4efe1a5e, 0x07f4e3f5, 0x10ac03af, + 0xb007c107, 0x0f071a07, 0xf225f335, 0xfb05fc15, 0xf47ecf07, 0x24cc03f8, + 0x08030f07, 0xe87e1c07, 0x07f4a1f8, 0x0741c32f, 0x382c031c, 0xf4a50a07, + 0x7ef62f7e, 0x5107fa12, 0xf58ef4c3, 0xf4e3f54e, 0xac03af07, 0x07c10710, + 0x071a07b0, 0x25f3350f, 0x05fc15f2, 0x7ecf07fb, 0xcc03f8af, 0x030f0724, + 0x7e1c0708, 0x2f07f8a3, 0x2c031c07, 0x7e0a0738, 0xd37ef5f0, 0xc35107f9, + 0x4ef58ef4, 0x27f163fb, 0x27f40543, 0x270008b1, 0x270736b0, 0x07f40542, + 0x7efb150f, 0x3007f9b2, 0x03074107, 0xf1431407, 0xbb36fb8e, 0x04074007, + 0xc407d027, 0x253c4c27, 0x45f035f4, 0x0425befd, 0x03100700, 0x11c81d1c, + 0xc80323cf, 0x4c072300, 0xf445403b, 0x3c274c07, 0x2b413b3c, 0x25f43531, + 0xc0b51ef3, 0x0000000f, 0x40071a80, 0xbf1e4013, 0x2b204c27, 0x072c0741, + 0x3b245b3d, 0x4532ab31, 0x27d21ef3, 0x004f2730, 0x1ec1e000, 0xa3f54e96, + 0x03df07f3, 0x400710dc, 0x0f075107, 0xf4051d07, 0xf335c307, 0xf515f225, + 0xe47ebf07, 0x24bc03f7, 0x08030f07, 0xd87e1b07, 0xd0f441f7, 0xf4911042, + 0x0d074290, 0xac7e1b07, 0x8ef383f4, 0x1e0127f5, 0xe3f54ef9, 0x075107f1, + 0x0340071f, 0x050f0718, 0x7ef515f4, 0xf421f7ab, 0x00274244, 0xf58ef1c3, + 0x40f842d0, 0xc8f44144, 0x4c88f140, 0x46f4311f, 0x000f2749, 0xc3800000, + 0x27f58ef1, 0xe42b3cec, 0x4c234e07, 0x1c40c820, 0x0207f261, 0xf431045b, + 0x13ca4fc6, 0x8ef1c300, 0xff0f27f5, 0xc37fffff, 0x61f58ef1, 0x204c27f2, + 0x32074e2b, 0x4307343b, 0x0307f351, 0x04ab0e5b, 0xf54ed51e, 0x5107f3a3, + 0x40071f07, 0x07101c03, 0x07f4050f, 0x35c307b2, 0x15f225f3, 0xf7297ef5, + 0x1f070f07, 0x1c030803, 0xf71d7e24, 0x4290f441, 0x0027f491, 0xf3834230, + 0x0127f58e, 0xf58ef383, 0xf3a3f54e, 0xdc03df07, 0x07400710, 0x070f0751, + 0x07f4051d, 0x25f335c3, 0x07f515f2, 0xf6e97ebf, 0x0724bc03, 0x0708030f, + 0xf6dd7e1b, 0x42d0f441, 0x90f49110, 0x070d0742, 0xf3b17e1b, 0xf58ef383, + 0xf91e0127, 0xf3a3f54e, 0xdc03df07, 0x07400710, 0x070f0751, 0x07f4051d, + 0x25f335c3, 0x07f515f2, 0xf6a57ebf, 0x0724bc03, 0x0708030f, 0xf6997e1b, + 0x42d0f441, 0x90f49110, 0x070d0742, 0xf36d7e1b, 0xf58ef383, 0xf91e0127, + 0xf3a3f54e, 0xdc03df07, 0x07400710, 0x070f0751, 0x07f4051d, 0x25f335c3, + 0x07f515f2, 0xf6617ebf, 0x0724bc03, 0x0708030f, 0xf6557e1b, 0x42d0f441, + 0x90f49110, 0x070d0742, 0xf3297e1b, 0xf58ef383, 0xf91e00a7, 0xf3a3f54e, + 0xdc03df07, 0x07400710, 0x070f0751, 0x07f4051d, 0x25f335c3, 0x07f515f2, + 0xf61d7ebf, 0x0724bc03, 0x0708030f, 0xf6117e1b, 0x42d0f441, 0x90f49110, + 0x070d0742, 0xf2e57e1b, 0xf58ef383, 0xf91e00a7, 0xf3a3f54e, 0xdc03df07, + 0x07400710, 0x070f0751, 0x07f4051d, 0x25f335c3, 0x07f515f2, 0xf5d97ebf, + 0x0724bc03, 0x0708030f, 0xf5cd7e1b, 0x42d0f441, 0x90f49110, 0x070d0742, + 0xf2a17e1b, 0xf58ef383, 0xf91e0127, 0xf163f54e, 0xb027a027, 0x90278027, + 0x422706b6, 0x0f07f405, 0xf4154027, 0x07f6d97e, 0x8ef14351, 0x27d027f5, + 0x3c3c2743, 0xf405c007, 0xf035f325, 0x54befd45, 0x10070001, 0xc81d1c03, + 0x1fc62c10, 0xe80323d2, 0x07008200, 0x45403b4c, 0x3b4c07f4, 0x3c3c2741, + 0x312bf435, 0x40270f07, 0xf415f325, 0x07f6917e, 0x8ef14351, 0x13e107f5, + 0x230e07e0, 0x6027200c, 0x00c87027, 0x07412742, 0x27b03bb4, 0x3ba20721, + 0xa730a7ae, 0x4b3a0b40, 0x8b3c8b4b, 0xc634ab4d, 0x27612734, 0x4000c870, + 0x805b8d07, 0x9e5b9d07, 0x2c274707, 0xab36073c, 0xab212b49, 0x45f33538, + 0x5ef225f4, 0x3c27ff5a, 0x2b412720, 0x5bb4073e, 0x27b91eb3, 0x412b204c, + 0x3d072c07, 0x313b245b, 0xf34532ab, 0x27ff745e, 0x4e2b204c, 0x8c073d07, + 0x8e5b343b, 0xb51e83ab, 0x0088fe4e, 0x1013100c, 0xfe0e2127, 0x00004e9e, + 0x10680013, 0x44be2127, 0x00130000, 0x1013fe8e, 0xfd4ef31e, 0x271200c8, + 0x1410c8d0, 0x2cbe2027, 0xd4860000, 0xfd8e0013, 0xd1270013, 0x13ee10cc, + 0xd6412710, 0x1ed407d4, 0x074027e4, 0x27de1ed4, 0x00099e21, 0x9e202700, + 0x4e000003, 0x3601c2fe, 0x273310c8, 0x203c2741, 0x44471147, 0xf02101c2, + 0x302707f3, 0xfe8e26e6, 0x27ee10cc, 0x2b012a30, 0x5334ab01, 0xd6115341, + 0x0721b642, 0x66fe8e03, 0x1e302740, 0x274127e9, 0xd4e31e30, 0x0100000e, + 0x000dd417, 0x30273a01, 0x00f9035b, 0x0001acc8, 0x1b204c27, 0xb0fe0b04, + 0x0000000f, 0x183c2701, 0x00f9035b, 0x0001acc8, 0x041b4827, 0x4c27fe0b, + 0x5b340710, 0xc800f903, 0x1b0001ac, 0x27fe0b04, 0xf9035b38, 0x01acc800, + 0x184c2700, 0xfe0b041b, 0x4fff1ea7, 0x9b1401fd, 0x4103122f, 0x13c14433, + 0x2e24ab38, 0x0b002732, 0xc5f3abfe, 0x14c13812, 0xf842ce38, 0x0127f3eb, + 0xfe4efe0b, 0x0576d33e, 0x0e200c27, 0x00059efe, 0x4efe8e00, 0xbeb007fb, + 0x07fead43, 0x931007d0, 0x0046b7f0, 0xffcb56be, 0xc027d746, 0xd2010b1e, + 0x48bec103, 0xd403ffcb, 0xf0931c07, 0xda0046a9, 0xfb8eedcb, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x42746e49, 0x0a3a6675, 0x6c202000, 0x5f32676f, 0x65676170, 0x7a69735f, + 0x20202065, 0x5f6d756e, 0x65676170, 0x66282073, 0x29656572, 0x2020000a, + 0x30252020, 0x20206432, 0x20202020, 0x20202020, 0x35252020, 0x28202064, + 0x62206425, 0x73657479, 0x55000a29, 0x6f6c626e, 0x6e696b63, 0x65722067, + 0x657a6973, 0x25203a73, 0x54000a64, 0x6c61746f, 0x6c6c6120, 0x7461636f, + 0x25206465, 0x28206438, 0x64657375, 0x2c642520, 0x666e7520, 0x61656572, + 0x20656c62, 0x202c6425, 0x65657266, 0x29642520, 0x656e000a, 0x705f7478, + 0x745f6369, 0x61705f6f, 0x20657372, 0x20202020, 0x000a7525, 0x6d726946, + 0x65726177, 0x72657620, 0x6e6f6973, 0x656f6420, 0x6f6e2073, 0x616d2074, + 0x20686374, 0x64726168, 0x65726177, 0x46000a21, 0x776d7269, 0x20657261, + 0x706d6f63, 0x64656c69, 0x726f6620, 0x72657620, 0x6e6f6973, 0x25783020, + 0x0a783830, 0x72614800, 0x72617764, 0x65722065, 0x74726f70, 0x20202073, + 0x76202020, 0x69737265, 0x30206e6f, 0x38302578, 0x46000a78, 0x776d7269, + 0x20657261, 0x73726576, 0x206e6f69, 0x73656f64, 0x746f6e20, 0x74616d20, + 0x68206863, 0x77647261, 0x20657261, 0x73726576, 0x006e6f69, 0x64726168, + 0x65726177, 0x656f6420, 0x6f6e2073, 0x75732074, 0x726f7070, 0x6e652074, + 0x69646f63, 0x6800676e, 0x77647261, 0x20657261, 0x73656f64, 0x746f6e20, + 0x70757320, 0x74726f70, 0x76656820, 0x454c0063, 0x5254435f, 0x78253a4c, + 0x434e202c, 0x5345524f, 0x2c78253a, 0x43494c20, 0x524f435f, 0x554e5f45, + 0x64253a4d, 0x5748202c, 0x524f435f, 0x554e5f45, 0x64253a4d, 0x69000a20, + 0x6c61766e, 0x68206469, 0x77647261, 0x20657261, 0x65726f63, 0x6d756e20, + 0x73726562, 0x756e203a, 0x7265626d, 0x20666f20, 0x64726168, 0x20657261, + 0x65726f63, 0x20736920, 0x656c6c69, 0x006c6167, 0x65666552, 0x636e6572, + 0x69702065, 0x72757463, 0x61742065, 0x0a656c62, 0x20646900, 0x73203a20, + 0x75206174, 0x72206573, 0x70206665, 0x70203179, 0x63203279, 0x6620706d, + 0x6d20746d, 0x705f6962, 0x20207274, 0x5f69626d, 0x65676170, 0x69732873, + 0x2029657a, 0x72747020, 0x706f7420, 0x746f623a, 0x3325000a, 0x203a2064, + 0x20643325, 0x20643325, 0x20643325, 0x20643325, 0x20643325, 0x20643325, + 0x20643325, 0x20207025, 0x64362520, 0x29642528, 0x25202020, 0x70253a70, + 0x694c000a, 0x70206576, 0x75746369, 0x74206572, 0x656c6261, 0x754e000a, + 0x203a206d, 0x20206425, 0x646c4f20, 0x20747365, 0x000a6425, 0x20786469, + 0x7473203a, 0x73752061, 0x69702065, 0x20646963, 0x69666572, 0x696c2064, + 0x7973656e, 0x7220636e, 0x20206665, 0x6576696c, 0x73666572, 0x20202020, + 0x66657220, 0x63697032, 0x3325000a, 0x203a2064, 0x20643325, 0x20643325, + 0x33252020, 0x20202064, 0x20643325, 0x36252020, 0x33252064, 0x30202064, + 0x38302578, 0x33252078, 0x33252064, 0x33252064, 0x33252064, 0x33252064, + 0x33252064, 0x33252064, 0x33252064, 0x33252064, 0x33252064, 0x33252064, + 0x33252064, 0x33252064, 0x33252064, 0x33252064, 0x33252064, 0x50000a64, + 0x61766972, 0x72206574, 0x61626665, 0x203a6b6e, 0x6f6c6f63, 0x78302072, + 0x6d207825, 0x625f7861, 0x65666675, 0x25207372, 0x626d2075, 0x75252077, + 0x68626d20, 0x20752520, 0x65736162, 0x6464615f, 0x78302072, 0x78383025, + 0x2020000a, 0x78646920, 0x61747320, 0x66657220, 0x6464615f, 0x20202072, + 0x2077626d, 0x68626d20, 0x2020000a, 0x75332520, 0x75332520, 0x25783020, + 0x0a783830, 0x6e652800, 0x666f2064, 0x69727020, 0x65746176, 0x66657220, + 0x6b6e6162, 0x6d756420, 0x000a2970, 0x45444956, 0x5746204f, 0x41545320, + 0x44204554, 0x20504d55, 0x6f636e45, 0x3d726564, 0x43564548, 0x6573000a, + 0x706f2d74, 0x72702074, 0x6c69666f, 0x3a676e69, 0x67726120, 0x73756d20, + 0x65622074, 0x6f203020, 0x00312072, 0x2d746573, 0x2074706f, 0x61637365, + 0x676e6970, 0x7261203a, 0x756d2067, 0x62207473, 0x20302065, 0x3120726f, + 0x74657300, 0x74706f2d, 0x6c616e20, 0x6f662075, 0x74616d72, 0x6e55203a, + 0x776f6e6b, 0x6f66206e, 0x74616d72, 0x74657300, 0x74706f2d, 0x6c616e20, + 0x6f662075, 0x74616d72, 0x6e55203a, 0x70707573, 0x6574726f, 0x6f662064, + 0x74616d72, 0x74657300, 0x74706f2d, 0x70786520, 0x2065736f, 0x20666572, + 0x6d617266, 0x203a7365, 0x20677261, 0x7473756d, 0x20656220, 0x726f2030, + 0x73003120, 0x6f2d7465, 0x65207470, 0x736f7078, 0x65722065, 0x72662066, + 0x73656d61, 0x6f4e203a, 0x75732074, 0x726f7070, 0x20646574, 0x20726f66, + 0x746f7270, 0x65746365, 0x65732064, 0x6f697373, 0x7300736e, 0x6f2d7465, + 0x64207470, 0x65666669, 0x746e6572, 0x72747320, 0x206d6165, 0x64746962, + 0x68747065, 0x6f6e2073, 0x75732074, 0x726f7070, 0x00646574, 0x2d746573, + 0x2074706f, 0x6f636e65, 0x73206564, 0x61657274, 0x6962206d, 0x70656474, + 0x203a6874, 0x75736e75, 0x726f7070, 0x20646574, 0x756c6176, 0x65730065, + 0x706f2d74, 0x68632074, 0x616d6f72, 0x726f665f, 0x3b74616d, 0x72686320, + 0x20616d6f, 0x6d726f66, 0x6e207461, 0x7320746f, 0x6f707075, 0x64657472, + 0x6573002e, 0x706f2d74, 0x626d2074, 0x6f666e69, 0x74756f20, 0x3a747570, + 0x67726120, 0x73756d20, 0x65622074, 0x6f203020, 0x00312072, 0x2d746573, + 0x2074706f, 0x7320766d, 0x63726165, 0x61722068, 0x3a65676e, 0x766e6920, + 0x64696c61, 0x61207820, 0x73006772, 0x6f2d7465, 0x6d207470, 0x65732076, + 0x68637261, 0x6e617220, 0x203a6567, 0x61766e69, 0x2064696c, 0x72612079, + 0x65730067, 0x706f2d74, 0x626d2074, 0x70797420, 0x49203a65, 0x6c61766e, + 0x69206469, 0x6172746e, 0x6c657320, 0x69746365, 0x73006e6f, 0x6f2d7465, + 0x6d207470, 0x79742062, 0x203a6570, 0x61766e49, 0x2064696c, 0x65746e69, + 0x65732072, 0x7463656c, 0x006e6f69, 0x2d746573, 0x2074706f, 0x20424752, + 0x59206f74, 0x203a5655, 0x75736e75, 0x726f7070, 0x20646574, 0x65646f6d, + 0x74657300, 0x74706f2d, 0x736f6820, 0x72702074, 0x636f746f, 0x70206c6f, + 0x746e6972, 0x61203a73, 0x6d206772, 0x20747375, 0x30206562, 0x20726f20, + 0x65730031, 0x706f2d74, 0x4f472074, 0x79742050, 0x203a6570, 0x75736e55, + 0x726f7070, 0x20646574, 0x65707974, 0x74657300, 0x74706f2d, 0x504f4720, + 0x70797420, 0x69203a65, 0x6c61766e, 0x73006469, 0x6f2d7465, 0x47207470, + 0x7420504f, 0x3a657079, 0x766e6920, 0x64696c61, 0x504f4720, 0x7a697320, + 0x65530065, 0x6e69646e, 0x4f4a2067, 0x45445f42, 0x55455551, 0x000a4445, + 0x6e6f7257, 0x69732067, 0x6f20657a, 0x75622066, 0x72656666, 0x7261705f, + 0x665f6d61, 0x656d6172, 0x7461725f, 0x65730065, 0x706f2d74, 0x72662074, + 0x20656d61, 0x65746172, 0x6e75203a, 0x70707573, 0x6574726f, 0x72612064, + 0x72570067, 0x20676e6f, 0x657a6973, 0x20666f20, 0x66667562, 0x70207265, + 0x6d617261, 0x74617220, 0x6f635f65, 0x6f72746e, 0x6c42006c, 0x206b636f, + 0x666e6f63, 0x72756769, 0x6f697461, 0x5228206e, 0x6f20494f, 0x6f522072, + 0x63202977, 0x6f6e6e61, 0x65732074, 0x50512074, 0x676f7420, 0x65687465, + 0x69772072, 0x72206874, 0x20657461, 0x746e6f63, 0x006c6f72, 0x2d746573, + 0x2074706f, 0x20746962, 0x65746172, 0x6f66203a, 0x79742072, 0x4f206570, + 0x202c4646, 0x67726174, 0x72207465, 0x20657461, 0x756f6873, 0x6220646c, + 0x657a2065, 0x73006f72, 0x6f2d7465, 0x62207470, 0x72207469, 0x3a657461, + 0x736e7520, 0x6f707075, 0x64657472, 0x78616d20, 0x74696220, 0x65746172, + 0x74657300, 0x74706f2d, 0x74696220, 0x74617220, 0x75203a65, 0x7075736e, + 0x74726f70, 0x74206465, 0x65677261, 0x61722074, 0x57006574, 0x676e6f72, + 0x7a697320, 0x666f2065, 0x66756220, 0x20726566, 0x61726170, 0x6f66206d, + 0x61722072, 0x63206574, 0x72746e6f, 0x48206c6f, 0x62204452, 0x65666675, + 0x69732072, 0x5500657a, 0x7075736e, 0x74726f70, 0x48206465, 0x62204452, + 0x65666675, 0x69732072, 0x202c657a, 0x7473756d, 0x20656220, 0x31203d3e, + 0x636e4500, 0x2065646f, 0x61726170, 0x7266206d, 0x20656d61, 0x6b636170, + 0x3b676e69, 0x7a697320, 0x6f742065, 0x6d73206f, 0x2e6c6c61, 0x636e4500, + 0x2065646f, 0x61726170, 0x7266206d, 0x20656d61, 0x6b636170, 0x3b676e69, + 0x6e616320, 0x6c6e6f20, 0x65622079, 0x74657320, 0x726f6620, 0x65687420, + 0x72696620, 0x66207473, 0x656d6172, 0x6e45002e, 0x65646f63, 0x72617020, + 0x63206d61, 0x756f6c6f, 0x65642072, 0x69726373, 0x6f697470, 0x73203b6e, + 0x20657a69, 0x206f6f74, 0x6c616d73, 0x45002e6c, 0x646f636e, 0x61702065, + 0x206d6172, 0x72657375, 0x74616420, 0x65722061, 0x74736967, 0x64657265, + 0x6973203a, 0x7420657a, 0x73206f6f, 0x6c6c616d, 0x6e45002e, 0x65646f63, + 0x72617020, 0x67206d61, 0x7220706f, 0x74657365, 0x6f6e203a, 0x75732074, + 0x726f7070, 0x20646574, 0x20726f66, 0x72662d62, 0x73656d61, 0x6e45002e, + 0x65646f63, 0x72617020, 0x72206d61, 0x74657365, 0x706f6720, 0x6e796420, + 0x63696d61, 0x6973203a, 0x6920657a, 0x72772073, 0x2e676e6f, 0x636e4500, + 0x2065646f, 0x61726170, 0x6f67206d, 0x65722070, 0x20746573, 0x616e7964, + 0x6163696d, 0x3a796c6c, 0x746f6e20, 0x70757320, 0x74726f70, 0x66206465, + 0x6220726f, 0x6172662d, 0x2e73656d, 0x636e4500, 0x2065646f, 0x61726170, + 0x6e65206d, 0x74732063, 0x20737461, 0x6973203a, 0x6920657a, 0x72772073, + 0x2e676e6f, 0x636e4500, 0x2065646f, 0x61726170, 0x6572206d, 0x6e6f6967, + 0x73203a73, 0x20657a69, 0x206f6f74, 0x6c616d73, 0x45002e6c, 0x646f636e, + 0x61702065, 0x206d6172, 0x69676572, 0x3a736e6f, 0x6d756e20, 0x20726562, + 0x7220666f, 0x6f696765, 0x6320736e, 0x6f6e6e61, 0x78652074, 0x64656563, + 0x00363120, 0x6f636e45, 0x70206564, 0x6d617261, 0x67657220, 0x736e6f69, + 0x6163203a, 0x746f6e6e, 0x20656220, 0x64657375, 0x676f7420, 0x65687465, + 0x69772072, 0x72206874, 0x6220776f, 0x64657361, 0x6f6c6220, 0x63206b63, + 0x69666e6f, 0x61727567, 0x6e6f6974, 0x6e450073, 0x65646f63, 0x72617020, + 0x63206d61, 0x676e6168, 0x65722065, 0x6e617463, 0x73656c67, 0x6973203a, + 0x7420657a, 0x73206f6f, 0x6c6c616d, 0x6e45002e, 0x65646f63, 0x72617020, + 0x63206d61, 0x676e6168, 0x65722065, 0x6e617463, 0x73656c67, 0x756e203a, + 0x7265626d, 0x20666f20, 0x69676572, 0x20736e6f, 0x6e6e6163, 0x6520746f, + 0x65656378, 0x00322064, 0x6f636e45, 0x70206564, 0x6d617261, 0x61686320, + 0x2065676e, 0x74636572, 0x6c676e61, 0x203a7365, 0x61766e69, 0x2064696c, + 0x726f6f63, 0x616e6964, 0x00736574, 0x5f45564d, 0x46465542, 0x475f5245, + 0x52454e45, 0x545f4c41, 0x5f455059, 0x434f4c42, 0x4f435f4b, 0x4749464e, + 0x6d203a53, 0x61737365, 0x73206567, 0x20657a69, 0x206f6f74, 0x6c616d73, + 0x4d002e6c, 0x425f4556, 0x45464655, 0x45475f52, 0x4152454e, 0x59545f4c, + 0x425f4550, 0x4b434f4c, 0x4e4f435f, 0x53474946, 0x776f7220, 0x6e752073, + 0x706d6f63, 0x6163203a, 0x746f6e6e, 0x20656220, 0x64657375, 0x676f7420, + 0x65687465, 0x69772072, 0x72206874, 0x6f696765, 0x666f2d6e, 0x746e692d, + 0x73657265, 0x564d0074, 0x55425f45, 0x52454646, 0x4e45475f, 0x4c415245, + 0x5059545f, 0x4c425f45, 0x5f4b434f, 0x464e4f43, 0x3a534749, 0x736e7520, + 0x6f707075, 0x64657472, 0x6f6c6220, 0x63206b63, 0x69666e6f, 0x79742067, + 0x4d006570, 0x425f4556, 0x45464655, 0x45475f52, 0x4152454e, 0x73203a4c, + 0x20657a69, 0x206f6f74, 0x6c616d73, 0x6f74206c, 0x61657220, 0x65682064, + 0x72656461, 0x564d002e, 0x55425f45, 0x52454646, 0x4e45475f, 0x4c415245, + 0x7562203a, 0x72656666, 0x696f7020, 0x7265746e, 0x20736920, 0x4c4c554e, + 0x564d002e, 0x55425f45, 0x52454646, 0x4e45475f, 0x4c415245, 0x7562203a, + 0x72656666, 0x7a697320, 0x73692065, 0x72657a20, 0x4d002e6f, 0x425f4556, + 0x45464655, 0x45475f52, 0x4152454e, 0x63203a4c, 0x69666e6f, 0x69732067, + 0x6920657a, 0x657a2073, 0x002e6f72, 0x5f45564d, 0x46465542, 0x475f5245, + 0x52454e45, 0x545f4c41, 0x5f455059, 0x434f4c42, 0x4f435f4b, 0x4749464e, + 0x61203a53, 0x66756220, 0x20726566, 0x20736168, 0x65726c61, 0x20796461, + 0x6e656562, 0x6e657320, 0x6f662074, 0x68742072, 0x70207369, 0x75746369, + 0x002e6572, 0x5f45564d, 0x46465542, 0x475f5245, 0x52454e45, 0x203a4c41, + 0x75736e75, 0x726f7070, 0x20646574, 0x65707974, 0x206e6920, 0x5f45564d, + 0x4d4d4f43, 0x4655425f, 0x514e495f, 0x4444415f, 0x4d002e52, 0x425f4556, + 0x45464655, 0x45475f52, 0x4152454e, 0x59545f4c, 0x425f4550, 0x4b434f4c, + 0x4e4f435f, 0x53474946, 0x776f7220, 0x6e752073, 0x706d6f63, 0x5f6e203a, + 0x736c6f63, 0x656f6420, 0x6f6e2073, 0x616d2074, 0x20686374, 0x20656874, + 0x74636970, 0x20657275, 0x74646977, 0x564d0068, 0x55425f45, 0x52454646, + 0x4e45475f, 0x4c415245, 0x5059545f, 0x4c425f45, 0x5f4b434f, 0x464e4f43, + 0x20534749, 0x73776f72, 0x636e7520, 0x3a706d6f, 0x725f6e20, 0x2073776f, + 0x73656f64, 0x746f6e20, 0x74616d20, 0x74206863, 0x70206568, 0x75746369, + 0x68206572, 0x68676965, 0x72570074, 0x20676e6f, 0x657a6973, 0x20666f20, + 0x66667562, 0x70207265, 0x6d617261, 0x74617220, 0x6f632065, 0x6f72746e, + 0x7071206c, 0x6f6c4200, 0x63206b63, 0x69666e6f, 0x61727567, 0x6e6f6974, + 0x4f522820, 0x726f2049, 0x776f5220, 0x61632029, 0x746f6e6e, 0x74657320, + 0x20505120, 0x65676f74, 0x72656874, 0x74697720, 0x50512068, 0x502c4920, + 0x7300422c, 0x6f2d7465, 0x71207470, 0x55203a70, 0x6f6e6b6e, 0x66206e77, + 0x656d6172, 0x70797420, 0x72570065, 0x20676e6f, 0x657a6973, 0x20666f20, + 0x66667562, 0x70207265, 0x6d617261, 0x74617220, 0x6f635f65, 0x6f72746e, + 0x61705f6c, 0x206d6172, 0x00294928, 0x636f6c42, 0x6f63206b, 0x6769666e, + 0x74617275, 0x206e6f69, 0x494f5228, 0x20726f20, 0x29776f52, 0x6e616320, + 0x20746f6e, 0x20746573, 0x74205051, 0x7465676f, 0x20726568, 0x68746977, + 0x74617220, 0x6f632065, 0x6f72746e, 0x6170206c, 0x736d6172, 0x74657300, + 0x74706f2d, 0x74617220, 0x6f632065, 0x6f72746e, 0x6170206c, 0x3a6d6172, + 0x5f707120, 0x206e696d, 0x6e6e6163, 0x6520746f, 0x65656378, 0x70712064, + 0x78616d5f, 0x29492820, 0x6f725700, 0x7320676e, 0x20657a69, 0x6220666f, + 0x65666675, 0x61702072, 0x206d6172, 0x65746172, 0x6e6f635f, 0x6c6f7274, + 0x7261705f, 0x73006d61, 0x6f2d7465, 0x72207470, 0x20657461, 0x746e6f63, + 0x206c6f72, 0x61726170, 0x71203a6d, 0x696d5f70, 0x6163206e, 0x746f6e6e, + 0x63786520, 0x20646565, 0x6d5f7071, 0x45007861, 0x646f636e, 0x61702065, + 0x206d6172, 0x203b7071, 0x657a6973, 0x6f6f7420, 0x616d7320, 0x002e6c6c, + 0x6f636e45, 0x70206564, 0x6d617261, 0x72706520, 0x7266695f, 0x5f656d61, + 0x62616e65, 0x7620656c, 0x65756c61, 0x73756d20, 0x65622074, 0x6f203020, + 0x2e312072, 0x45564d00, 0x4655425f, 0x5f524546, 0x41524150, 0x6973204d, + 0x7420657a, 0x73206f6f, 0x6c6c616d, 0x6e55002e, 0x70707573, 0x6574726f, + 0x6e652064, 0x65646f63, 0x72617020, 0x69206d61, 0x564d206e, 0x4f435f45, + 0x425f4d4d, 0x495f4655, 0x415f514e, 0x2e524444, 0x206f6400, 0x20746f6e, + 0x62616e65, 0x5320656c, 0x77204f41, 0x206e6568, 0x464e4f43, 0x414d4749, + 0x455f4b53, 0x69204951, 0x61662073, 0x0065736c, 0x206f6f74, 0x6c616d73, + 0x5248206c, 0x75622044, 0x72656666, 0x7a697320, 0x2a2a0065, 0x25202a2a, + 0x2a2a2073, 0x50202a2a, 0x30203a43, 0x20782578, 0x52532020, 0x7830203a, + 0x20207825, 0x52414620, 0x7830203a, 0x000a7825, 0x255b5220, 0x205d6432, + 0x7830203d, 0x78383025, 0x6d20000a, 0x65747361, 0x25232072, 0x73252064, + 0x6f626120, 0x64657472, 0x2020000a, 0x55414620, 0x203a544c, 0x78257830, + 0x2020000a, 0x44414620, 0x203a5244, 0x78257830, 0x4157000a, 0x44484354, + 0x6920474f, 0x52007172, 0x20435341, 0x524f4241, 0x4d4d0054, 0x42412055, + 0x0054524f, 0x2a2a2a2a, 0x53415220, 0x20642543, 0x524f4241, 0x2a2a2054, + 0x000a2a2a, 0x43502020, 0x20202020, 0x7830203d, 0x78383025, 0x2020000a, + 0x20205253, 0x203d2020, 0x30257830, 0x000a7838, 0x41462020, 0x20202052, + 0x7830203d, 0x78383025, 0x2020000a, 0x32255b52, 0x3d205d64, 0x25783020, + 0x0a783830, 0x74615700, 0x6f646863, 0x79440067, 0x696d616e, 0x68632063, + 0x65676e61, 0x206e6920, 0x20656874, 0x626d756e, 0x6f207265, 0x6f632066, + 0x20736572, 0x6e207369, 0x7320746f, 0x6f707075, 0x64657472, 0x74657300, + 0x74706f2d, 0x66207020, 0x656d6172, 0x49203a73, 0x6c61766e, 0x61206469, + 0x6d756772, 0x00746e65, 0x2d746573, 0x2074706f, 0x72462050, 0x73656d61, + 0x6e69203a, 0x696c6176, 0x4f472064, 0x69732050, 0x7300657a, 0x6f2d7465, + 0x42207470, 0x61724620, 0x3a73656d, 0x766e6920, 0x64696c61, 0x504f4720, + 0x7a697320, 0x65730065, 0x706f2d74, 0x20422074, 0x6d617266, 0x203a7365, + 0x20746f4e, 0x70707573, 0x6574726f, 0x6f640064, 0x746f6e20, 0x70757320, + 0x74726f70, 0x5f454d20, 0x5f454d46, 0x49425543, 0x45525f43, 0x6e752053, + 0x20726564, 0x464e4f43, 0x414d4749, 0x455f4b53, 0x69204951, 0x61662073, + 0x0065736c, 0x69206f4e, 0x7562746e, 0x70732066, 0x20656361, 0x20726f66, + 0x7473616d, 0x73207265, 0x20657661, 0x61657261, 0x6e655300, 0x676e6964, + 0x49575320, 0x45484354, 0x4e495f44, 0x6553000a, 0x6e69646e, 0x52502067, + 0x5345434f, 0x0a444553, 0x63655200, 0x65766965, 0x57532064, 0x48435449, + 0x6552000a, 0x76696563, 0x4a206465, 0x6620424f, 0x7367616c, 0x2075253d, + 0x6d617266, 0x253d7365, 0x6f632075, 0x3d736572, 0x000a7525, 0x20626f4a, + 0x7373656d, 0x3a656761, 0x6d754e20, 0x20726562, 0x6320666f, 0x7365726f, + 0x6e616320, 0x746f6e20, 0x20656220, 0x6f72657a, 0x6f4a002e, 0x656d2062, + 0x67617373, 0x4e203a65, 0x65626d75, 0x666f2072, 0x726f6320, 0x74207365, + 0x6c206f6f, 0x65677261, 0x6f4a002e, 0x656d2062, 0x67617373, 0x55203a65, + 0x7075736e, 0x74726f70, 0x66206465, 0x7367616c, 0x74657320, 0x6f4a002e, + 0x656d2062, 0x67617373, 0x4e203a65, 0x65626d75, 0x666f2072, 0x61726620, + 0x2073656d, 0x206f6f74, 0x6772616c, 0x6e002e65, 0x7073206f, 0x20656361, + 0x6a206e69, 0x7120626f, 0x65756575, 0x54455300, 0x54504f5f, 0x204e4f49, + 0x6c696166, 0x203a6465, 0x000a7325, 0x2f355600, 0x482d3756, 0x45435645, + 0x203a434e, 0x63655200, 0x65766569, 0x45532064, 0x504f5f54, 0x4e4f4954, + 0x74616420, 0x69735f61, 0x2520657a, 0x706f2075, 0x6e695f74, 0x20786564, + 0x61207525, 0x30206772, 0x38302578, 0x53000a78, 0x69737365, 0x6f206e6f, + 0x6f697470, 0x6320736e, 0x6f206e61, 0x20796c6e, 0x63206562, 0x676e6168, + 0x69206465, 0x5453206e, 0x4550504f, 0x74732044, 0x2e657461, 0x636e6500, + 0x6f61735f, 0x616e6520, 0x20656c62, 0x206e6163, 0x20746f6e, 0x20657375, + 0x00776f6e, 0x2d746573, 0x2074706f, 0x645f7071, 0x61746c65, 0x705f695f, + 0x6e55203a, 0x70707573, 0x6574726f, 0x61762064, 0x0065756c, 0x2d746573, + 0x2074706f, 0x645f7071, 0x61746c65, 0x705f695f, 0x6156203a, 0x2065756c, + 0x206f6f74, 0x00676962, 0x2d746573, 0x2074706f, 0x645f7071, 0x61746c65, + 0x625f695f, 0x6665725f, 0x6e55203a, 0x70707573, 0x6574726f, 0x61762064, + 0x0065756c, 0x2d746573, 0x2074706f, 0x645f7071, 0x61746c65, 0x625f695f, + 0x6665725f, 0x6156203a, 0x2065756c, 0x206f6f74, 0x00676962, 0x2d746573, + 0x2074706f, 0x65786966, 0x50512064, 0x6e75203a, 0x70707573, 0x6574726f, + 0x61762064, 0x0065756c, 0x62616e65, 0x765f656c, 0x61757369, 0x61203a6c, + 0x72206772, 0x65676e61, 0x73756d20, 0x65622074, 0x6f726620, 0x2030206d, + 0x33206f74, 0x65730031, 0x706f2d74, 0x616d2074, 0x756e5f78, 0x6f635f6d, + 0x3a736572, 0x766e4920, 0x64696c61, 0x6c617620, 0x73006575, 0x655f7465, + 0x735f636e, 0x6c5f6f61, 0x5f616d75, 0x203a6e65, 0x20677261, 0x7473756d, + 0x20656220, 0x726f2030, 0x73003120, 0x655f7465, 0x735f636e, 0x635f6f61, + 0x6d6f7268, 0x6e655f61, 0x7261203a, 0x756d2067, 0x62207473, 0x20302065, + 0x3120726f, 0x6f617300, 0x6e657020, 0x79746c61, 0x7261203a, 0x61722067, + 0x2065676e, 0x7473756d, 0x20656220, 0x6d6f7266, 0x74203020, 0x3133206f, + 0x74657300, 0x636e655f, 0x656d665f, 0x6369625f, 0x63696275, 0x7369645f, + 0x7261203a, 0x756d2067, 0x62207473, 0x20302065, 0x3120726f, 0x6c2d2d00, + 0x6d5f7274, 0x2065646f, 0x7473756d, 0x20656220, 0x6c206562, 0x20737365, + 0x6e616874, 0x52544c20, 0x444f4d5f, 0x55535f45, 0x524f5050, 0x554e5f54, + 0x2d2d004d, 0x5f72746c, 0x65646f6d, 0x6e616320, 0x746f6e20, 0x6e6f6320, + 0x20676966, 0x68746977, 0x722d2d20, 0x725f6665, 0x6e655f62, 0x2d003120, + 0x72746c2d, 0x7265705f, 0x20646f69, 0x206e6163, 0x20746f6e, 0x666e6f63, + 0x77206769, 0x20687469, 0x65722d2d, 0x62725f66, 0x206e655f, 0x61660031, + 0x74206c69, 0x6573206f, 0x6e652074, 0x74735f63, 0x5f737461, 0x65646f6d, + 0x7261203a, 0x756d2067, 0x62207473, 0x6e692065, 0x2c305b20, 0x005d3720, + 0x45535341, 0x20285452, 0x3e206425, 0x696d203d, 0x665f696e, 0x656d6172, + 0x78616d5f, 0x6765735f, 0x746e656d, 0x2c292073, 0x6f6f7420, 0x67696220, + 0x6e696d20, 0x72665f69, 0x5f656d61, 0x5f78616d, 0x6d676573, 0x73746e65, + 0x29642528, 0x73002120, 0x655f7465, 0x735f636e, 0x6d5f7465, 0x69746c75, + 0x7370735f, 0x7370705f, 0x7261203a, 0x756d2067, 0x62207473, 0x20302065, + 0x3120726f, 0x722d2d00, 0x725f6665, 0x6e655f62, 0x63203120, 0x6e206e61, + 0x6320746f, 0x69666e6f, 0x69772067, 0x2d206874, 0x72746c2d, 0x646f6d5f, + 0x65730065, 0x706f2d74, 0x65682074, 0x6e656376, 0x55203a63, 0x7075736e, + 0x74726f70, 0x6f206465, 0x6f697470, 0x6e69206e, 0x00786564, 0x2d746573, + 0x3a74706f, 0x736e5520, 0x6f707075, 0x64657472, 0x56454820, 0x72702043, + 0x6c69666f, 0x65730065, 0x706f2d74, 0x55203a74, 0x7075736e, 0x74726f70, + 0x48206465, 0x20435645, 0x6576656c, 0x6573006c, 0x706f2d74, 0x65682074, + 0x6e656376, 0x63203a63, 0x74736e6f, 0x70692072, 0x20646572, 0x7473756d, + 0x20656220, 0x726f2030, 0x73003120, 0x6f2d7465, 0x68207470, 0x65637665, + 0x203a636e, 0x72746e65, 0x2079706f, 0x636e7973, 0x73756d20, 0x65622074, + 0x6f203020, 0x00312072, 0x2d746573, 0x2074706f, 0x63766568, 0x3a636e65, + 0x6e616320, 0x746f6e20, 0x76616820, 0x6e652065, 0x706f7274, 0x79735f79, + 0x2620636e, 0x69742026, 0x725f656c, 0x2173776f, 0x7300303d, 0x6f2d7465, + 0x68207470, 0x65637665, 0x203a636e, 0x706d6574, 0x6c61726f, 0x70766d20, + 0x73756d20, 0x65622074, 0x6f203020, 0x00312072, 0x2d746573, 0x2074706f, + 0x63766568, 0x3a636e65, 0x73756d20, 0x61682074, 0x30206576, 0x74203c20, + 0x5f656c69, 0x736c6f63, 0x203d3c20, 0x65730031, 0x706f2d74, 0x65682074, + 0x6e656376, 0x6d203a63, 0x20747375, 0x65766168, 0x3c203020, 0x6c697420, + 0x6f725f65, 0x3c207377, 0x3232203d, 0x74657300, 0x74706f2d, 0x76656820, + 0x636e6563, 0x696d203a, 0x756c206e, 0x6320616d, 0x69732062, 0x6d20657a, + 0x20747375, 0x38206562, 0x20726f20, 0x73003631, 0x6f2d7465, 0x68207470, + 0x65637665, 0x203a636e, 0x61626163, 0x6e692063, 0x69207469, 0x6d206364, + 0x20747375, 0x30206562, 0x20726f20, 0x6e490031, 0x696c6176, 0x62632064, + 0x5f70715f, 0x7366666f, 0x72207465, 0x65676e61, 0x32312d5b, 0x5d323120, + 0x766e4900, 0x64696c61, 0x5f726320, 0x6f5f7071, 0x65736666, 0x61722074, + 0x5b65676e, 0x2032312d, 0x005d3231, 0x5f544553, 0x4954504f, 0x4f204e4f, + 0x63202c4b, 0x69666e6f, 0x6e696d72, 0x62000a67, 0x77646e61, 0x68746469, + 0x6d696c20, 0x203a7469, 0x20746f6e, 0x70707573, 0x6574726f, 0x65520064, + 0x76696563, 0x49206465, 0x5f454c44, 0x0a4b4341, 0x746f4700, 0x4c444920, + 0x43415f45, 0x6977204b, 0x756f6874, 0x65732074, 0x4920746e, 0x2e454c44, + 0x63655200, 0x65766965, 0x45442064, 0x2c475542, 0x67736d20, 0x61643e2d, + 0x735f6174, 0x3d657a69, 0x202c6425, 0x6576656c, 0x64253d6c, 0x6573000a, + 0x6e69646e, 0x65722067, 0x6e6f7073, 0x63206573, 0x2065646f, 0x000a6425, + 0x454c4449, 0x64692820, 0x735f656c, 0x5f746e65, 0x685f6f74, 0x2074736f, + 0x202c7525, 0x75626e69, 0x6e635f66, 0x75252074, 0x756f202c, 0x66756274, + 0x746e635f, 0x29752520, 0x2020000a, 0x61766120, 0x77206c69, 0x7364726f, + 0x206e6920, 0x6d6d6f63, 0x65757120, 0x3a736575, 0x67736d20, 0x20752520, + 0x75626e69, 0x75252066, 0x74756f20, 0x20667562, 0x000a7525, 0x646e6553, + 0x20676e69, 0x46464552, 0x454d4152, 0x7325000a, 0x20732520, 0x2065766d, + 0x66667562, 0x66207265, 0x656d6172, 0x6e692820, 0x5f667562, 0x20746e63, + 0x202c7525, 0x6274756f, 0x635f6675, 0x2520746e, 0x000a2975, 0x20202020, + 0x74736f68, 0x6e61685f, 0x20656c64, 0x30257830, 0x30257838, 0x75207838, + 0x5f726573, 0x61746164, 0x6761745f, 0x25783020, 0x25783830, 0x0a783830, + 0x20202000, 0x61726620, 0x665f656d, 0x7367616c, 0x25783020, 0x20783830, + 0x20706f74, 0x62207525, 0x2520746f, 0x6f652075, 0x75252073, 0x6a657220, + 0x0a752520, 0x20202000, 0x726f6620, 0x2074616d, 0x30257830, 0x76207834, + 0x62697369, 0x2520656c, 0x75257875, 0x2020000a, 0x696d2020, 0x665f696e, + 0x656d6172, 0x2820795f, 0x252d7525, 0x000a2975, 0x20202020, 0x6e616c70, + 0x30207365, 0x38302578, 0x30202c78, 0x38302578, 0x20000a78, 0x73202020, + 0x73657a69, 0x2c752520, 0x0a752520, 0x20202000, 0x6f726320, 0x25207870, + 0x72632075, 0x2079706f, 0x61207525, 0x5f636266, 0x62735f77, 0x20752520, + 0x61207525, 0x5f636266, 0x61726170, 0x3020736d, 0x38302578, 0x20000a78, + 0x70202020, 0x206b6565, 0x30257830, 0x30257832, 0x30257832, 0x30257832, + 0x000a7832, 0x20202020, 0x6e616c70, 0x6f745f65, 0x78302070, 0x78383025, + 0x25783020, 0x20783830, 0x30257830, 0x000a7838, 0x20202020, 0x6e616c70, + 0x6f625f65, 0x78302074, 0x78383025, 0x25783020, 0x20783830, 0x30257830, + 0x000a7838, 0x20202020, 0x69727473, 0x20736564, 0x64252020, 0x20642520, + 0x000a6425, 0x20202020, 0x2078616d, 0x25787525, 0x25000a75, 0x73252073, + 0x65766d20, 0x66756220, 0x20726566, 0x73746962, 0x61657274, 0x6928206d, + 0x6675626e, 0x746e635f, 0x2c752520, 0x74756f20, 0x5f667562, 0x20746e63, + 0x0a297525, 0x20202000, 0x74696220, 0x65727473, 0x665f6d61, 0x7367616c, + 0x25783020, 0x20783830, 0x66736f65, 0x20752520, 0x20666f65, 0x65207525, + 0x2520736f, 0x6f652075, 0x20736266, 0x73207525, 0x73746174, 0x0a752520, + 0x20202000, 0x64646120, 0x78302072, 0x78383025, 0x6c6c6120, 0x2520636f, + 0x666f2075, 0x75252066, 0x6c696620, 0x7525206c, 0x7325000a, 0x20732520, + 0x2065766d, 0x66667562, 0x70207265, 0x6d617261, 0x72657465, 0x7974202c, + 0x25206570, 0x25000a75, 0x73252073, 0x65766d20, 0x66756220, 0x20726566, + 0x656e6567, 0x206c6172, 0x626e6928, 0x635f6675, 0x2520746e, 0x6f202c75, + 0x75627475, 0x6e635f66, 0x75252074, 0x20000a29, 0x74202020, 0x20657079, + 0x202c7525, 0x666e6f63, 0x735f6769, 0x20657a69, 0x000a7525, 0x20202020, + 0x666e6f63, 0x30206769, 0x32302578, 0x78302078, 0x78323025, 0x25783020, + 0x20783230, 0x30257830, 0x000a7832, 0x20202020, 0x66667562, 0x705f7265, + 0x30207274, 0x38302578, 0x62202c78, 0x65666675, 0x69735f72, 0x2520657a, + 0x48000a75, 0x2074736f, 0x6e697270, 0x75622074, 0x72656666, 0x52524520, + 0x202e524f, 0x25207325, 0x766d2073, 0x75622065, 0x72656666, 0x74697720, + 0x6e752068, 0x776f6e6b, 0x6f63206e, 0x25206564, 0x47000a75, 0x4f00746f, + 0x55505455, 0x6e490054, 0x696c6176, 0x756f2064, 0x74757074, 0x66756220, + 0x2e726566, 0x766e4900, 0x64696c61, 0x66756220, 0x20726566, 0x4d206e69, + 0x435f4556, 0x5f4d4d4f, 0x5f465542, 0x5154554f, 0x4444415f, 0x65282052, + 0x63657078, 0x20646574, 0x5f65766d, 0x66667562, 0x625f7265, 0x74737469, + 0x6d616572, 0x53002e29, 0x69646e65, 0x4900676e, 0x5455504e, 0x63655200, + 0x65766965, 0x554f2064, 0x54555054, 0x554c465f, 0x73204853, 0x65746174, + 0x20752520, 0x7074756f, 0x625f7475, 0x6b636f6c, 0x25206465, 0x4f000a75, + 0x75707475, 0x6c662074, 0x20687375, 0x796c6e6f, 0x6c6c6120, 0x6465776f, + 0x65687720, 0x7473206e, 0x6570706f, 0x6f202c64, 0x66612072, 0x20726574, + 0x70736572, 0x65736e6f, 0x45535f20, 0x4e455551, 0x505f4543, 0x4d415241, + 0x52455445, 0x65530053, 0x6e69646e, 0x554f2067, 0x54555054, 0x554c465f, + 0x44454853, 0x6553000a, 0x6e69646e, 0x4e492067, 0x5f545550, 0x53554c46, + 0x0a444548, 0x63655200, 0x65766965, 0x4e492064, 0x5f545550, 0x53554c46, + 0x49000a48, 0x5455504e, 0x554c465f, 0x6f204853, 0x20796c6e, 0x6f6c6c61, + 0x20646577, 0x6e656877, 0x206e6920, 0x504f5453, 0x20444550, 0x74617473, + 0x52002e65, 0x69656365, 0x20646576, 0x000a4f47, 0x5f45564d, 0x55514552, + 0x5f545345, 0x45444f43, 0x3a4f475f, 0x70204120, 0x69766572, 0x2073756f, + 0x74617473, 0x72742065, 0x69736e61, 0x6e6f6974, 0x20736920, 0x6c697473, + 0x6570206c, 0x6e69646e, 0x4e002e67, 0x6f6a206f, 0x6e692062, 0x626f6a20, + 0x65757120, 0x002e6575, 0x65636552, 0x64657669, 0x4f545320, 0x4d000a50, + 0x525f4556, 0x45555145, 0x435f5453, 0x5f45444f, 0x504f5453, 0x2041203a, + 0x76657270, 0x73756f69, 0x61747320, 0x74206574, 0x736e6172, 0x6f697469, + 0x7369206e, 0x69747320, 0x70206c6c, 0x69646e65, 0x002e676e, 0x6e616843, + 0x73206567, 0x65746174, 0x206f7420, 0x000a6425, 0x646e6553, 0x20676e69, + 0x54415453, 0x48435f45, 0x45474e41, 0x77656e20, 0x6174735f, 0x253d6574, + 0x53000a75, 0x65746174, 0x61686320, 0x2065676e, 0x646e6570, 0x20676e69, + 0x74617473, 0x64253d65, 0x6e657020, 0x676e6964, 0x0a64253d, 0x63655200, + 0x65766965, 0x55442064, 0x000a504d, 0x5f45564d, 0x55514552, 0x5f545345, + 0x45444f43, 0x4d55445f, 0x6f6e2050, 0x6c612074, 0x65776f6c, 0x6f662064, + 0x72702072, 0x6365746f, 0x20646574, 0x73736573, 0x736e6f69, 0x626e002e, + 0x75622072, 0x72656666, 0x65682073, 0x203a646c, 0x69207525, 0x7475706e, + 0x20752520, 0x7074756f, 0x000a7475, 0x69617661, 0x6f77206c, 0x20736472, + 0x63206e69, 0x206d6d6f, 0x75657571, 0x203a7365, 0x2067736d, 0x69207525, + 0x6675626e, 0x20752520, 0x6274756f, 0x25206675, 0x52000a75, 0x69656365, + 0x20646576, 0x474e4950, 0x6e65000a, 0x65722d63, 0x72662d66, 0x3a656d61, + 0x206f6e20, 0x6f707865, 0x20646573, 0x6d617266, 0x6f742065, 0x6c657220, + 0x65736165, 0x69702800, 0x2029676e, 0x65746e69, 0x6c616e72, 0x72726520, + 0x7720726f, 0x20687469, 0x2d666572, 0x6d617266, 0x78652d65, 0x63617274, + 0x6e6f6974, 0x63656d20, 0x696e6168, 0x002e6d73, 0x65646f63, 0x25203d20, + 0x54000a64, 0x736e6172, 0x6f697469, 0x4946206e, 0x6f204f46, 0x66726576, + 0x00776f6c, 0x75736e55, 0x726f7070, 0x20646574, 0x7373656d, 0x20656761, + 0x65646f63, 0x424d002e, 0x6f666e69, 0x706e6920, 0x6e207475, 0x6120746f, + 0x776f6c6c, 0x66206465, 0x7020726f, 0x65746f72, 0x64657463, 0x73657320, + 0x6e6f6973, 0x424d002e, 0x6f666e69, 0x706e6920, 0x62207475, 0x65666675, + 0x61682072, 0x6c692073, 0x6167656c, 0x6f6c206c, 0x69746163, 0x42006e6f, + 0x4d206461, 0x666e6942, 0x6e69206f, 0x3b747570, 0x65737520, 0x69735f64, + 0x2820657a, 0x69727473, 0x315b6564, 0x6d20295d, 0x20747375, 0x20746f6e, + 0x6c206562, 0x65677261, 0x68742072, 0x6d206e61, 0x735f7861, 0x20657a69, + 0x72747328, 0x5b656469, 0x0a295d30, 0x64614200, 0x69424d20, 0x206f666e, + 0x75706e69, 0x75622074, 0x72656666, 0x6f4e002e, 0x70757320, 0x74726f70, + 0x726f6620, 0x69687420, 0x75622073, 0x72656666, 0x6c6f6320, 0x6620726f, + 0x616d726f, 0x68002e74, 0x77647261, 0x20657261, 0x73656f64, 0x746f6e20, + 0x70757320, 0x74726f70, 0x42464120, 0x6e692043, 0x00747570, 0x6f636e65, + 0x676e6964, 0x746f6e20, 0x70757320, 0x74726f70, 0x6f206465, 0x68742066, + 0x31207369, 0x69622d30, 0x6e692074, 0x20747570, 0x6d726f66, 0x68007461, + 0x77647261, 0x20657261, 0x73656f64, 0x746f6e20, 0x70757320, 0x74726f70, + 0x45564d20, 0x524f465f, 0x5f54414d, 0x34565559, 0x505f3032, 0x00303130, + 0x5f45564d, 0x46465542, 0x465f5245, 0x454d4152, 0x414c465f, 0x4e495f47, + 0x4c524554, 0x20454341, 0x3a746573, 0x746e4920, 0x616c7265, 0x20646563, + 0x6f636e65, 0x6e206564, 0x7320746f, 0x6f707075, 0x64657472, 0x6c46002e, + 0x4d206761, 0x425f4556, 0x45464655, 0x52465f52, 0x5f454d41, 0x47414c46, + 0x544f425f, 0x5249465f, 0x73205453, 0x6c756f68, 0x6f6e2064, 0x65622074, + 0x74657320, 0x6c46002e, 0x4d206761, 0x425f4556, 0x45464655, 0x52465f52, + 0x5f454d41, 0x47414c46, 0x544f425f, 0x4552505f, 0x544e4553, 0x6f687320, + 0x20646c75, 0x20746f6e, 0x73206562, 0x002e7465, 0x7473754d, 0x76616820, + 0x69762065, 0x6c626973, 0x72665f65, 0x5f656d61, 0x74646977, 0x203e2068, + 0x4d002e30, 0x20747375, 0x65766168, 0x73697620, 0x656c6269, 0x6172665f, + 0x685f656d, 0x68676965, 0x203e2074, 0x76002e30, 0x62697369, 0x665f656c, + 0x656d6172, 0x6469775f, 0x74206874, 0x6c206f6f, 0x65677261, 0x73697600, + 0x656c6269, 0x6172665f, 0x685f656d, 0x68676965, 0x6f742074, 0x616c206f, + 0x00656772, 0x61746f52, 0x6e6f6974, 0x746f6e20, 0x70757320, 0x74726f70, + 0x66206465, 0x4120726f, 0x20434246, 0x75706e69, 0x53002e74, 0x696c6163, + 0x6e20676e, 0x7320746f, 0x6f707075, 0x64657472, 0x726f6620, 0x42464120, + 0x6e692043, 0x2e747570, 0x72694d00, 0x69726f72, 0x6920676e, 0x6f6e2073, + 0x75732074, 0x726f7070, 0x20646574, 0x20726f66, 0x43424641, 0x706e6920, + 0x002e7475, 0x43424641, 0x616c7020, 0x3020656e, 0x20736920, 0x20746f6e, + 0x76206e69, 0x64696c61, 0x6d656d20, 0x2079726f, 0x69676572, 0x002e6e6f, + 0x43424641, 0x616c7020, 0x3020656e, 0x7a697320, 0x68732065, 0x646c756f, + 0x746f6e20, 0x20656220, 0x6f72657a, 0x4641002e, 0x62204342, 0x6f74746f, + 0x6c70206d, 0x20656e61, 0x6e696f70, 0x20726574, 0x756f6873, 0x6820646c, + 0x20657661, 0x6e656562, 0x72657a20, 0x41002e6f, 0x20434246, 0x6e616c70, + 0x20312065, 0x657a6973, 0x6f687320, 0x20646c75, 0x7a206562, 0x2e6f7265, + 0x42464100, 0x6e692043, 0x3a747570, 0x69775f20, 0x5f687464, 0x735f6e69, + 0x72657075, 0x636f6c62, 0x7420736b, 0x73206f6f, 0x6c6c616d, 0x726f6620, + 0x61726620, 0x5300656d, 0x696c6163, 0x6e20676e, 0x7320746f, 0x6f707075, + 0x64657472, 0x726f6620, 0x616c7020, 0x2072616e, 0x75706e69, 0x52002e74, + 0x7461746f, 0x206e6f69, 0x206e6163, 0x20746f6e, 0x64206562, 0x20656e6f, + 0x20726f66, 0x3a323a34, 0x6d002e32, 0x665f7861, 0x656d6172, 0x6469775f, + 0x73206874, 0x6c756f68, 0x65622064, 0x72616c20, 0x20726567, 0x6e616874, + 0x72657a20, 0x6d002e6f, 0x665f7861, 0x656d6172, 0x6965685f, 0x20746867, + 0x756f6873, 0x6220646c, 0x616c2065, 0x72656772, 0x61687420, 0x657a206e, + 0x002e6f72, 0x75736e55, 0x726f7070, 0x20646574, 0x6e616c70, 0x62207261, + 0x65666675, 0x6f632072, 0x20726f6c, 0x6d726f66, 0x002e7461, 0x69727453, + 0x74206564, 0x73206f6f, 0x6c6c616d, 0x206f7420, 0x646c6f68, 0x78616d20, + 0x6172665f, 0x775f656d, 0x68746469, 0x6c70002e, 0x5f656e61, 0x20706f74, + 0x7473756d, 0x20656220, 0x6d206e69, 0x726f6d65, 0x65722079, 0x6e6f6967, + 0x41524620, 0x5542454d, 0x70002e46, 0x656e616c, 0x746f625f, 0x6f687320, + 0x20646c75, 0x7a206562, 0x206f7265, 0x20726f66, 0x2d6e6f6e, 0x65746e69, + 0x63616c72, 0x73206465, 0x61657274, 0x41002e6d, 0x65726464, 0x6f207373, + 0x6e752066, 0x64657375, 0x616c7020, 0x7320656e, 0x6c756f68, 0x65622064, + 0x72657a20, 0x53002e6f, 0x64697274, 0x666f2065, 0x756e7520, 0x20646573, + 0x6e616c70, 0x68732065, 0x646c756f, 0x20656220, 0x6f72657a, 0x754d002e, + 0x68207473, 0x20657661, 0x69736976, 0x5f656c62, 0x6d617266, 0x69775f65, + 0x20687464, 0x6d203d3c, 0x665f7861, 0x656d6172, 0x6469775f, 0x002e6874, + 0x504f545f, 0x4552505f, 0x544e4553, 0x20726f20, 0x444e455f, 0x5f464f5f, + 0x45525453, 0x6d204d41, 0x20747375, 0x73206562, 0x002e7465, 0x61766e49, + 0x2064696c, 0x66667562, 0x69207265, 0x564d206e, 0x4f435f45, 0x425f4d4d, + 0x495f4655, 0x415f514e, 0x20524444, 0x70786528, 0x65746365, 0x766d2064, + 0x75625f65, 0x72656666, 0x6172665f, 0x6f20656d, 0x766d2072, 0x75625f65, + 0x72656666, 0x7261705f, 0x2e296d61, 0x30323400, 0x203e2d20, 0x20323234, + 0x766e6f63, 0x69737265, 0x6e206e6f, 0x7320746f, 0x6f707075, 0x64657472, + 0x6e65002e, 0x65722d63, 0x72662d66, 0x3a656d61, 0x746f6e20, 0x6f6e6520, + 0x20686775, 0x65746e69, 0x6c616e72, 0x6f6c7320, 0x52007374, 0x30435341, + 0x53415200, 0x52003143, 0x32435341, 0x53415200, 0x52003343, 0x34435341, + 0x4d445300, 0x44560041, 0x5200414d, 0x46004645, 0x4c415441, 0x5252455f, + 0x555f524f, 0x4645444e, 0x44454e49, 0x54414600, 0x455f4c41, 0x524f5252, + 0x4246415f, 0x4e495f43, 0x5f545550, 0x52524f43, 0x00545055, 0x41544146, + 0x52455f4c, 0x5f524f52, 0x43424641, 0x4645525f, 0x524f435f, 0x54505552, + 0x54414600, 0x455f4c41, 0x524f5252, 0x49534c5f, 0x54435f44, 0x4d5f4c52, + 0x4f435841, 0x4e5f4552, 0x535f544f, 0x00005445, 0x000191db, 0x000191e1, + 0x000191e7, 0x000191ed, 0x000191f3, 0x000191f9, 0x000191fe, 0x00019203, + 0x00019207, 0x0001921d, 0x0001923c, 0x00019259, 0x30000000, 0x2400000c, + 0x1c00001e, 0x0001b65e, 0x000109bf, 0x000109bf, 0x000109bf, 0x4649424d, + 0x43564548, 0x00010001, 0x00000090, 0x00000870, 0x0001f400, 0x001e0001, + 0x00000001, 0x000001e0, 0x00003840, 0x0016e360, 0x003c0001, 0x00000003, + 0x000003c0, 0x00007080, 0x002dc6c0, 0x003f0001, 0x00000005, 0x00000870, + 0x0000fd20, 0x005b8d80, 0x005a0002, 0x00000007, 0x00000f00, 0x0001fa40, + 0x00989680, 0x005d0003, 0x00000009, 0x00002200, 0x0003fc00, 0x00b71b00, + 0x00780005, 0x0000000b, 0x00002200, 0x0003fc00, 0x01c9c380, 0x00780105, + 0x0000000c, 0x00002200, 0x0007f800, 0x01312d00, 0x007b0005, 0x0000000d, + 0x00002200, 0x0007f800, 0x02faf080, 0x007b0105, 0x0000000e, 0x00008800, + 0x000ff000, 0x017d7840, 0x0096000b, 0x0000000f, 0x00008800, 0x000ff000, + 0x05f5e100, 0x0096010b, 0x00000010, 0x00008800, 0x001fe000, 0x02625a00, + 0x0099000b, 0x00000011, 0x00008800, 0x001fe000, 0x09896800, 0x0099010b, + 0x00000012, 0x00008800, 0x003fc000, 0x03938700, 0x009c000b, 0x00000013, + 0x00008800, 0x003fc000, 0x0e4e1c00, 0x009c010b, 0x00000014, 0x00022000, + 0x003fc000, 0x03938700, 0x00b40016, 0x00000015, 0x00022000, 0x003fc000, + 0x0e4e1c00, 0x00b40116, 0x00000016, 0x00022000, 0x007f8000, 0x07270e00, + 0x00b70016, 0x00000017, 0x00022000, 0x007f8000, 0x1c9c3800, 0x00b70116, + 0x00000018, 0x00022000, 0x00ff0000, 0x0e4e1c00, 0x00ba0016, 0x00000019, + 0x00022000, 0x00ff0000, 0x2faf0800, 0x00ba0116, 0x0000001a, 0x0056e81c, + 0x0052f58a, 0x004f02f8, 0x004b1066, 0x0047b74a, 0x00445e2e, 0x00410576, + 0x003dacbd, 0x003a524a, 0x0036f7da, 0x0033ec31, 0x0030e088, 0x002e0661, + 0x002b2c3b, 0x002854e4, 0x00257d8a, 0x0022ebdf, 0x00205a33, 0x001e0e85, + 0x001bc2d7, 0x0019812e, 0x00173f85, 0x00154bfb, 0x00135871, 0x0011b2c8, + 0x00100d1f, 0x000e88c8, 0x000d0473, 0x000bc721, 0x000a89cf, 0x00099d54, + 0x0008b0da, 0x0007cd9a, 0x0006ea5a, 0x00063ff8, 0x00059597, 0x00050bf1, + 0x00048248, 0x00040712, 0x00038bdc, 0x000327f8, 0x0002c417, 0x000274ec, + 0x000225c3, 0x0001dfda, 0x000199f3, 0x0001642c, 0x00012e66, 0x000107da, + 0x0000e14d, 0x0000c2e1, 0x0000a476, 0x046c53d4, 0x0376467b, 0x02b5b112, + 0x021ef4a4, 0x01a8f94d, 0x014ca103, 0x010459a6, 0x00cbc6fb, 0x009f7f54, + 0x007cd6df, 0x0061b65a, 0x004c7ad7, 0x003bdc73, 0x002eda83, 0x0024ac29, + 0x001cb426, 0x0016776e, 0x001195ac, 0x000dc37b, 0x000ac5d7, 0x00086e92, + 0x00069985, 0x00052a66, 0x00040b0d, 0x00032a21, 0x00027a17, 0x0001f04f, + 0x00018476, 0x0001300d, 0x0000edfb, 0x0000ba45, 0x000091ca, 0x0000721c, + 0x0000594f, 0x000045e6, 0x000036b6, 0x00002ad2, 0x00002185, 0x00001a3b, + 0x00001488, 0x00001012, 0x00000c94, 0x000009d7, 0x000007b3, 0x00000608, + 0x000004b8, 0x000003b1, 0x000002e4, 0x00000243, 0x000001c5, 0x00000161, + 0x00000114, 0x003ddcfb, 0x003ac288, 0x0037a814, 0x00348d9f, 0x0031047b, + 0x002d7b54, 0x002acfcf, 0x00282448, 0x002556ae, 0x00228917, 0x001fc70a, + 0x001d04fd, 0x001acf85, 0x00189a0f, 0x00166e64, 0x001442b6, 0x0012153d, + 0x000fe7c3, 0x000e5445, 0x000cc0c5, 0x000b331a, 0x0009a56e, 0x00085d14, + 0x000714bd, 0x000631c5, 0x00054ecf, 0x00048403, 0x0003b936, 0x00032f8f, + 0x0002a5e9, 0x00024c00, 0x0001f217, 0x0001a51c, 0x00015821, 0x0001252e, + 0x0000f23d, 0x0000ca29, 0x0000a214, 0x00008738, 0x00006c5c, 0x00005ba6, + 0x00004aee, 0x000041a1, 0x00003852, 0x000031df, 0x00002b69, 0x0000265a, + 0x0000214a, 0x00001df6, 0x00001aa1, 0x000017c8, 0x000014f1, 0x2a2a2a2a, + 0x53415220, 0x20642543, 0x524f4241, 0x2a2a2054, 0x000a2a2a, 0x43502020, + 0x20202020, 0x7830203d, 0x78383025, 0x2020000a, 0x20205253, 0x203d2020, + 0x30257830, 0x000a7838, 0x41462020, 0x20202052, 0x7830203d, 0x78383025, + 0x2020000a, 0x32255b52, 0x3d205d64, 0x25783020, 0x0a783830, 0x00000000, + 0x00011d68, 0x00011d68, 0x00011d68, 0x00011d68, 0x2a2a2a2a, 0x53415220, + 0x20642543, 0x524f4241, 0x2a2a2054, 0x000a2a2a, 0x43502020, 0x20202020, + 0x7830203d, 0x78383025, 0x2020000a, 0x20205253, 0x203d2020, 0x30257830, + 0x000a7838, 0x41462020, 0x20202052, 0x7830203d, 0x78383025, 0x2020000a, + 0x32255b52, 0x3d205d64, 0x25783020, 0x0a783830, 0x00000000, 0x00012482, + 0x00012482, 0x00012482, 0x00012482, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00010000, 0x00010001, 0x00010001, 0x00020002, 0x00030003, + 0x00050004, 0x00080006, 0x000d000a, 0x00140010, 0x00200019, 0x00330028, + 0x00510040, 0x00800066, 0x00cb00a1, 0x01430100, 0x02000196, 0x032d0285, + 0x050a0400, 0x08000659, 0x0cb30a14, 0x14291000, 0x20001966, 0x32cc2851, + 0x0000001d, 0x0000001e, 0x0000001f, 0x00000020, 0x00000021, 0x00000021, + 0x00000022, 0x00000022, 0x00000023, 0x00000023, 0x00000024, 0x00000024, + 0x00000025, 0x00000025, 0x2a2a2a2a, 0x53415220, 0x20642543, 0x524f4241, + 0x2a2a2054, 0x000a2a2a, 0x43502020, 0x20202020, 0x7830203d, 0x78383025, + 0x2020000a, 0x20205253, 0x203d2020, 0x30257830, 0x000a7838, 0x41462020, + 0x20202052, 0x7830203d, 0x78383025, 0x2020000a, 0x32255b52, 0x3d205d64, + 0x25783020, 0x0a783830, 0x00000000, 0x00012a40, 0x00012a40, 0x00012a40, + 0x00012a40, 0x000000a0, 0x000000b0, 0x000000d0, 0x000000e0, 0x00000100, + 0x00000120, 0x00000140, 0x00000160, 0x000001a0, 0x000001c0, 0x00000200, + 0x00000240, 0x00000280, 0x000002c0, 0x00000340, 0x00000380, 0x00000400, + 0x00000480, 0x00000500, 0x00000580, 0x00000680, 0x00000700, 0x00000800, + 0x00000900, 0x00000a00, 0x00000b00, 0x00000d00, 0x00000e00, 0x00001000, + 0x00001200, 0x00001400, 0x00001600, 0x00001a00, 0x00001c00, 0x00002000, + 0x00002400, 0x00002800, 0x00002c00, 0x00003400, 0x00003800, 0x00004000, + 0x00004800, 0x00005000, 0x00005800, 0x00006800, 0x00007000, 0x00008000, + 0x00009000, 0x0000a000, 0x0000b000, 0x0000d000, 0x0000e000, 0x33323130, + 0x37363534, 0x00003938, 0x33323130, 0x37363534, 0x62613938, 0x66656463, + 0x72726f43, 0x65747075, 0x6e692064, 0x20747570, 0x75657571, 0x49002e65, + 0x6c61766e, 0x62206469, 0x65666675, 0x65682072, 0x72656461, 0x206e6920, + 0x5f45564d, 0x4d4d4f43, 0x4655425f, 0x54554f5f, 0x44415f51, 0x002e5244, + 0x206f6f54, 0x6772616c, 0x65722065, 0x73657571, 0x656d2074, 0x67617373, + 0x54002e65, 0x6c206f6f, 0x65677261, 0x66756220, 0x20726566, 0x7373656d, + 0x2e656761, 0x766e4900, 0x64696c61, 0x66756220, 0x20726566, 0x4d206e69, + 0x435f4556, 0x5f4d4d4f, 0x5f465542, 0x5f514e49, 0x52444441, 0x564d002e, + 0x3a505245, 0x5f6d6172, 0x6e697270, 0x66756274, 0x20736920, 0x20746f6e, + 0x69617661, 0x6c62616c, 0x000a2e65, 0x5245564d, 0x72203a50, 0x705f6d61, + 0x746e6972, 0x75645f66, 0x6620706d, 0x206d6f72, 0x70257830, 0x5052000a, + 0x4d554454, 0x6c663a50, 0x253d6761, 0x69202c78, 0x7865646e, 0x2c75253d, + 0x5f727720, 0x3d746e63, 0x202c7525, 0x635f6472, 0x253d746e, 0x000a2e75, + 0x252d5746, 0x25203a75, 0x564d0073, 0x3a505245, 0x67616c66, 0x2c78253d, + 0x78646920, 0x2c75253d, 0x5f727720, 0x3d746e63, 0x202c7525, 0x635f6472, + 0x253d746e, 0x000a2e75, 0x34302520, 0x38250078, 0x73253a78, 0x2520000a, + 0x00783230, 0x1007f000, 0x49574558, 0x35565644, 0x2d37562f, 0x43564548, + 0x3a434e45, 0x65720020, 0x657a6973, 0x7470203a, 0x78302072, 0x78383025, + 0x77656e20, 0x7a69735f, 0x75252065, 0x766d000a, 0x656d5f65, 0x65725f6d, + 0x657a6973, 0x6c616d00, 0x3a636f6c, 0x7a697320, 0x75252065, 0x616d202c, + 0x75252078, 0x6572202c, 0x6e6f6967, 0x2c752520, 0x676f6c20, 0x6c615f32, + 0x206e6769, 0x000a7525, 0x6c6c616d, 0x203a636f, 0x75746572, 0x64656e72, + 0x25783020, 0x6d000a70, 0x6d5f6576, 0x615f6d65, 0x636f6c6c, 0x6c6c4100, + 0x7461636f, 0x6d206465, 0x726f6d65, 0x61682079, 0x72772073, 0x20676e6f, + 0x67696c61, 0x6e656d6e, 0x78450074, 0x74636570, 0x61206465, 0x636f6c6c, + 0x64657461, 0x6d656d20, 0x2079726f, 0x50206e69, 0x45544f52, 0x44455443, + 0x67657220, 0x2e6e6f69, 0x70784500, 0x65746365, 0x6c612064, 0x61636f6c, + 0x20646574, 0x6f6d656d, 0x69207972, 0x5246206e, 0x42454d41, 0x72204655, + 0x6f696765, 0x6e002e6e, 0x7720746f, 0x69746961, 0x2500676e, 0x64692073, + 0x635f656c, 0x656c6379, 0x25000a73, 0x2d252073, 0x20733831, 0x64353125, + 0x7325000a, 0x746f5420, 0x695f6c61, 0x20656c64, 0x20202020, 0x25202020, + 0x0a643531, 0x726f6300, 0x64252065, 0x20732520, 0x30322d25, 0x6f632073, + 0x253d6564, 0x70206433, 0x253d6369, 0x70206433, 0x705b736f, 0x283d5d75, + 0x2c643325, 0x29643325, 0x6b6c6320, 0x0a64253d, 0x726f6300, 0x64252065, + 0x20732520, 0x30322d25, 0x20202073, 0x20202020, 0x70202020, 0x253d6369, + 0x70206433, 0x705b736f, 0x283d5d75, 0x2c643325, 0x29643325, 0x6f6e000a, + 0x65732074, 0x61772074, 0x6e697469, 0x4f530067, 0x45525f43, 0x54532e46, + 0x53555441, 0x20202020, 0x20202020, 0x78302020, 0x000a7825, 0x5f434f53, + 0x2e464552, 0x464e4f43, 0x20204749, 0x20202020, 0x20202020, 0x78257830, + 0x4f53000a, 0x45525f43, 0x494c2e46, 0x45524556, 0x20202046, 0x20202020, + 0x78302020, 0x000a7825, 0x5f434f53, 0x2e464552, 0x504f5453, 0x4b53414d, + 0x20202020, 0x20202020, 0x78257830, 0x4f53000a, 0x434d5f43, 0x4154532e, + 0x20205452, 0x20202020, 0x20202020, 0x78302020, 0x000a7825, 0x5f434f53, + 0x532e434d, 0x55544154, 0x20202053, 0x20202020, 0x20202020, 0x78257830, + 0x4f53000a, 0x52545f43, 0x54532e46, 0x53555441, 0x20202020, 0x20202020, + 0x78302020, 0x000a7825, 0x5f434f53, 0x2e465254, 0x53474244, 0x55544154, + 0x20202053, 0x20202020, 0x78257830, 0x4f53000a, 0x42445f43, 0x54432e4c, + 0x20204c52, 0x20202020, 0x20202020, 0x78302020, 0x000a7825, 0x5f434f53, + 0x2e4c4244, 0x4c525443, 0x20202031, 0x20202020, 0x20202020, 0x78257830, + 0x4f53000a, 0x42445f43, 0x54532e4c, 0x53555441, 0x20202020, 0x20202020, + 0x78302020, 0x000a7825, 0x5f434f53, 0x2e4c4244, 0x54415453, 0x20315355, + 0x20202020, 0x20202020, 0x78257830, 0x4f53000a, 0x42445f43, 0x54532e4c, + 0x53555441, 0x20202032, 0x20202020, 0x78302020, 0x000a7825, 0x5f434f53, + 0x2e4c4244, 0x54415453, 0x20335355, 0x20202020, 0x20202020, 0x78257830, + 0x4f53000a, 0x49425f43, 0x52545354, 0x2e4d4145, 0x41424341, 0x54532e44, + 0x53555441, 0x20202020, 0x30202020, 0x0a782578, 0x434f5300, 0x5449425f, + 0x45525453, 0x4d2e4d41, 0x54494244, 0x41564153, 0x20204c49, 0x20202020, + 0x78302020, 0x000a7825, 0x5f434f53, 0x53544942, 0x41455254, 0x45442e4d, + 0x54435f46, 0x20204c52, 0x20202020, 0x20202020, 0x25783020, 0x53000a78, + 0x425f434f, 0x54535449, 0x4d414552, 0x564d482e, 0x44455250, 0x4154532e, + 0x20535554, 0x20202020, 0x78257830, 0x4f53000a, 0x49425f43, 0x52545354, + 0x2e4d4145, 0x42414348, 0x532e4441, 0x55544154, 0x20202053, 0x30202020, + 0x0a782578, 0x434f5300, 0x2e454d5f, 0x54415453, 0x20205355, 0x20202020, + 0x20202020, 0x25783020, 0x53000a78, 0x565f434f, 0x2e414d44, 0x5f515249, + 0x54415453, 0x20205355, 0x30202020, 0x0a782578, 0x4f532000, 0x44565f43, + 0x6520414d, 0x3d305f71, 0x64207825, 0x3d305f71, 0x65207825, 0x3d315f71, + 0x64207825, 0x3d315f71, 0x73207825, 0x635f6372, 0x3d6c7274, 0x000a7825, + 0x52414853, 0x525f4445, 0x702e4d41, 0x5f657069, 0x74617473, 0x20202065, + 0x28207525, 0x0a297325, 0x41485300, 0x5f444552, 0x2e4d4152, 0x6c5f7369, + 0x5f747361, 0x65726f63, 0x0a752520, 0x41485300, 0x5f444552, 0x2e4d4152, + 0x5f626f6a, 0x73616870, 0x20202065, 0x0a752520, 0x41485300, 0x5f444552, + 0x2e4d4152, 0x5f626f6a, 0x74617473, 0x20202065, 0x0a782520, 0x41485300, + 0x5f444552, 0x2e4d4152, 0x7074756f, 0x735f7475, 0x70697274, 0x635f7365, + 0x6c706d6f, 0x64657465, 0x0a752520, 0x41485300, 0x5f444552, 0x2e4d4152, + 0x71657261, 0x7274735f, 0x73657069, 0x7373695f, 0x20646575, 0x000a7525, + 0x414d4453, 0x5541462e, 0x2020544c, 0x20202020, 0x20202020, 0x20202020, + 0x78257830, 0x7453000a, 0x73757461, 0x20666f20, 0x636f6c62, 0x2064656b, + 0x6b736174, 0x6f662073, 0x6f632072, 0x25206572, 0x63203a75, 0x253d6b6c, + 0x000a2075, 0x74617473, 0x25207375, 0x6f742078, 0x64252070, 0x746e6320, + 0x20642520, 0x756e636d, 0x7825206d, 0x626d000a, 0x3d6d756e, 0x72207825, + 0x766d656d, 0x0a78253d, 0x434f5300, 0x5359535f, 0x4c525443, 0x4e56532e, + 0x20564552, 0x20202020, 0x20202020, 0x20202020, 0x20202020, 0x000a7825, + 0x525f5746, 0x20205645, 0x20202020, 0x20202020, 0x20202020, 0x20202020, + 0x20202020, 0x20202020, 0x25202020, 0x53000a78, 0x49535345, 0x525f4e4f, + 0x612e4d41, 0x76697463, 0x6f635f65, 0x20736572, 0x20202020, 0x20202020, + 0x75252020, 0x6946000a, 0x61776d72, 0x73206572, 0x75746174, 0x666f2073, + 0x73616d20, 0x20726574, 0x726f6328, 0x64252065, 0x63203a29, 0x253d6b6c, + 0x000a2064, 0x53534553, 0x5f4e4f49, 0x2e4d4152, 0x6d726966, 0x65726177, + 0x6e695f73, 0x6573755f, 0x20202020, 0x25202020, 0x25202c64, 0x25202c64, + 0x25202c64, 0x25202c64, 0x25202c64, 0x25202c64, 0x25202c64, 0x53000a64, + 0x49535345, 0x525f4e4f, 0x6d2e4d41, 0x65747361, 0x6f635f72, 0x20206572, + 0x20202020, 0x20202020, 0x75252020, 0x4553000a, 0x4f495353, 0x41525f4e, + 0x616d2e4d, 0x72657473, 0x6c6c615f, 0x7461636f, 0x20206465, 0x20202020, + 0x0a642520, 0x53455300, 0x4e4f4953, 0x4d41525f, 0x73616d2e, 0x5f726574, + 0x6e676973, 0x20736c61, 0x20202020, 0x20202020, 0x78383025, 0x38302520, + 0x30252078, 0x000a7838, 0x53534553, 0x5f4e4f49, 0x2e4d4152, 0x74636970, + 0x73657275, 0x5f6e695f, 0x65706970, 0x20202020, 0x25202020, 0x53000a64, + 0x49535345, 0x525f4e4f, 0x702e4d41, 0x5f657069, 0x5f636970, 0x6c696174, + 0x20202020, 0x20202020, 0x75252020, 0x4553000a, 0x4f495353, 0x41525f4e, + 0x69702e4d, 0x705f6570, 0x685f6369, 0x20646165, 0x20202020, 0x20202020, + 0x0a752520, 0x53455300, 0x4e4f4953, 0x4d41525f, 0x6e65702e, 0x676e6964, + 0x6174735f, 0x20206574, 0x20202020, 0x20202020, 0x000a7525, 0x53534553, + 0x5f4e4f49, 0x2e4d4152, 0x73736573, 0x5f6e6f69, 0x74617473, 0x20202065, + 0x20202020, 0x25202020, 0x53000a75, 0x49535345, 0x525f4e4f, 0x632e4d41, + 0x6c706d6f, 0x64657465, 0x6369705f, 0x65727574, 0x20202073, 0x75252020, + 0x4553000a, 0x4f495353, 0x41525f4e, 0x756f2e4d, 0x74757074, 0x6675625f, + 0x5f726566, 0x64616568, 0x6172665f, 0x2020656d, 0x000a7525, 0x53534553, + 0x5f4e4f49, 0x2e4d4152, 0x7074756f, 0x625f7475, 0x65666675, 0x65685f72, + 0x20206461, 0x20202020, 0x75252020, 0x4553000a, 0x4f495353, 0x41525f4e, + 0x69702e4d, 0x72757463, 0x695f7365, 0x65757373, 0x6f745f64, 0x7069705f, + 0x20202065, 0x000a7525, 0x53534553, 0x5f4e4f49, 0x2e4d4152, 0x6576696c, + 0x7274735f, 0x5f657069, 0x64616568, 0x20202020, 0x25202020, 0x53000a75, + 0x49535345, 0x525f4e4f, 0x6c2e4d41, 0x5f657669, 0x69727473, 0x745f6570, + 0x2e6c6961, 0x65646e69, 0x75252078, 0x4553000a, 0x4f495353, 0x41525f4e, + 0x696c2e4d, 0x735f6576, 0x70697274, 0x61745f65, 0x702e6c69, 0x64696369, + 0x0a752520, 0x53455300, 0x4e4f4953, 0x4d41525f, 0x76696c2e, 0x74735f65, + 0x65706972, 0x6961745f, 0x65722e6c, 0x20207966, 0x000a7525, 0x53534553, + 0x5f4e4f49, 0x2e4d4152, 0x5f636e65, 0x74617473, 0x74735f73, 0x6761726f, + 0x6c732e65, 0x6d5f746f, 0x206b7361, 0x0a752520, 0x53455300, 0x4e4f4953, + 0x4d41525f, 0x6f74732e, 0x6e697070, 0x6f6e5f67, 0x20626f5f, 0x20202020, + 0x20202020, 0x000a7525, 0x53534553, 0x5f4e4f49, 0x2e4d4152, 0x5f736964, + 0x725f6269, 0x7a697365, 0x20202065, 0x20202020, 0x25202020, 0x6d000a64, + 0x725f7861, 0x64697365, 0x5f6c6175, 0x65676170, 0x20202073, 0x20202020, + 0x20202020, 0x20202020, 0x000a6425, 0x65676170, 0x756f635f, 0x2020746e, + 0x20202020, 0x20202020, 0x20202020, 0x20202020, 0x20202020, 0x0a642520, + 0x61702000, 0x695f6567, 0x7865646e, 0x20642520, 0x65207025, 0x7974706d, + 0x20642520, 0x695f7277, 0x25207864, 0x64722064, 0x7864695f, 0x20642520, + 0x67617020, 0x65725f65, 0x30735f6d, 0x20642520, 0x65676170, 0x6d65725f, + 0x2031735f, 0x000a6425, 0x53534553, 0x5f4e4f49, 0x2e4d4152, 0x7074756f, + 0x625f7475, 0x65666675, 0x656e5f72, 0x20207478, 0x25202020, 0x53000a75, + 0x49535345, 0x525f4e4f, 0x6f2e4d41, 0x75707475, 0x75625f74, 0x72656666, + 0x6961745f, 0x2020206c, 0x75252020, 0x4553000a, 0x4f495353, 0x41525f4e, + 0x756f2e4d, 0x74757074, 0x6675625f, 0x5f726566, 0x64616568, 0x20202020, + 0x0a752520, 0x202d2d00, 0x74697773, 0x6e696863, 0x2d2d2067, 0x4553000a, + 0x4f495353, 0x41525f4e, 0x656e2e4d, 0x625f7478, 0x5f746f6f, 0x656b6f74, + 0x2020206e, 0x20202020, 0x0a752520, 0x53455300, 0x4e4f4953, 0x4d41525f, + 0x626f6a2e, 0x6575715f, 0x742e6575, 0x6e656b6f, 0x20202020, 0x20202020, + 0x000a7525, 0x53534553, 0x5f4e4f49, 0x2e4d4152, 0x5f626f6a, 0x69746361, + 0x20206576, 0x20202020, 0x20202020, 0x25202020, 0x53000a75, 0x49535345, + 0x525f4e4f, 0x6a2e4d41, 0x705f626f, 0x65736168, 0x756f635f, 0x7265746e, + 0x20202020, 0x75252020, 0x4553000a, 0x4f495353, 0x41525f4e, 0x6f6a2e4d, + 0x74735f62, 0x5f747261, 0x20636970, 0x20202020, 0x20202020, 0x0a752520, + 0x53455300, 0x4e4f4953, 0x4d41525f, 0x626f6a2e, 0x646e655f, 0x6369705f, + 0x20202020, 0x20202020, 0x20202020, 0x000a7525, 0x53534553, 0x5f4e4f49, + 0x2e4d4152, 0x65727473, 0x705f6d61, 0x685f6369, 0x20646165, 0x20202020, + 0x25202020, 0x2d000a75, 0x6c73202d, 0x20656369, 0x75657571, 0x2d207365, + 0x53000a2d, 0x49535345, 0x525f4e4f, 0x662e4d41, 0x5f6f6669, 0x63696c73, + 0x6f6a5f65, 0x20202062, 0x20202020, 0x64252020, 0x746e6520, 0x73656972, + 0x4553000a, 0x4f495353, 0x41525f4e, 0x69662e4d, 0x735f6f66, 0x6563696c, + 0x6d6f635f, 0x74656c70, 0x20202065, 0x20642520, 0x72746e65, 0x0a736569, + 0x656d2000, 0x7274735f, 0x5f657069, 0x20736f70, 0x64253d69, 0x736f7020, + 0x0a64253d, 0x76696c00, 0x6f6a5f65, 0x733e2d62, 0x63746977, 0x65725f68, + 0x73657571, 0x20202074, 0x20202020, 0x20202020, 0x0a752520, 0x76696c00, + 0x6f6a5f65, 0x723e2d62, 0x65757165, 0x64657473, 0x6d756e5f, 0x5f726562, + 0x635f666f, 0x7365726f, 0x0a752520, 0x76696c00, 0x6f6a5f65, 0x633e2d62, + 0x7365726f, 0x6f6f625f, 0x20646574, 0x20202020, 0x20202020, 0x20202020, + 0x0a752520, 0x76696c00, 0x6f6a5f65, 0x703e2d62, 0x5f657069, 0x74697773, + 0x20206863, 0x20202020, 0x20202020, 0x20202020, 0x0a752520, 0x52545300, + 0x004d4145, 0x43494c53, 0x4d002045, 0x20202045, 0x41525400, 0x0020534e, + 0x5054554f, 0x50005455, 0x51455049, 0x41570020, 0x4f005449, 0x52524556, + 0x31004e55, 0x41505453, 0x50004547, 0x44494349, 0x544e4900, 0x00465542, + 0x4556494c, 0x53524150, 0x4c004445, 0x43455649, 0x00504d4f, 0x49434950, + 0x5845444e, 0x4c414e00, 0x504e4900, 0x45004349, 0x554f434e, 0x46554254, + 0x45525000, 0x51455356, 0x46455200, 0x4b4e4142, 0x5345525f, 0x4f005445, + 0x55505455, 0x4c465f54, 0x00485355, 0x44524c43, 0x45004250, 0x445f434e, + 0x505f5045, 0x52004349, 0x535f4e55, 0x45544154, 0x494c5300, 0x465f4543, + 0x004f4649, 0x4556494c, 0x494c535f, 0x44004543, 0x45555145, 0x45004555, + 0x4555514e, 0x43004555, 0x52004c4f, 0x44495345, 0x004c4155, 0x45544942, + 0x4553434e, 0x49420051, 0x434e4554, 0x00465542, 0x4d434e45, 0x464e4942, + 0x4143004f, 0x42434142, 0x00535449, 0x50564d48, 0x00444552, 0x4f424552, + 0x4445544f, 0x4f525000, 0x43005342, 0x544e554f, 0x50560053, 0x00434239, + 0x56455250, 0x4152465f, 0x4500454d, 0x55425458, 0x52454646, 0x50495000, + 0x52004445, 0x52464645, 0x00454d41, 0x4556494c, 0x544f4c53, 0x424f4a00, + 0x49575300, 0x00484354, 0x49464552, 0x00454c44, 0x45504950, 0x49415244, + 0x4f52004e, 0x46554257, 0x424f4a00, 0x544f4c53, 0x574f5200, 0x4e554f43, + 0x00524554, 0x00465252, 0x414d4456, 0x00435253, 0x4e415254, 0x524f4653, + 0x5252004d, 0x41524646, 0x4100454d, 0x00514552, 0x495f454d, 0x00454c44, + 0x414d4456, 0x5254535f, 0x00455049, 0x4f4c4f43, 0x42520043, 0x465f4655, + 0x4853554c, 0x444e4500, 0x4152465f, 0x5200454d, 0x54535f43, 0x4d005441, + 0x5f494e49, 0x4d415246, 0x55425f45, 0x424d0046, 0x4f464e49, 0x004e495f, + 0x4e49424d, 0x4f5f4f46, 0x52005455, 0x44495345, 0x5f4c4155, 0x0054554f, + 0x52504f54, 0x4d00574f, 0x52540043, 0x51524946, 0x4d445300, 0x44005741, + 0x54535045, 0x45504952, 0x4c424400, 0x4f4c535f, 0x424d0054, 0x51524949, + 0x52494300, 0x00465542, 0x5249424d, 0x00444145, 0x56455250, 0x49525453, + 0x50004550, 0x4f434349, 0x5400504d, 0x4d004652, 0x464e4942, 0x45485f4f, + 0x52454441, 0x4c424400, 0x52444c5f, 0x4d445600, 0x52545341, 0x00455049, + 0x414d4456, 0x544f4c53, 0x52545300, 0x5f455049, 0x504d4f43, 0x58495000, + 0x4c5f4e49, 0x0044414f, 0x5f574f52, 0x524f5453, 0x4d530045, 0x424d5f56, + 0x4f464e49, 0x4c424400, 0x0053425f, 0x5f465254, 0x524f5453, 0x4f435f45, + 0x5254004d, 0x54535f46, 0x45504952, 0x504d4f43, 0x52544300, 0x504f004c, + 0x50004e45, 0x45535241, 0x504d4f43, 0x534f4500, 0x534f4500, 0x4655425f, + 0x4f455200, 0x52454452, 0x41524600, 0x4953454d, 0x5000455a, 0x49535948, + 0x00000044, 0x004e5552, 0x00424a50, 0x00545753, 0x00424a43, 0x00058000, + 0x0005804c, 0x00000000, 0x00058098, 0x000580f4, 0x00058130, 0x0005817c, + 0x0001a88d, 0x0001a894, 0x00000000, 0x0001a89b, 0x0001a8a1, 0x0001a8a8, + 0x0001a8af, 0x44532020, 0x2020414d, 0x61747320, 0x30737574, 0x20202020, + 0x74617473, 0x20317375, 0x207c2020, 0x6c637273, 0x20206e65, 0x6c747364, + 0x7c206e65, 0x70747320, 0x7c206e65, 0x70747320, 0x7c206469, 0x76656420, + 0x65702023, 0x6e69646e, 0x20000a67, 0x32255b20, 0x20205d64, 0x78383025, + 0x25202020, 0x20783830, 0x207c2020, 0x20643625, 0x64362520, 0x25207c20, + 0x25206432, 0x7c206432, 0x78322520, 0x78322520, 0x23207c20, 0x25206425, + 0x20202c64, 0x20642523, 0x000a6425, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x02020100, 0x03030303, 0x04040404, 0x04040404, 0x05050505, 0x05050505, + 0x05050505, 0x05050505, 0x06060606, 0x06060606, 0x06060606, 0x06060606, + 0x06060606, 0x06060606, 0x06060606, 0x06060606, 0x07070707, 0x07070707, + 0x07070707, 0x07070707, 0x07070707, 0x07070707, 0x07070707, 0x07070707, + 0x07070707, 0x07070707, 0x07070707, 0x07070707, 0x07070707, 0x07070707, + 0x07070707, 0x07070707, 0x08080808, 0x08080808, 0x08080808, 0x08080808, + 0x08080808, 0x08080808, 0x08080808, 0x08080808, 0x08080808, 0x08080808, + 0x08080808, 0x08080808, 0x08080808, 0x08080808, 0x08080808, 0x08080808, + 0x08080808, 0x08080808, 0x08080808, 0x08080808, 0x08080808, 0x08080808, + 0x08080808, 0x08080808, 0x08080808, 0x08080808, 0x08080808, 0x08080808, + 0x08080808, 0x08080808, 0x08080808, 0x08080808, 0x63617453, 0x7461206b, + 0x0a702520, 0x61747300, 0x25206b63, 0x3d206434, 0x25783020, 0x0a783830, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0xba2af493, 0x61f39304, 0x420103f2, 0x32053101, 0xfe0b4105, 0x4ea7fe4e, + 0x99feffff, 0x33830943, 0x34334387, 0x33f9342b, 0xff00004d, 0x4ea73726, + 0xb9ffffff, 0x4b0e504e, 0xcee08bef, 0x202719e1, 0xf3f02103, 0x8e012705, + 0x5024f9fe, 0x4bff000e, 0xce408b4f, 0x0027eb4e, 0x4107fe8e, 0x43dc40ab, + 0x1524d018, 0x44234207, 0x41034253, 0x24231301, 0x14030305, 0xf4980403, + 0x14192586, 0x041d1103, 0xf2a80103, 0x2253fe0b, 0x14012586, 0x04051403, + 0xf2a80403, 0x0533fe0b, 0x180001f5, 0x03f5ff02, 0xff021804, 0x0e234027, + 0x35fde800, 0x000e0304, 0x02f5fde8, 0xff021810, 0x181403f5, 0x0e23ff02, + 0x35fde7f0, 0x4efe0b04, 0x66b207f6, 0x0791072f, 0x8df793a0, 0x6c2703f1, + 0xff8ea740, 0xdb07fdef, 0x0741bc10, 0x077401d6, 0xc3c633c4, 0x23740541, + 0xfefe74ce, 0x4c338411, 0x1d4c5318, 0x07f642cc, 0xe323032d, 0x070c0723, + 0xff7c7e19, 0xf49b4027, 0x2b00270e, 0x071c07bd, 0x7e3d072a, 0xb506ff7a, + 0x9d0bad0b, 0xf68eb91e, 0x04030333, 0x100004f1, 0x4dd8ff02, 0x2710fc6a, + 0xf1f4e843, 0x02100003, 0x6a3ddcff, 0xfe0bf2fc, 0xf11ef493, 0x27430103, + 0xff4ea721, 0x429dfeff, 0x4a3f000a, 0x0b000208, 0x09f493fe, 0x431903f1, + 0xf49332e6, 0x1d04b728, 0x27fe0b42, 0xbdf49331, 0x439d04b8, 0x4eca1e64, + 0xff4ea7fa, 0x4b01fd9f, 0xb8fca007, 0xbed80143, 0x15040000, 0xf0d6f493, + 0x27421903, 0xc5f49331, 0x431d03f0, 0x01342ff6, 0x0000bef8, 0x2700c280, + 0xb1f49321, 0x421d03f0, 0x4fff3ea7, 0xa73201fd, 0xffffff1e, 0x40272287, + 0x0e5913b9, 0xb04024f5, 0x3ff6ff02, 0xf49300ec, 0x1903f094, 0x27109943, + 0xc6261299, 0x6414d135, 0xd1463606, 0x76066814, 0x10149945, 0x02ee44c6, + 0x4d7e00fd, 0x9fdea7ff, 0xcea7fff9, 0x19fd4fff, 0x7bc301d4, 0x0f41dc43, + 0xf99d4ea7, 0x014319ff, 0xd8327bc2, 0xa9be5231, 0xd419ffb6, 0x437bc301, + 0x191741d8, 0x012127d3, 0x3b1207c4, 0x1d31eb14, 0xff4ea7d3, 0x42c5fdcf, + 0x9d1ea768, 0x1419fff9, 0x437bc301, 0x191741d8, 0x01212713, 0x3be207c4, + 0x1d3eebe4, 0xff4ea713, 0x42c5fdcf, 0x2705466c, 0x0ef49b40, 0x5838c4c5, + 0x020000be, 0xeff6f493, 0xd6431903, 0x10bcdc37, 0xff4ea726, 0x42d1ffff, + 0x25a60e5c, 0xafff3ea7, 0x0b3441fd, 0x8e340542, 0x933127fa, 0x03efc7f4, + 0xbcd8431d, 0x3127dc10, 0xafff4ea7, 0x550a07fd, 0xc131be43, 0x930927fe, + 0xffc974f1, 0xff84ec9e, 0xefaaf493, 0x06431903, 0x730abe39, 0x27ff1efe, + 0xbe1a0700, 0x5efec158, 0x3027feb6, 0x4fff4ea7, 0xb50027fd, 0x7d9dbe43, + 0xfe897eff, 0xbefebb5e, 0x1efe6ed3, 0xff4ea7d9, 0x43d1feff, 0x3fe60148, + 0xf75efefd, 0x99fb4efe, 0xc007040d, 0x96050b99, 0xa7fb8ed4, 0xffffdf0e, + 0xff8600be, 0x010fd2d0, 0x072d07c0, 0x2304031b, 0xd8f6be21, 0x27c001fe, + 0x21270c1c, 0xfed8ebbe, 0xffdf0ea7, 0x85b8beff, 0x154027ff, 0x8ec405c4, + 0xa7f54efb, 0xffffff2e, 0x0e6421b9, 0x25b9f2a3, 0xf1650e67, 0x02e015ee, + 0x4c834507, 0x87c4070f, 0x2bc43334, 0x33c42bc3, 0x98ce23c3, 0xc499fff1, + 0xc34fe656, 0x71c74102, 0x99c961c8, 0x7c1855c6, 0x007ea310, 0xc4811000, + 0x4ff6c351, 0xcd990316, 0x210c0724, 0xbecb31ca, 0xe6ff1883, 0x5103470f, + 0x35ca25c3, 0x24cd9dcb, 0xd30733e3, 0xd8073802, 0x0c071907, 0xad072d07, + 0xfe87efbe, 0xc961a90b, 0x49073d07, 0x43e2480b, 0x430702b0, 0xd807492b, + 0x3d07d42b, 0x03ff3d03, 0x3a532707, 0x04112ee3, 0x453fab10, 0x8dc475c2, + 0x3ea726c3, 0x99ffffff, 0xb1272634, 0xb0278486, 0x02424ff6, 0x2754c49d, + 0x270bba3d, 0xf30d284c, 0xc69df42d, 0x07f00125, 0x188cbe1c, 0x55dff6ff, + 0x030c0702, 0xde7e280c, 0x54c499fe, 0x01f94fe6, 0xf4107cf8, 0xf0bff601, + 0x31c35101, 0x2333e3c4, 0xf355143c, 0xc1c1c321, 0x45f3354c, 0x48c0c1f4, + 0xc124c499, 0x610750c2, 0x0b3ccdc1, 0x0bf42560, 0xf6dfe662, 0x30c4c102, + 0x8336c389, 0xb4870f4c, 0xb40b4433, 0xe76cbe23, 0x8d3347ff, 0xc48910b3, + 0x8d444738, 0x6fe612b4, 0x87070183, 0x00008ee3, 0x007dfc10, 0x23017610, + 0x23112321, 0x85f27501, 0x27f095f1, 0xbe0c0770, 0xe6ff177b, 0x0701560f, + 0x2bf35126, 0xc2c18127, 0x23070923, 0x3327051e, 0x3ea7f3e8, 0x11fdefff, + 0x184c3334, 0x131d4c53, 0xeb41c844, 0xe7ff4ea7, 0x154d05fd, 0xa7402742, + 0xfde7ff3e, 0x1c033435, 0xef3ea714, 0x3105fde7, 0x1ea73215, 0x23fde7ef, + 0x3cc3c121, 0x1435a207, 0x2103ad0b, 0x01853fe6, 0x430bf491, 0x017d4dea, + 0x01c6d3ea, 0x02334aea, 0x24864207, 0x94074127, 0x0740c4c1, 0x6f4ff6e2, + 0xc1002701, 0x36a644c3, 0x430bf471, 0xea0d4dca, 0xea017fd3, 0x0701fa4a, + 0x27031e12, 0x008ea310, 0x720b0100, 0x6742c845, 0x4de34807, 0xc4450411, + 0x04964127, 0x44474027, 0x14963127, 0x33873027, 0x43ab49ab, 0xbe05b435, + 0xb125b015, 0xefff3ea7, 0x813411fd, 0x184c33c1, 0x131d4c53, 0x1741cc44, + 0xf3e83327, 0xefff3ea7, 0x333411fd, 0x4c53184c, 0xc844131d, 0x4ea7eb41, + 0x05fde7ff, 0x143c274b, 0x30274315, 0x4ea74335, 0x05fde7ef, 0x141c2741, + 0x43354115, 0xefff3ea7, 0xd83411fd, 0x11fc6a4d, 0xf4e84327, 0xefff4ea7, + 0xdc4311fd, 0xf1fc6a3d, 0x4027f121, 0x6524c19d, 0x31f441c4, 0x27c435f3, + 0xd20b281c, 0x0bba4d27, 0x6d142c03, 0x25c275f1, 0x11f44dc3, 0xbe1c07f0, + 0x02ff16a6, 0x008df867, 0x27fe9c10, 0x54c49d40, 0xa734c399, 0xffe7774e, + 0x41274221, 0x42ab433b, 0xe7771ea7, 0x071425ff, 0x07410345, 0xa75f6b54, + 0xffffff3e, 0x0e6735bd, 0x54eef461, 0x0027fd24, 0xf58ef283, 0xe654c499, + 0x07fdbe4f, 0x104d8347, 0x104ce410, 0xbff6fdb3, 0xdfe6fdaf, 0x1d270097, + 0x3c270bba, 0x2df10d28, 0x25c69df3, 0x1c07f001, 0xff1635be, 0xc4854027, + 0xca65cd75, 0xb91ec745, 0x3027d027, 0xc745c875, 0x27fd665e, 0xc19027e0, + 0x4fe640c4, 0xf381fe95, 0x3dea340b, 0xd4cafe8d, 0x9d3aea28, 0x5e020700, + 0x33e3fe83, 0x932b932a, 0x27fd015e, 0xfd145ea0, 0xea594aca, 0x27fe86a3, + 0x0b132b11, 0xfe7f5e1a, 0xea643aca, 0x27fe5ca4, 0x0b042b01, 0xfe555e0a, + 0xca424aca, 0xe127aea3, 0xea0be32b, 0xec364e07, 0xa41e9407, 0x830e0c27, + 0x27f58ef2, 0x0d0bba4d, 0x281c27f4, 0xf12d4707, 0x45114ce3, 0x25c69dc4, + 0x1c07f001, 0xff1599be, 0x07fd105e, 0x03132b14, 0xfe2b5e11, 0xe32be407, + 0x4e07e103, 0x27c2efc6, 0x5e940741, 0x0307ff63, 0x0103042b, 0x07fdf65e, + 0x2b110314, 0xfe075e1d, 0x01030307, 0xe45e0d2b, 0x03e407fd, 0x07ed2be1, + 0xd4efd64e, 0x385e9407, 0x40cdc1ff, 0xfd07dff6, 0x5e44cdc1, 0xfd4efd01, + 0xffff4ea7, 0x274d99ff, 0xce264199, 0x44b90c1d, 0x48b61564, 0x8613d2c0, + 0xbefd8ed4, 0x46fe6b10, 0x0e002703, 0x1c7d9efd, 0xbb6cbeff, 0x270186fe, + 0x9efd0e02, 0x93ff1c6f, 0xffd402f0, 0xc4be2d07, 0xd11eff7c, 0xf493fd4e, + 0x2904ffc0, 0xce430942, 0xd0272632, 0xb1b2f493, 0x40429904, 0x2e414399, + 0x8e0d0732, 0x170dbefd, 0x270dabff, 0x27048640, 0x07d40741, 0x93fd8e0d, + 0x04b0c3f4, 0x2c032407, 0xe33407c3, 0x3ce37f2c, 0x0334197f, 0x32c2803c, + 0x1ed027f9, 0xa5f0930c, 0x88be04b0, 0xd127ff1e, 0xb09af093, 0x78f6be04, + 0x1e0196ff, 0xff3ea7a8, 0x3411fdef, 0xfc6a4dd8, 0x2723070e, 0x11f4e843, + 0x6a3ddc23, 0xfe0bf6fc, 0xb107fb4e, 0xde3ec007, 0x2b070c07, 0xfeb31ea7, + 0x5efb0efe, 0xfb4ef842, 0xb107c007, 0x1c07c83e, 0x00273b07, 0xfeb32ea7, + 0x5efb0efe, 0xf04ef83a, 0xdf3bcf5b, 0xfc4efe2b, 0x14be0f07, 0xfc0efff9, + 0xff0bf00e, 0x90004f27, 0x43291007, 0xa0004f27, 0x44291007, 0x03fc3d10, + 0x4d10ff1e, 0xff1e03fc, 0x042b0307, 0x0d03000c, 0x412703fc, 0x4027010c, + 0xfe0b0407, 0xd007fd4e, 0xffb049be, 0xb60cd499, 0x0ed49944, 0x01230407, + 0x3d0b3007, 0xc4043499, 0x41270b42, 0x9d04349d, 0x141e0cd0, 0x4fff4ea7, + 0x01d239fd, 0x3b412743, 0x3d42ab43, 0x2700a7d4, 0x0ef49b40, 0x4fff3ea7, + 0x3834c5fd, 0xfd4efd8e, 0xffbed007, 0xd499ffaf, 0x9944b60d, 0x04070ed4, + 0x30070123, 0x34993d0b, 0x27459604, 0x04349d41, 0x1e0dd09d, 0x032d0718, + 0xff4ea722, 0x2139fd4f, 0x41274301, 0x41ab433b, 0x00a7243d, 0xf49b4027, + 0xff3ea70e, 0x34c5fd4f, 0x00fd8e38, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x0001b82c, 0x0001b8cc, 0x0001b78c, 0x8d8bc899, + 0x9a9a9a9d, 0x9ab89a9a, 0x3fb89a9a, 0x9a9a9a9a, 0x9a9a9a9a, 0x9a9a9a9a, + 0x8a8a999a, 0x8a5e8d6f, 0x9a9a9ab6, 0x8a895c8c, 0x8b8a988c, 0x5c954a99, + 0x987a6b8b, 0xb6a6b38c, 0xc57ae38c, 0x7d7c6e6e, 0x7f7d998c, 0x8f6f6d8c, + 0x6c4f6f7f, 0x6e6e3f7b, 0x998c7d7c, 0x6d8c7f7d, 0x6f7f8f6f, 0x3f7b6c4f, + 0x8d86ab5b, 0xa788998a, 0x8b8b9898, 0x6e7d6f6f, 0x6c7c5e6e, 0x8d7d6b7c, + 0x6b7d99b3, 0x99b38d7d, 0x8d7d6b7d, 0x8c7d99b3, 0x98b6b68b, 0x99889888, + 0x886f8b88, 0x00006f8b, 0x00000000, 0x8b6ba099, 0xc9b9c57e, 0x8b9a869a, + 0x98b79a9a, 0x4f5f899a, 0x991f1f3f, 0xc6a9a899, 0x7aa7e04f, 0x5c956f99, + 0x9a9a9aa7, 0xa7a7c49a, 0xb6a7989a, 0x889586b6, 0x7a887999, 0xa7a6d0a9, + 0xb6a7989a, 0x6e7c6e7d, 0x6f7d5e5f, 0x7e7d4f6f, 0x6c4f6f6f, 0x6e7d5d7b, + 0x5e5f6e7c, 0x4f6f6f7d, 0x6f6f7e7d, 0x5d7b6c4f, 0x9a3d8c79, 0x6b5ba76b, + 0x8b8ba76b, 0x998b9aaa, 0x3f7b7b8b, 0x8cb7a67c, 0xa69a9988, 0x99888cb7, + 0x8cb7a69a, 0xaa9a9988, 0x7a8a8a99, 0xa7797a79, 0x978cb797, 0x00008cb7, + 0x00000000, 0x8b6bb999, 0xc9b9c57e, 0x8b9a959a, 0x989a9a9a, 0x4f5f7a6e, + 0x991f1f3f, 0xc68ca899, 0x5e8a7c4f, 0x6b956f99, 0x9a9a9aa7, 0xa7c4c49a, + 0xb6a7989a, 0x889586b6, 0x89887999, 0xa7a6c2a9, 0xb689a79a, 0x6e5e6e7d, + 0x6f7d4f5f, 0x6f6e4e6e, 0x6c5e5f6f, 0x6e7d6c7b, 0x4f5f6e5e, 0x4e6e6f7d, + 0x5f6f6f6e, 0x6c7b6c5e, 0x9a3d8c79, 0x7a5ba76b, 0x8b8ba76b, 0x998b9a9b, + 0x3f7b7b8b, 0x8cb7a699, 0xa69a9988, 0x99888cb7, 0x8cb7a69a, 0xaa9a9988, + 0x6b7b7b99, 0xa7796b79, 0x978cb797, 0x00008cb7, 0x00000000, 0xdc36f293, + 0x7a249903, 0xf49b4447, 0x113f2748, 0x9b720000, 0x24c1a0f3, 0xa3f49bc8, + 0xebe72ea7, 0x051027fd, 0x003f2721, 0x150d8200, 0x9b402723, 0x28030ef4, + 0x3f272105, 0x0dc20000, 0xf49b2315, 0x0528030e, 0x003f2721, 0x150e0200, + 0x0ef49b23, 0x0499fe0b, 0x104cc044, 0x84048922, 0x24104cdc, 0x96f00499, + 0xf4f45345, 0x27040504, 0x93fe0b00, 0xfec03ef4, 0x00270405, 0xf493fe0b, + 0x05fe8993, 0x93e91e04, 0xfecbcbf4, 0xe01e0405, 0x01c1fe4e, 0x13202758, + 0x3027bdf4, 0x05fc0e99, 0xb403ad04, 0xa802d502, 0xb001d502, 0xac02d502, + 0x40ecd402, 0xfe049972, 0x00824ff6, 0x276eefd6, 0x6404b931, 0xb803bd02, + 0x6b41230a, 0x2744344f, 0xb804bd44, 0x8404b90a, 0x994ef602, 0x0299f604, + 0x7f03997e, 0x41274926, 0x8dff3ce0, 0xff2ce000, 0x4fc60083, 0x33438763, + 0xf1430b34, 0x00039443, 0xd53201ff, 0x0b02ac03, 0xa802d523, 0x54048902, + 0x02a403d1, 0x18331407, 0x142b4633, 0x7e6331ca, 0x0027fee4, 0x0499fe8e, + 0x944fd6fe, 0x921e3227, 0x0ab804b9, 0x04bd4103, 0xa01e0ab8, 0x026404b9, + 0x31033e07, 0x03bd4523, 0x4f6b0ab8, 0x278d44d4, 0xb904bd42, 0x07851e0a, + 0x33438732, 0xf1430b34, 0x00039443, 0xd53201ff, 0x0b02ac03, 0xa802d523, + 0xd69b1e02, 0x961e804f, 0x2ce44027, 0x1eff75ff, 0x8856bef3, 0x4e991efe, + 0xff4ea7fb, 0x43d1fbff, 0xb00704a8, 0xde27c407, 0x1c180000, 0x1632dc31, + 0x2722fd9b, 0x76be0e0c, 0x4027000c, 0xd122f49b, 0x1e04a8c3, 0x271b07e7, + 0x0ea7a02c, 0xbefbf75f, 0x27ff6f4b, 0x0ef49b40, 0xfb4efb8e, 0xffff4ea7, + 0xa843d1fb, 0x07b00704, 0x00de27c4, 0x311c1800, 0x9b1632dc, 0x0c2722fd, + 0x0c33be0e, 0x9b402700, 0xc3d122f4, 0xe71e04a8, 0x1ea70b07, 0x27fbf75f, + 0xfb0ea02c, 0xff6f069e, 0x44534007, 0x340b3487, 0x832d3c23, 0x319b0f0c, + 0x34730333, 0x0b100c23, 0x1631c830, 0x277f3c28, 0xfe0b7d0c, 0x0f403ccc, + 0x2b3f4c27, 0x0b044743, 0x7c0c27fe, 0x3c23fe0b, 0xa3034740, 0x4efe0b01, + 0xb004d1fe, 0x3d419902, 0x99564399, 0x4299344e, 0x3318033e, 0x0713ab38, + 0x001ea34e, 0x28030200, 0xab0c4c33, 0xab243314, 0x080e0712, 0x070527e6, + 0x140c332e, 0x01ab2223, 0x1ea72433, 0xd5fbffff, 0x27048010, 0x0200004e, + 0x14d53207, 0x38a30484, 0x048813d5, 0x040010d5, 0x00082fa3, 0x12d50c00, + 0x40270404, 0x043014d5, 0xf84efe8e, 0x077d0a99, 0xa3a2e0c0, 0x012d2701, + 0xfec99905, 0x00df9ff6, 0x00003f27, 0xc4b91000, 0xba070264, 0x230cbc33, + 0x6bb2ab41, 0xf4b3ab4f, 0x9900b648, 0x4b067bc4, 0x02acc4d1, 0x4d994a46, + 0xe0d9a608, 0x2701c6d1, 0x84c4b912, 0xde4fe602, 0x000d2701, 0xff3ea720, + 0x30e5fbff, 0xe5020380, 0x0203c030, 0x018bd2e0, 0x0000bfa3, 0xae668000, + 0xa768c8c1, 0xfbffff3e, 0x53088499, 0x1c34d541, 0xc99fe604, 0x4fa2e000, + 0xfdc49901, 0xd4074103, 0x0284c4b9, 0x4fe6df6b, 0xc4c100c4, 0x83448158, + 0x0000014f, 0x7640e880, 0x3e41e001, 0x020f2701, 0xa7200000, 0xfbffff3e, + 0x030030e5, 0xc0a2e002, 0xff3ea700, 0x34c1fd4f, 0x3640c874, 0x4ea73027, + 0xd5fbffff, 0xd5048c4b, 0xd504084b, 0x27040c43, 0x1443d530, 0x99f88e04, + 0x3027f6c4, 0x43074ef6, 0x435e4f6b, 0xe03127ff, 0x3300bca2, 0x1f5e1c3c, + 0x7434c1ff, 0x00004ed8, 0xc4c1c301, 0x41409958, 0x00ab01f8, 0x8000bda3, + 0x00013e27, 0xaf02d801, 0xffff4ea7, 0x00bea3fb, 0x4bd50100, 0x3ea3048c, + 0xd5020002, 0xd504084b, 0x27040c43, 0x1443d530, 0x27f88e04, 0x6b430731, + 0xfeec5e4f, 0xa2e0d127, 0xd2130081, 0x0284c4b9, 0xff404ff6, 0x01530d07, + 0x0d030f6b, 0x1d074000, 0xffa879be, 0xab100c33, 0xff3ea70d, 0x30e5fbff, + 0xe4020300, 0x99ff44a2, 0x41532884, 0xd5104ca3, 0xf6041c34, 0x2700b19f, + 0x0000010f, 0xff4ea740, 0x40e5fbff, 0xa7020340, 0xfd4fff3e, 0xec7434c1, + 0x5eff2340, 0x2d27ff55, 0x5e5e0511, 0x333027fe, 0x635e1c3c, 0x5e3027fe, + 0xc499ff5d, 0x1543c480, 0x0103c4b9, 0x4fd6d127, 0x5ed02782, 0xc499ff7e, + 0xe743c0fd, 0x0103c4b9, 0xd4074103, 0x6d5edf6b, 0x010f27ff, 0x1e400000, + 0x779fd681, 0x40004d27, 0x03a034e5, 0x00bfa302, 0xe5800000, 0x0203e034, + 0x46fe655e, 0x8ba2e09f, 0xfcc49900, 0x14074103, 0x2e5e1f6b, 0xa34123fe, + 0xfffffe4f, 0xe44103ff, 0x1efe8441, 0x530107bd, 0x000d0301, 0xa7acbe40, + 0x5e0fabff, 0xc399fe19, 0x3e33c0fd, 0x0103cdb9, 0x0d07d32b, 0x7348d0c8, + 0x031d0701, 0xbe40000d, 0x33ffa78a, 0xdfab100c, 0x325e0dab, 0x5e1127ff, + 0x4d27fde1, 0x34e5e000, 0xa30203a0, 0x000000bf, 0xe034e580, 0xef5e0203, + 0x80c499fd, 0xb9be43c4, 0x760103c4, 0xfe0f2747, 0x5ee000ff, 0x0013ff01, + 0xc499b61e, 0x074103fd, 0x5e1f6b14, 0x0f27fda5, 0xc000ffff, 0x4efee85e, + 0x07b007fb, 0x07c403c0, 0x030c071b, 0x20272c1c, 0x000bd1be, 0x04c6d007, + 0xfb8e0d07, 0x1d270c07, 0xb3be0800, 0xd007000f, 0x0c070216, 0x08001d27, + 0xfe7cb2be, 0x0449f453, 0xb4050d07, 0x0000fb8e, 0x00040000, 0xe107f54e, + 0x9107e183, 0x50071e87, 0x1bd1100b, 0x00d1029c, 0x5cd10290, 0xf22302a4, + 0xe79f1ea7, 0x0bc02bfd, 0x93b3070b, 0x03e13bf3, 0x02945ad1, 0x1005d207, + 0x99545289, 0x33294cf0, 0xbf6b8407, 0x1c158f6b, 0x3548f799, 0x15f225f0, + 0x350027f3, 0x8f3ea710, 0x4c27fde7, 0x15340516, 0x35e1c33c, 0xd1ee8730, + 0x0b02a452, 0x7f3ea7e5, 0xe1d1fde7, 0x4103029c, 0x34052a2b, 0x3215a10b, + 0xe76f4ea7, 0x053035fd, 0x3542154a, 0x8fdfe640, 0x03450703, 0x07028c4d, + 0x0304071d, 0x45202718, 0x10a7bef4, 0xa7f01100, 0xfbffff3e, 0x042c30d5, + 0x042034d1, 0x071e42dc, 0x00de27c3, 0xfd9b2000, 0x0f0c2722, 0x0007b8be, + 0xf49b4027, 0x20c3d122, 0xeb32d804, 0x02b052d1, 0x24991127, 0x32238935, + 0x0107943b, 0x043b392b, 0x30073012, 0x47342499, 0x07143b23, 0x6b610741, + 0x533f6b4f, 0x004fa363, 0x33800900, 0x0f6c8338, 0x6da343ab, 0x2c830100, + 0xabf405f0, 0xe6b4d662, 0x21028b7f, 0xe2f211f1, 0x27031012, 0x788fe631, + 0x11f00102, 0x334607f7, 0x4da3143c, 0x0ee31000, 0x75010000, 0x558707f3, + 0xa7f065f4, 0xfbffffce, 0x00009e27, 0x00de2740, 0x1ea70800, 0xd1feffff, + 0xc4014814, 0x2ea70f42, 0x99ffffff, 0x24992623, 0x7a34ce27, 0x7103f111, + 0x011618ee, 0x8fe6b607, 0xf32100c1, 0x37eefa01, 0xc4d100c5, 0x41dc0420, + 0x22f99b17, 0xbe0f0c27, 0x270006ed, 0x22f49b40, 0x0420c3d1, 0xa3eb31d8, + 0x080000be, 0x0424cbd5, 0x04a8c4d1, 0x9b1742dc, 0x0c2722fd, 0x06c7be0e, + 0x9b402700, 0xc3d122f4, 0x32d804a8, 0xa1f293eb, 0x242903df, 0x04a4cad5, + 0x242d4103, 0xc6f75399, 0xba81e034, 0x03f32100, 0x6f73ea81, 0xff3ea7ff, + 0x34d1fbff, 0x42dc0420, 0x27c3071e, 0x200000de, 0x2722fd9b, 0x7ebe0f0c, + 0x40270006, 0xd122f49b, 0xd80420c3, 0x4ea7eb32, 0xd1fbffff, 0x0704a843, + 0x00ce27d4, 0x311c1800, 0x00a032fc, 0x2722fc9b, 0x52be0e0c, 0x40270006, + 0xd122f49b, 0x1e04a8d3, 0xe3f321e6, 0x610300bd, 0x3f73eefa, 0xb053d1ff, + 0x99212702, 0x34893431, 0x23213b0e, 0x30338941, 0x342b429b, 0x49f6f431, + 0x56f75499, 0x07202749, 0x6bf17143, 0xab33534f, 0xfface341, 0xe30f3c83, + 0xab080fbd, 0xabb3aba4, 0x00bda3a2, 0xfefc5e20, 0xeb5efb51, 0x71f053fe, + 0x1e0201fd, 0x20c4d1d3, 0x1c42dc04, 0x0000be27, 0x22fb9b20, 0xbe0f0c27, + 0x270005d5, 0x22f49b40, 0x0420c3d1, 0x93eb32d8, 0x03d343f0, 0x5ef96d7e, + 0xf421ff1d, 0x017074ee, 0xffff4ea7, 0xa844d1fb, 0xdf48fc04, 0x104cfc00, + 0x302700da, 0xde8af093, 0x27032d03, 0x9854d540, 0x9054d502, 0x9454d502, + 0xff3ea702, 0x34d1fbff, 0x4ee30418, 0xd53fffff, 0x41041834, 0x0518bef0, + 0xa7452700, 0xfdeddf3e, 0x3ea73405, 0x81fdefff, 0x0a4dd834, 0x23070efc, + 0xf4e84327, 0x3ddc2381, 0xa7f6fc0a, 0xfdefff3e, 0x34d54327, 0x03070218, + 0x48dc0461, 0xd51427fc, 0xd5021801, 0x27021c01, 0x5803d530, 0xe72ea706, + 0x2305fdeb, 0x00004f27, 0x24150d82, 0xd50ef39b, 0xd5022001, 0x27065c03, + 0x2404d543, 0xff2ea702, 0x2391fdef, 0x27fc38dc, 0x2424d544, 0xdf2ea702, + 0x4027fdeb, 0x3f272405, 0x0dc20000, 0xf49b2315, 0x27f2210e, 0x9227ee01, + 0x03004700, 0x27f58ef2, 0xfd875e30, 0x00004ea3, 0x006da302, 0x5ef4050e, + 0x4027fd6b, 0x9b0ef49b, 0x31dc483f, 0x202d271a, 0x22f29b02, 0xf49b4027, + 0x8b00070e, 0x22f49bff, 0xd8483f9b, 0x4ea7ec31, 0xd1fbffff, 0x33049044, + 0x1d4c534b, 0x41234986, 0x330f4c83, 0xf49b104c, 0x484f9b40, 0x271a41dc, + 0x9b02202d, 0x402722f2, 0x070ef49b, 0x9bff8b00, 0x3f9b22f4, 0xec31d848, + 0x4ea73027, 0xd5fbffff, 0x5e04a843, 0x1507febe, 0x028c1d03, 0xad5ef145, + 0x470027fc, 0x8ef20300, 0x5e7207f5, 0x0507fdb1, 0xfe8f56be, 0x4efec65e, + 0x25f593f5, 0x53c103dd, 0x89564960, 0xf2230c54, 0x32c17007, 0x1a64ca30, + 0x04030707, 0xfbbe1027, 0xf4930008, 0x27fe8158, 0x077405e0, 0x8ef2030e, + 0x0f5499f5, 0x73d149a6, 0x3fe602a8, 0x468702ea, 0x4401430b, 0x4fe6f455, + 0xd707025a, 0x71c1d403, 0xbe0d07c4, 0xa6000b02, 0x07e42709, 0x8ef2030e, + 0xff4ea7f5, 0x43d1feff, 0x32c00148, 0x0b468710, 0xf6400142, 0x2702320f, + 0xb01e0dec, 0x0e07e227, 0xf58ef203, 0x27547489, 0x6073c120, 0xf265469b, + 0x02e634ee, 0x45534607, 0x470b4487, 0x42c13607, 0x1f3c83cc, 0x433b4127, + 0x3607428b, 0x030c5289, 0x35f47531, 0xc6f345f2, 0x75412744, 0xb9f441f4, + 0x53029873, 0x0b448745, 0xcc44c147, 0x3ff6f425, 0xf26100ed, 0x07072586, + 0x07f78e7e, 0xf7f47e07, 0x3ff6f371, 0x74990197, 0x904ff6f7, 0x16f46101, + 0xe6f27145, 0x99021c2f, 0x79b97d74, 0x41e00102, 0x41f40267, 0xfd930208, + 0x93fff33c, 0x03d0aff4, 0x2c032407, 0xe334079f, 0x3ce37f2c, 0x0334197f, + 0x32c2803c, 0x95f893f9, 0xd03903d0, 0x1907db59, 0x07f6f77e, 0x071907c0, + 0xf6ee7e0b, 0x4007da19, 0x79104c33, 0x331907db, 0xab0a07c8, 0xf6da7ec4, + 0x1907c0ab, 0xd17e0b07, 0x180c33f6, 0x8c05c0ab, 0xd4038403, 0x95a08fc4, + 0x93c00005, 0x03d04ff0, 0x61f6367e, 0x713576f3, 0x9944f6f4, 0x4be6f774, + 0xffff0ea7, 0x004e27fb, 0x72d103fc, 0x04d502b0, 0x23990490, 0x0271b93d, + 0x9b462701, 0x6b302743, 0xd5140b4f, 0x0304b803, 0x1402334c, 0x1f6b1407, + 0xf4933127, 0xd503d004, 0x1d04b401, 0x41f23143, 0x0ea127f3, 0x83a02723, + 0xb1271f3c, 0xb33bf421, 0xbff6b48b, 0xf3610133, 0x01283ff6, 0xaff64a07, + 0xfe71011d, 0x0112eff6, 0xbff6db07, 0xf2510107, 0x07071607, 0xfd15fe05, + 0x07f9cb7e, 0x990ff6e0, 0x5c509900, 0x935d5d99, 0x03db1ffc, 0x012e0dee, + 0xc1c12087, 0x5824f148, 0xf1ff0017, 0x00183823, 0x8b410bff, 0xf5302743, + 0x00175824, 0x1803fdff, 0xc1ff0018, 0x180650c1, 0x43f14d87, 0xff001758, + 0x183842f1, 0x310bff00, 0x43f5328b, 0xff001758, 0x1818defd, 0x5449ff00, + 0x41033027, 0x539d544d, 0xb9b5860f, 0x03010074, 0x0074bd41, 0xbcafe601, + 0x45f493fd, 0x431d03cf, 0x07fd9f5e, 0x75fdbe0d, 0xb474a9fe, 0x87035302, + 0x03370b34, 0xb830d541, 0xb474ad02, 0xfe575e02, 0xfd7e03e0, 0xf2030e07, + 0xe727f58e, 0x27fd865e, 0x53be401c, 0x52c1fff0, 0xcc2fe66c, 0x03050700, + 0x1c27200c, 0xf02abe40, 0x6054c1ff, 0x44c10507, 0x0315073c, 0x1c03100c, + 0x95202744, 0x0a33be54, 0x07050700, 0x140c0315, 0x27281c03, 0x0a23be20, + 0x27564900, 0x0f549d41, 0x27fd455e, 0xfef85ed1, 0xed5ee127, 0x5e4127fe, + 0x3127fee2, 0x27fed75e, 0xfecc5eb1, 0x1e1f42c0, 0xf77499ff, 0xfea74fe6, + 0xcea2f093, 0xf4897e03, 0x5ef77499, 0x2027fe5a, 0x1f5ef255, 0x0174b9fd, + 0xf1448701, 0x01b7804d, 0xfdd15e00, 0x8748c0c1, 0x50c4c12d, 0x175821f1, + 0x23f1ff00, 0xff001838, 0x410b400b, 0x3027438b, 0x175824f5, 0xd3fdff00, + 0xff001818, 0xb9fef15e, 0xc3010174, 0xf1448741, 0x01b7804d, 0xfd955e00, + 0xf3653127, 0x99fd175e, 0x3ea70854, 0x33fddfff, 0x4ea30c4c, 0xd5100000, + 0xd5020834, 0xa7020832, 0xfd4fff4e, 0x53c54311, 0xff135e6c, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0xebef2ea7, 0x051027fd, + 0x003e2721, 0x23150400, 0xf49b4027, 0x0528230e, 0x003f2721, 0x150d4200, + 0x0ef49b23, 0xfd4efe0b, 0x43270319, 0xd333d307, 0x0e290139, 0x1200d4f5, + 0x3347ff02, 0x04f10d07, 0xff021000, 0x27f848dc, 0x034e0724, 0x0002f531, + 0x87ff0212, 0xf54a0333, 0x02120032, 0x271187ff, 0x0f4c8330, 0x13f5e653, + 0xff021600, 0x3314ec33, 0x4eab104c, 0x1400d3f5, 0xd4f5ff02, 0xff021404, + 0x8e0ef39b, 0x93fe4efd, 0x03d8e7f1, 0x13691229, 0x4ea71e09, 0x0bfd4fff, + 0x2b421132, 0x0b4ea73e, 0x409dfee3, 0x4d420508, 0x99134943, 0x436d0811, + 0x5309419d, 0x27077608, 0x0ef49b40, 0xff8b0007, 0xe30b4ea7, 0x273027fe, + 0x9d430520, 0xfe8e0842, 0x42734007, 0xf4e84103, 0xfe4ee71e, 0xd8484f9b, + 0x0219fb41, 0x32074327, 0x34f53333, 0xff021200, 0x100031f1, 0xe247ff02, + 0x53181c33, 0x19661d1c, 0x25330439, 0x23f14487, 0xff021804, 0xf1070299, + 0x02160040, 0x0b1123ff, 0x87123b03, 0x0b42273e, 0x0034f501, 0x8eff0212, + 0x273e87fe, 0xf5002742, 0x02120034, 0x4efe8eff, 0x070e31fc, 0xc2d20731, + 0x00210be1, 0x010be12b, 0xfc8e2e05, 0x41270191, 0x2b2d1299, 0x23423b3e, + 0x8bc40741, 0x03325bc3, 0x0312a141, 0x874c2b31, 0x0bd40533, 0xbe300132, + 0x0bfe6521, 0x4efc8e0c, 0x390219fa, 0x07c00703, 0x27033302, 0x0004f544, + 0x87ff0212, 0x07402733, 0x0034f520, 0x03ff0216, 0x29432724, 0xf5f063c1, + 0x02120024, 0x0024f1ff, 0xdcff0210, 0x4107f848, 0x34274a03, 0x530f4c83, + 0x0023f516, 0x33ff0212, 0xd027141c, 0xab104c33, 0x000df541, 0xf5ff0214, + 0x02140404, 0x0efd9bff, 0xc331cb51, 0x196c3bc2, 0xf14333c4, 0x02100043, + 0x183c33ff, 0x441d3c53, 0x55f04334, 0x07fa8ecb, 0x070c072f, 0xff397e1b, + 0x2f10f201, 0x01000001, 0x00002f27, 0xc4190100, 0x4533c339, 0x43f5f205, + 0xff021800, 0x180442f5, 0x4e23ff02, 0x35fde800, 0x004e034d, 0x40f5fde8, + 0xff021810, 0x181442f5, 0x4e23ff02, 0x35fde7f0, 0x31f4014d, 0xcab40bc3, + 0xc441a8b3, 0x07a34fc6, 0x2bd40bd3, 0x9adfc6db, 0x4333c419, 0x100043f1, + 0x3c33ff02, 0x1d3c5318, 0x278734c0, 0x000000af, 0x071b0701, 0x7e2f070c, + 0xf101febf, 0x00011f10, 0x1a070100, 0x1d071d02, 0xc339c419, 0xf1054533, + 0x180043f5, 0x41f5ff02, 0xff021804, 0x4e232027, 0x35fde800, 0x004e0342, + 0x40f5fde8, 0xff021810, 0x181441f5, 0xf301ff02, 0xe7f04e23, 0x2b4235fd, + 0xe6b30bd3, 0x19ff2cdf, 0xf14333c4, 0x02100043, 0x183c33ff, 0xc41d3c53, + 0xf0439834, 0xfa8ecb55, 0xd007fd4e, 0xf37e0d07, 0x27d419fd, 0x03e44735, + 0xf54333e1, 0x02120043, 0x272e87ff, 0x0024f543, 0xf1ff0212, 0x02100021, + 0x181c33ff, 0x661d1c53, 0x99e43316, 0xe3f107d4, 0xff021804, 0x143b1123, + 0x4227130b, 0x120024f5, 0x24f1ff02, 0xff021000, 0xcef848dc, 0xd019af10, + 0x2047d451, 0x412b2103, 0xd4553287, 0x34f12123, 0xff021000, 0x39f848dc, + 0x271007d3, 0xf5133344, 0x02120014, 0x273387ff, 0xf5210340, 0x02160034, + 0x272287ff, 0xf5d02943, 0x02120024, 0x0024f1ff, 0xdcff0210, 0x4007f848, + 0x34274a03, 0x530f4c83, 0x0023f506, 0x33ff0212, 0x3027140c, 0xab104c33, + 0x0013f540, 0xf5ff0214, 0x02140414, 0x0ef39bff, 0xf84efd8e, 0x07050499, + 0x07b00782, 0xf68f6ba1, 0xa700ef4f, 0xffffff9e, 0x99391c99, 0x9db95513, + 0xc30b0e66, 0x4c2b4d07, 0x4ff64f6b, 0xcea70119, 0xb9ffffff, 0xee0e64c4, + 0xa700e14d, 0xffffff3e, 0x187c34b9, 0x011a4ff6, 0x41034d07, 0x0e6634bd, + 0xf19d0ea7, 0xf60439ff, 0x0700ba4f, 0x0f4c834d, 0x34872407, 0x232b2433, + 0x2333242b, 0xf1982e23, 0x99b295ff, 0x3a0794a4, 0x9154249d, 0x703c03b4, + 0x27304c03, 0x01192709, 0x0501233e, 0x0334034e, 0x81f19844, 0x25235124, + 0x2733e3b4, 0x06b89d41, 0x3505b49d, 0x45b055b3, 0x1cae99b0, 0x5107be9d, + 0x99b465a4, 0x2e9d1cae, 0x44a4c12d, 0x3540a3c1, 0x48a4c124, 0x24452325, + 0x9d95ae99, 0xa499552e, 0x9946561a, 0xa39960a4, 0x2744d619, 0x27320041, + 0x9d430b40, 0xa4992424, 0x274f5639, 0x27b41d46, 0x094d2739, 0x06b2992c, + 0xb42db33d, 0x66102cc0, 0x9604b499, 0x9d412745, 0x0b0704b4, 0x27fcc27e, + 0xbef88e00, 0x5eff6e53, 0x0ea7ff43, 0xbefff19f, 0xb9ff6e8e, 0xee0e64c4, + 0x91ff12d4, 0xe33027c4, 0x04ffff4d, 0x0200004e, 0x0c273127, 0x7cc3bd0c, + 0x1ef88e18, 0x9d0ea7ff, 0x63befff1, 0x9db9ff6e, 0x4d070e66, 0x4f6b4c2b, + 0xfed44fe6, 0xf88e0b27, 0x8e0c0c27, 0x03b451f8, 0x1eb45544, 0x07fc4e94, + 0x48cf9bd0, 0x33fbc1d8, 0xcc5317cc, 0x9b40271b, 0x0d074af4, 0x53fdb37e, + 0x13d051c3, 0x2bc383c4, 0x8ed0550c, 0x99fe4efc, 0xf0630604, 0x4c20e107, + 0x8ef04310, 0xfa14d0fe, 0x1f07e423, 0x30272427, 0x0fbefe05, 0xf043fe6f, + 0xfa4efe8e, 0x07040499, 0x6bd007b1, 0x3e4826bf, 0x91d451a5, 0x75a027dc, + 0xa64127c4, 0x07ca65b6, 0x2746f6b4, 0x56cb9d40, 0x9d05da9d, 0xfa8e04d4, + 0xca654027, 0x41a6b407, 0x0d07d151, 0xf493a03e, 0x5103d3d0, 0x7442c1d3, + 0x43c5320b, 0x9bd51e74, 0x41dc484f, 0x202d271a, 0x22f29b02, 0xf49b4027, + 0x8b00070e, 0x22f49bff, 0xd8483f9b, 0x4f9bec31, 0x9b42e348, 0x039948f4, + 0x5231c049, 0xf49b4027, 0xab1a3340, 0x001ea31f, 0xf19b0500, 0x004e2740, + 0xf49b0500, 0x003e2740, 0xf39b0220, 0x484f9b40, 0x271a41dc, 0x9b02202d, + 0x402722f2, 0x070ef49b, 0x9bff8b00, 0x3f9b22f4, 0xec31d848, 0x99484f9b, + 0x42e37a03, 0x43ab3347, 0x0b48f49b, 0x004e27fe, 0xf49b0700, 0x003e2740, + 0xf39b0f00, 0x004e2740, 0xf49b0701, 0x4e961e40, 0x21fb93fb, 0xb41903d3, + 0xf39345a6, 0x99049ae0, 0x4fd60534, 0x9b442769, 0xfc9321f4, 0xa703c840, + 0xfeffffde, 0xf093c401, 0x8b03c834, 0x0ad499f4, 0x3b233007, 0x32104536, + 0x262b04cc, 0x9b402701, 0x02c021f4, 0x27044c64, 0xff4ea730, 0x43bdfeff, + 0xb4191cfc, 0x30274586, 0x9a92f493, 0x06439d04, 0x8e0d03c0, 0x000e03fb, + 0xd27e4e20, 0x13b61ef9, 0xf4933bf3, 0x2703d2ac, 0x8e430500, 0x063499fb, + 0x99934fd6, 0x41dc0434, 0xd434598d, 0xa787104c, 0xfffb330e, 0xff6d04be, + 0xff7b04ec, 0x003960be, 0xffe017be, 0xfb8e0027, 0xa71e0427, 0x0ea7fd4e, + 0xbefffae3, 0xe8ffe8f2, 0x93009900, 0x03d26bfe, 0x8960e3c1, 0x34890ce1, + 0x07200728, 0x33233330, 0x2b419b35, 0xc52e0732, 0x3e2368e4, 0x03fffad4, + 0xd627642c, 0x21014627, 0x3105d123, 0x34032403, 0x4227f498, 0x052004fd, + 0x3ea7ff00, 0x27ffffff, 0x6634bd41, 0x0f329906, 0xf49b4027, 0x8741270e, + 0x4024f522, 0x93ff02b0, 0x03d20bf3, 0xe49d4027, 0x1331190e, 0x3ea76ef2, + 0x93feffff, 0x03d1f3f4, 0x1cfc3dbd, 0x14d64205, 0xfd8e0027, 0x003a59be, + 0x99aaf493, 0x05439904, 0x6dbe3216, 0x0027ffdf, 0x0627fd8e, 0xfc4efd8e, + 0xc107d007, 0x22f9357e, 0x8e00270c, 0x7e0d07fc, 0xd151fb30, 0x1c0bd431, + 0x271241ca, 0x0ad44110, 0x0715f614, 0xf9b17e0d, 0xfc8e0027, 0xee1e142b, + 0x74be0d07, 0x04c8feaa, 0x4efc8eeb, 0x8dfc93f6, 0xc41903d1, 0xf3934586, + 0x9904994c, 0x4c760534, 0xd17ef993, 0x0e9d9903, 0xc66096c1, 0x44275edf, + 0x510e949d, 0x25302764, 0x50669994, 0x948d4027, 0x64969d78, 0xffff4ea7, + 0xfc43bdfe, 0x28f2531c, 0x45f493fe, 0x302703d1, 0x42050027, 0x8e7493c5, + 0x063499f6, 0x99ba4fd6, 0x41dc0434, 0xd43459b4, 0xa7ae104c, 0xfffb330e, + 0xff6b98be, 0xbea204cc, 0xbe0037f5, 0x27ffdeac, 0xa7f68e00, 0xfffb330e, + 0xffe743be, 0x0fe08007, 0xffffffff, 0x4ea700b7, 0x01fd4fff, 0x9d400743, + 0x43336693, 0x936c9dc5, 0x03c17ff3, 0xd165f293, 0xe041f103, 0xf1ff0004, + 0x0004dc4c, 0x7f3ce3ff, 0x197f2ce3, 0x803c0334, 0xc1f932c2, 0xc9066090, + 0xb107a007, 0x07407c27, 0x10dc070b, 0xd70741cc, 0x8bbe1d07, 0x0a07ffe6, + 0xcd2b1d07, 0xffe66bbe, 0xad0bbd0b, 0x4027c076, 0x04d084fd, 0x3ea7ff00, + 0x79fffb33, 0x274a7634, 0xc1302741, 0x949d609d, 0x99932d0e, 0xfc9318d4, + 0xc003d080, 0x8925104c, 0xd0c128d1, 0x962fbe34, 0x4d0fabff, 0x4cd489c0, + 0xc08d040b, 0xfef05e0c, 0xfb310ea7, 0x69f9beff, 0x8dc51eff, 0xc34d0cc3, + 0xa7fedd5e, 0xfeffff4e, 0x3ea74211, 0xd1ffffff, 0x87065431, 0xf5c41922, + 0x00156821, 0x274606ff, 0xf1f49330, 0x05270497, 0x8e06439d, 0x8e0527f6, + 0x07fd4ef6, 0xc21111d1, 0x04197d12, 0x4533d301, 0x211b320b, 0x43f50139, + 0xff021800, 0x180442f5, 0x3027ff02, 0xe8004e23, 0x034335fd, 0xfde8004e, + 0x181041f5, 0x42f5ff02, 0xff021814, 0xe7f04e23, 0x352027fd, 0xa6de2143, + 0x26d131eb, 0x0b04191b, 0x1b4533e2, 0xf5013921, 0x0218004e, 0x0442f5ff, + 0x27ff0218, 0x004e2330, 0x4335fde8, 0xe8004e03, 0x1041f5fd, 0xf5ff0218, + 0x02181442, 0xf04e23ff, 0x4335fde7, 0x212bfd8e, 0x0000bc1e, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x9966f393, 0x20340103, 0x02084a4f, 0x234fc000, + 0x0b00020a, 0xf453ff1e, 0x3405030b, 0xf453fe0b, 0x3405012a, 0xf4933027, + 0x9d04610c, 0xfe0b0643, 0xff32269e, 0x4127fe4e, 0x3e06049d, 0xa6c2bef4, + 0x8e0027ff, 0x31ff9efe, 0xff2ea7ff, 0x03c1ffff, 0x5424d144, 0x0e34ce06, + 0x065423d5, 0xfb330ea7, 0x960439ff, 0x9efe0b44, 0xa7ff32a7, 0xffffff4e, + 0xb9fc43c1, 0xca010044, 0x430b1303, 0x830e40c2, 0x03330f0c, 0x007c00f9, + 0xfe0bff00, 0xfe0b0027, 0x6f45f493, 0x053027fe, 0x4c03bd04, 0x0b002701, + 0x93fd4efe, 0x04608ffd, 0x02d8d4d1, 0x45d6e007, 0xef89f493, 0x0d0c27fe, + 0xfd8ee405, 0xffff3ea7, 0x9032d1ff, 0x2b442115, 0x47418342, 0x9442e944, + 0xe9ff0015, 0x00159843, 0xd532caff, 0x02f802d1, 0x2c834127, 0x0712070f, + 0xe904bd32, 0x33133302, 0x27312b35, 0xd8d0d140, 0xc5322b02, 0x2387bce4, + 0x230b0171, 0x0603f453, 0xe4052333, 0x20001e83, 0x642f0301, 0x96000678, + 0xdcd4d117, 0x2a238902, 0xd4d54103, 0x3cd802dc, 0x40271d10, 0xe49d0027, + 0xc1fd8ede, 0x41abe824, 0x89e824c5, 0x31831e03, 0x034e23bd, 0x0027d41e, + 0xfa4efd8e, 0x5fe6fa93, 0x9d402704, 0xfb9365a4, 0x930458a8, 0x045e37fc, + 0xf093b401, 0x8b04589c, 0xf6d007f4, 0x26c41906, 0xa7302742, 0xfeffff4e, + 0x1cf043bd, 0x0d07c31d, 0x3027fa8e, 0x04ccc31d, 0xff4ea719, 0x43bdfeff, + 0x03c41cf0, 0xfe6a7e0a, 0x0d07d027, 0x02c4fa8e, 0x91f093de, 0xa27e045f, + 0x05a499fe, 0x4ea747d6, 0x11feffff, 0xff2ea743, 0x24d1ffff, 0x33870654, + 0x34f50d07, 0xff001568, 0xd44cfa8e, 0x5f66f093, 0x5efa0e04, 0x0d07fe60, + 0xfe1587be, 0xf54eef1e, 0x0ea7d027, 0xbefffae3, 0x93ffadbc, 0x045f47f8, + 0x4fff5ea7, 0x1df693fd, 0xe00704a9, 0xffff0fe0, 0x00f7ffff, 0x20074007, + 0x25334333, 0x29f9242b, 0xff00052c, 0x053023f1, 0x4907ff00, 0x4f034333, + 0x00066834, 0x03884dc1, 0x0000003f, 0xc1d31580, 0xa2078447, 0x3c833707, + 0x07b3070f, 0x33b33343, 0x2b4b2b45, 0x0bc48743, 0x03c333c4, 0x067864cf, + 0xd4c1c100, 0xfad4ae23, 0x4c14c1ff, 0x00aa4ff6, 0x053424f1, 0x14c5ff00, + 0x2e24f94c, 0xc5ff0005, 0xd4016414, 0xfff04d5c, 0x00004f3c, 0x54110fff, + 0x078414c5, 0x0b463343, 0x2b62014b, 0x0b433343, 0x3c41d142, 0xd1a24111, + 0x89114040, 0x210b14a3, 0x43d5300b, 0x42d51140, 0x83c1113c, 0x3b412780, + 0xc534eb49, 0xcd998083, 0x9dd1230c, 0x84590ccd, 0x845d4123, 0xe4fd4027, + 0xff000520, 0xfae33ea7, 0x563479ff, 0xc1d5f649, 0x474e4484, 0x08071c07, + 0xfe6ae3be, 0x0ea7d127, 0xbefffae3, 0x07ffacb8, 0xff0fe4e0, 0x0dffffff, + 0x8e0d07ff, 0xe10ea7f5, 0x0cbefffa, 0xce1eff30, 0x053420f1, 0x401bff00, + 0xff6040ec, 0xf94c10c5, 0x00052e24, 0x6414c5ff, 0x4eff515e, 0x0df693f5, + 0x6ac1045e, 0x9d402744, 0xaf836564, 0x8000000f, 0x69c1f0a3, 0xe6a0e850, + 0xf6643902, 0x5901214f, 0x104cf464, 0x61c101a2, 0x27702780, 0x3127102c, + 0x4307373b, 0x4fe6418b, 0x7103031c, 0x92c1f278, 0x50979d3c, 0x4a073a07, + 0x33062299, 0x2b453333, 0x51929d43, 0x6bc14a2b, 0x0b148744, 0x3494c114, + 0x331cbc33, 0x07b4ab13, 0x07f11547, 0x99433321, 0x2f033895, 0x00066834, + 0x21a9f405, 0xf0011058, 0x105623a9, 0x4f834b07, 0x0fffffff, 0x058c04f5, + 0x319bff00, 0x85075333, 0x059003f5, 0x8f03ff00, 0x00066834, 0x13a122b9, + 0xa94461c1, 0xa901088d, 0x9d010a8c, 0x01f56092, 0x000668b8, 0x0275cdf2, + 0x69385cf1, 0xed070006, 0xec0be333, 0xe823da46, 0x4b07e301, 0x4c5343cb, + 0x76e8031c, 0x2b4b0748, 0x1b40cc43, 0x5d26f493, 0x26437904, 0x232e0739, + 0x1d07102c, 0xd123e207, 0xf1f8e803, 0x250701e7, 0x68342f03, 0x23a90006, + 0x3df20108, 0xe40100ee, 0x00d6b4ee, 0x278063c1, 0xeb473b41, 0xedf09334, + 0x63c5045c, 0xfbfb7e80, 0x4ea73027, 0xbdfeffff, 0x7e1cf043, 0xd027fba4, + 0xf0830d07, 0x41e0f58e, 0x0ea7011f, 0xbefffb33, 0x07ffab7e, 0xff0fe0d0, + 0x88ffffff, 0x33c00702, 0xe0c0f1c3, 0x09ff0004, 0xbe190792, 0xbeffa33b, + 0x09ffaa85, 0x9dfb9394, 0xc4f5045c, 0xff0004dc, 0xc56866c1, 0x42275c96, + 0x04d0d4fd, 0xdea7ff00, 0x39fffb33, 0x7b4ff6d4, 0x07c02701, 0x7ebc3d0b, + 0x4ea7fb89, 0xbdfeffff, 0x7e1cf04c, 0xb499fb34, 0x99462605, 0x453606b4, + 0xf804b499, 0x7e015e41, 0x1dbefb50, 0xd027ffa2, 0xf0830d07, 0xdc27f58e, + 0x41f09316, 0x527e045c, 0x056499fb, 0x0d074186, 0xfe125fbe, 0x5c2ef093, + 0x0ef08304, 0xfb265ef5, 0x4f83f001, 0x0fffffff, 0x01042cd1, 0x059004f5, + 0x3333ff00, 0x3ec23c0b, 0x23130725, 0x1e210718, 0x11182303, 0x15200124, + 0x34300534, 0x4333104c, 0x68bc43f5, 0x28230006, 0xe1ca3107, 0x033507e5, + 0x0668343f, 0x0834a900, 0x01f21101, 0xf54103f1, 0x0668bc1e, 0x0834ad00, + 0x15eb0501, 0x342f03e7, 0xb9000668, 0x03103c24, 0x3c24bd41, 0x27635910, + 0x3d310341, 0xc1635d64, 0x64813c9b, 0xf793b801, 0xea045ba4, 0x8900f148, + 0xb4494a63, 0x5b96fc93, 0xee6d7104, 0x0700ad34, 0x070d071b, 0xa219be28, + 0x81c471ff, 0x0bbb49c3, 0xc5382b48, 0xcdc53c9d, 0x85c4754c, 0x4acb8dc3, + 0x4a073a07, 0x45333333, 0x4a2b432b, 0x430b3487, 0x44e94333, 0x0006788e, + 0x8d049399, 0x62b95894, 0x929d02d4, 0xd464b955, 0x03430b02, 0xbd4f6b41, + 0x9902d464, 0x32275692, 0x633d420b, 0x02d464bd, 0x01fe615e, 0xcb4b0723, + 0x530b0743, 0x28231c4c, 0x4ff6032b, 0x00e8fe0a, 0x035efdfc, 0xa3a123fe, + 0xfffff0af, 0x5ea103ff, 0x0d07fd11, 0xff2cdabe, 0x59fe805e, 0x104cf4b4, + 0x0d07fe9f, 0xff2d9cbe, 0xfe9c08e8, 0x5ef9e37e, 0xccc1fe92, 0x3c9cc54c, + 0xd6ff6f5e, 0x1e277dcf, 0x27010000, 0x2027800c, 0xff2981be, 0xd5101c27, + 0xed010480, 0x06693e51, 0xfd6e5e00, 0x43ab4107, 0x5e8064c5, 0x7cc1fce2, + 0xdf0ea744, 0x8abeffff, 0xdc07ff29, 0x990fdc83, 0xd3332470, 0x20271c07, + 0x0080dbf9, 0xabbeff00, 0xc0070280, 0x93810d26, 0x430b4b87, 0x40053b07, + 0xd3fd3103, 0xff000080, 0xffdf0ea7, 0x2930beff, 0x247399ff, 0x9bc14127, + 0x85433b3c, 0x5e7c7574, 0x1c07febf, 0x010480d1, 0x30be1433, 0xcc47ff28, + 0x1fab1c07, 0x693e51ed, 0xf55e0006, 0xdf0ea7fc, 0xfbbeffff, 0xd627ff28, + 0x27fdf05e, 0xea5e15dc, 0xd1f94efd, 0xb902f803, 0x8302e901, 0x23070f3c, + 0x23334307, 0x422b4533, 0xc487432b, 0xc333c40b, 0xcf03d007, 0x00067864, + 0x011a1fe6, 0xd9994027, 0xe904bda0, 0x109ce002, 0xd0c10134, 0xb0d189bc, + 0xe2bead07, 0xd399ff57, 0x032d0705, 0xea2503a4, 0x27017003, 0x07110310, + 0x19410b42, 0xc2410743, 0x4a0bf430, 0xcea94419, 0x431b034c, 0x010fe4e2, + 0x07b2db89, 0xea202b2b, 0xe60125e2, 0x07014b2f, 0x19310b3a, 0x2b310334, + 0xf842ca40, 0xd48d4fab, 0x5cd1bdd4, 0x2ac48901, 0x8d104c18, 0xf493d4db, + 0x9904a3f4, 0x30a71844, 0x015dd4bd, 0x02aac4b9, 0x015ed4bd, 0x0374c4d1, + 0x41c34253, 0xd4bd4183, 0xc4b90160, 0xd39d035d, 0x4fd4bddb, 0x9d402701, + 0xd39dc3d4, 0xdad39dc2, 0x036cc3b9, 0xabff3ce0, 0xd7d49900, 0x00a44fe6, + 0x02e8deb9, 0x00bde2e0, 0x41534307, 0x0bc2d49d, 0x9033993c, 0xc1dad39d, + 0x4df8e8c4, 0x00912000, 0x14001d27, 0x0bd4d489, 0x194bca40, 0x402b4b07, + 0xf86ef353, 0x034ec2b9, 0xd48dd305, 0x101ca3d4, 0x11a32486, 0x1ca3e4b6, + 0x109c4420, 0x034ec4b9, 0xab104ca3, 0xc5032714, 0xf98ed0d1, 0x89b00489, + 0x03c1d401, 0x4c02b9bc, 0x0b419b01, 0x802c8334, 0xd9994027, 0xde049da0, + 0xbdbc03c5, 0xe4014c02, 0xfed0109c, 0x27b2db89, 0xbd002740, 0x8d015cd4, + 0x1a5ed4db, 0x2b4307ff, 0x20e4ca40, 0x5eb2db89, 0xc4c1ff04, 0xe8deb9e8, + 0x004dfc02, 0x27ff7320, 0x5e04001d, 0x2e07ff70, 0x89feda5e, 0x4e07b2db, + 0xb9fee35e, 0x07036dc4, 0x9d315334, 0x4c0bc2d3, 0x9d904499, 0x405edbd4, + 0x271027ff, 0xfe9c5e40, 0xc35e4027, 0x93f74efe, 0x04a597f4, 0x89084389, + 0x80070a42, 0x7107322b, 0x3d03300c, 0x34d603fc, 0xf78e0027, 0x4ce94287, + 0x1007d012, 0xc3039307, 0xb207ac07, 0xa2739123, 0xc323b103, 0xd0104de9, + 0xa9d21007, 0x9308270e, 0xff89bff1, 0xff1e16be, 0x8c2da907, 0x84298d0d, + 0x0bb9dd24, 0x66484cc4, 0xdd24141e, 0x4cc40bba, 0x0a1e5c28, 0x0bbbdd00, + 0x0bbcddc4, 0x07802951, 0x23070b37, 0x7f3ce301, 0x197f0ce3, 0x803c0334, + 0xc6f930c2, 0x071707a7, 0xfcbd103a, 0xfcbd2303, 0xf14b8703, 0x07d01044, + 0x05b10310, 0x38140314, 0xfcbd10f3, 0xfcbd2303, 0xedf39303, 0x3b8d04a4, + 0x003f270a, 0x271007e0, 0x8e3b2d01, 0x930627f7, 0xff8956f1, 0xff1d96be, + 0x0000a41e, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x1007fd4e, 0xd1871f6b, + 0xcf48df03, 0x08530005, 0x01103f9b, 0xf1f293d4, 0x2ed102bc, 0x432b014c, + 0xe19dd405, 0x4a24b908, 0xff3ea701, 0xe49dfd4f, 0x3c24a909, 0xb9e44d01, + 0xa9014024, 0x11013e21, 0x6d410b32, 0xf6e205e4, 0x9b402707, 0x00070ef4, + 0x4027ff8b, 0xe4053027, 0x9b08e39d, 0xd401102f, 0xd405420b, 0x4007fd8e, + 0x41034273, 0xe31ef4e8, 0x4ea7fd4e, 0x01f7ffff, 0x07d00743, 0x0d38dc01, + 0xfd8e16d6, 0x10060e27, 0xff767e27, 0x22be0d07, 0x0256fdf9, 0xfd0efd8e, + 0x4eff675e, 0xff3ea7f5, 0x34c1f3ff, 0xdcb00734, 0xd3072942, 0xffffcea7, + 0xc54827f7, 0xb0d140c4, 0x422701d4, 0x2738d4c5, 0xad3e131c, 0xd3c53027, + 0x40c3c538, 0xd834d4c1, 0xb489e042, 0x90b3898e, 0x63475447, 0xa027cb07, + 0xffffdea7, 0x207d27f7, 0xf14a8702, 0x0c001449, 0xd1d301ff, 0xd801d4b8, + 0x9fdc4332, 0x04000000, 0x27d7a51e, 0x03d4b540, 0xc4c103a1, 0x4127dca2, + 0xffff3ea7, 0x552027f3, 0x05b29d34, 0xd5c5f58e, 0x3cd6c538, 0x076ac499, + 0x1f4c833a, 0x83104c33, 0x204ca331, 0xd4a543ab, 0xcc1ed9b5, 0xd4c54a27, + 0x27080740, 0xff2a7e1b, 0xd4c54827, 0xdcd30140, 0xe91ea932, 0xc007fc4e, + 0xffffdea7, 0xdc0b1ef7, 0x0d272241, 0x997e640a, 0xdcd401fe, 0x48d81044, + 0x270c07ef, 0xfefa7e10, 0x44d8d401, 0x9e0227f2, 0x8efe276d, 0x000000fc, + 0x0003e80d, 0x0003e80b, 0x0003e807, 0xf1a3f54e, 0x9107a007, 0xa469161e, + 0x460b4b2b, 0x41c84f8b, 0xddf41364, 0x0a074101, 0xa7febf7e, 0xffffff2e, + 0x010224a9, 0x010423a9, 0x92a9b407, 0x43070348, 0x422b4b1b, 0x9da97407, + 0x7fab0346, 0xf305d72b, 0x3ea7d123, 0x99feffff, 0xd0e80934, 0x4383019b, + 0x34333407, 0x342b4487, 0x005432f1, 0xa401ff00, 0x8e238307, 0xe2ffffb4, + 0x99018c24, 0xa69909a4, 0x934fd608, 0x02bc92d1, 0xf235c127, 0x84191207, + 0x990f1c83, 0x13330483, 0x31075307, 0xff843e23, 0x7c12f9ff, 0x15ff0000, + 0x00f345f4, 0x18c02752, 0xc2a3402c, 0x14f9c906, 0xff00007d, 0x231e4cce, + 0xff4ea7b1, 0x43b9ffff, 0x4b070108, 0x030f4c83, 0x53344eb1, 0x01ff2ff2, + 0xff4c5e21, 0xffff3ea7, 0xb92b07ff, 0x83010834, 0xf2550f2c, 0x00b224ee, + 0xfe5379be, 0x2ea78459, 0xa9ffffff, 0x25010223, 0xae3beef4, 0x27e42700, + 0x9b402704, 0x2ea70ef4, 0x21fd4fff, 0x3824c5f3, 0xd608a39d, 0x2ea75def, + 0xa9feffff, 0x27014224, 0xad4103c1, 0x9d014224, 0x3ea709ac, 0x11fd4fff, + 0xa9ab6d32, 0x07034694, 0xcc92d53d, 0xabf25102, 0x2b923d3f, 0xc0932d43, + 0xd9163641, 0xffff3ea7, 0x673cbdff, 0x0f329906, 0xf49b4027, 0x8731270e, + 0x4023f522, 0xd1ff02b0, 0x2102bc94, 0xce410383, 0x05c87634, 0x0310072d, + 0x03e8001e, 0x31fea15e, 0xff2ea7f3, 0x3f6bfddf, 0x4da34387, 0x24d50400, + 0x2ed50208, 0xb31e0208, 0xfe66f453, 0x7f5e4101, 0x8004e0fe, 0x8ef183fe, + 0x0424a9f5, 0xeef30101, 0x21ff4c43, 0x4664eef4, 0x118419ff, 0x3e42eef2, + 0x817fe6ff, 0x39f24100, 0xc3c4ee24, 0x05a49900, 0x00b54ff6, 0xf3318421, + 0x272934ca, 0x27e22741, 0x05a49d02, 0x19ff1c5e, 0x1d44a394, 0xd1841e94, + 0x2702bc94, 0x83410302, 0x8ea405f1, 0x830227f5, 0xb6f58ef1, 0xff4ea7d9, + 0x2ea7ffff, 0xd1feffff, 0xd10e4c43, 0xc2013c24, 0x4b075143, 0x2ea74103, + 0xadffffff, 0x27010224, 0x6d0027e0, 0xfed35e84, 0x41034b07, 0xffff3ea7, + 0x27e027ff, 0x0234ad00, 0xfebf5e01, 0xf605a499, 0xe6ff7c4f, 0x31ff785f, + 0x9f0ea7f3, 0x8325fff9, 0x31278419, 0x841d4103, 0xbe05a39d, 0x5efe251b, + 0xf331ff5d, 0xf99f0ea7, 0x253103ff, 0xbef33583, 0x31fe2507, 0x05a499f2, + 0xf2352123, 0x27944fc6, 0x5e0227e2, 0x2c3dfe75, 0x4ea73027, 0xadffffff, + 0xa9010a43, 0x07010444, 0xa7340b37, 0xffffff2e, 0x0427e427, 0x010423ad, + 0x4efe505e, 0x33c107fb, 0x2b1333c5, 0x0b4007c1, 0xdc43d14c, 0xe6e00701, + 0x0700f33f, 0xd944b9d4, 0xe94ff601, 0xff4ea700, 0x41c1fdef, 0x5443c164, + 0x33181c33, 0x3c53183c, 0x1d1c531d, 0x01dcd2a9, 0x31071312, 0x01ded0a9, + 0xb307321b, 0xb0073002, 0x01e2d1a9, 0x3fab4b07, 0x042b4fab, 0x310b432b, + 0x3fab240b, 0x01e0d4a9, 0x01ded0ad, 0x01dcd2ad, 0x01e2d3ad, 0x009834e2, + 0x3c07d407, 0x34a93e0b, 0x0d0701e4, 0x0666042b, 0xd180e189, 0x0701ec32, + 0x0b241130, 0xb8241541, 0x6ce489f3, 0xa7754dce, 0xfeffff3e, 0x1cd434a9, + 0x400b1c07, 0x1cd434ad, 0x1dad1e0b, 0x312701e4, 0xcfff4ea7, 0xda12b9fd, + 0x7043c501, 0xbcc62d16, 0xcea70b07, 0x27fde66f, 0xdea740bc, 0xd1fde6af, + 0xd101e812, 0x890118e3, 0x320b86e4, 0xc405430b, 0xe489cb15, 0x0b202784, + 0x89c23543, 0xd4057ae3, 0xd235d315, 0x01e813d1, 0x0b80e489, 0xe814d543, + 0xccf0f001, 0xd307fb8e, 0x07ff695e, 0xa91e0b1c, 0xca01e014, 0x14d1824d, + 0x30a701ec, 0x43152127, 0x01d912bd, 0x4eff725e, 0x060199fb, 0x02893427, + 0x99317b7e, 0x32120c04, 0x24073207, 0x43332533, 0x3fab242b, 0x23ad200b, + 0x048901dc, 0xad432b7e, 0x9601de24, 0xdc24a91e, 0x074dc601, 0xa7c02712, + 0xfde66fde, 0xa740bc27, 0xfde6afee, 0x01e812d1, 0x011803d1, 0x0b860489, + 0x05430b32, 0x89db15d4, 0x20278404, 0xd235430b, 0x057a0389, 0x35e315e4, + 0xe813d1e2, 0x80048901, 0x01dc12a9, 0x14d5430b, 0xc10301e8, 0x8ec6c2ca, + 0x89fb4efb, 0xc0076804, 0x3ea74ca6, 0xc1fdefff, 0x0b994434, 0xe04cd80c, + 0xd1d30716, 0x2701d4c0, 0x01f40c1e, 0xc1fa5b7e, 0x4cdc44d4, 0xc2d1eee0, + 0xc1890120, 0x47230180, 0x1443c241, 0x410b2401, 0x23112405, 0x2115130b, + 0xc48d4027, 0x07fb8e68, 0x3305330b, 0x070b2bb3, 0xa93c0b30, 0xa901e034, + 0x0301e232, 0xe034ad41, 0xe034a901, 0xd80d0301, 0x0b1c0701, 0xd80d2310, + 0x4942ca01, 0x4007d207, 0x43a94c0b, 0xed0701e4, 0xe626e32b, 0xc1891251, + 0x113e0780, 0x15410b24, 0x89f3b824, 0x4dce6cc4, 0xff2ea728, 0x24a9feff, + 0x30071cd4, 0x24ad4e0b, 0x3c0b1cd4, 0x01e43dad, 0x4ea73127, 0xc5fdcfff, + 0x851e7043, 0xb71ed407, 0x1c0b1007, 0x01e014a9, 0xd1cf4dca, 0xa701ec14, + 0x15212730, 0xd912bd43, 0x00bf1e01, 0x00000033, 0x000000ff, 0xfb63f54e, + 0x013404d1, 0x07a0f1c5, 0x5a41e0b0, 0x27702702, 0xc5112750, 0xf7c59cf7, + 0x94f7c598, 0xc590f7c5, 0xf7c570f1, 0x88f7c58c, 0xc584f7c5, 0xf5c580f7, + 0x78f5c57c, 0x2774f5c5, 0xa7c02790, 0xf3ffff3e, 0xdc3434c1, 0xd3071541, + 0x01d4b0d1, 0xf4081e27, 0xf93e7e01, 0xd834d4c1, 0xb4d1ef41, 0x4eb60134, + 0x8663b399, 0x24b4a93d, 0xe04f8b01, 0xfffffe4f, 0xc10b60ff, 0x4ea7a0f2, + 0x95f3ffff, 0x4432e042, 0x8343070b, 0xa3443343, 0xc120004d, 0x31fc88f3, + 0x4efc051e, 0x2c020000, 0x70f9c10d, 0x4fa39516, 0x08000000, 0xffff3ea7, + 0x273425f3, 0x43340540, 0xc1f58efb, 0x4ea79cfe, 0xc1f3ffff, 0x4e9594f1, + 0xc598f2c1, 0xf3c14041, 0x4442c58c, 0x01323fe6, 0xe663b499, 0xc1012b4f, + 0x4ff684f4, 0x7ea30132, 0xd1180000, 0xb901d0b0, 0x26018504, 0x63b49945, + 0x04dc4ff6, 0x3888f1c1, 0x63b49911, 0x04d84ff6, 0x00007efc, 0xc104dd02, + 0x251670f2, 0x00007fa3, 0xdea70800, 0x25f3ffff, 0x39b4b9d7, 0x86202702, + 0xb9212744, 0x27019404, 0x27448630, 0xab420731, 0xc146a643, 0xf4c180f3, + 0xc5d3a57c, 0xfec158d4, 0xc5d5b578, 0xf1c17cde, 0x15148674, 0x05b499d9, + 0x07954ff6, 0x04b9dc05, 0xbec102b4, 0xf8b1c1fc, 0x00b444f8, 0x012ab4a9, + 0x2c032107, 0xd144470f, 0xa902a40a, 0xe80128b3, 0x73047120, 0xabd20724, + 0x93d4f2df, 0x032e0700, 0x20e80f2c, 0x24730e2b, 0x0fab0207, 0x33472007, + 0x230b249b, 0x0c2d30fa, 0x1c331c07, 0x1a1c5311, 0x43078027, 0xfec14103, + 0x0d04d274, 0x0c70eff6, 0x42073807, 0x433d4a0b, 0x012ab4a9, 0x41034447, + 0xa930d4d2, 0x0b0128b4, 0xd2344720, 0xeff61303, 0x38070e35, 0x420b4a07, + 0xb3a9431d, 0x33470128, 0x41034307, 0xe60c04d2, 0x538907e4, 0x2a0b198c, + 0xb0d1283d, 0x1f1e01d0, 0xe684fec1, 0x99fedeef, 0x4fe663b4, 0x7ea3fed7, + 0x5e020000, 0x1c07fecf, 0x53111c33, 0x04d11a1c, 0x4c8302bc, 0x3334870f, + 0xf1340b44, 0x0013fc32, 0x0034e9ff, 0x0bff0014, 0xc1410312, 0x34ed90f2, + 0xff001400, 0x13fc31f5, 0x2fe6ff00, 0x40270352, 0xa905b49d, 0xa9012ab3, + 0x430128b4, 0x90b38dfb, 0x8e8eb48d, 0x2803a9f5, 0x74048901, 0x012e0cb9, + 0x034443e2, 0x012a03a9, 0x277c0489, 0x27340a20, 0x078c8721, 0x0b2f6b48, + 0x90f2c54b, 0xe6bc49c1, 0xa70fcacf, 0xfddfffde, 0x3580ac27, 0x6cd4c1da, + 0x8370d3c1, 0xffffff4f, 0x4530e87f, 0x4149ee03, 0x0b280703, 0xbc24c12b, + 0x07a0f9c1, 0x83c18334, 0xab310347, 0x07c33394, 0xc59cab43, 0x4f83bc23, + 0xbfffffff, 0xe09cf9c5, 0x990cd248, 0x32e063b3, 0x73070a99, 0x74337383, + 0x01d0b8d1, 0x026080b9, 0x062f0ff6, 0x90274127, 0xc570f4c5, 0xf4c564f9, + 0x5cf4c560, 0xa958f4c5, 0xc6034c8c, 0x84a97bcf, 0x4fd6034a, 0xe80fe66a, + 0x6181b90a, 0x891fa602, 0xb3c172b2, 0x334207fc, 0xa9432b45, 0xf40128bd, + 0x0ecb204c, 0x01230207, 0x23a92807, 0x2ea90262, 0x33e30264, 0x03124007, + 0x4d0e4307, 0x0727d4d2, 0x0343e34e, 0x07401243, 0xd24d0e40, 0xb3a9184d, + 0x24a9012a, 0x340e0266, 0x24a93442, 0x43020268, 0x00007ea3, 0xf0280302, + 0x8cadc1f1, 0x84a9034a, 0x4123034a, 0x034a84ad, 0x0128b9a9, 0x076cb489, + 0x23215329, 0xee102741, 0xa909ed24, 0x89012abe, 0x4e0774b3, 0x53a8fec5, + 0x86c12741, 0x27c02724, 0x274486e1, 0x6b3123e0, 0x33c6331f, 0x06b099e8, + 0x39ee2027, 0x2f6b09b0, 0xc57cb489, 0xf2c16cf2, 0x274123a8, 0x9824ee30, + 0x24b4a909, 0xc53f6b01, 0xf3c5a4f4, 0x8543f868, 0xc5202707, 0xf2c598f2, + 0xedbd9994, 0xb9eeb499, 0x83036183, 0x334183d1, 0xdc33164c, 0x33d4ab15, + 0x33378309, 0xd0ab173c, 0xab6cf4c1, 0x331733d3, 0xd1ab0f4c, 0xab68f3c1, + 0x90f4c1d4, 0xab103c33, 0x0c4c33d3, 0xd4ab3027, 0x025cb3bd, 0x84b9d7ab, + 0xdcab0194, 0x4ff6deab, 0xe0270582, 0xfec55027, 0x88fec58c, 0xc584fec5, + 0xf5c580fe, 0x78f5c57c, 0xc174f5c5, 0x44e664f4, 0x0000dea3, 0xa4fcc118, + 0x836cfec1, 0x8eeff6c3, 0xc1332704, 0x1ff668f1, 0x2c27047b, 0x337c070c, + 0xb97dab7a, 0xab038584, 0x0672ab73, 0x8684b94d, 0xd14c4603, 0xe6039882, + 0xd1097a2f, 0xc1038883, 0x4307a8fe, 0x4eee429b, 0xe4c20b9a, 0x0721030d, + 0x23439b42, 0x9ee4ea21, 0x8c83d109, 0x23430703, 0x1042ce41, 0x038884d1, + 0x9ba8f2c1, 0xea412343, 0xb9094d42, 0x27012eb1, 0x27110061, 0x68f3c160, + 0x01213ff6, 0x1ff60127, 0xd127011b, 0xd0279496, 0x2760f4c1, 0x864d8b30, + 0xc1312744, 0x3f6ba8f4, 0x01064fe6, 0xf604b499, 0xc100ff4f, 0x9fe65cf9, + 0x212700f8, 0x0fe6a827, 0x3fe600fc, 0x012700f8, 0x00f2c1e0, 0x00f42ff6, + 0xc16cf4c1, 0x41c358f9, 0xe027498b, 0x00f44fe6, 0x00f02fe6, 0xc3e04127, + 0x93470910, 0x90ab9aab, 0x019483b9, 0x9eab4433, 0x3fe694ab, 0xb4b900ea, + 0x45460239, 0x025cb4b9, 0x08a94fe6, 0xdfe614d6, 0xb49908c6, 0x83c40718, + 0xfec13fcc, 0xabc93374, 0x67efe6c9, 0x19b39903, 0x991bb999, 0x3c831ab4, + 0x3f9c833f, 0x333f4c83, 0x9c33193c, 0xab493319, 0x5e94abc3, 0xb499fa9f, + 0x06302763, 0xc3430748, 0x5e418341, 0x4ea3fca4, 0x5e020000, 0x2027fade, + 0xf2c53127, 0x90f3c59c, 0x27fd1a5e, 0xc3430731, 0x5e418341, 0x7ea3fc84, + 0x5e180000, 0x7ea3fb20, 0xf8020000, 0x0200007e, 0x7ee3fb27, 0x5e180000, + 0x2c03fb1f, 0xfb8d5e0f, 0x01d4b0d1, 0xa5101c27, 0xf3967eda, 0xd4a54027, + 0x27fc9a5e, 0xfee45e00, 0x2f6b2607, 0xa333a207, 0xff080ff6, 0x2fe60027, + 0xf4c1ff10, 0x58f9c16c, 0x498b41c3, 0x4ff6e387, 0x9347ff10, 0x90ab9aab, + 0x019483b9, 0x9eab4027, 0x3ff694ab, 0xb4b9ff1a, 0x4fe60239, 0xf1c102c1, + 0xba1ff690, 0x5cb4b902, 0xb24ff602, 0x2eb2b902, 0x0b428701, 0xbc44c14b, + 0x47834123, 0x09bb2ff6, 0x4e234533, 0x01e4d000, 0x11f33543, 0x21fe454e, + 0x31f15541, 0x41f36543, 0x51fe754e, 0xd0bed141, 0x61f18501, 0xacfec543, + 0x4471f395, 0x0128b3d1, 0xf4a51627, 0xc541e499, 0x149b40f1, 0xb940f1c5, + 0xc50238b4, 0x35963cf4, 0xb2d52556, 0xb2d50248, 0xe0270240, 0xfeb51427, + 0xc530fec5, 0xf1c534fe, 0xb13e07b0, 0x833153f4, 0x33244741, 0x07230b34, + 0x0c3c033f, 0x2499230b, 0xc52d1904, 0x283938f4, 0xc1052399, 0xa40738fe, + 0xad0b4807, 0x5207430b, 0xa40bed1b, 0xe0e85103, 0x48070908, 0x40e8432b, + 0x4e120743, 0xe0e8e407, 0x239908f3, 0x0c26990d, 0x99085c99, 0x13070820, + 0x1c0b4607, 0x140b400b, 0x1a0b3c1b, 0x08d030e8, 0x462b4007, 0x071040e8, + 0x34074312, 0x482b4d07, 0x06ff40e8, 0x34074312, 0x4c2b4007, 0x08ab40e8, + 0x43122307, 0x54992407, 0x38f3c104, 0x30e8342b, 0x42070894, 0x43073212, + 0xe4123407, 0x54993e07, 0xe8461b0c, 0x1206c740, 0xc1340743, 0xf2c130fe, + 0xc1e30b34, 0xf3b1b0f4, 0x210b1353, 0x41233103, 0xc530fec5, 0xf3b534f2, + 0xf6b0f4c5, 0xb9ff2e4f, 0x230239b0, 0x6b400701, 0xf001034f, 0xe0093742, + 0x2708c703, 0x3cf4c120, 0x40e8420b, 0x4c080923, 0x334c2734, 0xf3c1d407, + 0x0bdf6b40, 0x6b43073d, 0xacfec14f, 0xb908f49d, 0x1203a0e3, 0x08430734, + 0x4c27344c, 0xacf1c133, 0xb908f49d, 0x9903a013, 0x341209f4, 0x4c084307, + 0x334c2734, 0x9dacf2c1, 0x23b909f4, 0xf49903a0, 0x0734120a, 0x344c0843, + 0x9d334c27, 0xf4c10af4, 0xa043b9ac, 0x0bf49903, 0x43073412, 0x27344c08, + 0xf49d334c, 0x08fa990b, 0x890e03d0, 0xb3a972b4, 0x41230128, 0x08d934ee, + 0x07acfec1, 0xa0e4b93d, 0x074d1203, 0x343ce834, 0xdc27076d, 0x234d0733, + 0xbcd10c4c, 0x448701d0, 0x02b8c3d1, 0x2ed440f1, 0x3ff60003, 0xb49909e6, + 0x83200763, 0x4ff67f2c, 0xef2707a0, 0x54000000, 0x036ac4b9, 0x07a54ff6, + 0x4d071207, 0x2f74d5f9, 0x3d070003, 0x333f4c83, 0xab345348, 0x0e3c3354, + 0xab0fdc33, 0x07300753, 0x53ca074d, 0x004e8331, 0xcc833c00, 0x83d5333f, + 0x0fff803e, 0x54ab2153, 0xdf83c933, 0x03c00000, 0xe0ab32ab, 0x01ff1d83, + 0xc9ab4027, 0xc578f3c5, 0x5dab80fe, 0xc57cf1c5, 0x902774f4, 0x07f7565e, + 0xf0d17e0b, 0x01d0b0d1, 0x99f8635e, 0x438366b4, 0x825e2487, 0x65b399fb, + 0x705e3383, 0x68fec1fb, 0xd694b3c1, 0xe06fe6e4, 0x6cf4c104, 0xc9074533, + 0xc4abc3ab, 0x1c5e9027, 0x12b4b9f7, 0x874fe602, 0x28b3a900, 0x14b2a901, + 0xc123e202, 0x18b4a904, 0x7334ca02, 0x021ab4a9, 0xa96c43ca, 0xee0216b1, + 0xa9071d23, 0x270218b4, 0x1b34ee20, 0xc3420707, 0xc5418341, 0x13ee60f4, + 0xb4a906fe, 0x2027021a, 0x070934ee, 0xe1c3e207, 0xfec5e183, 0x08b4b958, + 0x5e4fe602, 0x0ab2a906, 0x4832ea02, 0x0cb4a906, 0x4043ea02, 0x60f1c106, + 0x23ee15c6, 0xb4a907f4, 0x34ee020e, 0x112707ec, 0xf1c52027, 0x64f2c570, + 0x5e5cf1c5, 0x4127f95b, 0xc570f4c5, 0xf4c564f4, 0x5cf4c560, 0x5e58f4c5, + 0xf37df947, 0xf33df31d, 0x8499f35d, 0x9b362741, 0xb9530734, 0x6b0238b6, + 0x0b45075f, 0x18b49d46, 0x9d1bb49d, 0xb49d1ab4, 0xa8fcc119, 0xc1831b07, + 0x47181c03, 0xb93c4729, 0xc502608a, 0xf2c554f1, 0x4cf3c548, 0x0385afe6, + 0x026181b9, 0x037d1fe6, 0xc172b289, 0x4207fcb3, 0x432b4533, 0x86204cf4, + 0x23e20708, 0x272807e1, 0x6224a970, 0x6420a902, 0x0743e302, 0x07e4123e, + 0xd2390e34, 0x40072493, 0x430343e3, 0x4e074e12, 0x49d2490e, 0x2ab3a915, + 0x6624a901, 0x42340e02, 0x6824a934, 0x27430202, 0xf0280371, 0x84b9c4f1, + 0x4ce00194, 0xf4043eff, 0x0171114c, 0x0169aff6, 0x01d0bad1, 0xa3b91027, + 0x76070198, 0xc550f1c5, 0x410788f1, 0xc14cf9c1, 0x490b50fe, 0xc407ee47, + 0xfec5c433, 0x59f15344, 0x0b2027f5, 0x271e01c4, 0x1623da00, 0x02ec0103, + 0xf25303b6, 0x2e01f544, 0xa3b92027, 0x32d20198, 0x0b4c07ec, 0x994b0b42, + 0x3fe61c43, 0x32070391, 0x34334287, 0x380b342b, 0xa948f1c1, 0x0b019c34, + 0x7a14ea10, 0x9e34a903, 0x7241e201, 0x07210303, 0x33428732, 0x07342b34, + 0xb91a0b13, 0xca019a19, 0x4127b9e9, 0x025cb4bd, 0x019814d1, 0x33a9380b, + 0x4ffc0198, 0x02000000, 0x360b04d1, 0xf1c13fab, 0x0b4f0744, 0x1d410b10, + 0xe83f8b42, 0x28052c30, 0xf453343c, 0x4301f4c0, 0xfec17307, 0x077f6b54, + 0x0b450b47, 0x07141d1e, 0xd1328742, 0x3301d0ba, 0x0b432b44, 0x9b43b94a, + 0xc1315801, 0x11a388f1, 0xb988f1c5, 0x070198a3, 0xff545ee9, 0x27a8f3c1, + 0x27348621, 0x199ff620, 0xc1d12702, 0x2516a0b3, 0x4fe6b479, 0xae2702b3, + 0x47040000, 0xab3dab4d, 0x98f3c534, 0x0798f4c1, 0x133c3331, 0x4aab43ab, + 0x2798f4c5, 0x002ff638, 0x86b45902, 0xe632a344, 0xa302351f, 0x86d49634, + 0xab412744, 0x94f3c534, 0x99f8305e, 0x4fe6ecb4, 0x4d27f4b9, 0xbc5e2030, + 0xa0f1c1f4, 0x00001ea3, 0xa0f1c540, 0xf6f4965e, 0xd1fe977f, 0x2701d0ba, + 0xc5760730, 0xf3c58cf3, 0x84f3c588, 0xf339f419, 0x029934ee, 0xfec5e127, + 0x007d2774, 0x71a4b940, 0x18b39903, 0x34124f4b, 0xa3b94307, 0x3f4b0372, + 0x43074312, 0xb918b49d, 0x990371a4, 0x4f4b19b3, 0x43073412, 0x0372a3b9, + 0x43123f4b, 0xb49d4307, 0x71a4b919, 0x1ab39903, 0x34124f4b, 0xa3b94307, + 0x3f4b0372, 0x43074312, 0xb91ab49d, 0x990371a4, 0x4f4b1bb3, 0x43073412, + 0x0372a3b9, 0x43123f4b, 0xb49d4307, 0x18b3991b, 0x03a0a4b9, 0x43073412, + 0x27344c08, 0xb49d334c, 0x19b39918, 0x03a0a4b9, 0x43073412, 0x27344c08, + 0xb49d334c, 0x1ab39919, 0x03a0a4b9, 0x43073412, 0x27344c08, 0xb49d334c, + 0x1bb3991a, 0x03a0a4b9, 0x43073412, 0x27344c08, 0xb49d334c, 0xa0a3b91b, + 0x12460703, 0x08430736, 0x4c27344c, 0xb9340733, 0x6b03a082, 0x0723123f, + 0x343ce832, 0xcc270085, 0x234c0733, 0xa3d10c4c, 0x448702b8, 0x2ed440f1, + 0x3ff60003, 0xb49904b0, 0x83200763, 0x4ff67f2c, 0xef27009e, 0x54000000, + 0x036aa4b9, 0x009e4ff6, 0x4c071207, 0x2f74c5f9, 0x3c070003, 0x333f4c83, + 0xab345348, 0x0fcc3354, 0xab0e3c33, 0x074c0753, 0x004e8330, 0xc5333c00, + 0x54ab3153, 0xff803e83, 0x8321530f, 0xc00000cf, 0xab32ab03, 0xff1d83e0, + 0xabd7ab01, 0x78f3c55c, 0xc580fec5, 0xfc5e7cf1, 0x6bc307f6, 0x0cccf4cf, + 0x4027ff79, 0x27ff795e, 0xf6675e31, 0x4f5e2127, 0xecb499f6, 0xf5644fe6, + 0x5e307c27, 0x1127f564, 0x27f6125e, 0xfcd85e70, 0x1ff6d027, 0x3027fde7, + 0x5e98fdc5, 0xef27fe09, 0x2a000000, 0xa3ff635e, 0xfe0f5e36, 0x42071207, + 0x45331333, 0x1df0140b, 0xff580200, 0x01ff1d27, 0xe3ff515e, 0x1800004e, + 0x07f2d05e, 0x111c331c, 0x071a1c53, 0x6b4a0781, 0x1d420b8f, 0x28b3a948, + 0x5e334701, 0x4fe6f3c6, 0x34a3fdcd, 0x27fdc85e, 0xfb245e40, 0x0216b1a9, + 0xfb4d31e2, 0xa3fb385e, 0x0200007e, 0x034a8cad, 0xe4f5755e, 0xf838ff3c, + 0xd1f7535e, 0xc1038884, 0x42e2a8f2, 0x7ea3f6b7, 0x5e020000, 0x3c47f6af, + 0x5e1a3c53, 0xb499f38e, 0x209ca318, 0x27f7385e, 0xfd515ea0, 0x385e4013, + 0x5e4013f9, 0x4013f900, 0x13f8ef5e, 0xf8bc5e40, 0xef5e4027, 0x007ea3f6, + 0x5e5e0200, 0x98a3b9f6, 0x5e210301, 0xf4c1fc5a, 0xc5410350, 0x42e450f4, + 0xbea9fc1c, 0xb1a9012a, 0xb9a90124, 0xb8d10128, 0x202701d0, 0xc5a8fec5, + 0xf2c5a4f1, 0x84f2c58c, 0x59fd635e, 0x6532eef2, 0xeef479fd, 0x07fd5f42, + 0x27402767, 0x74f4c570, 0xb9fd5c5e, 0xc1019984, 0x42eaa8f2, 0x84b9fd2f, + 0x49ea0198, 0x4ea7fd27, 0x03f7ffff, 0x004cd5c1, 0x0842d101, 0xd0bad101, + 0xb9f21501, 0xd103a1a3, 0xa601084c, 0x33420735, 0x1b4c7343, 0x3f6b3407, + 0x0260a4b9, 0x7fe644c6, 0x31e4fcf7, 0xfe11fcf3, 0x0000effc, 0x038a4000, + 0x4c334e07, 0x1a4c731a, 0x460b3c07, 0x123f3c83, 0x08430734, 0x4c27344c, + 0x071e0733, 0x141c3374, 0x7f6b4c07, 0x331a1c73, 0xf71d144c, 0x0b1a4c53, + 0x07411216, 0x341c0814, 0x07331c27, 0x0e0c330e, 0x1f6b4c07, 0x331a0c73, + 0xf13d0e4c, 0x0b1a4c53, 0x07401206, 0x340c0804, 0x07330c27, 0x334c073e, + 0x730f6b38, 0x48331a3c, 0x4c53f05d, 0x12360b1a, 0x08340743, 0x3c27343c, + 0x6b4e8733, 0x1f4c533f, 0xc51fec53, 0xfec584f4, 0x0723078c, 0xc5e02747, + 0x250b88fe, 0x050b150b, 0xb49d450b, 0x19b19d18, 0x9d1ab09d, 0xf37d1bb2, + 0xc3fc4b5e, 0x0000083f, 0xbc23c540, 0x03f3265e, 0xd35e0f2c, 0x6bd307f1, + 0x0cdcf4df, 0x4027f891, 0xa9f8915e, 0x2a020eb4, 0x10b4a934, 0xb634e202, + 0x27e027f9, 0x70f9c591, 0xc564fec5, 0x205e5cfe, 0x99a4b9f3, 0xab340b01, + 0xfb2c5e3f, 0x6b5e3013, 0x5e4013f7, 0x3013f754, 0x27f72f5e, 0xf70c5ee0, + 0xf75ee013, 0x333907f6, 0x3c53113c, 0xf1c65e1a, 0x0000ef27, 0x615e2a00, + 0x234533f8, 0xe49e004e, 0x07f6465e, 0x33420712, 0x0b453313, 0x001df014, + 0x27f85102, 0x5e01ff1d, 0x4127f84a, 0x036a83b9, 0x038784bd, 0xfe073ff6, + 0x00007fa3, 0x625e0800, 0x5e3027f4, 0x9027fadc, 0x5e58f9c5, 0xe027f911, + 0x5e60fec5, 0x2127f8f2, 0x27f8e45e, 0xf8f65e21, 0xd130f2c1, 0x530244be, + 0x002ef022, 0x00f60100, 0x07104c27, 0xf0235b34, 0xe201002d, 0x27182700, + 0x07235b38, 0x102cf032, 0xc42700ce, 0x325b2427, 0x00bd34f0, 0x2227d227, + 0xf2c1325b, 0xab14abac, 0xbc24d11c, 0x531dab02, 0xd613ab31, 0x2027784f, + 0x0240b4d1, 0x0248b3d1, 0x3103410b, 0x0240b4d5, 0x0248b3d5, 0x27f6d85e, + 0xf6e25e40, 0x00ec02e0, 0xc134f4c1, 0x445330fe, 0x270e4ec2, 0xb94b0b40, + 0x4b023a42, 0xf6b75e2f, 0x5334f4c1, 0x7ce4ca43, 0x5334f4c1, 0x274e2242, + 0x27e31e42, 0x89df1e43, 0xb3a97cb4, 0x4123012a, 0xf71e43ee, 0x0248b1d1, + 0x00831ff6, 0x0244b1d5, 0xb4d54027, 0xb4d50248, 0x055e0240, 0x7de1d2f7, + 0x4e2b4107, 0x35333407, 0x342b4447, 0x077e30c8, 0x2c247323, 0xfffff92f, + 0x5e26a7ff, 0x28e8ff6c, 0x2727ff68, 0x27ff635e, 0x5e2027d0, 0xc027ff44, + 0x335e2027, 0x271027ff, 0xff1f5e30, 0x30274027, 0x27ff0c5e, 0xff6f5e41, + 0xf81431fc, 0x012ab4a9, 0xf80c41fc, 0x31272027, 0xc570f2c5, 0xf3c564f2, + 0xf1655e5c, 0x5fbe1b07, 0x4b5efdf2, 0x40b0d1fb, 0x3c9bbe02, 0x44b0d5fe, + 0xff765e02, 0x073a1ece, 0x874e2b41, 0x0b453334, 0x8430cc34, 0x5e0f3c03, + 0x4247ff7f, 0x4653420b, 0xff19e4e2, 0x44534207, 0x07a1e4c2, 0xe2435342, + 0x07ff26e4, 0xe2425342, 0x27ff22e4, 0xfeff5e44, 0xcd5e20a7, 0x072123fe, + 0x230fab02, 0x07e10701, 0x6223a928, 0x6421a902, 0x0733e302, 0x07031240, + 0xd24d0e43, 0x310729d4, 0x330333e3, 0x03124007, 0x4d0e4307, 0xa9184dd2, + 0xa9012ab3, 0x0e026624, 0xa9344234, 0x02026824, 0x007ea343, 0x28030200, + 0xadbffef0, 0x5e034a8c, 0x1b07f12e, 0xfdf1b1be, 0xa7f6155e, 0xfddfffde, + 0xd2352127, 0xc148d4c1, 0x4f834cd3, 0x7fffffff, 0x94ee3008, 0xb0d1f03d, + 0x1c2701d4, 0x7ed2a510, 0x4027e710, 0xd91ed4a5, 0xe6f8a499, 0x99fc734f, + 0x4507f7a6, 0xb49d460b, 0x1bb49d18, 0x9d1ab49d, 0x5d5e19b4, 0x072123fc, + 0x230fab02, 0x07e10701, 0xa9702728, 0xa9026223, 0xe3026421, 0x12400733, + 0x0e430703, 0x2694d249, 0x33e33107, 0x40073303, 0x43070312, 0x49d2490e, + 0x2ab3a915, 0x6624a901, 0x42340e02, 0x6824a934, 0x27430202, 0xf0280371, + 0x735ec2fe, 0x99fa4ef7, 0xd0076304, 0x4ff6a107, 0xb0270275, 0x0670d489, + 0xff1ea74f, 0x14c1fdef, 0x4813c138, 0x335812c1, 0x2c33183c, 0x1d3c5318, + 0x331d2c53, 0x320b184c, 0x0b1d4c53, 0x073a4634, 0xd4d0d1c1, 0x0c1e2701, + 0x557e01f4, 0x38c4c1e6, 0xc148c3c1, 0x3c3358c2, 0x184c3318, 0x531d3c53, + 0x2c331d4c, 0x53340b18, 0x320b1d2c, 0x01d33fd6, 0x030d07a4, 0x7ea40541, + 0x0d07eba9, 0x8d7e1b07, 0x63d499ec, 0xdbc146e6, 0x5ed4a9a8, 0xa2b4f202, + 0xacd3c101, 0xead0d4c1, 0xc1014034, 0xd399a8d4, 0xc3420364, 0xc4d1c131, + 0xc5c8d2c1, 0xd39da8d4, 0x3621c264, 0x0bccd4c1, 0xc4d4c541, 0xd2c5420a, + 0x1cdcd1c4, 0xc4d3c101, 0x34c2c411, 0x0dd1991d, 0xa07e0d07, 0xd4d0d1e9, + 0x0c1e2701, 0xc17e01f4, 0xc1c311e5, 0x34cac4d4, 0xc1ae01e5, 0x4ee2d0d4, + 0xd41900e7, 0xc103ce07, 0xc66cda89, 0xff3ea748, 0x3411d07f, 0x9b80d289, + 0x1624c22c, 0x34113225, 0x070f24c2, 0x1a1c2703, 0xf3e83107, 0x42ca0411, + 0x70d189f8, 0x00b11fe6, 0x0663d299, 0x62d4a92d, 0x404ec202, 0x0118d0d1, + 0x0110d4d1, 0x0b82d389, 0xe0030b04, 0x27019a22, 0x310780bc, 0x31233153, + 0xe71f2ea7, 0x073183fd, 0x0b439b4b, 0x15240540, 0x3510272b, 0x0731c321, + 0x0b439b4b, 0x15240540, 0xd021352b, 0x3a0755e2, 0x4c073203, 0x012c3cea, + 0x1e2b1407, 0xd2d11e66, 0xeea70110, 0x27fde69f, 0x0ea740cc, 0xd1fde6df, + 0x890118d3, 0x320b86d4, 0xe405430b, 0xd489ec15, 0x0b202784, 0x89e23543, + 0x04057ad3, 0x02350315, 0x0110d2d1, 0x0b80d489, 0x10d2d524, 0xd0f1f001, + 0xd4d1fa8e, 0xd3890110, 0xd5430b80, 0x8e0110d4, 0x63d499fa, 0x0118d0d1, + 0x0114d2d1, 0xe082d189, 0x2700e042, 0xd4a980ec, 0x43c20260, 0x06d49927, + 0xd4894876, 0x0b200b70, 0xcd4ff621, 0xa7ee4700, 0xfde6ef3e, 0x3e153205, + 0x34354027, 0xd1acd3c1, 0x890114d2, 0x310380d4, 0x4127240b, 0xd5acd3c5, + 0x8d0114d2, 0x6c5e68d4, 0x64d499fe, 0xdfff1ea7, 0x073407fd, 0x333a3324, + 0x03342b48, 0xd164003d, 0x230108dc, 0x9c13c5b4, 0x07b0d0c1, 0xb4dec14b, + 0x1fff4d83, 0xd3c5b203, 0x8340abb8, 0xffbd8321, 0xac14c51f, 0x2633beab, + 0xabb01bc5, 0x8c12c52c, 0xc1acd3c1, 0x43e2d0d4, 0x565efe1b, 0xff3ea7ff, + 0x2c27fddf, 0xc1323520, 0x41dc8c34, 0x64d3a952, 0xa8d4c102, 0xc264d299, + 0xbe270e43, 0x5e800000, 0x4307fd6c, 0xc1fed35e, 0x21c3b8db, 0x7fffbd83, + 0x2183b433, 0x0000bea3, 0x132c3330, 0x4d5eb2ab, 0x00ed27fd, 0xff205e01, + 0x41234153, 0x3e074183, 0x230b349b, 0x27ff2a5e, 0x5e0100bd, 0xc307fe66, + 0x0c27b207, 0x7ecba50f, 0x4027e340, 0xcb35c4a5, 0xd88cc4c1, 0xeb1e9841, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000081, 0x00000081, 0x00000081, 0x00000081, 0x00000202, 0x00000202, + 0x00000202, 0x00000202, 0x00000483, 0x00000483, 0x00000483, 0x00000804, + 0x00000804, 0x00000804, 0x00000c85, 0x00001206, 0x00001206, 0x00001887, + 0x00002008, 0x00002889, 0x0000320a, 0x00003c8b, 0x0000548d, 0x0000620e, + 0x00008010, 0x0000a212, 0x0000c814, 0x00010897, 0x00013899, 0x0001a49d, + 0x00020020, 0x00028824, 0x00032028, 0x0003f4ad, 0x000514b3, 0x000658b9, + 0x00080040, 0x000a2048, 0x000cd0d1, 0x00102cdb, 0x00000000, 0x00000000, + 0x00000000, 0x18101010, 0x30282420, 0x44403834, 0x59545049, 0x6f696460, + 0x84807974, 0x99948f89, 0xafa9a4a0, 0xc4c0b9b4, 0xd9d4cfc9, 0x00000081, + 0x00000081, 0x00000081, 0x00000081, 0x00000202, 0x00000202, 0x00000202, + 0x00000202, 0x00000483, 0x00000483, 0x00000483, 0x00000804, 0x00000804, + 0x00000804, 0x00000c85, 0x00001206, 0x00001206, 0x00001887, 0x00002008, + 0x00002889, 0x0000320a, 0x00003c8b, 0x0000548d, 0x0000620e, 0x00008010, + 0x0000a212, 0x0000c814, 0x00010897, 0x00013899, 0x0001a49d, 0x00020020, + 0x00028824, 0x00032028, 0x0003f4ad, 0x000514b3, 0x000658b9, 0x00080040, + 0x000a2048, 0x000cd0d1, 0x00102cdb, 0x00000000, 0x00000000, 0x00000000, + 0x18101010, 0x30282420, 0x44403834, 0x59545049, 0x6f696460, 0x84807974, + 0x99948f89, 0xafa9a4a0, 0xc4c0b9b4, 0xd9d4cfc9, 0xa007f94e, 0xea87a553, + 0xb007e10b, 0xbc839107, 0xd111271f, 0x3b02dce4, 0x8bd9071b, 0x03c20741, + 0x2702fcdd, 0x27448630, 0xece2d131, 0x07c37d02, 0x6c93bd41, 0x27428b03, + 0x27448630, 0xbdc35d31, 0x86036893, 0x270a07ab, 0x07e02710, 0x194e0b4d, + 0x0be10343, 0x27f09813, 0x83420730, 0x0b310341, 0xc2215314, 0xc459f43b, + 0x2027c379, 0x448643ab, 0x41072127, 0xc29d4123, 0x4094ad04, 0x27f98e03, + 0x4ed51e10, 0xff4ea7fa, 0x3027f7ff, 0x010043d5, 0x639803c1, 0x87a407f0, + 0xffcea7d3, 0xeea7fdef, 0xa7fde63f, 0xfde62f1e, 0xc124bc27, 0x242770c4, + 0x53184c33, 0x33271d4c, 0x517044c0, 0x054d0b04, 0x27e215e4, 0x05e33530, + 0x3512151b, 0x08a4d113, 0xc6f40501, 0x4327d64f, 0x0270c4d5, 0xefff3ea7, + 0x7034c1fd, 0x27fb48dc, 0x7034d544, 0x7434d502, 0xd5202702, 0xa7069032, + 0xfdeb8f3e, 0x4f273205, 0x0f420000, 0xf29b3415, 0xa7f4010e, 0xfde63f3e, + 0x1c273405, 0x15004140, 0x2f4ea731, 0x3235fde6, 0x41154005, 0x4235f043, + 0xf3e8fa8e, 0x4eff7e5e, 0x07c007fb, 0x73b00721, 0x2c731fcc, 0x073c071f, + 0x07120701, 0x11dbbe2b, 0x803c27fe, 0x300b4027, 0x2407414b, 0x53182c33, + 0x0732ab38, 0x4efb8e03, 0x07f1a3f5, 0x46d007c2, 0x8202b91b, 0x4e22d001, + 0x0c07d439, 0x23332407, 0x240b4533, 0xfef42e23, 0x242c9dff, 0xf183d439, + 0x4c834123, 0x3314070f, 0x0b433315, 0x2c43f141, 0x0bff0001, 0x8e23853c, + 0xda2ebef5, 0x83d439fd, 0x333407f1, 0x0b453333, 0xf43e2334, 0x3085fffe, + 0x8e24309d, 0x8304b9f5, 0x0c039901, 0x015f42e0, 0xd1a63fd6, 0xe60188db, + 0xd1015bbf, 0xe0018cd4, 0x99015341, 0x4fd6f3d4, 0xf4d49990, 0x998a4fd6, + 0x4fd6f5d4, 0x03420784, 0x7d14ea41, 0xa7d439ff, 0xffffff3e, 0x4123422b, + 0xd10f4c83, 0x07188033, 0x33e307a4, 0x873d03a3, 0x07453302, 0x2ba40b91, + 0x44d8a992, 0xe3230703, 0xae237fec, 0xe3fffef4, 0x3d237f2c, 0xe4190287, + 0xc280ec03, 0x3001f9e2, 0x019001e8, 0x01879fe6, 0x10272307, 0x24993907, + 0x4b210308, 0xa0140b4f, 0xbe0833f3, 0x21fe3431, 0x7ef105a1, 0x1007fed3, + 0x0cacd0c1, 0x2701000d, 0x7e01000d, 0x6007fec3, 0x1907a081, 0x0ebe0833, + 0xd4d1fe34, 0xd3d102bc, 0x4c830134, 0x0724870f, 0x0b443370, 0x807c0324, + 0x31084127, 0x12074027, 0xec101e23, 0x87f125ff, 0xf924f934, 0x53ff0013, + 0xe6f41578, 0xe600e5bf, 0x2700d94f, 0x21392729, 0xf9d999f1, 0x07081499, + 0x12b22bb4, 0x07b9079b, 0xfad59983, 0x8512840b, 0xf3218507, 0x11e4d4c1, + 0xe8d1c133, 0xf445f355, 0x63c2f135, 0x5078da6a, 0xf311b807, 0x4c073556, + 0x4b124123, 0xf451b407, 0x110d64c2, 0x071556f1, 0x1221032c, 0x01b2072b, + 0x42f451f3, 0x96f11134, 0x5ab50714, 0x129b07b9, 0x219507b5, 0x9dc907f3, + 0x4d5e0a37, 0xa132e4fe, 0xfe465efe, 0x02bcd4d1, 0xfe3e42f4, 0x07fea65e, + 0x070607a7, 0x7ef03110, 0xf351fdef, 0xce2703c2, 0xa103248a, 0xf451ee1e, + 0xd22d46c2, 0xa707957b, 0x10070607, 0xd07ef041, 0xc2f151fd, 0xabce1110, + 0x1ea1230e, 0x7babf2ee, 0x5eba07ff, 0xba07ff76, 0xff70a8f2, 0x12ff6b5e, + 0xf2b7077b, 0x5eff65b8, 0x2027ff60, 0x5e123c27, 0x21f9ff27, 0xff0013f8, + 0x07f9d499, 0x12932b91, 0x07940749, 0xfad499b3, 0xb412b10b, 0x2af1b407, + 0xff0013f4, 0xc1e4d5c1, 0x6ac2e8d8, 0x187bda30, 0x585e9b07, 0x5e1027ff, + 0x0807fe89, 0x08331907, 0xfe32b4be, 0x07fe825e, 0x071607c7, 0xfd517e08, + 0x0ac26007, 0x21bcce24, 0xee1ec103, 0xf22ba6c2, 0x07ff2a79, 0x071607c7, + 0xfd357e05, 0xa0c26007, 0x0e9cce11, 0xee1ec123, 0xff11c9f2, 0x0c5e9c07, + 0xf29c07ff, 0x1eff06cb, 0x077912a8, 0xfc9bf297, 0x4e9e1efe, 0x0c0499fe, + 0xc30d0299, 0x0c049d41, 0x070c0399, 0x33e30710, 0x2b3333e5, 0xd8ed03e3, + 0xc31e0b01, 0x03310721, 0x029d171c, 0xe321070d, 0xed237f3c, 0x2ce301d8, + 0x171c237f, 0x3c033419, 0xf932c280, 0x20274107, 0x42053627, 0xf3c84403, + 0x07980199, 0xd1300b3e, 0xbd012004, 0xd501d831, 0x8901ec34, 0x44478004, + 0x01e834d5, 0xf54efe8e, 0x01d006d1, 0xffff4ea7, 0xd19007ff, 0xd102bc6a, + 0x63159040, 0x83a02bf0, 0x47f205a1, 0x332a07ca, 0xe9f80125, 0x001594c4, + 0x07b207ff, 0x33730751, 0x6361b984, 0x60be2303, 0x4586ffea, 0x15a023f1, + 0x34eeff00, 0xfd01008b, 0x1598c3e9, 0xd10bff00, 0xd3c2d433, 0x94c4e929, + 0x4aff0015, 0xe91f1e34, 0x001594c4, 0x1243c2ff, 0x641a0d27, 0xffdc5bbe, + 0x1598c3e9, 0x3dcaff00, 0xd096d1e7, 0x07b00101, 0xea4fab40, 0x11020e84, + 0xab4007b0, 0x4584ea4f, 0x07b02102, 0xea4fab40, 0x31023f84, 0xab4007b0, + 0x3984ea4f, 0x07b04102, 0xea4fab40, 0x51023384, 0xab4007b0, 0x2d84ea4f, + 0x07b06102, 0xea4fab40, 0x71022784, 0xab4007b0, 0x2184ea4f, 0xe9ff1e02, + 0x001598c4, 0x6f43eeff, 0xd49dc1ff, 0xc1dc9ec1, 0x94c1e49c, 0xe093c1d8, + 0x9be892c1, 0x9be59bd5, 0x0bd40bc5, 0xc1c20be3, 0x6389f894, 0xa7482b7c, + 0xfddfff2e, 0x01c824d5, 0x80003d83, 0x015f3fe6, 0x24d54547, 0x64b901fc, + 0x4cc0035e, 0x94891eff, 0x03f10172, 0x9b43e343, 0x0092d141, 0x53453301, + 0xa7420b41, 0xfddfff3e, 0x077434c5, 0x137c0337, 0x3ce32707, 0x7f2ce37f, + 0x19137c23, 0x803c0334, 0x07f932c2, 0x27202747, 0x03420535, 0xd1f3c844, + 0xb901d093, 0xe6026034, 0xb900eb4f, 0xc0035e34, 0x8958ff4c, 0x3ea77292, + 0x03fdefff, 0x7834c123, 0xf10123e3, 0x4c332533, 0x53129b18, 0x11531d4c, + 0xd1f090c1, 0xc401009e, 0xd3071344, 0xf4e84327, 0x3378d3c1, 0x3c53183c, + 0xf134c01d, 0xe61f4ea7, 0x05010bfd, 0x15224740, 0x35302742, 0xa71e0b43, + 0xfde60f4e, 0x42154105, 0xfd014335, 0xd1532707, 0x1d070907, 0xd1be2a03, + 0xd5c6fdd3, 0x12231d07, 0x27070907, 0xfdd3c3be, 0x010494d1, 0x20004da3, + 0x010494d5, 0xc60a7399, 0x74897d3f, 0x0c72890e, 0x83127389, 0x890fff4d, + 0x2d831071, 0x4c330fff, 0xff3d8310, 0x3342ab0f, 0x2ea7103c, 0x83fddfff, + 0xd50fff1d, 0xab020024, 0x0423d531, 0xd094d102, 0x5e43b901, 0xff3cc003, + 0xff3ea71c, 0x34c1fdef, 0x6a4dd87c, 0x23070ffc, 0xf4e84327, 0xdc7c23c1, + 0xf5fc6a3d, 0x01d093d1, 0x837c3489, 0x5680004d, 0xff4ea745, 0x4cc5fddf, + 0x8ef043e4, 0xdc2dc5f5, 0x5ee02ec5, 0x9489fea2, 0x27440872, 0xff4d8343, + 0x104c330f, 0xdfff3ea7, 0x0034d5fd, 0x0434d502, 0x279b1e02, 0x6361b940, + 0x33a33303, 0x100c5314, 0x52bea40b, 0x4a87fe2f, 0xc1d49dc1, 0x9cc1dc9e, + 0xf1051be4, 0x00166041, 0xe043f1ff, 0xf1ff0015, 0x00162042, 0x9bc09bff, + 0x0be09bd0, 0x0be20bd3, 0xfe255ec1, 0xbe1e4127, 0xba1e4227, 0xb61e4327, + 0xb21e4427, 0xae1e4527, 0xaa1e4627, 0xa61e4727, 0x3ea7fc4e, 0x99feffff, + 0x02d10934, 0x438301d0, 0x34333407, 0x342b4487, 0x004d3ef9, 0x01c1ff00, + 0x4624a998, 0xf91e0b03, 0x00004e3c, 0x99d007ff, 0x41c23923, 0x2b46270e, + 0x89210743, 0x243b6e03, 0x4027234a, 0x8e07d49d, 0xf7eccefc, 0x21873007, + 0x021c3d03, 0xb77e4027, 0x0cd3d1fc, 0x3f4ea701, 0x4325fdbf, 0x0104d2d1, + 0xdfff4ea7, 0xc53127fd, 0xd39d4042, 0x4efc8e07, 0xff3ea7fd, 0x34c1fdef, + 0x6a4dd874, 0x23070ffc, 0xf4e84327, 0xdc7423c1, 0xf5fc6a3d, 0x1ea70041, + 0x21fde65f, 0x05033104, 0x27131514, 0xa71e35e0, 0xfde64f2e, 0x0534dc27, + 0x4123152d, 0x462e3504, 0xc6005146, 0x15140505, 0x051e3510, 0x3520152d, + 0x4efd8e2e, 0x0e0499fa, 0xc107d007, 0x41274536, 0x8e0e049d, 0x074107fa, + 0x334333a1, 0x07a42ba5, 0xa9300b3a, 0xe601de34, 0x07b30747, 0xbe1c070d, + 0xd1ffdd23, 0x2701d4d0, 0x01f4171e, 0xffd943be, 0x01deb4a9, 0x2ea740f6, + 0xc1fdefff, 0x24c16423, 0x183c3354, 0x53184c33, 0x3c531d4c, 0x06430b1d, + 0xd1c20749, 0x2701d4d0, 0x01f4171e, 0xffd913be, 0xc164c3c1, 0x3c3354c4, + 0x184c3318, 0x531d4c53, 0x430b1d3c, 0x07dd4fd6, 0xa91d0b1a, 0xa901e214, + 0xb901dc13, 0x0b01d912, 0xad3fab34, 0xb601e213, 0xa92a072e, 0x0301e014, + 0x0b01d82d, 0x4743ca2d, 0x4a07e307, 0x43a94d0b, 0x0e0701e4, 0x0626032b, + 0xd1892251, 0x11300780, 0x15410b24, 0x89f3b824, 0x4ece6cd4, 0xff3ea726, + 0x34a9feff, 0xda0b1cd4, 0x34ad400b, 0xdead1cd4, 0x312701e4, 0xcfff4ea7, + 0x7043c5fd, 0xe407fa8e, 0x1a07b91e, 0x14a91d0b, 0x4eca01e0, 0xec14d1d1, + 0x2730a701, 0xbd431521, 0x1e01d912, 0x99fc4ec1, 0xd0070d01, 0xa7fee67e, + 0xfeffff1e, 0x12a94027, 0x13a90144, 0xd49d0142, 0x1a23ce0e, 0xd0d1c107, + 0x1d2701d4, 0x41be6418, 0xc3a9ffd8, 0xc4a90144, 0x43ce0142, 0xd0d3d1ea, + 0xff1ea701, 0x3289feff, 0xd414a912, 0x0b30271c, 0xd414ad42, 0x0ef39b1c, + 0x0000fc8e, 0x000000e9, 0x0000007e, 0x0000007c, 0x54000000, 0x2a000000, + 0x000001ff, 0xd007f54e, 0x0138dd03, 0xdc031d07, 0x232d0797, 0xd101cfdd, + 0x0701d000, 0x634d073d, 0x7f1ce3f2, 0x037f2ce3, 0x0302083d, 0x25021c4d, + 0x65f155f0, 0x75e007f2, 0x21f485f3, 0x29f351f0, 0x460ca904, 0x2bf16103, + 0xc5c123c4, 0xe49998dc, 0x13ac0739, 0x19a43b46, 0x803c0334, 0x27f931c2, + 0x27402720, 0x41d3bd31, 0x40d4bd01, 0x44d2bd01, 0x38d2ad01, 0x3cd2ad01, + 0xa9ba0701, 0xab02bce2, 0x3edbadbf, 0x4ad2ad01, 0xf33ea701, 0xd3d5fee2, + 0xe489014c, 0x39e39912, 0x04874123, 0x0363e2b9, 0x080e34f0, 0x2314e489, + 0xbd4a2b34, 0x3b0143d3, 0x07420243, 0x07435b42, 0x23200734, 0x23430721, + 0x0b138741, 0xad132b23, 0xbd013ad2, 0x030142d4, 0xe8040711, 0x0710f141, + 0x07212323, 0xbd42a73d, 0x03014534, 0x0bf2a831, 0x4501bd0d, 0x07e23901, + 0x2342070d, 0x0f4c8341, 0x32071407, 0x25331533, 0x33334333, 0x410b320b, + 0xfef44e23, 0xf43e23ff, 0xd4d5fffe, 0xd3d5011c, 0x407e0120, 0x6ed489f9, + 0x013edbad, 0x0275a4ea, 0x01d4dbd1, 0x9362fe93, 0xdb0ea702, 0xe401fefd, + 0x03210211, 0x240b4013, 0x32ab340b, 0x30e8e211, 0x20e8105e, 0x3207108f, + 0x37334287, 0x420b430b, 0x33333407, 0xf453342b, 0x4101fe8c, 0xf221320b, + 0xeda03e23, 0x014107fe, 0x0511232e, 0x0324033e, 0x93f49834, 0x029313f2, + 0x24012311, 0x41033103, 0x24052315, 0x104231ec, 0x92fef393, 0xa7340102, + 0xfefddbee, 0x4127e405, 0xcfff0ea7, 0x7004c5fd, 0xc56ed389, 0x3ae26c04, + 0xbc870718, 0x41534b07, 0xd48d4fab, 0x53312370, 0xee202741, 0x99100634, + 0xd29d07d4, 0x2f4fe606, 0x81f37110, 0x012527f4, 0x05440341, 0xa8340331, + 0x994027f2, 0xd49d63d2, 0xd12fe608, 0x70dc8901, 0x3c074c07, 0x34034223, + 0x1fff4d83, 0x1fff3d83, 0x33104c33, 0xd4c5103c, 0xb4d3c5b0, 0x0fb222e0, + 0x99252c27, 0x312706da, 0x3027c486, 0x44334a07, 0x333324ab, 0xab70d189, + 0x08d2d523, 0x89122301, 0x10e86ed4, 0x44470f87, 0x0f7141f2, 0x0372d289, + 0x3323e323, 0xc1219b25, 0xd3c1f0d4, 0xa7420bf4, 0xfddfff0e, 0x0ba804c5, + 0xa402c523, 0xffff3ea7, 0x8934a1ef, 0xd08976de, 0x98d1c178, 0x071d40c8, + 0x05422723, 0x9b302724, 0x00070ef3, 0x2305ff8b, 0x40cc24a1, 0x70dc89ed, + 0x8706da99, 0x2b300741, 0x27351034, 0xab3e9b34, 0xff4ea73f, 0x4385efff, + 0x270cd399, 0x64d49d40, 0xded11027, 0x430701d0, 0x3368d18d, 0x2b453333, + 0x14e28943, 0x00274d0b, 0x01da4abd, 0xe3892247, 0x9d442712, 0xd4c505d1, + 0xacd0c5a8, 0x0110d0d5, 0x0114d0d5, 0x2bc4d0c5, 0x1013472c, 0x07222723, + 0x23419b42, 0xad31a741, 0xad0126d4, 0xbd0124d3, 0xad012fd2, 0xad012cd1, + 0xad0128d0, 0xd5012adc, 0xb90134d0, 0xe00194e4, 0x00d2ff4c, 0x4f6b4123, + 0xff104cf4, 0x98e4b900, 0xf74fe601, 0x070b0700, 0x07ab07cb, 0x273d072e, + 0x03010310, 0x1ea303c2, 0xa224a955, 0x554bc201, 0x349d4127, 0xa024a91c, + 0x6a04ca01, 0x01a224a9, 0x276340c2, 0x2d349d41, 0x01a024a9, 0xa950c4ca, + 0xc201a224, 0x4127494c, 0xa93e349d, 0xca01a024, 0x24a936a4, 0x4ac201a2, + 0x9d41272f, 0xe4b94f34, 0x11030198, 0x030c2c03, 0x8f41f231, 0xa024a900, + 0xa64bc201, 0x349d4027, 0x21ab1e1c, 0x070a07f1, 0xf2967e2d, 0x27fd835e, + 0x4f349d40, 0x4027d11e, 0x1e3e349d, 0x9d4027b7, 0x9d1e2d34, 0x890cd399, + 0x43077ed1, 0x33334533, 0x4d0b432b, 0x01e041ad, 0xd180d389, 0x890120d2, + 0xda9970dc, 0x15334706, 0xfebe5e23, 0x0198e2b9, 0x025ce4d1, 0x23332103, + 0x1c9b1207, 0xe4bf3ea7, 0x05140bfd, 0x35321531, 0x70d48930, 0x0199e3b9, + 0x34da4103, 0x9f4ea70e, 0x120bfde4, 0x42154105, 0xd4994035, 0xba4fe663, + 0x62d19900, 0x995a11d8, 0xd38960db, 0x334b0770, 0x0bcb8744, 0xff0ea7c4, + 0xc4f1ffff, 0xff00038c, 0x010802d1, 0x4edc3403, 0x35040000, 0x9007a347, + 0x3dbe171e, 0x94d1ffd3, 0xc3f10108, 0xff00038c, 0x3edc2407, 0x16040000, + 0x48534207, 0x4f6b3207, 0x64120d27, 0xce103c53, 0x3adad9b4, 0x62d199d6, + 0x995712d8, 0xd38961db, 0x334b0770, 0x0bcb8744, 0xff1ea7c4, 0xc4f1ffff, + 0xff00038c, 0x010812d1, 0x4edc3403, 0x32040000, 0x9107a347, 0xe1be171e, + 0x94d1ffd2, 0xc3f10108, 0xff00038c, 0x3edc2407, 0x16040000, 0x48534207, + 0x4f6b3207, 0x64120d27, 0xce103c53, 0x3adad9b4, 0xd0d4d1d6, 0x6543b901, + 0xb93ff603, 0xc4d2c10c, 0x27c8d3c1, 0xc2f40540, 0xd4c13832, 0xc5420bcc, + 0x430ac4d4, 0xd1c4d3c5, 0xc1011cdc, 0xc411c4d3, 0x991f34c2, 0x0d070dd1, + 0xffd6c2be, 0x01d4d0d1, 0xf40c1e27, 0xd2e2be01, 0xc1c311ff, 0x34cac4d4, + 0xc1fc01e3, 0x4ce2d0d4, 0xd41900d7, 0xb103bc07, 0xc66cda89, 0xff3ea748, + 0x3411d07f, 0x9b80d289, 0x1624c22b, 0x34113225, 0x070f24c2, 0x1a1c2703, + 0xf3e83107, 0x42ca0411, 0x70d189f8, 0x00a11fe6, 0x0663d299, 0x62d4a92d, + 0x404cc202, 0x0118ded1, 0x0110d4d1, 0x0b82d389, 0xe0e30be4, 0x270c1022, + 0x3107800c, 0x31233153, 0xe71f2ea7, 0x073183fd, 0x0b439b40, 0x1524054e, + 0x35102720, 0x0731c321, 0x0b439b40, 0x1524054e, 0xf0213520, 0x070bd0c2, + 0x0242034a, 0x2b4b074b, 0xd14cc64c, 0x070110d2, 0x9f0ea714, 0xcc27fde6, + 0xdfeea740, 0xd3d1fde6, 0xd4890118, 0x0b320b86, 0x15040543, 0x84d4890c, + 0x430b2027, 0xd3890235, 0x15e4057a, 0xd1e235e3, 0x890110d2, 0x240b80d4, + 0x0110d2d5, 0x89d0f1f0, 0x4f2670d4, 0xefff1ea7, 0x3814c1fd, 0xc14813c1, + 0x3c335812, 0x182c3318, 0x531d3c53, 0x4c331d2c, 0x53320b18, 0x340b1d4c, + 0xc1073a66, 0x01d4d0d1, 0xf40c1e27, 0xd1c2be01, 0x38c4c1ff, 0xc148c3c1, + 0x3c3358c2, 0x184c3318, 0x531d3c53, 0x2c331d4c, 0x53340b18, 0x320b1d2c, + 0x01d23fd6, 0x63d399f4, 0xf4054103, 0x00c03fe6, 0xa9a8dcc1, 0xda025ed4, + 0xd4994d4c, 0x08ded164, 0x07340701, 0x333a3324, 0x03342b48, 0xa764003d, + 0xfddfff4e, 0x239c43c5, 0xb0d1c1c4, 0xd0c14c07, 0xff4d83b4, 0xc5c2031f, + 0x41abb8d3, 0x1ea72183, 0x83fddfff, 0xc51fffcd, 0xc0abac14, 0x2eab2633, + 0xc5b01cc5, 0xd3c18c12, 0xd0d4c1ac, 0x996043c2, 0xd0d163d4, 0xd2d10118, + 0xde890114, 0x9f42e082, 0x801c270a, 0x0260d4a9, 0x993143c2, 0x49b606d4, + 0x0b70d489, 0xe62e0b20, 0x530b144f, 0x83412341, 0x9b310741, 0xa7230b34, + 0xfde6ef3e, 0x31153205, 0x34354027, 0xd1acd3c1, 0x890114d2, 0x310380d4, + 0x4127240b, 0xd5acd3c5, 0x8d0114d2, 0xd19968d4, 0xbe0d070d, 0xc1ffd49f, + 0xd399a8d4, 0xc3420364, 0xc4d1c131, 0xc5c8d2c1, 0xd39da8d4, 0x3821c264, + 0x0bccd4c1, 0xc4d4c541, 0xd2c5420a, 0x1cdcd1c4, 0xc4d3c101, 0x34c2c411, + 0x0dd1991f, 0x64be0d07, 0xd0d1ffd4, 0x1e2701d4, 0xbe01f40c, 0x11ffd084, + 0xc4d4c1c3, 0x01e334ca, 0xd0d4c1fc, 0x00d74ce2, 0xbc07d419, 0xda89b103, + 0xa748c66c, 0xd07fff3e, 0xd2893411, 0xc22b9b80, 0x32251624, 0x24c23411, + 0x2703070f, 0x31071a1c, 0x0411f3e8, 0x89f842ca, 0x1fe670d1, 0xd29900a1, + 0xa92d0663, 0xc20262d4, 0xded1404c, 0xd4d10118, 0xd3890110, 0x0be40b82, + 0xbe22e0e3, 0x800c2706, 0x31533107, 0x2ea73123, 0x83fde71f, 0x9b400731, + 0x054e0b43, 0x27201524, 0xc3213510, 0x9b400731, 0x054e0b43, 0x35201524, + 0x4bc2f021, 0x034a0707, 0x074b0242, 0xc64c2b4b, 0x10d2d14c, 0xa7140701, + 0xfde69f0e, 0xa740cc27, 0xfde6dfee, 0x0118d3d1, 0x0b86d489, 0x05430b32, + 0x890c1504, 0x202784d4, 0x0235430b, 0x057ad389, 0x35e315e4, 0x10d2d1e2, + 0x80d48901, 0xd2d5240b, 0xf1f00110, 0x34d4d1d0, 0x7d4fd601, 0x0d071f07, + 0xffe8f4be, 0x070dd199, 0xd359be0d, 0x24d2a9ff, 0x26d4a901, 0x892f8b01, + 0x42f270d0, 0x40270717, 0x0134d4d5, 0x20282103, 0xd4d54127, 0xd4b90134, + 0xd2ad012f, 0x41e00124, 0x42e005e8, 0xff1e04f9, 0x432b4427, 0x0143d4bd, + 0x3b14e389, 0xe23a2b24, 0x07f7f832, 0xf7f35e32, 0xca7e0d07, 0x27fe21f6, + 0xd1e41d41, 0x2101d4d0, 0xd04abef1, 0xbe0ff6ff, 0xd0ded105, 0xf7555e01, + 0xa99341c4, 0x990128d3, 0x34ee0fd4, 0x3ff60692, 0xd4b9049b, 0x4ff6012e, + 0xd4990493, 0xd1473607, 0xa7010cd4, 0xfdbf3f3e, 0xd2d13425, 0xeea70104, + 0xc5fddfff, 0xdbd140e2, 0x402701d0, 0xb907d49d, 0xa60365b3, 0x270d0735, + 0xf4fd7e10, 0x01d0dbd1, 0xa798d1c1, 0xffffff0e, 0xb9f6b799, 0xf6156502, + 0x0706291f, 0xd0b4c197, 0x07db4ff6, 0xb4b93707, 0xa30703a0, 0xa4074312, + 0x2734ac08, 0x0a0733ac, 0xd0bd0f6b, 0xb3b90238, 0xd2b90367, 0xd3bd0238, + 0x31230239, 0x4f6b4307, 0x42f03103, 0xb39906d7, 0x9b162741, 0x0b410713, + 0x3f4c834a, 0x310b3007, 0xd2994933, 0x18d39d09, 0x9d94d4c5, 0xd39d1bd3, + 0x19d39d1a, 0x4a0727e6, 0x830c4c03, 0x4c333f4c, 0xcd4ea317, 0x2ea735cb, + 0x27f3ffff, 0x7424c530, 0xb909d39d, 0xf60367b4, 0xb906484f, 0xf60194b4, + 0x0706404f, 0x0733533a, 0x5343072a, 0x83278325, 0x48331f4c, 0x20002da3, + 0xf33524ab, 0x3a074a07, 0x53f03c83, 0x4523ab44, 0x154027f4, 0x04d399f4, + 0x3556f26d, 0x036db4b9, 0x061a4fe6, 0x0bf6b299, 0x7f2c8321, 0xffffeea7, + 0xd0b4c1f3, 0xa63ce2c5, 0x04f09d44, 0xf5af0ea7, 0xd10311fe, 0x690230d4, + 0x99432bf0, 0x42f404f1, 0xd4d1059a, 0x44870234, 0x0a5841fd, 0x40edff01, + 0xff010a5a, 0x0230d3d1, 0xf5af4ea7, 0xd53103fe, 0x050230d3, 0x34d4d143, + 0x83410302, 0x34d4d541, 0xa7412702, 0xfdcfffee, 0xc50ad399, 0x3fe66ce4, + 0xd6990218, 0xd0d4d163, 0x33860701, 0x03380783, 0x036e1c3f, 0x4831c100, + 0x9b4c32c1, 0x0b14731a, 0x6a45b912, 0x2211e803, 0x28410705, 0xf0537f1c, + 0x0401f540, 0x07404cf0, 0x23b44705, 0xbc837fbc, 0x0348077f, 0x036e1c4f, + 0x6042c100, 0x9b6443c1, 0x0b24732a, 0x8021e823, 0x28420704, 0xf2537f2c, + 0x2401f510, 0x62404cf0, 0x23c44704, 0xcc837fcc, 0x07c7337f, 0x1c4f0348, + 0xc100036e, 0x43c17842, 0x732a9b7c, 0xe8230b24, 0x07043821, 0x7f2c2842, + 0xf4def353, 0x4cf03401, 0x47041840, 0x7fec23e4, 0x337fec83, 0x48070eec, + 0x6e1c4f03, 0x42010003, 0x2a9b4311, 0x230b2473, 0x03ee21e8, 0x2c284207, + 0xadf0537f, 0xf00401f4, 0x03cd404c, 0x1c231447, 0x7f1c837f, 0x07151c33, + 0x1c4f0348, 0x6100036e, 0x9b437142, 0xab9c072a, 0xab24739b, 0xab230b9e, + 0x9b21e891, 0x28420703, 0xf1537f2c, 0x1401f474, 0x80404cf0, 0x23b44703, + 0xbc837fbc, 0x0348077f, 0x036e1c4f, 0x3042c100, 0x9b3443c1, 0x0b24732a, + 0x5921e823, 0x28420703, 0xf3537f2c, 0x3401f444, 0x3b404cf0, 0x23144703, + 0x1c837f1c, 0x0717337f, 0x1c4f0348, 0xc100036e, 0x43c19042, 0x732a9b94, + 0xe8230b24, 0x07031121, 0x7f2c2842, 0xf412fe53, 0x4cf0e401, 0x4702f140, + 0x7f0c2304, 0x337f0c83, 0x48070e0c, 0x6e1c4f03, 0x42c10003, 0xac43c1a8, + 0x24732a9b, 0x21e8230b, 0x420702c5, 0x537f2c28, 0x01f3dff2, 0x404cf024, + 0xe44702a4, 0x837fec23, 0xec337fec, 0x03480715, 0x036e1c4f, 0xc042c100, + 0x9bc443c1, 0x0b24732a, 0x7821e823, 0x28420702, 0xf3537f2c, 0x3401f3ac, + 0x5d404cf0, 0x23244702, 0x2c837f2c, 0x0346077f, 0x036e004f, 0x18439900, + 0xc8154c99, 0x41270c53, 0x40276496, 0xab1c4c33, 0x831bab94, 0xabc78337, + 0x183c3310, 0xffff0ea7, 0x15cc33f3, 0xab6809c5, 0xc53cab1e, 0x32ab6c01, + 0x03c54027, 0x0ad49d70, 0xffff1ea7, 0x6517bdff, 0x0cacf415, 0x2027032e, + 0x01d0dcd1, 0xc3d14287, 0x40f102b8, 0x00032e00, 0x03563ff6, 0x30271d07, + 0xfdd49cbe, 0x2c832007, 0x5340077f, 0x53320741, 0x804e8331, 0x43ab0fff, + 0xffff3ea7, 0x7c34c5f3, 0xf663d399, 0x5302d03f, 0x01f30ffe, 0xa740abe4, + 0xf3ffff3e, 0xc4b934a5, 0x4686036a, 0x43334207, 0x240b2533, 0x02002d30, + 0xf2f6f453, 0x4a074201, 0xa3f9fe41, 0x00032ea0, 0x4c83f031, 0x0fec833f, + 0x0c834833, 0xabfe450f, 0x0eec3334, 0x3eabf035, 0x33120c33, 0x1ea714ac, + 0xabf3ffff, 0xff2d8330, 0x00af8301, 0xc503c000, 0x3aab5812, 0xd4b913b5, + 0x4fe60130, 0x0d070131, 0x0abe1f07, 0xd499ffe4, 0x1a4ff608, 0x28d4a9fb, + 0x124fe601, 0xd0d4d1fb, 0x5e43b901, 0xff3ce003, 0x2ea701ff, 0xc1fddfff, + 0x44fc4024, 0x0d07faf9, 0x27f02f7e, 0x08d49d41, 0xb9faec5e, 0xc60131d4, + 0xd199b54f, 0xbe0d070c, 0x1effce33, 0x074207aa, 0x47427332, 0x73318344, + 0x83430b21, 0x28d4ad21, 0x2ed2bd01, 0x28d4a901, 0x2ed2b901, 0x8341c301, + 0x00112741, 0x27102721, 0x27248631, 0x0b148b30, 0xad348b02, 0xbd012ad0, + 0xbd0130d3, 0xa90131d1, 0xa90138d2, 0xee013ad1, 0x0701bb12, 0x0b438342, + 0x4543b94d, 0x0b3f4b01, 0xf020c823, 0x07ed12da, 0x83420732, 0xad425333, + 0xbd013cd4, 0xad0140d3, 0xd10138d2, 0xe40134d4, 0x99fa4842, 0x450605d4, + 0x00be0d07, 0xd199ffca, 0xbe0d070c, 0xd1ffcd9f, 0xb901d0d4, 0xc0035e43, + 0x9934ff3c, 0x4a1608d4, 0xdfffeea7, 0x40e4c1fd, 0x272444d8, 0xff2ea748, + 0xd0d1fddf, 0x24a501d4, 0xbe151c27, 0xa7ffc99c, 0xfddfff3e, 0x34a54027, + 0xdc4033c1, 0xd499de34, 0x524ff607, 0x7e0d07fa, 0x4a5eef38, 0x270d07fa, + 0xcfe2be10, 0xfed05eff, 0xd2ad4027, 0xd4bd0128, 0x225e012e, 0x8ef243ff, + 0x000d27f5, 0xf9425e01, 0x473f4c13, 0x7f2c8324, 0x53fda45e, 0x01f13ff4, + 0xfd9b5e42, 0x2b3fec27, 0x16ec33e4, 0x0000ef83, 0x5a5e0fc0, 0x00ef27fd, + 0x5e0f8000, 0x0c27fd51, 0x33042b3f, 0x0e830f0c, 0x5e1f8000, 0x0e27fd0e, + 0x5e1f0000, 0x1c27fd06, 0x33142b3f, 0x001d8318, 0xfcc55e3f, 0x3e001d27, + 0x13fcbe5e, 0xb4473f4c, 0x5e7fbc83, 0xf253fc81, 0x2b01f0e4, 0x27fc785e, + 0x142b3f1c, 0x83161c33, 0xc000001f, 0xfc315e0f, 0x00001f27, 0x285e0f80, + 0x3fec27fc, 0xec33e42b, 0x00ee830f, 0xe75e1f80, 0x00ee27fb, 0xdf5e1f00, + 0x3fcc27fb, 0xc833c42b, 0x3f00cd83, 0x27fb9e5e, 0x5e3e00cd, 0xd4d1fb97, + 0xd3890110, 0xd5430b80, 0xd10110d4, 0x5e0134d4, 0x9207f8f9, 0xa7f9d85e, + 0xfddfff3e, 0xfc4034c1, 0x5ef8fc41, 0xd4b9fe02, 0x4ff6012e, 0xd199f96a, + 0x7e0d070d, 0x0d07eeef, 0xffcd66be, 0x0128d3a9, 0x27f9555e, 0x34d4d542, + 0xfe3d5e01, 0xd4bd4027, 0x685e0141, 0x45f153fe, 0x5e1401f0, 0x4c13fd31, + 0x83b4473f, 0xfa5e7fbc, 0x29f153fa, 0x5e1b01f0, 0x2a07faf1, 0x5e0c2c23, + 0x3ea7fcd0, 0xc1fdcfff, 0xeea74832, 0x07fdcfff, 0x2744a342, 0x48e4c530, + 0x070ef39b, 0xc5ff8b00, 0xe3c548e2, 0xaf3ea768, 0x3211fef5, 0x0230d4d1, + 0x42d4422b, 0xfa345ece, 0xf5be1d07, 0xad5efdd1, 0x07ea07fc, 0x53e3533a, + 0x112d2734, 0x45fe3521, 0xf9d75ef3, 0x0239d4b9, 0x3ea74766, 0x99feffff, + 0x43830934, 0x44332487, 0x43f9422b, 0xff00004d, 0x070b31c0, 0x83290b21, + 0xc95e7f2c, 0x7f2c27f9, 0xd0f9c35e, 0x27452e2c, 0x27310441, 0xfb4f1340, + 0xb9ffffff, 0xbd0239d1, 0xc0023ad4, 0x4c272911, 0x3bd4bdfa, 0x1b11c002, + 0x27fe4c27, 0x27110431, 0x3cd4bd30, 0xbd412702, 0xbd023dd4, 0x5e023ed3, + 0x4127f8ee, 0x4c27e61e, 0xd0d71efe, 0x2749292c, 0x27310441, 0xfd4f1340, + 0xb9ffffff, 0xbd0239d1, 0xc0023ad4, 0x4c272d11, 0x3bd4bdfc, 0x1f11c002, + 0x27ff2c27, 0x27110431, 0x00412730, 0xbd402711, 0xbd023cd2, 0xbd023dd4, + 0x5e023ed3, 0x2027f8a2, 0x4c27e21e, 0xc0d31eff, 0x4c273731, 0x39d1b9fb, + 0x3ad4bd02, 0x2511c002, 0x27fd4c27, 0x27110421, 0x00312720, 0xbd302711, + 0x27023bd4, 0x3cd3bd40, 0x3dd4bd02, 0x3ed2bd02, 0xf8645e02, 0xdc1e4027, + 0x1efe4c27, 0x070b07c9, 0xe6657e29, 0x01d0dbd1, 0xb4b97007, 0x4f4b036f, + 0x74074012, 0x0370b4b9, 0x74124f4b, 0xb4b97407, 0x4fe60385, 0xb4b9f800, + 0x4fe60386, 0xb2d1f7f8, 0x2ff60398, 0xd3a900ae, 0xb4d1012a, 0x43e20388, + 0x1ea7f7e4, 0xd1ffffff, 0x5e188413, 0x1d27f7da, 0x615e0100, 0x10d4d1f5, + 0x80d38901, 0xd4d5430b, 0x745e0110, 0x000d27f4, 0xf3f05e01, 0x10270d07, + 0x5ee51a7e, 0x20a7f341, 0x89efa15e, 0x412372d2, 0x23e32303, 0x249b2533, + 0x27f08e5e, 0xf0895e20, 0x5e272c27, 0x0027f04f, 0x27ef1e5e, 0xeff95e21, + 0x4103432b, 0x21152405, 0x27efb75e, 0xff2ea744, 0x24c5fdcf, 0x270b0748, + 0x15be181c, 0x4027ffc6, 0xcfff3ea7, 0x4834c5fd, 0x5e6834c5, 0xd1c1ef30, + 0x07f37198, 0x7e2b070d, 0xd65ee8be, 0x5e1147ef, 0xbcd1f4f7, 0xdea90388, + 0x4c07012a, 0x4ece429b, 0x39e4c231, 0x42072103, 0x21234c9b, 0xa72e4ec2, + 0xffffff0e, 0x188403d1, 0x038cb1d1, 0x41234107, 0xf71442ee, 0x4c9b4107, + 0xe4e24123, 0x235ef70a, 0xff4ea7ff, 0x43d1ffff, 0xdd1e1884, 0xd91e3707, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x1c000808, + 0x3030001c, 0x00343c00, 0x00001000, 0x03010010, 0x00020000, 0xfffffffb, + 0x00000048, 0xfffffff1, 0x00000048, 0xfffffff1, 0x00000048, 0xfffffffb, + 0x00000058, 0xfffffffb, 0x00000048, 0xfffffffb, 0x00000048, 0x00000000, + 0x00000058, 0xfffffff6, 0x00000060, 0xfffffff6, 0x00000060, 0x00000000, + 0x00000000, 0x0000000f, 0x00000018, 0x0000000f, 0x00000018, 0x00000000, + 0x00000000, 0x0000000a, 0x00000038, 0x0000000a, 0x00000038, 0x00000000, + 0x00000000, 0x0000000f, 0x00000038, 0x0000000f, 0x00000038, 0x00000000, + 0x00000000, 0x00000000, 0x00000018, 0xfffffffb, 0x00000020, 0x00000000, + 0x00000000, 0xfffffff1, 0x00000060, 0x00000000, 0x00000040, 0x00000000, + 0x00000000, 0xfffffff6, 0x00000040, 0xfffffffb, 0x00000038, 0x2ea7fd4e, + 0x27fdeb8f, 0x27230530, 0x4200004f, 0x0724150f, 0x0ef39bd0, 0xc0630499, + 0x04d14b41, 0x43b901d0, 0x430b0366, 0x030043b9, 0x34334387, 0x40f1430b, + 0xff000394, 0xe63f2ea7, 0x272005fd, 0x272e15e4, 0xa7213510, 0xfde62f3e, + 0x05244c27, 0xa73e1534, 0xf7ffff2e, 0x21d53135, 0x24d10100, 0x040b0108, + 0xfd8ed055, 0x01d004d1, 0x035a43b9, 0x43b9430b, 0xb51e0300, 0x1389f54e, + 0x1612891c, 0x891a1e89, 0xa107181c, 0x1ea74127, 0x45fddfff, 0x2b2e2b14, + 0xfc02c5c3, 0xd5f80cc5, 0xb901c412, 0x070362a3, 0x8413c5d0, 0xe374a4c1, + 0x530407f3, 0x83140748, 0x1153300c, 0x04534183, 0xf4c51183, 0xc5f06534, + 0x4ff630f1, 0x300701e2, 0xc134f4c1, 0x040e30f0, 0xa18934a3, 0xc541077c, + 0x4d8338f1, 0x4fe68000, 0x2ea7013d, 0x89fddfff, 0x2cd594a3, 0xa4c10108, + 0x7542fc98, 0x0c23d502, 0x80a4c101, 0x01f824d5, 0xc134f0c1, 0x408730f1, + 0xf2611333, 0x42ab41ab, 0xdfff1ea7, 0x8814c5fd, 0x035ea3b9, 0x11ff3cc0, + 0x34334387, 0x44f1430b, 0xff000390, 0x0100d4d5, 0x8978d489, 0x410374d3, + 0x4c332307, 0xff2d830f, 0x004f830f, 0x330fff00, 0x0342ab35, 0x14c57f3c, + 0x7f3ce3a0, 0x01d013d5, 0xd2d52127, 0xa3990104, 0x42a49941, 0x43833383, + 0x34334633, 0x230734ab, 0xd2d523a3, 0xa4b90104, 0x4c20035e, 0xd537a3ff, + 0xc10104d3, 0x4d8338f4, 0x4fe68000, 0xa4c10129, 0xc342f898, 0x04d2d101, + 0x002da301, 0x04d2d502, 0x98a4c101, 0x2da34458, 0xd2d50400, 0xa4c10104, + 0x404cf898, 0x2da30105, 0xd2d54000, 0xd4c10104, 0x002da3a4, 0x04d2d501, + 0x024de401, 0xa300fd01, 0x04d2d528, 0x60a4b901, 0x83302703, 0xab4b3343, + 0x04d2d524, 0xff4ea701, 0x43a5fddf, 0x3183f361, 0x00fd3ff6, 0x02c0a1d1, + 0xe0400c27, 0xfd02011d, 0x021df000, 0xe0011a02, 0x6602811d, 0x011de001, + 0x2700eb12, 0xd5f3c340, 0x8e010cd4, 0x234307f5, 0x3a43f442, 0x27412701, + 0x031a0733, 0x4ff6981c, 0x2ea705e3, 0x01fddef7, 0x05140314, 0xa8240324, + 0x074327f3, 0x031f073a, 0x1c03803c, 0x612f070c, 0x01100530, 0x05140330, + 0x03340320, 0x89f47824, 0xa0d1a4a4, 0x410302c0, 0x11531407, 0x20274123, + 0x27f00c18, 0x6b320721, 0x010de03f, 0xf4032103, 0x0303020d, 0x210d4001, + 0x220df401, 0xe002f201, 0xfc01020d, 0x040de402, 0x87010b01, 0x27702784, + 0x5ef48540, 0x20070108, 0x32072203, 0x22233383, 0x155ef265, 0x04d2d1fe, + 0x002da301, 0xa4d4c101, 0x0104d2d5, 0x01024de0, 0x4de0ff07, 0xff011102, + 0x80024de0, 0x4de0fefb, 0xfef58022, 0x01824de0, 0xa4d1feef, 0x478302c0, + 0xfeeb44e4, 0xd1fee25e, 0xc102c0a1, 0x1de4f8d0, 0xff070201, 0x27fcd2c1, + 0x07209b10, 0x07315332, 0xd4420b43, 0x3e80014e, 0x8341072d, 0xc3483343, + 0x0cd4d5f3, 0xe4f58e01, 0xc1fef211, 0xd3c1fcd4, 0x9b2007f8, 0x53249b34, + 0x07102731, 0xd0420b43, 0x3e80014e, 0xf0230ad5, 0x3e80012e, 0x41070220, + 0x48334383, 0xf3c341a3, 0x010cd4d5, 0xd2d1f58e, 0x495e0104, 0xe04127fe, + 0x27fec637, 0xfec15e40, 0x3d833703, 0x865efff8, 0xfcd4c1fd, 0x3ff61127, + 0x244701c4, 0x3207209b, 0x31531213, 0x0de0ae1e, 0xff111121, 0x11220df4, + 0x0de0023f, 0x01f91102, 0x11040de0, 0x0de0feff, 0x01fc0321, 0xf1851027, + 0x80277027, 0x0774a4c1, 0x07385334, 0x30ec83e4, 0xe4533183, 0xe20334c6, + 0x4953e383, 0x340e4183, 0xf4c1e4a3, 0x004d8338, 0x2d4ff680, 0xa4d4c1fd, + 0x03014de0, 0x6c2701ed, 0x020de040, 0xe001d801, 0x3c11020d, 0x210de004, + 0x00043603, 0xe401210d, 0x0811210d, 0x27212704, 0xf275405c, 0xe4084227, + 0x02810de0, 0x0de00146, 0x01490104, 0x11040de0, 0x0de00143, 0x013d2104, + 0xf1951027, 0x31040de0, 0x0de00137, 0x011d0182, 0x0de01027, 0x013e0301, + 0x03210de0, 0x30270138, 0x2027f3a5, 0xcea7f2b5, 0x27fddfff, 0xfcd2c1b0, + 0xd5409c27, 0x0b0114cb, 0x18cbd514, 0x3b390701, 0x1ccbd531, 0x27130701, + 0x210d0041, 0x3b402703, 0xc8e3e014, 0x34e4ec01, 0x77e1e001, 0x6ee2e801, + 0x010de005, 0xe0054d02, 0x4712010d, 0x020de005, 0xe0044101, 0x3b11020d, + 0x210de004, 0xe0052501, 0x1f11210d, 0x810de005, 0x07046702, 0xe0178310, + 0xe004fc14, 0xf601820d, 0x210de004, 0xc104c403, 0x2ea798a3, 0x33fddfff, + 0x403c2336, 0x011423d5, 0x339ca4c1, 0x204c2345, 0x011824d5, 0x33a0a3c1, + 0x203c2335, 0x011c23d5, 0x040a14e0, 0x01820de0, 0xd4c10404, 0x07f241f8, + 0x23315334, 0x51f13131, 0x9be207f0, 0x23720b23, 0x9bf28141, 0x0b309b41, + 0x0be53323, 0x33163384, 0x2bf28505, 0x13262b85, 0x2be01310, 0xc5001376, + 0xd8c5d4d1, 0xdcdec5d8, 0xc5e0d7c5, 0xd2c5e4d0, 0x01825ee8, 0x209b2447, + 0x32071027, 0x31531213, 0x27fdea5e, 0x5ef2a522, 0x3127fef2, 0xf3951027, + 0x27fed95e, 0x27f39530, 0xfed05e12, 0x43834107, 0x44a34833, 0xd4d5f3c3, + 0xf58e010c, 0x20273127, 0xf2a5f3b5, 0xc0fec95e, 0x5e02010d, 0x02810dc0, + 0x820de459, 0x47fe1701, 0x3b840b81, 0x27702783, 0x5ef38530, 0x133bfe10, + 0x833b8407, 0xf1857107, 0xe0fe035e, 0xe8023de5, 0xe001bae5, 0xe0014ae6, + 0x1e00afe7, 0x805c27ff, 0x10274127, 0x3f5ef175, 0x206c27fe, 0xe0fe145e, + 0xc821040d, 0x040de0fc, 0xe4fcc231, 0xc512010d, 0x3b8407fd, 0x03710783, + 0x3b202731, 0x5ef28573, 0x0de0fdbc, 0x02d70121, 0x11210de0, 0x0de002d1, + 0x02c40281, 0x47834007, 0x02c344e0, 0x01820de0, 0xf48102bd, 0x462b3607, + 0xf081f485, 0x30134507, 0x762b852b, 0xd4c54013, 0xd8d8c5d4, 0xc5e0d7c5, + 0xd0c5e4d3, 0xdcd3c5e8, 0xe000835e, 0x7f01210d, 0x210de002, 0xe0027911, + 0x4d02810d, 0x83400702, 0x1344e447, 0xfcd4c102, 0x4123f331, 0x2587439b, + 0xc5d4d2c5, 0x551ed8d4, 0x0de03207, 0x01f30121, 0x11210de0, 0x0de001ed, + 0x01d40281, 0xfc41fb31, 0xf4a12307, 0x143b2173, 0xf4512123, 0x3123f081, + 0x3b9bc29b, 0x062b312b, 0xc62b249b, 0x40134607, 0x380bf085, 0x020bc70b, + 0xd1c51013, 0xd8d3c5d4, 0xc5e0dcc5, 0xd0c5e4d4, 0xdcd4c5e8, 0xd2c1f391, + 0xc1f401d8, 0x233be8d0, 0x0be0d1c1, 0x3bf42124, 0xd4dec103, 0xc1dcdcc1, + 0x133be4db, 0xf311040b, 0x130bf491, 0xc43be43b, 0xdec5b43b, 0xdcdcc5d4, + 0xc5e4dbc5, 0xd1c5d8d2, 0xe8d0c5e0, 0xa1fa035e, 0x07f291f4, 0x71240be9, + 0x98a3c1f4, 0x4107e47b, 0x2407423b, 0x40133e9b, 0xc4d5432b, 0xf4b10114, + 0x7b9ca3c1, 0x33201324, 0xd5321b35, 0xc10118c3, 0x4533a0a4, 0xc2d5242b, + 0x0de0011c, 0x00fd0281, 0xfc41fb31, 0xf451f0a1, 0x3707103b, 0xbe9b362b, + 0xc533812b, 0xdbc54533, 0xd8d8c5d4, 0xc5dcdcc5, 0xd3c5e4d4, 0xe0d3c5e8, + 0xa1ff535e, 0xc1f391f2, 0x320b98a4, 0xf371f3a5, 0x937b2107, 0x499bf3a1, + 0x420b233b, 0x0114c4d5, 0xb19ca3c1, 0x7b3533f4, 0xd5320b24, 0xc10118c3, + 0x4533a0a4, 0xc2d5240b, 0x0de0011c, 0x00860281, 0xfc41fb31, 0x51f8d4c1, + 0x07f071fe, 0x07205b24, 0x5339071c, 0x230e0741, 0x23301341, 0x33153321, + 0x9bc49b05, 0x9b4e9b2b, 0x1310133b, 0xd4d3c500, 0xc5d8d2c5, 0xdcc5dcd1, + 0xe4d0c5e0, 0x5ee8d4c5, 0xf2a1fed4, 0x3be4d6c5, 0xd4d1c512, 0xc5e8dbc5, + 0xd6c5d8db, 0xe0dbc5dc, 0x27febb5e, 0x4127405c, 0x11020de0, 0x4027fdb6, + 0xa7fdb15e, 0xfddef72e, 0x14031401, 0x24054013, 0xf3982403, 0x27fa1c5e, + 0xdb1e805c, 0xfc41fb31, 0xc153b153, 0xfc45fb35, 0x31ff735e, 0x53fc41fb, + 0x53c153b1, 0x35715381, 0x5efc45fb, 0xfb31fef8, 0xb153fc41, 0x8153c153, + 0xfb357153, 0x215efc45, 0x5e3173fe, 0x0de0fe12, 0xfdeb0182, 0x31fcd3c1, + 0x232307f4, 0x9bf14131, 0x51215334, 0x9b2123f4, 0xc5249b12, 0xd3c5d4d5, + 0xe0d1c5d8, 0xc5e4d6c5, 0xd6c5e8d2, 0xfe265edc, 0x31fcd4c1, 0x07f241f3, + 0x23415314, 0x9b412311, 0x47429b13, 0xc5264735, 0xd1c5d4d3, 0xdcd2c5d8, + 0x5ee0d4c5, 0xd4c1fe00, 0x5e4153fc, 0x5547fd94, 0x475e6647, 0x5e5587fd, + 0xa4c1fd42, 0x23463398, 0xc4d5804c, 0x0dc00114, 0xc07f0121, 0x7a11210d, + 0x02810dc0, 0x83100741, 0xfbf65e17, 0x31f8d4c1, 0x9b4123f3, 0x004d2343, + 0x0b363301, 0xc5301348, 0xd4c5d4d3, 0xfdae5ed8, 0xa798a4c1, 0xfddfff2e, + 0x4c234633, 0x1424d580, 0x9ca3c101, 0x3c233533, 0x1823d580, 0xf8d4c101, + 0xf241f131, 0x41533407, 0x41233123, 0x429b319b, 0x23803c23, 0x1633804c, + 0x380b2533, 0x1013470b, 0xd1c52013, 0xd8d3c5d4, 0xc5dcd2c5, 0x5d5ee0d4, + 0xf8d4c1fd, 0x4153f331, 0x439b4123, 0x36333173, 0x01004d23, 0x3013480b, + 0xc5d4d3c5, 0x3d5ed8d4, 0x98a3c1fd, 0xdfff2ea7, 0x233633fd, 0x23d5803c, + 0xa4c10114, 0x2345339c, 0x24d5404c, 0xa3c10118, 0x233533a0, 0x23d5403c, + 0x3d5e011c, 0x98a4c1fb, 0xdfff3ea7, 0x234633fd, 0xd501004d, 0x5e011434, + 0xa4c1fb28, 0x23453398, 0xd501004d, 0x5e0114c4, 0xa4c1ff0e, 0x23463398, + 0xc4d5404c, 0xa3c10114, 0x2335339c, 0xc3d5403c, 0xf35e0118, 0xcceff6fe, + 0x010de0fb, 0xe0011f02, 0x1912010d, 0x020de001, 0xe0010301, 0xfd11020d, + 0x210de000, 0xe000e201, 0xdc11210d, 0x810de000, 0x0700b402, 0xe0478340, + 0xe0009844, 0x9201820d, 0x210dc000, 0xa3c16003, 0xff2ea798, 0x3633fddf, + 0xd5803c13, 0xc1011423, 0x45339ca4, 0xd5404c13, 0xc1011824, 0x3533a0a3, + 0xd5403c13, 0x31011c23, 0x51f441f1, 0x332027f3, 0x33163345, 0xdcd4c535, + 0xc5e4d3c5, 0xd1c5e8d2, 0xd8d2c5d4, 0xd1e0d2c5, 0x0002c0a4, 0xe401214d, + 0x3911214d, 0xc51173fc, 0x315ed4d1, 0x98a3c1fc, 0xdfff2ea7, 0x133633fd, + 0xd501003d, 0xc1011423, 0x45339ca4, 0xd5804c13, 0xc1011824, 0x3533a0a3, + 0xd5803c13, 0x1e011c23, 0x98a4c19f, 0xdfff3ea7, 0x134633fd, 0xd502004d, + 0x1e011434, 0x98a4c18b, 0xdfff2ea7, 0x134633fd, 0xd501004d, 0xc1011424, + 0x35339ca3, 0x01003d13, 0x011823d5, 0xc1ff6a5e, 0x3ea798a4, 0x33fddfff, + 0x004d1345, 0x1434d502, 0xff555e01, 0x3398a4c1, 0x004d1346, 0x14c4d501, + 0xff455e01, 0x3398a4c1, 0x804c1346, 0x0114c4d5, 0x339ca3c1, 0x803c1335, + 0x0118c3d5, 0x00ff2a5e, 0x00100000, 0x4027f54e, 0x0707049d, 0x0c1099d0, + 0xd09d5107, 0x12118963, 0xd18df0e3, 0x6cde896c, 0x47145289, 0x6ed28d4e, + 0x8972d48d, 0x54d11653, 0x3c0302c0, 0x8d35531f, 0xd4c574d3, 0x893123a4, + 0x35331654, 0x4123432b, 0xd49d4353, 0x16538965, 0x4fff2ea7, 0x0f3c03fd, + 0xd38d3453, 0x18548976, 0x530f4c03, 0x78d48d44, 0x03185389, 0x35531f3c, + 0x897cd38d, 0x31231854, 0x432b3533, 0x43534123, 0x9966d49d, 0xd09d0e50, + 0x5051a90b, 0x7424c103, 0xe880d18d, 0xd1058740, 0x9901d0d4, 0x3fd64143, + 0x7424c168, 0x05a440e8, 0x04644d27, 0x2782d48d, 0x2704244d, 0x8d03e43d, + 0x54b984d4, 0xd38d035f, 0x684fc686, 0xffff4ea7, 0x4143b9fe, 0x96212701, + 0x07202734, 0xa9d31d32, 0xb9034a53, 0x8d035454, 0x50a988d3, 0xd08d034c, + 0x994f668a, 0x302763d4, 0x31274496, 0x318331c3, 0xd33dd419, 0x51d14e36, + 0xd1d50274, 0x4f1e0118, 0xe87424c1, 0x27055f40, 0x8d05144d, 0x3d2782d4, + 0x4d270484, 0xd38d04c4, 0x84d48d86, 0x035f54b9, 0x279a4fd6, 0xa9d31d30, + 0xb9034a53, 0x8d035454, 0x50a988d3, 0xd08d034c, 0xa84fd68a, 0xd4193027, + 0x4fc6d33d, 0xff4ea7b2, 0xd4d5dfff, 0x54b90118, 0x53d1036b, 0x418302c8, + 0x43333483, 0x52d143ab, 0xd4c50278, 0x542399a0, 0x8380d089, 0x36333f3c, + 0xd3c534ab, 0x552499a0, 0x4c831e07, 0x0c4c333f, 0x109b2047, 0x120b34ab, + 0x277ede8d, 0xe2030c2c, 0xd3c54d07, 0xc8d1c5a0, 0xc5d0dec5, 0x4d03ccd0, + 0x102701d8, 0x41053207, 0x44032123, 0x4027f3b8, 0xd0893127, 0x0cd49d72, + 0x9d0dd39d, 0x0cf00ed2, 0x2701e41e, 0x63de9942, 0xf60fd49d, 0xb901e2ef, + 0xa7035a54, 0xb9450b30, 0x27030042, 0x60d29d41, 0x24331287, 0x9d62d49d, + 0x120b61d3, 0x039012f1, 0x4027ff00, 0x9df0d2c5, 0xd49deed4, 0xade2e0ed, + 0xd0ded103, 0x27402701, 0x09d49d31, 0xf00ad39d, 0x07035008, 0xc1010340, + 0x01e3d0d3, 0x43032007, 0x24033223, 0x025ed4ad, 0x0262d3ad, 0x0264d2ad, + 0x0260d3ad, 0x0356e2b9, 0x0357e1b9, 0x46234207, 0x034e40e8, 0x04073107, + 0x0f6b3623, 0x035030e8, 0x077f3c83, 0x103c3340, 0x43ab4833, 0x373340ab, + 0x2ea343ab, 0xa7020000, 0xf3ffff3e, 0x34451833, 0x32c521ab, 0xc8e4d148, + 0x004df802, 0x2702dc10, 0x094a522e, 0xffff4ea7, 0x54e3b9f3, 0xf6423503, + 0x9901043f, 0x1d2763d4, 0x21270112, 0x20274200, 0xe3b92933, 0xe4c10365, + 0x003ea340, 0x32ab1080, 0x4ef831ab, 0xd5ffff00, 0x504c2700, 0x8d403ca3, + 0xe4b97ad4, 0x13070367, 0x00001fa3, 0x4ff65400, 0xe4b90096, 0x4ff60194, + 0xe2d1008e, 0x2dfc02d8, 0x03500a00, 0x4fff3ea7, 0x7434c1fd, 0x008840e8, + 0xffff3ea7, 0x09d499f3, 0x564c31c5, 0xcd4e2745, 0x34c535cb, 0xc52f0b74, + 0xe4b95032, 0x42d0036a, 0xff2ea74a, 0x4e27ebff, 0xd5c0a49c, 0xd5011824, + 0xd5011c24, 0x27012024, 0xa08c843e, 0x012423d5, 0x012823d5, 0x012c23d5, + 0x08104e27, 0x3024d504, 0x3424d501, 0x3824d501, 0x203e2701, 0x23d50810, + 0x23d5013c, 0x23d50140, 0xe4b90144, 0x4ff60365, 0xf0c30243, 0x3ea7f58e, + 0xc1fd4fff, 0xe2d17434, 0x40ec02d8, 0x34c1ff7c, 0x004ef874, 0xff720100, + 0x036ee4b9, 0xab1f4c33, 0xff665e14, 0x8d404c27, 0x2f5e7ad4, 0x63d499ff, + 0x02734ff6, 0x1d272027, 0xff5e0112, 0x63de99fe, 0xe60fd19d, 0xd1fe22ef, + 0xd101d0d6, 0x8901d4d8, 0x63d13461, 0xf11502c4, 0x035962b9, 0xf2250807, + 0x59bef305, 0x3127ff94, 0xffff4ea7, 0x4c43c5f7, 0x4c034807, 0x27202718, + 0x4205103c, 0xf3c84403, 0xe0270027, 0x2711bc27, 0x47f20141, 0x074e3b1e, + 0x0b428b31, 0xb94ea636, 0x07030032, 0x33328742, 0xe0340b44, 0x0278ff2c, + 0x039837f1, 0x3007ff00, 0x02c864d1, 0x31039107, 0xa0871007, 0x180b980b, + 0x4ddcc387, 0xf5240400, 0x0a3f80a7, 0x58129dff, 0x2718909d, 0x1000004e, + 0x3f80c4f5, 0x939dff0a, 0x0b40a719, 0x9d020338, 0xe1035834, 0x0799fbf0, + 0x9d4f6b40, 0x46b60a84, 0x4ea78351, 0xe5f7ffff, 0x023f8043, 0x3f8443e5, + 0xd4020302, 0x2717200c, 0x2e27203c, 0x2b100000, 0xf5408730, 0x0a3f8042, + 0x980103ff, 0x4540a7f3, 0x07843584, 0x8bebbe08, 0x5a64b9fd, 0xd4d2d103, + 0x63d39901, 0x4499420b, 0x6ad49d18, 0x021732e0, 0xfc4064c1, 0xffff004e, + 0x2f2701ec, 0x800082b0, 0x01d0d4d1, 0x02c843d1, 0x01003d18, 0x10002da3, + 0x4ea7f011, 0x03f7ffff, 0x63890f0c, 0x15422534, 0xc50473f0, 0xf1218040, + 0x23366289, 0x8443c531, 0x0b8841c5, 0x23f12512, 0x8c41c511, 0x43c53027, + 0xc52123a8, 0x4335ac42, 0x43c54345, 0xff3ea734, 0x34a1efff, 0x00004fdc, + 0x071b4000, 0x05412723, 0x9b302724, 0x00070ef3, 0x2305ff8b, 0x4fd824a1, + 0x40000000, 0xd0d3d1e9, 0x4034c101, 0xff004efc, 0x27014eff, 0xff3ea72b, + 0x3225efff, 0x34354027, 0x8963de99, 0x785e72d0, 0xd22e27fc, 0x255e0749, + 0x032007fd, 0x8901e301, 0x4007d0d3, 0x48032703, 0x0264d4ad, 0x025ed2ad, + 0x0262d3ad, 0x0260d3ad, 0x0356e2b9, 0x0357e1b9, 0x46234207, 0xfcb640ec, + 0x31074027, 0x36230407, 0x30ec0f6b, 0x3027fcb4, 0x07fcaf5e, 0x0ef0c30d, + 0xef1a5ef5, 0x036654b9, 0x039412f1, 0x450bff00, 0x030041b9, 0x07082b99, + 0x87343331, 0xf1430b41, 0x0003944c, 0x9044f1ff, 0x89ff0003, 0xd4c52423, + 0x24c489f4, 0xce992a81, 0x61d19d08, 0xd60c43c2, 0xe9b1e0e4, 0x9d422700, + 0xded162d4, 0xc28101d0, 0x42c2e491, 0x2731271e, 0xedd39d40, 0x9deed49d, + 0xfa5eecd3, 0x921d27fb, 0xfc885e01, 0x5e7424c1, 0x4f6bfa77, 0x4a2b242b, + 0x21234123, 0xd39d3027, 0xedd49dec, 0x5eeed29d, 0x1307fbd5, 0x1fa34127, + 0x54400000, 0x5e09d49d, 0x24c1fca4, 0x004ef874, 0xfa560100, 0x04744d27, + 0x2782d48d, 0x2703f43d, 0x8d04344d, 0xd48d86d3, 0xfaba5e84, 0xf87424c1, + 0x0100004e, 0x4d27fa9b, 0xd48d0524, 0x943d2782, 0xd44d2704, 0x86d38d04, + 0x5e84d48d, 0xf353fa98, 0x3701f970, 0x99fd895e, 0x32994234, 0x83438341, + 0x33243323, 0xa324ab48, 0xfea35e2b, 0x99416399, 0x22274264, 0x2783232b, + 0x47834213, 0xa3142c33, 0x0482b02f, 0x174c3380, 0xfd5e24ab, 0x6664b9fd, + 0x99240b03, 0xd29d1822, 0xfdde5e6b, 0xd49d4327, 0xff185e62, 0x000000e9, + 0x07d1f54e, 0xf06301d0, 0x6ea79007, 0xa7ffffff, 0xfeffffae, 0xffff8ea7, + 0xff5ea7f3, 0x64d1f7ff, 0x4fe60e5c, 0x0ea7017e, 0x11fd7fff, 0x104ca304, + 0x40270415, 0x01d49cd1, 0x4227741d, 0xa499f405, 0x48a3d109, 0x07438301, + 0x87d433d4, 0x07d42b44, 0xb4be23bd, 0x3ff6ffff, 0xd3f100cb, 0xff000054, + 0x6dd14027, 0xc49d065c, 0x42c10104, 0x02d307d3, 0xeed10713, 0x07014e1d, + 0x07418341, 0x33348724, 0x0b320b27, 0x33230734, 0x53232b23, 0x0bff6ffe, + 0x05e40124, 0x942e23c1, 0x3707fff9, 0x24032001, 0x34033005, 0x64d1f4a8, + 0x411b0658, 0x010c40e8, 0xc49d4127, 0x04c49904, 0x00944ff6, 0xeff6fe01, + 0x0907ff7e, 0x557e1707, 0x071707f8, 0xed8e7e09, 0x91be0907, 0x9199ffb7, + 0xbe09070c, 0xc1ffb607, 0x44dc3484, 0xc5482724, 0x90d14054, 0x442701d4, + 0x273884c5, 0x69be141c, 0x3027ff8f, 0xc53883c5, 0x84c14053, 0xde44d834, + 0x01d490d1, 0xff9037be, 0xdfff0ea7, 0xf80431fd, 0x0301004d, 0x9e0127ff, + 0xd1fdb7bd, 0xc00148a4, 0xa4d13241, 0x42c00148, 0x48a4d161, 0x7e43e401, + 0x35a4b9ff, 0x104cd81d, 0xd5402771, 0x990148a4, 0x4fe604c4, 0x0c07ff70, + 0x31be1707, 0xf005ff90, 0xf1ff635e, 0x000054d4, 0xe2c301ff, 0xd100e243, + 0xca065c64, 0x0ea7d434, 0xbefff99f, 0xf1fdb7d2, 0x000054d2, 0xd1c301ff, + 0xca065c64, 0x23c2bc34, 0xbe0527b9, 0x1efd97b6, 0x9b4027b1, 0xf49b0bf4, + 0xbe09270e, 0x5efd97a6, 0x3ea7ff15, 0x11fd7fff, 0x104ce334, 0x835e3415, + 0xbe0827fe, 0x5efd978e, 0x0d07fefd, 0x1103012b, 0x0545f0f0, 0x04b499cd, + 0x63d145b6, 0xa4d10e4c, 0x34ca013c, 0xe40cbe2a, 0xa9b369fd, 0xce010264, + 0xb4196234, 0x41033027, 0xf39bb41d, 0xff4ea70e, 0x0ea7fd4f, 0xc5fff99f, + 0x04be3843, 0x4127fdb7, 0x0148a4d5, 0x07feb05e, 0x07418341, 0x33348724, + 0x0b320b27, 0x33230734, 0x53232b23, 0x0bfddffe, 0x05e40124, 0x942e23c1, + 0x3707fff9, 0x24032e01, 0x34033e05, 0x64d1f4a8, 0x411b0658, 0xfe7240ec, + 0x25ff7d5e, 0xa99c1ebd, 0xa90144a3, 0xee0142a4, 0x27fe6443, 0x48a4d542, + 0xfe5b5e01, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x0499fd4e, 0x6c41c012, 0x4e070e39, 0xd42c4c23, + 0x34070f44, 0x3e233333, 0x01ebff7c, 0xfc41dc34, 0x43270219, 0x33333207, + 0x120034f5, 0x31f1ff02, 0xff021000, 0x1c33d247, 0x1d1c5318, 0x3d871616, + 0x00274227, 0x120034f5, 0xfd8eff02, 0x25334e87, 0x180423f1, 0x0299ff02, + 0x0040f110, 0x23ff0216, 0x3b030b11, 0x273d8712, 0xf5010b42, 0x02120034, + 0x27fd8eff, 0x4efd8e00, 0x834107fe, 0x11039941, 0x400b4487, 0x4e61312b, + 0x8e803c1c, 0x810191fe, 0x87131902, 0x05420b43, 0x1d31034e, 0x11049913, + 0x049d4103, 0x4efe8e11, 0xff4ea7fa, 0x4b01fd4f, 0xb433d007, 0xa407bba3, + 0x4627dc01, 0x33bec776, 0xd401fcda, 0x44963027, 0xf39bdb05, 0x38acc50e, + 0xb4ced401, 0xe8fa8ee4, 0x4ede1ef4, 0x990421fb, 0x41231003, 0x0d99435b, + 0x6bc40711, 0x2b3d07cf, 0x1cb0073c, 0xfb8e803c, 0xffdf0ea7, 0xcea93eff, + 0x4d0713cd, 0xd4074103, 0x0b07df6b, 0x687e1d07, 0xefdcceff, 0xf49b4027, + 0xdf3ea70e, 0x3405ffff, 0xf94efb8e, 0x0ea7d007, 0x07ffffdf, 0xa1c107b2, + 0x10da99d9, 0x99ff727e, 0x2b0710d0, 0x2dbe1c07, 0xb0070004, 0xc9070b46, + 0x1c07ca5b, 0x12230d07, 0x27ff267e, 0x0ef49b40, 0xffdf3ea7, 0x993405ff, + 0xd3a110d2, 0x4127c183, 0xcc87423b, 0xcd0b340b, 0xcb650d07, 0x05bed3a5, + 0x0127fc90, 0x4027f98e, 0xa70ef49b, 0xffffdf4e, 0x4b050027, 0x0000f98e, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00030002, 0x00050004, + 0x00080006, 0x000c000a, 0x00140010, 0x00200019, 0x00320028, 0x00500040, + 0x00800065, 0x00cb00a1, 0x01420100, 0x02000196, 0x032c0285, 0x050a0400, + 0x08000659, 0x0cb20a14, 0x14281000, 0x20001965, 0x32cb2851, 0x50a24000, + 0xfb4e6597, 0xb107d007, 0xf9f30ea7, 0x071d07ff, 0x99febec2, 0x070636fb, + 0x072b071d, 0xf30ea73c, 0x43befff9, 0x4027fbea, 0x8e0ef49b, 0x000000fb, + 0xf493fd4e, 0xc1015c70, 0x10078043, 0x38031f6b, 0xd30bd187, 0x38230853, + 0x01102f9b, 0x2b3e51d4, 0x9dd40542, 0x349908e1, 0xff2ea712, 0xe49dfd4f, + 0x4d344909, 0x083499e4, 0x23113169, 0xe46d410b, 0x07f6e305, 0xf49b4027, + 0x8b00070e, 0x274027ff, 0x9de40530, 0x2f9b08e3, 0x0bd40110, 0x8ed40542, + 0x734007fd, 0xe8410342, 0x4ee31ef4, 0xb41cb9fb, 0x07d10702, 0xd8e307b2, + 0x43074cc1, 0x44874183, 0x4319420b, 0x029612a9, 0x22874039, 0x11d13533, + 0x4e07029c, 0x180030f5, 0x429bff02, 0x32f5410b, 0xff021804, 0x3e231027, + 0x35fde800, 0x003e0331, 0x34f5fde8, 0xff021810, 0x181432f5, 0x3e23ff02, + 0x35fde7f0, 0x4cc2d831, 0x41834e07, 0x4b0b4487, 0xa9084399, 0x990296d2, + 0x22470941, 0xd4d13533, 0x31f502a0, 0xff021800, 0x4e0be29b, 0x180432f5, + 0x1027ff02, 0xe8003e23, 0x033135fd, 0xfde8003e, 0x181034f5, 0x32f5ff02, + 0xff021814, 0xe7f03e23, 0x8e3135fd, 0xb9fd4efb, 0x0702b404, 0xd8e207d1, + 0x42073941, 0x44874183, 0x4119410b, 0x21074527, 0x24f52333, 0xff021200, + 0x100023f1, 0x3dd8ff02, 0x0714fc0a, 0x27233321, 0xf1f4e843, 0x02100023, + 0x0a3ddcff, 0x04b9f2fc, 0x42d802b4, 0x87e1832e, 0x994d0b4e, 0x45270842, + 0x24f52333, 0xff021200, 0x100023f1, 0x3dd8ff02, 0x2710fc0a, 0xf1f4e843, + 0x02100023, 0x0a3ddcff, 0xfd8ef2fc, 0x58f2f193, 0xdb4ea701, 0x4301fefd, + 0x10111201, 0x3108322b, 0x00a7fe0b, 0xf74efb1e, 0xd0070409, 0x010541e2, + 0x21032107, 0x00ff42ea, 0x8174d4c1, 0x70d3c1dc, 0x0778dbc1, 0x2b912b92, + 0x01399bc4, 0xc2c30bb4, 0x0e270ec4, 0x7e01f40d, 0xb401fe28, 0xa7f44cca, + 0xfeffff3e, 0x1cd834a9, 0x34ad490b, 0x31271cd8, 0xcfff4ea7, 0x7043c5fd, + 0x4fff2ea7, 0x7424c1fd, 0xe884d3c1, 0xc100c940, 0x4efc4034, 0xabffff00, + 0x887c2700, 0xf688d4c1, 0xd100ab4f, 0xa102743b, 0xb1b40bd4, 0xff3ea7dc, + 0xc103feff, 0x1cd034d1, 0x2b1fcc83, 0x1f4c834c, 0x071794ca, 0x100e27a3, + 0xbd7e01f4, 0xd0a4d1fd, 0x834c2b1c, 0x49c21f4c, 0x819fa6ed, 0x7faea7d1, + 0xcea7fde5, 0x27fde53f, 0xeea71c8c, 0x07fde52f, 0x8cd4c109, 0xa405410b, + 0x2027a715, 0xd4b1a235, 0x3487cb05, 0x432b4533, 0xe7544e23, 0x35c815fe, + 0x15e405c2, 0xb1e235e8, 0x70d3c1d4, 0xd2a1d181, 0x230b4103, 0x4c83b30b, + 0xb5310b1f, 0x85d2a5d4, 0xf01307d3, 0xd9c5bcf0, 0x8ef78e30, 0x5e2407f7, + 0xd4c1ff00, 0xa87c2788, 0xff594fe6, 0xa18cdbc1, 0x5eb40bd4, 0x24c1ff57, + 0x004ef874, 0xff310100, 0x384034c1, 0xffff004e, 0x5eb87c27, 0x7c27ff30, + 0xff2a5e98, 0xd007fb4e, 0x0ea7b107, 0x07fff9f3, 0xbec2071d, 0x36fc8ce6, + 0x071d0706, 0xa73c072b, 0xfff9f30e, 0xfc91d5be, 0xf49b4027, 0x00fb8e0e, + 0x00000040, 0x04c1f54e, 0x7403c170, 0xbea74447, 0x0bfeffff, 0xd8bca934, + 0x8503951c, 0x27037103, 0x0304a510, 0xe30409c2, 0x0703b5f1, 0x6c01c5d0, + 0xad3001c5, 0x451cd8bc, 0x7ef255f4, 0x3ea7fe52, 0xc1fdefff, 0x4c33a034, + 0x1d4c5318, 0x44cc4413, 0x27230715, 0xc1f3e833, 0x4c33a024, 0x1d4c5318, + 0x44c84413, 0xff3ea7ef, 0x34c1fdef, 0x6a4dd8b4, 0x23070ffc, 0xf4e84327, + 0xdcb423c1, 0xf5fc6a3d, 0xb984d4c1, 0x86035c43, 0xff4ea736, 0x43a9feff, + 0xd2c11cda, 0xad320b30, 0x271cda43, 0x30d4c540, 0x4ea73127, 0xc5fdcfff, + 0x0d077043, 0xdf7e1127, 0x6cd3c1fd, 0xefff2ea7, 0xc53103fd, 0x051e6cd3, + 0xf3e83327, 0x33a024c1, 0x4c53184c, 0xc844131d, 0x3ea7ef44, 0xc1fdefff, + 0x4dd8b434, 0x070ffc6a, 0xe8432723, 0xb423c1f4, 0xfc6a3ddc, 0x84d4c1f5, + 0x035c43b9, 0x4ea73686, 0xa9feffff, 0xc11cda43, 0x320b30d2, 0x1cda43ad, + 0xd4c54027, 0xa7312730, 0xfdcfff4e, 0x077043c5, 0x7e12270d, 0xd4c1fd72, + 0xb5f3936c, 0x23070156, 0x2c034103, 0x6cd4c5df, 0xe37f2ce3, 0x34197f3c, + 0xc2803c03, 0xf393f932, 0x27015698, 0x384c2720, 0x34033205, 0xfe51f4c8, + 0xfffdefe0, 0x04c9ffff, 0x12a72d07, 0x15342c03, 0x27f265f1, 0xc1f31111, + 0x330380d2, 0x43834307, 0xf315c407, 0xc6334333, 0xf411c42b, 0x56335107, + 0x23991333, 0x2b432309, 0x03f41551, 0x05e970cf, 0x705f0300, 0xe60005e9, + 0x4904df3f, 0x69c70d27, 0x08249923, 0x430bc809, 0x2799c42d, 0x9d380708, + 0xd9c10bc7, 0x89a70784, 0x47071692, 0xa5333633, 0xa40b4733, 0xaf03232b, + 0x0005ea50, 0x2c30db61, 0x2dfe5341, 0x29e201fe, 0x189189c6, 0x46334607, + 0xe703e207, 0xe353142b, 0x53411c30, 0x01fe13f2, 0x38949921, 0x4423d051, + 0x2b07d341, 0x022b243b, 0x17033b2b, 0x5380d2c1, 0x0f0c8313, 0xe1233783, + 0x0c333733, 0x23e78310, 0x3303ab11, 0x991783eb, 0x24990a23, 0x330eab08, + 0x01ab141c, 0x0da3430e, 0xc4890440, 0x83a10108, 0x0b444747, 0x34c4c541, + 0x4107d361, 0x2307380b, 0x2c834383, 0x004fa30f, 0x87a00000, 0x87378322, + 0xab42ab33, 0x2740ab43, 0x15c45530, 0x091e56c3, 0xc23807d2, 0x94c14a28, + 0xc24fe6d0, 0x03480705, 0x1a24e241, 0x83130706, 0xe6d37113, 0x0b09026f, + 0x1f4c8343, 0x31072407, 0x25334487, 0x13333533, 0x312b242b, 0xe9083f03, + 0x2e230005, 0x27fee750, 0x03210146, 0x03310524, 0xe6f4a834, 0xa7056b8f, + 0xfd4fff1e, 0xe87414c1, 0x27054c40, 0x6507643d, 0x06a499c3, 0x4fe64f4b, + 0xa40103b7, 0x03b14ff6, 0x3027c409, 0x31274486, 0x43073f6b, 0xc49d41c3, + 0x2734f60a, 0x0fc49d40, 0xc4097656, 0x4103d309, 0xd4c13452, 0xc541036c, + 0xd4c16cd4, 0x5c43b984, 0x843fe603, 0x80d1c103, 0x10291209, 0x07ad02ee, + 0x43834207, 0x4399410b, 0x0b3f4b0d, 0xf120c823, 0x07ee02da, 0x83320742, + 0x9d325343, 0x134d0814, 0x1ea7120d, 0x21ebffff, 0xcd41f814, 0x0bc49906, + 0x00884ff6, 0xe66cd4c1, 0xa700814f, 0xfdefff7e, 0x33a074c1, 0x4c53184c, + 0xcc44131d, 0x33271844, 0xeea7f3e8, 0xc1fdefff, 0x4c33a0e4, 0x1d4c5318, + 0x44c84413, 0xff1ea7ea, 0x14c1fdef, 0x6a4dd8b4, 0x432712fc, 0x2ea7f4e8, + 0xc1fdefff, 0x3ddcb423, 0xc1f0fc6a, 0x43b984d4, 0x3726035c, 0xffff3ea7, + 0xda34a9fe, 0x30d3c11c, 0xffff7ea7, 0xad430bfe, 0x271cda74, 0x30d4c540, + 0xeea74127, 0xc5fdcfff, 0xd1c170e4, 0x7e0d076c, 0x5451fabe, 0x008c4fe6, + 0xa70b5399, 0xebffff1e, 0x25332307, 0x14c13733, 0x03230b50, 0x05ea502f, + 0x5023c100, 0x44874fab, 0x24c5430b, 0xff2ea750, 0x13c1f3ff, 0x3024c174, + 0x4d831127, 0x430b03ff, 0x21c55475, 0x6022c130, 0x32074207, 0x38534553, + 0x83703c83, 0x430b7c4c, 0x0b7f2c83, 0xa7548542, 0xf3ffff3e, 0x076432c1, + 0x53320742, 0x83385345, 0x4c83703c, 0x83430b7c, 0x420b7f2c, 0x4ea75495, + 0xc5f3ffff, 0x51a56041, 0x5502f493, 0x0b439901, 0xc45153b5, 0x02174fe6, + 0x4fff7ea7, 0x7474c1fd, 0x028440e8, 0x4fff7ea7, 0x7474c1fd, 0x025d40e8, + 0xeea7c461, 0xc5ebffff, 0xc45144e4, 0xffff1ea7, 0x511445eb, 0xe04fe654, + 0x84d4c100, 0xe6d043c1, 0x9900b93f, 0x5e710b5b, 0x8b073b07, 0x85333333, + 0x4807832b, 0x47c14d0b, 0xc153b134, 0x4ac1444c, 0x91508140, 0x3c49c151, + 0xe70b52a1, 0x47c15609, 0x0b3c0b38, 0x0b070b2a, 0x4443c519, 0x3607da09, + 0xc5344ec5, 0x41c53840, 0x4042c53c, 0x3a0a3b0b, 0xd4713607, 0x460b3383, + 0x071f4c83, 0x87753374, 0x07742b44, 0x33453343, 0x23432b33, 0xfee7507e, + 0xe9084f03, 0x37070005, 0x4e012627, 0x3e054403, 0xf2a83403, 0x53097231, + 0x230b2103, 0x4807f361, 0x7235430b, 0x7e014641, 0x70114901, 0x71214a11, + 0x4b314c21, 0xe90b7341, 0x1c0b0a0b, 0x360b2b0b, 0x7e057345, 0x71257015, + 0x7ea77235, 0xa9feffff, 0x031cd674, 0xd674ad41, 0xa741271c, 0xfdcfffee, + 0x2770e4c5, 0x11535530, 0x151103f1, 0x071383f1, 0x33310741, 0x2b363343, + 0x8432f134, 0xe60005e9, 0xa700862f, 0xfdefff2e, 0xc1ac24c1, 0x4c338cd0, + 0x1d4c5318, 0xd2914413, 0x271843cc, 0xa7f3e833, 0xfdefff3e, 0x33ac34c1, + 0x4c53184c, 0xc844131d, 0x7ea7ea43, 0xc1fd4fff, 0xd3c17474, 0xf240e884, + 0x4034c100, 0xff004efc, 0x2700e2ff, 0x020b884c, 0xe54f2ea7, 0x152005fd, + 0x35402724, 0x08d39924, 0xd2c1d491, 0x0b310370, 0x953f6b42, 0x08d39dd4, + 0xa71533c4, 0xfeffffee, 0x1cdee4a9, 0x41033227, 0x1cdee4ad, 0x5108d39d, + 0xeef311f2, 0xa7fb4832, 0xfdefff3e, 0xdcac34c1, 0xa7fae04c, 0xebffff3e, + 0x42f83421, 0x1ea7053c, 0x99feffff, 0x13a908d4, 0xd2c11cde, 0xad340b84, + 0x891cde13, 0xf7411624, 0xd261d141, 0x4c03d071, 0x73d3511f, 0x0b170b45, + 0x0b444727, 0x0bf74570, 0x1f7c8334, 0xd775f1c3, 0xd355d145, 0xf58ed265, + 0xbf5ec355, 0xff2ea7fc, 0x2445ebff, 0x27fe0e5e, 0x0ac49d40, 0xc1fc635e, + 0xc39980d1, 0x0a14990b, 0xfc7643ee, 0xffff7ea7, 0xda74a9fe, 0xad41031c, + 0xc11cda74, 0x412780d1, 0xcfffeea7, 0x70e4c5fd, 0x27fc575e, 0x1f5ea84c, + 0x7474c1ff, 0x00004ef8, 0xc1ff0801, 0x4ef84034, 0x62ffff00, 0xb84c2702, + 0xc1ff055e, 0x4ef87474, 0x9d010000, 0xa7c461fd, 0xebffffee, 0x0fff4d83, + 0x5e44e4c5, 0x74c1fd96, 0x004ef874, 0xfd760100, 0x2784dec1, 0xe499282c, + 0x27411845, 0xd803292d, 0x42071a42, 0x2ce342a3, 0xab4f6bff, 0x83320724, + 0xa3e3003d, 0x6b1c003d, 0x0723ab2f, 0xab4f6b42, 0x5364072f, 0x07618328, + 0x202ca394, 0x990dc899, 0x64c641ea, 0x029921fc, 0xf3053027, 0x42834907, + 0xeb99f435, 0x4b4ff642, 0x27302701, 0x25702700, 0x07f131f3, 0x1cec33e6, + 0xefa31506, 0x20000000, 0xa3109c18, 0x000000ef, 0x83490740, 0x1127204c, + 0x10274496, 0x4c334107, 0x0f98f814, 0x004ea301, 0xb4072000, 0xbea32fab, + 0x38034000, 0xabf40121, 0x212458e4, 0x0e4c33f4, 0x1207e4ab, 0x96101c83, + 0x33f32114, 0x28180c3c, 0x1fe6b7ab, 0x1007017f, 0x33111c33, 0x0ea3170c, + 0x83080000, 0x0000001f, 0xab0bab7c, 0xff7ea713, 0x74c1ebff, 0x1340cc4c, + 0x071a2c27, 0xa7f3e832, 0xebffff3e, 0xc84c34c1, 0x4ea7f240, 0xa3ebffff, + 0x0000001f, 0x4c4ec580, 0x0fff1de3, 0xc54441c5, 0x695e7c40, 0x7414c1fc, + 0x00004ef8, 0x99faae01, 0xc29d0bd2, 0xfaa55e0d, 0xd4716726, 0x45333487, + 0x44f9432b, 0xff0118ac, 0x0965d49d, 0x803ff6c3, 0xaf1ea7fa, 0x1301fef5, + 0xee90d4c1, 0xc1023334, 0x448794d4, 0x0a5840f9, 0x41e9ff01, 0xff010a5a, + 0xa790d3c1, 0xfef5af2e, 0xd3c53103, 0xc1231590, 0x410394d4, 0xd4c54183, + 0x84d4c194, 0x42c13127, 0xff4ea7d0, 0x43c5fdcf, 0xa6d14d68, 0x0bd09d24, + 0xeea7d449, 0xc5ebffff, 0x245e70e4, 0x5e4807fa, 0x4ea3f9e5, 0x5e400000, + 0x24f8fef2, 0xe19900ae, 0x473a0758, 0x331f4b4a, 0x0b342b33, 0x470b0718, + 0x2b03334b, 0x08042b13, 0x1c273a1c, 0x13300739, 0x12410730, 0x28430731, + 0x4ce81e4c, 0x23018d2c, 0x0b300746, 0x7830e834, 0x6b030702, 0x55b0f20f, + 0x99402701, 0x444709d3, 0x97d441e9, 0x31e00001, 0x31f40247, 0x41070150, + 0x43333107, 0x430b3633, 0x4447410b, 0x73804c03, 0x254fab48, 0x9480eaf4, + 0x03480701, 0x402b144c, 0x44474f6b, 0x8e0047e9, 0x2cdc0004, 0xf3212d10, + 0x2e5e0707, 0x984c27fe, 0x07fca55e, 0x111c3317, 0x1f830707, 0x7c000000, + 0xab170c33, 0x5e13ab0b, 0x7027fe85, 0x2cd8f725, 0xe399d510, 0x4b4a4759, + 0x2ba3333f, 0x07380ba4, 0x334b471b, 0x2b3a2b13, 0x3a3c0814, 0x07393c27, + 0x13310743, 0x07341230, 0x1e4c2843, 0xe62c4ce8, 0x07462300, 0xe8340b31, + 0x0701cb30, 0xf20f6b03, 0x270096b0, 0x09d39940, 0x41e94447, 0x000197d4, + 0x012131e0, 0x009531f4, 0x31074107, 0x36334333, 0x410b430b, 0x4c034447, + 0x07487380, 0xea3fab34, 0x0300ee80, 0x802b148c, 0x4f6b4807, 0x40e94447, + 0x00048e00, 0xd2fd845e, 0x402755a8, 0x4709d399, 0xd441e944, 0xe0000197, + 0xd4010a31, 0x41076231, 0x43333107, 0x430b3633, 0x4447410b, 0x73804c03, + 0x054fab48, 0xfd3e5ef4, 0x2ea74127, 0x35ebffff, 0x7e0b2724, 0x3ea7f2cc, + 0x27ebffff, 0x21343540, 0x1a31fc33, 0x07e21ef9, 0x5e4b0b40, 0x4807ff69, + 0xa91e4a0b, 0x4b0b4007, 0xe0feaa5e, 0x2700e432, 0xff7d5e30, 0x00c532e0, + 0xf7257027, 0xe0fec05e, 0x27008a32, 0x5ef10510, 0x4487fcec, 0x97c844f1, + 0x6e5e0001, 0xf14487fe, 0x0197c844, 0xff155e00, 0xcfff3ea7, 0x4c32c1fd, + 0xcfffeea7, 0xa34207fd, 0xc5302748, 0xf39b4ce4, 0x8b00070e, 0x4ce2c5ff, + 0xa76ce3c5, 0xfef5af1e, 0xd4c11201, 0xd124ce90, 0x2bfd9e5e, 0x144c2708, + 0x4f6b402b, 0x2bfe6d5e, 0x144c2708, 0x4f6b402b, 0x27ff135e, 0x09149d40, + 0x07f8715e, 0x87353331, 0x0b430b41, 0x03448741, 0x4873804c, 0x3fab3407, + 0x99fee65e, 0x4fe610e4, 0x31070083, 0x35334187, 0x310b342b, 0x432b4387, + 0x07ff095e, 0x33418731, 0x0b430b35, 0x03448741, 0x4873804c, 0xf4054fab, + 0x99fc3b5e, 0x4d6610e4, 0x41873107, 0x342b3533, 0x4387310b, 0xe35e432b, + 0x10e499fd, 0x31074b46, 0x35334187, 0x310b342b, 0x432b4387, 0x07fe7f5e, + 0x33418731, 0x0b430b35, 0x03448741, 0x4873804c, 0xf4254fab, 0x27fdc05e, + 0xfd875e30, 0x345e3027, 0x5ef125fe, 0x3107fdb1, 0x05fe5e5e, 0xfbde5ef1, + 0x4227c307, 0x0b27c435, 0x27f16f7e, 0x21c43540, 0xb332fcc3, 0x07ec1efa, + 0x33453341, 0x03412b13, 0x05e9084f, 0x27202700, 0x03420536, 0xf6f3c844, + 0x5ef7168f, 0x0000fc7c, 0x00006407, 0x00006408, 0xf293f54e, 0xa3014da4, + 0xc52e19f6, 0xf1c548f0, 0x8405c14c, 0x06c5efe6, 0xc148f0c1, 0x04294cf2, + 0x02ce42e2, 0xf3c53247, 0x980c0360, 0xfa933103, 0x27014ce2, 0xa7202770, + 0xffffff6e, 0xc55cf0c5, 0x5c1e64f3, 0x71be0c07, 0xd4c1ffee, 0x60d3c15c, + 0xd4c5402b, 0x8803ea58, 0xad402700, 0x07187e64, 0x513bbe09, 0x44d4c100, + 0x6140d3c1, 0xea430bd2, 0xb9061042, 0xfc02b454, 0x2700cf43, 0x93a41d41, + 0x014d27f3, 0x71033e19, 0x00ebe7f2, 0x0348f4c1, 0x4329a0ac, 0x074cf4c1, + 0xe2470b27, 0x07025334, 0x334207d2, 0x0b4733d5, 0x50df03d4, 0x070005ea, + 0x03cd079d, 0xcc030c9c, 0x99402754, 0xd49d66d3, 0x813fc69c, 0x6dbe0c07, + 0x0c07fc7f, 0xffedebbe, 0xc15cd4c1, 0x402b60d3, 0xe258d4c5, 0xbeff7c30, + 0xe6fc7ff9, 0x2701b60f, 0x7e64a922, 0x884df418, 0xd1060613, 0x0702bc51, + 0xeee0be0c, 0x5a0ff6ff, 0xff0ea7ff, 0x0499feff, 0x87438309, 0x2b443324, + 0x5043f942, 0xe4ff0000, 0x99018d32, 0xd4c164d2, 0x7cd1c15c, 0x4183425b, + 0x323b3127, 0x52d14487, 0x310b028c, 0x42c54d0b, 0x7cd3c56c, 0x053a1ff6, + 0xd49d4127, 0xff135e9c, 0xc148f0c1, 0xf3c15cf2, 0x7e150760, 0xf3c1f04f, + 0x48f0c164, 0x075cf2c1, 0xf0417e15, 0xa41d4127, 0x4c3ef393, 0x033e1901, + 0x197efa71, 0x91fd93ff, 0x4027014b, 0x9d09d49d, 0xd49d04d4, 0x08d49d07, + 0x0179e1ec, 0xf0c12027, 0x4cf1c148, 0x93f2bf7e, 0x014c0ff0, 0x4fe60419, + 0xf2c10194, 0x9d402748, 0x23290ad4, 0xe24cf4c1, 0x47018334, 0x54f0c504, + 0x4bf8f293, 0x40f2c501, 0xc148f0c1, 0x302754f2, 0x0c03af07, 0x07210398, + 0x44f3c574, 0xac034027, 0x50f0c540, 0x0758f2c5, 0x33b533b4, 0x03b40b47, + 0x05ea50bf, 0x0bb49900, 0xf40d6b07, 0x034253a9, 0x035cbdc1, 0x4027546c, + 0xf4150607, 0xb9c1f32d, 0xecaebe68, 0x58bec1ff, 0x2b64b499, 0x073d07d0, + 0x5b0d072e, 0x2b245b34, 0x68b1c10e, 0x021a23ee, 0x43873183, 0xcd074b0b, + 0x48c1c18b, 0x830c2b6c, 0x0b428721, 0x6c43c14b, 0xfc55f035, 0x310b1e8b, + 0xc150b2c1, 0xf32540b4, 0x42eaf845, 0xb4c101b4, 0x95f2a538, 0x48b099f4, + 0x40273027, 0xb53cf09d, 0x3df49df3, 0x0130f3c5, 0x072333b2, 0x0334013f, + 0x8024f534, 0xceff1400, 0x3d07f4a3, 0x07403c03, 0xe24dcb43, 0x0700ad49, + 0xe6498b43, 0x0700a54f, 0xb9d91ed3, 0x86187d64, 0x5e23274d, 0x0ea7fe45, + 0xbeffffdf, 0x07fc9725, 0x4e06be09, 0xdf0ea700, 0xf3beffff, 0x64a9fc96, + 0xf253187e, 0x4103fd34, 0x64ad2001, 0x4827187e, 0xcfff2ea7, 0x4c24c5fd, + 0x27ee5f7e, 0xff3ea740, 0x34c5fdcf, 0x6c34c54c, 0x27fdd05e, 0xfdfb5e20, + 0x4a16fd93, 0x9d402701, 0xd49d09d4, 0x07d49d04, 0x0708d49d, 0x0bf3931e, + 0x2027014a, 0x03fce1e8, 0x3c033419, 0xc14526a0, 0x040948f0, 0xf178240b, + 0xc148f0c1, 0x2d7e4cf1, 0x7df093f1, 0x0419014a, 0xfe704ff6, 0xf6830027, + 0xb499f58e, 0x5b3d0764, 0x87318334, 0x66b29933, 0x38c13b0b, 0x3822e06c, + 0xbe060702, 0x99ffec3f, 0x42e01eb4, 0xb49900eb, 0x684fd69c, 0x027c54d1, + 0x340b3787, 0x890b9d8b, 0x40273805, 0xd10ef49b, 0x0702bc52, 0x0f4c8342, + 0x43f94333, 0xff000083, 0x0e230407, 0xf6ffff7e, 0xa702cd3f, 0xffffff3e, + 0x159034d1, 0x242b7103, 0x47072183, 0x46332247, 0x159c24ed, 0x3127ff00, + 0xffff4ea7, 0x6843bdff, 0x0f429906, 0xf49b4027, 0x8741270e, 0x4024f522, + 0xb9ff02b0, 0xdc02b454, 0xf2c15743, 0xd1f09344, 0x21030149, 0xf2c50419, + 0x5142f244, 0x48f4c1ff, 0xc140f0c1, 0x432944f2, 0x274cf7c1, 0x03041d40, + 0x720ba00c, 0x0740f0c5, 0xdc73ea42, 0xff2e5efd, 0xa538b3c1, 0x2bf395f4, + 0x48b49924, 0x9d30f2c5, 0xb0c13cf4, 0x99f0b53c, 0xf29d49b2, 0xfe495e3d, + 0xc150f1c1, 0x050754f2, 0xc1ee1c7e, 0xf2c150f1, 0x7e050758, 0x931eee11, + 0x8027c027, 0x99fdf25e, 0x25270cb3, 0x32f53333, 0xff021200, 0x330cb499, + 0x0043f143, 0xd8ff0210, 0x18fc0a3d, 0x640c0d27, 0x99eccf7e, 0x43330cb4, + 0x100043f1, 0x3ddcff02, 0xc1eafc0a, 0xb3c140b1, 0x48b29950, 0x0749bc99, + 0x07130241, 0xc843e213, 0x27602701, 0xc5e20740, 0xef4b50b4, 0xc130e0c8, + 0x4e874cb0, 0x43c1400b, 0x7442d154, 0x8b310b01, 0x9441c132, 0x0b5443c5, + 0xee40270e, 0xbd01b113, 0xc1015404, 0x32274cb4, 0xe3bde40b, 0xec070164, + 0xe0c8ef4b, 0xc168c632, 0x4e874cb0, 0x43c1400b, 0x7442d154, 0x8b360b01, + 0x9441c132, 0x0b5443c5, 0xee40270e, 0xbd017e13, 0xc1015404, 0x32274cb4, + 0xe3bde40b, 0xb0990164, 0x2710a70c, 0x0db29930, 0x9d49b19d, 0x412748b1, + 0xb49d1007, 0x40b3c51e, 0x3344b3c5, 0xf5442713, 0x02120014, 0x072287ff, + 0x0023f501, 0x03ff0216, 0x89432704, 0x04f50eb2, 0xff021200, 0xc538b3c5, + 0x04f13cb3, 0xff021000, 0x07f848dc, 0x274a0342, 0x0f4c8334, 0x03f52653, + 0xff021200, 0x27142c33, 0x104c3330, 0x13f542ab, 0xff021400, 0x140414f5, + 0xf39bff02, 0xfde05e0e, 0x640c0d27, 0x07ebb37e, 0x5cbcc106, 0xffe92bbe, + 0x2754b499, 0xf5433335, 0x02120043, 0x54b299ff, 0x22474327, 0x12872103, + 0x120014f5, 0x1ef1ff02, 0xff021000, 0xec33c02b, 0x1dec5318, 0x00abefe6, + 0x23f12433, 0xff021804, 0x0764b499, 0x3b21232e, 0x27230b24, 0x0014f542, + 0xc1ff0212, 0x14f15cb3, 0xff021000, 0x07f848dc, 0xce422b43, 0xb29993c4, + 0x55b39954, 0x02074127, 0xc566b49d, 0x03335cbc, 0x04f54427, 0xff021200, + 0x40273387, 0x34f52007, 0xff021600, 0x43272403, 0xf556b189, 0x02120024, + 0x0024f1ff, 0xdcff0210, 0x4107f848, 0x34274a03, 0x530f4c83, 0x0023f516, + 0x33ff0212, 0x3027141c, 0xab104c33, 0x0003f541, 0xf5ff0214, 0x02140404, + 0x0ef39bff, 0x07fcfc5e, 0x5e612b63, 0x68befe37, 0x52d1fc96, 0x2c5e02bc, + 0x5e2027fd, 0x4127ff67, 0x27fe4e5e, 0xfe815e41, 0xb9be0c07, 0xc15efc79, + 0x7a57befa, 0x6c0fd6fc, 0x187d64b9, 0x27784fc6, 0xbc51d123, 0xbe090702, + 0x07004c60, 0xd40ff680, 0xff3ea7f9, 0x3499feff, 0x87438309, 0x2b443324, + 0x5043f942, 0xc0ff0000, 0x0ea75632, 0xbeffffdf, 0x07fc9311, 0x49f2be09, + 0xdf0ea700, 0xdfbeffff, 0xf453fc92, 0x4001f928, 0x93fbf55e, 0x01462bfd, + 0x20274027, 0x9d09d49d, 0xd49d04d4, 0x08d49d07, 0x27fa9d5e, 0xbe9b1e22, + 0x27fc79e1, 0x27049621, 0x5e224720, 0x2027f9ef, 0x1127881e, 0xc1fc035e, + 0x5cd14cd1, 0x1b99028c, 0x99412741, 0x4b3b4013, 0xc4960127, 0x23870027, + 0x4123210b, 0x0047e307, 0xe103310b, 0x017424d5, 0x34bd4027, 0x30bd0154, + 0x1e9d0164, 0x9428c540, 0x05423b9d, 0x5428c52c, 0x4abe0907, 0x4127004a, + 0x5e9cd49d, 0xf84ef917, 0x07840dc1, 0xeb5e7eb0, 0x016400e8, 0xdd033d07, + 0x2d0703a3, 0xe37f3ce3, 0xdd237f2c, 0x341903a3, 0xc2803c03, 0x3007f932, + 0x40873733, 0x400b430b, 0x33333407, 0x300b342b, 0x23e91c27, 0xfeeda03e, + 0x21074d07, 0x11233001, 0x34034005, 0xf2984403, 0x4406f393, 0x11340101, + 0x03410332, 0x15340521, 0xec412332, 0x0100fe21, 0xdb4ea733, 0x4325fefd, + 0xd2a9d329, 0x41270346, 0xb3c1232b, 0xff0ea784, 0x04c5fdcf, 0x12318968, + 0xb2c52123, 0x39349988, 0x3189b10d, 0x19b12d14, 0x961183d1, 0x89461315, + 0x243b1433, 0x295423ca, 0xc13027b2, 0xb39d88b4, 0x47320708, 0x93312344, + 0x0144eff8, 0x009934ee, 0xb49d4027, 0x68d3b964, 0x9d202703, 0xd4b968b3, + 0xddb9036c, 0xb49d0340, 0x9d4b0767, 0x4c030b8d, 0x05362734, 0xc8440342, + 0x030b07f3, 0x30274c0c, 0x03054627, 0xf4c80403, 0xa207f88e, 0x44aaf893, + 0xab402701, 0x93c007af, 0x014543f9, 0x9d66849d, 0x1b1e1e81, 0xa98094c1, + 0x2702bcd2, 0x12428d38, 0x7e4cc3c5, 0x4027e8b4, 0xc54cc4c5, 0x1d076cc4, + 0x0b072a07, 0x002957be, 0x47234007, 0x64000d03, 0x29d242d0, 0xc13027b2, + 0xb39d88b4, 0x47320708, 0xee312344, 0xf8ff6b43, 0x27ff6721, 0x64b49d41, + 0x03ff645e, 0x05422b42, 0x5e311534, 0x0ea7fefb, 0xbeffffdf, 0x93fc90fd, + 0x014483f3, 0xc027a307, 0x9948ac23, 0x03071234, 0x34c14566, 0xbe4f4640, + 0x030047c8, 0xc43a07c1, 0x0ea7eac2, 0xbeffffdf, 0x27fc90ae, 0x0bf49b40, + 0xa70ef49b, 0xfdcfffae, 0xffff9ea7, 0xc54827fe, 0x32274ca4, 0x1d3393bd, + 0xfc9bc027, 0xc541270e, 0x052760a4, 0x27e80b7e, 0x3394bd40, 0x0efc9b1d, + 0xc54cacc5, 0x857e6cac, 0xd200c8e9, 0x51fe275e, 0x07312134, 0xeb140b03, + 0x7d96be14, 0x009d1efc, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x1ea7f74e, 0xa9feffff, 0x071cd814, 0xad420380, + 0x071cd814, 0x069307b2, 0x0bd3470f, 0x27c107d3, 0xff7ea7a0, 0x091efdcf, + 0xfa0d0d27, 0xffc053be, 0x4dcab401, 0xd8c3a9f4, 0x0320271c, 0xd8c3ad31, + 0xdac4a91c, 0xad41031c, 0xa91cdac4, 0x031cdec3, 0xdec3ad31, 0xd6c4a91c, + 0xad41031c, 0x9b1cd6c4, 0x41270ef2, 0x037074c5, 0x0b8a2ea1, 0x8ec21ed9, + 0xc1fc4ef7, 0xc007840e, 0xe4b9e239, 0x2123035c, 0x070f2c83, 0x33353332, + 0x09230b23, 0x50e3a900, 0x23c14103, 0xfffef42e, 0x41ff677e, 0x71c309c4, + 0x0b4103c2, 0xe3320b43, 0x1f3c8341, 0xc445c375, 0xfa4efc8e, 0x0099d007, + 0x07a10712, 0x071407b2, 0x510f7623, 0x99dc21d4, 0xc40b10d3, 0xd195d285, + 0x3bcec4eb, 0xdf0ea735, 0x3ebeffff, 0x1c07fc68, 0x4dbe0d07, 0x0ea7fc55, + 0xbeffffdf, 0x27fc680a, 0x233b3b31, 0xebc30b31, 0x5b4c07c3, 0x9d41234b, + 0xdb9d11d4, 0xa5d35510, 0x15d4a1dc, 0xcedc25dc, 0x0d070f4c, 0xfc4e67be, + 0xfa8e0127, 0xfa8e0127, 0x0d07f251, 0xfbbe1a07, 0x4127ffbd, 0x40270496, + 0xfa8e0407, 0xf393f54e, 0x930117c8, 0x011c5efe, 0x6007f063, 0x2faba107, + 0xe37f3ce3, 0x34197fec, 0xc2803c03, 0x64c1f93e, 0x99632984, 0x322b0c44, + 0xb909649d, 0x9d0354a4, 0x31080a64, 0xc3073127, 0xf593cf6b, 0x1d011b7c, + 0xc141275c, 0x649d8462, 0x5023a90c, 0xff1ea703, 0x63c5fd4f, 0x7414c170, + 0x025540e8, 0xe87414c1, 0x27025840, 0x64c51c4c, 0x5fa4b974, 0xa745e603, + 0xfeffff4e, 0x014143b9, 0x01fd3ff6, 0x0274a4d1, 0xd18c64c5, 0x8302bcad, + 0xd3330fdc, 0xff84de23, 0x4e57beff, 0xcb0fe6fc, 0xe6822701, 0x070086cf, + 0x9374037d, 0x011a8bf9, 0x061ed027, 0x4dd25419, 0xd4a4d173, 0x05cd0702, + 0xd0a4d194, 0xc5c53302, 0x4d074894, 0xc40b4733, 0x02bca1d1, 0x0288a2b9, + 0x0280a3d1, 0x47070c07, 0xeaa40f03, 0xf8050005, 0x03fe997e, 0x05ea5ccf, + 0xbca1d100, 0x89a2b902, 0x07b00702, 0xbe0c0738, 0x8b002106, 0x03d1030b, + 0x0fd6a09c, 0xdf0ea7a8, 0xd6beffff, 0x0c07fc66, 0x001db7be, 0xffdf0ea7, + 0x66a4beff, 0x430727fc, 0xc1f58ef0, 0xf2938463, 0x990119f0, 0xeea7f634, + 0x9debffff, 0x649d6564, 0x05249d0b, 0x249d4027, 0x78add106, 0x5cd39902, + 0x8343d499, 0x99418331, 0x4c3342d2, 0x9938331a, 0x34ab08db, 0x3fa32183, + 0xa0050078, 0x271b2c33, 0x07bff641, 0x3332ab01, 0x34ab194c, 0xd499e305, + 0x3ed3993d, 0x833fd299, 0x3c830f4c, 0x9938330f, 0xdc9940d0, 0xab443334, + 0x3cd19943, 0x330f2c83, 0x4ea30c2c, 0x83c00005, 0x3c070f0c, 0x0c3342ab, + 0x35d29910, 0x33231383, 0x1c3340ab, 0xab338314, 0x1c3c3341, 0x43ab2323, + 0xab1e2c33, 0xe0e41542, 0xb900f6c6, 0x27035ca4, 0x41e0230c, 0x4ff600f6, + 0x1c270101, 0x3cd4c140, 0xff004ef8, 0xa700a2ff, 0xfd4fff3e, 0x277434c1, + 0xa240e82a, 0x3b422700, 0x9b41034c, 0x3f4c0342, 0x21074653, 0x4c8320ab, + 0x042ea33f, 0x48330400, 0xb4a624ab, 0xb9102ca3, 0xa702b4a4, 0xebffff1e, + 0x3c333407, 0x33418316, 0x3e83164c, 0xab800000, 0xc532ab34, 0x62995c13, + 0x6540270b, 0x0c2c2364, 0x009c20e8, 0x32074207, 0x4d834533, 0x3c831f00, + 0xab2573f0, 0xab278334, 0x43002732, 0x7013c5f0, 0x4ea7f58e, 0xb9ffffff, + 0xe6187d43, 0x5e832736, 0x4027fe2b, 0xa7fef85e, 0xdfffff4e, 0x5e8c64c5, + 0x8027fe03, 0xa7fe165e, 0xfd4fff3e, 0x277434c1, 0x6240ec28, 0x7434c1ff, + 0x00004ef8, 0x27ff5801, 0x034c3b42, 0x03429b41, 0x4653bf4c, 0xc1ff555e, + 0x14c17414, 0xac40ec74, 0x7414c1fd, 0xb9fda65e, 0x27035ca4, 0x41e42b0c, + 0xa4d1ff0e, 0x445c02c8, 0x80800da3, 0x065e1027, 0x5e1027ff, 0x2027ff01, + 0x00ff635e, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x0ac1f54e, 0x99500740, + 0x42f040a4, 0xa8b900bf, 0x8fe601b4, 0x9a0700cf, 0x2027ba07, 0x6ea77027, + 0x07ffffff, 0xb9c20bca, 0xd80164c4, 0x94b93342, 0xb1c10154, 0x94b0c154, + 0x016493b9, 0x0174bed1, 0x43074536, 0x42c04383, 0x87102727, 0x7c6db932, + 0xd13a0b18, 0xf6017434, 0x030081df, 0x2114ce41, 0x21032707, 0x9103b403, + 0x28da7207, 0x07f58eb7, 0x5001c240, 0x312b3007, 0x13074027, 0xcc1e140b, + 0x0742c199, 0x0bc7870a, 0xbe21270c, 0x99fc3567, 0x412340a4, 0xc140a49d, + 0x40274053, 0xa299c30b, 0xd5370b40, 0xbd0174cd, 0x9d015434, 0xcd05423d, + 0xc554cdc5, 0x3dbd94cd, 0x2fc60164, 0xb4a8b9b1, 0x079e1e01, 0x2b31033e, + 0xa7b01e31, 0xffffff4e, 0x187c43b9, 0xff383ff6, 0x34c1f58e, 0x5434c594, + 0x8eff7f5e, 0x31f64ef5, 0x3804c106, 0x1b3403c1, 0xee700746, 0xc1012734, + 0x94b94009, 0x4c0601b4, 0x3027e407, 0xc387d027, 0x490b4c07, 0xc19441c1, + 0x390b544b, 0x8d07a107, 0x30b9ab2b, 0x44d10164, 0x8f6b0174, 0x015432b9, + 0x00e91be2, 0xd1031027, 0x43834007, 0x24b63d07, 0xf00d42c0, 0x0027c9fe, + 0x749d4227, 0x07f68e12, 0xca410b4a, 0xc90bee46, 0x6ae2c201, 0x060700cc, + 0x0fe60a2b, 0x1ff600d8, 0xd02700cb, 0xe0270027, 0x7419ade6, 0x7ac57339, + 0x3c789d34, 0x2b0b4533, 0x180043f5, 0x72b5ff02, 0x18044af5, 0x1027ff02, + 0xe8004e23, 0x034135fd, 0xfde8004e, 0x181042f5, 0x4af5ff02, 0xff021814, + 0x4e233807, 0x4bfde7f0, 0x0b41353f, 0x6434b939, 0xbd41a301, 0xe6016434, + 0x1900820f, 0xc5733974, 0x7d9d3870, 0xf545333d, 0x02180043, 0x307ec5ff, + 0x180440f5, 0x71c1ff02, 0x23202740, 0xfde8004e, 0x4e034235, 0xf5fde800, + 0x0218104e, 0x1440f5ff, 0x07ff0218, 0xf04e233d, 0x3f4bfde7, 0x310b4235, + 0x016434b9, 0x41a30127, 0x016434bd, 0x749d4227, 0x07f68e12, 0x2ba103a4, + 0xff145eab, 0xf68e0127, 0xd027a607, 0xe0270027, 0x07ff3f5e, 0x07df6bd8, + 0xff365ee2, 0xe027d027, 0x27ff2f5e, 0xff025e01, 0xc007f94e, 0x6340c4c1, + 0xdf0ea7f0, 0x9207ffff, 0xf405a107, 0xff9c52be, 0x23032f07, 0x2ce33f07, + 0x7f3ce37f, 0x3c033419, 0xf932c280, 0xb940c3c1, 0xe601b431, 0x6434b916, + 0xb642f801, 0x27230700, 0x07310701, 0xf0010310, 0xbc277ef3, 0x99f001ff, + 0x04b94003, 0x43e201b4, 0x4b07008a, 0x4fc04f4b, 0xffffffff, 0x410d997e, + 0x29071a07, 0xbdbe0d07, 0xa007ffa0, 0xc16c0fc6, 0x1b0740ce, 0x1f6b2e07, + 0x4027210b, 0x24bd3227, 0x23bd0154, 0x2d9d0164, 0x27f00142, 0x40039941, + 0x11874d3b, 0x20271e0b, 0x31034123, 0xd540039d, 0x05017414, 0x9412c51a, + 0x075412c5, 0xfdef7e0c, 0xffdf0ea7, 0x45f8beff, 0x430127fc, 0xb9f98ef0, + 0x03016524, 0x7442fc21, 0x07f001ff, 0x400399b1, 0x01b404b9, 0x34eabf6b, + 0x0ea7ff7a, 0xbeffffdf, 0x27fc45ce, 0x8ef04300, 0x5eb027f9, 0xfb4eff59, + 0x07120e99, 0x07c107d0, 0x562f6bb3, 0xa740a7ee, 0xffe93b3e, 0x9d4003c5, + 0x0ea53d04, 0xb5340ec5, 0x3c049d0e, 0xc5380ec5, 0x0ec5300e, 0xa70e2544, + 0xffffff3e, 0x170534b9, 0x32bd2402, 0x6e7e1705, 0x070676fd, 0x071c070d, + 0xfebe7e2b, 0x06664127, 0xfb8e0407, 0x567e0d07, 0x8e0127fd, 0x8e0127fb, + 0x074027fb, 0x00fb8e04, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x02020100, 0x03030303, 0x04040404, + 0x04040404, 0x05050505, 0x05050505, 0x05050505, 0x05050505, 0x06060606, + 0x06060606, 0x06060606, 0x06060606, 0x06060606, 0x06060606, 0x06060606, + 0x06060606, 0x07070707, 0x07070707, 0x07070707, 0x07070707, 0x07070707, + 0x07070707, 0x07070707, 0x07070707, 0x07070707, 0x07070707, 0x07070707, + 0x07070707, 0x07070707, 0x07070707, 0x07070707, 0x07070707, 0x08080808, + 0x08080808, 0x08080808, 0x08080808, 0x08080808, 0x08080808, 0x08080808, + 0x08080808, 0x08080808, 0x08080808, 0x08080808, 0x08080808, 0x08080808, + 0x08080808, 0x08080808, 0x08080808, 0x08080808, 0x08080808, 0x08080808, + 0x08080808, 0x08080808, 0x08080808, 0x08080808, 0x08080808, 0x08080808, + 0x08080808, 0x08080808, 0x08080808, 0x08080808, 0x08080808, 0x08080808, + 0x08080808, 0x4ea7fc4e, 0xa9feffff, 0x891cd843, 0x0ec1d204, 0x8b342bb0, + 0x1431c83f, 0xc2b401c1, 0x02890e1e, 0x8d4103ac, 0xe20bd204, 0xc558f3f0, + 0x4ea7b00e, 0xc1fdefff, 0x44c1e801, 0x45e1c2b8, 0x53184c33, 0x44d41d4c, + 0x2bd4273c, 0x1fcea7d4, 0x04c1fde5, 0x1841c2ec, 0xa9c404c1, 0x0b010203, + 0xa9430b41, 0x05010402, 0x27c215c4, 0x89c43540, 0x0389f804, 0x0b4103ac, + 0xf8048d13, 0x02e801c5, 0xcffdf0e1, 0x1ec2fc8e, 0xd20489a7, 0xfc4e981e, + 0x016404b9, 0x23980389, 0x07345b44, 0x2331c2d0, 0x89fc0489, 0x410bf803, + 0xcfabc407, 0x3f8b3c2b, 0x071031cc, 0xff4e7e0d, 0x2bf8d489, 0xc84f8b4c, + 0xfc8ef241, 0x08a9f64e, 0xd0070100, 0x9807810b, 0x7ea79fab, 0xadfdefff, + 0xa7010009, 0xfde4efae, 0x99c47cc1, 0xcc33fed3, 0x1dcc5318, 0xd4893c2b, + 0x0b34e6fa, 0xfad48d43, 0x3c0b3407, 0x4fab4307, 0xd45c49ce, 0xe30749c4, + 0x31034807, 0xb407432b, 0x0427bfab, 0x0c2bb30b, 0xc1f0d1c1, 0xc103f4d4, + 0xc11841c2, 0xd3a9c8d4, 0x410b0102, 0xd2a9430b, 0xa4050104, 0x4027a215, + 0xd389a435, 0x0be103ac, 0xc54e0731, 0x4fabf0d3, 0xf014bece, 0x491bcbf0, + 0xabfedc9d, 0x0a45d04f, 0xf4e84327, 0xdc9d831e, 0xff3ea7fe, 0x34a9feff, + 0xd2991cde, 0x166407d0, 0xd434a926, 0x2b36071c, 0x003d1c34, 0x89640780, + 0x4607fad3, 0x4d1c432b, 0x63078000, 0xffff1ea7, 0xd613a9fe, 0x2b49071c, + 0x284f8b43, 0xab930741, 0xe82ff69f, 0xff4ea700, 0x4cc1fdef, 0xddd499cc, + 0x5318cc33, 0x4c2b1dcc, 0xf6d8d289, 0x0700af4f, 0x073c0b32, 0xce4fab43, + 0xc4d46449, 0x03e30761, 0x270e07e1, 0xa70fab14, 0xfde4dfae, 0xa71c8c27, + 0xfde4cfbe, 0x00007f27, 0x1c2b4000, 0x4c834307, 0x3334871f, 0xc1432b45, + 0x4e23c0d2, 0xc1fee754, 0xa405ccd3, 0x320bc103, 0x4027a815, 0xb305a435, + 0xd489b815, 0x0bb735ac, 0xc0d4c542, 0x3e072007, 0xe1032103, 0x0207094e, + 0xf1f00fab, 0xdddc9dc0, 0xced4d289, 0xdc893526, 0x2f2cced8, 0x89b8d1c1, + 0xd0c1acde, 0xffbea7e4, 0x2103d07f, 0xd4993207, 0x0b3fabdf, 0x8623071e, + 0x05b10544, 0xce360e01, 0xd38de9c3, 0xb8d1c5d4, 0xf68ef68e, 0x4207240b, + 0x1cdc12ad, 0xd51f4c83, 0x8d1cd014, 0x3127d8d2, 0xcfff4ea7, 0x6c43c5fd, + 0x89ff365e, 0x39ced8d3, 0x07130743, 0x2b310349, 0x0b4fab43, 0xc0d2c143, + 0x2bacd389, 0xc5230b41, 0x1103c0d2, 0x4ea7f4b0, 0xadfeffff, 0x831cdc49, + 0x41d51f1c, 0xd98d1cd0, 0x9b4027d8, 0x31270ef4, 0xcfff4ea7, 0x6c43c5fd, + 0x07ff5f5e, 0x4ed81e19, 0xd40389fd, 0x010004a9, 0x34ced007, 0x270d0716, + 0xfdda7e10, 0xf4e84327, 0xa9d4d389, 0xce0100d4, 0xd4b9ec43, 0xd3890164, + 0x89442398, 0xd189dad2, 0x3ed0a9fc, 0xc1345b01, 0x130be4de, 0x30a7200b, + 0x8dd0d499, 0xd18ddad2, 0x86e305fc, 0x8ee31544, 0x07fc4efd, 0x27d007c1, + 0x35f09310, 0x8d7e00aa, 0x93cf6bfd, 0x00ab33f0, 0xa600ad7e, 0xff2ea7c7, + 0x23a9feff, 0x24a90142, 0x34ce0144, 0xbd302778, 0x271d3423, 0x0ef49b40, + 0x1f6b1d07, 0x0f030187, 0x0005f590, 0x3f9bd853, 0x93040110, 0x00a9f3f2, + 0x432b2e51, 0xe19d0405, 0x12249908, 0x4fff3ea7, 0x09e49dfd, 0xe44d2449, + 0x69082499, 0x0b321121, 0x05e46d41, 0x27dcf6e2, 0x0ef49b40, 0xff8b0007, + 0x40272027, 0x0508e49d, 0x103f9be2, 0x430b0401, 0xc6060405, 0xffff3ea7, + 0x3432bdfe, 0x9b40271d, 0xfc8e0ef4, 0x23bd3227, 0x40271d34, 0x270ef49b, + 0xff4ea731, 0x43c5fdcf, 0xff7e5e60, 0x42734d07, 0xf4e84103, 0xf54ebb1e, + 0x631d0499, 0xe66007f0, 0x9902534f, 0x4fe62304, 0x40270252, 0xa71d649d, + 0xfeffff2e, 0x021424b9, 0x014423a9, 0x4f4b432b, 0x071c41cc, 0x150e27c2, + 0x102703e8, 0xb9ff047e, 0xa90214c4, 0x2b0144c3, 0xc84f4b43, 0x6c99e841, + 0xff3ea71f, 0xc123ffff, 0x010834b9, 0xee0fcc83, 0x070319c4, 0x334c073c, + 0x0b333345, 0x89202734, 0x32f51864, 0xff000110, 0x010c32f5, 0x3ea7ff00, + 0xd6ffffff, 0x34b9634f, 0x4ce00101, 0xb902d1ff, 0x05010134, 0x27f201f4, + 0x4207113c, 0x46337287, 0x7e23740b, 0x07fff23c, 0x05202747, 0xc8440342, + 0x056231f3, 0x27634172, 0x99737520, 0x4c831f64, 0x3334070f, 0x0b453333, + 0xec3e2334, 0x4627fffe, 0x34033205, 0x4ea7f4c8, 0x01fd4fff, 0x33722143, + 0x23ab103c, 0x121e7225, 0x010134b9, 0xf4057487, 0x740b4633, 0xf23c7e23, + 0xff4ea7ff, 0x4c81fd4f, 0xffffeea7, 0xd14091fe, 0xd10130e3, 0x330128e4, + 0x310333c3, 0x1b715172, 0x0b301b4c, 0xd5130b24, 0xd50128ec, 0x350130e0, + 0x51715572, 0x9374a163, 0x00a84ff2, 0x74a5430b, 0x04e025b9, 0x450770b1, + 0x45333587, 0xc407432b, 0xe93cce23, 0xcc48f1fe, 0xf1ff0116, 0x0116c449, + 0xc84af1ff, 0xc1ff0116, 0x72c13071, 0x3874c134, 0x73c1cb31, 0x0bce413c, + 0x0b3e0b4b, 0x0b1a0b09, 0x3c73c528, 0x71c570b5, 0x3472c530, 0x993874c5, + 0x36271f64, 0x070f4c83, 0x33d333d4, 0x23d40b45, 0xfffef4de, 0x48034d07, + 0xc403c101, 0x44034105, 0x6431f3a8, 0x870f4c83, 0x0b443334, 0xf932f934, + 0xe6ff0013, 0x8900c72f, 0x0ca61860, 0x211f6499, 0x834123dc, 0x34070f4c, + 0x45333333, 0x2307340b, 0xfef42e23, 0x1439f1ff, 0x61ff0001, 0x31d03128, + 0x41d1412a, 0x51d3512b, 0x0bd4612e, 0x0b0a0bc9, 0x0b3e0b1b, 0x25d46548, + 0x45d035dc, 0x07d355d1, 0x83410345, 0x71f39343, 0x34bd00a7, 0xaea704e0, + 0x01fd4fff, 0x277d21a3, 0xab433b41, 0x1a6399d4, 0x3ff67d25, 0x648900a1, + 0x21629918, 0x991e6399, 0x41032261, 0x3b1f6099, 0xffeea742, 0x412bfeff, + 0xe2a93833, 0x4c330144, 0xab30ab10, 0xff4ea734, 0x2103ffff, 0x010843d5, + 0x0144e2ad, 0xf0430127, 0x3ea7f58e, 0xd1fddfff, 0xe601c034, 0xd100d94f, + 0x5101a833, 0x55430b04, 0xfd985e04, 0xffff4ea7, 0x8041d1ff, 0x03310718, + 0x0702871d, 0x7f3ce321, 0x237f2ce3, 0x1902871d, 0x803c0334, 0x99f932c2, + 0xd22124d4, 0x43f14487, 0x000198ec, 0x9b186089, 0x0b408732, 0xc5385341, + 0xd2218843, 0xfefc2fe6, 0xf75e1015, 0x277401fe, 0xe000005f, 0x0f4c833f, + 0x44333487, 0x30f1340b, 0xff0013fc, 0x14003ce9, 0x85beff00, 0xb0070014, + 0x50be0c07, 0x10070012, 0x0dbe0b07, 0x80be0010, 0x4027000e, 0x3507b007, + 0x0b072407, 0x1dbec107, 0x4007001f, 0x51070407, 0x000c31be, 0x9940709d, + 0x43074073, 0x4c104f6b, 0x333c2734, 0x0140739d, 0x33f101a4, 0xd4ab144c, + 0x06077d25, 0xfbd553be, 0x4ea730a7, 0xbdffffff, 0x5e010143, 0x0027fee2, + 0xf58ef043, 0xe8070e27, 0x7e102703, 0x0ea7fbe5, 0xbefff24b, 0x05fc6782, + 0xe900c8f0, 0x4ea7f101, 0xbdffffff, 0x5e010141, 0xd307fd1d, 0x64060d27, + 0xbe7e1027, 0x08d4b9fb, 0xd84cee01, 0x4eee1efc, 0xa7c007f8, 0xfddfffbe, + 0x93108c27, 0x00a5e3fd, 0xa70c9c27, 0xfd4fffae, 0xb8c5471e, 0x102f9b30, + 0x5138d4c1, 0xc5422bd3, 0x399d38d4, 0x12d49908, 0x4909349d, 0x4da111d4, + 0x08d49934, 0x3105d269, 0x346d420b, 0xf49b4027, 0x8b00070e, 0x08349dff, + 0x4f9b3005, 0x38d3c110, 0x0b30b0c5, 0x38d4c543, 0x137e0c07, 0xb30fc6fc, + 0xfc4ef88e, 0xcfffcea7, 0x104c27fd, 0x6b50c4c5, 0xfb377e1f, 0xc4c54027, + 0x70c4c550, 0xfb4efc8e, 0xffff2ea7, 0xda24a9fe, 0xda03891c, 0x432bd007, + 0xc1074fab, 0x071d14ca, 0x271027b2, 0xc33e160c, 0xe17e0d07, 0xdab4a9f7, + 0xdad3891c, 0x4fab432b, 0x8ee74cc2, 0xa7fd4efb, 0xe7ffff3e, 0x41d83421, + 0xa730270c, 0xe7ffff4e, 0xfd8e4335, 0x4127d307, 0x0b27d435, 0xd27e1027, + 0xdcd421fa, 0xef1ee441, 0x1e99fb4e, 0x0bc10723, 0x891401e3, 0x118920cd, + 0x83be071e, 0xab120bb3, 0xf6d30bb4, 0xf60091ef, 0x8900fadf, 0x34079804, + 0x012f1fe6, 0x014414ee, 0x2e9a0489, 0x24c4994d, 0xbda34218, 0x04b98000, + 0x03a90165, 0x44230140, 0x3de2343b, 0xdfe60117, 0x04a9011a, 0x03a90534, + 0x41030160, 0x4df241e3, 0x4307009d, 0x730f4c03, 0xe3410344, 0x8641ea41, + 0xab210700, 0x3321032f, 0x6200a924, 0x4932c201, 0x3d07c027, 0x31033fab, + 0x30ca3433, 0xa803ee57, 0x23430700, 0x6e04ce48, 0x00004f27, 0xcbab1000, + 0x327ec4ab, 0xff4ea7ff, 0x4c45e7ff, 0xe3e4fb8e, 0x04a9ff73, 0x4fe6012e, + 0x1fe6ff6b, 0x0489009a, 0x00bda398, 0xff665e10, 0x076423ce, 0xce482342, + 0x3d077c34, 0x31033fab, 0xcf273433, 0x04000000, 0x27ab03c2, 0xabcbab40, + 0xfeeb7ec4, 0xffff4ea7, 0x8e4c45e7, 0x6404b9fb, 0x7646e401, 0x00bea3ff, + 0x6e5e8000, 0x004f27ff, 0xab200000, 0x7ec4abcb, 0x4ea7fec5, 0x45e7ffff, + 0x89fb8e4c, 0x34079804, 0xff0614ee, 0x0800bda3, 0xff021ff6, 0xcf272c1e, + 0x0c000000, 0x27ff4d5e, 0x0000004f, 0xabcbab30, 0xfe937ec4, 0xffff4ea7, + 0x8e4c45e7, 0x00cf27fb, 0x5e080000, 0x0389ff2e, 0x00bea398, 0x43070100, + 0xa3fecb5e, 0x5e4400bd, 0xbea3fee6, 0x5e040000, 0xbea3fee2, 0x5e024000, + 0xf94efeb8, 0x07241499, 0x07a007d1, 0xc0c30792, 0x43c04542, 0x2d41c02b, + 0x6d7eb907, 0x07b103fe, 0x070a073c, 0x7e2b071d, 0xc103fe60, 0x0a072907, + 0x3c071d07, 0x07fe537e, 0x071d070a, 0x0e3c072b, 0xfe465ef9, 0x07fe437e, + 0x070a073c, 0x0329071d, 0x5ef90e31, 0x317efe34, 0x072907fe, 0x031d070a, + 0x0e3c0721, 0xfe225ef9, 0x1499fc4e, 0x07d10724, 0x4d42c0c0, 0xc04143c0, + 0x20272a41, 0x833e3027, 0x1d070c07, 0x30272227, 0x07ff797e, 0x271d070c, + 0x7e322720, 0x0c07ff6e, 0x22271d07, 0xfc0e3227, 0x27ff615e, 0x7e302720, + 0x0c07ff5a, 0x20271d07, 0xfc0e3227, 0x27ff4d5e, 0x0e302720, 0xff445efc, + 0x30272027, 0x07ff3d7e, 0x271d070c, 0x0e302722, 0xff305efc, 0xf323f64e, + 0x070c2c27, 0x273f07d0, 0x05420710, 0x03212331, 0x07f4b834, 0x15f2256d, + 0x008d27f2, 0xff7ea720, 0x6d03e7ff, 0xd1990108, 0xb9db6908, 0xb90164d3, + 0x490165d4, 0x23b10bd0, 0x07342344, 0x072b0790, 0x3b243bc1, 0x27933bc4, + 0x20f28d40, 0x9d22f19d, 0xf08d24f4, 0x1ef98d1c, 0x0523fc9d, 0x40daa9f8, + 0x71cfd601, 0xca98d489, 0xabe26494, 0x412700fd, 0x9924f49d, 0x4fc623f4, + 0x22f3997a, 0x4e0ad499, 0x1ef38943, 0xea98d489, 0x7e00bd34, 0xf401fcf9, + 0x20004dfc, 0x402700c4, 0xd4b97445, 0x4fd60125, 0x29d20968, 0x6d12ced1, + 0x43834207, 0x43994d0b, 0x0b3f4b0d, 0xf120c823, 0x07ee12da, 0x83420732, + 0x4d425333, 0x08d39dd4, 0x5b5ed20d, 0x071007ff, 0xfc7c7e0d, 0xc298d489, + 0xba2a9149, 0x04e4d4d1, 0xc766413c, 0x278dbaca, 0x24f49d42, 0xd623f499, + 0xf189884f, 0x7e0d071c, 0x7e5ef4e6, 0x7e0d07ff, 0xbaeaf454, 0xe01eff6f, + 0x337e0607, 0x29d209f8, 0x9521ced1, 0xc4274027, 0xffffbea7, 0x09d49de7, + 0x27fc647e, 0xb0b44540, 0xfc5b7efc, 0xf87e0d07, 0xd8d4d1f6, 0x98d38904, + 0x430b4103, 0xf30341e3, 0x04d8d4d5, 0x0d07f68e, 0xc97e1127, 0xfc377ef4, + 0x4df8f401, 0xff402000, 0x04f4d4d1, 0x1f070d07, 0x30272027, 0x335ef48b, + 0x9d4327ff, 0x045e24f4, 0x000000ff, 0x000000e9, 0xb007f54e, 0x2ea71b07, + 0x23ffffff, 0x03a007f1, 0x0301901d, 0xd1012c0d, 0x350e5c24, 0x03f115f0, + 0xa70108ad, 0xe7ffff5e, 0x05164fe6, 0x5fff3ea7, 0x933411fd, 0x00a103f2, + 0x15104ca3, 0xdb1ea734, 0x2301fefd, 0x22111401, 0x41e8432b, 0x20e80516, + 0x32070518, 0x37334287, 0x420b430b, 0x33333407, 0x320b342b, 0x0196f213, + 0x23f23121, 0xfeeda03e, 0x30014107, 0x20051123, 0x24033403, 0xf293f498, + 0x0100a0b8, 0x03231124, 0x05310341, 0x23231524, 0x6731ec41, 0xa1f39306, + 0x340100a0, 0xfddb0ea7, 0xa90415fe, 0xa90472b3, 0x27012eb2, 0xff1ea741, + 0x14c5fdcf, 0x23322b68, 0x88b4b931, 0xd4b3ad04, 0x96302704, 0xb9312744, + 0xbd012cb4, 0xf804f8b3, 0xd1056241, 0xa903e8bc, 0xb904d4b8, 0xb90490b4, + 0x070485b3, 0xf6643b68, 0xb904f13f, 0xa90165b0, 0x270140bd, 0xd804f090, + 0x07042304, 0x03e05be6, 0x3eb2a904, 0x23102701, 0x27230b21, 0x9d402731, + 0x3ea709b3, 0x9dfee2db, 0xb10d0cb1, 0xb49db14d, 0x12bc8d08, 0xbe6db355, + 0xb1b92287, 0x04f0048f, 0x49070489, 0x30074d0b, 0x4e2b3423, 0x3b0bb39d, + 0x07410243, 0x07435b41, 0x07212334, 0x87412343, 0x2b230b03, 0x9db22d03, + 0x01030ab4, 0x41e81407, 0x2307058d, 0x3b072123, 0x349d42a7, 0xb031030d, + 0xcdf293f2, 0x1b0b009f, 0x04f824b9, 0xf60d109d, 0xa701904f, 0x53b5ff3c, + 0x53c540a7, 0xc554b530, 0x46273054, 0x53b530a7, 0xb03053c5, 0xfd1ca7f4, + 0x51c551b5, 0xc553b530, 0x36273053, 0x54b540a7, 0xb03054c5, 0xf9b3b9f3, + 0xe6f32504, 0xe8043d3f, 0x07043961, 0x05412346, 0xf4b4d1f4, 0x004df803, + 0xb9043501, 0x0104d0b4, 0x24b0d1f3, 0x07347b05, 0x07230713, 0x83128343, + 0x47718721, 0x33448322, 0x0b720b43, 0x9b37e374, 0x0b743330, 0x28bdd173, + 0x8fb3b905, 0xb0b4b904, 0x03d39b04, 0x4f4b7fdc, 0xe67fdce3, 0xd104134f, + 0xd104acb9, 0x0e0520b4, 0x20b9d549, 0x91f19305, 0x1c010033, 0x04a8b1d1, + 0x0cbe0c07, 0x8d07001c, 0xc103809b, 0x337af293, 0x8fb3b900, 0x05890b04, + 0x34b4a92c, 0x2b030705, 0x07341246, 0x2eb4a904, 0x214fe601, 0xd1b2b904, + 0x27e02704, 0x4f6fe640, 0x86302704, 0x0b6ff6e5, 0xe6f12102, 0x2702051f, + 0x83225310, 0xab24ab27, 0xffdea723, 0x21abfddf, 0x01a8b4a9, 0x01d4d2d5, + 0x4d83d025, 0x45368000, 0x013cb4b9, 0xd1674fc6, 0xd803f4b4, 0x2501004d, + 0x04d0b4b9, 0xf0011827, 0x5fbe143b, 0x4427001b, 0x0530b3d1, 0x01d8d4d5, + 0x052cb2d1, 0x830b309b, 0x01bcd2d5, 0x2586f221, 0x64864127, 0xd4d54027, + 0xb4b90198, 0x4f4b04b0, 0x03fb4fe6, 0x013bb4b9, 0x04a4b3d1, 0x0520b2d1, + 0x3123342b, 0x830b329b, 0x019cd8d5, 0xdfff4ea7, 0xac47d5fd, 0x27402701, + 0xe8b4d530, 0xf0b3ad04, 0x2db3b904, 0x7cb0a901, 0x23430704, 0x0f4c8341, + 0x2307e407, 0x3533e533, 0x23334333, 0x013eb1a9, 0x4e0b230b, 0xe027109b, + 0xfef42e23, 0xf44e23ff, 0x3047fffe, 0x048bbcb9, 0xc5e4b2c5, 0xb38de0b4, + 0xb4b1c5ae, 0x8ddfbe9d, 0xbe9dacb0, 0x3ccfe6de, 0xff4ea702, 0x43b9feff, + 0x3fe60141, 0xb4a9022f, 0x3ea7012e, 0xa9dfffff, 0xc50472b2, 0xb3c5c8b3, + 0xee4103c4, 0xb9036d24, 0x38012cb4, 0x9d412744, 0xb089dfb4, 0xb4b2c1ac, + 0xb1893047, 0xc5230bd2, 0xb3c5f0b3, 0xc0b3c5b8, 0xc5b0b3c5, 0xb3c1e8b3, + 0x271203c8, 0x87beb940, 0xbcb4c504, 0x8db4b2c5, 0xb3c5d2b1, 0xe1eff6cc, + 0xd1302701, 0x9d01fcb4, 0x45c6d0b3, 0x02f5efe6, 0x012eb4a9, 0x02f541e0, + 0x9d5ef193, 0xf814b900, 0x98b28904, 0x0164b3b9, 0x026b4fe6, 0x20273027, + 0xc5f4b2c5, 0x0b07ecb3, 0x93efdb7e, 0x009d3bf2, 0x04f824b9, 0x02474fe6, + 0x0164b4b9, 0x013eb3a9, 0x343b4423, 0x1e98b38d, 0x070b0742, 0xf0407e1c, + 0x2e0ab499, 0x3eb4a9d4, 0x4fc4ca01, 0x8f7e0a07, 0x29b209f3, 0x5612ceb1, + 0x43834207, 0x43994b0b, 0x0b3f4b0d, 0xf120c823, 0x07ee12da, 0x83420732, + 0x4d425333, 0x08b39db4, 0xbd99b20d, 0xd6bc4908, 0xb4a9bfdf, 0x4cc2013e, + 0x070b07b1, 0xf7607e1c, 0x1e27a81e, 0x5e020000, 0x1127fdf9, 0x157e0b07, + 0x7e0a07f0, 0xb209f33a, 0x21ceb129, 0x9d4027ac, 0x0b0709b4, 0xd1f2127e, + 0x8904d8b4, 0x410398b3, 0x41e3430b, 0x04d8b4d5, 0x9c7e0a07, 0xbd4127f6, + 0xd10125b4, 0x110108b3, 0x122c27f4, 0x44034001, 0x34033005, 0xb2d1f2a8, + 0xb3d103e8, 0xb0b903f8, 0xb2d5048a, 0xb3d50114, 0xb2b90118, 0xb0bd04d0, + 0xb1a90126, 0xb3b904d4, 0xb0b90490, 0xb4a9012d, 0xb2bd012e, 0xb1ad0128, + 0xb3bd0120, 0xb0bd0129, 0x20270127, 0x21274496, 0xb998b489, 0xbd048fb3, + 0x9b0122b2, 0xf8b2b943, 0xd5443304, 0xb9011cb4, 0xbd04f9b1, 0xa7012bb2, + 0xffffff2e, 0x0e5c24d1, 0x012ab1bd, 0xfaee4ff6, 0x5fff0ea7, 0x930411fd, + 0x009beff2, 0x15104ce3, 0xdb1ea704, 0x2301fefd, 0x22111401, 0x41ec432b, + 0x20a7faee, 0xfaec20ec, 0xe47e0a07, 0x9b4027f5, 0xf49b0bf4, 0xec051e0e, + 0x27fad920, 0x7e112705, 0x3ea7f63a, 0x93fefddb, 0x009baff0, 0x03013401, + 0x432b0211, 0xa7e141cc, 0xd1dd1e20, 0xc503a0b4, 0xb4c5c8b4, 0xfdec5ec4, + 0x012eb4a9, 0x44863027, 0x31c33127, 0x145e3183, 0x2b4427fe, 0x3b3d0740, + 0x9d3e2b14, 0x31e20bb4, 0x3107fb81, 0x27fb7c5e, 0x07402b44, 0x5ee43be6, + 0xb0b9fb29, 0xbda90165, 0x04230140, 0x403b4d07, 0x239ab389, 0xe2040341, + 0x2700d334, 0x5e312791, 0xb4d1fafd, 0xf60503f4, 0x01004dfc, 0xb3b9fbcf, + 0xbdd1048f, 0xb4b90528, 0xb7d104b0, 0xf0010524, 0xdc03d39b, 0x9b4f4b7f, + 0x7fdce370, 0xfbf14ff6, 0x0520b4d1, 0x840b8d9b, 0x07fc185e, 0xf5197e0a, + 0x9b06f293, 0xf824b900, 0xa14ff604, 0xbe0b0700, 0xd1fbcac9, 0x8d03e8bc, + 0x845e12bc, 0x7e0b07fa, 0x555ef82c, 0x7b3423fe, 0x9bb36923, 0x0b404720, + 0x9a3fe624, 0xa9320700, 0xf6012eb4, 0x27fd834f, 0xfd7e5e20, 0x013ab4b9, + 0xb2b9e127, 0xb3a904d1, 0x10270162, 0x11274418, 0x1307317b, 0xb3b94607, + 0x120b04d0, 0x142b4433, 0x130334c6, 0x400713e3, 0x412b4433, 0x4d834633, + 0x6ff60300, 0xf121fbb5, 0x14863127, 0x3c333027, 0xfba95e10, 0x31279027, + 0xa9fa2c5e, 0xf6012eb4, 0xd1fd0f4f, 0xc503a0b4, 0x055eccb4, 0x9cd8d5fd, + 0xfc1a5e01, 0xfdbe0b07, 0x605efbc9, 0x5e1027ff, 0x4127fa81, 0x5edeb49d, + 0x4203fc8f, 0x2405432b, 0x925e2115, 0x5e3027f9, 0xf54eff67, 0xdf27c027, + 0x41e00000, 0x3d072c07, 0xb107a007, 0x00151bbe, 0x271f00c8, 0x073d0720, + 0xbe0a071b, 0x0700127b, 0x07040740, 0x13c3be51, 0x000f0300, 0x8e800000, + 0x071b07f5, 0x13b3be0a, 0x01f58e00, 0x1342d004, 0x32b01301, 0x204944c0, + 0xc042a434, 0x14113c32, 0x112745c6, 0xfe0b0107, 0x04113284, 0x10a742c6, + 0xfe0b0107, 0x14110311, 0x3106344e, 0xf11e10a7, 0x14210221, 0x7af442da, + 0x31043124, 0xeb04ca10, 0x3fd60442, 0x1e10a7ce, 0x071027d8, 0xc4fe0b01, + 0x1111c934, 0x142b0411, 0xfb4ebb1e, 0x32d00301, 0xd014012f, 0x34e02842, + 0x44c000fb, 0x2242c421, 0x051d32c4, 0x15041123, 0x25042124, 0x35043124, + 0x11031124, 0x8b020714, 0x8e241543, 0x8e0107fb, 0xfa32c0fb, 0x14210c21, + 0xe42bec07, 0x13310b31, 0xe0c8de07, 0x20ecc867, 0x8c4cfa4c, 0x27c40700, + 0x110011b0, 0x7404ce14, 0x3b2b0f66, 0x277e30c8, 0x25241540, 0x3123352c, + 0x23410721, 0xff4fd441, 0x163fffff, 0x11472321, 0x41073123, 0x23252135, + 0x4fd04123, 0x3fffffff, 0x054327ee, 0x2810c824, 0xfb8e0207, 0x2752d1c8, + 0x234e3b41, 0x27438b41, 0x274486d0, 0xab3e5bd1, 0x13a71e3d, 0x20eccce0, + 0x1be21e99, 0x21a61e3b, 0x53310724, 0xab118331, 0x07410313, 0x25213502, + 0x07fb8e24, 0x15130b1b, 0x352c2520, 0x27b31e21, 0xff775e30, 0x41273013, + 0x2c252415, 0x801e2335, 0xff67dfe6, 0x4e3b4127, 0x4b8b4123, 0xd027ce0b, + 0xd1274486, 0xbdabbe5b, 0xe4ff505e, 0x11ff2a44, 0xee041113, 0x93ff2234, + 0xffe9f7f0, 0x0001fb8e, 0x40073007, 0x53173c53, 0x20071f4c, 0x3f6b1415, + 0xffff2e83, 0xc639d67f, 0xa7432728, 0x14057d3c, 0x13254207, 0x4f744733, + 0x40000000, 0x31234447, 0x00004fd0, 0x25f64000, 0x0b143513, 0x054227fe, + 0xc0fe0b14, 0x3316ff3c, 0x7f3c2327, 0x00002fa3, 0x43274000, 0x13251235, + 0xfe0b1405, 0x44272516, 0xfe0b1405, 0x00000e83, 0x27054610, 0x35140541, + 0x05fe0b12, 0x4ef91e10, 0x07f163f5, 0x03f0051f, 0x7e0f0714, 0xf341ff7a, + 0x23074027, 0xf0112253, 0xf12142ab, 0x3c33f231, 0x0c79be1e, 0x43510700, + 0x4ef58ef1, 0x07f2a3fb, 0x05b803bf, 0x07f115f0, 0x7e1b070f, 0xcf07ff4a, + 0x0718cc03, 0x0704030f, 0xff3c7e1c, 0x1c070b07, 0x83fdba7e, 0x01fb8ef2, + 0x11033104, 0x6442d002, 0x005744c0, 0x2735f642, 0xab002740, 0x1f2c3304, + 0xfe0b02ab, 0x0fc80021, 0xffffff82, 0x800ccc5b, 0x83430739, 0x0c037f4c, + 0x404cc07f, 0x3f3c031e, 0x072130c8, 0x6b475343, 0xff4e830f, 0x0c337fff, + 0x3304ab17, 0x02ab1f2c, 0x3cd8fe0b, 0x3c03e380, 0x53de1e40, 0x1e010331, + 0x274027db, 0x8000000f, 0x07a91e7f, 0x004ea343, 0x4e831000, 0x277fffff, + 0x8000000f, 0x13951e7f, 0xffff820f, 0x1a0cccff, 0x3b412753, 0x8b412340, + 0x86102743, 0x5b112744, 0xab030730, 0x83400701, 0x4cc07f4c, 0x40073c40, + 0x073f4c03, 0x27375334, 0x004fd001, 0x20400000, 0x4e834307, 0x337fffff, + 0x505e170c, 0x034007ff, 0x3407404c, 0x01273753, 0x00004fd4, 0x27e24000, + 0x27de1e00, 0x1e302700, 0x800cdcd8, 0x533007e1, 0x14412737, 0x0000000f, + 0x07402740, 0x4ec21e04, 0x05f123fe, 0x150f07f0, 0x35f225f1, 0xfef97ef3, + 0xfe8ef103, 0xf163fd4e, 0xd403df07, 0x1d07f005, 0x137e0f07, 0x27f421fe, + 0x27449630, 0x250d0731, 0xfed57ef3, 0xfd8ef143, 0xf2a3fc4e, 0xc803cf07, + 0xf115f005, 0x1c070f07, 0x07fded7e, 0x18dc03df, 0x04030f07, 0xdf7e1d07, + 0xd0f221fd, 0xf1611622, 0x008112f0, 0xf371f431, 0xf43543cb, 0x22c42400, + 0x07126e18, 0xfe917e0c, 0xfc8ef283, 0xe7aaf093, 0xfe857eff, 0xfc8ef283, + 0xc05d14c0, 0xf2413912, 0xf351f481, 0xf191242b, 0x1342f245, 0xf2452123, + 0x2f273347, 0x40000000, 0x4c270027, 0xab312a1f, 0x53312b02, 0x98334721, + 0x834007f4, 0x4cc07f4c, 0xf0551240, 0x4427ae1e, 0xf4250c07, 0x83fe3a7e, + 0xdcfc8ef2, 0x66ec800c, 0x400c0331, 0x557f0ce3, 0x07911ef0, 0x278f1e0d, + 0x450c0740, 0x1ef455f4, 0xa3fc4e85, 0x03cf07f3, 0x15f005c8, 0x070f07f1, + 0xfd347e1c, 0xdc03df07, 0x030f0718, 0x7e1d0704, 0xf421fd26, 0xf3614290, + 0xe02432d0, 0xe000dc44, 0xc400cc34, 0xf3311642, 0x2027f471, 0x2127340e, + 0xf2350c07, 0x83fdd27e, 0xc4fc8ef3, 0xf3311632, 0x2027f471, 0x2127340e, + 0xf2750d07, 0x83fdba7e, 0x51fc8ef3, 0x27f091f2, 0xbe102730, 0x8100129f, + 0x07f441f3, 0x03430bd1, 0xc5302742, 0xf3b530f4, 0xf331f471, 0x342e2107, + 0xf4b54127, 0x20cc3d07, 0x30f4c11a, 0x41032153, 0x01533138, 0x00000fa3, + 0x32078000, 0xc5ee20c8, 0x2fd430f4, 0x40000000, 0x30f4c123, 0x0047091e, + 0x00002fb4, 0x22474000, 0x00cc4123, 0x4721a3f2, 0x002fd000, 0xef400000, + 0x0730f4c5, 0x7f4c8342, 0x14404cc0, 0x43270f07, 0xc5280c03, 0xf4a534f2, + 0x83fd2e7e, 0xdcfc8ef3, 0x26ea802c, 0x402c0301, 0x1e7f2ce3, 0x4f42e4e0, + 0x35f093ff, 0x3d5effe6, 0x2b32e4ff, 0x29f093ff, 0x315effe6, 0xa3fb4eff, + 0x03bf07f3, 0x15f005b8, 0x070f07f1, 0xfc207e1b, 0xcc03cf07, 0x030f0718, + 0x7e1c0704, 0xf471fc12, 0x41c32f07, 0x2c031c07, 0x750b0728, 0xfae47ef4, + 0x83fcce7e, 0x4efb8ef3, 0x07f3a3fb, 0x05b803bf, 0x07f115f0, 0x7e1b070f, + 0xcf07fbe6, 0x0718cc03, 0x0704030f, 0xfbd87e1c, 0x1c072f07, 0x07282c03, + 0xfab07e0b, 0x83fc9a7e, 0x4efb8ef3, 0x27f123fc, 0x27f40543, 0x270008c1, + 0x270636c0, 0x07f40542, 0x7efc150f, 0xf103fc7b, 0xc876fc8e, 0x4c27d007, + 0x250d071e, 0xbefd35f4, 0x230011b3, 0xe001c801, 0x3b1e4c27, 0x35402bd0, + 0x1ef425fd, 0x000f40d3, 0x07800000, 0x1ed013d0, 0x000f27d6, 0x1ecf0000, + 0xa3fc4ec6, 0x03cf07f2, 0x15f005c8, 0x070f07f1, 0xfb5c7e1c, 0xdc03df07, + 0x030f0718, 0x7e1d0704, 0xf421fb4e, 0x611042d0, 0x074290f4, 0x7e1d070c, + 0xf283f9c3, 0x0127fc8e, 0xfe4ef91e, 0x1f07f163, 0x1403f005, 0x277e0f07, + 0x44f411fb, 0x43002742, 0xd0fe8ef1, 0x4440f842, 0x40c8f431, 0x1f4c88f1, + 0x47c6f421, 0x00000f27, 0xf1438000, 0xf041fe8e, 0x4c13f321, 0xc6045b1e, + 0x0013d63f, 0xfe8ef143, 0xffff0f27, 0xf1437fff, 0xfe4efe8e, 0xf115f2a3, + 0xf0051f07, 0x0f071803, 0x07fad57e, 0x031f070f, 0x181c0304, 0x21fac97e, + 0x614290f4, 0x300027f4, 0x8ef28342, 0x830127fe, 0x4efe8ef2, 0x07f2a3fc, + 0x05c803cf, 0x07f115f0, 0x7e1c070f, 0xdf07faa2, 0x0718dc03, 0x0704030f, + 0xfa947e1d, 0x42d0f421, 0x90f46110, 0x070c0742, 0xf9097e1d, 0xfc8ef283, + 0xf91e0127, 0xf2a3fc4e, 0xc803cf07, 0xf115f005, 0x1c070f07, 0x07fa697e, + 0x18dc03df, 0x04030f07, 0x5b7e1d07, 0xd0f421fa, 0xf4611042, 0x0c074290, + 0xd07e1d07, 0x8ef283f8, 0x1e0127fc, 0xa3fc4ef9, 0x03cf07f2, 0x15f005c8, + 0x070f07f1, 0xfa307e1c, 0xdc03df07, 0x030f0718, 0x7e1d0704, 0xf421fa22, + 0x611042d0, 0x074290f4, 0x7e1d070c, 0xf283f897, 0x00a7fc8e, 0xfc4ef91e, + 0xcf07f2a3, 0xf005c803, 0x0f07f115, 0xf77e1c07, 0x03df07f9, 0x0f0718dc, + 0x1d070403, 0x21f9e97e, 0x1042d0f4, 0x4290f461, 0x1d070c07, 0x83f85e7e, + 0xa7fc8ef2, 0x4ef91e00, 0x07f2a3fc, 0x05c803cf, 0x07f115f0, 0x7e1c070f, + 0xdf07f9be, 0x0718dc03, 0x0704030f, 0xf9b07e1d, 0x42d0f421, 0x90f46110, + 0x070c0742, 0xf8257e1d, 0xfc8ef283, 0xf91e0127, 0xf123fd4e, 0x0676d007, + 0xf4054227, 0x40270f07, 0x547ef415, 0x8ef103fa, 0x274327fd, 0xf4051e3c, + 0xf035f325, 0x000f8ebe, 0x00c80123, 0xdd0fc61c, 0x2b1e4c27, 0x25d03b40, + 0x270f07f4, 0x15fd3540, 0xfa257ef4, 0xfd8ef103, 0x20132007, 0x423b4127, + 0x4d8b4123, 0x46363027, 0x4c27d25b, 0x2b3dab1e, 0x25f33540, 0x27a61ef4, + 0x4eee1e31, 0xd00401fd, 0x13011342, 0x44c032b0, 0xa434205d, 0x4832c042, + 0x45c61411, 0x01071127, 0x3284fd8e, 0x42c60411, 0x010710a7, 0x0311fd8e, + 0x344e1411, 0x10a73106, 0x0221f11e, 0x42da1421, 0x1524daf4, 0x0e410d31, + 0x11411031, 0xcee61eca, 0xe12a141e, 0x0d42e16e, 0xa7c23fd6, 0x27cc1e10, + 0x8e010710, 0xebd0c2fd, 0x1ecc3fd6, 0xb534c4b0, 0x04111111, 0xa71e142b, + 0xf1a3f54e, 0x60275027, 0xf5350301, 0xc007f645, 0xb2077107, 0x90278027, + 0x012f32d0, 0x7d42f014, 0x4b34e001, 0x7544e002, 0x2442c401, 0x071b32c4, + 0x27400732, 0x03410125, 0x03310544, 0x11f2a834, 0x077411c3, 0x15438bcb, + 0x830c07b4, 0xe0f58ef1, 0x21014b32, 0x2514210e, 0x310341fe, 0x15ae0702, + 0x2bf205f3, 0x411d31a4, 0xe83a071e, 0xcc00dfa0, 0xe84c40ac, 0x07017c31, + 0x203c233a, 0x5027f355, 0x30e86027, 0x412701dc, 0x133b1407, 0x02072127, + 0x30a70a3b, 0x300b40a7, 0x3d8b414b, 0x34ab4e8b, 0x512734c6, 0xf4516027, + 0x01a440e8, 0x845b8e07, 0x9a5b9e07, 0xe607d507, 0xe9abd8ab, 0xf321111e, + 0x010643fa, 0x20271027, 0xf105f425, 0xc011f215, 0x04ee7411, 0x0fe600db, + 0xf30100cc, 0x1d07f411, 0x132b2e07, 0x20e8246b, 0x402700f2, 0xf421b415, + 0xb425b135, 0xbc31b245, 0x30a7bd41, 0x3c0b40a7, 0x4fd44d4b, 0x10000000, + 0xff4fe031, 0xc00fffff, 0x07b12100, 0x1f4c534c, 0x34ab3d47, 0xb3452c47, + 0xbc31b235, 0x1123bd41, 0x40a730a7, 0x3c0bb125, 0x4fd04d4b, 0x10000000, + 0x0543271e, 0x00dfd4b4, 0x2c200000, 0x0c07cb07, 0xf58ef183, 0xaceca013, + 0x5eff6d40, 0x4fc4ff1f, 0x0fffffff, 0xff3fd0b7, 0xb0ffffff, 0xb4054327, + 0x0000dfd0, 0x07d62000, 0x330d073c, 0x20271f0c, 0x4d073153, 0x1c07be21, + 0x415330ab, 0x04ab0207, 0xcb071183, 0x13abe103, 0xf183b045, 0xb1350c07, + 0xf58ebe25, 0x0c07c707, 0xf58ef183, 0xf211f101, 0x2e6b1d2b, 0x01ff395e, + 0x15f211f1, 0x4b1d0bb0, 0x21d2072e, 0x25c107f2, 0x45bc35b2, 0xff735ebd, + 0xe027d027, 0xf4ff015e, 0xffffff3f, 0x5eff64ff, 0xfd21ff39, 0x40273027, + 0x426b312b, 0xb2152127, 0xb335bd25, 0x075eb445, 0xdb3fe6ff, 0x07f321fe, + 0x202c232a, 0xf2553a0b, 0x0027f325, 0x20e81027, 0x41270091, 0x623b6407, + 0x52072127, 0xf2015a3b, 0x40a730a7, 0x464b350b, 0xf211328b, 0x34ab428b, + 0x012734c6, 0xf3511027, 0x115030c8, 0x35435bf4, 0x31f311f4, 0x073a5bf4, + 0xab40ab23, 0x05f34521, 0x5ef215f4, 0x4c27fe82, 0x074a2b20, 0x3b8d071e, + 0xab8a5b14, 0xfe525e81, 0x27203c27, 0x073a2b41, 0x5e135b14, 0x44e4fe20, + 0x1311fdd9, 0x34ee0411, 0xfc93fdd1, 0x5effe03c, 0x4c27fdc9, 0x01f21120, + 0x3b4a2bf3, 0x073a5b24, 0xab230742, 0x1ef23524, 0x203c27a1, 0x3a2b4127, + 0x635b6407, 0x4eff6b5e, 0x010a11f8, 0x07ba0709, 0x1fbc533a, 0x83143c53, + 0x070307b1, 0x831b15ea, 0x2707ff0d, 0x078107c0, 0xffee83d9, 0x0e160fff, + 0x4eab4907, 0x42274516, 0xf88e1405, 0x3da74327, 0x140503fd, 0x49071325, + 0x4c531e07, 0x07183318, 0x3314ab09, 0x001fd408, 0x1d100000, 0x2007e307, + 0x2c534147, 0x4742ab1f, 0x07030730, 0xd0e12314, 0x0000004f, 0x8e25e910, + 0x81458035, 0x0dc0f88e, 0x072807ff, 0x534e0729, 0x4833182c, 0x240742ab, + 0x00002fa3, 0x39071000, 0x0d233833, 0x124503ff, 0x10252327, 0x13351205, + 0x4907f88e, 0x45164eab, 0x14054427, 0x4e07f88e, 0x4e833027, 0xab080000, + 0x27358634, 0x35140541, 0x8e8e458d, 0x1e1305f8, 0xe3f54ef7, 0x075107f1, + 0x0340071f, 0x050f0718, 0x7ef515f4, 0xf351ff23, 0x1307f461, 0xffff1f83, + 0x20273fff, 0x3c530487, 0xab12ab1e, 0xa3148630, 0x31f02131, 0xbef241f1, + 0xc3fff6d7, 0x4ef58ef1, 0x07f3a3f5, 0x10ac03af, 0xb007c107, 0x0f071a07, + 0xf225f335, 0xfc155307, 0xcf07fb05, 0x03feda7e, 0x0f0724cc, 0x1c070803, + 0x07fece7e, 0x7e1c070a, 0xf383fbab, 0xf64ef58e, 0x90270401, 0x0d31a027, + 0x08110e41, 0x00c942f0, 0x00ba44e0, 0x4d074240, 0x47f64eab, 0x10270027, + 0x31833807, 0x4c334307, 0x0730271f, 0xabc107b0, 0x07c4abb3, 0x8e1c070b, + 0xe80021f6, 0xfffc020f, 0xec00b1ff, 0x8504000d, 0x6b3d0700, 0x0340273f, + 0xc003ff0d, 0x2756803c, 0x40277f3c, 0xe44bd30b, 0x0000efd0, 0x07162000, + 0x073d072e, 0x1f2c334e, 0x32ab3153, 0xd3074153, 0x0103e407, 0x4e072007, + 0x1e070d07, 0x07ff2d83, 0x32071853, 0x53184c33, 0x0704ab08, 0x143c33e1, + 0xd0072027, 0xffffee83, 0x0702070f, 0xab0dab13, 0xff765e1e, 0x07a94fd6, + 0x003d833d, 0xc634ab01, 0x3c27a73f, 0x0b402780, 0xd0e44bd3, 0x000000ef, + 0x9c1eb320, 0x1f270027, 0x7ff00000, 0x07ff4b5e, 0x004ea34e, 0xe4070800, + 0xffffee83, 0x071e070f, 0x001fa30d, 0x5e7ff000, 0x0f13ff30, 0xfffffc02, + 0xba390cec, 0x23100700, 0x6027201c, 0x10e87027, 0x412700b5, 0xc13bc407, + 0xb2072127, 0x30a7b03b, 0x3b0b40a7, 0x3d8b4c4b, 0x34ab4e8b, 0x612734c6, + 0x10e87027, 0x9e07009f, 0xd607915b, 0xae07d9ab, 0xa05b3d07, 0x3f6be707, + 0x4027eaab, 0x44803cc0, 0x277f3c27, 0x4b3d0b40, 0x3324074e, 0xc127182c, + 0x00004f14, 0xc0271000, 0x08530307, 0x02ab1407, 0x3c071853, 0x07ff3d83, + 0xe1074307, 0x27144c33, 0x83d00730, 0x0fffffee, 0x14070307, 0x1eab0dab, + 0xd6fe975e, 0x3d07bb4f, 0x01003d83, 0x34ab4027, 0x4e073cb6, 0x27184c33, + 0x00ef14c1, 0x27100000, 0x530d07c0, 0xab1e0708, 0x1e185304, 0x27c027b6, + 0x1e102700, 0x203c27ae, 0x302b4127, 0xc35bc407, 0x27ff475e, 0x402b204c, + 0x9d073e07, 0x905b343b, 0x575e93ab, 0x803c27ff, 0x4eff6a5e, 0x05f163f5, + 0x150f07f0, 0x35f225f1, 0x7ef445f3, 0x5107fe0a, 0xf58ef143, 0xf1e3f54e, + 0xd803df07, 0x51074007, 0x1d070f07, 0xf515f405, 0x31fcae7e, 0x963027f4, + 0x07312744, 0x7ef3350d, 0x5107fdde, 0xf58ef1c3, 0xf3e3f54e, 0x1f07c107, + 0x1c03b007, 0x250f0710, 0x15f335f2, 0x7efb05fc, 0xdf07fc7f, 0x0724dc03, + 0x0708030f, 0xfc717e1d, 0x22d0f241, 0xf0f19116, 0x51010912, 0xcbf3a1f4, + 0x00f45543, 0x1f22c424, 0x0f0712ae, 0x7e100c03, 0x5107fd8e, 0xf58ef3c3, + 0xdc56f093, 0xfd807eff, 0xf3c35107, 0x14e0f58e, 0x12c000df, 0xb1f1617f, + 0x2bfc81f4, 0x34f8c114, 0xfb71f165, 0xea30f7c1, 0xce0084c8, 0x4c277d8c, + 0x2790273d, 0x000000af, 0x27502710, 0x38f4c560, 0xe607d507, 0xd9ab4a07, + 0x4c33eaab, 0xcec88a1f, 0x5d07548c, 0xb72b6e07, 0x2907c86b, 0x24ab2153, + 0x4c534b07, 0xab1c471f, 0x38f4c114, 0x41233a07, 0x0b473153, 0x0738f4c5, + 0x07a30792, 0xd6c107b0, 0x3507bf4f, 0x40273f6b, 0x38803cc0, 0xf685f575, + 0x07ff615e, 0x0344270f, 0xf445100c, 0x07fce97e, 0x8ef3c351, 0xb3b7caf5, + 0x7bc2a91e, 0x472b0782, 0x1f2c534c, 0x3b4742ab, 0xb3071123, 0xf165c407, + 0xd6ff6d5e, 0x3507c74f, 0x01003d83, 0x3fd634ab, 0xab4007bc, 0xb54fc641, + 0x27803c27, 0x4b350b40, 0xe3530746, 0x6407ff5c, 0x0d07a31e, 0x07ff0a5e, + 0x2730270f, 0x03202740, 0xf375100c, 0xf265f485, 0x4efef65e, 0x07f5e3f5, + 0x10ac03af, 0xc107b007, 0x1a070f07, 0xf225f335, 0xfb05fc15, 0x07fb2a7e, + 0x24dc03df, 0x08030f07, 0x1c7e1d07, 0x90f441fb, 0xd0f39142, 0x44e02632, + 0x34e001f3, 0x42c401e3, 0xa1f35118, 0x0e2027f4, 0x07212734, 0x7ef2550a, + 0x5107fc36, 0xf58ef5c3, 0x511832c4, 0x27f4a1f3, 0x27340e20, 0xa50d0721, + 0xfc1c7ef2, 0xf5c35107, 0xfbc1f58e, 0x27f77130, 0x076027a0, 0x34fcc12b, + 0x1a073607, 0x94be0707, 0x5b070006, 0xbc073027, 0xc54cfbc5, 0xf0c550f3, + 0x58f1c554, 0xc14cf0c1, 0x3a0750f1, 0x2707f881, 0x000672be, 0x9007c027, + 0x2507a107, 0x08073607, 0x60be1c07, 0xd0070006, 0xd90be107, 0xb807ea4b, + 0x00fdeaea, 0x00f5aeee, 0xf3c11027, 0x58f4c154, 0xad079107, 0xa44b930b, + 0x80277027, 0x00f9a4ea, 0xee58f4c1, 0xc1012c4a, 0xf2c150f3, 0x070b074c, + 0xbebe071c, 0xb100061f, 0x27f461f3, 0x03430bc0, 0xc5302744, 0xf3c540f4, + 0x51f4a13c, 0x4bb00bf3, 0x4bb70bc1, 0x27342ec8, 0x3cf4c541, 0x0000cfd0, + 0xc13f2000, 0x4c0740fe, 0x4c331b07, 0x0711531f, 0xab0a072c, 0x33215314, + 0xe1031f0c, 0x0715b1d8, 0x534a0739, 0xab415331, 0x07a40730, 0x00afa393, + 0x07800000, 0xd4c207b1, 0x0000002f, 0xfec5c920, 0x00cfd440, 0x31100000, + 0x0740fec1, 0x1f4c5349, 0x1a472b07, 0x2c5314ab, 0xab4c471f, 0x473b4742, + 0x07b30709, 0xc8e123c4, 0x900759a0, 0xcfd0a107, 0x10000000, 0x40fec5d7, + 0x3f6b3b07, 0x3cc04027, 0x0f074980, 0x0c034327, 0x44fbc538, 0xc548fcc5, + 0xcb7e38f4, 0xc35107fa, 0xe2f58ef5, 0x27ff0b9d, 0x54f3c110, 0x0758f4c1, + 0x0bad0791, 0x27a44b93, 0xe2812770, 0x27ff0b4a, 0x0b402731, 0x5e844b73, + 0x31a3ff07, 0xc407b307, 0x4fd6a11e, 0x833b07b6, 0xab01003d, 0xab3fd634, + 0x4aab4907, 0x27a44fc6, 0x4027803c, 0x4c4b3b0b, 0xbce3b307, 0x1ec407ff, + 0xd439e292, 0xe4c11efe, 0x93fe3a42, 0xffd933f0, 0xe4fe265e, 0x93fe1432, + 0xffd927f0, 0x4efe1a5e, 0x07f4e3f5, 0x10ac03af, 0xb007c107, 0x0f071a07, + 0xf225f335, 0xfb05fc15, 0xf47ecf07, 0x24cc03f8, 0x08030f07, 0xe87e1c07, + 0x07f4a1f8, 0x0741c32f, 0x382c031c, 0xf4a50a07, 0x7ef62f7e, 0x5107fa12, + 0xf58ef4c3, 0xf4e3f54e, 0xac03af07, 0x07c10710, 0x071a07b0, 0x25f3350f, + 0x05fc15f2, 0x7ecf07fb, 0xcc03f8af, 0x030f0724, 0x7e1c0708, 0x2f07f8a3, + 0x2c031c07, 0x7e0a0738, 0xd37ef5f0, 0xc35107f9, 0x4ef58ef4, 0x27f163fb, + 0x27f40543, 0x270008b1, 0x270736b0, 0x07f40542, 0x7efb150f, 0x3007f9b2, + 0x03074107, 0xf1431407, 0xbb36fb8e, 0x04074007, 0xc407d027, 0x253c4c27, + 0x45f035f4, 0x047dbefd, 0x03100700, 0x11c81d1c, 0xc80323cf, 0x4c072300, + 0xf445403b, 0x3c274c07, 0x2b413b3c, 0x25f43531, 0xc0b51ef3, 0x0000000f, + 0x40071a80, 0xbf1e4013, 0x2b204c27, 0x072c0741, 0x3b245b3d, 0x4532ab31, + 0x27d21ef3, 0x004f2730, 0x1ec1e000, 0xa3f54e96, 0x03df07f3, 0x400710dc, + 0x0f075107, 0xf4051d07, 0xf335c307, 0xf515f225, 0xe47ebf07, 0x24bc03f7, + 0x08030f07, 0xd87e1b07, 0xd0f441f7, 0xf4911042, 0x0d074290, 0xac7e1b07, + 0x8ef383f4, 0x1e0127f5, 0xe3f54ef9, 0x075107f1, 0x0340071f, 0x050f0718, + 0x7ef515f4, 0xf421f7ab, 0x00274244, 0xf58ef1c3, 0x40f842d0, 0xc8f44144, + 0x4c88f140, 0x46f4311f, 0x000f2749, 0xc3800000, 0x27f58ef1, 0xe42b3cec, + 0x4c234e07, 0x1c40c820, 0x0207f261, 0xf431045b, 0x13ca4fc6, 0x8ef1c300, + 0xff0f27f5, 0xc37fffff, 0x61f58ef1, 0x204c27f2, 0x32074e2b, 0x4307343b, + 0x0307f351, 0x04ab0e5b, 0xf54ed51e, 0x5107f3a3, 0x40071f07, 0x07101c03, + 0x07f4050f, 0x35c307b2, 0x15f225f3, 0xf7297ef5, 0x1f070f07, 0x1c030803, + 0xf71d7e24, 0x4290f441, 0x0027f491, 0xf3834230, 0x0127f58e, 0xf58ef383, + 0xf3a3f54e, 0xdc03df07, 0x07400710, 0x070f0751, 0x07f4051d, 0x25f335c3, + 0x07f515f2, 0xf6e97ebf, 0x0724bc03, 0x0708030f, 0xf6dd7e1b, 0x42d0f441, + 0x90f49110, 0x070d0742, 0xf3b17e1b, 0xf58ef383, 0xf91e0127, 0xf3a3f54e, + 0xdc03df07, 0x07400710, 0x070f0751, 0x07f4051d, 0x25f335c3, 0x07f515f2, + 0xf6a57ebf, 0x0724bc03, 0x0708030f, 0xf6997e1b, 0x42d0f441, 0x90f49110, + 0x070d0742, 0xf36d7e1b, 0xf58ef383, 0xf91e0127, 0xf3a3f54e, 0xdc03df07, + 0x07400710, 0x070f0751, 0x07f4051d, 0x25f335c3, 0x07f515f2, 0xf6617ebf, + 0x0724bc03, 0x0708030f, 0xf6557e1b, 0x42d0f441, 0x90f49110, 0x070d0742, + 0xf3297e1b, 0xf58ef383, 0xf91e00a7, 0xf3a3f54e, 0xdc03df07, 0x07400710, + 0x070f0751, 0x07f4051d, 0x25f335c3, 0x07f515f2, 0xf61d7ebf, 0x0724bc03, + 0x0708030f, 0xf6117e1b, 0x42d0f441, 0x90f49110, 0x070d0742, 0xf2e57e1b, + 0xf58ef383, 0xf91e00a7, 0xf3a3f54e, 0xdc03df07, 0x07400710, 0x070f0751, + 0x07f4051d, 0x25f335c3, 0x07f515f2, 0xf5d97ebf, 0x0724bc03, 0x0708030f, + 0xf5cd7e1b, 0x42d0f441, 0x90f49110, 0x070d0742, 0xf2a17e1b, 0xf58ef383, + 0xf91e0127, 0xf163f54e, 0xb027a027, 0x90278027, 0x422706b6, 0x0f07f405, + 0xf4154027, 0x07f6d97e, 0x8ef14351, 0x27d027f5, 0x3c3c2743, 0xf405c007, + 0xf035f325, 0xacbefd45, 0x10070001, 0xc81d1c03, 0x1fc62c10, 0xe80323d2, + 0x07008200, 0x45403b4c, 0x3b4c07f4, 0x3c3c2741, 0x312bf435, 0x40270f07, + 0xf415f325, 0x07f6917e, 0x8ef14351, 0x13e107f5, 0x230e07e0, 0x6027200c, + 0x00c87027, 0x07412742, 0x27b03bb4, 0x3ba20721, 0xa730a7ae, 0x4b3a0b40, + 0x8b3c8b4b, 0xc634ab4d, 0x27612734, 0x4000c870, 0x805b8d07, 0x9e5b9d07, + 0x2c274707, 0xab36073c, 0xab212b49, 0x45f33538, 0x5ef225f4, 0x3c27ff5a, + 0x2b412720, 0x5bb4073e, 0x27b91eb3, 0x412b204c, 0x3d072c07, 0x313b245b, + 0xf34532ab, 0x27ff745e, 0x4e2b204c, 0x8c073d07, 0x8e5b343b, 0xb51e83ab, + 0x0088fe4e, 0x1013100c, 0xfe0e2127, 0x00004e9e, 0x10680013, 0x44be2127, + 0x00130000, 0x1013fe8e, 0xfd4ef31e, 0x271200c8, 0x1410c8d0, 0x2cbe2027, + 0xd4860000, 0xfd8e0013, 0xd1270013, 0x13ee10cc, 0xd6412710, 0x1ed407d4, + 0x074027e4, 0x27de1ed4, 0x00099e21, 0x9e202700, 0x4e000003, 0x3601c2fe, + 0x273310c8, 0x203c2741, 0x44471147, 0xf02101c2, 0x302707f3, 0xfe8e26e6, + 0x27ee10cc, 0x2b012a30, 0x5334ab01, 0xd6115341, 0x0721b642, 0x66fe8e03, + 0x1e302740, 0x274127e9, 0x4ee31e30, 0x074207f6, 0x07930782, 0x533007a2, + 0x4fab102c, 0xe2073fab, 0x6007e39b, 0xb0077107, 0x0c531407, 0x9b349b10, + 0x0b430710, 0x104c53e1, 0x209be40b, 0x2e031e02, 0x07010000, 0x33b99b4e, + 0xa79b10ec, 0x07104c53, 0x073fabd2, 0x0bba0bce, 0x07c30bd4, 0x0b0c071b, + 0xd4f68e1d, 0x0100000e, 0x000dd417, 0x30273a01, 0x00f9035b, 0x00054724, + 0x1b204c27, 0xb0fe0b04, 0x0000000f, 0x183c2701, 0x00f9035b, 0x00054724, + 0x041b4827, 0x4c27fe0b, 0x5b340710, 0x2400f903, 0x1b000547, 0x27fe0b04, + 0xf9035b38, 0x05472400, 0x184c2700, 0xfe0b041b, 0x0001a8b6, 0x0001a8bb, + 0x0001a8c3, 0x0001a8cb, 0x0001a8d1, 0x0001a8d8, 0x0001a8e3, 0x0001a8ec, + 0x0001a8f5, 0x0001a8f9, 0x0001a8ff, 0x0001a909, 0x0001a911, 0x0001a91f, + 0x0001a92c, 0x0001a933, 0x0001a93f, 0x0001a949, 0x0001a954, 0x0001a8b6, + 0x0001a95f, 0x0001a967, 0x0001a96f, 0x0001a993, 0x0001a973, 0x0001a8c3, + 0x0001a97c, 0x0001a986, 0x0001a990, 0x0001a99a, 0x0001a9a4, 0x0001a9ac, + 0x0001a9b5, 0x0001a9bb, 0x0001a9c2, 0x0001a9c8, 0x0001a9d3, 0x0001a9dd, + 0x0001a8b6, 0x0001a95f, 0x0001a9e3, 0x0001a9ec, 0x0001a9f5, 0x0001a9f9, + 0x0001aa00, 0x0001aa08, 0x0001aa12, 0x0001aa19, 0x0001aa21, 0x0001aa2c, + 0x0001aa30, 0x0001aa38, 0x0001aa42, 0x0001aa4b, 0x0001aa50, 0x0001aa58, + 0x0001aa64, 0x0001aa6a, 0x0001aa75, 0x0001aa7f, 0x0001aa87, 0x0001a8b6, + 0x0001a95f, 0x0001aa96, 0x0001aaa0, 0x0001aaab, 0x0001aab8, 0x0001aabf, + 0x0001aac2, 0x0001aac9, 0x0001aacf, 0x0001aad9, 0x0001aae2, 0x0001aae9, + 0x0001aaf0, 0x0001aa7f, 0x0001a8b6, 0x0001a95f, 0x0001aaf8, 0x0001ab03, + 0x0001ab0b, 0x0001a993, 0x0001ab0f, 0x0001ab1d, 0x0001ab25, 0x0001ab30, + 0x0001a959, 0x0001ab39, 0x0001ab45, 0x0001ab50, 0x0001ab5a, 0x0001ab65, + 0x0001ab6c, 0x0001ab7a, 0x0001ab89, 0x0001a8b6, 0x0001ab8e, 0x0001ab93, + 0x0001ab9d, 0x0001aba1, 0x0001aba9, 0x0001abb1, 0x0001abbb, 0x0001a98c, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, +}; +const int fw_hevcenc_size = 353664; + +int get_fw_hevcenc(unsigned char **data) +{ + *data = (unsigned char *)fw_hevcenc; + return fw_hevcenc_size; +} diff --git a/drivers/media/platform/canaan/vpu/fw_jpegdec.c b/drivers/media/platform/canaan/vpu/fw_jpegdec.c new file mode 100644 index 0000000000000..2ab7cc7d4fb53 --- /dev/null +++ b/drivers/media/platform/canaan/vpu/fw_jpegdec.c @@ -0,0 +1,7714 @@ +// SPDX-License-Identifier: GPL-2.0-only +/* + * Copyright (c) 2024, Canaan Bright Sight Co., Ltd + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND + * CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, + * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, + * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + */ + +#include "mvx_firmware_cache.h" + +const unsigned int fw_jpegdec[] __aligned(0x1000) = { + 0x0000eb5e, 0x02020305, 0x33363635, 0x32303137, 0x69746f4d, 0x4a206e6f, + 0x20474550, 0x6f636544, 0x00726564, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x4745504a, 0x20434544, + 0x33346332, 0x31643430, 0x30703172, 0x6530302d, 0x00306361, 0x00000000, + 0x0002cf80, 0x0002e000, 0x00000012, 0x0003dee7, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x0003c000, 0x00003420, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x01a70d27, + 0x6ea7f07b, 0x53fdcfff, 0xa50207f0, 0x25012760, 0x25002760, 0x0ef09b60, + 0x4fff6ea7, 0x036101fd, 0xa3143311, 0x3861c510, 0xce3860c1, 0x1ea7f810, + 0x27ffffff, 0x07142131, 0x24169924, 0x96806c40, 0x806c2765, 0x2724169d, + 0x03302761, 0x27620e21, 0x0b510720, 0x66501952, 0xf042ce0b, 0x33273826, + 0x270d139d, 0x3a13bd31, 0x9b002706, 0x10990ef0, 0xff6ea70f, 0x0233fd4f, + 0x63c5600b, 0x9b302740, 0x6ea70ef3, 0xc5fd4fff, 0x0d273863, 0xf0e81000, + 0x1225871e, 0x501d0127, 0x070c1399, 0x9d310353, 0x32070c13, 0x9b182c33, + 0x21a304f2, 0xffff0ea7, 0x270205fe, 0x0ef29b20, 0x059d0315, 0x000d2708, + 0x4df19302, 0x2d270322, 0xf09b0400, 0x93f10706, 0x02f9bff1, 0x0b361001, + 0x10050127, 0xd0b2f093, 0x2df39302, 0x03c202ce, 0x0331011e, 0x30ca803c, + 0x1df393f9, 0xf29302ce, 0x0102cb18, 0x05240321, 0xca340331, 0x58bef630, + 0x00270002, 0xbe0bf09b, 0x27000280, 0x9b102701, 0xff8b06f0, 0x0000fd1e, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x01a70d27, 0x6ea7f07b, + 0x93feffff, 0x000213f1, 0x937f1ce3, 0x00020bf2, 0x05b66001, 0x9bfa21d2, + 0x1c030ff1, 0xe3f21e80, 0x04f09b01, 0x02000d27, 0x414ef193, 0x012d2703, + 0x06f09b40, 0xdebef107, 0xff8b00a7, 0x0000fd1e, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x01a70d27, 0x6ea7f07b, 0x93feffff, 0x000193f1, 0x937f1ce3, 0x0007c2f2, + 0x05b66001, 0x9bfa21d2, 0x1c030ff1, 0xe3f21e80, 0x04f09b01, 0x02000d27, + 0x6b4ef193, 0x022d2703, 0x06f09b40, 0x71bef107, 0xff8b0001, 0x0000fd1e, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x01a70d27, 0x6ea7f07b, 0x93feffff, 0x00074af1, + 0x937f1ce3, 0x00098bf2, 0x05b66001, 0x9bfa21d2, 0x1c030ff1, 0xe3f21e80, + 0x04f09b01, 0x02000d27, 0x75cef193, 0x032d2703, 0x06f09b40, 0x18bef107, + 0xff8b0007, 0x0000fd1e, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x01a70d27, 0x6ea7f07b, + 0x93feffff, 0x000913f1, 0x937f1ce3, 0x000a19f2, 0x05b66001, 0x9bfa21d2, + 0x1c030ff1, 0xe3f21e80, 0x04f09b01, 0x02000d27, 0x8ccef193, 0x042d2703, + 0x06f09b40, 0xe1bef107, 0xff8b0008, 0xf09bfd1e, 0x07fe0b06, 0x4efe0b0f, + 0x25fd93f5, 0xd0010000, 0xf08b0506, 0xf71ed403, 0xf54ef58e, 0x0016fd93, + 0x06d00100, 0x03f08b05, 0x8ef71ed4, 0x000000f5, 0x00000000, 0x00000000, + 0xf4abfe4e, 0x196ef493, 0xbef41b01, 0x930012e7, 0x02d007f0, 0x07be1027, + 0xfe0e000b, 0x0018fd9e, 0x00038214, 0x0003822c, 0x00100000, 0x000380a4, + 0xf0e3f54e, 0x24caf493, 0x27f41b01, 0xe74ea730, 0x4305fefd, 0x2ea74315, + 0x05fefddf, 0xa7231523, 0xfefa574e, 0x43154305, 0xfa4f2ea7, 0x152305fe, + 0xff1ea723, 0x4f27ebff, 0x02400000, 0x2c271415, 0x5c12c521, 0xfdf30ea7, + 0x270325fe, 0xff4ea711, 0x41c5e7ff, 0x79f29350, 0xfe930369, 0x93036ab0, + 0x036ab3fc, 0x6ab6fb93, 0xb9fa9303, 0x2315036a, 0xc315e315, 0xa315b315, + 0x03150305, 0xe3052305, 0xb305c305, 0xf39ba305, 0xff2ea70e, 0xf493fdcf, + 0xb5fffe40, 0x35213524, 0xb5f49323, 0x24c5fffe, 0x45214530, 0xff4ea723, + 0x4315efff, 0x7fff2ea7, 0x254227fd, 0x21241524, 0x71f69323, 0x3da3036a, + 0x23252800, 0x18272411, 0x28004da3, 0x23212415, 0xffff4ea7, 0x003ea3f7, + 0x23250100, 0x6d1ef393, 0x4041c503, 0x13bc63c5, 0x3ce3fef3, 0xa731037f, + 0xfeffff0e, 0x014804d1, 0x43c02627, 0xd73ff411, 0x8f00001a, 0x0ff39b04, + 0x1e803c03, 0xd13027e8, 0xbd014801, 0xad024163, 0xa7014203, 0xbd402720, + 0xd5023c64, 0xbd024862, 0xd5023d63, 0xbd024462, 0xad024263, 0xbd023e63, + 0xc0024063, 0x2ea71113, 0x27feffff, 0xd1f4e846, 0xc4014823, 0xf293f633, + 0xa70369e0, 0xffffff4e, 0x43d11207, 0x1c030628, 0x3863d597, 0x7f1ce302, + 0x197f2ce3, 0x802c0324, 0x93f921c2, 0x0369bbf3, 0x4c272027, 0x03320526, + 0xa7f4c834, 0xfef3e74e, 0xf3ab6465, 0xf4eb4127, 0x643ef293, 0x58f39303, + 0x2ce3036e, 0x7f3ce37f, 0x698af593, 0x25f21503, 0xff1ea7f3, 0x14d1ffff, + 0x4fe60b84, 0x2ea703cf, 0x11fd7fff, 0x104ca324, 0x6cc12415, 0x1d4027bc, + 0x53b227c4, 0x01fe23f4, 0xbe1c0740, 0xb900af09, 0xf6023c64, 0x9603ba4f, + 0x49f393b1, 0x32c10369, 0x991127bc, 0x23d16024, 0x449601cc, 0x1c331027, + 0x403cfc0e, 0x248103d5, 0xab282389, 0x07248541, 0x1331e0d2, 0x19f31104, + 0x03f42134, 0x34c2803c, 0xa72027f7, 0xfdebb71e, 0x30a71205, 0x67b2f193, + 0x14138d03, 0xa758d3c1, 0x2414d540, 0x2814d501, 0x2c14d501, 0x3014d501, + 0xe0148d01, 0x8d58148d, 0x12159c14, 0x1d251305, 0xebb74ea7, 0x001f27fd, + 0x150c4200, 0x0ef29b41, 0xebaf3ea7, 0x273205fd, 0x8200004f, 0x9b34150c, + 0x38030ef2, 0x4f273205, 0x0cc20000, 0xf29b3415, 0x0538030e, 0x004f2732, + 0x150d0200, 0x0ef29b34, 0x32053803, 0x00004f27, 0x34150d42, 0x930ef29b, + 0x036737f4, 0x3d274201, 0x00270100, 0xbe241c27, 0x07029922, 0x641c031d, + 0x2d270027, 0x4abe0100, 0xd2890299, 0x11f19372, 0x128d0367, 0x98d39910, + 0x8972d189, 0xd49974d0, 0x3b133b62, 0x85f29303, 0xe02702f3, 0x32ff4ce0, + 0x3b412703, 0x04249d43, 0x231d245d, 0x5994d399, 0x2b132b24, 0x99247d41, + 0x249996d3, 0x3d032b04, 0x39402b2e, 0x05249d23, 0x02eb3fe6, 0x00003f27, + 0x4f27c400, 0xc7000000, 0xf342f193, 0x25143502, 0xadf29313, 0x24010366, + 0xc164d3c1, 0x430bbc62, 0x669ef393, 0x99343503, 0x40276e23, 0x3ae0f405, + 0x249902ca, 0x9630279a, 0x9d312744, 0xd4b9a253, 0x2027016e, 0x3027433b, + 0x53a6539d, 0x27fc8bf3, 0xac52c510, 0x01a852c5, 0xddf29330, 0x549d0121, + 0xa1519da3, 0x024c52d5, 0xd1a4518d, 0xbe0164d7, 0x2702994a, 0xff4ea731, + 0xf153f7ff, 0x43c5fc60, 0x2714014c, 0x103c2720, 0x44034205, 0xb027f3c8, + 0x9c27a027, 0x3b412711, 0xe6478b4a, 0x47008c4f, 0x0b4e07ea, 0x7041b94d, + 0x038e0701, 0xff1ce081, 0x310701ed, 0x33334107, 0x432b4533, 0x01984cf1, + 0x4807ff00, 0x42b94d0b, 0x2ce00170, 0x0701c7ff, 0x33420732, 0x2b453333, + 0x9040f143, 0x99ff0001, 0x46169ad4, 0x0000cee0, 0xe001bd10, 0x1000000e, + 0xd4d101bd, 0x4ddc01cc, 0x872f0400, 0xf53b074b, 0x0a3f804c, 0xfd3103ff, + 0x03822ceb, 0x6cb1fd00, 0x87000382, 0x8040f543, 0xfdff0a3f, 0x03826c32, + 0x2c83fd00, 0x03000382, 0xf8a103b2, 0x07ff68f9, 0xbd4f6b4b, 0xf6024264, + 0x4c53d146, 0xff4ea702, 0x43e5f7ff, 0xe5023f80, 0x023f8443, 0xbcd4b203, + 0x3c271720, 0x002e2720, 0x3b2b1000, 0x42f54b87, 0xff0a3f80, 0xf398b103, + 0xfb6ef253, 0x40a72001, 0x024864d5, 0x024464d5, 0x029793be, 0x62c13027, + 0x9e638dbc, 0x899c638d, 0xf3932824, 0x05029ad9, 0x004d8363, 0xc145c680, + 0x41dc4424, 0xdc248123, 0x991dc04c, 0x4fe6a254, 0x1c27014c, 0xa364991f, + 0x07a66399, 0x8b248b21, 0xa3629d13, 0xb9a6619d, 0xe6024262, 0xb901052f, + 0x07029054, 0x33353334, 0xe9342b43, 0x00019c34, 0x9c548dff, 0x019e31e9, + 0x518dff00, 0xa031e99e, 0xc1ff0001, 0x3489bc63, 0x004d8328, 0xc1456680, + 0x42384434, 0x17e31703, 0x2ff6f201, 0xd12700b0, 0x00aa11e0, 0xb8be0507, + 0xf35300aa, 0x3201fad0, 0x04271027, 0xe02730a7, 0x3027230d, 0x8d53219d, + 0x219d4e21, 0x54239d52, 0x8d4c2e8d, 0x1103502e, 0xf05c2c03, 0x4d07dff0, + 0xf1014013, 0x017064ad, 0x5ebd14c6, 0x05070176, 0x029ad3be, 0xfa82f253, + 0x5fbe2001, 0x1ea70297, 0xd1ffffff, 0xf60b8414, 0xa7fc354f, 0xfd7fff3e, + 0x4ce33411, 0x5e341510, 0xf2e8fc32, 0x53fb5f5e, 0x01fa57f1, 0xbe1c0710, + 0x07029774, 0x24bff6b0, 0xfc375efc, 0xfa4af353, 0x445e3001, 0x41f253fe, + 0x5e2c01fa, 0xc007fe1e, 0x475e1207, 0x070c07fe, 0xfe405e21, 0x555ed027, + 0x072481ff, 0x004da302, 0xbe248540, 0x5e00a389, 0x3027fbc9, 0x9d104c27, + 0x1127a353, 0x548d3027, 0xa6529d9e, 0x8da4538d, 0x085e9c54, 0x003f27ff, + 0x27e40001, 0x0001004f, 0xfd165ee7, 0x5e0f1c27, 0x1127feb5, 0x335ef105, + 0x5ee127fd, 0x0207fccd, 0x00a433be, 0x4efb845e, 0x29f493fb, 0xf41b0120, + 0x6fff2ea7, 0x024d27fd, 0x27242560, 0x1540023d, 0xa7402723, 0xfdeb672e, + 0x3f272405, 0x09830000, 0xf1932315, 0x93036e9c, 0x036e77f0, 0x6e7afe93, + 0x7dfc9303, 0xfb93036e, 0x15036e80, 0x15041514, 0x15c415e4, 0x051405b4, + 0x05e40504, 0x9bb405c4, 0x28030ef4, 0x3f272405, 0x07040000, 0xf49b2315, + 0x8f1ea70e, 0x3c27fde5, 0x1513051f, 0x000f2714, 0x35a00000, 0x7f2ea710, + 0x3103fde5, 0x24152305, 0xeb8f1ea7, 0x052035fd, 0x003f2714, 0x150d8200, + 0x0ef49b13, 0x6e86fe93, 0x033e0703, 0x2e0797ec, 0xe37f3ce3, 0xec237f2c, + 0x03341997, 0x32c2803c, 0x262c27f9, 0x6e66f393, 0x07102703, 0x23310542, + 0xb8340321, 0xdb4ea7f4, 0xe455fef3, 0x4127f3ab, 0x3ea7f4eb, 0x35ebffff, + 0xa7432732, 0xfdefff2e, 0x027824d5, 0x14c11207, 0xfb48dc78, 0x14d54427, + 0x14d50278, 0x3027027c, 0x06a013d5, 0xeb872ea7, 0x272305fd, 0xc200004f, + 0x9b24150d, 0x2ea70ef3, 0x27fde60f, 0x2405284c, 0x4f272315, 0x20000000, + 0x33272435, 0x028013d5, 0xefff1ea7, 0x8014c1fd, 0x27fb48dc, 0x8014d544, + 0x8414d502, 0xd5302702, 0xa706a413, 0xfdeb7f2e, 0x4f272305, 0x0e020000, + 0xf39b2415, 0xef2ea70e, 0x4c27fde5, 0x15240529, 0x004f2723, 0x35200000, + 0xd5332724, 0xa7028813, 0xfdefff1e, 0xdc8814c1, 0x4427fb48, 0x028814d5, + 0x028c14d5, 0x13d53027, 0x2ea706a8, 0x05fdeb77, 0x004f2723, 0x150e4200, + 0x0ef39b24, 0xe5cf2ea7, 0x2a4c27fd, 0x23152405, 0x00004f27, 0x24352000, + 0x13d53327, 0x2ea70290, 0xc1fdefff, 0x48dc9024, 0xd53427fb, 0xd5029023, + 0x27029423, 0xac24d540, 0x6f2ea706, 0x2405fdeb, 0x00003f27, 0x23150e82, + 0xa70ef49b, 0xfde5af1e, 0x052b3c27, 0x27141513, 0x0000003f, 0x93133520, + 0x03700ff2, 0xf0933027, 0x8d036d1c, 0x24c5e8e4, 0xf6e38d90, 0x24352445, + 0xc53c24c5, 0x24c53824, 0x6424c568, 0x8d9424c5, 0xe48df4e4, 0xc2e48dc0, + 0x8dc4e48d, 0xe48dc6e4, 0xe0e48dc8, 0x8de2e48d, 0xfb0ee4e4, 0x02a0039e, + 0xf6a3fd4e, 0x1f16f493, 0xa7f41b01, 0xfd5fff3e, 0x82024d27, 0x83dafd93, + 0x07342503, 0x97dc032d, 0x3d073415, 0xe37f2ce3, 0xdc237f3c, 0x03241997, + 0x23c2802c, 0x26ec27f9, 0x83b6f393, 0x07202703, 0x2332054e, 0xb83403e1, + 0x043d27f4, 0x3f4ea701, 0x4325fdbf, 0xeb472ea7, 0x272e05fd, 0xc200004f, + 0x9324150e, 0x03837bf1, 0xf3cf3ea7, 0x15d355fe, 0x271e051e, 0x0ef49b40, + 0x2127f3ab, 0x4ea7f2eb, 0xc5fddfff, 0x4ec5c44e, 0x003d27c8, 0xcc43c520, + 0x015c42d5, 0xd4ad4027, 0x4f070118, 0xffff3ea7, 0x204c03e7, 0xd4d53e35, + 0x30270150, 0xf0934f07, 0x9d038340, 0xde8db1d3, 0x54d4d5ca, 0x78ded501, + 0xf0ded503, 0x1adead03, 0x1cdead01, 0x1edead01, 0x20dead01, 0x40dead01, + 0x42dead01, 0x44dead01, 0x48dead01, 0xbcde8d01, 0x8dbade8d, 0xde8db2de, + 0xb6de8db4, 0x8db8de8d, 0xde8dbede, 0xc2de8dc0, 0x8dc4de8d, 0x0ebec8de, + 0xf68302b2, 0x0000fd8e, 0xffff1ea7, 0x4814d1fe, 0x4242c401, 0x11091499, + 0x07438313, 0x87243324, 0x87242b44, 0x8833f133, 0xf1ff000e, 0x00005424, + 0x2234caff, 0x014014b9, 0x24f94826, 0xff000050, 0x4ea74736, 0xd1ffffff, + 0xf10b7443, 0x00005424, 0x420127ff, 0x0b002743, 0x0b0127fe, 0x272027fe, + 0xfd402739, 0x000b7824, 0x982103ff, 0x93fe0bf3, 0x031567f4, 0x0f244001, + 0x0001a85c, 0xfe0b0127, 0x0f004127, 0x0001a8cf, 0x04074027, 0xfc4efe0b, + 0xdc3ed007, 0x2ea70a86, 0x99fef40b, 0xd4ce0824, 0x61f4930f, 0x43c103ae, + 0x09249944, 0xa75f34ce, 0xfd4fff4e, 0x2d9d4411, 0x93240508, 0x03ae47f4, + 0x9d444499, 0xfc8e0924, 0x15f2f493, 0x69422903, 0xffeea740, 0x4309fef3, + 0x0b08e199, 0x21032b02, 0xce4c4942, 0xe49910d1, 0x0a42ce09, 0x402ee449, + 0x4ccee469, 0xff4ea719, 0x4311fd4f, 0xf3ff4ea7, 0x9d4305fe, 0x429d084d, + 0x6d404d09, 0x4efc8e4c, 0xff4ea7fd, 0x4499feff, 0xff1ea709, 0x4383ffff, + 0x34874103, 0x062012d1, 0x432b4433, 0x004843f1, 0x24c6ff00, 0x0d1e4027, + 0x062c14d1, 0x430a2127, 0x42072027, 0xdf6bd407, 0x3027feab, 0x151e2527, + 0xf91231c0, 0x010c3c34, 0xf146a6ff, 0x02300014, 0x0b44d8ff, 0x13873103, + 0x0127f228, 0x0027031e, 0xfeeb0d8b, 0xfd4efd8e, 0xd0070419, 0x45c61f6b, + 0x72be1976, 0xfd0e0083, 0x0099989e, 0xa5be1506, 0x141e0034, 0x02edf353, + 0x143ef493, 0xbe430503, 0xbe0072ee, 0x27008122, 0x8ed41d41, 0xbefe4efd, + 0xa700d574, 0xfeffff4e, 0xf0934411, 0x8700f39c, 0x8841f144, 0xbeff000e, + 0x0e00cb48, 0x3df79efe, 0x6bfe4e00, 0x9307660f, 0x03ad2bf4, 0x66054499, + 0xfe8d7e47, 0x1bbe06c6, 0xfe0e0188, 0x012f6b9e, 0x00940abe, 0xc99efe0e, + 0xfe8e0082, 0xd107fd4e, 0x2a763f6b, 0x93663fc6, 0x0313d4f4, 0x47264419, + 0xacf2f493, 0x05449903, 0x547e45e6, 0xbe0546fe, 0xbe0187e2, 0xbe012f34, + 0xbe008031, 0x270098f3, 0x1e402701, 0x3522c434, 0x4f4b0419, 0x930e42c0, + 0x03139cf4, 0x44d64419, 0xfd8e0027, 0x0098b1be, 0x146af493, 0x2c40d503, + 0x28f35301, 0x79f49302, 0x43050313, 0x42270127, 0xfd8ed41d, 0xfd8e0027, + 0xb107fb4e, 0xc207d007, 0x10270227, 0xbabecf6b, 0xbf96012f, 0x4c8b4007, + 0x01394fe6, 0xac76fc93, 0x05c49903, 0xd87e4726, 0xbe0556fd, 0xbe018745, + 0xbe012eb8, 0x070074eb, 0x86debe0c, 0x55f49301, 0x449903ac, 0x204c2454, + 0x008887be, 0xb5be051e, 0xf4930089, 0x9903ac40, 0x45c60544, 0x018735be, + 0x012e87be, 0x0074babe, 0xd41d4027, 0xb2e4fb8e, 0x4ea700e3, 0x99feffff, + 0xfc930944, 0x8303ac18, 0x33348743, 0xf9432b44, 0x00004d42, 0x35f393ff, + 0xf4930187, 0x0503aa54, 0x4122d043, 0x00770bbe, 0x4454c499, 0x0c07204c, + 0x0087ccbe, 0x0c07071e, 0x008962be, 0xabdefc93, 0x54cb9903, 0xbe50c0c5, + 0x07003503, 0xbe0b0710, 0x07007e1a, 0x864abe0c, 0x9d412701, 0xbbbe05c4, + 0x361e0186, 0x012e0bbe, 0x4454c499, 0x0c07204c, 0x00878cbe, 0x0c07071e, + 0x008922be, 0xab9efc93, 0x54cb9903, 0xbe50c0c5, 0x070034c3, 0xbe0b0710, + 0x07007dda, 0x860abe0c, 0x81f39301, 0x412703ab, 0x270d349d, 0x04349d40, + 0x0059f3be, 0xd41d4227, 0x4fff4ea7, 0x274301fd, 0x0ef49b40, 0xffff4ea7, + 0x0e4499ff, 0x233b2127, 0x3ea724cb, 0x38fd4fbf, 0x05412721, 0x03215334, + 0x8e22d634, 0xa7fa4efb, 0xffffff4e, 0xc6274d99, 0x1eb027d4, 0xfd397e06, + 0x4ea7b007, 0x11feffff, 0x7843f944, 0x07ff000b, 0x233f4bc4, 0xfff488ce, + 0xa027d32e, 0x0ea7111e, 0x07fff47f, 0x072d071c, 0xfdfa7e3b, 0xf493a007, + 0x190311d5, 0x86cc1944, 0x7f0ea746, 0x0419fff4, 0x4d4e4f4b, 0x2b071d07, + 0xe6fe4f7e, 0xff3ea7a7, 0x4127ffff, 0x063434bd, 0x270f3399, 0x0ef49b40, + 0x33874127, 0xb04034f5, 0xc23cff02, 0xfa8e0027, 0x118efc93, 0xffdea703, + 0xc001feff, 0x0536f08b, 0x560ad499, 0xc8f41e47, 0x2b7e1404, 0xff4ea7fc, + 0x4499feff, 0x1601270a, 0x1e002745, 0x27012703, 0xff4ea730, 0x439dfeff, + 0x4efa8e0a, 0x56f493fe, 0x44190311, 0xf3934aa6, 0x9903aa74, 0x49660534, + 0xd6063499, 0x04349948, 0x591f41dc, 0x104cd434, 0x430ea719, 0xd7befffb, + 0x04cc00d0, 0x852bbe0d, 0x2c9ebe01, 0x8e002701, 0x811fbefe, 0x27077600, + 0xff4ea730, 0x43bdfeff, 0xf3930c08, 0x930144c4, 0x0310fff4, 0xfe8e4305, + 0x10fbf493, 0x86441903, 0x93302745, 0x03aa17f4, 0x8e06439d, 0xa7fe4efe, + 0xfdebdf2e, 0x23053027, 0x00004f27, 0x24150404, 0xa70ef39b, 0xfdefff2e, + 0x03240c03, 0x031e241c, 0x2411f3e8, 0x4c333327, 0x1d4c5318, 0xa7f244c0, + 0xfde7ff4e, 0x3d274005, 0x4315074a, 0x42352027, 0xe7ef4ea7, 0x154105fd, + 0xffeea743, 0x030bfdef, 0x031e4235, 0xe491f3e8, 0x4c333327, 0x1d4c5318, + 0xa7f244c0, 0xfde77f4e, 0x2d274005, 0x4215074a, 0x43353027, 0x4ea7120b, + 0x05fde76f, 0x35421541, 0x93fe8e43, 0x03a7dff4, 0x1ea74001, 0x5effffff, + 0xfc4eff6d, 0xffffdea7, 0x270227ff, 0x20dcd110, 0x2c9fbe06, 0x80d4b901, + 0x8631270b, 0x533027c4, 0xc3308b41, 0xc6438b41, 0x8e012744, 0xff4ea7fc, + 0x4301fd4f, 0x40270027, 0x270ef49b, 0x0ed49921, 0x24cb233b, 0x4fbf3ea7, + 0x272138fd, 0x53340541, 0xd6340321, 0x4efc8e22, 0xffdea7fb, 0xd499ffff, + 0xab4f3610, 0x9bc027fb, 0xfc9b0dfc, 0xff3ea70e, 0x3411fd9f, 0x4ea30127, + 0x15040000, 0xc322be34, 0xff4ea700, 0x4201fd4f, 0xf4933127, 0x1d030fc9, + 0x0fd29d43, 0xbe10d39d, 0x99000b46, 0xfc9b0fd4, 0x8731270e, 0x4043f544, + 0xebff02b0, 0x29f093fb, 0x112703a7, 0x379efb0e, 0xfb8efffb, 0xefff2ea7, + 0xe8031efd, 0x272411f3, 0x6a4ddc33, 0x051ef6fc, 0x061ef3e8, 0xefff2ea7, + 0x272491fd, 0x6a4ddc33, 0xfe0beffc, 0x0227fe4e, 0xc6be1227, 0x2ea7012b, + 0xb9ffffff, 0x530b8024, 0x38408b41, 0x8e012741, 0xff4ea7fe, 0x4301fd4f, + 0x40270027, 0x990ef49b, 0x21270e24, 0x24cb233b, 0x4fbf3ea7, 0x272138fd, + 0x53340541, 0xd6340321, 0x4efe8e22, 0x21c207fb, 0x012211c3, 0x07b107c4, + 0xaff09310, 0x49be00ee, 0xbf6b00c6, 0xc231d027, 0xf0931d07, 0x0300eecc, + 0xc636bed1, 0xc4c40300, 0x46ec0fdc, 0xa7c027bc, 0xfdbfffde, 0x49e6d441, + 0x42f14c87, 0x00011494, 0xf0931c07, 0xbe00eeb6, 0x4100c610, 0xc3f093d1, + 0x05be00ee, 0xd15100c6, 0xeec8f093, 0xc5fabe00, 0x45402700, 0x03c103d4, + 0xc8c420dc, 0xb6f493c8, 0x4419030e, 0xfb0e4506, 0x00087d9e, 0x769efb0e, + 0xfd4efffa, 0x05260f6b, 0xeea8fd93, 0x93061e00, 0x00eeacfd, 0x0d072107, + 0x607e1127, 0x271d07ff, 0xc8f49e01, 0x27100700, 0x4ed81e01, 0xffeea7f9, + 0x1ea7ffff, 0x99feffff, 0x14992ae3, 0x6ba00708, 0x27342eaf, 0xa7f98e01, + 0xffffd72e, 0x44d62479, 0xf98e0227, 0x24792379, 0x4f4b9307, 0x400c3027, + 0x24193127, 0x4383c307, 0x40f14487, 0xff00002c, 0x0744e499, 0x09149d20, + 0x6b091199, 0x071383cf, 0x334187d1, 0x83d42bd4, 0xde230f2c, 0xa6ffffb4, + 0x24e399c8, 0x4f4b4307, 0xe29d402c, 0x4e0e1e24, 0x93032723, 0x00ee2bf1, + 0x00c86d9e, 0x44c6d479, 0xf98e0427, 0x4ea7a666, 0x27d07fff, 0x31433531, + 0x27412044, 0x07f98e08, 0x10ec53e0, 0x4107c966, 0x43834123, 0x44333487, + 0x44e9432b, 0xff000052, 0xd27d3027, 0xd46dd35d, 0xd23dd31d, 0x2780ec38, + 0x04d49d41, 0x9905de9d, 0x202705d4, 0x40084f4b, 0xd4592127, 0x4103e1c3, + 0xd45d3e07, 0x4ea73183, 0x07feffff, 0x4143bdb2, 0xc6bf6b01, 0xff2ea7ba, + 0x23c1ffff, 0x07c86640, 0xc5485340, 0x4f6b3c23, 0x3ca744f6, 0x0b031e20, + 0xff4ea734, 0x43c5ffff, 0x9d402740, 0xd32504d4, 0xffff4ea7, 0x3c43d5fe, + 0xa7a93601, 0xfeffff4e, 0x0c4144b9, 0x271248dc, 0xff4ea731, 0x4335d07f, + 0x4327071e, 0x061ef4e8, 0x7fff3ea7, 0xc43431d0, 0x1ea7f141, 0xb9feffff, + 0x76014114, 0xa7312745, 0xd07fff4e, 0x29074345, 0xc40f2c83, 0x3ea71b21, + 0x99ffffff, 0x41034434, 0x2744349d, 0x4014bd41, 0xff4ea701, 0x4255d07f, + 0x00ebd0be, 0x1ea7d419, 0x03ffffd7, 0x79d41d41, 0x0f4c8314, 0x24074123, + 0x28362fab, 0x41031419, 0x1319141d, 0x34ce1439, 0x83141913, 0xf1448743, + 0x00002c42, 0x0f2c83ff, 0xa7802ca3, 0xffffd73e, 0x3459327d, 0x345d4103, + 0x402705e6, 0xa70ef49b, 0xfd4fff3e, 0xe63834c5, 0x100c27b4, 0x0c27f98e, + 0x4ef98e20, 0xff3ea7fb, 0x3499ffff, 0x99469611, 0x45f61234, 0xa402f493, + 0xd6441903, 0xc364be44, 0x0f3c2700, 0xbfff4ea7, 0x274335fd, 0x4ea75f3c, + 0xc5fd4fff, 0x3c273443, 0xff4ea7b6, 0x43d5fdef, 0x7abe0f04, 0x3ea700c9, + 0x27fd9fff, 0x80000a4e, 0x42273415, 0x34113425, 0x04004da3, 0x34213415, + 0x04004da3, 0xd7be3425, 0x3ea7004e, 0x99ffffff, 0x44c61134, 0x211ed027, + 0x27123499, 0x274486d1, 0x93d6e6d0, 0x03a393f4, 0x45c64419, 0x3c243499, + 0xa07e7f4c, 0xfc667efb, 0xffff2ea7, 0x112499ff, 0xffffcea7, 0x9d4103fe, + 0x43271124, 0x0148c4d5, 0x4fff1ea7, 0x271401fd, 0x3b3b07b1, 0x99430734, + 0x4f6b0e23, 0x239d34ab, 0x3c14c50e, 0xf49b4027, 0x7e01270e, 0xc0bdfd47, + 0x0c580c41, 0x100c3830, 0xcfff4ea7, 0x684bc5fd, 0x4ea7dda6, 0xd1ffffff, + 0x060b8441, 0xff2ea718, 0x2441fdaf, 0x9fff3ea7, 0x05410bfd, 0xe3342124, + 0x3425104c, 0x4ca33411, 0x93341510, 0x03a303fc, 0x45bec019, 0xc4190006, + 0x0d274636, 0x21be0eb8, 0xf4930005, 0x0503a2e8, 0x3b72be40, 0x9b402700, + 0x1ea70ef4, 0xa7feffff, 0xfd4fff3e, 0x014012b9, 0x063834c5, 0x4110b926, + 0x8304530c, 0x9efb0e01, 0x8e003b82, 0xbef54efb, 0xab004cc5, 0xeb4127f4, + 0x2af593f4, 0xf693030b, 0xa703a44c, 0xfeffff9e, 0xcfff7ea7, 0x7f8ea7fd, + 0x2ea7fff4, 0xd1ffffff, 0xa60b8423, 0xff2ea735, 0x2441fdaf, 0x2405430b, + 0xffff3ea7, 0x103499ff, 0x0ea746f6, 0xbeffffeb, 0x7e00c6ce, 0x0ea7faeb, + 0xbeffffeb, 0x1900c69f, 0x2744d654, 0xbe171ed0, 0x2701283b, 0x64649d40, + 0x0496d127, 0x04e6d027, 0x649d4127, 0x4194b965, 0x2f4cd80c, 0x7e00274d, + 0x94b9fc3b, 0xc0070140, 0x0c5845a6, 0x83045330, 0x3ae8be01, 0x832c0700, + 0x2676102c, 0x4c834c07, 0x274dab25, 0x27448600, 0x6bd00701, 0x833c07df, + 0x3556303c, 0x0c4194b9, 0x0e0f4cd8, 0x0c419cbd, 0x24e63526, 0x74c54127, + 0x4192b968, 0x302cd80c, 0x09949935, 0x34874383, 0x432b4433, 0x005044f9, + 0x4866ff00, 0x014894d1, 0x74c54124, 0x23171e68, 0x1242d442, 0xffff3ea7, + 0x263499ff, 0x01dd4fe6, 0xd8202cfc, 0x4194b901, 0x104cd80c, 0xf80fbe1b, + 0xbec007ff, 0xf6fff44c, 0x0701c20f, 0x864dab4c, 0x07012744, 0x11df6bd0, + 0x88be239b, 0xd5b6fff4, 0x0a02f293, 0x27241903, 0x27448631, 0x07541930, + 0x26cf6bc3, 0x6564994e, 0xbd198a19, 0x649945a6, 0xbe459605, 0xd6fff473, + 0x1e212704, 0x07202703, 0x0731533d, 0x5331c34a, 0x9934eb41, 0x31dc6461, + 0x9925f610, 0x30270464, 0x31274318, 0x031e2307, 0x41072127, 0x4c8b41c3, + 0x44863027, 0xc3073127, 0xc28bcf6b, 0x0139cfe6, 0x41a3b419, 0x5419b41d, + 0x84194506, 0x841d41a3, 0xf49b4027, 0x85f3930e, 0x34190309, 0x2ea746f6, + 0xd1ffffff, 0x96062024, 0x4193b945, 0x8334530c, 0x27031e31, 0x07541930, + 0xe6cf6bc3, 0x2701274a, 0x25b7be11, 0x1907e601, 0x1941d884, 0xffff3ea7, + 0x1034d1fb, 0x1c302702, 0x3127104c, 0x41c34307, 0x031e4f6b, 0x4c8b4027, + 0x44863027, 0xc3073127, 0xc866cf6b, 0x45065419, 0x003a14be, 0x2ea7181e, + 0x99ffffff, 0x30270f24, 0x270ef39b, 0xf5448731, 0x02b04043, 0xff3ea7ff, + 0x34d1fbff, 0xfdab0210, 0x08faf293, 0xd6241903, 0x2fbe774f, 0x302700c7, + 0x141e2527, 0xf91131c0, 0x010c3c34, 0xf14606ff, 0x02300014, 0x034458ff, + 0x30138731, 0x4072c1f2, 0x42073027, 0x74c541a3, 0x0ef39b40, 0xff8b0007, + 0xc54072c5, 0x4ea76073, 0xd1ffffff, 0xa70b8442, 0xfd4fff4e, 0xa66443c5, + 0xff3ea728, 0x3441fdaf, 0x9fff3ea7, 0xa7420bfd, 0xfdafff2e, 0x34212405, + 0x25104ce3, 0xa3341134, 0x3415104c, 0x00c6dfbe, 0xb419fdeb, 0xb41d41e3, + 0x45065419, 0x41e38419, 0x4027841d, 0x270ef49b, 0x61f39340, 0x341d0308, + 0xa7fd495e, 0xfd9fffde, 0x4c83d411, 0xbed41518, 0xbe0049df, 0xa700c539, + 0xfeffff4e, 0x014144b9, 0x31274566, 0x7fff4ea7, 0x934345d0, 0x030830f4, + 0x47264419, 0x1abe0127, 0xfcabfff4, 0x0003a5be, 0x4ee3d411, 0x15040000, + 0x27fcebd4, 0xf403be00, 0x27f0abff, 0x1e252730, 0x1331c016, 0x0c3c34f9, + 0x42d0ff01, 0x0014f114, 0xd8ff0230, 0x31030b44, 0xf2201387, 0x031e4127, + 0xf0eb4027, 0xf0ab4ab6, 0x25273027, 0x31c0161e, 0x3c34f913, 0xd0ff010c, + 0x14f11442, 0xff023000, 0x030b44d8, 0x20138731, 0x1e4127f2, 0xeb402703, + 0x274516f0, 0x1ef4e843, 0xe6b1bece, 0xffbea700, 0xdea7ffff, 0x1efd4fff, + 0x0ef39b0b, 0xbe38d3c5, 0x6100e69b, 0x563027b4, 0xff4ea742, 0x4201fd4f, + 0x990eb399, 0x412711be, 0x34eb423b, 0xb39de123, 0x11be9d0e, 0xffff2ea7, + 0x092499fe, 0x34074383, 0x44873433, 0x34f9342b, 0xff000050, 0x34f9c407, + 0xff00004f, 0x34fd4123, 0xff00004f, 0x2399ebb6, 0x44b49909, 0x4f4b432b, + 0x862f41c8, 0x28b4d1c5, 0x25bc9d06, 0x9340b4c5, 0x039eabf4, 0x40274101, + 0xffff0ea7, 0x12be9dff, 0x9d0cb49d, 0x2e7e2ab4, 0xbe0c07f6, 0x1e003371, + 0xffcea717, 0xc199ffff, 0xcd0ea70e, 0x62befff9, 0x412700c6, 0x9312c49d, + 0x0306f4f4, 0x4d064419, 0xffff1ea7, 0xd61251ff, 0x93302723, 0x0306e0f4, + 0x4027431d, 0x9b0bf49b, 0x3ea70ef4, 0x9dfd4fff, 0x129d1012, 0x9b33010f, + 0x21270ef4, 0x3b0e1499, 0xa724cb23, 0xfd4fbf3e, 0x41272138, 0x21533405, + 0x25863403, 0x4027f31e, 0x9b0bf49b, 0x3ea70ef4, 0x11feffff, 0x104c2732, + 0x0c0834bd, 0x24fd4027, 0xff000000, 0xf49b4027, 0xff4ea70e, 0x4499ffff, + 0x7e44b612, 0x3127f6e0, 0x4fff4ea7, 0x3043c5fd, 0xfe4eff1e, 0xffeb0ea7, + 0xc244beff, 0xf6617e00, 0xffeb0ea7, 0xc215beff, 0x5efe0e00, 0xfe0bfb19, + 0x9dd6f293, 0x03230103, 0xf4937f0c, 0xe3039dc8, 0x030b7f0c, 0x20054401, + 0x040b0307, 0xfe4efe0b, 0xe6daf093, 0xbd5abe00, 0xc957be00, 0xf1efbe00, + 0x09c0beff, 0x0f2cbe00, 0x9efe0e00, 0x4e005f1e, 0xff3ea7fd, 0x3dc1fd4f, + 0xe34d0768, 0xc0f00f4d, 0x6301004f, 0xf0932256, 0xbe00e6c6, 0x9300bd24, + 0x00e6e8f0, 0x71021f27, 0x15be5663, 0x1d0700bd, 0xe6fdf093, 0xc1321e00, + 0x34c17c32, 0x004fd874, 0x34200000, 0x933121d8, 0x00e695f0, 0x00bcf3be, + 0xe734f093, 0x5cf19300, 0xe5be00e7, 0xf09300bc, 0x9300e757, 0x00e77ff1, + 0x00bcd7be, 0xf1930427, 0x9e00e6e5, 0xa700c00a, 0xd07fff2e, 0x24a121a1, + 0x830c4c53, 0x4cc00f4c, 0x24a1270f, 0x285322a1, 0xd00f2c83, 0x1d831f23, + 0xf0930fff, 0x2700e74e, 0xbe422732, 0x2700bc9c, 0x78f19304, 0xc41e00e7, + 0x24a124a1, 0xfe4efd8e, 0xffff3ea7, 0x994027ff, 0x34bd0d32, 0x2410063a, + 0x42872027, 0x17b441f1, 0x01270001, 0x00bfa99e, 0xb007fb4e, 0xbff6bf6b, + 0x1c7e00a0, 0x2710beff, 0xcd3ea700, 0x4027fff9, 0x343d341d, 0xffdf3ea7, + 0x27051eff, 0x01f4e846, 0xa7d3563d, 0xfd4fff4e, 0x0e274401, 0x33040000, + 0x0548a344, 0x3109be34, 0x79fc9300, 0xc005039c, 0xffdf0ea7, 0xc0a5beff, + 0xb6c40100, 0x93012745, 0x00e733f1, 0x00bf499e, 0xf5db0ea7, 0xbe1227ff, + 0x2700c4a1, 0xd73ea740, 0x341dffff, 0x347d343d, 0xffffcea7, 0x25c49dff, + 0xc52ac49d, 0xcdc53ccd, 0x30eebe40, 0xef27be00, 0x27e1beff, 0x09bcbe00, + 0x4db8be00, 0x4e40be00, 0x44cd9d00, 0x0b81cdbd, 0xd3be0b07, 0x3027000f, + 0xffff4ea7, 0x25439dff, 0x239efb8e, 0xbc9e004c, 0xfd4e004d, 0xffff4ea7, + 0x094499fe, 0x43832027, 0xd433d407, 0xd42b4487, 0xffb4de23, 0xd70ea7ff, + 0x1427ffff, 0x4f4b0479, 0x04194048, 0x24ce4383, 0x87210318, 0x2834f132, + 0x23ff0000, 0x004ea321, 0x34f58000, 0xff000028, 0xf1f02103, 0xe32dbed8, + 0x9d412700, 0xd41904d4, 0x41033027, 0xf39bd41d, 0xff4ea70e, 0x43c5fd4f, + 0x0ef39b38, 0xffff4ea7, 0x0e4399ff, 0x4fbf2ea7, 0x273138fd, 0x53240541, + 0xd6240331, 0x4efd8e32, 0x4b98befe, 0x0f13be00, 0x9efe0e00, 0x4e001844, + 0xbe0027fe, 0x0e005738, 0x0ecc9efe, 0x4c879e00, 0x09fd4e00, 0x76d00704, + 0x93042745, 0x00e63cf1, 0x49500a1e, 0xf1930427, 0x9e00e65f, 0x1100be22, + 0xfe4f5804, 0x27ffffff, 0x74f19304, 0xec1e00e6, 0x4d500429, 0x04270100, + 0xe689f193, 0xbedd1e00, 0xa700e293, 0xffffd70e, 0x03190439, 0x43cc432b, + 0x1101393a, 0x090339d4, 0x33d229de, 0xec83104c, 0xab31030f, 0x3d2833e4, + 0xab138303, 0x791187e2, 0x2c1ef504, 0x27ff0000, 0x83467621, 0x4e070fec, + 0xff804fa3, 0x047dffff, 0x2027031e, 0xf49b4027, 0xff3ea70e, 0x34c5fd4f, + 0x27259638, 0x4df19301, 0x785e00e6, 0x273301ff, 0x0ef49b40, 0xffff4ea7, + 0x0e4499ff, 0x233b2127, 0x3ea724cb, 0x38fd4fbf, 0x05412721, 0xc6215334, + 0x1e340324, 0x4efd8ef3, 0xa5f293fe, 0x3027039d, 0x0ea7e027, 0x27fffe73, + 0x0401221c, 0x00004e83, 0x0344d603, 0xc4191e31, 0x0300004e, 0x16241913, + 0x83242146, 0xffff004e, 0xff004e04, 0x03e103ff, 0x2c03180c, 0x0c32d410, + 0xe5363486, 0x27ccf1f0, 0x27fe8e00, 0x4efe8e01, 0x100499fb, 0x4153d127, + 0x073803c1, 0x3bc207b1, 0x6bd3abd4, 0x27cf6bbf, 0x112c2710, 0x413b4127, + 0x11034d8b, 0x04994d86, 0x33e40768, 0x2cef03e4, 0xc00003cd, 0xb915ff4c, + 0xb90184e3, 0x2b0185e4, 0xbd4c2b3b, 0xbd0185e4, 0x990184e3, 0xe4076904, + 0xef03e433, 0x0003cd2c, 0x15ff4cc0, 0x0184e3b9, 0x0185e4b9, 0x4c2b3b2b, + 0x0185e4bd, 0x0184e3bd, 0xf2f00203, 0x4efb8ea8, 0x081499fe, 0x41d8e107, + 0x7003993d, 0x0fff3cc0, 0x300b3433, 0x018534b9, 0x34bd4123, 0xe2990185, + 0x33120707, 0x70029d14, 0x14b9100b, 0x32070185, 0x41033533, 0x14bd2333, + 0x322b0185, 0x019433f1, 0x03c5ff00, 0x70039974, 0xc109e39d, 0x26067402, + 0x300b3433, 0x018534b9, 0x34bd4103, 0x02070185, 0xfb4efe8e, 0xb007d107, + 0xffdf0ea7, 0xbda8beff, 0x34d3c100, 0x3c830127, 0xf933330f, 0x00007c34, + 0xa31d07ff, 0x7c34fd44, 0x99ff0000, 0xd3c110d4, 0x3b415338, 0x681c0304, + 0xc02703ab, 0x2711ec27, 0x8b4c3b41, 0x46c10340, 0x0714194c, 0x0b243324, + 0xff4cc02b, 0x8523b915, 0x8424b901, 0x03310301, 0x8424bd41, 0x8523bd01, + 0x07143901, 0x0b243324, 0xff4cc02b, 0x8523b915, 0x8424b901, 0x03310301, + 0x8424bd41, 0x8523bd01, 0xf0120301, 0xd499b2fe, 0xff4cc007, 0x33340731, + 0x2b433335, 0x8c34f134, 0xe3ff0001, 0x0300004e, 0x00004ea3, 0x8c34f502, + 0xc1ff0001, 0xdd9944d4, 0x9434f534, 0xfdff0001, 0x00018c3d, 0xdf0ea7ff, + 0xfb0effff, 0x00bcc69e, 0x4007f94e, 0x070f4c83, 0x33248734, 0x07322b35, + 0x2bd333d3, 0x54df03d3, 0x070003d1, 0x07dc99a4, 0x9007a333, 0x0ea7ba07, + 0x23ffffdf, 0xffff84be, 0x00bcb5be, 0x1cffccc0, 0x3c074c07, 0x35334333, + 0x34f1342b, 0xff00018c, 0x00004ea3, 0x8c34f503, 0xf9ff0001, 0x00007ca4, + 0x0a44d8ff, 0x11270d07, 0xf47e2127, 0xffccc0fd, 0x074c073e, 0x3343333c, + 0xf1342b35, 0x00019434, 0x0749a6ff, 0x50d3c14c, 0x4f034433, 0x0003cd2c, + 0x018843d5, 0xbd58d399, 0x99018643, 0x43bd5ad3, 0xaaf9018c, 0xff000080, + 0x01874abd, 0xb499281e, 0xc1488604, 0xd19950d0, 0xbe21275a, 0xc1002c29, + 0xb29950d0, 0x58d19904, 0x21230403, 0x002c18be, 0xb49d4027, 0x05b29904, + 0x9954d0c1, 0x06be59d1, 0x2027002c, 0x9905b29d, 0x3cc009d3, 0x343313ff, + 0xcd2c3f03, 0x34b90003, 0x41230185, 0x018534bd, 0xb21db459, 0xb45d4123, + 0xffffcea7, 0x00c4b9ff, 0x23910301, 0x00c4bd41, 0xacd4c101, 0x19fcc9c5, + 0x11f19343, 0x12d10399, 0x41270420, 0x42cb433b, 0x14d53027, 0xd3c50420, + 0xdf0ea7ac, 0x8cbeffff, 0xc19900bb, 0xcd0ea70e, 0xf90efff9, 0x00bf249e, + 0xd007fd4e, 0x330fdc83, 0xdf0ea7d3, 0x8fbeffff, 0xd4f900bb, 0xff00007c, + 0xa3104c3c, 0xd4fd104c, 0xff00007c, 0xffdf0ea7, 0xbb51beff, 0xff4ea700, + 0x4199ffff, 0xcd0ea70e, 0xfd0efff9, 0x00bee49e, 0xf323f74e, 0x20273f07, + 0x050c4c27, 0xc8340332, 0x15fd93f4, 0x0ea7039a, 0x07ffffdf, 0xbb40be7d, + 0x6fbea700, 0x9027fffe, 0x7c238027, 0x23ab0740, 0xd8a401a4, 0x0300004e, + 0x06d41923, 0x09d39948, 0x09ff3cc0, 0x340b4f07, 0x341d4127, 0xc00ad399, + 0x0709ff3c, 0x27310b1f, 0x01341d41, 0x004e83a4, 0x4ee40300, 0x89030000, + 0x76dc3900, 0xe6b411c9, 0xe6d47948, 0x99d01147, 0x212708d1, 0x002ad8be, + 0xd279d011, 0x0403d159, 0xcabe2123, 0x4027002a, 0xbc15d47d, 0xdc199127, + 0x40a7c9d6, 0x9d0bd399, 0xd49d0ad4, 0x2135a609, 0x2b58beb0, 0x9d402700, + 0xd4990bd4, 0x0145a60c, 0x2b48beb0, 0x9d402700, 0xbc050cd4, 0xd209bc25, + 0xa4012916, 0x4ee33707, 0x05030000, 0x0eb28da4, 0xf2934027, 0x8d03994c, + 0x272b0cb4, 0x842e3419, 0x341d40a7, 0xf2983103, 0xdc038103, 0x18bc0310, + 0x32228ce4, 0x07d027ff, 0x194d0b4f, 0x07469644, 0x0929be0d, 0x2709ab00, + 0x27048640, 0x6b940741, 0xc4d1039f, 0xa7e130dc, 0xffffdf0e, 0x00ba16be, + 0x4ea79666, 0x99ffffff, 0x0ea70e41, 0xbefff9cd, 0x0300bda9, 0x4ef78ef3, + 0x050499f8, 0x4fe6c007, 0x089900bf, 0x33380707, 0x2c3f0334, 0xb90003cd, + 0xe4018d34, 0x00a9ff4c, 0x018e3ab9, 0xa0fface4, 0xfe967e00, 0x8922cb89, + 0xc49924cd, 0x0fbc0306, 0x730fdc03, 0xc6d473b4, 0x53d10344, 0x070b07d1, + 0x075fbe1d, 0xc0900700, 0x992dff0c, 0x4ba606c4, 0xd804c499, 0x75be0b41, + 0xca070006, 0x361ed027, 0x072944dc, 0xbe1d070b, 0x07000739, 0xff0cc4c0, + 0xbe09070b, 0x27000877, 0x07471e40, 0x064ebe09, 0x07d00700, 0x0646be0c, + 0xbe0b1e00, 0x07000640, 0x27ca07d0, 0x07480700, 0x03443338, 0x03cd2c4f, + 0x33353300, 0x8d49bd83, 0xf5382b01, 0x0001983d, 0x8e4cbdff, 0xf5412701, + 0x00019030, 0x27031eff, 0x8e040741, 0xa7fa4ef8, 0xffffff4e, 0xb9fc4cc1, + 0x0b01004b, 0xf9241ebc, 0x00007cd4, 0x224c83ff, 0x270e42c4, 0x7ed4fd41, + 0x07ff0000, 0xfc427e0c, 0xd4fd4027, 0xff00007c, 0xdc07c103, 0x330fdc83, + 0xd4cbcad3, 0x97daf493, 0x03240703, 0x07021f2d, 0x7f2ce334, 0x197f3ce3, + 0x803c0334, 0x93f932c2, 0x03963bfd, 0xc070d399, 0x3319ff3c, 0xb03f0334, + 0x390003ce, 0x3d412334, 0x9d40a734, 0x402770d4, 0x7e74d4c5, 0x0ea7fd74, + 0xbeffffdf, 0xc100b8ca, 0x4ea744dc, 0x27ffffff, 0x2043d530, 0x0043bd0e, + 0x302d2701, 0xfc4cc503, 0x06244cd5, 0xfe730ea7, 0xbe1027ff, 0x0700ab3e, + 0x843d033d, 0x27202701, 0x3205884c, 0xf4c83403, 0x975ff493, 0xcdfb9303, + 0x3c270395, 0x1da0a722, 0x074a3d4a, 0x104c03db, 0xb4c1f390, 0x9946a63c, + 0xf0933ab1, 0x270395ec, 0x285bbe21, 0xc5402700, 0x4abe3cb4, 0x0c070007, + 0x001d9abe, 0x0ea74027, 0xc5ffffdf, 0xba9d44bc, 0x74b4c570, 0x1c9efa0e, + 0xfa4e00b8, 0xf093f523, 0xbe00e014, 0x9300b384, 0x00e024f0, 0x00b37bbe, + 0xfe72cea7, 0xeafd93ff, 0xa0270396, 0xb123bc07, 0xeed8be01, 0x4b030000, + 0xd319d059, 0xd419d123, 0xd299d103, 0x09d19908, 0xf115f205, 0xd139b201, + 0x83122c53, 0x19f22521, 0x10ec53c2, 0xc2c1f235, 0x3bf05507, 0x45f06501, + 0x0bc2c1f2, 0xf2751a07, 0xcec12e07, 0x93238303, 0x00e00df0, 0x19befe85, + 0xa10300b3, 0x0310dc03, 0xacc418cc, 0xf0939f22, 0xbe00e02e, 0xa700b304, + 0xffffffce, 0x0100c1b9, 0x93fcc2c1, 0x00e02df0, 0x00b2efbe, 0xe03af093, + 0xb2e6be00, 0xfccbc100, 0x0100cab9, 0x975eab0b, 0x7e24f900, 0x03ff0000, + 0x963407b1, 0x7c24f945, 0xe6ff0000, 0xf900814f, 0x00007f2e, 0x832cf9ff, + 0x99ff0000, 0x22f907d4, 0xff00007c, 0xfc15fe05, 0x2505de99, 0x38dec1fe, + 0xde99fe35, 0x99fe4568, 0xfe5569de, 0x656ade99, 0x6bde99fe, 0xde99fe75, + 0x99fe856c, 0xfe956dde, 0xa56ede99, 0x6fde99fe, 0xde99feb5, 0x30fec570, + 0xc571de99, 0xde9934fe, 0x38fec572, 0xc573de99, 0xde993cfe, 0x40fec574, + 0xc575de99, 0xde9944fe, 0x48fec576, 0xc577de99, 0x45be4cfe, 0x4b0700b2, + 0x070f4c83, 0x33248734, 0x07322b35, 0x2bd333d3, 0x032407d3, 0x03d154df, + 0x07233300, 0xaff0931b, 0xbaea00df, 0xf503ff45, 0xf493fa8e, 0xa7039408, + 0x70439d30, 0x43c53027, 0x844d0374, 0x03240701, 0x07021f2d, 0x7f2ce334, + 0x197f3ce3, 0x803c0334, 0x93f932c2, 0x03956cf4, 0xa7222c27, 0x3d431d30, + 0x104c0343, 0x4ea7f2a0, 0xbdffffff, 0x0b010143, 0x07fc4efe, 0x66fcabd0, + 0xdf0ea7c5, 0x6fbeffff, 0x3ea700b6, 0xc1ffffff, 0x4d22fc34, 0x1e3fdc27, + 0x0033b918, 0x3a4d1b01, 0x1ed02743, 0x0fdc830c, 0xddf9d333, 0xff00007c, + 0x0ea7c566, 0xbeffffdf, 0xeb00b61b, 0x8e0d07fc, 0x63f54efc, 0x074f6bf0, + 0xdf0ea770, 0x9107ffff, 0x6207b307, 0xf5c1f405, 0x34fac130, 0x00b619be, + 0x2c832607, 0x0723330f, 0x6b4027c2, 0x84ce23bf, 0x3327ffff, 0x007e23fd, + 0x2bfdff00, 0xff00007f, 0x008224fd, 0xc603ff00, 0x9899c43d, 0x0c949937, + 0xc6231b07, 0x7d998183, 0xe644d607, 0xfd00ca8f, 0x00007f21, 0xffdce4ff, + 0xecbe00bf, 0x08c6fff6, 0x0ea73027, 0x27fffe73, 0x0201221c, 0x83180c03, + 0x0300002e, 0x31032506, 0x091ef178, 0xdf6bd307, 0x0fffdcc4, 0xffdf0ea7, + 0xb579beff, 0x5e072700, 0x4d070126, 0x43333d07, 0x342b3533, 0x018c34f1, + 0x32f5ff00, 0xff000194, 0x00004ee3, 0x004ea303, 0x34f50100, 0xff00018c, + 0x07047299, 0x3310274d, 0x8d32fd44, 0x03ff0001, 0x03cd2c4f, 0xf520a700, + 0x00019831, 0x8e42bdff, 0x8d42bd01, 0x8c34f101, 0xf5ff0001, 0x00019031, + 0x004ee3ff, 0x34f50400, 0xff00018c, 0xed309489, 0x00019c34, 0x9c34e9ff, + 0x89ff0001, 0x4c033292, 0xed44530f, 0x00019e32, 0xa034edff, 0xb1ff0001, + 0x074d1df4, 0x077d9d4a, 0x4d1d4b0b, 0x42dcc419, 0x07002711, 0x1a65be16, + 0x19084600, 0x1d42a3c4, 0x965401c4, 0x2df49346, 0x40990392, 0x27160726, + 0x24aabe20, 0x01500500, 0xa745f654, 0xffffdf0e, 0x00b4aabe, 0x571e0827, + 0xc49d4127, 0x9d402704, 0x949905c4, 0x0144c60c, 0x464496f4, 0x073d0786, + 0x3333334d, 0xf5432b45, 0x00019445, 0x23c459ff, 0x99c45d41, 0x46b63694, + 0xdc047499, 0xb1c30944, 0xad1dab0b, 0x74990e1e, 0xc3455616, 0xa7ab0bb1, + 0xa7a41d40, 0xffffdf0e, 0x00b452be, 0xf0430027, 0xfa4ef58e, 0x0ea7a007, + 0xbeffffdf, 0xbe00b462, 0xa700213c, 0xfeffff4e, 0x83094499, 0x33348743, + 0xf9432b44, 0x00004d44, 0x0b4403ff, 0x0ea4ca40, 0xffdf0ea7, 0xb415beff, + 0x8e0b2700, 0x832a07fa, 0x42070f2c, 0x43f94333, 0xff00007c, 0xce23c407, + 0xf6ffff84, 0x0700aa3f, 0x87453342, 0x07432b32, 0x2be333e4, 0x54ef03e4, + 0xc10003d1, 0xeac5ace4, 0x1946e634, 0x3df29341, 0x23d10391, 0x41270420, + 0x43cb413b, 0x042024d5, 0x912af493, 0x2443d103, 0x204bd104, 0xab002704, + 0x53051e3b, 0x07010331, 0x16d183d3, 0x874007d3, 0x0b443330, 0x93212734, + 0x03a18ff4, 0x302b4101, 0x4ea7203b, 0x11fd4fff, 0x93343340, 0x0390eff4, + 0x42d52bab, 0x130b0420, 0xc5e410c5, 0x4127ace1, 0xc41d30a7, 0xc37d4027, + 0x3d05cd9d, 0x04cd9dc4, 0xa707e39d, 0xffffff3e, 0x010034b9, 0x3ac544b6, + 0xbd4103fc, 0xa7010034, 0xffffdf0e, 0x00b346be, 0xfa8e0027, 0x8f0ef293, + 0x303c2703, 0x28032419, 0x01274124, 0xf398fe0b, 0xfe0b0027, 0x03330f6b, + 0xcb9800f1, 0xfe0b0003, 0xfe0b0027, 0xfd93fd4e, 0xd1038ee4, 0x86018cd0, + 0xb16bbe09, 0x27402700, 0xd4d5602c, 0x3d07018c, 0x42071027, 0x21233105, + 0xf4b83403, 0x8ebef393, 0xad402703, 0xad019232, 0x8e019034, 0x93fb4efd, + 0x038eabf3, 0x018434d1, 0xb107c007, 0x40ced207, 0x8034d10d, 0xd1412e01, + 0x0e018834, 0x93a63e24, 0x038e8bf4, 0x01884dd5, 0x01844cd5, 0x01804bd5, + 0xfc4efb8e, 0x8e76fc93, 0x8cced103, 0xd1f06301, 0xd10180c1, 0xa90184c2, + 0xa90190c3, 0x930192c4, 0x00dbfaf0, 0xf9befe05, 0xf09300ad, 0xbe00dc3a, + 0x2700adf0, 0x11c219d0, 0x931d07c3, 0x00dc49f0, 0xddbed103, 0xc80300ad, + 0xea30dcc4, 0xdc4bf093, 0x0ef04300, 0xadca9efc, 0x93fb4e00, 0x038e1ffd, + 0x0190d4a9, 0xc107b007, 0xd4a9402e, 0x144e0192, 0xadff237e, 0xad0192dc, + 0x930190db, 0x038dfff3, 0x018c34d1, 0x00ec4ff6, 0x01883dd1, 0x019234a9, + 0x018032d1, 0x019030a9, 0x0711d3d8, 0x030703e4, 0xe307e3e8, 0x001d27e7, + 0x07081e10, 0x27e103e4, 0x4207801c, 0x2cd84283, 0x45060f20, 0x02902d27, + 0x2d27131e, 0x0d1e01e0, 0x2d274506, 0x051e0200, 0x01802d27, 0x070dd1d8, + 0x7f4c8342, 0x2c0344e6, 0x07242b80, 0x333e9b30, 0x07112334, 0x03418b43, + 0x0b44c611, 0x07342b31, 0x07109b12, 0x0301472e, 0x53400721, 0x7f4c8321, + 0x44e62123, 0x2b800c03, 0x1b424704, 0x07419b4e, 0x7f1c8314, 0x4c0314e6, + 0x07412b80, 0x0bd29bd0, 0x51fc93d3, 0xd40b038d, 0xc4d10d07, 0x0c030184, + 0x07049b20, 0xbe212710, 0x0700b15f, 0x07e0271c, 0x8cc0d5bc, 0x03181e01, + 0xe63007e1, 0x203c0324, 0x4227322b, 0x141d0307, 0x0d0b1315, 0xb4d11803, + 0x20070184, 0xca1f2c83, 0xf493dee4, 0xd1038d08, 0x27018443, 0x1e310300, + 0x9424f918, 0xc40003cb, 0x41270d42, 0x24fd0f6b, 0x0003cb94, 0x0103fb8e, + 0x23332007, 0x0c27f310, 0x6bfb8eff, 0x0303330f, 0x03cb940f, 0x20041900, + 0x0b002741, 0x1d4227fe, 0x0b012704, 0x27fd4efe, 0x030d07d0, 0xc4dd3ed1, + 0x8ef730dc, 0xadf393fd, 0x34d1038c, 0x404e0184, 0x018034d1, 0x140e0027, + 0x0f6b0127, 0xf293fe0b, 0xc1038e2c, 0x3ea74420, 0xd5ffffff, 0xd1062830, + 0x27062834, 0x2c34d510, 0xbd40a706, 0x27010934, 0x0a34ad40, 0x06219d01, + 0x0b7430d5, 0x0b08219d, 0xf9f393fe, 0x3299038d, 0xe3102704, 0xd5402722, + 0x9d03f434, 0x329d0631, 0x08319d04, 0xfe4efe0b, 0x0fd60f6b, 0xff3ea76f, + 0x30d5ffff, 0x30d50628, 0x4ea7062c, 0x1dfff9cf, 0x27403d40, 0x0231ad10, + 0x0f4c2701, 0x010834bd, 0x34bd40a7, 0xf2930109, 0xad038dac, 0x27010a31, + 0x08249d40, 0x2706209d, 0x30d520ec, 0x30d50b74, 0x30bd0620, 0x20270e80, + 0xfef33ea7, 0x054e07ff, 0x03e12332, 0xa7f4b834, 0x7b3ea740, 0x3405fffe, + 0x8d72f493, 0xf44ed503, 0xa7fe8e03, 0xffffff3e, 0x24253499, 0xad402742, + 0x8e010a34, 0xa7f54efe, 0xffffff3e, 0xe6273499, 0x9301264f, 0x038d47f4, + 0xf6084499, 0xd1011a4f, 0xd1062830, 0xa9062c39, 0x2b01023e, 0x0434a990, + 0x2b190701, 0x1e1103e4, 0x6a43a916, 0x6844a901, 0x2b430b01, 0xcc4f8b4e, + 0x01031d41, 0x40079123, 0x34074183, 0x37332487, 0x340b322b, 0x4e234387, + 0xf0fff9c4, 0x4ea7d4f1, 0x07ffffff, 0x93702784, 0x038ce7f6, 0x4fff5ea7, + 0x2840d5fd, 0x00ac5e06, 0x062c8ad1, 0x4a076b19, 0x070f4c83, 0x07e183ea, + 0x07153314, 0x2b44872e, 0x33ce8714, 0x072c2b27, 0x332e0bd1, 0x87d12bd3, + 0xc4ce23c2, 0xdf03fff9, 0x0003d154, 0x2c073a07, 0xb5461d07, 0xc4ad4027, + 0x641d01e8, 0x0e818abd, 0x00372bbe, 0x8c8ef293, 0x48238903, 0xc3ad5411, + 0x84d5016a, 0x80bd0e78, 0x04cc0e80, 0xc407864f, 0x84d11403, 0x0ea7062c, + 0x03fff9cf, 0x2c84d541, 0xb212be06, 0x1e712700, 0x034a0733, 0x2c84d541, + 0x9b402706, 0xd4890ef4, 0x4823892e, 0xf9cf0ea7, 0x8d430bff, 0xedbe4824, + 0x412700b1, 0x9103641d, 0xf0937127, 0xf0038c30, 0x07ff4f92, 0x27f58e07, + 0x4ef58e00, 0x1df493f5, 0xf0e3038c, 0x44990f6b, 0xe6f02508, 0x5e002744, + 0x3ea70290, 0xb9ffffff, 0x36063834, 0x15002745, 0x00b85ef0, 0xc0274027, + 0xbd28ac27, 0x5e063834, 0xcd070095, 0x47334d07, 0xc40bc533, 0x0a34c0f1, + 0xbc07ff00, 0xfff2f3be, 0x0a34c4f1, 0xbe23ff00, 0x83fff5cc, 0x34070f4c, + 0x44873533, 0x4307342b, 0x432b4333, 0xd20043f1, 0x1b070003, 0x2a074307, + 0x10014403, 0x40051403, 0xf2a84403, 0xc564b1c1, 0xb4c1b431, 0xb834c568, + 0xc56cb0c1, 0xb1c1bc30, 0xdc31c570, 0x8352b489, 0x34c50f4c, 0x54b4c1c4, + 0xc1d434c5, 0x3bc55cbb, 0xfd4027d8, 0x000a28d4, 0xdb4ea7ff, 0x4479fff5, + 0x0ea74566, 0xbefff5d9, 0x2700b10c, 0xdb0ea7c1, 0xa6befff5, 0xd0070123, + 0xffff0fe4, 0xff5cffff, 0x4ea7fc15, 0xd1ffffff, 0x930b7448, 0x038b37f5, + 0xa092f693, 0x81f79302, 0x080702a0, 0x016741be, 0x4c834007, 0x184ce418, + 0xc0070160, 0xf620cc83, 0x070157cf, 0x0f4c8348, 0x35333407, 0x342b4487, + 0x93339307, 0x9f03932b, 0x0003d154, 0x99119499, 0x9dc10493, 0xab4733ac, + 0xa4d39d34, 0xd14094c1, 0x2b03f453, 0xc5433343, 0x90c1c8d4, 0xf450d540, + 0x12d3be03, 0x0b949900, 0xc5ccd0c5, 0x4566d0dc, 0x4ea3d461, 0x65010000, + 0xb99499d4, 0xd4614546, 0x20004da3, 0xd489d465, 0xc442e490, 0x04949900, + 0x271d44d8, 0x28649d41, 0xf6169499, 0x98d1c148, 0xd4c17105, 0xc174159c, + 0x7025a0d0, 0x3800a25e, 0x1e412748, 0x9d402703, 0x40272864, 0x74057425, + 0x4d077415, 0x4c033607, 0x01282778, 0x05440341, 0xa8340331, 0x0c1c27f2, + 0x891a618d, 0x9c891a94, 0x5345531c, 0x24648dc5, 0x11266c8d, 0xc1c49b73, + 0xac079cd0, 0xa153030b, 0x0a0b1c07, 0x00cef9be, 0xd4c17321, 0x0bb007a0, + 0x07040743, 0xbe0a0b1c, 0xc100cee6, 0x730198d4, 0x430b2007, 0xbd830407, + 0x2c3303ff, 0x0b1c0716, 0x0cbc330a, 0xc7beb2ab, 0x4d2700ce, 0x1c270bbc, + 0x2df40d2c, 0x834007f1, 0x010fff4d, 0x07b4abf0, 0xbe6b8516, 0x070025a8, + 0x44e0be09, 0x5d549900, 0x0d074144, 0xbea40c03, 0x990021e2, 0x44e60b94, + 0x549d4227, 0xbe080704, 0x03ffef98, 0xfe945e81, 0xffff3ea7, 0x7434d1ff, + 0x1e48ce0b, 0x0b7438d5, 0xf49b4027, 0x0e33990e, 0x4fbf2ea7, 0x273138fd, + 0x53240541, 0xd6240331, 0x66f42132, 0xfc377e46, 0x4027f111, 0x048601ab, + 0x4f6b4127, 0xf011f415, 0xf58ef0c3, 0x0e89fc4e, 0x26048928, 0xdf83d107, + 0x0fffffff, 0xc307e49b, 0x2709deca, 0x05240540, 0x050f1e34, 0x07140724, + 0xce0ebe0d, 0x07c00500, 0x8e0e07ed, 0x93fb4efc, 0x038943fd, 0x1070d4d1, + 0xb107c007, 0x0c2745b6, 0x1c1dbe80, 0x70d0d500, 0x70d0d110, 0x073c0710, + 0x801c274b, 0xd5c2f293, 0xa0cdbe00, 0x70d0d100, 0x9efb0e10, 0x9e001fad, + 0x4e001fa9, 0x05fd93fd, 0xd3c10389, 0x78d4c144, 0xd499432e, 0xbe46267c, + 0x27001f46, 0x7cd49d40, 0xc544d4c1, 0xfd8e78d4, 0x00374f9e, 0xd007fd4e, + 0x2c271007, 0x79f0934c, 0xd7be038c, 0x0806009d, 0xf3930d07, 0x27038c6c, + 0x0201134c, 0x32050403, 0xf4a83403, 0xf4933127, 0x9d0388b4, 0xfd8e0a43, + 0x5d9e04c6, 0x010700aa, 0x1e272027, 0x9e019000, 0x4e00ab27, 0xf4d3befe, + 0x2704d6ff, 0x53fe8e01, 0x8e018305, 0x93fe4efe, 0x0389c7f4, 0x2c032407, + 0xe334073f, 0x3ce37f2c, 0x0334197f, 0x32c2803c, 0x101c27f9, 0x89aaf393, + 0x0720a703, 0x23320541, 0xb8340311, 0x55f493f4, 0x20270388, 0x439d30a7, + 0x8041c566, 0x429d423d, 0x0c419d0b, 0x421d425d, 0x04284d03, 0x1e7f4ce3, + 0x0cf49b07, 0xd0804c03, 0x03dd944f, 0x4027f400, 0x930ef49b, 0x038c47f0, + 0x0c401d27, 0x0031b1be, 0x8916f493, 0x03240703, 0x34073f2c, 0xe37f2ce3, + 0x34197f3c, 0xc2803c03, 0xf393f932, 0x27038900, 0x0d402728, 0xb8380334, + 0xc43c23f2, 0x2c032307, 0x7f2ce37f, 0x197f3ce3, 0x803c0334, 0x93f932c2, + 0x038857f3, 0x4c272027, 0x03320520, 0xa7f4c834, 0xfffb430e, 0x6abe1827, + 0x0ea700ae, 0x27fffaf3, 0xae5fbe14, 0xa30ea700, 0x1027fffa, 0x0e802c27, + 0x9cf89efe, 0xc1f54e00, 0xf1a33414, 0xdfff3ea7, 0x27f445fd, 0x2000004e, + 0x020834d5, 0x34d54027, 0x4ea70208, 0x11fd4fff, 0xac14c143, 0x43c5f055, + 0x71f493ac, 0x44990387, 0xe0b10754, 0x0128204c, 0x50073027, 0x165ef335, + 0x34bdc101, 0x8926b889, 0x52a928b4, 0x849b0108, 0x071cdc33, 0x0459d132, + 0x038d0b01, 0x03051e31, 0xf0212398, 0x0c1e03f3, 0x4dcb9401, 0x00004fd4, + 0x07ed1000, 0x03a90762, 0x07a82361, 0xf0a8037d, 0x402709f6, 0xf425c807, + 0xac01271e, 0x4707a311, 0x4ccbf325, 0x00004f30, 0xc8071000, 0xf321131e, + 0x8334b4c1, 0xffffff3f, 0x1c4c330f, 0xf32534ab, 0x4d2b4c07, 0x40cc4fa6, + 0x073f0741, 0x071d070b, 0x7e34032f, 0x8dc2fd60, 0x4cb4c11a, 0x040b0087, + 0x46160401, 0xf311f401, 0x3487432b, 0x31a3f405, 0x3f070305, 0x1c070b07, + 0x34032f07, 0x11fd377e, 0x2bdc07f4, 0x077d02d4, 0x072d07d7, 0x83f1313c, + 0xffffff2f, 0x830b070f, 0xffffff3f, 0x4729be0f, 0x218c4e00, 0x5e7c07fd, + 0x3a07ff65, 0x3373392b, 0x54a939a6, 0x26070108, 0x2103432b, 0x010854ad, + 0xa4111a1e, 0x9415a301, 0xa8039305, 0x0a104cd4, 0x4333f351, 0x49c5430b, + 0x20980388, 0x03f331f2, 0x35310358, 0x0db499f3, 0x34f2f331, 0xfd41fee5, + 0xffdf0ea7, 0x0fdc83ff, 0xebbed333, 0xd3f900a8, 0xff00007c, 0x07b9b499, + 0x2428a323, 0xa3230741, 0xd4f9482c, 0xff00007e, 0x007cd2fd, 0x4123ff00, + 0x007ed4fd, 0x0ea7ff00, 0xbeffffdf, 0xc100a897, 0x4ebe34b0, 0x4ea7010d, + 0x01fd4fff, 0x9b402743, 0x4ea70ef4, 0x99ffffff, 0x21270e44, 0x24cb233b, + 0x4fbf3ea7, 0x272138fd, 0x53340541, 0xd6340321, 0x12b49922, 0xb4c144e6, + 0xbe410430, 0x83fff869, 0x4ef58ef1, 0xb5fb93fa, 0xb1190385, 0x00e81fe6, + 0x2744bdc1, 0xa7202740, 0x0cb49d30, 0x654ab38d, 0x0bb49db2, 0x834cb2c5, + 0x00000fdf, 0x23d04c80, 0xf0dfa3d1, 0x03ffffff, 0x6b11c4d1, 0x3d874d07, + 0x432b4533, 0x33333407, 0xa307342b, 0xd154af03, 0xc3070003, 0x1a070b07, + 0x002fa0be, 0xcd2ccf03, 0x51be0003, 0x55be00aa, 0x44be00a8, 0xc4b900a8, + 0x45360434, 0x0b071a07, 0xb9fda47e, 0xc0042fc3, 0xb924ff3c, 0xe6042dc4, + 0x66b39d47, 0x042cc3b9, 0xb39d1127, 0x3ec4b967, 0x27449604, 0x33410710, + 0x9d43ab46, 0x4d0767b4, 0x45333d87, 0x3407432b, 0x342b3333, 0xcd2c3f03, + 0x34b90003, 0x32b9043e, 0x1127042c, 0x10274496, 0x46334107, 0xf29342ab, + 0x9d0384ec, 0x34b95a24, 0x10270438, 0xb95b249d, 0x86042d34, 0xc1112744, + 0x40274423, 0x241d3103, 0xc55c219d, 0xfa8e4423, 0xf393fe4e, 0x190384c0, + 0x27414434, 0x7e341d42, 0x1abefefb, 0xfe0effee, 0x4efc245e, 0xa7d027f8, + 0xfd4fff8e, 0x849efa93, 0x27031e03, 0xf30ea7d1, 0xe6befffa, 0xb007011c, + 0xffff0fe0, 0x00d8ffff, 0x14331007, 0x051c1df9, 0x13f1ff00, 0xff000520, + 0x43334d07, 0xcd2c4f03, 0x40c10003, 0x003f0388, 0x15800000, 0x8449c103, + 0x4907e107, 0x070f4c83, 0x87353334, 0x07342b44, 0x2bc333c3, 0x54cf03c3, + 0xc10003d1, 0xee23acc2, 0xc1fffae4, 0x13f1a824, 0xff000524, 0x431b44c6, + 0x23c5404c, 0x1e14f9a8, 0xc5ff0005, 0x0401c024, 0xfff04d5c, 0x00004f3c, + 0x84110fff, 0x79e024c5, 0x994686e4, 0x45f6b9c4, 0xc49d4127, 0xc3f093b9, + 0xf07e00d0, 0x80a3c1fa, 0x4d3b4127, 0xa3c534eb, 0x0ccd9980, 0xcd9dd123, + 0x23a4590c, 0x27a45d41, 0x10b4fd40, 0xa7ff0005, 0xfffaf34e, 0x45664479, + 0xfaf10ea7, 0xa976beff, 0x28dff600, 0x44a4c1ff, 0xff2149ee, 0x0a071c07, + 0x5efc147e, 0x0d07ff17, 0xf74ef88e, 0x4207d207, 0xb1078007, 0x38272027, + 0x44034205, 0xb489f3c8, 0x0d312712, 0x14b189d4, 0xb499d12d, 0x9d343b34, + 0x84991ed3, 0x32b98904, 0x910344c6, 0x84999153, 0x04302747, 0xc1312742, + 0x3f6b4484, 0xff004e58, 0x03a307ff, 0x1e8021ad, 0x86a1270b, 0x13a02734, + 0x898002ad, 0xe90730b3, 0x030fec03, 0x34530f3c, 0x7a07e453, 0xe8033703, + 0x7c834a07, 0xe337e320, 0xc64283e7, 0x27456676, 0x2702902d, 0x181e104c, + 0x01e02d27, 0x1e604c27, 0x2745060f, 0x1e02002d, 0x802d270c, 0x03061e01, + 0x242b802c, 0x14331307, 0x41071e9b, 0x0fff4d83, 0x1d034506, 0x142b1000, + 0xc39bc207, 0x0e072c47, 0x01534207, 0x237f4c83, 0x0344e601, 0x242b802c, + 0x3e074047, 0x3c9b342b, 0x4c834307, 0x0344e67f, 0x342b803c, 0x9b30b489, + 0x03210b20, 0x44530f4c, 0xd215230b, 0x990cd48d, 0x4ff60484, 0xb38900a5, + 0x03e90730, 0x733103e1, 0x03e15331, 0xec030f3c, 0x5334530f, 0x033703e4, + 0xe34a07e8, 0x83e7e337, 0x6676c642, 0x902d2745, 0x104c2702, 0x2d27181e, + 0x4c2701e0, 0x060f1e60, 0x002d2745, 0x270c1e02, 0x1e01802d, 0x802c0306, + 0x1307242b, 0x1e9b1433, 0x4d834107, 0x45060fff, 0x10001d03, 0xc207142b, + 0x2c47c39b, 0x42070e07, 0x4c830153, 0xe601237f, 0x802c0344, 0x4047242b, + 0x342b3e07, 0x43073c9b, 0xe67f4c83, 0x803c0344, 0xb489342b, 0x03209b30, + 0x0b417341, 0x0f4c0321, 0x4453230b, 0xd48dd225, 0x2484890e, 0x9910d48d, + 0x84890683, 0x8d430b26, 0xb18912d4, 0x30b08932, 0x003348be, 0xffff2ea7, + 0xae23a9ff, 0x46d0550e, 0xb024a937, 0x0946860e, 0x8d340ad4, 0x24a918d4, + 0xd3290eb0, 0xd38d430a, 0x4ef78e1a, 0xc5fb93f5, 0xb3c10381, 0xff4ea744, + 0x13a5ffff, 0xe3264499, 0x079107f0, 0x20820770, 0x145c2742, 0x9908695e, + 0x450608b4, 0x5e115c27, 0xb0c1085e, 0xefe4be44, 0xf65007ff, 0xc108510f, + 0x4c8344b4, 0x3334070f, 0x2b448735, 0x33d30734, 0x03d32bd3, 0x03d154df, + 0xacd6c100, 0x011c60d5, 0x2054b499, 0x0d07204c, 0x005ee0be, 0xe60ab499, + 0x9903a44f, 0x4ce00a94, 0xb9039c10, 0xb903a5b4, 0x9303e9b2, 0x0296f3fa, + 0x03eab1b9, 0xa515a505, 0x03a6b3b9, 0x28034103, 0x03ebb0b9, 0xa49d1803, + 0xb9a25d04, 0xb903a8b4, 0x0303ecb2, 0x07a17d31, 0x9da41d1b, 0xa03d05a3, + 0x0306a29d, 0x2704181d, 0xbe0a0728, 0x0700960e, 0x109189c0, 0xbe0e9089, + 0x27fff078, 0x27c49641, 0xa940ab40, 0xc103d0be, 0x21276cb3, 0x20274496, + 0x3e0e1027, 0xb3991127, 0xa4b4b909, 0x2721ab03, 0x27340e10, 0xab420711, + 0x314fe641, 0x44b0c101, 0x287e0123, 0x270516f8, 0x7b5e0f5c, 0xe812be07, + 0xb9a459ff, 0x3003a4b0, 0x1e212749, 0x27a4790b, 0x27491030, 0x93230731, + 0x029647f4, 0x30274439, 0x31274204, 0x1f6b1307, 0xb1072546, 0x8021bd03, + 0xb1270b1e, 0xb0271486, 0x8002bd13, 0xffff4ea7, 0x094499fe, 0x34874383, + 0x432b4433, 0x9612f393, 0x4d4df902, 0x19ff0000, 0x59f49333, 0x41c10380, + 0x27d00b68, 0x27349641, 0x001d8340, 0x89d43b01, 0x93890e92, 0x96c12710, + 0x07c02714, 0x471b070d, 0xf1ebbecc, 0xbe0786ff, 0xbeffe788, 0x06ffef80, + 0x105c2705, 0x0706e15e, 0x071b070d, 0xefcfbe2c, 0x11fd93ff, 0xd4a90380, + 0xfc9303d0, 0xc50295b4, 0xc4016cd4, 0xd4d5c011, 0xd4b90418, 0x302703a4, + 0xd49d20a7, 0x5cd39d09, 0xd566d29d, 0x9d041cd0, 0xd29d5ad3, 0x2690995b, + 0x01830353, 0x003a0fbe, 0x011c64d1, 0x06074586, 0x011c0d03, 0x0038afbe, + 0x0d072d07, 0x2d031907, 0x0d0303f8, 0x0b7e03a4, 0x030d07fc, 0xbe03f80d, + 0x07001523, 0x157abe0c, 0x27412700, 0xd49d115c, 0x065c5e08, 0xb0b94027, + 0xb49d03a5, 0xa6b4b90a, 0x35b09d03, 0xb936b49d, 0xb903aab0, 0x9d03abb4, + 0xb49d37b0, 0xacb0b938, 0xe0b4d103, 0xccb1a903, 0xadb3b903, 0x9d2e0703, + 0xb4c539b0, 0xc6219b40, 0x07410736, 0x33483331, 0x47432b34, 0x0bc20bc4, + 0x1eb44542, 0x03c20708, 0xbc4538cc, 0x7f3ef493, 0xe04ed103, 0xdc40d103, + 0xd241a903, 0xcc42a903, 0xd443d103, 0x9be00b03, 0x03338721, 0x0b07f8ed, + 0xd841a9e3, 0x53320703, 0x0b320b31, 0x0c2c27e1, 0x031e4355, 0x41272103, + 0x4cca423b, 0xfdf493f8, 0x4151037e, 0x0724429d, 0x07130223, 0x0c3c2721, + 0x3103031e, 0x433b4127, 0x93f842ca, 0x037edff4, 0x9d0c2c27, 0x031e2543, + 0x41272103, 0x4eca423b, 0xc9f193f8, 0x1499037e, 0x26129d24, 0x270c4c14, + 0x10990c4c, 0x24149d25, 0x270c0c14, 0x13a90c0c, 0x12a903b8, 0x14b903ba, + 0x239b03eb, 0x03ff2d03, 0x2a534223, 0x6b25109d, 0x3432474f, 0x1e230742, + 0x53230b05, 0x85fb9321, 0xb4b9037e, 0xb3b903b3, 0x453603e9, 0xbd104c27, + 0x0703b3b4, 0x53470342, 0x99439b43, 0xb3b924b0, 0x420b03b3, 0x439b2127, + 0xe207203b, 0x4a334553, 0xb1993227, 0x0be12325, 0x3b4307e4, 0x13303b41, + 0x8b430b20, 0x074e02e2, 0x271e07e4, 0x0670be00, 0xdab3a900, 0xff4ea703, + 0xbca9d07f, 0x428103cc, 0xb38d4027, 0x34b49d28, 0x2c2ac39b, 0xb49d4127, + 0x30b4c134, 0xb10dc4c2, 0x7e1c07b0, 0xb0b5f55c, 0xa730bcc5, 0xfd4fff4e, + 0x3c7444c1, 0x1000004e, 0x031e3027, 0x43473127, 0x41c043ab, 0xc0415010, + 0x43c00b42, 0x27101e0d, 0x0d1e403c, 0x1e903c27, 0x503c2708, 0xff1e031e, + 0x7dcaf493, 0x6c43ad03, 0xc1f49310, 0x40b9037d, 0x409d03a7, 0xb5fc9307, + 0x40a7037d, 0xc48d3027, 0x4cc3c54a, 0xd8269499, 0x40270e41, 0xa75ac49d, + 0x5bc49d40, 0x995cc39d, 0x4cc00a94, 0x0c074110, 0x03a40d03, 0xf2931907, + 0x7e029310, 0x1c07f9d6, 0x9306f093, 0xf81d0302, 0x202c2703, 0x009275be, + 0x412707c6, 0xd49d0c07, 0xf80d03bb, 0xe9f39303, 0x48270292, 0x34033201, + 0x04030205, 0x4607f4a8, 0x93fc4c03, 0x03813ff2, 0x38271827, 0x11232001, + 0x24034005, 0xf3984403, 0x7d32f093, 0x1802d103, 0xf462c504, 0x041c03d1, + 0x89f863c5, 0x048d2ad4, 0x7d72590e, 0x12938902, 0x891ad38d, 0xd48d1494, + 0x1692891c, 0x891ed28d, 0xd38d1893, 0x30948920, 0x8922d48d, 0xd28d3292, + 0x35039924, 0x990fd39d, 0x30273694, 0x31274496, 0x9906d39d, 0xd19d3704, + 0xb8d49d0c, 0xd49d4027, 0xc592810b, 0x93915cd2, 0xa160d3c5, 0x64d4c594, + 0x9d0a9299, 0x939904d2, 0x05d39d0c, 0xd4c594b1, 0xc592b13c, 0x939938d2, + 0x0a94990b, 0x41833347, 0x4307340b, 0xd49d4f6b, 0x5a019910, 0x51401cdc, + 0xd804d299, 0x03994b24, 0xce41c35b, 0x41072043, 0x458342cb, 0x991741c4, + 0xd4995c03, 0x0e202705, 0x07212734, 0x0741c342, 0x1e3f6b34, 0x93302703, + 0x037c63f4, 0x6b5c4499, 0xd646663f, 0x1e402734, 0x62d49908, 0x41c34183, + 0x3f6b3407, 0x031e4307, 0xd49d4027, 0x9d402716, 0x7399b9d4, 0x13d39d1d, + 0x00401bbe, 0x7c2ef493, 0x6c44a903, 0x04d39910, 0xc5b0d0c5, 0xd48db4d1, + 0x203c3cbc, 0x121eb027, 0x7b514307, 0x9ddf4c83, 0x422704d4, 0x03b9d49d, + 0x01f493b1, 0x4e99037c, 0xffecc066, 0x04d4997e, 0x77104cc0, 0x2738d0c1, + 0x1e300720, 0xf9313810, 0x03ce7024, 0x0d4ece00, 0x2103315b, 0x11831207, + 0x051e31b6, 0x35ff2cc4, 0x270b9499, 0xab243b21, 0xff2ed420, 0x273501ff, + 0x111c2730, 0x433b4127, 0x4506428b, 0xf1983103, 0xf493221e, 0x99037ba8, + 0x23476744, 0x240b4183, 0x13ff2cc0, 0x31533207, 0x433b4127, 0xd4c540ab, + 0x27131e38, 0x30a7ff2c, 0x7b82f493, 0x66439d03, 0x2c27041e, 0xbad29dff, + 0xa7379099, 0x08d09d40, 0x9909d49d, 0xd29d3892, 0x24745911, 0x1e402742, + 0x59f49316, 0x4499037b, 0x04302754, 0x3127204c, 0x41c34307, 0xd49d4f6b, + 0x41fc9312, 0xc389037b, 0x8dc2b128, 0x94892cd3, 0xa8d2c510, 0x892a748d, + 0x40270e90, 0x9928708d, 0x102704d3, 0x1518739d, 0x04d49994, 0x53329389, + 0x5b418342, 0x1f3c0334, 0x4c834307, 0xb8d2991f, 0x02204c13, 0x0b112724, + 0x27422732, 0x14d49da1, 0x0717d19d, 0x15da9d43, 0xc3994553, 0x2ed48d0b, + 0x00993ff6, 0x9944c2c1, 0xd2c510d3, 0x07c49934, 0x44861027, 0xd7031127, + 0xcc03fd05, 0x15d72318, 0x034107fc, 0x07012ccd, 0x2519070d, 0xe73bbefc, + 0x44cd23ff, 0x0704e601, 0x016c5e50, 0xca9dc461, 0x44d4c50b, 0x0768dc03, + 0x07d0033d, 0x7f3ce32d, 0x237f2ce3, 0x341968dc, 0xc2803c03, 0x0d07f932, + 0x93680c03, 0x037bc3f1, 0xbe402c27, 0x06010052, 0x07b123b7, 0x9d4f6b4b, + 0x4d0bbad4, 0x93684499, 0x037a63f3, 0x9966349d, 0x3cc0bad3, 0xf4930eff, + 0x99037a54, 0x3d0b6644, 0x8968349d, 0xfa931090, 0x8d037a44, 0x928928d0, + 0x44dbc10e, 0x7926d28d, 0x9d0b0773, 0x74990dd3, 0x9d190704, 0x92890ed4, + 0x1094890e, 0x0140a3c1, 0x0b429b9c, 0x074487c3, 0xbec40b28, 0x0100ffea, + 0x0b4b0798, 0xc58b0b4c, 0xd8c550d4, 0x24a0994c, 0x03fccd03, 0x9958d09d, + 0x3b0726a2, 0x615ad29d, 0x0b7485a0, 0xc540053c, 0xa29954d3, 0xfccd0325, + 0x59d29d03, 0x9548dcc5, 0x5ad09973, 0x03dca4d1, 0x890e9189, 0x31271092, + 0x303b4c0b, 0xb40b342b, 0x2287219b, 0x10270807, 0xa385ab75, 0x008f05be, + 0xfc9bc027, 0x0ca4990e, 0x0a0745f6, 0xa3be1d07, 0x4127ffde, 0xc10ca49d, + 0xd4c134d3, 0xb5735544, 0x3078c574, 0x9d089999, 0xa0991979, 0x1b709d24, + 0x9d25a299, 0xa3411c72, 0x2534a099, 0x9da45173, 0x743518d0, 0xe304a499, + 0x04a49d42, 0xa41d4127, 0xbe30dcc5, 0xbeffec01, 0xa7009e3a, 0xfd4fff4e, + 0x6cc54411, 0xe864c5c0, 0xc5a86cc5, 0x0507b06c, 0xf58ef0c3, 0xf493fd4e, + 0x99037934, 0xf9630444, 0x4158423c, 0xffebd0be, 0x4b1ed027, 0x3c033f07, + 0x2720273c, 0x3205164c, 0xf4c83403, 0x20273f07, 0x050f4c27, 0xc8340332, + 0x3c4c27f4, 0x07583c27, 0x3cf38d0f, 0x3c272407, 0x07040b10, 0x0af39d1f, + 0x207ef405, 0xf6d007f7, 0xf3297e05, 0xf4933127, 0x9d0378dc, 0x0d070443, + 0xfd8ef943, 0x0ea7fc4e, 0xbeffffdf, 0x27009b82, 0xbe2c000d, 0x93000bab, + 0x038947fc, 0x0ea7c005, 0xbeffffdf, 0x27009b47, 0x1d1c2720, 0x42873207, + 0x430b3433, 0xc301422b, 0x430b4433, 0x2103421d, 0xfc93f148, 0x27037890, + 0x9d302740, 0x40a70dc4, 0xc544c3c5, 0xc4c53cc3, 0xeff37e78, 0x270c4c27, + 0x2740000d, 0x9d100720, 0xc49d26c4, 0x25c49d24, 0x009aeebe, 0x38272027, + 0x43334207, 0x04d040f5, 0x2103ff00, 0x08000d03, 0x4ea7f368, 0xc1fd4fff, + 0xf2936843, 0x27037840, 0x103c3310, 0x219d40a7, 0x5b249d5c, 0x535a219d, + 0x35241c3c, 0x10004d27, 0x4d27051e, 0xfc932000, 0xad03781c, 0xad106ac4, + 0x071068c4, 0x5565be0c, 0xc5402700, 0xc49d60c4, 0x0bfc8e5d, 0xa7fe4efe, + 0xfffa1f1e, 0x270c2c27, 0x103c27e0, 0x12031409, 0xe40b423b, 0xf3982103, + 0xfa234ea7, 0x2b40a1ff, 0x27fe8e0e, 0xa7fe0b01, 0xfffa233e, 0x0e3434c1, + 0x3430c504, 0xfb4efe0b, 0xfa23eea7, 0x34e4c1ff, 0x44c6d107, 0x3c1ed407, + 0xffff4ea7, 0x094499fe, 0x8324e299, 0x33348743, 0xf9432b44, 0x00004d41, + 0x032803ff, 0x271d9b12, 0x3b100b41, 0x0be3a142, 0x07310214, 0x10d10713, + 0x0000011f, 0x00df2710, 0xa7100000, 0xfffa23be, 0xd4c2b4a1, 0xdf0ea730, + 0x09beffff, 0x01c3009a, 0xcf6bc007, 0x0ea7c566, 0xbeffffdf, 0x07009a12, + 0xbe1d070b, 0xa600090c, 0xdf0ea7c5, 0xfb0effff, 0x0099da9e, 0xfb4efb8e, + 0x00000e27, 0x0725be02, 0x23bea700, 0x4827fffa, 0x0524b49d, 0x001e27b0, + 0x0b070200, 0x000844be, 0x0724bc99, 0x07c6030b, 0x04b8be1c, 0x3b412700, + 0x8eb4b54c, 0x930230fb, 0x00c3d7f0, 0xf393fe0b, 0x270376fc, 0x5d309d40, + 0x34c50027, 0x30fe0b60, 0xe3f09302, 0xfe0b00c3, 0x8772f393, 0x1d402703, + 0x2704c634, 0x27341d41, 0x93fe0b00, 0x03875ff4, 0xfe0b4019, 0xffff4ea7, + 0x8440d5ff, 0xa708060b, 0xfdafff2e, 0x3ea72441, 0x0bfd9fff, 0x21240540, + 0x104ce334, 0x34113425, 0x1e104ca3, 0xff3ea70b, 0x3411fd9f, 0x27104ce3, + 0x0b341500, 0x8df493fe, 0x40c50376, 0x83075368, 0xff4ea701, 0x409dffff, + 0x0b002745, 0x234007fe, 0x1442d041, 0xc01104c0, 0x0c400e08, 0x200c2010, + 0xc381f093, 0x93fe0b00, 0x03765bf4, 0x8b564499, 0x20459640, 0xf093200c, + 0x0b00c38f, 0x45f493fe, 0x409d0376, 0x0b002754, 0x930230fe, 0x00c3a2f0, + 0xf393fe0b, 0xc4037630, 0x34890d01, 0xa300270e, 0x0e348d42, 0x3489fe0b, + 0xe300270e, 0x0e348d42, 0x0230fe0b, 0xc3abf493, 0x93141e00, 0x038697f3, + 0x40270516, 0x071e3015, 0x341540a7, 0x04074027, 0xf493fe0b, 0x11038680, + 0x93fe0b40, 0x038677f3, 0x34054027, 0x341540a7, 0x341d4127, 0xfe4efe0b, + 0xf0930230, 0x8e00c39a, 0x964127fe, 0x07402704, 0x08d3be04, 0x8e002700, + 0xbefe4efe, 0x27fffde3, 0x01fe8e00, 0x5647c004, 0xc01848d4, 0x45542f44, + 0xe44241c0, 0x1e009d42, 0x2545c02d, 0x009446e4, 0x4cc02e1e, 0x4c54252a, + 0x3748c02b, 0x008449e4, 0x4cc0281e, 0x4cc43239, 0x501e7945, 0x9f1e0011, + 0x6a5e0011, 0x5e0011fe, 0x0011fe7f, 0x11fe9f5e, 0xfed35e00, 0xe65e0011, + 0x1e0011fe, 0x5e00119d, 0x0011ff19, 0xa7ff3d5e, 0xfd4fff4e, 0xd87444c1, + 0x0000004f, 0x03492420, 0xffff4ea7, 0xae43adff, 0x2700690e, 0xb040ad20, + 0xa72c1e0e, 0xfd4fff4e, 0x3c7444c1, 0x0000004f, 0x14f29320, 0x171e00c3, + 0x4ea73027, 0x93ffffff, 0x00c333f2, 0x0eb643bd, 0x779e051e, 0x02070052, + 0xfd4efe0b, 0x0ea7d007, 0xbeffffdf, 0x990097aa, 0xd16108d0, 0x6dbe2027, + 0xd0450007, 0xd3110706, 0x3419d201, 0x420b4487, 0xd4314005, 0x3419d455, + 0x341d4103, 0xffdf0ea7, 0x9759beff, 0x27d44100, 0x27449600, 0x8301c301, + 0x4efd8e01, 0x070451fb, 0x07d207c0, 0x3e2422b1, 0xa70bc6aa, 0xfde7ff4e, + 0x4d154b05, 0x3027c241, 0x4ea74335, 0x05fde7ef, 0xa74d1542, 0xfdefff2e, + 0x031e4335, 0x2411f3e8, 0x4ddc3327, 0x41f6fc6a, 0x0bc451c3, 0x074d2b3d, + 0x2bc45503, 0x8ec3450d, 0x51fa4efb, 0x07b0070e, 0x07d207c3, 0x024307a1, + 0x154e073e, 0x96b451d4, 0x11dc1544, 0x05953ed2, 0x1108a6d0, 0x2b2c07d4, + 0x16d23524, 0x25012725, 0x07fa8ed2, 0x07140b1a, 0xff797e0b, 0x4127d025, + 0x40270496, 0xfa8e0407, 0x14c1f54e, 0x07fca334, 0x581299b4, 0x270fbc83, + 0xc4f0c5d1, 0x3d07b333, 0xc027323b, 0xbe239107, 0xc1ffff84, 0xf8c15011, + 0x08f29dc4, 0x03c4f2c1, 0x65f335b4, 0x07fc55f4, 0x05fb150f, 0x45b423f1, + 0x188c03fc, 0xdb7e2a61, 0x370fe6fe, 0x59949901, 0x3b5493c1, 0xc5fda5d4, + 0xf49d30fc, 0xc10f0724, 0xb5033494, 0x851c0c03, 0x23f375fb, 0xc5fcb5b5, + 0xaf7e34f4, 0x0b0fe6fe, 0x07780701, 0x037a0b3f, 0x2027383c, 0x05204c27, + 0xc8340332, 0x272027f4, 0xc5ffff3d, 0xf3c5bcf2, 0xc0f2c5b8, 0x0100d75e, + 0x2744d674, 0x07071e60, 0x0b685364, 0x03a70768, 0x5e5027a4, 0xf45100ae, + 0x07384c54, 0xfe647e0f, 0x00c00fe6, 0xf451fd41, 0x2338dc03, 0xfd45384c, + 0xdc23f455, 0x0754e638, 0x186c03a6, 0xf4c1ac09, 0x2b4cceb8, 0x4c07c203, + 0xc4874fab, 0xc10b1f07, 0xc538c2c1, 0x26d6bcf2, 0x0f07a111, 0x1201180b, + 0xc6fe6a7e, 0xf0c57d0f, 0x38c0c5bc, 0xa309ac09, 0x0dbcf2c1, 0x31a129d3, + 0x15d12da4, 0x071807d2, 0x0ba3212d, 0x030f0714, 0xfe8f7e28, 0xf3c10ec6, + 0x41a451c4, 0x0b0f0731, 0x07a34118, 0x03140b2d, 0x0c03202c, 0xfe737e1c, + 0xc1269489, 0x93c1c0f1, 0x0b419b4c, 0x0b448745, 0x294d0543, 0xb8fcc5d4, + 0x9489540b, 0x4f54fa26, 0xc0f2c1ff, 0x031c7c03, 0xc0f2c521, 0xc1289489, + 0x34fac0f3, 0x0027ff23, 0x0ea73d1e, 0xbeffffdf, 0xc100954e, 0xb2995090, + 0x58919904, 0x21230403, 0x000534be, 0xc1599199, 0xb2995490, 0x0527be05, + 0x9d402700, 0x412705b4, 0xffdf0ea7, 0x04b49dff, 0x0094fabe, 0xfc830427, + 0xf94ef58e, 0xbc23b007, 0x0b414714, 0x0742094b, 0x99d10730, 0x24c62409, + 0x241e0107, 0x41034107, 0x0107e447, 0x0b1c1c27, 0x101d2beb, 0x11271d4c, + 0xf1f00103, 0x1e302705, 0x03e20953, 0x072266e2, 0x0c4c2340, 0x3301493b, + 0x1047c487, 0x21234b07, 0xc30b410b, 0x3287420d, 0x3c0b2007, 0xa4271223, + 0x1b0b2d2b, 0x3301a93b, 0x0d0a2103, 0xffffdfc4, 0x270bffff, 0x27071e21, + 0x05142d41, 0x270123ce, 0x2be03be1, 0x23e30bca, 0x07f25812, 0x4ef98e03, + 0xc5f6a3f5, 0x029954f0, 0x3b312724, 0x50f2c532, 0x20074f07, 0xc54cf3c5, + 0x2c2358f1, 0x40f4c514, 0xc1103c27, 0x402740f1, 0x14031405, 0x8840f1c5, + 0xc17207f3, 0x10274cf2, 0x3a272123, 0x2748f1c5, 0xf2c50dac, 0x64f3c560, + 0x89187889, 0x82f01a75, 0xf4c100ea, 0xe345ee4c, 0x50f1c100, 0x3a074a07, + 0x230d4c23, 0x413b0c3c, 0xf1c1313b, 0x01048754, 0x23350b12, 0x0bc387a1, + 0x07312702, 0x273a3bb8, 0x03c20b40, 0x079507a1, 0x036027d0, 0x5cf3c5b1, + 0x1e44f4c5, 0x070e0151, 0x5b3e071f, 0x0f3c833a, 0x410b4387, 0x2b264201, + 0x8b5cf4c1, 0x07450642, 0x1e2e0712, 0xc11e0703, 0x420b5cf4, 0xc11b41ce, + 0xc20544f4, 0x33874203, 0x320b2f07, 0x0344f4c5, 0x034027c4, 0x1e340591, + 0x03de0509, 0x05031ed4, 0x0304034e, 0x05fbf061, 0x211e3f07, 0xca60f2c1, + 0x4607a492, 0x41033807, 0x840a362b, 0x31278496, 0x04030401, 0xd403d405, + 0xdd1ef3a8, 0x45463401, 0x4027d405, 0x3405d403, 0x0340f2c1, 0xed32ce34, + 0xce58f3c1, 0x41270aa3, 0x4027950e, 0xc148f4c5, 0x798d44f4, 0x8d481b1a, + 0xf1c11874, 0x23a10364, 0x64f1c511, 0x1ff67203, 0xf0c1ff00, 0x8ef68348, + 0xff3ea7f5, 0x34d1ffff, 0x400b0608, 0x060834d5, 0xfe0bfe0b, 0xffff4ea7, + 0x0042b9ff, 0xfc40c101, 0x40073207, 0x030f4c83, 0x27121e31, 0xfd010340, + 0x00007c14, 0x234007ff, 0x0f4c8321, 0x13331407, 0x1e03f3f0, 0x7e14f909, + 0x06ff0000, 0xff4ea740, 0x42bdffff, 0x40c50100, 0x4efe0bfc, 0x3ec007fc, + 0x0e4127b4, 0x0740270c, 0x4efc8e04, 0x03c007fc, 0xffffffcf, 0x00cf8303, + 0x07fc0000, 0x2720271c, 0xe1be163c, 0x4ea70091, 0x27fffa23, 0x404cc530, + 0xc53c43c5, 0xfc8e3840, 0xd007fa4e, 0x4714dc23, 0x03cd0bc2, 0xdb9914dc, + 0x27ce0924, 0x074b3b41, 0x0b4223ae, 0x32d001a3, 0x8e0127a4, 0x0c2c23fa, + 0xe20b2b3b, 0x040b4e87, 0xd8be2387, 0x41270084, 0xca0d0027, 0x8e31d49d, + 0x99f74efa, 0x41272403, 0xf063433b, 0x0a017407, 0xf105d007, 0x7333b107, + 0xc0078487, 0xc2499027, 0x1a070b07, 0x91032287, 0x0084a2be, 0xb70ba80b, + 0x9cc4c203, 0xd499e910, 0x07de0124, 0x9d4103c4, 0xf40124d4, 0xd405c603, + 0x1f070d07, 0x31272c07, 0x6d7efe05, 0xb10596ff, 0x3b4127d3, 0xb5340b4c, + 0x8ef043d3, 0x93fa4ef7, 0x00bda1f0, 0x008d43be, 0xbda1f093, 0x8d3abe00, + 0x1fbea700, 0xdc27fffa, 0x09a0270c, 0x071d07b2, 0x93cd3bc2, 0x00bdabf0, + 0xb2033c07, 0x008d1bbe, 0xd103ac0b, 0x0600bfc4, 0xa7e1ff00, 0xfffa23ce, + 0x9332c189, 0x00bdb0f0, 0x008cffbe, 0xc3b1c1a1, 0x4a072107, 0xbdb7f093, + 0x0e2a2b00, 0x8cea9efa, 0xc1f64e00, 0x0cc13808, 0x240e993c, 0xb107d007, + 0x70279027, 0x270c6c27, 0x06071c3c, 0x031e362b, 0x22270103, 0x203b4c07, + 0x2c0b405b, 0xf3f0415c, 0xc2041e03, 0x4007eb2b, 0x470c4c23, 0x492d0b24, + 0x0b4e3b21, 0x87d30141, 0x07430b44, 0x273c0b38, 0x034305a1, 0x074a0711, + 0x4d403b3e, 0x0b370321, 0x27030ac4, 0x07190271, 0x3b4a0791, 0xda42234e, + 0x76661494, 0x0d071307, 0x07fc097e, 0x7e0d0710, 0xde99feb9, 0x90cbca24, + 0xd3c1d4a1, 0x3cdbc53c, 0x4b0b432b, 0xf68ed4a5, 0x02c1fa4e, 0x4003c13c, + 0x04a1d107, 0x0fffdd03, 0x0fffdde3, 0xa007322b, 0x00c1d42b, 0x07376638, + 0x07d302bd, 0x0bcb07b3, 0xbe1c07c2, 0x07008fcc, 0x7e1c070a, 0xdb2bff35, + 0x0d07d606, 0x07fdf67e, 0x0e1d070a, 0xff235efa, 0xfa4efa8e, 0x07310499, + 0x07a207d0, 0xc6c107b3, 0xfc1d7e46, 0x0d070526, 0x877e1c07, 0x9d4027fb, + 0x0fd631d4, 0x0bb2c05e, 0xb07e0a07, 0xc00e66fd, 0x4c474fb3, 0x99144c23, + 0x4d0b24d2, 0x323b3127, 0x31234409, 0x3c073422, 0x4207111e, 0xc4424703, + 0x31033c07, 0x3207051e, 0x41273803, 0xd1a1433b, 0x31233407, 0x13eb130b, + 0x0d07140b, 0x89ff4b7e, 0x0d0732d4, 0x1c074103, 0x0e32d48d, 0xfb245efa, + 0xfa8e0027, 0xd007fb4e, 0x0ea7b107, 0x07fffa23, 0x7ec2071d, 0x0616fb0e, + 0x2b071d07, 0x0ea73c07, 0x7efffa23, 0x4027ff5e, 0x8e0ef49b, 0x07fa4efb, + 0x07a007d2, 0x072a06b1, 0x071a073d, 0x230ea72b, 0x557efffa, 0xa70766fd, + 0xfffa23ce, 0x2724c099, 0x03102722, 0x07ae3e07, 0x7e0c0710, 0xd81efd7d, + 0xf49b4027, 0x07fa8e0e, 0x0c0c2740, 0x0103031e, 0x203b2127, 0xa7f824ca, + 0xffffff3e, 0x060834d1, 0x420b1027, 0x060834d5, 0x795e2227, 0xff4ea7ff, + 0x40bdffff, 0xfe0b0e84, 0xffff2ea7, 0xbd3027ff, 0xa70e8423, 0x39f49310, + 0x419d037e, 0x26239d43, 0x0b27239d, 0xff4ea7fe, 0x4201fd4f, 0xac66f393, + 0xd24d2702, 0x27340507, 0x34150c4c, 0x30354027, 0x03073225, 0x6b9e3445, + 0xfd4e0085, 0xffff4ea7, 0x8444b9ff, 0xa6d0070e, 0x99f09345, 0x1d0700bb, + 0x008a97be, 0xac2ef493, 0xe23d2702, 0x07430507, 0x15342704, 0x0e4d2543, + 0x85389efd, 0xa7fe4e00, 0xffffff4e, 0x0e8444b9, 0xf0934566, 0xbe00bb8e, + 0x0e008a68, 0xcebc9efe, 0xa7fd4eff, 0xffffff4e, 0x0e8444b9, 0x4666d007, + 0x02890131, 0x0803890a, 0xbb79f093, 0x8a42be00, 0x030d0700, 0xcf3bbe08, + 0x8df393ff, 0x3499037d, 0x9d410343, 0xfd8e4334, 0x4ea7fb4e, 0xb9ffffff, + 0x230e8444, 0x07b007f1, 0x934566d1, 0x00bb70f0, 0x008a0fbe, 0xf1930f07, + 0x2700bb7d, 0x1cbe102c, 0xd4f60081, 0xbb6efd93, 0x91fc9300, 0x4d2702ab, + 0xc40507e1, 0x15844c27, 0x07cb25c4, 0x83a4be0d, 0x03200700, 0x0ccc0321, + 0x43273f07, 0x34033101, 0xc403c105, 0x3459f4a8, 0x1d073309, 0xc30dc45d, + 0xab75f093, 0x80d5be02, 0x51f09300, 0x6bbe02ab, 0xf1030084, 0xfc4efb8e, + 0xffffcea7, 0x84c4b9ff, 0x26d0070e, 0x21011146, 0x93033102, 0x00bb18f0, + 0x00898fbe, 0xa626c499, 0x93042745, 0x00bb42f1, 0x008cbd9e, 0x08030d07, + 0xfff5babe, 0xdd211007, 0xc4b90956, 0x45660e84, 0xbb5bf093, 0x8962be00, + 0xf9f49300, 0x3d2702aa, 0x430507d3, 0x34270407, 0x4d254315, 0x039efc0e, + 0x0d070084, 0x195efc0e, 0xa7fe4eff, 0xffffff4e, 0x0e8444b9, 0xf0934566, + 0xbe00bb40, 0x9300892c, 0x037cc7f3, 0x45b63419, 0xf1930427, 0x9e00bb3f, + 0x27008c56, 0x8e341d40, 0xa7fd4efe, 0xffffff4e, 0x0e8444b9, 0x45e6d007, + 0x02210111, 0xbb3df093, 0x88f6be00, 0x10d02100, 0x0000000f, 0x010f5070, + 0x27f00000, 0x63f19304, 0x1b9e00bb, 0x3ea7008c, 0x27fffe6f, 0x221c2720, + 0x34013423, 0x4ed83403, 0x23030000, 0x40ce3421, 0x2724330d, 0xbb24fd41, + 0x8e0003ce, 0xce3401fd, 0x24330d40, 0x24fd4127, 0x0003cebc, 0x2103fd8e, + 0xf0183c03, 0xfd0ecbf1, 0x4efde95e, 0xff4ea7fc, 0x44b9ffff, 0xf0e30e84, + 0x4826d007, 0x89180e89, 0x01091a0c, 0x03110229, 0xfe150421, 0xde51fc25, + 0xbb20f093, 0xbefe0500, 0x93008868, 0x02a9fff4, 0x07de3d27, 0x3c274305, + 0x07431520, 0x2748030d, 0x03020138, 0x03420504, 0x93f3a844, 0x02a9dff0, + 0xfc0ef0c3, 0x0082f59e, 0x4ea7fc4e, 0xb9ffffff, 0x070e8444, 0x0145e6d0, + 0x93021101, 0x00bb44f0, 0x00881fbe, 0xa9b6fc93, 0x270c0702, 0x0507df4d, + 0x271d07c4, 0x03282748, 0xbec41508, 0x07007f1f, 0x9efc0e0c, 0x4e0082b6, + 0xff4ea7fb, 0x44b9ffff, 0xb0070e84, 0x45e6d107, 0x2d070101, 0xbb2af093, + 0x87debe00, 0x75fc9300, 0x0c0702a9, 0x0bbb4d27, 0x2d071b07, 0xc4050803, + 0xe0becd15, 0x0c07007e, 0x779efb0e, 0xfc4e0082, 0xffff4ea7, 0x8444b9ff, + 0xa6d0070e, 0x18f09345, 0x1d0700bb, 0x0087a3be, 0xa93afc93, 0xe04d2702, + 0x27c40507, 0xc415844c, 0xc4254127, 0x4bbe0d07, 0x01030081, 0x0c072007, + 0x0c031d07, 0x7e95be0c, 0x0e0c0700, 0x822c9efc, 0xa7fc4e00, 0xffffff4e, + 0x0e8444b9, 0x45a6d007, 0xbae6f093, 0xbe1d0700, 0x93008758, 0x02a8effc, + 0x07e04d27, 0x4c27c405, 0x27c41584, 0x07c42542, 0x8100be0d, 0x07010300, + 0x070c0720, 0x0c0c031d, 0x007e4abe, 0xfc0e0c07, 0x0081e19e, 0x4ea7fe4e, + 0xb9ffffff, 0x660e8444, 0xbcf09345, 0x11be00ba, 0x4ea70087, 0x01fd4fff, + 0xa1f39342, 0x4d2702a8, 0x340507d1, 0x44270307, 0x32253415, 0xab9efe0e, + 0xfd4e0081, 0xffff4ea7, 0x8444b9ff, 0x6bd0070e, 0x934566df, 0x00ba97f0, + 0x0086d7be, 0xa86ef493, 0xd43d2702, 0x07430507, 0x15342704, 0x0e4d2543, + 0x81789efd, 0xa7fb4e00, 0xffffffce, 0x0e84c4b9, 0xf4934806, 0x19037a4c, + 0xf5f49341, 0x42010379, 0x79f2f493, 0x93430103, 0x00ba69f0, 0x008693be, + 0x0e84c4b9, 0x1f274ce6, 0x1007a000, 0x90000f27, 0x79be1007, 0xb0070082, + 0xc0001f27, 0x0f271007, 0x1007b000, 0x008267be, 0x1f27c007, 0x1007e000, + 0xd0000f27, 0x55be1007, 0x30070082, 0x2c071b07, 0xba5af093, 0x9efb0e00, + 0x8e008648, 0xa7fb4efb, 0xffffffce, 0x0e84c4b9, 0x7a7e44a6, 0xd1fb93ff, + 0xbd190379, 0xc4b9d996, 0x45e60e84, 0xba68f093, 0xdd1d2700, 0x861abe07, + 0xb1f49300, 0x3d2702a7, 0x040707dd, 0x4d154305, 0x0080c1be, 0xb41d4127, + 0xfd4efb8e, 0xffff4ea7, 0x8444b9ff, 0x66d0070e, 0x4df09345, 0xe9be00ba, + 0xf4930085, 0x2702a780, 0x0507e03d, 0x25332743, 0x0c4c0343, 0x2c032407, + 0xe334074f, 0x3ce37f2c, 0x0334197f, 0x32c2803c, 0x59f393f9, 0xd76602a7, + 0x15544c27, 0x030d0734, 0x4c270c3c, 0x03010114, 0x03310504, 0x1ef4a834, + 0x15442713, 0x03202734, 0x4c270c3c, 0x03320514, 0x93f4c834, 0x02a727f0, + 0x3f9efd0e, 0xfb4e0080, 0xd1070fab, 0x1207f0a3, 0x0de42307, 0x014f0bb9, + 0xffffcea7, 0x84c4b9ff, 0x9347260e, 0x0378b3f4, 0xf4934301, 0x010378b0, + 0xc8f09344, 0x51be00b9, 0xc4b90085, 0x46660e84, 0xd201d111, 0xd421d331, + 0xb9e7f093, 0x853abe00, 0x84c4b900, 0x4149260e, 0x0bf093d2, 0xe20700ba, + 0x42073207, 0x530cec53, 0x104c5333, 0xe1831207, 0x21832253, 0x41833183, + 0x0dbefe05, 0xc4b90085, 0x46860e84, 0x8918d189, 0xd38916d2, 0x0bf09314, + 0xf5be00ba, 0xc4b90084, 0x46260e84, 0x8944d189, 0xf09346d2, 0xbe00ba17, + 0x890084e0, 0xc3b918d4, 0x4f8b0e84, 0xe64b40cc, 0x81d17135, 0x16f093d2, + 0xc5be00ba, 0xc4b90084, 0x45e60e84, 0xd2a1d191, 0xba1ef093, 0x84b2be00, + 0x84c4b900, 0xc147860e, 0xd18934de, 0x2ed2892c, 0x8930d389, 0xf09332d4, + 0x0500ba12, 0x8492befe, 0xf0d49100, 0x1e01ed44, 0x7136265c, 0x91d281d1, + 0x4ef093d3, 0x79be00ba, 0xc4b90084, 0x46460e84, 0xd2b1d1a1, 0x9330d3c1, + 0x00ba5cf0, 0x008463be, 0x0e84c4b9, 0xd1c14686, 0x38d2c134, 0x933cd3c1, + 0x00ba68f0, 0x00844bbe, 0x0e84c4b9, 0xd1894626, 0x42d28940, 0xba6bf093, + 0x8436be00, 0x34d4c100, 0x019044e8, 0x0e84c4b9, 0x685ed371, 0xba0de401, + 0xa700ae0b, 0xffffffbe, 0x0e84b4b9, 0xf4934726, 0x01037760, 0x5df49343, + 0x44010377, 0xba42f093, 0x83febe00, 0x84b4b900, 0x1146660e, 0x31d201d1, + 0x93d421d3, 0x00b894f0, 0x0083e7be, 0x0e84b4b9, 0xd34149e6, 0xba54f093, + 0x07e30700, 0x072307c3, 0x14ec5313, 0x5310cc53, 0x8334532a, 0x07c183e1, + 0x83218341, 0x05418331, 0xbefc15fe, 0xb90083b4, 0x660e84b4, 0x51d18146, + 0x71d361d2, 0x5ff093d4, 0x9dbe00ba, 0xd4710083, 0x00f844f0, 0x0e84b4b9, + 0xd181d361, 0x00ec4fe6, 0x3479310b, 0x32393119, 0xf0933359, 0x8300b930, + 0x9efb0ef0, 0xc4008374, 0x180bbb0d, 0xffff4ea7, 0x8444b9ff, 0xc34fe60e, + 0x93d30100, 0x00ba42f0, 0xe400b15e, 0x990bbc0d, 0xffcea700, 0xc4b9ffff, + 0x47260e84, 0x7692f493, 0x93430103, 0x03768ff4, 0xf0934401, 0xbe00ba40, + 0xb9008330, 0x660e84c4, 0x01d11146, 0x21d331d2, 0xc6f093d4, 0x19be00b7, + 0xc4b90083, 0x46260e84, 0x8918d189, 0xf0931ad2, 0xbe00ba4c, 0x89008304, + 0x44d01ad4, 0x84c4b91c, 0x9946e60e, 0xd29920d1, 0x22d39921, 0x9323d499, + 0x00ba48f0, 0x0082e3be, 0xffffcea7, 0x84c4b9ff, 0x4145e60e, 0x93d251d1, + 0x00ba58f0, 0x0082cbbe, 0x44d0d451, 0x84c4b926, 0xe6d3410e, 0xff345e47, + 0xffff4ea7, 0x8444b9ff, 0x0746260e, 0x59f09330, 0xf08300ba, 0xa19efb0e, + 0xf0830082, 0xfb4efb8e, 0x8b72f493, 0x0a438903, 0x07084489, 0x2eb107c0, + 0x8e002743, 0x7d91befb, 0xd1f39300, 0x34010375, 0x400bd007, 0x07c63405, + 0xffff4ea7, 0x8444b9ff, 0x0946660e, 0x931b07c0, 0x00ba4ff2, 0xba4ef393, + 0xfcd47e00, 0xd4860d07, 0xfb8e0127, 0xf293fc4e, 0x0103759c, 0xff3ea724, + 0xf063ffff, 0x33b94123, 0xf0050e84, 0xd1072405, 0x3626fc09, 0xf2930c07, + 0x9300ba23, 0x00ba17f3, 0x0dfc9d7e, 0xd64d27fc, 0xb1fc9307, 0xf00102a3, + 0x4027c405, 0xc4151d07, 0x007c8fbe, 0xf0430c07, 0xb79efc0e, 0xf063007c, + 0x0bb94d27, 0x4c27f40d, 0x07f42d48, 0x43f00110, 0x4e9a1ef0, 0x05f063fc, + 0x07fc09f0, 0xbbcdc0d1, 0xf3930c0b, 0x01037524, 0x05412334, 0xff4ea734, + 0x44b9ffff, 0x46260e84, 0xf2930c07, 0x9300b9b7, 0x00b9baf3, 0x0dfc317e, + 0xd54d27fc, 0x45fc9307, 0xf00102a3, 0x4027c405, 0xc4151d07, 0x007c3cbe, + 0xf0430c07, 0x4b9efc0e, 0xfb4e007c, 0x8a66f493, 0x49436903, 0x07c00744, + 0x27432eb1, 0xbefb8e00, 0x93007ea5, 0x0374c3f4, 0x4201d007, 0x302704d6, + 0xc409131e, 0x4d043027, 0x31270bbb, 0x41c34307, 0x3f6b3407, 0xf493320b, + 0x050374a0, 0xa7d7c643, 0xffffff4e, 0x0e8444b9, 0xc0094666, 0xf2931b07, + 0x9300b928, 0x00b936f3, 0x07fbad7e, 0x27d4860d, 0x4efb8e01, 0xff3ea7f9, + 0x34b9feff, 0x4cf80c41, 0xa700ee10, 0xffffff4e, 0x99444499, 0x432b0933, + 0x41e84f4b, 0xec5e00db, 0x83130700, 0x03133317, 0x03de901f, 0x49f49300, + 0x4d990374, 0xa7c40744, 0xffffff9e, 0xffd7aea7, 0x992b1eff, 0x449642c4, + 0xc499d123, 0x07410340, 0x273f6b34, 0x42c49d40, 0x2e40c39d, 0x1e1027b3, + 0x83130767, 0x03133317, 0x03de901f, 0x011f4600, 0xbd4fc414, 0x50000060, + 0x9399a479, 0x274f4b44, 0x27400c20, 0x2b430721, 0x6b240742, 0x0723232f, + 0x030f6b02, 0xf9111e23, 0x00004f34, 0x0744c6ff, 0x07181e30, 0x070f6b0e, + 0x87338330, 0x33e00743, 0x03342b34, 0xe020cee1, 0x14993207, 0x07342b04, + 0xec4f4b43, 0x93ff7e41, 0x0373aff2, 0x06442d9d, 0x42249919, 0x41274876, + 0xa742249d, 0xfeffff4e, 0x01094499, 0x04149d13, 0x60bd3f04, 0xd1230000, + 0x01442d9d, 0x93f48b14, 0x03737ff4, 0x99404399, 0x00274144, 0x271934ce, + 0x93f98e01, 0x03736bf4, 0x99404399, 0xb3ee414b, 0x1027ff09, 0x8eff105e, + 0xa7fd4ef9, 0xffffffde, 0x0e84d4b9, 0x46c6f063, 0x61e2f493, 0x08429903, + 0x9326d199, 0x00b7ecf0, 0x007fdfbe, 0xc426d499, 0xf4931642, 0x990361c8, + 0x45b60844, 0xf1930427, 0x9e00b803, 0xbe008302, 0x07ffc4af, 0x61f1930f, + 0x1b7e0277, 0xc6d007fd, 0x93f00105, 0x027753f1, 0x1efd5b7e, 0xff4ea7e7, + 0x44b9ffff, 0x45660e84, 0xb820f093, 0x7f92be00, 0x29f49300, 0x3d2702a1, + 0x040707d8, 0x4d154305, 0x007a39be, 0x72d2f293, 0x40249903, 0x41033027, + 0x9d42239d, 0x447e4024, 0x8ef043fe, 0x63fd4efd, 0x05f193f0, 0x0f070277, + 0x07fdc97e, 0xf9f193d0, 0x05260276, 0x647ef001, 0xa7e71efd, 0xffffff4e, + 0x0e8444b9, 0xf0934566, 0xbe00b7da, 0x93007f34, 0x02a0cbf4, 0x07d73d27, + 0x43050407, 0xdbbe4d15, 0xf2930079, 0x99037274, 0x30274024, 0x239d4103, + 0x40249d42, 0x43fde67e, 0x4efd8ef0, 0xffdea7fd, 0xd4b9ffff, 0x45660e84, + 0xb7aff093, 0x7ef2be00, 0x26d49900, 0x042745a6, 0xb7b5f193, 0x82209e00, + 0xc3dbbe00, 0x5efd0eff, 0xfd4eff75, 0xffffdea7, 0x84d4b9ff, 0x9345660e, + 0x00b7c6f0, 0x007ec3be, 0x9926d299, 0x244e27d4, 0xf1930827, 0x1e00b7c0, + 0xff4ea722, 0x4499feff, 0x87438309, 0x2b443334, 0x4d44f943, 0x23ff0000, + 0x27485041, 0xe0f19308, 0xcb9e00b7, 0x42270081, 0xc427d49d, 0xf4931822, + 0x990371d8, 0x20274043, 0x429d3103, 0x40439d42, 0x485efd0e, 0x4efd8efd, + 0xffdea7fd, 0xd4b9ffff, 0x45660e84, 0xb7bef093, 0x7e56be00, 0x26d29900, + 0x4e27d499, 0x93082724, 0x00b7baf1, 0x0081819e, 0xd49d4027, 0x9326f627, + 0x03718ff3, 0x9d403499, 0x41034232, 0x0e40349d, 0xfd015efd, 0xfb4efd8e, + 0xffff4ea7, 0x8444b9ff, 0xa6d0070e, 0xc9f09345, 0x1d0700b7, 0x007e0bbe, + 0xe4bed516, 0x071effc2, 0x7bbed204, 0xcea7ffc0, 0x27ffffff, 0x84c4b9b0, + 0x34cbbd0e, 0x9345a606, 0x00b7b3f0, 0xe1be1d07, 0xf393007d, 0x9d029f78, + 0x4d2727cd, 0x340507db, 0x34154427, 0x03073d25, 0xbe26cd9d, 0x9300787e, + 0x037117f3, 0x9d403499, 0x4103423b, 0x0e40349d, 0xfc895efb, 0xdea7fb4e, + 0xb9ffffff, 0x660e84d4, 0xb6f09345, 0x99be00b7, 0x4ea7007d, 0x91d07fff, + 0x104c5c44, 0xf1930427, 0x9e00b7b0, 0xbe0080c2, 0x93ffc01e, 0x0370cff4, + 0xf4934201, 0x010370c4, 0xcff09341, 0x69be00b7, 0x1f27007d, 0x1007a000, + 0x90000f27, 0x55be1007, 0xb0070079, 0xc0001f27, 0x0f271007, 0x1007b000, + 0x007943be, 0x1f27c007, 0x1007e000, 0xd0000f27, 0x31be1007, 0x30070079, + 0x2c071b07, 0xb7b2f093, 0x7d26be00, 0xbd412700, 0xa70b81d4, 0xfd4fff4e, + 0x40274301, 0x270ef49b, 0x0ed499c1, 0xc4cbc33b, 0x4fbf3ea7, 0x27c138fd, + 0x53340541, 0x03c4c6c1, 0x27f31e34, 0x7d78414f, 0xa7f4e801, 0xffffff4e, + 0x0e8444b9, 0xf09345e6, 0x2700b126, 0xbe07dc1d, 0x93007cd8, 0x029e6ff4, + 0x07dc3d27, 0x43050407, 0xfb0e4c15, 0x00777d9e, 0xdea7fd4e, 0xb9ffffff, + 0x660e84d4, 0x70f09345, 0xadbe00b7, 0xd4b9007c, 0x45e60e84, 0xb0e8f093, + 0xd91d2700, 0x7c9abe07, 0x31f49300, 0x3d27029e, 0x430507d9, 0x30270407, + 0xfd0e4315, 0x00773d9e, 0xdea7fc4e, 0xb9ffffff, 0x210e84d4, 0x1145e60c, + 0x932c0701, 0x00b739f0, 0x007c67be, 0x4027c5d6, 0x0ea8dcd5, 0x0eacd4ad, + 0xc6d4371e, 0xa8d4d134, 0xacdcad0e, 0x2749760e, 0x100000cf, 0x804f2710, + 0xd5101000, 0x070ea8d4, 0x2710270c, 0x7bbe802c, 0x4f270073, 0x11223356, + 0x2740c4c5, 0x0ef49b40, 0xffff4ea7, 0x8444b9ff, 0x9345e60e, 0x00b059f0, + 0x07e31d27, 0x007c0bbe, 0x9da2f493, 0xe33d2702, 0x07430507, 0x15302704, + 0x9efc0e43, 0x4e0076ae, 0xffbea7fb, 0xb4b9ffff, 0xc0070e84, 0x45a60d01, + 0xb6d9f093, 0xbe1d0700, 0xe0007bd8, 0x1c03eedd, 0xefddd401, 0xddc02503, + 0x547a03eb, 0xc003ecdd, 0x4503e9dd, 0x03eadde4, 0x531e012e, 0x03ecddc0, + 0xeddde47a, 0x5e012103, 0xdde00088, 0x00fe03f2, 0x03f3dd54, 0x03f0dde0, + 0xdde400e8, 0x010803f1, 0xe000e45e, 0xec03f4dd, 0xf4ddf000, 0xe400f203, + 0xf303f5dd, 0x00e25e00, 0x6ecef393, 0x41309903, 0xfc98f453, 0x27832007, + 0x230b2333, 0xf393631e, 0x99036eb8, 0xf4534130, 0x2007fcef, 0x23332783, + 0x4d1e230b, 0x6ea2f393, 0x41309903, 0xfc3df453, 0x27832007, 0x230b2333, + 0xf393371e, 0x99036e8c, 0xf4534130, 0x2007fb2d, 0x23332783, 0x211e230b, + 0x6e76f393, 0x44349903, 0x00974ff6, 0x27413099, 0x83200741, 0x9d233327, + 0x230b4434, 0xf087f453, 0x31992405, 0xff3ea743, 0x219dfeff, 0x44b49904, + 0x2b093399, 0xcc4f4b43, 0x4ea71141, 0x79ffffd7, 0x07453644, 0x9d410341, + 0xf3930424, 0x07036e2c, 0x99410340, 0x4f6b4032, 0x2b41349d, 0xd04f6b42, + 0x04274049, 0xb5c0f193, 0x0e331e00, 0xfdf25efb, 0x015efb0e, 0x0e0c07fd, + 0xf0475efb, 0xfb0e0c07, 0x0ef0f55e, 0xf15b5efb, 0xfb0e0c07, 0x07fe135e, + 0x5efb0e0c, 0x0427f17d, 0xb5a5f193, 0x7dc09e00, 0x4efb8e00, 0xff4ea7fe, + 0x4491d07f, 0x27104c5c, 0xa6f19306, 0x101e00b5, 0xc13803c1, 0x304c3402, + 0xf1930627, 0x9e00b5c6, 0x52007d96, 0x93062732, 0x00b5f7f1, 0x0471f21e, + 0x00004f30, 0x420b7000, 0x00014f50, 0x0627f000, 0xb61df193, 0x81d91e00, + 0x91471604, 0xa1469604, 0xb1461604, 0xc1459604, 0x44f63004, 0x663c04c1, + 0x93062745, 0x00b624f1, 0xfe8eb61e, 0x0289fb4e, 0x07f1a318, 0x832144d0, + 0x5efb0ef1, 0x2dc0ff7f, 0xd4591102, 0x2711032d, 0x01822dc0, 0x832d544f, + 0x022dc001, 0x2dc44601, 0x1e380121, 0x812dc03f, 0x2dc03a02, 0xc4350301, + 0x2702012d, 0x2dd42e1e, 0xd4128003, 0x2480012d, 0x11212dc0, 0x012dc41f, + 0x181e1112, 0x7fdf2d03, 0x4fab4207, 0x7fdf2d23, 0x06274250, 0xb5cdf193, + 0x071c1e00, 0x0fcc53c2, 0x4ea7c746, 0xc1fd4fff, 0x4e5c7444, 0x27020000, + 0xd9f19304, 0xbf9e00b5, 0x2dc4007c, 0xa7170281, 0xfd4fff4e, 0x5c7444c1, + 0x1000004e, 0xf1930427, 0x1e00b5e2, 0x301459e2, 0x1eb12749, 0x2714790b, + 0x27491030, 0x19b30731, 0x39302714, 0x27448611, 0x07de4131, 0x6b4e0703, + 0xa641830f, 0x2746d605, 0xe0f19306, 0xaf1e00b5, 0x06274566, 0xb5fdf193, + 0x58a41e00, 0x270300ed, 0x1bf19306, 0x971e00b6, 0x12004127, 0x14074027, + 0x0118cfe6, 0x4c334207, 0x1c4c5318, 0x42c0b5e6, 0x93062717, 0x00b620f1, + 0x86ff755e, 0x93062745, 0x00b65df1, 0x07ff695e, 0xe6478342, 0x1742c015, + 0xf1930627, 0x5e00b692, 0x4140ff56, 0xf1930627, 0x5e00b6b9, 0xec58ff4a, + 0x93062730, 0x00b6dff1, 0x07ff3d5e, 0xc04c834e, 0x4b6605c6, 0xf1930627, + 0x5e00b6f8, 0x4653ff2a, 0x06274250, 0xb720f193, 0xff1c5e00, 0x811f41c4, + 0x30d3a1d4, 0x0000004f, 0x50430b70, 0x0000014f, 0x930627f0, 0x00b736f1, + 0x46fefd5e, 0x91d4713d, 0x004f30d3, 0x0b700000, 0x014f5043, 0x27f00000, + 0x7bf19306, 0xdf5e00b7, 0x273596fe, 0x9bf19306, 0xd35e00b7, 0x810b86fe, + 0x30d3a1d4, 0x0000004f, 0x50430b70, 0x0000014f, 0x930627f0, 0x00b7a3f1, + 0x96feb55e, 0x93062735, 0x00b71ff1, 0x89fea95e, 0xd48930d3, 0x27344e32, + 0xc0f19306, 0x975e00b7, 0x34d0c1fe, 0x43834007, 0x06274244, 0xb7f8f193, + 0xfe845e00, 0x021104f8, 0xf1930627, 0x5e00b811, 0x2d20fe76, 0x2d000182, + 0x2d241102, 0x41270102, 0x4027031e, 0x15d64f6b, 0x06274666, 0xb825f193, + 0xfe545e00, 0xecfc44e6, 0x0701d430, 0xc04c834e, 0x27814c50, 0x39f19306, + 0x3b5e00b8, 0x40d489fe, 0x06274596, 0xb851f193, 0xfe2c5e00, 0x9642d389, + 0x93062735, 0x00b86ef1, 0x07fe1d5e, 0x07b183be, 0xe6130704, 0x10ec58b5, + 0x01530103, 0x1103051e, 0x2dc01153, 0xd4640301, 0x2e03022d, 0x01212de0, + 0x2d5400b8, 0x2de00122, 0x00b60102, 0x01042de4, 0xb15e00c8, 0x012dc000, + 0x2de07302, 0x00820281, 0x01822de4, 0x9d5e00b4, 0x212de000, 0xd4008b11, + 0x1511222d, 0x11022de0, 0x2de00088, 0x00861104, 0x03212de4, 0x2f1e0094, + 0x21042dc0, 0x042dc078, 0x2de47331, 0x00821201, 0x4007331e, 0x41033107, + 0x41533103, 0xc3273153, 0xf355f425, 0xf415f005, 0xf345f135, 0x41076d1e, + 0x41534103, 0xc3273047, 0xf025f305, 0xf015f455, 0x491ef135, 0x1103f135, + 0x40271153, 0xf015c227, 0xf455f145, 0x151ef005, 0x1103f135, 0x11533047, + 0xc2274027, 0xf145f315, 0xf305f455, 0x2b1ef425, 0x30871103, 0x071e1153, + 0x031e3047, 0x40273087, 0xf305c127, 0xf455f135, 0xf425f415, 0x0b1ef445, + 0xf1930627, 0x5e00b794, 0x0d07fd16, 0xe027df07, 0xdc031027, 0x61cec20c, + 0x410b4f07, 0x04c14201, 0x27245234, 0x99f19306, 0xf35e00b7, 0x0b4d07fc, + 0x71430141, 0x30329b04, 0x0000004f, 0x50430b70, 0x0000014f, 0x930627f0, + 0x00b7a1f1, 0xa1fcd15e, 0x30b76604, 0x0000004f, 0xd0430b70, 0x0000014f, + 0x062738f0, 0xb7b1f193, 0xfcb45e00, 0x062749a6, 0xb7d2f193, 0xfca85e00, + 0x44d60471, 0x458604a1, 0xf1930627, 0x5e00b7f4, 0x04c1fc96, 0x27458634, + 0x0df19306, 0x875e00b8, 0x03e103fc, 0xc0040314, 0x725e0ee3, 0x930627ff, + 0x00b81ef1, 0x83fc715e, 0x4efb8ef1, 0x272007fe, 0x30f09310, 0x84be00b8, + 0x3ea7ffaf, 0x27ffffff, 0x8134bd41, 0xff4ea70b, 0x4201fd4f, 0xf49b4027, + 0x0e34990e, 0x323b3127, 0x2ea734cb, 0x38fd4fbf, 0x05412731, 0x03315324, + 0x2732d624, 0x7d78414f, 0x8ef4e801, 0x0bfe0bfe, 0x07fb4efe, 0x121f9bb0, + 0xb7eef093, 0x7592be00, 0x93b11100, 0x00b7fbf0, 0x007587be, 0xf093b121, + 0xbe00b802, 0x0100757c, 0x09f093b1, 0x71be00b8, 0xc0270075, 0xd231db07, + 0xf0931c07, 0x0300b80a, 0x755ebec1, 0xc4d40300, 0x07ec0fcc, 0x9efb0e0b, + 0x4effaf9d, 0x07a007f9, 0x27c207b1, 0x1c1e409c, 0xcc10dc07, 0x07d90741, + 0xde67be1d, 0x070a0700, 0xde49be1d, 0x0bcd2b00, 0x07ad0bbd, 0x8ec0760b, + 0x114f27f9, 0x9b100000, 0x0533a0f4, 0x180001f5, 0x02f5ff02, 0xff021804, + 0x0e233027, 0x35fde800, 0x234c2703, 0xe8000e03, 0x1004f5fd, 0xf5ff0218, + 0x02181402, 0xf00e23ff, 0x0335fde7, 0x4007fe0b, 0x03334533, 0x40f9402b, + 0xff00018c, 0x330f0c83, 0x7e0e2303, 0xb49effff, 0xf293007c, 0xa7026d64, + 0xfefeb33e, 0x01304c27, 0x05340331, 0xa8240321, 0x9b4027f4, 0xfe0b0ef4, + 0xfeb32ea7, 0x41f393fe, 0x4c27026d, 0x03310130, 0x03210534, 0x27f4a824, + 0x0ef49b40, 0x3ea7fe0b, 0x27fdebff, 0x27340540, 0x0200004f, 0x2734150b, + 0x0ef49b40, 0xf84efe0b, 0xebffbea7, 0x278007fd, 0x070027c0, 0x009f27a1, + 0xbe0b0200, 0x0500ddb9, 0x27b915bc, 0x0ef49b40, 0xe7ff3ea7, 0x054427fd, + 0xa73a1534, 0xfde7ef4e, 0x48053c35, 0x00274a15, 0x92be4c35, 0xbc0500dd, + 0x4027b915, 0x8e0ef49b, 0x270533f8, 0x0004f543, 0xf5ff0218, 0x02180402, + 0x234027ff, 0xfde8000e, 0x0e030435, 0xf5fde800, 0x02181001, 0x1402f5ff, + 0x23ff0218, 0xfde7f00e, 0xfe0b0435, 0x07040399, 0xc035a640, 0x3a400936, + 0x00273820, 0x0427031e, 0x86064499, 0x20350645, 0x043a0037, 0x0b08a338, + 0x07fc4efe, 0xbec007d1, 0x1600e018, 0x04d49905, 0x27104c44, 0x0bd49d41, + 0xbe04c49d, 0xc500e037, 0xfc8e40d0, 0xc007fc4e, 0xd2070207, 0xbe440c03, + 0xa7001bdc, 0x41d39940, 0x9d43d49d, 0x32c442d4, 0x3ad4991a, 0x13ff4cc0, + 0x4c0b4447, 0x014443b9, 0xb942d39d, 0x9d014544, 0xfc8e43d4, 0xf063f84e, + 0xd2079007, 0xa3070307, 0x73beb107, 0x30070131, 0xc0073483, 0x009d3fe6, + 0xe404b899, 0x0095108c, 0x90200cfc, 0xffbea700, 0xb4d1ffff, 0x4ff60620, + 0x08f80396, 0xcea70392, 0xb9feffff, 0xf80c41c4, 0x0384104c, 0x01230a07, + 0xffcc82be, 0x03780fe6, 0x49be0027, 0xc3d1000f, 0xb4d1013c, 0x34e20b74, + 0xfc930366, 0x07026c70, 0xbe1c070f, 0xf6fff06a, 0x5e082704, 0xc4410358, + 0x4ea30c07, 0x45014000, 0xf0f4bec4, 0x5d9499ff, 0x00274124, 0xffece5be, + 0xa5be0a07, 0x4027ffba, 0xad0ad89d, 0x270168d4, 0x04949d42, 0x0b74b4d1, + 0x41030327, 0x0b74b4d5, 0x99031b5e, 0x452612b4, 0x05273576, 0xf8030f5e, + 0x990309c8, 0x4626bbb4, 0x03acb0c1, 0x0cbefc0c, 0x4027ffea, 0xc1bbb49d, + 0x471630b4, 0x1b070d07, 0x0007e8be, 0x0c270516, 0x02e25e0c, 0xc528d489, + 0xd48930b4, 0xf8412428, 0x1e02d1c8, 0x004d8307, 0x0745f680, 0xbcf9be0b, + 0x270616ff, 0x02be5e0b, 0xc605b499, 0xbbaabe44, 0xffcea7ff, 0xc4d1ffff, + 0xb1c10620, 0xc5410344, 0xc4d558d1, 0x1b070620, 0x5432f093, 0xb8d1be03, + 0x5cd0c5ff, 0x9d11b299, 0xb39960d2, 0x61d39d13, 0x8904b499, 0xd49d28d3, + 0x07b1990a, 0xd4d54027, 0xd4d501c0, 0x430701c4, 0x830bd19d, 0xe680004d, + 0x0700d44f, 0xfe0e7e0b, 0xb289d381, 0xc130ab1e, 0xd38544d4, 0x1c3cd28d, + 0xc03cd841, 0x0ad3991b, 0xdc379099, 0x43070e34, 0x4a404a83, 0xa606b499, + 0x47377647, 0x99161e00, 0xb3990ad4, 0x27448306, 0x27448611, 0x99912b10, + 0x033b3990, 0xc120b489, 0x400b44d3, 0x893ed48d, 0x3c831ab2, 0x26d28d20, + 0x811cb489, 0x24d48dd2, 0x0322b489, 0x44530f4c, 0x37e62158, 0x1e40d48d, + 0x8d370616, 0x2cd840d4, 0xb48910c0, 0x73410322, 0x0f4c0341, 0xd48d4453, + 0x05b49942, 0xb49949e6, 0x07d1b107, 0x33353334, 0xf5342b43, 0x00019831, + 0x30d4c1ff, 0x34f5d281, 0xff000190, 0xa340d189, 0xed80002d, 0x0001a031, + 0x81d285ff, 0xc04c83d4, 0x00f34fe6, 0xd4d54653, 0xea5e01c4, 0xe631e000, + 0xc0b1c100, 0x891ab289, 0x1cf81cb3, 0x8100920e, 0x83a307d4, 0x4653c04c, + 0xd4d59207, 0xa45b01c4, 0x1cd8945b, 0x18d86a0c, 0xaec4a921, 0x0724020e, + 0xff4ea724, 0x43a9ffff, 0xb4890eb0, 0x0743221c, 0x07031e03, 0x07920704, + 0x1e14d8a0, 0xffffcea7, 0xb2c1a9ff, 0xbe09070e, 0xa900978e, 0x070eb4c1, + 0xbe0a0790, 0x07009782, 0x83d481a0, 0xa3344741, 0x073f0b31, 0x03938b24, + 0x5b490721, 0xd6a38b42, 0x3b912744, 0x5b4a0792, 0x2744d642, 0x81a23ba1, + 0x072907d4, 0xe321e33a, 0x07413831, 0x8933e33a, 0x4d0028d4, 0x4d240121, + 0x21e31121, 0xd48131e3, 0x8d104c58, 0xd28d26d3, 0x8d071e24, 0xd38d26d2, + 0x07dc8124, 0x834c070b, 0x4453304c, 0x33333407, 0x342b4447, 0x44334307, + 0xd4d5432b, 0x5d7e01c0, 0x85c0abfc, 0x38b2c1dc, 0x0164d2d5, 0x9dbab399, + 0xb49962d3, 0x28d389b8, 0x016ed4bd, 0xb1893140, 0x68d1ad2e, 0x270a1e01, + 0x68d4ad41, 0x2eb38d01, 0xbd14b299, 0x99016cd2, 0xd3bd15b3, 0xb299016d, + 0xa8b4c118, 0x9d2cb189, 0xb3c163d2, 0x35d41534, 0x074b07d3, 0x08d18d3d, + 0x01703d03, 0x27684c03, 0x4101102c, 0x31054403, 0xf2a83403, 0x275cb2c1, + 0xb0d2d500, 0x60b3c101, 0x01b4d3d5, 0xd564b4c1, 0xc101b8d4, 0xf49330b1, + 0xd50351bc, 0x8901bcd1, 0x44c1bcb2, 0xc0bb9968, 0x01ccd4d5, 0x01f0d2ad, + 0x01f2dbbd, 0x0727071e, 0x0627031e, 0xf88ef043, 0x6ea6f393, 0x9031c503, + 0xe68c30c5, 0x9d412704, 0xfe0b9934, 0x579efe0b, 0xfe4e0012, 0xffcccebe, + 0x00124dbe, 0x001433be, 0xd69efe0e, 0xf0630013, 0x0bba4d27, 0x4c27f40d, + 0x07f42d28, 0x43f00110, 0xed799ef0, 0xa7f94eff, 0xfeffff3e, 0x0c4134b9, + 0x00cf48fc, 0x83093499, 0x33348743, 0xf9432b44, 0x00004d4b, 0xbabfe6ff, + 0xff4ea700, 0x43b9ffff, 0x42b90b9a, 0xc4070b9b, 0xd307322b, 0x0027df6b, + 0x6e26f993, 0x0dfa9303, 0x875e0351, 0x9023f900, 0xf9ff000b, 0x000b8824, + 0x1b3d1bff, 0x034f4b4d, 0x803c5c21, 0x2027412c, 0xf100051e, 0xc4b92127, + 0x45a60e25, 0x0b9bc3b9, 0x0a9a9499, 0x99202743, 0x472605a4, 0x0b99c4b9, + 0x0b98c3b9, 0x4cdc4d1b, 0x4d070a80, 0x4f4b432b, 0x064941c8, 0x834d072d, + 0x04070f4c, 0x45330333, 0x0e23040b, 0x71fff464, 0x0b046103, 0x27046543, + 0x7e047540, 0xc4b9ff32, 0x3d070b9b, 0x41233103, 0xc4bdd307, 0xdf6b0b9b, + 0xc4b90127, 0x4dce0b9a, 0x271b070b, 0x1e110320, 0x8e00278a, 0x7efd4ef9, + 0xdea7ff1d, 0x1effffff, 0x9ad4b92c, 0xbd41230b, 0xb90b9ad4, 0x830b9ad0, + 0x40070f0c, 0x03334533, 0x0e23040b, 0x7efff464, 0xd4b9fede, 0x41230b9b, + 0x0b9bd4bd, 0x0b9bd4b9, 0x27cf4fd6, 0xff1ea720, 0x3827ffff, 0x0b9a14b9, + 0x0b8824fd, 0x24fdff00, 0xff000b90, 0xf3582103, 0x0b9914bd, 0x0b9814bd, + 0xfe4efd8e, 0x001290be, 0x1ea72027, 0x27ffffff, 0xfd402738, 0x000b8824, + 0x982103ff, 0x9b14bdf3, 0x9814bd0b, 0x9a14bd0b, 0xa7fe8e0b, 0xffffff4e, + 0x0e2544b9, 0xf4934606, 0x99036ce8, 0x42049844, 0x0011c49e, 0xf493fe0b, + 0x0103626c, 0x4efe0b40, 0x090d99fd, 0x3d072007, 0x3103e027, 0x24990a1e, + 0x4e21030c, 0xa0e10314, 0x03fd8ef3, 0x4d070cec, 0x41233007, 0xec233e0b, + 0x09049d0c, 0x3439091e, 0x341de103, 0x04993103, 0xf3e4ca09, 0xf493fd8e, + 0x27036224, 0xa7102720, 0x0b429d30, 0x9d09429d, 0x24070a42, 0xd508439d, + 0x150a5041, 0x5441d541, 0x2c2c030a, 0x27193c27, 0x03241d40, 0xf3b0682c, + 0xfc4efe0b, 0x4f46f493, 0xf04dd103, 0x27102703, 0x2127223c, 0x4207213b, + 0x4d964d8b, 0x5fbaf493, 0x074e0103, 0x33410731, 0x0b333346, 0x033e0b34, + 0x2722703d, 0x0c01124c, 0x3c050403, 0xf4a83403, 0x41073107, 0x33334633, + 0x3e0b340b, 0x228034d1, 0x4ee32dab, 0xd501fc0e, 0x93228034, 0x034eeff4, + 0x03f042d5, 0x1103fc8e, 0x8ea8f3f0, 0x6f3ea7fc, 0x1c27fffe, 0x01342322, + 0xd8340334, 0x0300004e, 0xe6322113, 0xce047124, 0x32011424, 0x048124e6, + 0x030b24ce, 0xf1f0183c, 0x0b0027dd, 0x0b0127fe, 0xab0fabfe, 0x07109b1f, + 0x0b015301, 0x03004701, 0x0100000e, 0xfc4efe0b, 0xdc070c41, 0xdc532c07, + 0x002e8318, 0x2c53fe00, 0x03d10311, 0x27d23021, 0x27071e01, 0x27221401, + 0xff3ea700, 0x34a9ffff, 0xe0070eae, 0x4546ef6b, 0x0eb034a9, 0x44960127, + 0x4ea70027, 0xc1fd4fff, 0x41277443, 0x6bc014c5, 0x003fdc0f, 0x78200000, + 0x0fc6e4b6, 0x93042773, 0x00af72f1, 0xe4960c1e, 0x04270706, 0xaf93f193, + 0x6f749e00, 0x27060600, 0xe3f19304, 0xf21e00af, 0x14c54227, 0x14e726c0, + 0x1322d0d2, 0xffff3ea7, 0xad4427ff, 0xc50eb432, 0x3dadc014, 0x06c60eb2, + 0xffff2ea7, 0x273127ff, 0xb423ad48, 0xc014c50e, 0x0eb223ad, 0xd8c014c1, + 0x891e0c4c, 0x42301a14, 0xd41c1489, 0x04271342, 0xafe0f193, 0xdca31e00, + 0xd694c0cc, 0xc71ea0ef, 0xf063fc8e, 0x0bb94d27, 0xf40d0341, 0x2d484c27, + 0xa31007f4, 0x0110003d, 0x431345f0, 0xe9669ef0, 0x63fb4eff, 0x07d007f0, + 0x930f07b1, 0x02654ff1, 0xffe905be, 0x00ed0fe6, 0x4dc4f409, 0x29750bb9, + 0x484ce4f4, 0xd49900d5, 0x104cc004, 0xacd1c110, 0x652af093, 0xf41c0302, + 0xfff16bbe, 0x600ef493, 0x93440103, 0x026517f3, 0x4dd84986, 0x89138000, + 0x4d831834, 0x47d68000, 0xf1930627, 0x1e00af9a, 0x1141c410, 0x40183489, + 0x93062741, 0x00afbff1, 0x006e7d9e, 0x93183389, 0x035fd3f4, 0x0c030b07, + 0xd9f19310, 0x2c270264, 0xbe430548, 0x2700d325, 0xc4731e01, 0x620bbc4d, + 0x64c2fc93, 0x1ac48902, 0x4c03f329, 0x27344e20, 0xc0f19306, 0xc11e00af, + 0xc418c489, 0xb4a93a42, 0x456601e8, 0xf1930627, 0x1e00afe1, 0x030b07ac, + 0x0701d00d, 0x202c271c, 0x00d2e0be, 0xd804d499, 0xd4992a44, 0x0748d616, + 0x69f0931c, 0x2c270266, 0xd2c7be20, 0x27151e00, 0x00f19306, 0x795e00b0, + 0x930627ff, 0x00b035f1, 0x27ff6f5e, 0x8ef04300, 0x07f54efb, 0x04119981, + 0x1483f263, 0xf261f165, 0x5f32f393, 0x07500703, 0x105c0390, 0x28263101, + 0x4b083299, 0x1820c82f, 0x42873207, 0x342b3433, 0x3333320b, 0xdfd43f03, + 0x34990003, 0x2746162c, 0x93f35530, 0x035f2bf2, 0x1e193c27, 0xf011c059, + 0x86168499, 0x443c0341, 0x1c274507, 0x03300112, 0x03400534, 0x07f1a844, + 0x33328742, 0x0b432b44, 0xd1f39342, 0x20a7035e, 0x329d4333, 0x99430b08, + 0x05072b43, 0x439d3103, 0x7e18072b, 0x0907fd7a, 0x01d00d03, 0x65aef193, + 0x202c2702, 0x00d20cbe, 0xdb5e7127, 0x03241904, 0x4ff6682c, 0xf15104bd, + 0x61073907, 0x64334187, 0x610b642b, 0x6f036333, 0x0003dfd4, 0x2c032607, + 0x103c0344, 0xf2757027, 0xb85ef385, 0x07050703, 0xfd2c7e18, 0xe0048499, + 0x0351104c, 0x5e5ef493, 0x40430103, 0x2080013d, 0x0080213d, 0xe480023d, + 0x0a80223d, 0x06809902, 0x15248c89, 0x461c07f0, 0x07c10305, 0x2311531c, + 0x409789c1, 0x402774d6, 0x94c10a1e, 0x83455344, 0x6b41c341, 0x89f4254f, + 0x44d6228e, 0x051e4e07, 0x44334707, 0x07449ac1, 0x07410724, 0x0313831a, + 0x4c030f2c, 0x53f1450f, 0x46445324, 0x03d40716, 0xe3d80327, 0x27d7e327, + 0x1e10000d, 0x03d40708, 0x800c27d1, 0x42834307, 0x0f203cd8, 0x1d274506, + 0x131e0290, 0x01e01d27, 0x45060d1e, 0x02001d27, 0x1d27051e, 0x3a070180, + 0xf3353183, 0x410735c6, 0xe67f4c83, 0x801c0344, 0x3207142b, 0x34333d9b, + 0x43070123, 0x0103408b, 0x300b44c6, 0x0107342b, 0x1d07029b, 0x11032047, + 0x11534207, 0x237f4c83, 0x0344e611, 0x242b802c, 0x4d1b4147, 0x0407409b, + 0xe67f0c83, 0x804c0304, 0xb207402b, 0xec03b19b, 0x0bb30b0f, 0x534e07b4, + 0x05f01144, 0x0fec23f4, 0x2b070526, 0xda5e3407, 0x5c948100, 0x2027c04c, + 0xce5e3027, 0x21de0700, 0x73d103f1, 0x0714d6d1, 0x89061e2d, 0x24334292, + 0x18289389, 0x303ce3a8, 0xe310ac38, 0x0731a337, 0x7341034c, 0x03f04141, + 0x4c030f2c, 0x5324530f, 0x07064644, 0x032703e4, 0xe327e3e8, 0x000d27e7, + 0x07081e10, 0x27e103e4, 0x4307800c, 0x3cd84283, 0x45060f20, 0x02901d27, + 0x1d27131e, 0x0d1e01e0, 0x1d274506, 0x051e0200, 0x01801d27, 0x35c6f331, + 0x4c834107, 0x0344e67f, 0x142b801c, 0x3e9b3207, 0x01233433, 0x408b4307, + 0x44c60103, 0x342b300b, 0x029b0107, 0x20471e07, 0x42071103, 0x4c831153, + 0xe611237f, 0x802c0344, 0x4147242b, 0x409b4e1b, 0x0c830407, 0x0304e67f, + 0x402b804c, 0x230b219b, 0x3c033d07, 0x53240b0f, 0x22f40134, 0x1e302747, + 0x42948912, 0x34021027, 0x41071127, 0x340741c3, 0x94c13f6b, 0x3b4bea34, + 0x3894c101, 0x013442ea, 0x0fe6f021, 0x3ff60137, 0x275e0133, 0x1b31c401, + 0x89228089, 0xe27e2481, 0x4494c1fa, 0x011440fa, 0x71274027, 0x5e4894c5, + 0x97810115, 0x071c8489, 0x10ac83a7, 0x061a8089, 0x073407a5, 0x07051ed0, + 0xc1d40730, 0x4cf8c084, 0xf800cf0e, 0x00a40c4c, 0x865148d8, 0xff4ea7a8, + 0x43a9ffff, 0x84890eb0, 0x0743221c, 0x07031e23, 0xff4ea724, 0x43a9ffff, + 0x84890eae, 0xa7211e1a, 0xffffff4e, 0x0eae43a9, 0x221a8489, 0x1e230743, + 0xa7240703, 0xffffff4e, 0x0eb043a9, 0x221c8489, 0x1e030743, 0x07040703, + 0xa7261eb2, 0xffffff4e, 0x0eb24ca9, 0x0eb441a9, 0xa4d64c07, 0x1407c107, + 0xabbe0307, 0xb007008d, 0x0d071c07, 0x008da1be, 0x41834707, 0x31a33447, + 0x2b073f0b, 0x238b1407, 0x42071103, 0x038b415b, 0x212744d6, 0x4007213b, + 0x46f6415b, 0x013b0127, 0x4707101e, 0x53c04c83, 0x070d0746, 0x5b045b23, + 0x07320724, 0xe331e3d0, 0x0d71d8d1, 0x3207a506, 0x051e33e3, 0xd3e3d007, + 0x00289489, 0x2401214d, 0xe311214d, 0x89d1e331, 0x432a5094, 0xc2529489, + 0x05070ad4, 0x27faad7e, 0x27591e70, 0x9340a771, 0x035b0bf1, 0x149df261, + 0x5124e608, 0x08139df3, 0xc1b083c1, 0x9289b484, 0x75936528, 0x002d8394, + 0x89260680, 0x45764094, 0xa34494c1, 0x94c5204c, 0x81f37144, 0x122c27f4, + 0x44034001, 0x34033005, 0x3127f2a8, 0x639d4027, 0x29649d2c, 0xf62b639d, + 0x9300f57f, 0x035ab7f2, 0x4dfc2401, 0x00e18000, 0x4802f393, 0xf032d103, + 0x27102703, 0xd127223c, 0x4d07d13b, 0x4a46428b, 0x46334107, 0x140b1333, + 0x586ef493, 0x03440103, 0x0b22701d, 0x27050714, 0xdebe482c, 0xf09300cd, + 0xd10347cc, 0xeb03f004, 0xf004d54d, 0xfbf75e03, 0xf3f01103, 0x070807c2, + 0xfa0f7e19, 0xfbe70ff6, 0x93008d5e, 0x0347a7f0, 0x03f004d1, 0xbc3bb127, + 0x5826f193, 0x014b8b03, 0x074ac613, 0x33dc074c, 0x0bd33346, 0x70dd03d4, + 0x07d30b22, 0xf89f7e0d, 0x2c2707f6, 0x071d0748, 0xcd7fbe05, 0x6df29300, + 0x24d10347, 0x4beb03f0, 0x03f024d5, 0x03fb985e, 0x22ccc0c1, 0x07ad1e11, + 0xf8737e05, 0xfb870fe6, 0xff7e0507, 0x071907f7, 0xf99f7e08, 0xa1030176, + 0xffae97be, 0x1e18a2c0, 0x03f45111, 0xf8f45541, 0x27fb34f3, 0x27081e70, + 0x5ec027a0, 0x0707ff77, 0xf58ef243, 0xa007f74e, 0xf893d007, 0x27036414, + 0x11421e70, 0x217103db, 0x01bae6d0, 0x07900782, 0x2c9f03ca, 0x0b0003ea, + 0x0bb2cec0, 0x0c071907, 0x005bf1be, 0x1b070786, 0xf4be0c07, 0xd411ffdc, + 0x84050907, 0xd421d211, 0x84151c07, 0x005bf6be, 0x8803d803, 0x74caa401, + 0x69fd93bb, 0xd2990359, 0x0ad49909, 0x931d24ce, 0x025f63f3, 0x23134c27, + 0x07340521, 0x15182703, 0xdcb5be32, 0x09d499ff, 0x8e0ad49d, 0x99f94ef7, + 0xc0070904, 0x4b99400b, 0x874b070b, 0x2b44333b, 0x334b0b43, 0x0bd40743, + 0x2dd399d0, 0x9c039407, 0x8cdac144, 0xd4c136e6, 0xe3090b54, 0xd4c50c4c, + 0xf7187e54, 0xd49d4027, 0x07121e2d, 0x1c0d030a, 0xff3a7e01, 0x090b0c07, + 0xffe25dbe, 0x3b07a946, 0x4b87a119, 0x463ef093, 0x2b343303, 0x2402d134, + 0x0b412704, 0xcb413b3b, 0x0b333342, 0x2404d53c, 0xc5402704, 0xc4998c34, + 0x23c30109, 0x09c49d41, 0x072b31c0, 0x334b873b, 0x0b342b34, 0x0b33333b, + 0x2a34993c, 0x32994626, 0x1141272e, 0xab423bc3, 0x1ec31534, 0x0bc49909, + 0xc49d4123, 0x874b070b, 0x2b44333b, 0x334b0b43, 0x274c0b43, 0x2c439d30, + 0x0a54c4d1, 0xc4d54103, 0xf98e0a54, 0x0f6bfa4e, 0xf3930be6, 0x01035868, + 0x3441c034, 0x07093199, 0x0c0c0303, 0x1f03102b, 0x0003dfe1, 0x0319191e, + 0x43070103, 0x44332387, 0x430b422b, 0x31274333, 0xe00143fd, 0xf1280003, + 0xf27e061e, 0x93061efe, 0x03582bfd, 0x0709d499, 0x2742360d, 0x01fa93c0, + 0xfb930356, 0xd1034570, 0x2703f0b4, 0x8bdc3bd1, 0x06a0014d, 0x074c0748, + 0x3336333c, 0x03430b43, 0x0b22704d, 0xe160be04, 0xf0b4d1ff, 0xd54deb03, + 0x0303f0b4, 0x22ccc4c1, 0x0dfc93cf, 0xd0270358, 0x4786c419, 0x4d870d07, + 0x042b0433, 0x03330d0b, 0xe0180f03, 0x2fbe0003, 0x4027ffe1, 0xd103c41d, + 0xc468cc03, 0x27da19dc, 0xb1f49330, 0x43050357, 0xf54efa8e, 0xffff4ea7, + 0xa1f293ff, 0x27010357, 0x062043d1, 0x3123a007, 0x07ac09c1, 0xd5f06307, + 0x03062043, 0xb027602c, 0x80210d23, 0x01191c27, 0x03949123, 0x342e682c, + 0xf190b103, 0x4b873b07, 0x342b3433, 0x33333b0b, 0xe02834f1, 0x4cdc0003, + 0x93610e0c, 0x4c834307, 0xa348240c, 0x07936532, 0x333b874b, 0x0b432b44, + 0x0343334b, 0x03dfd44f, 0x5442c100, 0x4c039361, 0x6532ab44, 0x03390793, + 0x122c2738, 0x34033101, 0x44034105, 0x4b07f2a8, 0x44333b87, 0x4b0b432b, + 0x3310a399, 0xd44f0343, 0x530003df, 0x2e439d31, 0x9d05a399, 0x94892a43, + 0x27412420, 0x99041e20, 0x4b0713a2, 0x44333b87, 0x4b0b432b, 0x42fd4333, + 0x0003e001, 0x8962ad99, 0xa0c160a4, 0x27d4585c, 0x1ec02700, 0x99c40703, + 0x4f7616a4, 0x4b072936, 0x44333b87, 0x4b0b432b, 0x49f54333, 0x0003e060, + 0x440af193, 0xd1931903, 0x27042412, 0xab433b41, 0x2414d542, 0x874b0704, + 0x2b44333b, 0x994b0b43, 0x433304a1, 0xdfd44f03, 0x419d0003, 0x34a3c128, + 0xc53840c5, 0x30a73c43, 0x994043c5, 0x44d804a4, 0x1ed2e356, 0x2a71c452, + 0x3b874b07, 0x432b4433, 0x43334b0b, 0xe06049f5, 0x94190003, 0x43aef293, + 0xd1170703, 0x3b042423, 0xab410714, 0x2424d543, 0x873b0704, 0x2b34334b, + 0x333b0b34, 0xd43f0333, 0xc10003df, 0x40123834, 0xc13830c5, 0x34c534a4, + 0x9d402740, 0x4b072834, 0x44333b87, 0x4b0b432b, 0xe0274333, 0x560ef893, + 0x96512703, 0x075027d4, 0xed68836d, 0x03e0044c, 0xf9551e00, 0x03dfe0e0, + 0x07c02700, 0x33408720, 0x0b242b24, 0x03233320, 0x03dfd42f, 0x2a249900, + 0x24994666, 0x3ca3c12e, 0x138b143b, 0xc1271486, 0x012a2c9d, 0x27412484, + 0x07f10511, 0x33308740, 0x0b432b44, 0x33f30140, 0xd44f0343, 0x9d0003df, + 0x469d2943, 0x99e1032d, 0xf5050984, 0xe4da1127, 0xc08401a3, 0x8e112f41, + 0x073ca2c1, 0xeb30274e, 0x8b031e42, 0x07030741, 0x6b112314, 0x9631030f, + 0x79f39342, 0x34990355, 0x2b2e8b0b, 0x0b349d40, 0x061e3215, 0x849d4027, + 0x873b070b, 0x2b34334b, 0x333b0b34, 0xd43f0333, 0x990003df, 0x41232b34, + 0x1c2b349d, 0x277124d2, 0x29349d41, 0x4b87cb07, 0xc42bc433, 0xc333cb0b, + 0xdfd4cf03, 0xc4c10003, 0x2dc39954, 0x8e838407, 0xcb010000, 0x54c4c548, + 0x551afd93, 0xd1399603, 0x070a50d4, 0xd541030d, 0x070a50d4, 0xf2a17e1b, + 0x0a50d4d1, 0xc4c56127, 0x09d09934, 0x0738ccc1, 0x27db0710, 0x1e1103e0, + 0x0c4ce37f, 0x9954c4c5, 0x602709d4, 0x94614616, 0x00004e58, 0x9d412701, + 0x201e2cc4, 0x4b87cb07, 0xc42bc433, 0xc333cb0b, 0x0f030c07, 0x0003e018, + 0x27f2c97e, 0x00c4fd40, 0x070003e0, 0x334b873b, 0x0b342b34, 0x2733333b, + 0xa1f09340, 0x1b070354, 0xe00134fd, 0x307e0003, 0xf9501ef2, 0x03dfe0e4, + 0x87240700, 0x2b243334, 0x33240b23, 0xd42f0323, 0x990003df, 0x45962924, + 0x323824c1, 0xf0e1034c, 0xf493daf1, 0x07035468, 0x032e0730, 0x03140731, + 0x03dfe02f, 0x09439d00, 0x24190b1e, 0x2d1de103, 0xd4072103, 0xca091499, + 0x3b07f1e4, 0x34334b87, 0x3b0b342b, 0x3f033333, 0x0003dfd4, 0x932a3499, + 0x03542bf1, 0x68264496, 0x9616a499, 0x1871c047, 0x030b1499, 0x0b149d41, + 0x349965f6, 0x2712112e, 0xab343b31, 0x06131532, 0x01f4938d, 0x43990354, + 0x0704070c, 0x33238743, 0x0b422b44, 0x0b433343, 0x5443c140, 0x83ab1027, + 0x1e5448c5, 0xe013f91d, 0x030003df, 0x87430711, 0x2b443323, 0x33430b42, + 0xfd312743, 0x03dffd43, 0x09049900, 0x99df14da, 0x4a06b9a4, 0x53b6f093, + 0x09049903, 0x43f948c6, 0x0003dfdf, 0x23874307, 0x422b4433, 0x4333430b, + 0xdfff44f9, 0x45960003, 0x1efa547e, 0xfa4f7e06, 0xfd93061e, 0x99035388, + 0x0d0709d4, 0x44f94986, 0x0003dfdf, 0x34872407, 0x232b2433, 0x2333240b, + 0xdfd42f03, 0x24990003, 0x9945e629, 0x4fc62b24, 0x7e061ecd, 0x0b1efa19, + 0x5352fd93, 0xa5fa9303, 0xdc990340, 0xbecb0609, 0x4affcaaa, 0x09d3990c, + 0xc235a499, 0xd4992834, 0x08d29909, 0xdfdf44f9, 0x2f4b0003, 0x34871407, + 0x132b1433, 0x0d07140b, 0x242e1333, 0xdfff14f9, 0x4fc60003, 0x0df493b7, + 0x44990353, 0xf64c3609, 0xd894616b, 0x0100004e, 0x870b0736, 0x2b04334b, + 0x330b0b04, 0x03c00703, 0x03dfd4cf, 0x2cc49900, 0xc4c147c6, 0x180f0354, + 0xa30003e0, 0x0140004e, 0xc4c544e3, 0xdc38be54, 0x9d4027ff, 0xf0432cc4, + 0xfc4ef58e, 0xfe93f163, 0x270352e8, 0x27202700, 0xe419191c, 0x303b3127, + 0x0368ec03, 0xab448601, 0x93f17023, 0x03529ffc, 0x9909c199, 0xc4110bc3, + 0xa3d4f093, 0x5df2be00, 0x1ed02700, 0xe0d2f93e, 0x030003df, 0x873207d1, + 0x2b343342, 0x33320b34, 0xd43f0333, 0x990003df, 0x34992b3e, 0x99fe0529, + 0xfe152c3e, 0x252d3e99, 0x2a3e99fe, 0x3e99fe35, 0xc1fe452e, 0xb1be3833, + 0xc499005d, 0x931d0709, 0x00a3cef0, 0x43b7d4da, 0x4efc8ef1, 0xb90499fb, + 0xb107d007, 0x4616c207, 0x049d4127, 0x1cf093b9, 0x70be00a4, 0xc5e6ffb6, + 0x874cd2c1, 0x0b4c873b, 0x0541a332, 0x4efb8e34, 0x07f0a3f9, 0x07a0079f, + 0x03b307c2, 0xbe211e94, 0x01ffb5dc, 0x07f411f3, 0x07342b10, 0x054c2b4b, + 0x070a07f3, 0x074302d4, 0x3e2d07d3, 0x07cd0ba7, 0x072f071c, 0xca0a0739, + 0xf083d6cb, 0x4ea7f98e, 0xb9ffffff, 0x930e2543, 0x035c2ff4, 0xe498439d, + 0xa7010a32, 0xfdefff3e, 0x34d54027, 0x34d50e00, 0x2ea70e04, 0x11fd9fff, + 0x004ee324, 0x24150200, 0x34d54327, 0x34d1022c, 0x45860638, 0xd8234f9b, + 0x0000004f, 0x1ea7f101, 0x27fbffff, 0x1812d140, 0x1814d502, 0x1013d102, + 0xddf49302, 0x43c5035b, 0x27202894, 0xd10b1e10, 0x83021811, 0xffffff1f, + 0xff3ea70f, 0x4327fdef, 0x022834d5, 0x24a12307, 0x27fc48dc, 0x2824d544, + 0x2c24d502, 0xd5302702, 0xa7063823, 0xfdebd72e, 0x4f272305, 0x05040000, + 0xf39b2415, 0x91f0930e, 0x04c1035b, 0x9a039980, 0x04c5412b, 0xa7184680, + 0xffffff4e, 0x0b9a44b9, 0x4c83432b, 0x0b43330f, 0x11430140, 0x0b312b42, + 0x05411512, 0xa73a1e43, 0xffffff2e, 0x0b9a24b9, 0x432b3a06, 0x330f4c83, + 0x4444f143, 0x360003ea, 0x23430748, 0x9a049d41, 0x24bd4127, 0x23990635, + 0x9b40270f, 0x41270ef4, 0x34f53387, 0xff02b040, 0x4ea73127, 0xbdffffff, + 0x0b0e2543, 0xa7fe4efe, 0xffffff0e, 0x0e2504b9, 0x936541c4, 0x035b0bfe, + 0xb690e4c1, 0x2603b945, 0x2704b90e, 0x5043ce0e, 0xebd73ea7, 0x051027fd, + 0x004f2731, 0x15050400, 0xbd422734, 0x9b0e2504, 0xe2c10ef1, 0x94e4c18c, + 0xffff3ea7, 0x1432d5fb, 0xd548a302, 0xa7021034, 0xfd9fff2e, 0x4ee32421, + 0x25020000, 0x27231124, 0x2404bd40, 0x003ea30e, 0xe19d0200, 0x8e231599, + 0x7efe4efe, 0xf493fe6a, 0x27035aa0, 0x9d302720, 0x42c59a43, 0x8042c594, + 0x8e8442c5, 0xff3ea7fe, 0x4027ffff, 0xbd271c27, 0xbd0e2734, 0x270e2634, + 0x75f39320, 0x4107035a, 0x11233205, 0xf4b83403, 0x4ea73027, 0x93ffffff, + 0x035a5ff2, 0x0e2543bd, 0xc58421c5, 0xfe0b8021, 0xffff3ea7, 0xbd4027ff, + 0xbd0e2434, 0xbd0e2734, 0x270e2634, 0x0ef49b40, 0x3ea7fe0b, 0xb9ffffff, + 0xe60e2530, 0x29f29309, 0x24c1035a, 0x9944f690, 0x48069924, 0x0e2631b9, + 0x0e2732b9, 0x34b90120, 0x46060e24, 0x422b4107, 0x4c134f6b, 0x5e491010, + 0xfe0bfee5, 0x26a80499, 0x674ea746, 0x04c5fff4, 0xc5410338, 0xfe0b3404, + 0xffff4ea7, 0x234411fe, 0xfff4704e, 0x233404c5, 0x3804c548, 0x3ea7fe0b, + 0x27f9ffff, 0x1111112f, 0x004d2711, 0x03320502, 0x27f4c834, 0x0ef49b40, + 0x9b6af49b, 0xf49b6bf4, 0x63f49b62, 0x049d3027, 0x4c039da9, 0xc55004c5, + 0x04c55404, 0x4404c590, 0xc54804c5, 0x04c5a004, 0x4004c53c, 0x9d4d049d, + 0x049d8b04, 0x8a049d8c, 0x3ea7fe0b, 0x27fdebdf, 0x27340540, 0x0400004f, + 0x27341504, 0x0ef49b40, 0x9b6bf29b, 0xf29b62f2, 0x63f29b6a, 0x9b181ca3, + 0xfe0b60f1, 0xffff4ea7, 0x094499fe, 0x34874383, 0x432b4433, 0x004d44f9, + 0x41c4ff00, 0x05f3930e, 0x349902a3, 0x9d47838b, 0xfe0b8c34, 0xf293fc4e, + 0xc102a2f4, 0x23c1502e, 0x07e33340, 0x084e2b43, 0x99e30740, 0x2499312d, + 0x1bc20730, 0x6b24074d, 0x31171e2f, 0x07034104, 0x33430b21, 0x6b4e1b43, + 0x11404c2f, 0x8e000101, 0x834207fc, 0x33040741, 0x2b433305, 0x03120704, + 0x03340c0f, 0xce110300, 0xc0c1d2d2, 0xd4c1c1d0, 0xf393fc8e, 0x9902a298, + 0x0f6baa34, 0x309d4223, 0x144f6bb0, 0x00270f4c, 0x0bbc30c5, 0x7df493fe, + 0x40c102a2, 0x4efe0bcc, 0xc60f6bfa, 0x044f9b05, 0xf7ff3ea7, 0x1e410bf9, + 0x043f9b0b, 0xf7ff4ea7, 0x07310bf9, 0x27e407d3, 0x271800ad, 0x060700bf, + 0x27c42704, 0x0706001d, 0x070f6b0b, 0x03233320, 0xe8031e24, 0x0024f1f3, + 0x27ff0210, 0x184c3333, 0xc01d4c53, 0x4007ee44, 0x4ef54533, 0xff021800, + 0x180441f5, 0x3027ff02, 0xe8004e23, 0x034335fd, 0xfde8004e, 0x18104df5, + 0x41f5ff02, 0xff021814, 0xe7f04e23, 0x2b4335fd, 0x07c244a1, 0x1ec1274a, + 0x07c12307, 0x0bc58641, 0x53d10be1, 0x1e1407b8, 0x000f2797, 0x27040607, + 0x6b200714, 0x0323332f, 0xe8031e24, 0x0024f1f3, 0x27ff0210, 0x6a4ddc33, + 0x0853f2fc, 0xfa8ef110, 0xd007fb4e, 0x2f6bb107, 0x00ff4f27, 0xf49b4000, + 0x7e020761, 0xfc93ff06, 0x2702a19c, 0xc8c4c540, 0x26c4c4c5, 0x070d07d7, + 0xb1c6be1b, 0x334d07ff, 0x534f6bd8, 0xc4c518dc, 0xc8cdc5c4, 0xd494c4c1, + 0x1980004d, 0x0d274636, 0x10078000, 0x10be2027, 0xc0c5005d, 0x004d2798, + 0x94c4c580, 0xfd4efb8e, 0xa14bf493, 0x66441902, 0x93302745, 0x035817f4, + 0xdd274305, 0xf0930600, 0x7e02a13c, 0x3ea7fd70, 0x27f9f7ff, 0x054d0720, + 0x03d12332, 0x93f4b834, 0x02a123f0, 0x93fd817e, 0x02a11bf0, 0x20271027, + 0x93fdc97e, 0x02a10ff4, 0x9d7f3ca7, 0x3c27b043, 0xac43c5f7, 0x4dc530a7, + 0xaa439d9c, 0xc5bc4dc5, 0x4dc5c04d, 0x4efd8eb8, 0xddf493fe, 0x4ce30253, + 0x9b071e7f, 0x4c0308f4, 0x004fd080, 0xf4000307, 0xa0d2f393, 0x8c329902, + 0x078a3499, 0x9d42ab03, 0xaabe8c34, 0x002700c3, 0x53aef193, 0xfe417e02, + 0x93604f9b, 0x0253a3f3, 0x200034d5, 0xd5634f9b, 0x9b200434, 0x34d5624f, + 0xfe8e2008, 0x05634f9b, 0x91f49304, 0x43c102a0, 0x9903153c, 0x039db043, + 0xaa439908, 0x9909039d, 0x039dac43, 0x8b44990a, 0x0b0b049d, 0x634f9bfe, + 0xa06af393, 0xc5412302, 0xfe0b4034, 0x0399fd4e, 0x83d0078a, 0x2734d637, + 0x99fd8e00, 0x4fa38b04, 0xffffffa0, 0x049d43ab, 0x630f9b8b, 0xbe40d0c5, + 0x0700c40a, 0xc2e9be0d, 0x8bd49900, 0x46180027, 0xfd8e0127, 0xf293fe4e, + 0xc102a024, 0x4f9b4023, 0x1134ce63, 0x388b2499, 0x4ca3104c, 0x8b249d20, + 0x00c395be, 0xa006f093, 0x8c049902, 0xab8a0399, 0x8a049d43, 0x049d4027, + 0x623f9b8c, 0xce634f9b, 0x893e0943, 0x022704c6, 0xf093fe8e, 0x99029fe0, + 0x4c838b04, 0x104c24f0, 0xfe8e0027, 0x8b9c04c1, 0x4efe8ef4, 0xff4ea7fb, + 0x0cc1ffff, 0x9a4bb938, 0x27d0070b, 0x009d5e00, 0xd0994307, 0x0f4c8331, + 0x0183e407, 0xe3334533, 0x2007e40b, 0xee233007, 0x33fff464, 0x2b353323, + 0x0be17132, 0x81e2613d, 0x413135e4, 0x07420be1, 0x83342521, 0x3127802c, + 0x30272496, 0x26332307, 0x27a31138, 0x1c38151e, 0x1e23a310, 0x001d380e, + 0x1e21a304, 0xa3100c06, 0x4007802c, 0x03334533, 0x4d0b402b, 0xc114429d, + 0x403154d1, 0xc3194145, 0xc115439d, 0xe12154d3, 0x300be231, 0x42154105, + 0x1954d3c5, 0x030127c4, 0x99c41d41, 0xd39931d4, 0x03410330, 0x31d49d31, + 0x9930d39d, 0x42d430d4, 0x07c3190c, 0xfc4b2b43, 0xff56804c, 0xfa4efb8e, + 0x99310499, 0x0bc13003, 0x07432b34, 0x6bd107e4, 0x1ea027ef, 0x41313141, + 0x33210b32, 0x2b420723, 0x9941284d, 0x4cd81434, 0x34994620, 0x104cdc14, + 0x0e44d817, 0xd24e15b6, 0x1b320499, 0x804cd84e, 0x03b4192f, 0x99b41d41, + 0xec073004, 0xef6b4123, 0x2730049d, 0x834e07a1, 0x33340741, 0x2b433335, + 0x31049934, 0x300bce07, 0xe4cec103, 0x41051ea9, 0xc1041e34, 0x04c55404, + 0xa7a7e650, 0xffffff3e, 0x34bd4127, 0x33990635, 0x9b40270f, 0x41270ef4, + 0x34f53387, 0xff02b040, 0x99310499, 0x03993002, 0x6b422b32, 0x18342b4f, + 0x049d803c, 0x4efa8e32, 0x51f093fd, 0x36be029e, 0xfd9300c1, 0xc1029e48, + 0x0d0754d1, 0x13331103, 0x07ff357e, 0xfe6d7e0d, 0xf09301f6, 0x7e029e30, + 0xd1c1fa8e, 0x25f093a4, 0x2027029e, 0xd35efd0e, 0x07fb4efa, 0x070107b0, + 0xc1e0bec1, 0x070b0700, 0xff047e1c, 0xfb0e0b07, 0x4efe3a5e, 0xf1f493fc, + 0x4ce30250, 0x9b071e7f, 0x4c030cf4, 0x004fd080, 0xf4000307, 0xf49b4027, + 0xe1f0930e, 0x157e029d, 0x930127fa, 0x0250cbf1, 0x93fb5e7e, 0x0250c3fc, + 0x9dcaf093, 0x00c1d102, 0x04c2d120, 0x7ed00720, 0xd499fa72, 0xd147588a, + 0xd12004c3, 0xce2008c4, 0xd4992834, 0x0744f630, 0xfdd97e0d, 0x2004c1d1, + 0x9940d4c1, 0x411b4cd2, 0x40082432, 0xf0932027, 0x0e029d8c, 0xc2a59efc, + 0x4efc8e00, 0x63cf9bfc, 0x9d7af093, 0x3c01c102, 0x90be2027, 0x4f9b00c2, + 0x4e002763, 0x2701274c, 0x65f49b48, 0xfb4efc8e, 0xfd93b007, 0xc1029d58, + 0xd29940d4, 0x324b1b4c, 0x27400824, 0x070d0720, 0xc261be1b, 0x44c00700, + 0x634f9b03, 0x1e40d4c5, 0x630f9bdf, 0x00c0fdbe, 0x0744d1c1, 0xfe207e0d, + 0xc4aad499, 0x4f9b1b41, 0x40d3c163, 0x4f50432b, 0x70000001, 0x03634f9b, + 0x0000004f, 0x40d4c5f0, 0x0d07c444, 0xd6fd367e, 0x0c07a60f, 0xfd4efb8e, + 0x0401d007, 0x2b633f9b, 0x7140c843, 0x24090399, 0x93f25331, 0x240d1e06, + 0x09f25332, 0x53051e05, 0x930370f2, 0x029ccff4, 0xc5aa439d, 0xd0999c42, + 0xfa287e08, 0xbe0ad099, 0x9b00bff2, 0xd00160f0, 0xc0ff557e, 0xf393f902, + 0x99029cac, 0xd2118a34, 0xc10e41d8, 0x42079033, 0x432b3333, 0x23074108, + 0x9c92f493, 0x3c42c502, 0x270bdd99, 0x8b4d9d30, 0x9b8c439d, 0xfd0e630f, + 0x00c0499e, 0xfd4efd8e, 0xf093d007, 0x7e029c70, 0xf493fca3, 0xc1029c68, + 0x42994043, 0x2b4d074c, 0x08243243, 0x07202740, 0x51f0931d, 0xfd0e029c, + 0x00c16a9e, 0xf093fc4e, 0xbe029c44, 0x9b00bf29, 0xf293604f, 0xc5029c38, + 0x3f9ba424, 0xd9f49363, 0x14070353, 0xc5d71c03, 0x3407a023, 0xe37f1ce3, + 0x34197f3c, 0xc2803c03, 0xf293f931, 0x930353bc, 0x029c0bf3, 0x01364c27, + 0x05340331, 0xa8240321, 0xf9f293f4, 0xf393029b, 0x270352c8, 0x3101364c, + 0x21053403, 0xf4a82403, 0x9be2fc93, 0xa4c1c102, 0x07a0c2c1, 0xf88c7e0c, + 0x0ea0c0c1, 0xff585efc, 0xf093fc4e, 0xbe029bc8, 0x9b00bead, 0xf293604f, + 0xc5029bbc, 0x3f9ba424, 0x85f49363, 0x14070352, 0xc5d71c03, 0x3407a023, + 0xe37f1ce3, 0x34197f3c, 0xc2803c03, 0xf293f931, 0x93035268, 0x029b8ff3, + 0x01364c27, 0x05340331, 0xa8240321, 0x51f493f4, 0x42b90352, 0xfd930180, + 0x06029b74, 0x07340727, 0xd83c030d, 0x01364c27, 0x05340332, 0xa8040302, + 0x271b1ef4, 0x38d3c141, 0xc5a8d49d, 0xd2c594d2, 0x190d0798, 0xf77e7e3c, + 0x1d38d4c1, 0x3dfc934c, 0xc1c1029b, 0xa0c2c1a4, 0xe77e0c07, 0x8ac499f7, + 0xc10b47d8, 0xc3c190c4, 0x4e4333a0, 0xa0c0c134, 0xa35efc0e, 0x93fc8efe, + 0x029b13f4, 0x5e4040c1, 0xf54efe96, 0x99310499, 0x02c13003, 0x07432b98, + 0x07f0a3c4, 0x07cf6bd0, 0x278027b2, 0x27502790, 0xff6ea7a0, 0x7ea7fde7, + 0x05fde7ef, 0x5ef115f2, 0xec07009f, 0x4e07e183, 0x43333e07, 0x342b3533, + 0x30313d0b, 0xf1113441, 0x2407400b, 0x212b2333, 0x23732703, 0x20072002, + 0xa4d63321, 0x522b5407, 0xd4c11a07, 0xca120b94, 0x030b6d41, 0x0bce022b, + 0x1e24d627, 0xa7f3e823, 0xfdefff3e, 0x33273411, 0x53184c33, 0x44c01d4c, + 0x156005ed, 0x35402762, 0x157b0564, 0x07743572, 0x3335333e, 0x0b3e2be3, + 0x1430993d, 0x0ca34807, 0x9d49ab20, 0x44d61430, 0x39113801, 0x47834007, + 0xc4074566, 0x0710cca3, 0x071d1ea1, 0x0741034c, 0x6bb20bc4, 0x99a107cf, + 0xc4ee31d4, 0xcc27ff5e, 0xe8051e10, 0xa7061ef3, 0xfdefff2e, 0x33272411, + 0xfc6a4ddc, 0x07f111ef, 0xfb147e0d, 0x9931d499, 0x432b30d3, 0x2f6b2407, + 0xd632d29d, 0x1e0027a4, 0x8321233f, 0x07420721, 0x33433312, 0x0b142b15, + 0x9d40271d, 0x1c9d1514, 0x35f40114, 0x0515451a, 0x25191518, 0x30d49914, + 0x0390d5c5, 0x30d49d41, 0x0750d5c5, 0xbe30270d, 0x1100bdd7, 0x83033300, + 0x4ef58ef0, 0x440dc1f8, 0x9107c007, 0xd7e3a207, 0x0c078027, 0x00bc98be, + 0x1d070c07, 0x99fe9d7e, 0xb0078ac4, 0x0c074576, 0x27f9d27e, 0x27049641, + 0x07b82240, 0xdb4fd68b, 0xcdc1b4f6, 0x07d33350, 0xbe1abe0c, 0x07b00b00, + 0xbe0d071b, 0x0700bc45, 0x124d2b49, 0x07a027a4, 0x0e1a0709, 0xbbbe9ef8, + 0x93fa4e00, 0x02995ff4, 0xc14c4399, 0x439d3c0a, 0x0730274d, 0x4c439dc0, + 0xd4c1d407, 0x4cd39940, 0x34324a1b, 0x400c2027, 0x0d072307, 0x54be1a07, + 0xb00700be, 0x4f9b0344, 0x40d4c563, 0x0f9b3a1e, 0xbcf0be63, 0x44d1c100, + 0x137e0d07, 0xaad499fa, 0x9b1b41c4, 0xd3c1634f, 0x50432b40, 0x0000014f, + 0x634f9b70, 0x00004f03, 0xd4c5f000, 0x240d0740, 0xf9297eb4, 0x93a40fd6, + 0x0298ebfd, 0x9d4dd499, 0xb4e04cd4, 0xb2c4010c, 0x8bc3991b, 0xa38ac499, + 0x4783203c, 0x0c0734ab, 0xbe8bc39d, 0x2700bb7b, 0x99fa8e02, 0xd49daac3, + 0x2740274d, 0x4cd49d00, 0x0cbeb347, 0x0f9b00bf, 0xbc78be63, 0xbe0b0700, + 0x9900bf92, 0xd49d4dd4, 0x9e0bea4c, 0x64df9b00, 0xdc534827, 0x65f49b18, + 0x9b2fb9d0, 0xf49b643f, 0x183c5365, 0xd3ab3833, 0x1e11bcd0, 0x27644f9b, + 0x65f39b38, 0x9b642f9b, 0x4c5365f3, 0x104c3318, 0xffff2ee3, 0xab42abff, + 0x9d4027d4, 0x4d078bc4, 0x4fd44123, 0x0fffffff, 0x634f9b2b, 0xc4c50407, + 0xbc10be40, 0x40c4c100, 0xd40bd333, 0xc5c0c0c1, 0x8cbe3ccd, 0xc49900be, + 0xa300278b, 0xc49d104c, 0x9bfa8e8b, 0xc4c5634f, 0x19f49340, 0x42c10298, + 0x624f9b40, 0x99631f9b, 0x412b8bc3, 0xff002f03, 0x242b7fff, 0x1e403ca3, + 0x8ac4991e, 0x9b2246d8, 0xc399632f, 0x8ac4998b, 0x3ca307e3, 0xc5478320, + 0x34ab40c2, 0x0227200b, 0xc58bc39d, 0xfa8e3cc2, 0xfa8e0427, 0xf393fa4e, + 0x990297cc, 0xd0074c34, 0x274d349d, 0x4c349d40, 0x4b8b0499, 0x27402c4f, + 0x07711eb4, 0x99b027a3, 0xa3c18adc, 0x634f9b3c, 0xc10e34ce, 0x0d073cd1, + 0xb8be2027, 0xb00700bc, 0xbe630f9b, 0xc100bb5e, 0x0d0744d1, 0x07f8817e, + 0x7eb4440d, 0x0ba6f7b7, 0xc636ce1e, 0x9b3ca4c1, 0x432b633f, 0xdc99412c, + 0x99c1a38a, 0x3c078bd4, 0x4ca33783, 0x9d43ab20, 0x0d078bd4, 0x00ba0abe, + 0xb227c618, 0xa38bd499, 0xffff804f, 0x8bd49dff, 0x996db2c0, 0x4f4b8bd4, + 0x275a40cc, 0xbe24be01, 0x30d49900, 0xb42744d6, 0x4f9b4b1e, 0x8ad39963, + 0x5840d4c5, 0x90d4c131, 0x191e4333, 0x9716f493, 0x4044c102, 0x9b623f9b, + 0x322b632f, 0xff004f03, 0x432b7fff, 0x273cd4c5, 0xd49d104c, 0x0706b68b, + 0xf6927e0d, 0xd1c105c6, 0x270d0744, 0xf7e07eb2, 0xb027031e, 0x96def493, + 0x4d439902, 0x074c439d, 0x4efa8e0b, 0x63bf9bfa, 0x96cafa93, 0xc1b78302, + 0x4f9b3cac, 0x1fdc2763, 0xdb2bc42b, 0x9b624f9b, 0x432b633f, 0x0718d4d2, + 0xbd98be0d, 0x0fd0d200, 0x9b3ca4c1, 0x432b633f, 0xa4274032, 0xa027031e, + 0xecbe0027, 0xdf9b00bc, 0x89f49364, 0x40c10296, 0xbcddbec0, 0x27c12c00, + 0x07fa8e01, 0x002f032d, 0xcc800000, 0x270c20cc, 0x3c2b203c, 0x433b40a7, + 0xb103248b, 0x4b5b4207, 0x002744c6, 0x0127fa8e, 0x0027a486, 0xf54efa8e, + 0x964af493, 0x4c439902, 0x439df0a3, 0x276f074d, 0x4c439d30, 0xb407c007, + 0xffff5ea7, 0x936403ff, 0x034c5ff7, 0x99108c27, 0x4fe6a8c4, 0x54b9015d, + 0x4fe60e25, 0xf9ab0155, 0x07630f9b, 0xbe2f0716, 0x26010f57, 0xc4c4c10c, + 0x19804c24, 0xc145c6f4, 0x4cc4c8c4, 0xf4191480, 0x110f41c4, 0x7e0223f0, + 0xd007f88e, 0x1eccc8c5, 0x7ef0110d, 0x4227f882, 0xc4c5d007, 0x90dff6cc, + 0x0f65be00, 0xf1ccbe01, 0x00855eff, 0xfff1c5be, 0x338474c1, 0x9bf41543, + 0x432b633f, 0x116a40c8, 0x40b4c1fa, 0x1b4cb299, 0x0824324a, 0x07202740, + 0xbe1a070b, 0x0700babf, 0x0b03c4d0, 0x27634f9b, 0x40b4c5d2, 0x0f9b4a1e, + 0xb958be63, 0x44b1c100, 0x7b7e0b07, 0xaab499f6, 0x9b1b41c4, 0xb3c1634f, + 0x50432b40, 0x0000014f, 0x634f9b70, 0x00004f03, 0xb4c5f000, 0x0ad4c440, + 0x907e0b07, 0x1e05a6f5, 0xc4d4e6a1, 0x031e0ad4, 0x4027d427, 0xeb8bc49d, + 0x99181ef9, 0x46fc8ac4, 0x40270095, 0xc49dd427, 0x008f5e8b, 0x000db8be, + 0xd3e0d007, 0xd2c4ff03, 0x8ac49911, 0x47830c07, 0xbe8bc49d, 0x1e00b7cb, + 0x6edfd671, 0x99634f9b, 0xc4c58ac3, 0xc1315840, 0x433390c4, 0xf493191e, + 0xc10294fc, 0x3f9b4044, 0x632f9b62, 0x4f03322b, 0x7fffff00, 0xc4c5432b, + 0xc0c0c13c, 0x9d104c27, 0x34be8bc4, 0xc4c100bb, 0x004fa3bc, 0x9b400000, + 0x402761f4, 0x1eb4c4c5, 0xbe002721, 0x9b00bb1b, 0x87be630f, 0x0d2700b8, + 0x9fbe2000, 0x0ff600bb, 0x685eff7c, 0x1ed227ff, 0xa1f49381, 0x43990294, + 0x830d074d, 0x4c439df0, 0xfb4ef58e, 0xd007b107, 0x0cc0bf6b, 0x01245f20, + 0xfe34f453, 0x02240d1e, 0xfcaaf453, 0xf453051e, 0xfc93fb11, 0x99029470, + 0xc4c5b0c0, 0xaacd9d9c, 0x27f1c97e, 0x3cc4c540, 0x4c27d220, 0xa7041e31, + 0xc49d7f4c, 0x93b6468b, 0x02944bf4, 0x83ac40c1, 0x0ca30f0c, 0x27041e10, + 0x6fbe180c, 0xf49300b7, 0xc1029434, 0xfb0ec040, 0x00ba869e, 0xf293fb8e, + 0x270294fc, 0x13239941, 0x46e3249d, 0x89246936, 0x342b1a23, 0x240d4027, + 0x2d13249d, 0x27fe0b23, 0xd9f49331, 0x43bd0294, 0xfe0b0133, 0xffff3ea7, + 0xbd4327fe, 0x270be334, 0xdc34d540, 0xe034bd0b, 0xbd41270b, 0x270be134, + 0xe234bd42, 0x27fe0b0b, 0xc1040d40, 0x0399e804, 0x3804c512, 0xc5ec04c1, + 0x04896404, 0xc4042df0, 0x03890e34, 0x2a044910, 0x9e112734, 0x0b0005ed, + 0x07fc4efe, 0x300c03c0, 0x00ceb9be, 0x0c030c07, 0xceb0be5c, 0xbe002700, + 0x0e00cc1b, 0xb3c19efc, 0xbefd4e00, 0x93fff533, 0x02945bf0, 0xd23ed007, + 0xc412d499, 0x0d071344, 0xbe300c03, 0x0700cf1a, 0x5c0c030d, 0x00cf11be, + 0x40a73027, 0x9d13d39d, 0xd42512d3, 0xffdf0ea7, 0x4f2cbeff, 0x44d4c100, + 0x0738d1c1, 0xeb140b0d, 0x300c0314, 0x0006acbe, 0xc170d4c1, 0x0d0764d1, + 0x0c03140b, 0xbe14eb5c, 0xa7000699, 0xffffdf0e, 0xd89efd0e, 0xfc4e004e, + 0x93f2f493, 0x03240702, 0x07013f2d, 0x7f2ce334, 0x197f3ce3, 0x803c0334, + 0x93f932c2, 0x0293d7f3, 0x4c272027, 0x03320550, 0x93f4c834, 0x0293c7fc, + 0xe0a70c07, 0x0c03ce25, 0x27e02730, 0x27202717, 0x2724003d, 0x12ce9d49, + 0x0005dcbe, 0x16270c07, 0x3d272927, 0x4a271800, 0xbe5c0c03, 0x070005c9, + 0x047abe0c, 0x5efc0e00, 0xfb4efebc, 0x21260189, 0x33410702, 0x33b18748, + 0x1bc00714, 0x300c0314, 0x000654be, 0xcb8d4027, 0x88c0c58e, 0x8e8cc48d, + 0x21f94efb, 0x5dfa9304, 0x4c030293, 0x3ca4c538, 0xd0070331, 0x5968a3c5, + 0x9df06304, 0x038914a4, 0x8d90272a, 0x048924a3, 0x26a48d28, 0x9d180399, + 0x047917a3, 0x5116a49d, 0x1b029901, 0xcc83c107, 0x23c3330f, 0xffff84ce, + 0x4c070381, 0x44030a07, 0x05300c03, 0x06b6bef9, 0x51b00700, 0x1cd299d1, + 0x4c07d391, 0x45030a07, 0x055c0c03, 0x069ebef9, 0xd60b8b00, 0x1e0a2704, + 0x30d3c11f, 0xd516a499, 0x850124a9, 0x0744e6a3, 0xff507e0a, 0x4027dd51, + 0xa48dad25, 0x430027e4, 0x4ef98ef0, 0x03c007fc, 0xd4be300c, 0x0c070004, + 0x0e5c0c03, 0x04c99efc, 0xa3fb4e00, 0x89f055f1, 0xf08914fe, 0x07312316, + 0xa1fd93be, 0x340b0292, 0xf4a1b12b, 0xd38dd16d, 0x4ddb2d10, 0xd1c207d0, + 0x16012cd1, 0x1df41545, 0x8d4f07f4, 0xfe8d16f0, 0x07f25114, 0xe4dc8d34, + 0x5cbe0d07, 0xc00700ca, 0xd43106d6, 0x2b12d399, 0x20d4354b, 0x3e0d0734, + 0x9d442793, 0x0c0712d4, 0xfb8ef183, 0xf093fe4e, 0x7e02924c, 0xf093fdc5, + 0x7e029244, 0xf093fd93, 0x0e02923c, 0xff6d5efe, 0xfc93fb4e, 0x07029260, + 0xca3ebe0c, 0x07b00700, 0x2c0c030c, 0x00ca33be, 0x921af493, 0x3842c102, + 0x296441c1, 0x2b4e0943, 0x2b102b2b, 0xf0438d3e, 0xc5e842c5, 0xfb8eec41, + 0xfd93fd4e, 0x990291f8, 0x44c412d4, 0x27ba3e0d, 0xc999be00, 0xb141be00, + 0x030d0700, 0x04be300c, 0x0d070005, 0xbe5c0c03, 0xbe0004fb, 0x0effd35e, + 0xf0059efd, 0xa7fd4eff, 0xfdebc72e, 0x24054027, 0x00003f27, 0x23150903, + 0x230ef49b, 0x27240528, 0x0400003f, 0x9b231506, 0x2ea70ef4, 0x05fdebdf, + 0x003f2724, 0x15040400, 0x0ef49b23, 0xfff2b6be, 0x918af093, 0xbed00702, + 0x7e00026c, 0x29befcb0, 0xd499ffd3, 0x07442412, 0xfcc57e0d, 0xf49b4127, + 0x030d07a2, 0x8cbe300c, 0x0d070003, 0x0e5c0c03, 0x03819efd, 0xa7fc4e00, + 0xfeffff4e, 0xdea74411, 0xd1ffffff, 0x870624d3, 0x8843f544, 0x07ff000e, + 0x633f9b40, 0x40c8432b, 0x59fc931b, 0xc3990290, 0x9d40274c, 0xc39d4cc4, + 0xf2ecbe4d, 0x4dc499ff, 0x934cc49d, 0x02903ff4, 0x9d4c4399, 0x30274d43, + 0xd14c439d, 0x9b0e20dc, 0xf7be630f, 0x4f9b00b3, 0x633f9b62, 0xc4d2432b, + 0xbe0c070c, 0x1200b706, 0x634f9bc0, 0x900ef493, 0x4d439902, 0x8e4c439d, + 0x93f84efc, 0x0290d7f4, 0xd1124a99, 0xf6012c4d, 0xa7010daf, 0xffffff4e, + 0xfb430ea7, 0x1c4cd1ff, 0xc157be0e, 0xc4b00700, 0xffffff0f, 0x0c070aff, + 0x27ff547e, 0x07f88e05, 0xa7333330, 0xfd4fff4e, 0x48110027, 0x04d03cf1, + 0x39f1ff00, 0xff0004cc, 0x00b03cbe, 0xebff3ea7, 0x273a05fd, 0x0200004f, + 0x2734150b, 0x0ef49b40, 0x29070027, 0xa2be1c07, 0xf393ffd1, 0x93028f84, + 0x02a6c6f2, 0xe37f3ce3, 0x34197f2c, 0xc2803c03, 0xc907f932, 0x904ef493, + 0xd1c25302, 0x07012c42, 0xae4f9b3c, 0xc1232405, 0xf3a02403, 0xbafda027, + 0xff0004c0, 0xfb434ea7, 0x664479ff, 0x410ea745, 0x19befffb, 0x4ea7004e, + 0x93fd4fff, 0x029017f1, 0x10d14301, 0x4127012c, 0x9d12149d, 0x18d5e31a, + 0x13bd0138, 0x02510132, 0x24ce1421, 0xa72f6b2f, 0xfeffff4e, 0x110c2c33, + 0x002ea343, 0x4ea71000, 0xd5fddfff, 0xd5020842, 0x9d02084c, 0x1c9d6e1c, + 0x87005142, 0x8830f533, 0xd1ff000e, 0x03012c10, 0xf3be440c, 0xfc93fff1, + 0x21028fbc, 0x4ed451c3, 0x7e0d0734, 0x0b36fc4d, 0xc49d4027, 0xe0c49de1, + 0x2740d499, 0x30c4bd00, 0x40d49901, 0x4e234333, 0xd5fffaa4, 0x990120c4, + 0xc49d39d4, 0x34d4c115, 0x4327c435, 0xc112c49d, 0x44493cd4, 0x8e2cc48d, + 0x89fb4ef8, 0x03898c0c, 0x874c078e, 0x880dc12c, 0x3c2b4633, 0x038d422b, + 0x07d42b8e, 0xbec103b0, 0x1e00aeaf, 0x09b44916, 0x0b249bd3, 0x87b38123, + 0x0bd40342, 0x034d0543, 0xb28938dc, 0x27fc2826, 0x8cb38d30, 0x078eb489, + 0x4a315332, 0x0e0b0734, 0xfb985efb, 0x0027fb8e, 0xfe0bfe0b, 0xc007fc4e, + 0x0c031127, 0x162c27f4, 0x2d003d27, 0x36be4827, 0x0c070001, 0x27f80c03, + 0x172c2712, 0x2e003d27, 0x22be4827, 0x3ea70001, 0x27fdebbf, 0x27340540, + 0x0200004f, 0x2734150c, 0x0ef49b40, 0xfc4efc8e, 0x8ed2f493, 0x2c44d102, + 0x89e00701, 0xc1071044, 0xd29bd447, 0x0616d30b, 0x1a331407, 0x20270d07, + 0x004986be, 0x14010c1e, 0x070bd4c2, 0x48a2be1d, 0x05e00700, 0x8e0e07cd, + 0x27fb4efc, 0xe2049d41, 0x27e40489, 0x070b2930, 0xad030dd0, 0x2d011c04, + 0xc621be03, 0x1ec02700, 0x03d40917, 0xab4123c1, 0x96d40d4f, 0xc61fbe45, + 0x2704d600, 0x07081e07, 0xe6cbce0d, 0x40270027, 0x8ee2d49d, 0x21fc4efb, + 0x1ed0070c, 0x10d49957, 0x345b3c07, 0x41834307, 0x4487de51, 0x4d0bd319, + 0x4161d039, 0x4c072e07, 0x4e8b3533, 0x242b2103, 0x180030f5, 0x410bff02, + 0x180432f5, 0x1027ff02, 0xe8003e23, 0x033135fd, 0xfde8003e, 0x181034f5, + 0x32f5ff02, 0xff021814, 0xe7f03e23, 0x0b3135fd, 0xa1dc25c2, 0xa6c4ced4, + 0xd49d4227, 0x19fc8e12, 0x24300704, 0x9b412746, 0x3499a2f4, 0x1e448612, + 0x99fe0b85, 0x42041204, 0x0bff7c5e, 0x07fe4efe, 0x0b4623e4, 0x0f4c83e3, + 0x3d0e3c33, 0x83011d02, 0xf000003f, 0x2713333f, 0x104c3320, 0x12f543ab, + 0xff021400, 0x140414f5, 0x0e2dff02, 0xf49b4027, 0x4efe8e0e, 0x07d007fd, + 0xb570be01, 0x10d299ff, 0xd1a1d421, 0x4183425b, 0x323b3127, 0x310b4487, + 0x40654d0b, 0x1526d3a5, 0xfd0e0d07, 0x8eff185e, 0x63fb4efd, 0x07d007f0, + 0x99271eb1, 0xcb0710d1, 0xc183c15b, 0xcd0bcc87, 0xf405c461, 0xffb848be, + 0xa110d299, 0x3b4127d3, 0x27342b42, 0xa5c46540, 0x07d4a1d3, 0xce21270f, + 0xf043d2b4, 0xfc4efb8e, 0x67bec007, 0x0c0700c7, 0x345efc0e, 0x07fb4eff, + 0xbeb107d0, 0x5100c756, 0x07d221d4, 0xeb320b34, 0x2b430734, 0x25b42242, + 0x992307d3, 0x320710d4, 0x4307345b, 0x44874183, 0x43614d0b, 0x4207dc51, + 0xc28b4b0b, 0xd4250d07, 0xc30bd415, 0x07fef27e, 0x4efb8e0c, 0x120499fd, + 0x4244d007, 0x00c70dbe, 0xd49d4227, 0x4efd8e12, 0xa7d007f9, 0xffffdf0e, + 0xc107b207, 0xda99d9a1, 0xc6bcbe10, 0x10d09900, 0x1c072b07, 0xffb777be, + 0x0656b007, 0xf49b4027, 0xdf4ea70e, 0x0027ffff, 0xf98e4b05, 0xca5bc907, + 0x0d071c07, 0x47be1223, 0x402700c5, 0xa70ef49b, 0xffffdf3e, 0xd2993405, + 0x83d3a110, 0x3b4127c1, 0x0bcc8742, 0x07cd0b34, 0xa5cb650d, 0xfe077ed3, + 0xf98e0127, 0xd007fa4e, 0x07120099, 0x07b207a1, 0xc6230714, 0x8e012704, + 0x21d451fa, 0x10d399dc, 0xd285c40b, 0xc4ebd195, 0xa7343bce, 0xffffdf0e, + 0x00472dbe, 0x0d071c07, 0xa7feb87e, 0xffffdf0e, 0x0046fabe, 0x3b3b3127, + 0xc30b3123, 0x4c07c3eb, 0x41234b5b, 0x9d11d49d, 0xd35510db, 0xd4a1dca5, + 0xdc25dc15, 0x5114c4ce, 0x070d07f2, 0xff297e1a, 0x04964127, 0x04074027, + 0x0d07fa8e, 0x27fd887e, 0x0bfa8e01, 0x71f393fe, 0x4027025e, 0x4127341d, + 0x010034bd, 0xf4130027, 0x0b341559, 0x93fc4efe, 0x025e57fc, 0xdc07c411, + 0xf48b0c07, 0xc41904d6, 0x40274286, 0xfc8ec41d, 0xfe0bfe0b, 0xf4933127, + 0x1d025e38, 0x63fe0b43, 0xba4d27f0, 0x27f40d0b, 0xf42d284c, 0xf0011007, + 0xf0431803, 0xffbfee9e, 0x5e16f093, 0x00041102, 0x00a9794f, 0x0bd91e00, + 0x07fd4efe, 0x07f06310, 0x071803d0, 0xc024be0f, 0x2704d6ff, 0x091e1e04, + 0xba4d24f4, 0x40f4290b, 0x0627284c, 0x8844f193, 0x44d49e00, 0x09f41300, + 0x0027d415, 0xfd8ef043, 0x0da1fc4e, 0x010004b9, 0xc007f5a3, 0xc618dc03, + 0xbe0d0745, 0x27ffff47, 0x00c4bd40, 0x273f0701, 0x164c2720, 0x34033205, + 0xd201f4c8, 0x0f071d07, 0xffa182be, 0xf4930a16, 0xc1032344, 0x4c834444, + 0x3334070f, 0x2b448735, 0x33430734, 0xa7432b43, 0xfd4fff3e, 0xd20044f1, + 0x33110003, 0x13a843c5, 0xc41507f4, 0xfc8ef583, 0xf493fd4e, 0xc1032310, + 0xd0074443, 0x000f3f83, 0x00a18000, 0x3123304c, 0xfff03fa3, 0x3103ffff, + 0x45334307, 0x432b3387, 0x13331407, 0x1f03142b, 0x0003d154, 0xffaec3be, + 0xbe1b04c0, 0x61ff9d1f, 0x134138d4, 0x051e12f4, 0xff17f453, 0xd4150d07, + 0x27fee67e, 0x4efd8e00, 0xbed007fd, 0x56ffa980, 0xfef45305, 0x27d415fe, + 0x27fd8e02, 0x56049d41, 0x9d55049d, 0xfe0b5404, 0xf4933127, 0x9d0341fc, + 0xfe0b0443, 0xfe0bfe0b, 0xf093fe0b, 0x0b008787, 0x4efe0bfe, 0x271027fe, + 0x0027402c, 0xffe7a3be, 0x87be0227, 0xf49300ac, 0x270341d0, 0x93102730, + 0x00b13bf2, 0x43bd4205, 0x43d505d6, 0x43d5077c, 0x439d0780, 0x6a439d04, + 0x018443bd, 0xbd82439d, 0xbd05d243, 0xbd05d143, 0xbd018543, 0xbd03ab43, + 0xbd029843, 0xbd04be43, 0x9d077841, 0x20270541, 0x06e44d03, 0x05123c27, + 0xc8440342, 0x5df393f3, 0x20270347, 0x05404c27, 0xc8340332, 0x75f393f4, + 0x20270341, 0x05164c27, 0xc8340332, 0xbdf393f4, 0x20270341, 0x01604d27, + 0x34033205, 0xf493f4c8, 0x27034148, 0x8d05d83d, 0x30a70c43, 0x2746439d, + 0x2c4d0320, 0x133c2707, 0x44034205, 0xf093f3c8, 0x8e034134, 0xf4f493fe, + 0x040500b0, 0x20074027, 0x06eb04bd, 0x27484c27, 0xe42d0330, 0xe404d506, + 0xc5402706, 0x039d4004, 0x4802c545, 0x06e803ad, 0x06ea03bd, 0x0b44039d, + 0x07f74efe, 0x6bc007a2, 0x0c4107af, 0x07470310, 0xc1937394, 0x4f9bb4cd, + 0x23b10763, 0x790710bc, 0x2027b40b, 0xc35e7223, 0x6b22c400, 0xc868dfd6, + 0x8f9b6573, 0x634f9b63, 0x342b3b07, 0x314c3353, 0xcbbe0b07, 0x341effea, + 0xabbcc499, 0xab38333f, 0x6df39b34, 0x866d4f9b, 0x614f9ba8, 0x8bbcc3c1, + 0xd24fc643, 0x53644f9b, 0x4ace184c, 0xbcc4c10f, 0x00004fa3, 0xf49b4000, + 0x9bbb1e61, 0x282b632f, 0x22032373, 0xc1614f9b, 0x438bbcc3, 0xd1274486, + 0x0427293a, 0x3f9b5b1e, 0x183c5364, 0x4127a526, 0x1e093ace, 0x96412705, + 0xa6402734, 0x0fd1c044, 0x27644f9b, 0x65f49b48, 0x18ff3cc4, 0x4f9b101e, + 0xbcc3c161, 0x438b0027, 0x1eccc4c5, 0x27d77624, 0x9b161ed1, 0xc3c1614f, + 0x66438bbc, 0x003fa345, 0x9b400000, 0xd02761f3, 0x29fa2103, 0x0327ff3d, + 0x8eb4cdc5, 0x010d08f7, 0x000d2720, 0x27100720, 0xf093d82c, 0x5e028768, + 0xfb4efef9, 0xe7beb007, 0x002700aa, 0x00aa8dbe, 0x00adaebe, 0xbe630f9b, + 0x2700ab1a, 0xbe20000d, 0x0700ae32, 0x27c00710, 0x39f09320, 0xca7e0287, + 0xd6d007fe, 0x614f9b0a, 0x872afc93, 0xbcc3c102, 0x438b0227, 0xbeccc4c5, + 0xbe00aa52, 0xc100ad73, 0x4fa3bcc4, 0x40000000, 0x9361f49b, 0x00afd9f4, + 0xb4050027, 0x8eb4cdc5, 0xa9cfd6fb, 0xfb8e0427, 0xf4e3f94e, 0x0713ac27, + 0x079107d0, 0x07b0273f, 0x233b054a, 0xb83403a1, 0x70d189f4, 0x8d6cde89, + 0xf28928f1, 0x6ed08928, 0x24334287, 0x4027242b, 0x1d72d389, 0x004d27f4, + 0x34f48d01, 0x8d144c27, 0xf48d2af3, 0x27319b2c, 0x7504004d, 0x22f08df0, + 0x3d2ef48d, 0x8dfe65fa, 0xf3c520fe, 0x08fb9d30, 0x2780dd99, 0xc007c84c, + 0x8d3cf2c5, 0xfd9d16f0, 0x36f48d47, 0xfb7dfb5d, 0x9d14fe8d, 0xfb9d04fb, + 0x07fb9d06, 0x1f070907, 0xbe4c2c27, 0x2600348e, 0x07090707, 0x134c273f, + 0x34033201, 0x04030205, 0x0f07f4a8, 0xff968fbe, 0xf98ef4c3, 0xd007fa4e, + 0xc6050099, 0x8e002704, 0x004d27fa, 0xe4d4d501, 0xbd402705, 0x2705ecd4, + 0x1ad4bd41, 0x484c2706, 0x06e4d4d5, 0x8970d489, 0xd4ad6ed1, 0xd48905f2, + 0x6cd28972, 0x05f4d4ad, 0xad74d499, 0xbd0616d1, 0x990618d4, 0xd1ad75d4, + 0xd18905f8, 0xbd302708, 0x070619d4, 0x14d2ad4d, 0xead3bd06, 0xf6d2ad06, + 0xfad3ad05, 0xefd3bd05, 0x0ad3bd05, 0xf0d3bd06, 0xe8d0ad05, 0xe8d0d506, + 0xeed0bd05, 0xfcd0ad05, 0x04d0d505, 0x08d1ad06, 0x10d0d506, 0xec4d0306, + 0x2720a706, 0x03420538, 0x07f3c844, 0x0c4d034d, 0x2720a707, 0x053827a8, + 0x03a12342, 0xb9f3b844, 0xd6061ad4, 0xecd4b946, 0x0cd3b906, 0x03410307, + 0xedd4bd31, 0x0dd3bd06, 0x7dd49907, 0x337edc99, 0x844c0346, 0x0d071d07, + 0x2c27140b, 0x210d0340, 0x7fdb9906, 0xa4bec633, 0xcc030033, 0x071d0784, + 0x271c0b0d, 0x0d03402c, 0x90be0661, 0xb6330033, 0x0784bc03, 0x0b0d071d, + 0x402c271b, 0x06a10d03, 0x00337abe, 0xb980d499, 0xb90618d3, 0xbd0619d2, + 0x230620d4, 0x33438333, 0x3383124c, 0x4da32323, 0x3c331105, 0x3323830e, + 0x43ab102c, 0xd4d542ab, 0x0d0705e0, 0x1d074027, 0x9d0ed49d, 0xdac510da, + 0x0fda9d40, 0x030c0c03, 0x2705e41d, 0xbe01002d, 0x76ff9c3b, 0x9d412705, + 0xd0d505d4, 0xfa8e0780, 0xd007fd4e, 0x27644f9b, 0xf39b103c, 0x20435b65, + 0x8e012744, 0x644f9bfd, 0x9365f39b, 0x0284b7f0, 0xad104c53, 0xc105d4d4, + 0x1f9b3c02, 0x623f9b63, 0x422b4307, 0x32074008, 0x432b4107, 0xc11141c8, + 0x411b3c04, 0xbe1d48c4, 0xc6ffe70b, 0x9b151e05, 0x03c1614f, 0x96438bbc, + 0x27412745, 0xd6d4bd00, 0x27fd8e05, 0x4efd8e04, 0x9ba007f8, 0x3353633f, + 0x2764cf9b, 0xcc53104c, 0x65f49b10, 0xeb41ccf0, 0x0bbc0700, 0x27b333b3, + 0x49f99380, 0x915e0284, 0x418c0300, 0x00d4c8ea, 0x27643f9b, 0x65f49b44, + 0xa61c3c53, 0x83f49336, 0xa4d50082, 0x0127077c, 0xa4bd4127, 0xf88e0778, + 0x2764df9b, 0x1cdc5344, 0xf465f49b, 0xc100a5d4, 0x1f9b3c92, 0x623f9b63, + 0x422b4307, 0x32074008, 0x432b4107, 0xc11241c8, 0x411b3c94, 0x008848e4, + 0xffe66abe, 0x7f1e05e6, 0xc1614f9b, 0x438bbc93, 0x07744fd6, 0x0326332d, + 0x2a0b842c, 0x1c270027, 0x644f9b40, 0xf39b3827, 0x0b320765, 0x184c5330, + 0x0103341d, 0xf1404dc6, 0x2b634f9b, 0x6a40e84b, 0xa9f093ff, 0x02c10283, + 0x631f9b3c, 0x07623f9b, 0x08422b43, 0x07320740, 0xc8432b41, 0x04c11141, + 0xc4411b3c, 0x04be2148, 0x05c6ffe6, 0x4f9b191e, 0xbc03c161, 0x4616438b, + 0x00274127, 0x0184a4bd, 0x0127f88e, 0x0427f88e, 0xfb4ef88e, 0x4f9bd007, + 0x102c2764, 0x5b65f29b, 0x9f4bf042, 0x643f9b01, 0xf49b4827, 0x183c5365, + 0x01273840, 0x81b3f493, 0x01395e00, 0x9b644f9b, 0x4c5365f2, 0x6e048d10, + 0x4fab4123, 0x20004df4, 0x4f9b0172, 0x65f29b64, 0x8d104c53, 0x41236c04, + 0x4df44fab, 0x015c2000, 0x27643f9b, 0x65f49b48, 0x9d183c53, 0x33447603, + 0x10272007, 0x01276d1e, 0x8189f493, 0x00ed5e00, 0x27644f9b, 0x65f49b48, + 0x27644f9b, 0x65f39b34, 0x9d1c4c53, 0x41237724, 0x42504f6b, 0xf4930127, + 0x5e00818b, 0x4f9b00c7, 0x9b342764, 0x4c5365f3, 0x7a249d1c, 0x4f6b4123, + 0x01274250, 0x8193f493, 0x00a95e00, 0x27643f9b, 0x65f49b48, 0x9d183c53, + 0x21037d23, 0x01273450, 0x819df493, 0x008d5e00, 0xd4991103, 0x9914da76, + 0x2777dc99, 0x7ad49938, 0xb307c123, 0x4123bc3b, 0x036ed089, 0x07343bc1, + 0x034c0724, 0x23420323, 0x9d130701, 0xd49d75d2, 0xbe030b74, 0x8900603a, + 0xd08d6cd4, 0x07412372, 0x070b0b04, 0x6028be1b, 0x70d08d00, 0x0736c2c4, + 0x6c3c033d, 0xc40c3489, 0x2901014d, 0x440e3489, 0x9901024d, 0x41c47cd4, + 0xc42d1e1c, 0x0b01014d, 0xc47cd499, 0x42270f41, 0x4d241e1e, 0xd4990202, + 0x1442c07c, 0xf4930127, 0xd5008137, 0x27077cd4, 0x78d4bd41, 0x9dfb8e07, + 0xf09380d4, 0xc10281f0, 0x1f9b3c02, 0x623f9b63, 0x422b4307, 0x32074008, + 0x432b4107, 0xc11141c8, 0x411b3c04, 0xbe2048c4, 0xc6ffe44b, 0x9b181e05, + 0x03c1614f, 0xf6438bbc, 0x27412745, 0x82d49d00, 0x0127fb8e, 0x0427fb8e, + 0xfd4efb8e, 0x076a0499, 0x274566d0, 0xf8f49301, 0x261e0080, 0x27643f9b, + 0xf49b104c, 0xe4345b65, 0x00ca0c3c, 0x27643f9b, 0x65f49b48, 0xc0183c53, + 0x01271433, 0x80fff493, 0x7cd4d500, 0xbd412707, 0x8e0778d4, 0x272007fd, + 0x644f9b10, 0xf49b4827, 0x643f9b65, 0xf49b4427, 0x1c3c5365, 0xf464239d, + 0x9b008b32, 0xf49b643f, 0x1c3c5365, 0x0367239d, 0xd4210311, 0x13c47732, + 0x643f9bd1, 0xf49b4827, 0x183c5365, 0x9b663fd6, 0xf49b643f, 0x183c5365, + 0x593f3cc4, 0x27643f9b, 0x65f49b44, 0xb61c3c53, 0x643f9b3d, 0x5365f49b, + 0x3c561c3c, 0x80fef093, 0x3c02c102, 0x9b631f9b, 0x4307623f, 0x4008422b, + 0x41073207, 0x41c8432b, 0x3c04c111, 0x48c4411b, 0xe359be20, 0x1e05c6ff, + 0x614f9b18, 0x8bbc03c1, 0x2745f643, 0x9d002741, 0xfd8e6ad4, 0xfd8e0127, + 0xfd8e0427, 0xa107f84e, 0x12e8b007, 0x410700c5, 0x31474173, 0x1333e407, + 0xe333132b, 0xe42b4447, 0x1623100b, 0xd007e00b, 0xe4995b1e, 0x04d89904, + 0xe209d909, 0x27204c13, 0x243b203c, 0x4907382b, 0x3407433b, 0x43cb4207, + 0x428b348b, 0xd603342e, 0x1499331e, 0x13100904, 0x3007204c, 0x4307343b, + 0x238b32cb, 0x348bc107, 0x32cec623, 0x29d00d16, 0x2dd42913, 0x4d1349d3, + 0x9d190dd3, 0x142d0418, 0x1c07d603, 0x07a4d1c2, 0x734b2b41, 0x0b348741, + 0x33430734, 0x07430b44, 0x0b183314, 0x33410714, 0x140b104c, 0x11130b07, + 0x07ff5b7e, 0x734d2b4b, 0x0b348741, 0x33430734, 0x07430b44, 0x0b183314, + 0x33410714, 0x140b104c, 0x0d071a1b, 0x355ef80e, 0x9bf88eff, 0xf393534f, + 0xd50281fc, 0x9b061834, 0x34d5544f, 0xfe0b061c, 0x2919f54e, 0x8207f123, + 0x293b2227, 0x6b38f6c1, 0x0bb4073f, 0x15a30742, 0x076405f3, 0x0b5107d0, + 0x014f30a9, 0x27ff0620, 0x00e05e71, 0x11231407, 0x1ce33b07, 0x7f3ce37f, + 0x3c033419, 0xf931c280, 0x10270b07, 0x002e05be, 0xea074807, 0xef6b4103, + 0xf4257027, 0xaf5efe35, 0x04d29900, 0xd009f411, 0x1407421b, 0x3c271fab, + 0x07312b10, 0xab433b40, 0x07437b4f, 0xcaefabe4, 0x4a0730a2, 0x4fab422b, + 0x3127d229, 0x3b0c1c33, 0xab21ab34, 0x3b0e073f, 0x032fab04, 0x1e102731, + 0x07420d03, 0x4740ab41, 0x034b0b44, 0x1ef38811, 0xab192b5c, 0xab017b1f, + 0x07cd070f, 0xca26032c, 0x23991352, 0x0d3ac204, 0x3a2bc469, 0x402e437b, + 0xe81ec207, 0xe17b6401, 0x47e34703, 0x81393407, 0x3b2b2e07, 0x33472fab, + 0xfff03e83, 0xa322470f, 0xffc0001f, 0x0b13abff, 0x31210d2b, 0x07f221f3, + 0x051c070d, 0xff027ef6, 0xdc0770ab, 0xd5e2d603, 0x0707ff51, 0xf58ef103, + 0x00000001, 0xf2e3f54e, 0x05c600b9, 0xf275f165, 0x3f6bb407, 0xf199bf6b, + 0x5cfe9958, 0xe660f289, 0x71023c0f, 0xe60419f0, 0x6102344f, 0xcdf193f2, + 0x22010286, 0x2e230027, 0x55fa0000, 0xc04c27f2, 0x14031005, 0xd027f4c8, + 0xec270127, 0x07f47110, 0x59400b1d, 0x441f0344, 0x0300033e, 0x1d071e41, + 0x03d10310, 0x03f4b811, 0x93fe0801, 0x02868ff4, 0x020040b9, 0xe027d027, + 0x141ec027, 0x10194e0d, 0xe103d103, 0x11034203, 0x47f20cce, 0x56c103ee, + 0x96512707, 0x355027b4, 0x96e127f5, 0x07e02734, 0x2757563e, 0x1ef04504, + 0x074d4717, 0x444f031d, 0x0300033c, 0x033e451f, 0x27ce1e00, 0x41f24520, + 0x137127f9, 0x3b91039b, 0x7131c379, 0x23f395f8, 0x29f39391, 0x71230286, + 0x6027b027, 0xca5ef325, 0x13809900, 0xd007a127, 0x030fdc83, 0x0bad3b41, + 0x2b4b0b4a, 0x014d5046, 0x05f45302, 0x1e4301ff, 0xf9f39103, 0x033e4461, + 0x0b4d0700, 0x114c3041, 0xfeeef553, 0x4d075301, 0x940a4103, 0x3b073846, + 0x4b47fe21, 0xee093333, 0x3f03342b, 0x00033f44, 0x319d3e0d, 0x13849904, + 0x342db103, 0xf231621e, 0x002724c6, 0x0453031e, 0x4b473b07, 0x342b3333, + 0xea07c127, 0x0da31d0b, 0x3f030800, 0x00033f46, 0x2027ca2b, 0xf185e103, + 0x291ef0a5, 0x345df481, 0x3223f521, 0x4d3b5409, 0x340d42ab, 0x04863203, + 0xf0411207, 0xf4a1178b, 0x41ab103b, 0x2103340d, 0x3603c103, 0x0d5b0247, + 0xfef01c07, 0x21ba0bd0, 0x036103f5, 0x03f52552, 0x39fe7181, 0x3264eae4, + 0xab4b07ff, 0x45fc934f, 0x0c070288, 0x0c00c4ad, 0x497e1407, 0x00c0a9fc, + 0x07d0270c, 0x03c40340, 0x19091e41, 0x02c603c3, 0xa8d3073d, 0xd9f393f4, + 0xdacc0228, 0x7d40270d, 0x3d3d1d34, 0x1e345d34, 0xcc13072c, 0x27130ddc, + 0x232d0740, 0x27347d29, 0x3d131d39, 0x1e145d12, 0x07402714, 0x27147d3d, + 0x0c3c2348, 0x4427141d, 0x135d143d, 0x40471007, 0x142b1333, 0xf4515f07, + 0x288ef293, 0x03302702, 0x033f3e1f, 0xc5f09300, 0x54030287, 0xb17ef505, + 0x54fec1fc, 0xed9df311, 0x93f25107, 0x02286bf4, 0x322b4419, 0x4d06e49d, + 0x1e0c86e3, 0xc1f36163, 0x300154f4, 0x9d06419d, 0x3401074e, 0x0b54f5c1, + 0x30524d42, 0x2720014d, 0x23451e01, 0xfa00000e, 0x120b1007, 0x30071123, + 0xe37f1ce3, 0x34197f3c, 0xc2803c03, 0xf1c1f931, 0x2a71be64, 0x54fec100, + 0xe499f061, 0x83030906, 0x4c330f4c, 0x0534ab10, 0x01e449e3, 0x0b470303, + 0x0547e343, 0xc3002704, 0x4ef58ef2, 0x35f393f8, 0x23070284, 0x2d03f1a3, + 0x4d2702ff, 0x81070800, 0xd007f455, 0x2ce38f6b, 0x7f3ce37f, 0x3c033419, + 0xf932c280, 0x870ef493, 0x03240702, 0x070c012d, 0x7f2ce334, 0x197f3ce3, + 0x803c0334, 0x03f932c2, 0x0505e8dd, 0x23e927fd, 0x2505e8dd, 0x072d07fe, + 0x28ec271f, 0xfe35c327, 0x01792d03, 0x7b72fe93, 0x030d0700, 0xdd03141c, + 0x380705f0, 0xfe454127, 0xc97efc15, 0x05eb27fc, 0xf0dd23fd, 0x07fe2505, + 0x271f072d, 0xfe3538ec, 0xfe939007, 0x03007b6c, 0x07028c2d, 0x141c030d, + 0x05f8dd03, 0x41273807, 0xfe45fc15, 0x27fc977e, 0x23fd05e4, 0x1505f8dd, + 0x072d07fe, 0x20ed271f, 0x07fe3502, 0x71fe93c0, 0x2d03007b, 0xbc27039f, + 0x030d0710, 0xdd03141c, 0x38070600, 0xfe454027, 0x617efb25, 0x05e627fc, + 0x00dd23fd, 0x07fe1506, 0x50ed271f, 0x352d0702, 0x93a007fe, 0x007d5bfe, + 0xc9ab0d07, 0x1c033807, 0xb22d0314, 0x25402704, 0xabfe45fb, 0xfc2e7eca, + 0xf1830cab, 0xfe4ef88e, 0x10270027, 0xbe402c27, 0x27ffd928, 0xf49b114c, + 0xe9f093a0, 0xf413027c, 0xd804d56c, 0x1efe8e05, 0x27fd4ede, 0xf49b114c, + 0xd1fd93a0, 0xd4d1027c, 0xf49b05d4, 0xc5d4b9a3, 0x074c2605, 0x7e10270d, + 0xd4d1fea3, 0xf49b0618, 0x1cd4d153, 0x54f49b06, 0x05e8d4d1, 0xf49b4487, + 0xf8d4d150, 0xa3448705, 0x50f49b41, 0x05f0d4d1, 0x42a34487, 0xd150f49b, + 0x870600d4, 0x9b43a344, 0x4e2750f4, 0x9b3f1c80, 0xfd8ea9f4, 0xf0a3fc4e, + 0x04d1c007, 0xf49b05d4, 0x6d4027a3, 0x89f44df4, 0x04896402, 0x27f01166, + 0x271027e0, 0xbefe0530, 0x07ffe861, 0x070836d0, 0x7e10270c, 0xd007fe2f, + 0x402706d6, 0x9b53f49b, 0x412754f4, 0x05c5c4bd, 0x2fbe0c07, 0x0d0700a7, + 0xfc8ef083, 0x4f27fe4e, 0x40004000, 0x99b0f49b, 0x42207404, 0x0e1e1127, + 0x246e0499, 0x1e222741, 0x2742440b, 0x1e242712, 0x27242705, 0xa24f9b11, + 0x27fb41d8, 0xa2f49b42, 0xef273207, 0x02000000, 0x20cc3103, 0x1e31270f, + 0xe004a90b, 0xa8f49b05, 0x98a8fe9b, 0x273107f3, 0x0000002f, 0xcc310302, + 0x31270f10, 0x04a90b1e, 0xf49b05e2, 0xa8f29ba8, 0x3107f398, 0x00002f27, + 0x31030200, 0x270f10cc, 0xa90b1e31, 0x9b05e404, 0xf29ba8f4, 0x27f398a8, + 0x4efe8e00, 0x3bcf5bf0, 0x4efe2bdf, 0xbe0f07fc, 0x1effbb01, 0x9b4027ff, + 0x00070ef4, 0xf61eff8b, 0xff1eff1e, 0xb007fb4e, 0xf0931227, 0xbe007e4c, + 0x11003080, 0x59f093b1, 0x75be007e, 0xb1210030, 0x7e60f093, 0x306abe00, + 0x93b10100, 0x007e67f0, 0x00305fbe, 0xf093b231, 0x27007e6e, 0x3052be10, + 0x03db0700, 0x31c127d4, 0x931c07d2, 0x007e59f0, 0x3dbec103, 0xd4030030, + 0xec0fccc4, 0xfb0e0b07, 0x3027a11e, 0x41a71253, 0x0385040d, 0x0315012d, + 0x03550335, 0x03950325, 0x402703b5, 0x0b0ef49b, 0x07fe4efe, 0x27202740, + 0x4205123c, 0xf3c84403, 0xa7484c27, 0x07040531, 0x03034d40, 0x2720a748, + 0x03420538, 0x07f3c844, 0x284c0340, 0x382720a7, 0x44034205, 0x1499f3c8, + 0xff4cc062, 0x9d41271b, 0x13990604, 0x08039d62, 0xdc0a1499, 0x43070f44, + 0x049d41e3, 0x27fe8e08, 0x06049d40, 0x0401fe8e, 0x41ab0207, 0x24050403, + 0x4207fe0b, 0x11482307, 0x10274128, 0x0207e91e, 0x00004f27, 0x0403f000, + 0xfe0b2405, 0xc207f94e, 0x2307b107, 0x11c89007, 0x4cc1c84f, 0x39101cc0, + 0x19cca107, 0xccdc0738, 0x32073ac9, 0x2d071a07, 0xbf3e0907, 0x3007b823, + 0x1b072d07, 0xb33e0907, 0x3007c823, 0x2c071a07, 0xa73e0907, 0x1b073007, + 0x2c070907, 0x9b1ef90e, 0x1a10ccc0, 0xdc07a827, 0x27c8c9c8, 0x07c41ed8, + 0x004f2702, 0x03f00040, 0x8e240504, 0x001d27f9, 0x5ef90e40, 0xf94eff6a, + 0xb107c207, 0x90072307, 0xc85a11c8, 0x1cc057c1, 0xa1074120, 0x3f111ccc, + 0xccccdc07, 0x32074211, 0x2d071a07, 0x657e0907, 0x10bc23ff, 0x2d073007, + 0x09071b07, 0x23ff577e, 0x300710cc, 0x2c071a07, 0x497e0907, 0x073007ff, + 0x0709071b, 0x5ef90e2c, 0xccc0ff3c, 0xac271d20, 0xc8dc0710, 0x27c011cc, + 0xbb1e10dc, 0x4f270207, 0xf0008000, 0x24050403, 0x1d27f98e, 0xf90e8000, + 0x4efeed5e, 0x07c207f9, 0x072307b1, 0x401cc090, 0xcca10746, 0x0744211c, + 0x21ccccdc, 0x07320735, 0x072d071a, 0xff607e09, 0x0720bc23, 0x072d0730, + 0x7e09071b, 0xcc23ff52, 0x07300720, 0x072c071a, 0xff447e09, 0x1b073007, + 0x2c070907, 0x375ef90e, 0x20dc27ff, 0xccc0c81e, 0xac270c40, 0xc8dc0720, + 0x1ebb21cc, 0x001d27ed, 0x5ef90ec0, 0xfe4efe82, 0x02994127, 0x0b049d0a, + 0x24c03107, 0xc0253430, 0x061e1523, 0x26c02520, 0x99ff1e19, 0x01990902, + 0x5efe0e08, 0x0299fef2, 0x08019909, 0x5b5efe0e, 0x090299fe, 0x0e080199, + 0xff595efe, 0x99090299, 0xfe0e0801, 0x71fe5f5e, 0x103c2700, 0x144e0401, + 0xf3b80803, 0xfe0b0027, 0x00994007, 0x03427120, 0x23300701, 0x83033301, + 0x020b0f3c, 0x0b20439d, 0x07fe4efe, 0x4ced03e0, 0xd5402701, 0x75014c04, + 0x2718270e, 0x3e070f2c, 0x4027310b, 0x18033405, 0x4027f298, 0x8e20049d, + 0x07fe4efe, 0x2a21c8e2, 0xefff3ea7, 0x4c34c1fd, 0x53184c33, 0x42cc1d4c, + 0xdf4ea7f5, 0x4105fde6, 0x20274e15, 0x3ea74235, 0x05fde6cf, 0x353e1530, + 0x4efe8e32, 0x932253fd, 0x024cf3fe, 0x032141a7, 0x122d140d, 0xd1071e15, + 0x40273646, 0xd435d4b5, 0xd425d455, 0xd485d495, 0x4127fd8e, 0x04250191, + 0x267e0e07, 0xb54027fd, 0x55d435d4, 0x95d425d4, 0x8ed485d4, 0x39fb4efd, + 0xff3ea70d, 0xd123ffff, 0x010834b9, 0x070fdc83, 0xbcd4eec0, 0x27d33300, + 0xff0ea720, 0xd2f5feff, 0xff00010c, 0x014403a9, 0x4ea7c139, 0x03ffffff, + 0x0841bd31, 0x4403ad01, 0x0ef29b01, 0x4ea73127, 0x29fdcfff, 0x7043c5c2, + 0xfb8e25a6, 0xe8070e27, 0xf1aebe03, 0xdb0ea701, 0x58befff5, 0x00c800a7, + 0x072007ec, 0x33473340, 0x23240b25, 0xfff5cc2e, 0x10274207, 0x05283c27, + 0xc8440341, 0x073207f3, 0x0334034c, 0x1c27104c, 0x034e0112, 0x033e0544, + 0x31f1a834, 0xd12405c4, 0xa701c8cc, 0xfd4fff4e, 0x11642cc5, 0x6823c543, + 0x04fd4227, 0xff000a28, 0xffff2ea7, 0xbd4127ff, 0x99063824, 0x40270f23, + 0x270ef49b, 0xf5338741, 0x02b04034, 0x07fb8eff, 0x060d27b3, 0xf12abe64, + 0x08b4b901, 0x364dee01, 0x00ef1eff, 0x0003093c, 0x0000000e, 0x01c1f54e, + 0xc5fca358, 0xf0c5b4f1, 0xb702b9c0, 0xc5130101, 0x04b978f2, 0x02a901b6, + 0xf4c501b4, 0xc101b17c, 0xf1c5b4f4, 0x890131b8, 0xf7930e44, 0xc50249cc, + 0xf1c580f2, 0xb802d1bc, 0xb4f1c101, 0x04d1742d, 0xf2c501b0, 0x10128974, + 0x4584f4c5, 0x0b402773, 0x0d733531, 0xa5711572, 0x95742571, 0x34149970, + 0x13073127, 0xf2c1143b, 0x2c718db4, 0x89352199, 0x313b2c72, 0xc12e738d, + 0xf1c1b4f3, 0x0e3489b4, 0x9b303389, 0x2b432b42, 0x30728d24, 0x892e7389, + 0x12891014, 0x2b439b32, 0x27342b42, 0x0000004f, 0x32738d8f, 0x993874c5, + 0x3ce06203, 0x2704b1ff, 0x0001004f, 0x3874c5ef, 0x93b4f3c1, 0x02493bf0, + 0xc5343499, 0xaa7e3474, 0x297409fd, 0x90f4c572, 0x4190f1c1, 0xc5d18774, + 0xd40b94f2, 0x1fe67631, 0x3287015e, 0xf3c55027, 0x8cf5c588, 0x48878027, + 0x4201460b, 0x535d21dc, 0x07fefff1, 0x0313014f, 0x21013c4c, 0x41052403, + 0xf3a84403, 0xc148f2c1, 0xf4c150f3, 0xc1230b68, 0x2c0360f3, 0x40f1c118, + 0xf093430b, 0x0b0248d4, 0x7e540bd2, 0x0fe6fd1b, 0xf48900eb, 0x94f3c13e, + 0x83ca840b, 0x8cf4c1b2, 0x0390f1c1, 0x8cf4c541, 0x00f614ee, 0x0b88f2c1, + 0x079a1e62, 0x3c1c031f, 0x489ef093, 0xfd6d7e02, 0x71997429, 0x3872c134, + 0x050af19d, 0x934123f2, 0x024887f3, 0x00c248ee, 0x092c3399, 0x8cf1c174, + 0x2308f39d, 0x71f39341, 0x14ee0248, 0x349900a6, 0x61f2532e, 0x072101fe, + 0x09f49d0f, 0x89fc617e, 0xefe63efe, 0xf2c1ff68, 0x23a00748, 0x03093caf, + 0x07742900, 0x532a0bc8, 0x03fe3bf3, 0x48f2c5c1, 0xb0274123, 0x4832f993, + 0x010f0702, 0x444cce31, 0xf399b566, 0x2c948908, 0xc11d34ce, 0x4f833894, + 0xf7ffffff, 0x177ef405, 0x89a007fc, 0xf2c13efe, 0x3caf2348, 0x03000309, + 0xe2c103b1, 0x29ff12eb, 0x532a0b74, 0xc5fdeff3, 0x412348f2, 0x31010f07, + 0x99bec4ce, 0xf49d3094, 0x93b61e08, 0x0247dbf0, 0xc1fc377e, 0x020540f2, + 0x0140f4c1, 0x5ed30b43, 0x3499ff02, 0xff5b5e32, 0x5e303399, 0x5027ff3f, + 0xdc037d55, 0x0b3d0718, 0xbcf4c135, 0xf3c57565, 0x18dc23a0, 0x3c034516, + 0xa0f3c50c, 0xc1c0f1c1, 0x14c1a0f2, 0x9842ea44, 0xb74ea701, 0x3027fdeb, + 0x2f274305, 0x0c420000, 0xf39b4215, 0xbcf3c10e, 0x02e83fe6, 0xbc27c027, + 0xbcf3c118, 0x3574f4c1, 0xc1f465f3, 0xf4c178f3, 0xb8f0c17c, 0x9d17f39d, + 0xf3c116f4, 0x84f4c180, 0x0c0b1f07, 0x270c1c03, 0xf445182c, 0x8514f38d, + 0xbefd75f5, 0xc100208f, 0x7c41b8f8, 0xf1c18b0b, 0x077331b4, 0xc52c0708, + 0x7b09a8f3, 0x93fbc47e, 0x02471ff0, 0x07fb947e, 0x091d0b18, 0xb0f1c574, + 0x02404fe6, 0xd533db07, 0xd42b4b87, 0xdc0b2027, 0xfcc5c80b, 0xacf2c5a4, + 0x939cf2c5, 0x02472ff6, 0x27a4f3c1, 0xc5340350, 0xf3c598f5, 0xa8f1c1c4, + 0x410b4587, 0xa2074201, 0xaff6a183, 0xf15301c5, 0x4f07fcd0, 0x4c031301, + 0x0321013c, 0x03410524, 0x89f3a844, 0xf3893cf2, 0x40f1c13e, 0x46b2f093, + 0x24f28d02, 0x7e26f38d, 0xb007faf7, 0x01af0fe6, 0xfba5bb11, 0x011dafe6, + 0x71c17429, 0x30fdc538, 0x4123f105, 0x468af393, 0x8c45ee02, 0x2c339901, + 0xf2c17409, 0x08f39d9c, 0xf3934123, 0xee024674, 0x99017024, 0x0f072e34, + 0xf49d1607, 0xfa687e09, 0xc63ef489, 0xc007644f, 0xcf23b507, 0x0003093c, + 0xa027b103, 0x464af993, 0x032c1e02, 0x99a566b1, 0x948908f3, 0x1734ce2c, + 0x833894c1, 0xffffff4f, 0x7ef405f7, 0xc007fa32, 0x093ccf23, 0xf4890003, + 0xc2a1033e, 0x0807244a, 0x16070d0b, 0x64be2c07, 0x7429001f, 0x41230f07, + 0xdc0b1607, 0x99bdb4ce, 0xf39d3093, 0x1eb51e08, 0x30f4c1ff, 0x4d1b3027, + 0xf4c1f4b5, 0x34f3c5ac, 0x9638f4c5, 0xc11f075d, 0x1c03c4f0, 0x182c2724, + 0x001f2abe, 0x293ef489, 0xea540b71, 0x93fee851, 0x0245c7f4, 0xf4c14209, + 0x053027a4, 0x9cf3c143, 0xf3c53103, 0xe323e29c, 0xc1418700, 0xf1c1a4f2, + 0x1c2c03a8, 0xf1c5140b, 0xa4f2c5a8, 0xc1feab5e, 0x1f0798f0, 0x1c03080b, + 0x182c2724, 0x001edebe, 0x0398f4c1, 0xf4c5184c, 0xc1aa1e98, 0xf1c148fb, + 0x0b080744, 0xc52b070d, 0xcd0730fd, 0xc1fa0c7e, 0xcb0b50fa, 0x074cf1c1, + 0x070c0b08, 0xf9fb7e2a, 0xc1acf2c1, 0xdc0760f9, 0xc130f4c1, 0xda0bb0f0, + 0xc1acf3c1, 0x4d1b5cf1, 0x2907020b, 0xf3c5f4b5, 0xf9d77e38, 0xc1acfcc1, + 0xf0c168fb, 0xc1c90bb0, 0x0c0b64f1, 0xc27e2b07, 0x38f4c1f9, 0x4c1bcb0b, + 0xc5acfcc5, 0x2c5e34f4, 0x931f07ff, 0x02450bf0, 0x7e3c1c03, 0x445ef9d7, + 0x323499fe, 0x99fe915e, 0x755e3033, 0xf1f093fe, 0x4d7e0244, 0x40f4c1f9, + 0x04050d15, 0x0740f1c1, 0x071c01b0, 0x070d0b08, 0x1e29be2c, 0x5edc0b00, + 0x3ea7fe30, 0xc1fdefff, 0x4dd84c34, 0x070ffc6a, 0xe8432723, 0x4c23c1f4, + 0xfc6a3ddc, 0xc0f3c1f5, 0x81a0f1c1, 0x4831c534, 0xf0c144a3, 0x7e3485c0, + 0xfc83f9b5, 0x4f27f58e, 0xcf00069a, 0x5e3874c5, 0xcc27fb50, 0xb8f0c10c, + 0x7606f193, 0xbe2c0700, 0xc1001dd3, 0xbc27c0f4, 0x484cc524, 0x4efd045e, + 0xbc02c1fc, 0x2ed1c107, 0x238901cc, 0x834e0728, 0x86112742, 0x83102744, + 0x3380003d, 0xa80dc117, 0x24c13f26, 0x5742d844, 0x10003d27, 0xa7a20499, + 0xf7ffff2e, 0x4dab4183, 0x43ab41ab, 0x01c12425, 0x9c0389ac, 0xc5e421c5, + 0x3123802c, 0x998423c5, 0x0389a304, 0x8824c59e, 0x4123430b, 0x998c24c5, + 0x0089a601, 0xc5310ba4, 0x3123a821, 0xc5ac23c5, 0x47275820, 0x8e3424c5, + 0x00eddcfc, 0x3027ab01, 0xfe4eab1e, 0x7fff3ea7, 0xe33411fd, 0x1508004d, + 0xff3ea734, 0x3201fd4f, 0xf49b4027, 0x87e1270e, 0x402ef522, 0xa7ff02b0, + 0xfdcfff1e, 0x30074427, 0x234814c5, 0x4232d038, 0x3ea72127, 0xbdfeffff, + 0x270c3e32, 0x0ef49b40, 0xbe601ec5, 0x2701eabc, 0xff3ea720, 0x32bdfeff, + 0x40270c3e, 0xa70ef49b, 0xfdcfff3e, 0xc54834c5, 0x2ea76834, 0x11fd7fff, + 0x004da324, 0x8e241508, 0x1e2227fe, 0xa7f84ebe, 0xfeffff2e, 0xd1092499, + 0x83014823, 0x33d40743, 0x2b4487d4, 0x07bd07d4, 0xb4be23c0, 0x3fd6ffff, + 0xff4ea768, 0xd2f1ffff, 0xff000054, 0x062c4dd1, 0x0104039d, 0x07d22200, + 0x8f20ead2, 0x650dce00, 0xac27ed07, 0xff9ea77d, 0xe02bffff, 0x41834007, + 0x24873407, 0x322b3733, 0x3387340b, 0x3e23c005, 0x07fff9c4, 0x014a0721, + 0x05340338, 0xa8240328, 0x0a1499f4, 0x28104cc0, 0x062894d1, 0x40c8401b, + 0x9d41271f, 0xf88e04c4, 0x014824d1, 0xd14441c0, 0xc0014824, 0x24d16242, + 0x43c00148, 0x03f88e1e, 0xa9fef001, 0xb499cd05, 0x844ff604, 0xa7312700, + 0xfeffff4e, 0x014843d5, 0x24b9f88e, 0x4cd80c41, 0x40274510, 0x014824d5, + 0xd007f88e, 0xff72d0ee, 0xd4f1d31e, 0xff000054, 0x43e20301, 0xbea70088, + 0xd1ffffff, 0xc2062cb4, 0x30272443, 0xffff4ea7, 0x4843d5fe, 0x27f88e01, + 0x0bf49b40, 0x270ef49b, 0x5ef80e09, 0x0827fe7e, 0x775ef80e, 0xcf0ea7fe, + 0x80befff9, 0xd3f1002c, 0xff000054, 0xb4d1c001, 0x04ca062c, 0xc330c2c6, + 0x577e0527, 0xbebc1efe, 0xa7004c4b, 0xffffff3e, 0x32a9b469, 0x24ce0102, + 0x27b41920, 0x1d410330, 0x0ef39bb4, 0x4fff4ea7, 0xcf0ea7fd, 0x43c5fff9, + 0x2bf2be38, 0xff4f5e00, 0xde1ebd25, 0x014423a9, 0x014224a9, 0xff2f43ee, + 0x24d54227, 0xf88e0148, 0xcf5bf04e, 0xfe2bdf3b, 0x0f07fc4e, 0xfff393be, + 0xf00efc0e, 0xf04eff0b, 0xdf3bcf5b, 0xfc4efe2b, 0x81be0f07, 0xff1efff3, + 0xff1eff1e, 0x02a9fa4e, 0x40270104, 0x016603b9, 0x6d12028d, 0x07044d04, + 0x6c02a9a0, 0x1d3ae001, 0x6a04a901, 0x0e45f001, 0x27d12701, 0x9ca39d30, + 0xa79aa28d, 0xebffffce, 0xc57ef293, 0x21d01302, 0x8d1027ce, 0x2db5eaa4, + 0xc232f093, 0x48019d02, 0x24c54127, 0x27322730, 0x5c23c543, 0x938824c5, + 0x02c217f3, 0x40273105, 0x050c049d, 0xc5211521, 0x21c55821, 0x20019d84, + 0xdc34019d, 0xdc0717e2, 0xd4354227, 0xbe100c27, 0x2701f359, 0x21d43540, + 0xed32d8d3, 0xba074027, 0xda07ca07, 0x03f4a48d, 0x030199bd, 0x0301d9cd, + 0xa70219dd, 0xe8fe9f0e, 0xf940ec27, 0xea39b403, 0x074c0700, 0x0b430b2d, + 0x193b0b23, 0x23411933, 0x1901000d, 0x03031d24, 0x011d800c, 0x1d800c03, + 0xf0010304, 0x1ea7d6fe, 0x27ebffff, 0x0105104e, 0xa3b91405, 0xa4b90190, + 0xa2b90198, 0x33230191, 0x83144c33, 0x1c3c3333, 0x80004fa3, 0x23230248, + 0x2c3343ab, 0x1542ab1e, 0x213c2714, 0x275c13c5, 0x4000102f, 0x75126540, + 0x45402712, 0xa7144514, 0xfeffff3e, 0x0bc034d5, 0x8e0ef49b, 0x27d027fa, + 0xfef35e30, 0x016a04a9, 0xd0272247, 0xe65e3127, 0x07fc4efe, 0x931327c0, + 0x00720bf0, 0x0022b3be, 0xf093c111, 0xbe007218, 0x210022a8, 0x1ff093c1, + 0x9dbe0072, 0xc1010022, 0x7226f093, 0x2292be00, 0x93c23100, 0x00722df0, + 0x85be1027, 0xc2410022, 0x7220f093, 0xbe112700, 0x51002278, 0x13f093c2, + 0x12270072, 0x00226bbe, 0xf093c261, 0x27007206, 0x225ebe13, 0x93c27100, + 0x0071f9f0, 0x51be1427, 0xc2810022, 0x71ecf093, 0xbe152700, 0x91002244, + 0xdff093c2, 0x16270071, 0x002237be, 0xf093c2a1, 0x270071d2, 0x222abe17, + 0x93c2b100, 0x0071c5f0, 0x1dbe1827, 0xc2c10022, 0xb7f09330, 0x19270071, + 0x00220fbe, 0x9334c2c1, 0x0071a9f0, 0x01be1a27, 0xc2c10022, 0x9bf09338, + 0x1b270071, 0x0021f3be, 0x933cc2c1, 0x00718df0, 0xbe0c1c27, 0xc10021e4, + 0xf09340c2, 0x2700717e, 0xd5be0d1c, 0xc2c10021, 0x6ff09344, 0x1c270071, + 0x21c6be0e, 0x4eff1e00, 0x3bcf5bf0, 0x4efe2bdf, 0xbe0f07fc, 0x0efffdac, + 0x0bf00efc, 0x5bf04eff, 0x2bdf3bcf, 0x07fc4efe, 0xfedfbe0f, 0x1eff1eff, + 0x0bff1eff, 0x23fe0bfe, 0x4127180c, 0x40270410, 0xfe0b0407, 0xd00c0c54, + 0x06271d06, 0x0cc0fe0b, 0x0cd02312, 0x0cc01b12, 0x0cd0f114, 0x0cc01314, + 0x00a70f15, 0x04d4fe0b, 0x0901d00c, 0xfe0b0427, 0xfe0b0727, 0xfe0b0527, + 0x1e160c10, 0x3b4127c8, 0x004e3840, 0x06273380, 0x4ed8fe0b, 0xec0c7e00, + 0xfe0b0527, 0x0c30fd4e, 0x1ed0a712, 0x3b41270d, 0xbc4ed840, 0x2709036d, + 0x2bce3ed0, 0xd8fd8e0d, 0xe692434d, 0xc13ed127, 0xfd8e0d2b, 0x853efe4e, + 0xfe8e0123, 0x04b9f54e, 0xf92301ea, 0x3027d007, 0x0b524ae0, 0xd39d4623, + 0x274f6ba8, 0x27421430, 0x6b430731, 0xa9d49d4f, 0x0214d9b9, 0x0215d8b9, + 0x0212daa9, 0xa1534486, 0x0210dea9, 0xd2b94127, 0x340702ea, 0x01f0d0a9, + 0xc423c907, 0x393b1e07, 0x2123483b, 0x01eedba9, 0x0c3b2a0b, 0x31231123, + 0x3e0b4123, 0xe2074a0b, 0xbc3ba107, 0x395bc007, 0xe85b485b, 0x2553a553, + 0x195bcfab, 0x8da8d099, 0xd48d9cd3, 0xa2d18d9e, 0x8da0de8d, 0xd28da6da, + 0x98db8da4, 0xe69adc8d, 0x8d4c4704, 0xd0b99ad4, 0x402702ea, 0x0371d0bd, + 0x0371d2b9, 0x0386d4bd, 0x27483c27, 0x1cd1b940, 0x162c3302, 0x014ad3ad, + 0x014cd4ad, 0x00002f83, 0x11e00700, 0x2fa30a8a, 0x10000000, 0xffff4ea7, + 0xe04205e7, 0x270a9112, 0xa710011d, 0xe7ffff2e, 0x01a4d3a9, 0x275021c5, + 0x83241540, 0x0680003d, 0xc0d4d136, 0xf941f801, 0xbd402703, 0x270386d4, + 0x40d1d140, 0xecd4bd03, 0x38f1c503, 0x4ea73027, 0xb9fddfff, 0xc5036ede, + 0xd2b9c443, 0xf3c50216, 0x2724f654, 0x54f2c521, 0x01ead3b9, 0x5354f4c1, + 0xc5318332, 0x490648f3, 0xc348fbc1, 0x3cfbc5b1, 0xd4d1fb45, 0xd1b9033c, + 0x4ce00371, 0xd40a285a, 0xf6155b4c, 0x2703984f, 0x30fcc5c0, 0x80271a1e, + 0x453cf8c5, 0x20dc1ef8, 0x4de0b44c, 0x09d8010e, 0x2227ff1e, 0xc130f2c5, + 0xd4a948fb, 0x81070212, 0x8c03fc41, 0xbd4b7b0f, 0x0b0370dc, 0x10d0a984, + 0xc1847302, 0xf8c53cf2, 0x40f0c57c, 0x81032526, 0xf8c581e3, 0xf2dca97c, + 0xf4d5a901, 0x38f3c101, 0x95072c07, 0x43073766, 0x2754f8c1, 0x07410331, + 0x0b243b23, 0x13343b48, 0x8b301320, 0xa92c8b53, 0xc101f8db, 0xd3a948f0, + 0x103b01f6, 0x074cf3c5, 0xd1320b7b, 0x0b0338d0, 0xc5650771, 0xf3c588fb, + 0xe0670b50, 0x3b01210d, 0x210de006, 0xc1063511, 0x88263cf8, 0xe630fbc1, + 0xe008e5bf, 0xc108e1b2, 0xf3c14cf2, 0x03230350, 0xe323e333, 0x4cf2c533, + 0x2750f3c5, 0x0cec1840, 0x34074127, 0x0de03f6b, 0x0fd51102, 0x11030df4, + 0x0de0060d, 0x08d30182, 0x01830df4, 0x0de008b5, 0x12630102, 0x01210de0, + 0x4027121b, 0x9df5d49d, 0x2027f4d4, 0xf2c50127, 0x60f2c55c, 0xc534f2c5, + 0xf2c564f2, 0x68f2c578, 0xc56cf2c5, 0xf33570f2, 0xf0c5f0a5, 0x31212758, + 0x87d2bdf3, 0x9b3fe603, 0x88f4c105, 0x05964ff6, 0x41071253, 0xf8c14fab, + 0xdad4ad38, 0x278ae603, 0xc1480731, 0x410354fb, 0x243b2307, 0xfec14b0b, + 0x4cf0c150, 0x2013343b, 0x00002fa3, 0x3013ffff, 0x00003fa3, 0xe28bffff, + 0xfec5028b, 0xc5638b50, 0x738b4cf0, 0x1fe6f131, 0xf2c1023e, 0x88f3c14c, + 0x0216d4b9, 0xf2258027, 0xf8c5f365, 0x2744f674, 0x74fbc5b1, 0xffffbea7, + 0xb6beb9ff, 0xb948270e, 0x07036eda, 0xecdebd7c, 0xedd4bd03, 0xfe7d8303, + 0xfe9d83ff, 0xb8a4fcff, 0x27002709, 0x24a8d8b0, 0xffff2ea7, 0xa94707ff, + 0x8b0eae23, 0x0743124f, 0xa9090743, 0x070eb023, 0xab0f8bb4, 0x070312bf, + 0xc10fab03, 0x312774f1, 0xc1a3c147, 0x8c07cf0b, 0x48078fab, 0x11034b8b, + 0x313b2407, 0x11232f8b, 0xc580f2c5, 0x088b74f1, 0x070c32d2, 0x074fab43, + 0xc5bf8bb4, 0xe00780fb, 0xfec5ef8b, 0x0c3ed284, 0x0fab0307, 0x1f8b1007, + 0x6d84f1c5, 0x2df44df0, 0x01f70df9, 0x07f111f0, 0x033d072d, 0x0303e02d, + 0xbe03e43d, 0x2701f87d, 0xecd3b940, 0xead4ad03, 0xe8d4ad03, 0x10dea903, + 0x12d2a902, 0xe4d9d102, 0xfb3ff603, 0xe0d7d108, 0x009d2303, 0x007d2301, + 0x07a90701, 0x03a15367, 0x5301009d, 0x007d0361, 0x04012701, 0x07002732, + 0xb9bf8bb2, 0x2b03edd1, 0xc2b13bb0, 0x3a0712ba, 0x03ead4a9, 0x4103390b, + 0x03ead4ad, 0x04f23bca, 0xad01009d, 0x0703ead2, 0x2bbf8bbe, 0xc2b13bb0, + 0x360712b6, 0x03e8d4a9, 0x4103370b, 0x03e8d4ad, 0x04f23bca, 0xad01007d, + 0xc103e8de, 0xd3a988fb, 0xd2a903e8, 0xb50b03ea, 0x288b4807, 0xb02b438b, + 0x03e8d4ad, 0x03ead2ad, 0xbae2b13b, 0xf5c10865, 0xe2513b88, 0x0710095a, + 0x27390b3a, 0x52b3e281, 0x07390b08, 0x07492b43, 0xca8103a8, 0x9d00f045, + 0xfa650100, 0x1b50f3c1, 0xe2013b03, 0xc1082f06, 0x413b4cf4, 0x46e21407, + 0xb6070fd1, 0x9127b70b, 0x081a0be2, 0x4b07b70b, 0xa907472b, 0x41ca9103, + 0x007d00f0, 0x61fa2501, 0x8bf421f3, 0xe84c8b3c, 0x070fa330, 0x9840e804, + 0xc142070f, 0xf1c184f2, 0x0b4f8b80, 0xfa100b23, 0xa90f7c42, 0x8b03e8da, + 0x64a1faaf, 0xd230080f, 0x04271b24, 0x6c90f193, 0x1f549e00, 0xfc825e00, + 0x019cd4d1, 0x08c04cf8, 0xfbff5efc, 0xc1e4a1da, 0x620774f8, 0x7307487b, + 0x03ead4ad, 0xf0c5687b, 0x50f1c54c, 0xfbc1787b, 0xe2bfe654, 0x30f5c102, + 0x5fe65183, 0xd4d102de, 0xd3d101c0, 0xd2d101c4, 0x444701c8, 0x22473347, + 0xf385f475, 0xd1b9f295, 0xf2c102e8, 0xc5143330, 0x21e044f1, 0x21f4046c, + 0xf33103a4, 0x0c263fe6, 0x994cf8c1, 0xf4c1f4d3, 0x03f9714c, 0x4cf8c581, + 0x433b979b, 0x18077103, 0x27073407, 0x53f5d499, 0x4cfec111, 0xfa81fc91, + 0xb1072153, 0xc29bb43b, 0xe123a29b, 0x0370d8b9, 0xab0b930b, 0x7123c10b, + 0x6b4cfec5, 0x2d5fe65f, 0x103c2703, 0x076cfbc1, 0x3b280743, 0xc121034b, + 0x140760fe, 0x187b427b, 0x327b4e3b, 0x03a0d1d5, 0x03a4d4d5, 0x03a8d3d5, + 0xb876fb31, 0xd138fec1, 0xd103a0d4, 0xd103a4d3, 0x5b03a8d2, 0x5b3e5b4e, + 0xa0d4d52e, 0xa4d3d503, 0xa8d2d503, 0x30f4c103, 0x48064283, 0x03a0d4d1, + 0x03a4d3d1, 0x03a8d2d1, 0x30134013, 0xd4d52013, 0xd3d503a0, 0xd2d503a4, + 0xf0c103a8, 0x4d0ff654, 0xa8d4d102, 0xacd3d101, 0xb0d2d101, 0x2b492b01, + 0x312c2b3a, 0x88d4d5f1, 0x8cd3d503, 0x90d2d503, 0x94d0d503, 0x98d0d503, + 0x9cd0d503, 0xd6d7ad03, 0xd8d6ad03, 0x0316c603, 0x07610371, 0x53360747, + 0xad315341, 0xad03dcd4, 0xc103ded3, 0xd4b97cfe, 0xdead01ec, 0x44e603d4, + 0xf0c50127, 0x40f6c15c, 0x0378f1c1, 0x64730f6c, 0x01991ff6, 0xf2c18607, + 0xfc2fe65c, 0x64f3c100, 0x06133fe6, 0x0187d7b9, 0x02001d27, 0x80024d27, + 0x01c0d2d1, 0x4ce32818, 0x102c3830, 0x41a347e3, 0xe7204cf8, 0xdc42f805, + 0x90ad2705, 0x78f4c102, 0x04bb4fe6, 0xe183e207, 0x0b13efe6, 0x01bed0a9, + 0x077cfbc1, 0xc5b10330, 0x34337cfb, 0xfcc14807, 0xbcd3d53c, 0x7cf3c103, + 0xac034433, 0x234c5b7f, 0xb0d4d531, 0x7face303, 0xf3c5b153, 0xf122fc7c, + 0xbcd3d105, 0xff4ea703, 0x43d5fddf, 0xeff601f0, 0x189b04b9, 0xd1d5a09b, + 0xdad503b4, 0x1c2703c0, 0x7f2ca780, 0x863cf0c1, 0xb4d4d105, 0xd5415303, + 0xd103b4d4, 0xc103b0d4, 0xd3d17cfc, 0xc49b03bc, 0x41234107, 0xb39bc40b, + 0x0b7cfcc5, 0x8b428b4b, 0xead3b9c2, 0xacdcd501, 0xb8d4d503, 0x5337e003, + 0x78f0c10c, 0x04df0fe6, 0x01acd3d1, 0xdfff4ea7, 0xa8d1d1fd, 0xb443d501, + 0xff3ea701, 0x4027fddf, 0x019834d5, 0xa7e831c5, 0xfddfff4e, 0x1578f1c1, + 0x841fe646, 0xc0d4d100, 0x7c42dc01, 0x34333807, 0xdfff4ea7, 0x4cf2c1fd, + 0x01b043d5, 0xd550f3c1, 0xd5014c42, 0xc1015443, 0x4ce044f4, 0x2703a440, + 0xc156e600, 0xf87154fb, 0xfe91fc81, 0xcb7b8b7b, 0xf875eb7b, 0xfe95fc85, + 0xf630f1c1, 0x31088a1f, 0x122fe6f2, 0x54f3c105, 0x08e53ff6, 0xe044f4c1, + 0x08fa204c, 0xc5f7877e, 0x885eacd0, 0x30f5c108, 0xdcd15183, 0xfc7501c0, + 0x01c4ded1, 0xd0d1fe85, 0xf09501c8, 0x27fd295e, 0xa9861e30, 0x5e01bcd8, + 0x172efe66, 0x6f5e4027, 0x534707fa, 0x5e4fab42, 0x2158fa66, 0x2350f4c1, + 0x50f4c541, 0xf9c151f8, 0xbc5e6123, 0x010de0f9, 0xf4024480, 0x2880020d, + 0x210de002, 0xe40c1611, 0xf712010d, 0xa5ea27f9, 0x0c8b5efe, 0xf648f2c1, + 0x3101ab2f, 0x2a3fe6f3, 0xb0d2d10a, 0xbcded101, 0xa8d4d101, 0xacd3d101, + 0xb4d1d101, 0xb8d0d101, 0xd6d7ad01, 0xd8d6ad03, 0x03710303, 0x2bec2b61, + 0x07b6072c, 0x2b192bc7, 0x2b492b0a, 0x53c1533a, 0x88d4d5b1, 0x8cd3d503, + 0x90d2d503, 0x94d1d503, 0x98d0d503, 0x9cded503, 0xdcdcad03, 0xdedbad03, + 0xfd995e03, 0xf0c14427, 0x2b332770, 0x71482b38, 0x81f291f1, 0x3b402bf8, + 0x3b233b14, 0xa0d1d583, 0xa4d8d503, 0xa8d2d503, 0xfcd65e03, 0x006622c0, + 0x31ff1e23, 0x2aefe6fe, 0xf4d1990a, 0x0754f2c1, 0xc1f07136, 0x313b4cf8, + 0x027b6103, 0xc6071307, 0xd499f381, 0x53089bf5, 0xc58103c1, 0xbc074cf8, + 0x327be807, 0x9154f8c1, 0x27b43bf2, 0x7be153a1, 0x27ab2b28, 0x4cfbc191, + 0x912b2e9b, 0xc1133e9b, 0x0370d8b9, 0x900bb123, 0xc20ba30b, 0xfbc56123, + 0xfc415e4c, 0x2fe6f231, 0xf8c10792, 0xf4d19950, 0x0350f3c1, 0x50f8c581, + 0x0807313b, 0x13070153, 0xd399fc71, 0x074607f5, 0x03b00726, 0x3b212341, + 0x532c9bb3, 0x81c12741, 0x23fe91f3, 0x27c02b41, 0x50f0c191, 0x349ba127, + 0xab2b912b, 0xd8b94e9b, 0x01230370, 0xa32b922b, 0xf0c5c42b, 0xfbe55e50, + 0x0fe6f031, 0xf1c10876, 0x54f2c150, 0xf1c51123, 0xc1f17150, 0x127b50f3, + 0x3103139b, 0x9950f3c5, 0x9707f4d3, 0xf4c1933b, 0x03f38150, 0x7be70771, + 0x54f8c132, 0xf2914103, 0x4153e153, 0x23f5d099, 0x07287b41, 0x3b249bae, + 0x07349ba0, 0x70d8b9ce, 0x2b912b03, 0x23c22ba3, 0xfb895e71, 0x01ead4b9, + 0x0b0346e0, 0xbfe6fb31, 0xd0a908c0, 0xd3d103da, 0xd2d101b4, 0xd1d101b8, + 0xd7ad01bc, 0xd6ad03d6, 0x710303d8, 0x1c2b6103, 0xc607e707, 0x392b4027, + 0xe1532a2b, 0x0153c153, 0x0388d3d5, 0x038cd2d5, 0x0390d1d5, 0x039cd4d5, + 0x03dcdead, 0x03dedcad, 0x03dad0ad, 0x0394d4d5, 0x0398d4d5, 0xc0fbee5e, + 0x1280210d, 0x80220d00, 0x80020de4, 0xe127f7ce, 0x1e64fec5, 0xc5402706, + 0xf0c164f4, 0xd10a8638, 0x2701acd3, 0xa5802741, 0x5cf4c5f4, 0xc560f4c5, + 0x202778f4, 0xdfff4ea7, 0x58f8c5fd, 0xc534f8c5, 0xf8c568f8, 0x70f8c56c, + 0x43d5f235, 0xb85e01e0, 0x272127f7, 0xc5f2a530, 0xf2c55cf2, 0x78f2c560, + 0xf3c52027, 0x34f3c558, 0xc568f3c5, 0xf3c56cf3, 0x5ef23570, 0x7303f793, + 0x73e36303, 0x2c5e63e3, 0x010de0f7, 0xe409ec02, 0x4f02810d, 0x0fec27f7, + 0xfea50027, 0x1e64f0c5, 0x108c270b, 0xf8a5b127, 0x3564fbc5, 0x272127f3, + 0x5cf3c530, 0xc534f3c5, 0xf3c578f3, 0x70f3c568, 0xc558f2c5, 0xf2c560f2, + 0x2741276c, 0xf4d49d32, 0x5ef5d39d, 0x3327f73b, 0x5e30f3c5, 0x4ea7f62b, + 0x27e7ffff, 0x0510011d, 0xf5815e42, 0xad5e3127, 0x5e0927f4, 0xd4b9fc5d, + 0x44e00215, 0x1d270975, 0x685e1009, 0xc50127f5, 0xfc5e30f0, 0x48d4d1f5, + 0x004df803, 0xa900e001, 0xc101bed0, 0xf3c17cf2, 0x3348073c, 0x5b210344, + 0x07300743, 0x7fac03b2, 0x34332123, 0x537face3, 0x7cf2c5b1, 0x03b0d4d5, + 0x03bcd3d5, 0x3ea74027, 0xd5fddfff, 0xd101f034, 0xf80348d2, 0x4b01002d, + 0x078703fb, 0x039807c0, 0xe397e3c7, 0x074907c7, 0x0748230a, 0x0703333c, + 0x23433321, 0x9b419b38, 0x33a63330, 0xd1163323, 0xd501c0de, 0xd503b4d2, + 0xd503c4d1, 0xd503c8d4, 0xd503ccda, 0xd503d0d3, 0x2303c0d0, 0x2be2d887, + 0xc17cf4c1, 0xb7033cfe, 0x47034e5b, 0xc4339433, 0xb7e347e3, 0x10001d27, + 0x0fff2da7, 0xd57cf4c5, 0xd503b0d9, 0x5e03bcdc, 0x1d27faec, 0x2da71000, + 0xe15e0fff, 0x334707fa, 0x2b733345, 0x9042f147, 0xf1ff0001, 0x00019841, + 0xff3ea7ff, 0x32d5fddf, 0x165e01b4, 0x7cfbc1fb, 0x01bed0a9, 0xfbc5b103, + 0x7cfec17c, 0xfcc14807, 0x0744333c, 0x234c5b30, 0x533433e1, 0x7cfec5b1, + 0x03b0d4d5, 0x03bcd3d5, 0x27ff235e, 0x5e01e0ad, 0x42f8fa25, 0xad270438, + 0x1a5e0200, 0x87d7b9fa, 0x801d2701, 0x014d2701, 0xf9ee5e80, 0xf25ea0a7, + 0x5ea0a7f7, 0x3100f7ba, 0x081032e0, 0x03e0d7d1, 0xa0276027, 0xa9f7145e, + 0x070eb2b1, 0xbe0f8b07, 0xa9003aab, 0x070eb4b1, 0x8b0907b0, 0x3a9dbe0f, + 0xabbfab00, 0xf62f5e0f, 0x125e3027, 0x0c0c27fa, 0x07f2837e, 0x0cbc2790, + 0xb9acd0c5, 0x2702e9d4, 0xc242e0c0, 0xe0f4a107, 0xe003cf41, 0x2703cb44, + 0xf4fea180, 0x03bd11ec, 0x4e3b4127, 0x18004ef8, 0x2703b201, 0x7ef0a1a1, + 0xf0b5f23f, 0x02e40fe6, 0x757e0b07, 0xc15007f2, 0x5c0b38f0, 0xf2c1f141, + 0x27502b34, 0x47512b30, 0x27091bb2, 0x27f355e2, 0x271027c0, 0x27f4a120, + 0x0f4c2330, 0x31274214, 0xab0ba30b, 0x4127382b, 0xf8c1ae0b, 0x0b640734, + 0x3b300ba0, 0xf64a3b63, 0x9102db8f, 0x71fb81f8, 0x30fec1f7, 0x0726e1e0, + 0x02c0e1f4, 0xf381f291, 0xa607f071, 0x1ff6f1b1, 0x9b070345, 0x9013fb51, + 0x9c3b8013, 0x960b8b3b, 0xa7078a0b, 0xa53ba013, 0xbea7a40b, 0xd5fddfff, + 0xd50108b0, 0x31010cb3, 0x10b2d5fc, 0xd5c5d601, 0xd50114ba, 0xd50118b9, + 0xa1011cb8, 0xff4ea7fe, 0xec83fddf, 0x30f0c11f, 0x01004ed5, 0xd538f1c1, + 0xd5010440, 0xd1016041, 0xc10348d2, 0x420754f3, 0x13874183, 0x14ab4633, + 0xc148f4c1, 0x433358f8, 0x01a4d3a9, 0xfbc114ab, 0xab48475c, 0xab3f8b14, + 0x7a30e81b, 0xfc302702, 0x7c01002d, 0x1cd4b902, 0xa3410002, 0x2640001d, + 0x9cd4d138, 0xc04cd801, 0xc0d4d118, 0x001da301, 0xa3481880, 0x0200001e, + 0xa3104c18, 0x0100001e, 0x0364d4a9, 0x025142e0, 0xc506fc31, 0x00001fa3, + 0x4ea70100, 0xc5fddfff, 0x3ea7b441, 0x27fdefff, 0xa834d543, 0xc1030702, + 0x48dca804, 0xd51427fb, 0xd502a801, 0x2702ac01, 0x7003d530, 0x572ea706, + 0x2305fdeb, 0x00004e27, 0x9b241505, 0x01d50ef3, 0x03d502b0, 0x43270674, + 0x02b404d5, 0xefffdea7, 0xb4d4c1fd, 0x27fb48dc, 0xb4ded5e4, 0x4f3ea702, + 0x1027fdeb, 0x4f273105, 0x02050000, 0xf19b3415, 0x4f2ea70e, 0x4c27fde5, + 0x1524051c, 0x000f2721, 0x35a00000, 0x3f3ea720, 0x4103fde5, 0x31153405, + 0xded53035, 0xd1d502d0, 0x43270648, 0x02d4d4d5, 0xefff0ea7, 0xd404c1fd, + 0x27fb48dc, 0xd401d514, 0x2f3ea702, 0x2027fdeb, 0x4f273205, 0x0f420000, + 0xf29b3415, 0xbf3ea70e, 0x4c27fde4, 0x15340512, 0x004f2732, 0x35a00000, + 0xd801d534, 0x4c02d502, 0xd5432706, 0xa702dc04, 0xfdefff1e, 0xdcdc14c1, + 0x4427fb48, 0x02dc14d5, 0xeb272ea7, 0x053027fd, 0x004f2723, 0x150f8200, + 0x0ef39b24, 0xe49f2ea7, 0x134c27fd, 0x23152405, 0x00004f27, 0x2435a000, + 0x13d53327, 0x0ea702e0, 0xc1fdefff, 0x48dce004, 0xd51427fb, 0xd502e001, + 0x2702e401, 0xe802d520, 0x1f3ea706, 0x3205fdeb, 0x00004f27, 0x34150a03, + 0xa70ef29b, 0xfde46f3e, 0x053a4c27, 0x27321534, 0x0000004f, 0xd53435a0, + 0xd502e801, 0x2706ec02, 0xec04d543, 0xff3ea702, 0x34c1fdef, 0xfb48dcec, + 0x34d54427, 0x2ea702ec, 0x27fdeb17, 0x27230530, 0x8300004f, 0x9b24150a, + 0x2ea70ef3, 0x27fde45f, 0x24053b4c, 0x4f272315, 0xa0000000, 0x2435f903, + 0xfec1f58e, 0x2b0b0738, 0x7e5c07ce, 0x500bef8c, 0xa17e0b07, 0x07c00bef, + 0xefc27e0b, 0x4138f2c1, 0xc1201bf1, 0xf0c134f3, 0x2bc12b38, 0x47091b51, + 0x271207b3, 0x5efc55e0, 0xe2e0fd0d, 0xe3e003ce, 0xff1e03bb, 0x80a7f771, + 0xb0a77173, 0x07fd245e, 0x7e0b07b0, 0xf831ef10, 0x07acd0c5, 0x8c8fe690, + 0x30fbc1fc, 0x0340b1e0, 0x7143b1d4, 0xff4ea7fc, 0xfe81fddf, 0x01084cd5, + 0x4ed5f091, 0x40d5010c, 0x405e0110, 0xc0d4d1fd, 0xf8312701, 0xa3fd8842, + 0x0400001e, 0xa9fd805e, 0xa301f2d4, 0x1000001e, 0xa51f4cf8, 0x001ea3fd, + 0x9d5e2000, 0x37b2e0fd, 0x24b3e003, 0x27ff1e03, 0x961e0cbc, 0x0180ad27, + 0x27f5e45e, 0xfc4f5ea0, 0x365e8127, 0x278027fc, 0xfcc85e90, 0x5e0c0c27, + 0xf2c1f704, 0x44f1c150, 0x2b54f3c1, 0xc5210312, 0xe20750f2, 0xc170f4c1, + 0xf07144f2, 0x430b2153, 0x047be153, 0xf4c13207, 0xc1b20760, 0x3e2b6cf8, + 0xf971be2b, 0x8138fec1, 0x3b343bfa, 0x3b383b18, 0xc1ae3b9e, 0xf8c154f2, + 0x91f48138, 0x7b069bfe, 0x3b610342, 0xc1f291e8, 0xc60754f8, 0x287bc153, + 0x4c9b2c9b, 0x0b50fcc1, 0x0ba30b91, 0xb9c123be, 0x2b0370d8, 0x2ba42b90, + 0xc56123b2, 0xf4c150fc, 0x7bcb0738, 0x7ba47b94, 0xf4215ec4, 0xc154f0c1, + 0xf2c170f4, 0xc1f97168, 0x400b6cf1, 0x947b120b, 0xc54cf4c1, 0x410368f1, + 0xc14cf1c1, 0xf4c568f3, 0x07979b4c, 0xc1710324, 0xfa8160f8, 0x916cf4c1, + 0x53133bfb, 0x53370721, 0xc1480b31, 0xa07b4cfe, 0xc207b07b, 0xa39bb39b, + 0xd8b9c43b, 0xe1230370, 0xac0b910b, 0x7123b20b, 0x1e4cfec5, 0x7cf3c192, + 0x073cfbc1, 0xbed0a948, 0x33310301, 0x074b5b44, 0xc53123b3, 0x30077cf3, + 0xb1533433, 0x03b0d4d5, 0x03bcd3d5, 0x27f4f85e, 0xf8a50c8c, 0xb127e027, + 0xf3352127, 0xc558fbc5, 0xfbc55cfe, 0x34fec560, 0xc564fbc5, 0xfbc578fe, + 0x6cfec568, 0x5e70fec5, 0xf3c1f04f, 0x70f1c154, 0x0b50f4c1, 0xc1e70713, + 0x710344f3, 0x076cfbc1, 0x53410307, 0xc1415301, 0x315360fc, 0xeb3b342b, + 0xf4c12007, 0x54fbc154, 0x2c3bfa81, 0xfcc1f971, 0xc1245b54, 0xab7b50f8, + 0x9144f4c1, 0xc1917bfb, 0x482b6cf1, 0x949bbc7b, 0xec5bb39b, 0x213ba39b, + 0xd8b90c5b, 0x9e0b0370, 0xb00ba20b, 0xd75e7123, 0xa8d4d1fe, 0xacd3d101, + 0xb0d2d101, 0xb4d1d101, 0xb8d0d101, 0xbcded101, 0x2b192b01, 0x2bec2b0a, + 0x2b3a2b49, 0x88d4d52c, 0x8cd3d503, 0x90d2d503, 0x94d1d503, 0x98d0d503, + 0x9cded503, 0xd6d7ad03, 0xd8d6ad03, 0xf3855e03, 0x01bcd2d1, 0x03dad1a9, + 0x01b4d4d1, 0x01b8d3d1, 0x07072c2b, 0xe607fc31, 0x3a2b492b, 0xe1530153, + 0xd4d51153, 0xd3d50388, 0xd2d5038c, 0xd0ad0390, 0xdead03d6, 0xd1ad03d8, + 0xdcd503da, 0xdcd50394, 0xdcd50398, 0x3c5e039c, 0x6cfcc1f3, 0xc144f3c1, + 0xe60754f0, 0x3b70f4c1, 0x71ec3b3c, 0x70d8b9fc, 0x4cfbc103, 0x6103400b, + 0xc47b1607, 0xf4c19307, 0x5b115360, 0x03cb9b98, 0x03a30781, 0x4cfbc5b1, + 0xa85b2107, 0xa43b243b, 0xc14cf4c1, 0x415344fb, 0x5b54f3c1, 0xc5e05b20, + 0xf0c18cf4, 0x23f4816c, 0x3bb15381, 0x7b135b20, 0x91b85b43, 0x54f0c1f3, + 0xf1c1b12b, 0x7ba22b8c, 0x4cf2c130, 0x319b9e2b, 0x2123419b, 0xa40b9c0b, + 0x6123b30b, 0x5e4cf2c5, 0xfec1fdbe, 0xd1e92678, 0x5e01acd1, 0xf171f3bd, + 0x4ea7f281, 0x13fddfff, 0xd5f39110, 0x13010841, 0x0c42d520, 0xd5301301, + 0x5e011043, 0x4707f9ff, 0x73334533, 0x41f1472b, 0xff000190, 0x91f38c5e, + 0x71f381f2, 0x278027f0, 0x5ea02790, 0xf071f9be, 0xf291f381, 0x30130013, + 0x80272013, 0xa0279027, 0x27f9a95e, 0x279027a0, 0x81f29180, 0x5ef071f3, + 0xa607f99a, 0xf381f071, 0xa013f291, 0x30130013, 0x70132013, 0x8013b013, + 0x6a074013, 0xc1f95f5e, 0x0a1b80f0, 0xf09c00e8, 0x925e1a07, 0x84f3c1f0, + 0x341b2407, 0x27f07e5e, 0xf0675e00, 0x5c5e3027, 0x5ea027f0, 0xa027f045, + 0xf6f00d5e, 0x0431273a, 0x2701210d, 0x27802730, 0x0d3c0341, 0x2127b227, + 0xf4c5f3a5, 0x5cf8c558, 0xc560f4c5, 0xf8c534f4, 0x78f8c564, 0xc568f8c5, + 0xf4c56cfb, 0x5ef83570, 0x0427eddf, 0x5c95f193, 0x0f949e00, 0xa54b2700, + 0xfd5a5ef4, 0x9b07a707, 0x0103a013, 0x21039013, 0x11038013, 0x923ba03b, + 0x4e5e813b, 0x5ec127ff, 0xd7d1f83d, 0xa90703e0, 0xa1536707, 0x025e6153, + 0x091e27ef, 0xf45e0110, 0xa5b227eb, 0x272027fb, 0xc5f33501, 0xf2c55cf2, + 0x64f2c534, 0xc578f2c5, 0xf2c568f2, 0x70f2c56c, 0xc558f0c5, 0x402760f0, + 0x21273127, 0x9df4d49d, 0x645ef5d3, 0xa6f431ed, 0xdad0a946, 0xa8d3d103, + 0xacd2d101, 0xb0d1d101, 0xf5005e01, 0x03dad1a9, 0x01a8d4d1, 0x01acd3d1, + 0x01b0d2d1, 0x0707f831, 0x492be607, 0x2c2b3a2b, 0xe1530153, 0xd4d51153, + 0xd3d50388, 0xd2d5038c, 0xd0ad0390, 0xdead03d6, 0xd1ad03d8, 0xd8d503da, + 0xd8d50394, 0xd8d50398, 0xe85e039c, 0x07fb4ef0, 0x931427b0, 0x005c1ef0, + 0x000b77be, 0xf093b111, 0xbe005c2b, 0x21000b6c, 0x32f093b1, 0x61be005c, + 0xb101000b, 0x5c39f093, 0x0b56be00, 0x93b23100, 0x005c40f0, 0x49be1027, + 0xdb07000b, 0xc127d403, 0x1c07d231, 0x5c2bf093, 0xbec10300, 0x03000b34, + 0x0fccc4d4, 0x0e0b07ec, 0xe98f5efb, 0x0499fc4e, 0xc0d10726, 0x071aff4c, + 0x33353334, 0xf1342b43, 0x00018c34, 0x004ea3ff, 0x34f50400, 0xff00018c, + 0x4d072d07, 0x25334733, 0x2e23240b, 0x27fff5cc, 0x4207121c, 0x44030301, + 0x3c01e107, 0x4c051123, 0x44033403, 0x3ea7fe98, 0x27fddfff, 0xd508004d, + 0xd5020834, 0xa7020831, 0xfd4fff4e, 0x00114311, 0x23c54207, 0x744c0368, + 0x02013827, 0x42050403, 0xf3a84403, 0xefff3ea7, 0xd434c1fd, 0xfc6a4dd8, + 0x2723070f, 0xc1f4e843, 0x3ddcd423, 0xa7f5fc6a, 0xfdefff3e, 0xd8dc34c1, + 0x0ffc6a4d, 0x43272307, 0x23c1f4e8, 0x6a3ddcdc, 0x4227f5fc, 0x0a28d4fd, + 0x2ea7ff00, 0x27ffffff, 0x3824bd41, 0x0f239906, 0xf49b4027, 0x8741270e, + 0x4034f533, 0x8eff02b0, 0xb9fa4efc, 0x07018602, 0xa9c207b0, 0x8301f200, + 0xd10553c4, 0xa9035cba, 0xa90374be, 0x0601f4b3, 0x534307c9, 0x23444746, + 0x6514c242, 0x4ea73027, 0xd5fddfff, 0xb9020843, 0x760387b0, 0xff4ea70e, + 0x40c5fddf, 0x07fa8ee4, 0x47d553d3, 0xd842234d, 0x41ea7928, 0x3e07009a, + 0x309b3153, 0x2ea74307, 0x0bfde4af, 0x1524054a, 0x0bd09b20, 0xa72c35ad, + 0xfde48f4e, 0x43053a0b, 0x33274015, 0xb0b94c35, 0x4ea70387, 0xd5fddfff, + 0xc6020843, 0xfa8eb00f, 0x008721fc, 0x40072027, 0x4e9b2a0b, 0xe4af3ea7, + 0x05420bfd, 0x03301534, 0x27e09be1, 0xa7313510, 0xfde48f4e, 0x42052e0b, + 0x33274015, 0x4ea74135, 0xd5fddfff, 0x5e020843, 0x2007ff6f, 0x2a0b2e9b, + 0xa72841c2, 0xfde4af3e, 0x30153205, 0x34354027, 0x4ea72327, 0xd5fddfff, + 0x5e020842, 0x4ea7ff4b, 0xd5fddfff, 0x5e02084c, 0x41eeff3f, 0x3ea7ff30, + 0x05fde4af, 0x27301532, 0x27343540, 0xff4ea721, 0x42d5fddf, 0x205e0208, + 0x532307ff, 0x5e209b25, 0xf04eff76, 0xdf3bcf5b, 0xfc4efe2b, 0x88be0f07, + 0xfc0effe7, 0xff0bf00e, 0xcf5bf04e, 0xfe2bdf3b, 0x0f07fc4e, 0xfffd88be, + 0x2103ff1e, 0x0319181e, 0x01031419, 0x34ce1103, 0x2301230d, 0x19001911, + 0x0b042b14, 0x27f230fe, 0x4efe0b00, 0xab4107fe, 0xd8300740, 0x151e0f43, + 0x24231e01, 0x14033e05, 0x071e3403, 0x42534207, 0xf4584103, 0x14192586, + 0x341d1103, 0xf2a83103, 0xfd4efe8e, 0x03dce007, 0x2624d029, 0x3f6b3107, + 0x48334307, 0x320743ab, 0x3423e407, 0xec333253, 0x03e4ab10, 0x05400731, + 0x0324234e, 0x07f3b844, 0x272103e4, 0x1d031e40, 0x0b3e0731, 0xa8410334, + 0x00fd8ef2, 0x04110321, 0x04014342, 0x411d430b, 0x41030421, 0xfe0b0425, + 0x00000030, 0xf2e3f54e, 0x5f079307, 0xb0273f07, 0x3a037027, 0x82074027, + 0x5c036027, 0x95fb850c, 0x05f3a5f7, 0x25f115f0, 0x01c85ef4, 0x1c40b7b6, + 0x3e0f0725, 0x01ba5eb8, 0x40276807, 0x61237027, 0xf485b127, 0xa95ef795, + 0x301c2301, 0x4f6b4107, 0xd4301c03, 0x7536184a, 0x27301c24, 0x47f38531, + 0x0b733347, 0x301c2374, 0x855e710b, 0x6c1ce001, 0x1cd40180, 0x1ce0206d, + 0x54010663, 0x1ce0641c, 0xe4015a25, 0x01632d1c, 0x1cc0261e, 0x1ce42964, + 0x1e015869, 0x731ce022, 0x1c3400f6, 0x701ce474, 0x131e0149, 0x0f751cc0, + 0x3e781ce4, 0x27081e01, 0x5ef49541, 0x9001013c, 0xc4641c00, 0xcc0a691c, + 0x00130b00, 0x071eb127, 0x2b751cc4, 0xd007b027, 0x0d07a027, 0x39be1a27, + 0x00f9002e, 0x00013c4c, 0x4a0b4507, 0x1a27401d, 0x2bbe0d07, 0xd007002e, + 0x07e6a103, 0xa027dd1e, 0x4c834007, 0xf935070f, 0x013c5844, 0x1d3a0b00, + 0x03045334, 0x270176a1, 0x91c707b0, 0x2bca2bf3, 0x813a76cb, 0x6647a6f4, + 0x270f07b7, 0xc57e2d1c, 0x1eb027fe, 0x96f3810e, 0x071d0734, 0xfeb67e0f, + 0xdc27041e, 0x07c12320, 0xbdf3534c, 0x014103fe, 0xe241cc31, 0x0f07b546, + 0x7e2d1c27, 0xda07fe98, 0xd50bd123, 0xd139061e, 0xa1fe8b7e, 0x07d123f4, + 0xf3d4ce0f, 0x061edc07, 0x23fe7b7e, 0x270f07d1, 0xd1cc201c, 0x01591ef4, + 0x03c90791, 0x7e0f07c4, 0x9c07fe64, 0x9d01611e, 0xb02774d6, 0x0d070b1e, + 0x000089be, 0xb02bb707, 0x34e6f391, 0x457e171e, 0x07b123fe, 0x0741034b, + 0x201c270f, 0x1ef041cc, 0xfe327e04, 0x0f07d419, 0xd1031407, 0xdb0742b6, + 0x217e061e, 0x07d123fe, 0x201c270f, 0x03f4d1cc, 0x07141e94, 0xfe0e7e0f, + 0x61190d1e, 0x057e6103, 0xc20f07fe, 0xb027f568, 0x81198103, 0xfe361ff6, + 0x10270f07, 0x21fdef7e, 0x23f2c3f0, 0xa3f58e01, 0x15f305f0, 0x63fe4ef4, + 0x033f07f0, 0x7ef30538, 0xf043fdec, 0xf083fe0e, 0x3007fe0b, 0x01030419, + 0x032b4396, 0xfb4efe0b, 0xeea7f063, 0x05fd4fff, 0x07c007f2, 0x01b307d1, + 0x123f9be4, 0x44334103, 0xab38e2c1, 0x1023ce34, 0xffe30ea7, 0x0ab8beff, + 0xe8101e00, 0xa7061ef3, 0xffffe32e, 0x36272401, 0xf1294276, 0x1303d409, + 0x12732407, 0x03fc4d10, 0x0107ff1e, 0xc4090103, 0x322b3407, 0x03fc4d10, + 0x310cff1e, 0x03fc3d03, 0x87ec30da, 0x104c0342, 0x4d0bf301, 0x21034305, + 0x03fc2d04, 0x01072027, 0x01033b07, 0x3401111e, 0x14052103, 0x2d103403, + 0x2d2303fc, 0x128703fc, 0x0b101c03, 0x0df0301d, 0xe30ea7d2, 0x0401ffff, + 0x18be44c6, 0x4027000a, 0x270ef49b, 0xff4ea731, 0xf043fd4f, 0xfb8e43a5, + 0xf005f063, 0x20073107, 0xe0001f27, 0x0f271007, 0x1007d000, 0x2f5ef043, + 0x05f063ff, 0x073107f0, 0x001f2720, 0x271007c0, 0x07b0000f, 0x5ef04310, + 0x0409ff16, 0xf40df063, 0x30070449, 0xf201f42d, 0x0f273803, 0x10079000, + 0xa0001f27, 0xf0431007, 0x4efef55e, 0x07a007fa, 0xbeb10701, 0x07fffede, + 0x61fc9330, 0x35030225, 0x0c072307, 0x07da4d27, 0x24231b07, 0x050c0c03, + 0x15ca25c4, 0xfc15bec3, 0x3e0c07ff, 0x4eff1eae, 0xc9f493f7, 0x4389030d, + 0x0a428908, 0x322b8007, 0x300c7107, 0x03fc3d03, 0x002734d6, 0x4287f78e, + 0xd0124ce9, 0x93071007, 0xac07c303, 0x9123b207, 0xb103a273, 0x4de9c323, + 0x1007d010, 0x270ca9d2, 0xddf19308, 0x843e0055, 0x8c2da907, 0x84298d0d, + 0x0bb9dd24, 0x89484ce4, 0x24141e00, 0xc40bbadd, 0x1e7e284c, 0xbbdd000a, + 0xbcddc40b, 0x8329730b, 0x370b2707, 0x2ce33123, 0x7f3ce37f, 0x2c032419, + 0xf923c280, 0x2a07a7c6, 0xbd103707, 0xbd2303fc, 0x4b8703fc, 0xd01044f1, + 0xb1031007, 0x34033405, 0xbd10f238, 0xbd2303fc, 0xf39303fc, 0x8d030d20, + 0x3f270a3b, 0x1007e000, 0x80093b2d, 0x0bb90dc4, 0x2774410e, 0x0e4ee301, + 0x744501fc, 0x0d40f78e, 0x06270bbc, 0x5561f193, 0xfef17e00, 0xf78e0127, + 0xf1930627, 0x7e005592, 0x831efee3, 0x14290329, 0x03fc3d10, 0x4d10ff1e, + 0xff1e03fc, 0x042b0307, 0x0d03000c, 0xfe0b03fc, 0x90004f27, 0x44291007, + 0x34070f6b, 0x03fc4d10, 0x03fc3d23, 0xb0004f27, 0x44291007, 0x0ca6f293, + 0x07230d03, 0xfc4d1034, 0xfc3d2303, 0x004f2703, 0x291007d0, 0x10234d44, + 0x2303fc4d, 0x8d03fc4d, 0x0ba60824, 0xa0004f27, 0x44291007, 0x4d103407, + 0x3d2303fc, 0x4f2703fc, 0x1007c000, 0x232d4429, 0x4d103407, 0x3d2303fc, + 0x4f2703fc, 0x1007e000, 0x236d4429, 0x03fc4d10, 0x03fc4d23, 0x0b0a248d, + 0x93f84efe, 0x030c3ff4, 0x42294309, 0x322b9007, 0x3d03300c, 0x34d603fc, + 0xf88e0027, 0x4de94287, 0x10079012, 0xd303a307, 0xc207bd07, 0xb273a123, + 0xd323c103, 0x901048e9, 0xbad21007, 0x9308270d, 0x005457f1, 0x07fdfe7e, + 0x159805ba, 0xc5dc509d, 0xf1930827, 0x7e0054cb, 0xb806fdeb, 0x08030907, + 0xcd103b07, 0xcd2303fc, 0x4c8703fc, 0x901044f1, 0xc1031007, 0x04030405, + 0xcd10f338, 0xcd2303fc, 0xf39303fc, 0x2d030bc0, 0x003f273c, 0x271007a0, + 0x8e3c2d01, 0x93f74ef8, 0x030babf4, 0x42694349, 0x322b9007, 0x300c7107, + 0x03fc3d03, 0x002734d6, 0x4287f78e, 0xb0124ce9, 0xa3071007, 0x8c07c303, + 0xa123b207, 0xb1038273, 0x4de9c323, 0x1007b010, 0x270d8ad2, 0xc1f19308, + 0x687e0053, 0x2d8a07fd, 0x299d0d9c, 0xb9dd2494, 0x484cc40b, 0x24141e74, + 0xc40bbadd, 0x1e6a284c, 0xbbdd000a, 0xbcddc40b, 0x94295f0b, 0x27f94c50, + 0x2ff19308, 0x347e0054, 0x079029fd, 0x23070b37, 0x7f3ce301, 0x197f0ce3, + 0x803c0334, 0xc6f930c2, 0x07170787, 0xfcbd1038, 0xfcbd2303, 0xf14b8703, + 0x07b01044, 0x05b10310, 0x38140314, 0xfcbd10f3, 0xfcbd2303, 0xf5f39303, + 0x3b6d030a, 0xc0003f27, 0x01271007, 0xf78e3b2d, 0xf1930627, 0x7e0053f0, + 0x971efcdb, 0x4fff2ea7, 0x9b2401fd, 0x4103123f, 0x22c14433, 0x2734ab38, + 0x27320e00, 0xe3fe0b01, 0x15f205f0, 0x4ef425f3, 0xff3ea7fa, 0x34a9ffff, + 0xf0630eac, 0xa107d007, 0x00ad4fe6, 0x00a940fa, 0x0ea834d1, 0x00a14fe6, + 0x07e6bb3e, 0xa7122f9b, 0xfd4fff4e, 0x1ea74301, 0x33ffffe7, 0xd6140134, + 0xab38a343, 0x1e130532, 0xe70ea70a, 0x3fbeffff, 0xcf270006, 0x10100000, + 0xa744cbc1, 0xffffff4e, 0x0ea840d1, 0x4fff4ea7, 0x074401fd, 0x0b37333b, + 0x304c0303, 0x4f9b041d, 0x18ddf912, 0x0300013e, 0x043d304c, 0x4c273f07, + 0x7d0d5d20, 0x183c0304, 0x2a070403, 0x057b1c27, 0xf8eabef3, 0xa6d007ff, + 0x48c4c107, 0x41033b07, 0xc148c4c5, 0x310348c4, 0x0fff3d10, 0xc3c53027, + 0x44c4c144, 0xffe70ea7, 0x05a9beff, 0x27031e00, 0x430d07d0, 0xc3fa0ef0, + 0x4efe0bf0, 0x073401fa, 0x07b107c3, 0xff4fc4a2, 0x27ffffff, 0x2d271007, + 0x02270601, 0x01a43d27, 0xff29fdbe, 0x00ccd007, 0x060d2710, 0x29f0be01, + 0x25f493ff, 0x40050225, 0xc101cd05, 0xffff1fc0, 0x071dffff, 0x273a072b, + 0x29d4be05, 0x1000ccff, 0x01060d27, 0xff29c9be, 0x24fef493, 0x8e400502, + 0xbefe4efa, 0x270007b6, 0x07f0002f, 0xe33d2710, 0x07051e04, 0x01f4e843, + 0xf842c424, 0xbd9efe0e, 0xfb4e0007, 0xfb9bb027, 0x00cf270e, 0x271007f0, + 0x27c30531, 0x0ef49b40, 0x4fff4ea7, 0x3e43a5fd, 0x05c031c1, 0x4efb8ecb, + 0x9bc027fb, 0xbf270efc, 0x1007f000, 0xb3053127, 0xf49b4027, 0xff4ea70e, + 0x43a5fd4f, 0xbc059c3e, 0xfe4efb8e, 0xffe70ea7, 0x04c3beff, 0x27302700, + 0x07f0004f, 0x8e430510, 0x7efe4efe, 0x07e6fe30, 0xa7122f9b, 0xfd4fff4e, + 0x1ea74301, 0x33ffffe7, 0xd6140134, 0xab38a343, 0x8e130532, 0xe70ea7fe, + 0xfe0effff, 0x0004b19e, 0xf105f123, 0xf325f215, 0xfb4ef435, 0x7fff4ea7, + 0x634491d0, 0xf8b007f0, 0x008b104c, 0xe57efdab, 0x9b07e6fd, 0x4ea7122f, + 0x01fd4fff, 0xe71ea743, 0x3433ffff, 0x43d61401, 0x32ab38a3, 0x0a1e1305, + 0xffe70ea7, 0x0468beff, 0xff4ea700, 0x4401fd4f, 0xf000cf27, 0x4c031007, + 0x203c2730, 0x9d0cc49d, 0x4f9b0dc3, 0x0fc39d12, 0x07304c03, 0x143c033f, + 0x1d272b07, 0xc49d03f0, 0x100f270e, 0x051007f0, 0xf722bef3, 0x154127ff, + 0x0c0f27c4, 0xbe1007f0, 0x03fff932, 0x7ec02501, 0x0ea7feff, 0xbeffffe7, + 0xeb0003eb, 0x0ef043fd, 0x0bf103fb, 0x27f84efe, 0x1000004f, 0xc14a0110, + 0x49c14048, 0x484cc144, 0xdc07ca2a, 0xdc07051e, 0xbea7d123, 0xd1ffffff, + 0x2b0ea8b4, 0x934556da, 0x00513cf0, 0xd1ff237e, 0x930ea8b1, 0x005156f0, + 0xc4ff177e, 0x2233568f, 0x9dd45711, 0x26520fff, 0x072907de, 0x9318073c, + 0x00515cf0, 0x9b074a07, 0x07fef77e, 0x1ebd07ca, 0x259ebe1f, 0xa894d100, + 0x3320070e, 0x19240b27, 0x07458624, 0x68f0931c, 0xd57e0051, 0x23c103fe, + 0x270c07b1, 0xc40fff1d, 0xffffffbf, 0xda0bd4ff, 0x00004f27, 0x4d051010, + 0x4ea7f88e, 0xd1ffffff, 0xc60ea844, 0x004f2747, 0x01101000, 0x01440341, + 0x01440342, 0x01440343, 0x2ef09344, 0x915e0051, 0x4efe0bfe, 0x634207f5, + 0x074013f5, 0x076107a2, 0x07524780, 0xc5702791, 0x351e50f4, 0xd103b309, + 0xfff816be, 0xb203c00b, 0x1c270c07, 0x28f29350, 0xad0e0051, 0x27e6d9ce, + 0x07c41d40, 0x1ef09317, 0x2f070051, 0xc1fe4b7e, 0x7a0b50f4, 0x850b940b, + 0x070967c2, 0x07d027b8, 0x43ce1ecf, 0x4ef58ef5, 0x236207f5, 0x077107f5, + 0x13500792, 0x27a10760, 0x19301e80, 0xbed103b3, 0x0bfff7bf, 0x07b103c0, + 0x501c270c, 0x50dff293, 0xce9d0e00, 0x4027e6da, 0xc41d1807, 0x50c7f093, + 0x7e2f0700, 0x890bfdf4, 0x78c2a60b, 0x0bb8070b, 0x07d027b5, 0x03d11ecf, + 0x4ef58ef5, 0x07b007f9, 0x07a207d1, 0x7efcab93, 0x07e6fbd4, 0xa7122f9b, + 0xfd4fff4e, 0x1ea74301, 0x33ffffe7, 0xd6140134, 0xab38a343, 0x1e130532, + 0xe70ea70a, 0x57beffff, 0x4f270002, 0x1007f000, 0x43153227, 0x4d453a03, + 0x4a9d4325, 0x15499d14, 0xff7e4b35, 0xa7d007fc, 0xffffe70e, 0x00020ebe, + 0xd5c6fceb, 0x0d272b07, 0x1d070202, 0xff2681be, 0xf98e0d07, 0xc007fb4e, + 0xfdabb107, 0xe6fb677e, 0x122f9b07, 0x4fff4ea7, 0xa74301fd, 0xffffe71e, + 0x14013433, 0x38a343d6, 0x130532ab, 0x0ea70a1e, 0xbeffffe7, 0x270001ea, + 0x07f0003f, 0x15432710, 0x35482734, 0x4534253c, 0xfc987e3b, 0x0ea7c007, + 0xbeffffe7, 0xeb0001a7, 0x8e0c07fd, 0x07fc4efb, 0xab0d66d0, 0xfb0e7efc, + 0x2f9b07e6, 0xff4ea712, 0x4301fd4f, 0xffe71ea7, 0x013433ff, 0xa343d614, + 0x0532ab38, 0xa70a1e13, 0xffffe70e, 0x000191be, 0xf0004f27, 0x34271007, + 0x43254315, 0x687e4d35, 0xe70ea7fc, 0x54beffff, 0xfceb0001, 0xfc4efc8e, + 0xd107f123, 0xf193c007, 0x07004f9e, 0x102c270f, 0xfff3cabe, 0xfd93d4f6, + 0x07005610, 0xf664be0d, 0x39f393ff, 0x2007021e, 0x07da4d27, 0x0c03e307, + 0x15340514, 0x033c2530, 0x0cec0321, 0x43273f07, 0x34033101, 0xe403e105, + 0x3459f4a8, 0x1d073309, 0x1e25f093, 0x0de45d02, 0xf381bee3, 0xfdf093ff, + 0x17be021d, 0xff1efff7, 0x4ea7fc4e, 0xb9ffffff, 0x070e8444, 0xe6c107d0, + 0x3bf09345, 0x1d07004f, 0x3dbe2c07, 0x0d07fffc, 0xc9be1c07, 0x0596fffe, + 0xf1930227, 0x5e004f42, 0xfc8eff66, 0x8ea7f84e, 0xb9ffffff, 0x070e8484, + 0x07b10790, 0x66d307a2, 0x32f09346, 0x1907004f, 0x3a072b07, 0x01be4d07, + 0xcd07fffc, 0xc227d214, 0x1b070907, 0x3c072a07, 0xfffe12be, 0x0e8484b9, + 0x45a6d007, 0x4f3af093, 0xbe1d0700, 0x76fffbdc, 0x930227d5, 0x004f42f1, + 0x4127121e, 0x41234c3b, 0x45864d8b, 0xf1930127, 0x5e004f3d, 0xa796fefa, + 0x0000df50, 0x4d072000, 0x4fd04b0b, 0x70000001, 0x93012723, 0x004f45f1, + 0xdf50e21e, 0x70000000, 0x4b0b4d07, 0x00014f50, 0x0127f000, 0x4f5bf193, + 0x07c91e00, 0x27f88e0d, 0x595e0c3c, 0x054027ff, 0x27fe0b04, 0x0ef49b40, + 0xfe0b0405, 0x3f9b0201, 0xff4ea712, 0x4401fd4f, 0x44330027, 0x43ab48a3, + 0x0127420e, 0xfa4efe0b, 0x3f9bc007, 0xff4ea712, 0x4d01fd4f, 0xd433a407, + 0xd3abd8a3, 0xf4e8031e, 0x4627cb01, 0x04beb356, 0xc4010023, 0x44963027, + 0xf39bcd05, 0x38abc50e, 0xd4cec401, 0x27fa8ee4, 0xff4ea730, 0x43d5feff, + 0xfe0b0138, 0x07124f9b, 0x33348724, 0xf1232b25, 0x01001421, 0x103f9bff, + 0x310b4103, 0x45331487, 0x001423f5, 0x412bff01, 0x4fff3ea7, 0xf13311fd, + 0x01000044, 0x2b1207ff, 0x2023f534, 0x23ff0100, 0xfefff41e, 0xff682e23, + 0x014727fe, 0x05140313, 0xa8240323, 0xa7fe0bf4, 0xfd4fff4e, 0xffff3ea7, + 0x914181fe, 0x2832d144, 0x3030d101, 0x33133301, 0x1b211b43, 0x3034d504, + 0x2432d501, 0x2831d501, 0x2c30d501, 0x0bfe0b01, 0x93fe0bfe, 0x021e9bf4, + 0xfe0b4075, 0x45334007, 0x402b0087, 0x000c41f5, 0x41f5ff01, 0x00030e28, + 0x4007fe0b, 0x00874533, 0x41f5402b, 0xff010010, 0x0e2c41f5, 0xfe0b0003, + 0x05334087, 0x0e23042b, 0x0bfeff68, 0x27fc4efe, 0x2c078ccc, 0xfff31ea7, + 0x25f093fe, 0x4cbe021d, 0x2c07fff1, 0xff671ea7, 0xa1f093fe, 0x3cbe021d, + 0xf093fff1, 0xa7021e24, 0xfefedb1e, 0x0e102c27, 0xf1299efc, 0x93fe4eff, + 0x021cf3f4, 0x4ff64419, 0xf49300a2, 0x07021cec, 0x8b2c0324, 0x2ce33407, + 0x7f3ce37f, 0x3c033419, 0xf932c280, 0x1cd2f393, 0x27202702, 0x3205234c, + 0xf4c83403, 0x1d4ef493, 0x03240702, 0x34078b2c, 0xe37f2ce3, 0x34197f3c, + 0xc2803c03, 0x3c27f932, 0x31f29323, 0x1027021d, 0x21054307, 0x24033123, + 0xf493f4b8, 0x35021dac, 0x15430543, 0x27432543, 0xadf39320, 0x4a27021d, + 0x34033205, 0x3027f4c8, 0x40272527, 0x0eb834f5, 0x34f50003, 0x00030e28, + 0x0e2c34f5, 0x34f50003, 0x00030eb4, 0x001c3c03, 0x933127f2, 0x021c4ff4, + 0xf193431d, 0x27021cd8, 0x0ea78c2c, 0xbefeff67, 0x93fff06b, 0x021c3bf1, + 0xa78c2c27, 0xfefff30e, 0xfff05abe, 0x1d42f193, 0x102c2702, 0xfedb0ea7, + 0xf049befe, 0x5efe0eff, 0x4ea7fe6f, 0x11fd4fff, 0xff4ea743, 0x43d5feff, + 0xfe0b0134, 0xffff3ea7, 0xff4ea7fe, 0x4111fd4f, 0x013834d1, 0x013432d1, + 0x422b410b, 0x013834d5, 0x4f9bfe0b, 0x33340712, 0x2b448735, 0xff4ea734, + 0x4211fd4f, 0x002434f1, 0x422bff01, 0x002434f5, 0xfe0bff01, 0x07124f9b, + 0x87253324, 0xa7242b44, 0xfd4fff4e, 0x23f14411, 0xff010024, 0x24f5430b, + 0xff010024, 0xf293fe0b, 0xa7021cc8, 0xfeff673e, 0x31014727, 0x21053403, + 0xf4a82403, 0xffff4ea7, 0x3844d1fe, 0xa9f39301, 0x3495021c, 0x32014a27, + 0x02053403, 0xf4a80403, 0x3ea7fe0b, 0x9dffffff, 0x41270d30, 0x063a34bd, + 0x270f3399, 0x0ef49b40, 0x33874127, 0xb04034f5, 0xff1eff02, 0xc007fc4e, + 0x002000be, 0xc419c339, 0x43ab1307, 0x4027c41d, 0x05e6c43d, 0xf49b4027, + 0xff3ea70e, 0x34c5fd4f, 0x9b402738, 0x4ea70ef4, 0x99ffffff, 0x2ea70e43, + 0x8bfd4fbf, 0x27313831, 0x53240541, 0xd6240331, 0x4efc8e32, 0xbec007fc, + 0xa7001fe3, 0xfd4fff1e, 0x1301c239, 0x433b4127, 0xc43d42ab, 0xf49b4027, + 0x3814c50e, 0xfc4efc8e, 0xc0bec007, 0x1ea7001f, 0x19fd4fff, 0x271201c3, + 0xeb423b41, 0x27c31d34, 0x0ef49b40, 0x8e3814c5, 0x07fb4efc, 0xbeb107c0, + 0x19001f71, 0xab4027c2, 0x3dc21d2b, 0x2705e6c4, 0x0ef49b40, 0x4fff3ea7, + 0x3834c5fd, 0xf49b4027, 0xff4ea70e, 0x4399ffff, 0xbf1ea70e, 0x328bfd4f, + 0x41273138, 0x31531405, 0x32d61403, 0x0499fb8e, 0x0c03990d, 0x44c62307, + 0x041e3407, 0x070e0399, 0x0b412343, 0x04449940, 0x960e0099, 0x28321b45, + 0x0b030730, 0x0b030bfe, 0x27fb4efe, 0x9dc007b0, 0xc19d0c0b, 0x9d21070e, + 0x10270d0b, 0x93be0403, 0xcb1dffee, 0xcb5dcb3d, 0xcb3dc203, 0xfc4efb8e, + 0xcc27d007, 0xbe0d07fb, 0x4c0071c3, 0xe84c0700, 0x8ef31ef4, 0x07fc4efc, + 0xfbcc27d0, 0xacbe0d07, 0x004c0071, 0xf4e84c07, 0xfc8ef31e, 0x15361f6b, + 0x4b05f093, 0x87fe0b00, 0x2c40f140, 0x8600014d, 0x93143404, 0x00505bf0, + 0x4187fe0b, 0x4c23400b, 0x0b400110, 0x93fd4efe, 0x004aeaf0, 0xfff6dbbe, + 0xdd83dea7, 0x031d07fd, 0xfde0001e, 0x2107d301, 0xf093d403, 0x53004af0, + 0xf6bebe12, 0xa0dfc4ff, 0xe2ff0222, 0xf74efd8e, 0x0af10087, 0x00014d48, + 0x4d2c0bf1, 0xc1070001, 0x4ae2f093, 0x071a0700, 0xbe802772, 0x27fff694, + 0x011c1e90, 0x039103cd, 0x01d666c4, 0xd5f093b2, 0x1a07004a, 0x79be3d07, + 0x8d0bfff6, 0x97ceb403, 0x071a07e3, 0xccf09328, 0xf70e004a, 0xfff6639e, + 0x2a99fa4e, 0x07f12308, 0x863187d2, 0x2c33f1ac, 0x8600014d, 0x93a43434, + 0x004faff3, 0x4a870a1e, 0x4c23430b, 0x99430110, 0xdc4909de, 0x4187db69, + 0xfc15fe05, 0x42f1fb25, 0x00014d48, 0x1007dd01, 0xf0934a07, 0x35004a9a, + 0xf616befd, 0x99221eff, 0x2c690924, 0x32f1de49, 0x00014d48, 0xf3931007, + 0x93004aef, 0x004ab5f0, 0xfc15fe05, 0xfff5f3be, 0xfa8ef103, 0xcea7fc4e, + 0x01f7ffff, 0xe0f093c1, 0xddbe004a, 0xc121fff5, 0x4af3f093, 0xf5d2be00, + 0x48c1c1ff, 0x4b05f093, 0xf5c6be00, 0x44c1c1ff, 0x4b17f093, 0xf5babe00, + 0xffcea7ff, 0xc181efff, 0x4b25f093, 0xf5aabe00, 0x93c1a1ff, 0x004b38f0, + 0xfff59fbe, 0xffffcea7, 0x93c121eb, 0x004b46f0, 0xfff58fbe, 0x9364c1c1, + 0x004b58f0, 0xffffcea7, 0xf57ebee7, 0x93c101ff, 0x004b66f0, 0xfff573be, + 0x9350c1c1, 0x004b78f0, 0xfff567be, 0xf093c121, 0xbe004b8b, 0xc1fff55c, + 0xf09354c1, 0xbe004b9d, 0xc1fff550, 0xf09358c1, 0xbe004baf, 0xc1fff544, + 0xf0935cc1, 0xbe004bc1, 0xa7fff538, 0xfbffffce, 0x0628c1d1, 0x4bcdf093, + 0xf526be00, 0x30c1d1ff, 0xe7f09301, 0x19be004b, 0xc1d1fff5, 0xf0930208, + 0xbe004c01, 0xd1fff50c, 0x930420c1, 0x004c1bf0, 0xfff4ffbe, 0x0468c1d1, + 0x4c35f093, 0xffcea700, 0xedbefeff, 0xc1d1fff4, 0xc2d10148, 0xf0930148, + 0x87004c46, 0x1c2f0322, 0xbe00014d, 0xb9fff4d4, 0x930140c1, 0x004c52f0, + 0xfff4c7be, 0x9309c199, 0x004c62f0, 0xfff4bbbe, 0x0c41c1b9, 0x4c71f093, + 0xf4aebe00, 0xbcc1d1ff, 0x80f0930b, 0xa1be004c, 0xc1d1fff4, 0xf0930bc0, + 0xbe004c8f, 0xd1fff494, 0x930bc4c1, 0x004c9ef0, 0xfff487be, 0x0144c1a9, + 0x4cadf093, 0xf47abe00, 0x42c1a9ff, 0xc8f09301, 0x6dbe004c, 0x4ea7fff4, + 0xd1fdefff, 0x930f0041, 0x004cd9f0, 0xfff45bbe, 0x000318be, 0xa7fd707e, + 0xfd4fff4e, 0x42114c01, 0xf0931c07, 0xbe004cdc, 0x07fff440, 0xa710270c, + 0xfef40b2e, 0x07fdd37e, 0xa711270c, 0xfef3ff2e, 0x07fdc77e, 0xa713270c, + 0xfef3e72e, 0x07fdbb7e, 0xa714270c, 0xfef3db2e, 0x07fdaf7e, 0xa715270c, + 0xfef3cf2e, 0xa15efc0e, 0xa7fa4efd, 0xfd4fffce, 0x236cc1c1, 0xb7f093f1, + 0xedbe004c, 0x9dbefff3, 0x10070003, 0x4ccff093, 0xf3debe00, 0xffdea7ff, + 0xd199ffff, 0xe5f09311, 0xcdbe004c, 0xcb01fff3, 0x1b07c211, 0x4cfdf093, + 0xf3bebe00, 0x270b07ff, 0x872ea716, 0x517efff1, 0xfb0ea7fd, 0x0a19ffff, + 0xfffe4ea7, 0x190103ff, 0x030b1942, 0x19010341, 0x030c1943, 0x19010341, + 0x1944190e, 0xf2f093d1, 0xfe35004c, 0xfb15fa05, 0x7dbefc25, 0xd199fff3, + 0x21f0930f, 0x71be004d, 0xd199fff3, 0x3cf09310, 0x65be004d, 0xd2d1fff3, + 0xd3d10638, 0xd1d1063c, 0xf0930634, 0xbe004d4e, 0xd1fff350, 0x930620d1, + 0x004d74f0, 0xfff343be, 0x0628d1d1, 0x4d8ef093, 0xf336be00, 0x2cd1d1ff, + 0xa8f09306, 0x29be004d, 0xd199fff3, 0xc3f09327, 0x1dbe004d, 0xd199fff3, + 0xdef09326, 0x11be004d, 0xd1d1fff3, 0xf0930b74, 0xbe004df8, 0xa9fff304, + 0x930102d1, 0x004e12f0, 0xbe0f1c83, 0xb9fff2f4, 0x930108d1, 0x004e29f0, + 0xfff2e7be, 0x0109d1b9, 0x4e43f093, 0xf2dabe00, 0x0ad1a9ff, 0x5df09301, + 0xcdbe004e, 0xf093fff2, 0xbe004e7b, 0x99fff2c4, 0xf0930cd1, 0xbe004e80, + 0x99fff2b8, 0xf0932ad1, 0xbe004e9b, 0x99fff2ac, 0xf09312d1, 0xbe004eb6, + 0x99fff2a0, 0xf09344d1, 0xbe004ed1, 0xc1fff294, 0xf0933cd1, 0xbe004eec, + 0xc1fff288, 0xf09340d1, 0xbe004f07, 0xd1fff27c, 0x930624d1, 0x004f21f0, + 0xfff26fbe, 0x4f3ff093, 0xf266be00, 0x430ea7ff, 0xd3befffb, 0x1007fffa, + 0x4f3ff093, 0xf252be00, 0xf30ea7ff, 0xbfbefffa, 0x1007fffa, 0x4f5af093, + 0xf23ebe00, 0xff4ea7ff, 0x4c99feff, 0x78f09309, 0xc383004f, 0x4c87bc07, + 0xb42bb433, 0x0050b1f9, 0xbe23ff00, 0xbeffffb8, 0x03fff218, 0x93b139b4, + 0x004f7ef0, 0xfff20bbe, 0xf093b159, 0xbe004f9b, 0x03fff200, 0x334c87c1, + 0xf1c42bc4, 0x000048c1, 0xacf093ff, 0xe9be004f, 0xf093fff1, 0xbe004fcb, + 0xb9fff1e0, 0xb90b98d1, 0xb90b9ad2, 0x930b9bd3, 0x004fcef0, 0xfff1cbbe, + 0xa910ba39, 0xf093a827, 0xbe004fee, 0xb9fff1bc, 0xb90b9ad4, 0x2b0b9bd3, + 0x07461e43, 0xebf0931c, 0x1c83004f, 0xf1a2be0f, 0x98d4b9ff, 0xe7f0930b, + 0x1127004f, 0x10274c0e, 0xfff18fbe, 0x131eb027, 0x0b88b4f9, 0x2127ff00, + 0x4c0eb103, 0x79be2027, 0x1b07fff1, 0x4fcbf093, 0xe5bace00, 0x41034c07, + 0xd4b9c407, 0xcf6b0b9a, 0x27b1c4ce, 0xf90d1ec0, 0x000b88c2, 0xbec103ff, + 0x07fff150, 0xaff0931c, 0xcace004f, 0x8ef103eb, 0xe3f64efa, 0x65f093f4, + 0x35be0053, 0x7127fff1, 0x4d87d027, 0x100044f1, 0x3787ff02, 0x34f1f495, + 0xff021000, 0xf491f4a5, 0xa7e04c3c, 0x070b1e40, 0xf144334d, 0x02180c44, + 0xa1f4b5ff, 0xe04c3cf4, 0x0b1e40a7, 0x44334707, 0x180c44f1, 0xf4c5ff02, + 0x38dc3030, 0x091e4027, 0x44f14d87, 0xff021600, 0x3034f4c5, 0x4027387c, + 0x4787091e, 0x160044f1, 0xf4c5ff02, 0xc5402738, 0xf4c53cf4, 0x44f4c540, + 0x9148f4c5, 0xb1f3a1f2, 0x004f38f4, 0xa7200000, 0x070b1e10, 0xf144334d, + 0x02180441, 0x30f4c1ff, 0x00004f38, 0x60a72000, 0x47070b1e, 0x46f14433, + 0xff021804, 0x073cfec1, 0x40fcc141, 0xfbc11d07, 0x48fac144, 0xc134f9c1, + 0xfd5538f8, 0xd2031153, 0x52e9f093, 0x05f77500, 0x25fe15f6, 0x45fb35fc, + 0x85f965fa, 0xbe7203f8, 0xe4fff058, 0xff2450dc, 0xf68ef4c3, 0x04d10f27, + 0xfe0b2c43, 0x42d00401, 0xb0130113, 0x4944c032, 0x42a43420, 0x113c32c0, + 0x2745c614, 0x0b010711, 0x113284fe, 0xa742c604, 0x0b010710, 0x110311fe, + 0x06344e14, 0x1e10a731, 0x210221f1, 0xf442da14, 0x0431247a, 0x04ca1031, + 0xd60442eb, 0x10a7ce3f, 0x1027d81e, 0xfe0b0107, 0x11c934c4, 0x2b041111, + 0x4ebb1e14, 0xd00301fb, 0x14012f32, 0xe02842d0, 0xc000fb34, 0x42c42144, + 0x1d32c422, 0x04112305, 0x04212415, 0x04312425, 0x03112435, 0x02071411, + 0x2415438b, 0x0107fb8e, 0x32c0fb8e, 0x210c21fa, 0x2bec0714, 0x310b31e4, + 0xc8de0713, 0xecc867e0, 0x4cfa4c20, 0xc407008c, 0x0011b027, 0x04ce1411, + 0x2b0f6674, 0x7e30c83b, 0x24154027, 0x23352c25, 0x41072131, 0x4fd44123, + 0x3fffffff, 0x47232116, 0x07312311, 0x25213541, 0xd0412323, 0xffffff4f, + 0x4327ee3f, 0x10c82405, 0x8e020728, 0x52d1c8fb, 0x4e3b4127, 0x438b4123, + 0x4486d027, 0x3e5bd127, 0xa71e3dab, 0xeccce013, 0xe21e9920, 0xa61e3b1b, + 0x31072421, 0x11833153, 0x410313ab, 0x21350207, 0xfb8e2425, 0x130b1b07, + 0x2c252015, 0xb31e2135, 0x775e3027, 0x273013ff, 0x25241541, 0x1e23352c, + 0x67dfe680, 0x3b4127ff, 0x8b41234e, 0x27ce0b4b, 0x274486d0, 0xabbe5bd1, + 0xff505ebd, 0xff2a44e4, 0x04111311, 0xff2234ee, 0x5192f093, 0x01fb8e00, + 0x07300700, 0x173c5340, 0x071f4c53, 0x6b141520, 0xff2e833f, 0x39d67fff, + 0x432728c6, 0x057d3ca7, 0x25420714, 0x74473313, 0x0000004f, 0x23444740, + 0x004fd031, 0xf6400000, 0x14351325, 0x4227fe0b, 0xfe0b1405, 0x16ff3cc0, + 0x3c232733, 0x002fa37f, 0x27400000, 0x25123543, 0x0b140513, 0x272516fe, + 0x0b140544, 0x000e83fe, 0x05461000, 0x14054127, 0xfe0b1235, 0xf91e1005, + 0xf163f54e, 0xf0051f07, 0x0f071403, 0x41ff7a7e, 0x074027f3, 0x11225323, + 0x2142abf0, 0x33f231f1, 0x79be1e3c, 0x5107000c, 0xf58ef143, 0xf2a3fb4e, + 0xb803bf07, 0xf115f005, 0x1b070f07, 0x07ff4a7e, 0x18cc03cf, 0x04030f07, + 0x3c7e1c07, 0x070b07ff, 0xfdba7e1c, 0xfb8ef283, 0x03310401, 0x42d00211, + 0x5744c064, 0x35f64200, 0x00274027, 0x2c3304ab, 0x0b02ab1f, 0xc80021fe, + 0xffff820f, 0x0ccc5bff, 0x43073980, 0x037f4c83, 0x4cc07f0c, 0x3c031e40, + 0x2130c83f, 0x47534307, 0x4e830f6b, 0x337fffff, 0x04ab170c, 0xab1f2c33, + 0xd8fe0b02, 0x03e3803c, 0xde1e403c, 0x01033153, 0x4027db1e, 0x00000f27, + 0xa91e7f80, 0x4ea34307, 0x83100000, 0x7fffff4e, 0x00000f27, 0x951e7f80, + 0xff820f13, 0x0cccffff, 0x4127531a, 0x4123403b, 0x1027438b, 0x11274486, + 0x0307305b, 0x400701ab, 0xc07f4c83, 0x073c404c, 0x3f4c0340, 0x37533407, + 0x4fd00127, 0x40000000, 0x83430720, 0x7fffff4e, 0x5e170c33, 0x4007ff50, + 0x07404c03, 0x27375334, 0x004fd401, 0xe2400000, 0xde1e0027, 0x30270027, + 0x0cdcd81e, 0x3007e180, 0x41273753, 0x00000f14, 0x40274000, 0xc21e0407, + 0xf123fe4e, 0x0f07f005, 0xf225f115, 0xf97ef335, 0x8ef103fe, 0x63fd4efe, + 0x03df07f1, 0x07f005d4, 0x7e0f071d, 0xf421fe13, 0x44963027, 0x0d073127, + 0xd57ef325, 0x8ef143fe, 0xa3fc4efd, 0x03cf07f2, 0x15f005c8, 0x070f07f1, + 0xfded7e1c, 0xdc03df07, 0x030f0718, 0x7e1d0704, 0xf221fddf, 0x611622d0, + 0x8112f0f1, 0x71f43100, 0x3543cbf3, 0xc42400f4, 0x126e1822, 0x917e0c07, + 0x8ef283fe, 0x45f093fc, 0x857e004f, 0x8ef283fe, 0x5d14c0fc, 0x413912c0, + 0x51f481f2, 0x91242bf3, 0x42f245f1, 0x45212313, 0x273347f2, 0x0000002f, + 0x27002740, 0x312a1f4c, 0x312b02ab, 0x33472153, 0x4007f498, 0xc07f4c83, + 0x5512404c, 0x27ae1ef0, 0x250c0744, 0xfe3a7ef4, 0xfc8ef283, 0xec800cdc, + 0x0c033166, 0x7f0ce340, 0x911ef055, 0x8f1e0d07, 0x0c074027, 0xf455f445, + 0xfc4e851e, 0xcf07f3a3, 0xf005c803, 0x0f07f115, 0x347e1c07, 0x03df07fd, + 0x0f0718dc, 0x1d070403, 0x21fd267e, 0x614290f4, 0x2432d0f3, 0x00dc44e0, + 0x00cc34e0, 0x311642c4, 0x27f471f3, 0x27340e20, 0x350c0721, 0xfdd27ef2, + 0xfc8ef383, 0x311632c4, 0x27f471f3, 0x27340e20, 0x750d0721, 0xfdba7ef2, + 0xfc8ef383, 0xf091f251, 0x10273027, 0x00129fbe, 0xf441f381, 0x430bd107, + 0x30274203, 0xb530f4c5, 0x31f471f3, 0x2e2107f3, 0xb5412734, 0xcc3d07f4, + 0xf4c11a20, 0x03215330, 0x53313841, 0x000fa301, 0x07800000, 0xee20c832, + 0xd430f4c5, 0x0000002f, 0xf4c12340, 0x47091e30, 0x002fb400, 0x47400000, + 0xcc412322, 0x21a3f200, 0x2fd00047, 0x40000000, 0x30f4c5ef, 0x4c834207, + 0x404cc07f, 0x270f0714, 0x280c0343, 0xa534f2c5, 0xfd2e7ef4, 0xfc8ef383, + 0xea802cdc, 0x2c030126, 0x7f2ce340, 0x42e4e01e, 0xf093ff4f, 0x5e004dd0, + 0x32e4ff3d, 0xf093ff2b, 0x5e004dc4, 0xfb4eff31, 0xbf07f3a3, 0xf005b803, + 0x0f07f115, 0x207e1b07, 0x03cf07fc, 0x0f0718cc, 0x1c070403, 0x71fc127e, + 0xc32f07f4, 0x031c0741, 0x0b07282c, 0xe47ef475, 0xfcce7efa, 0xfb8ef383, + 0xf3a3fb4e, 0xb803bf07, 0xf115f005, 0x1b070f07, 0x07fbe67e, 0x18cc03cf, + 0x04030f07, 0xd87e1c07, 0x072f07fb, 0x282c031c, 0xb07e0b07, 0xfc9a7efa, + 0xfb8ef383, 0xf123fc4e, 0xf4054327, 0x0008c127, 0x0636c027, 0xf4054227, + 0xfc150f07, 0x03fc7b7e, 0x76fc8ef1, 0x27d007c8, 0x0d071e4c, 0xfd35f425, + 0x0011b3be, 0x01c80123, 0x1e4c27e0, 0x402bd03b, 0xf425fd35, 0x0f40d31e, + 0x80000000, 0xd013d007, 0x0f27d61e, 0xcf000000, 0xfc4ec61e, 0xcf07f2a3, + 0xf005c803, 0x0f07f115, 0x5c7e1c07, 0x03df07fb, 0x0f0718dc, 0x1d070403, + 0x21fb4e7e, 0x1042d0f4, 0x4290f461, 0x1d070c07, 0x83f9c37e, 0x27fc8ef2, + 0x4ef91e01, 0x07f163fe, 0x03f0051f, 0x7e0f0714, 0xf411fb27, 0x00274244, + 0xfe8ef143, 0x40f842d0, 0xc8f43144, 0x4c88f140, 0xc6f4211f, 0x000f2747, + 0x43800000, 0x41fe8ef1, 0x13f321f0, 0x045b1e4c, 0x13d63fc6, 0x8ef14300, + 0xff0f27fe, 0x437fffff, 0x4efe8ef1, 0x15f2a3fe, 0x051f07f1, 0x071803f0, + 0xfad57e0f, 0x1f070f07, 0x1c030403, 0xfac97e18, 0x4290f421, 0x0027f461, + 0xf2834230, 0x0127fe8e, 0xfe8ef283, 0xf2a3fc4e, 0xc803cf07, 0xf115f005, + 0x1c070f07, 0x07faa27e, 0x18dc03df, 0x04030f07, 0x947e1d07, 0xd0f421fa, + 0xf4611042, 0x0c074290, 0x097e1d07, 0x8ef283f9, 0x1e0127fc, 0xa3fc4ef9, + 0x03cf07f2, 0x15f005c8, 0x070f07f1, 0xfa697e1c, 0xdc03df07, 0x030f0718, + 0x7e1d0704, 0xf421fa5b, 0x611042d0, 0x074290f4, 0x7e1d070c, 0xf283f8d0, + 0x0127fc8e, 0xfc4ef91e, 0xcf07f2a3, 0xf005c803, 0x0f07f115, 0x307e1c07, + 0x03df07fa, 0x0f0718dc, 0x1d070403, 0x21fa227e, 0x1042d0f4, 0x4290f461, + 0x1d070c07, 0x83f8977e, 0xa7fc8ef2, 0x4ef91e00, 0x07f2a3fc, 0x05c803cf, + 0x07f115f0, 0x7e1c070f, 0xdf07f9f7, 0x0718dc03, 0x0704030f, 0xf9e97e1d, + 0x42d0f421, 0x90f46110, 0x070c0742, 0xf85e7e1d, 0xfc8ef283, 0xf91e00a7, + 0xf2a3fc4e, 0xc803cf07, 0xf115f005, 0x1c070f07, 0x07f9be7e, 0x18dc03df, + 0x04030f07, 0xb07e1d07, 0xd0f421f9, 0xf4611042, 0x0c074290, 0x257e1d07, + 0x8ef283f8, 0x1e0127fc, 0x23fd4ef9, 0x76d007f1, 0x05422706, 0x270f07f4, + 0x7ef41540, 0xf103fa54, 0x4327fd8e, 0x051e3c27, 0x35f325f4, 0x0f8ebef0, + 0xc8012300, 0x0fc61c00, 0x1e4c27dd, 0xd03b402b, 0x0f07f425, 0xfd354027, + 0x257ef415, 0x8ef103fa, 0x132007fd, 0x3b412720, 0x8b412342, 0x3630274d, + 0x27d25b46, 0x3dab1e4c, 0xf335402b, 0xa61ef425, 0xee1e3127, 0x0401fd4e, + 0x011342d0, 0xc032b013, 0x34205d44, 0x32c042a4, 0xc6141148, 0x07112745, + 0x84fd8e01, 0xc6041132, 0x0710a742, 0x11fd8e01, 0x4e141103, 0xa7310634, + 0x21f11e10, 0xda142102, 0x24daf442, 0x410d3115, 0x4110310e, 0xe61eca11, + 0x2a141ece, 0x42e16ee1, 0xc23fd60d, 0xcc1e10a7, 0x01071027, 0xd0c2fd8e, + 0xcc3fd6eb, 0x34c4b01e, 0x111111b5, 0x1e142b04, 0xa3f54ea7, 0x275027f1, + 0x35030160, 0x07f645f5, 0x077107c0, 0x278027b2, 0x2f32d090, 0x42f01401, + 0x34e0017d, 0x44e0024b, 0x42c40175, 0x1b32c424, 0x40073207, 0x41012527, + 0x31054403, 0xf2a83403, 0x7411c311, 0x438bcb07, 0x0c07b415, 0xf58ef183, + 0x014b32e0, 0x14210e21, 0x0341fe25, 0xae070231, 0xf205f315, 0x1d31a42b, + 0x3a071e41, 0x00dfa0e8, 0x4c40accc, 0x017c31e8, 0x3c233a07, 0x27f35520, + 0xe8602750, 0x2701dc30, 0x3b140741, 0x07212713, 0xa70a3b02, 0x0b40a730, + 0x8b414b30, 0xab4e8b3d, 0x2734c634, 0x51602751, 0xa440e8f4, 0x5b8e0701, + 0x5b9e0784, 0x07d5079a, 0xabd8abe6, 0x21111ee9, 0x0643faf3, 0x27102701, + 0x05f42520, 0x11f215f1, 0xee7411c0, 0xe600db04, 0x0100cc0f, 0x07f411f3, + 0x2b2e071d, 0xe8246b13, 0x2700f220, 0x21b41540, 0x25b135f4, 0x31b245b4, + 0xa7bd41bc, 0x0b40a730, 0xd44d4b3c, 0x0000004f, 0x4fe03110, 0x0fffffff, + 0xb12100c0, 0x4c534c07, 0xab3d471f, 0x452c4734, 0x31b235b3, 0x23bd41bc, + 0xa730a711, 0x0bb12540, 0xd04d4b3c, 0x0000004f, 0x43271e10, 0xdfd4b405, + 0x20000000, 0x07cb072c, 0x8ef1830c, 0xeca013f5, 0xff6d40ac, 0xc4ff1f5e, + 0xffffff4f, 0x3fd0b70f, 0xffffffff, 0x054327b0, 0x00dfd0b4, 0xd6200000, + 0x0d073c07, 0x271f0c33, 0x07315320, 0x07be214d, 0x5330ab1c, 0xab020741, + 0x07118304, 0xabe103cb, 0x83b04513, 0x350c07f1, 0x8ebe25b1, 0x07c707f5, + 0x8ef1830c, 0x11f101f5, 0x6b1d2bf2, 0xff395e2e, 0xf211f101, 0x1d0bb015, + 0xd2072e4b, 0xc107f221, 0xbc35b225, 0x735ebd45, 0x27d027ff, 0xff015ee0, + 0xffff3ff4, 0xff64ffff, 0x21ff395e, 0x273027fd, 0x6b312b40, 0x15212742, + 0x35bd25b2, 0x5eb445b3, 0x3fe6ff07, 0xf321fedb, 0x2c232a07, 0x553a0b20, + 0x27f325f2, 0xe8102700, 0x27009120, 0x3b640741, 0x07212762, 0x015a3b52, + 0xa730a7f2, 0x4b350b40, 0x11328b46, 0xab428bf2, 0x2734c634, 0x51102701, + 0x5030c8f3, 0x435bf411, 0xf311f435, 0x3a5bf431, 0x40ab2307, 0xf34521ab, + 0xf215f405, 0x27fe825e, 0x4a2b204c, 0x8d071e07, 0x8a5b143b, 0x525e81ab, + 0x203c27fe, 0x3a2b4127, 0x135b1407, 0xe4fe205e, 0x11fdd944, 0xee041113, + 0x93fdd134, 0x0047d7fc, 0x27fdc95e, 0xf211204c, 0x4a2bf301, 0x3a5b243b, + 0x23074207, 0xf23524ab, 0x3c27a11e, 0x2b412720, 0x5b64073a, 0xff6b5e63, + 0x0a11f84e, 0xba070901, 0xbc533a07, 0x143c531f, 0x0307b183, 0x1b15ea07, + 0x07ff0d83, 0x8107c027, 0xee83d907, 0x160fffff, 0xab49070e, 0x2745164e, + 0x8e140542, 0xa74327f8, 0x0503fd3d, 0x07132514, 0x531e0749, 0x1833184c, + 0x14ab0907, 0x1fd40833, 0x10000000, 0x07e3071d, 0x53414720, 0x42ab1f2c, + 0x03073047, 0xe1231407, 0x00004fd0, 0x25e91000, 0x4580358e, 0xc0f88e81, + 0x2807ff0d, 0x4e072907, 0x33182c53, 0x0742ab48, 0x002fa324, 0x07100000, + 0x23383339, 0x4503ff0d, 0x25232712, 0x35120510, 0x07f88e13, 0x164eab49, + 0x05442745, 0x07f88e14, 0x8330274e, 0x0800004e, 0x358634ab, 0x14054127, + 0x8e458d35, 0x1305f88e, 0xf54ef71e, 0x5107f1e3, 0x40071f07, 0x0f071803, + 0xf515f405, 0x51ff237e, 0x07f461f3, 0xff1f8313, 0x273fffff, 0x53048720, + 0x12ab1e3c, 0x148630ab, 0xf02131a3, 0xf241f131, 0xfff6d7be, 0xf58ef1c3, + 0xf3a3f54e, 0xac03af07, 0x07c10710, 0x071a07b0, 0x25f3350f, 0x155307f2, + 0x07fb05fc, 0xfeda7ecf, 0x0724cc03, 0x0708030f, 0xfece7e1c, 0x1c070a07, + 0x83fbab7e, 0x4ef58ef3, 0x270401f6, 0x31a02790, 0x110e410d, 0xc942f008, + 0xba44e000, 0x07424000, 0xf64eab4d, 0x27002747, 0x83380710, 0x33430731, + 0x30271f4c, 0xc107b007, 0xc4abb3ab, 0x1c070b07, 0x0021f68e, 0xfc020fe8, + 0x00b1ffff, 0x04000dec, 0x3d070085, 0x40273f6b, 0x03ff0d03, 0x56803cc0, + 0x277f3c27, 0x4bd30b40, 0x00efd0e4, 0x16200000, 0x3d072e07, 0x2c334e07, + 0xab31531f, 0x07415332, 0x03e407d3, 0x07200701, 0x070d074e, 0xff2d831e, + 0x07185307, 0x184c3332, 0x04ab0853, 0x3c33e107, 0x07202714, 0xffee83d0, + 0x02070fff, 0x0dab1307, 0x765e1eab, 0xa94fd6ff, 0x3d833d07, 0x34ab0100, + 0x27a73fc6, 0x4027803c, 0xe44bd30b, 0x0000efd0, 0x1eb32000, 0x2700279c, + 0xf000001f, 0xff4b5e7f, 0x4ea34e07, 0x07080000, 0xffee83e4, 0x1e070fff, + 0x1fa30d07, 0x7ff00000, 0x13ff305e, 0xfffc020f, 0x390cecff, 0x100700ba, + 0x27201c23, 0xe8702760, 0x2700b510, 0x3bc40741, 0x072127c1, 0xa7b03bb2, + 0x0b40a730, 0x8b4c4b3b, 0xab4e8b3d, 0x2734c634, 0xe8702761, 0x07009f10, + 0x07915b9e, 0x07d9abd6, 0x5b3d07ae, 0x6be707a0, 0x27eaab3f, 0x803cc040, + 0x7f3c2744, 0x3d0b4027, 0x24074e4b, 0x27182c33, 0x004f14c1, 0x27100000, + 0x530307c0, 0xab140708, 0x07185302, 0xff3d833c, 0x07430707, 0x144c33e1, + 0xd0073027, 0xffffee83, 0x0703070f, 0xab0dab14, 0xfe975e1e, 0x07bb4fd6, + 0x003d833d, 0xab402701, 0x073cb634, 0x184c334e, 0xef14c127, 0x10000000, + 0x0d07c027, 0x1e070853, 0x185304ab, 0xc027b61e, 0x10270027, 0x3c27ae1e, + 0x2b412720, 0x5bc40730, 0xff475ec3, 0x2b204c27, 0x073e0740, 0x5b343b9d, + 0x5e93ab90, 0x3c27ff57, 0xff6a5e80, 0xf163f54e, 0x0f07f005, 0xf225f115, + 0xf445f335, 0x07fe0a7e, 0x8ef14351, 0xe3f54ef5, 0x03df07f1, 0x074007d8, + 0x070f0751, 0x15f4051d, 0xfcae7ef5, 0x3027f431, 0x31274496, 0xf3350d07, + 0x07fdde7e, 0x8ef1c351, 0xe3f54ef5, 0x07c107f3, 0x03b0071f, 0x0f07101c, + 0xf335f225, 0xfb05fc15, 0x07fc7f7e, 0x24dc03df, 0x08030f07, 0x717e1d07, + 0xd0f241fc, 0xf1911622, 0x010912f0, 0xf3a1f451, 0xf45543cb, 0x22c42400, + 0x0712ae1f, 0x100c030f, 0x07fd8e7e, 0x8ef3c351, 0xf1f093f5, 0x807e0043, + 0xc35107fd, 0xe0f58ef3, 0xc000df14, 0xf1617f12, 0xfc81f4b1, 0xf8c1142b, + 0x71f16534, 0x30f7c1fb, 0x0084c8ea, 0x277d8cce, 0x90273d4c, 0x0000af27, + 0x50271000, 0xf4c56027, 0x07d50738, 0xab4a07e6, 0x33eaabd9, 0xc88a1f4c, + 0x07548cce, 0x2b6e075d, 0x07c86bb7, 0xab215329, 0x534b0724, 0x1c471f4c, + 0xf4c114ab, 0x233a0738, 0x47315341, 0x38f4c50b, 0xa3079207, 0xc107b007, + 0x07bf4fd6, 0x273f6b35, 0x803cc040, 0x85f57538, 0xff615ef6, 0x44270f07, + 0x45100c03, 0xfce97ef4, 0xf3c35107, 0xb7caf58e, 0xc2a91eb3, 0x2b07827b, + 0x2c534c47, 0x4742ab1f, 0x0711233b, 0x65c407b3, 0xff6d5ef1, 0x07c74fd6, + 0x003d8335, 0xd634ab01, 0x4007bc3f, 0x4fc641ab, 0x803c27b5, 0x350b4027, + 0x5307464b, 0x07ff5ce3, 0x07a31e64, 0xff0a5e0d, 0x30270f07, 0x20274027, + 0x75100c03, 0x65f485f3, 0xfef65ef2, 0xf5e3f54e, 0xac03af07, 0x07b00710, + 0x070f07c1, 0x25f3351a, 0x05fc15f2, 0xfb2a7efb, 0xdc03df07, 0x030f0724, + 0x7e1d0708, 0xf441fb1c, 0xf3914290, 0xe02632d0, 0xe001f344, 0xc401e334, + 0xf3511842, 0x2027f4a1, 0x2127340e, 0xf2550a07, 0x07fc367e, 0x8ef5c351, + 0x1832c4f5, 0xf4a1f351, 0x340e2027, 0x0d072127, 0x1c7ef2a5, 0xc35107fc, + 0xc1f58ef5, 0xf77130fb, 0x6027a027, 0xfcc12b07, 0x07360734, 0xbe07071a, + 0x07000694, 0x0730275b, 0x4cfbc5bc, 0xc550f3c5, 0xf1c554f0, 0x4cf0c158, + 0x0750f1c1, 0x07f8813a, 0x0672be27, 0x07c02700, 0x07a10790, 0x07360725, + 0xbe1c0708, 0x07000660, 0x0be107d0, 0x07ea4bd9, 0xfdeaeab8, 0xf5aeee00, + 0xc1102700, 0xf4c154f3, 0x07910758, 0x4b930bad, 0x277027a4, 0xf9a4ea80, + 0x58f4c100, 0x012c4aee, 0xc150f3c1, 0x0b074cf2, 0xbe071c07, 0x00061fbe, + 0xf461f3b1, 0x430bc027, 0x30274403, 0xc540f4c5, 0xf4a13cf3, 0xb00bf351, + 0xb70bc14b, 0x342ec84b, 0xf4c54127, 0x00cfd03c, 0x3f200000, 0x0740fec1, + 0x331b074c, 0x11531f4c, 0x0a072c07, 0x215314ab, 0x031f0c33, 0x15b1d8e1, + 0x4a073907, 0x41533153, 0xa40730ab, 0xafa39307, 0x80000000, 0xc207b107, + 0x00002fd4, 0xc5c92000, 0xcfd440fe, 0x10000000, 0x40fec131, 0x4c534907, + 0x472b071f, 0x5314ab1a, 0x4c471f2c, 0x3b4742ab, 0xb3070947, 0xe123c407, + 0x0759a0c8, 0xd0a10790, 0x000000cf, 0xfec5d710, 0x6b3b0740, 0xc040273f, + 0x0749803c, 0x0343270f, 0xfbc5380c, 0x48fcc544, 0x7e38f4c5, 0x5107facb, + 0xf58ef5c3, 0xff0b9de2, 0xf3c11027, 0x58f4c154, 0xad079107, 0xa44b930b, + 0x81277027, 0xff0b4ae2, 0x40273127, 0x844b730b, 0xa3ff075e, 0x07b30731, + 0xd6a11ec4, 0x3b07b64f, 0x01003d83, 0x3fd634ab, 0xab4907ab, 0xa44fc64a, + 0x27803c27, 0x4b3b0b40, 0xe3b3074c, 0xc407ffbc, 0x39e2921e, 0xc11efed4, + 0xfe3a42e4, 0x40cef093, 0xfe265e00, 0xfe1432e4, 0x40c2f093, 0xfe1a5e00, + 0xf4e3f54e, 0xac03af07, 0x07c10710, 0x071a07b0, 0x25f3350f, 0x05fc15f2, + 0x7ecf07fb, 0xcc03f8f4, 0x030f0724, 0x7e1c0708, 0xf4a1f8e8, 0x41c32f07, + 0x2c031c07, 0xa50a0738, 0xf62f7ef4, 0x07fa127e, 0x8ef4c351, 0xe3f54ef5, + 0x03af07f4, 0xc10710ac, 0x1a07b007, 0xf3350f07, 0xfc15f225, 0xcf07fb05, + 0x03f8af7e, 0x0f0724cc, 0x1c070803, 0x07f8a37e, 0x031c072f, 0x0a07382c, + 0x7ef5f07e, 0x5107f9d3, 0xf58ef4c3, 0xf163fb4e, 0xf4054327, 0x0008b127, + 0x0736b027, 0xf4054227, 0xfb150f07, 0x07f9b27e, 0x07410730, 0x43140703, + 0x36fb8ef1, 0x074007bb, 0x07d02704, 0x3c4c27c4, 0xf035f425, 0x7dbefd45, + 0x10070004, 0xc81d1c03, 0x0323cf11, 0x072300c8, 0x45403b4c, 0x274c07f4, + 0x413b3c3c, 0xf435312b, 0xb51ef325, 0x00000fc0, 0x071a8000, 0x1e401340, + 0x204c27bf, 0x2c07412b, 0x245b3d07, 0x32ab313b, 0xd21ef345, 0x4f273027, + 0xc1e00000, 0xf54e961e, 0xdf07f3a3, 0x0710dc03, 0x07510740, 0x051d070f, + 0x35c307f4, 0x15f225f3, 0x7ebf07f5, 0xbc03f7e4, 0x030f0724, 0x7e1b0708, + 0xf441f7d8, 0x911042d0, 0x074290f4, 0x7e1b070d, 0xf383f4ac, 0x0127f58e, + 0xf54ef91e, 0x5107f1e3, 0x40071f07, 0x0f071803, 0xf515f405, 0x21f7ab7e, + 0x274244f4, 0x8ef1c300, 0xf842d0f5, 0xf4414440, 0x88f140c8, 0xf4311f4c, + 0x0f274946, 0x80000000, 0xf58ef1c3, 0x2b3cec27, 0x234e07e4, 0x40c8204c, + 0x07f2611c, 0x31045b02, 0xca4fc6f4, 0xf1c30013, 0x0f27f58e, 0x7fffffff, + 0xf58ef1c3, 0x4c27f261, 0x074e2b20, 0x07343b32, 0x07f35143, 0xab0e5b03, + 0x4ed51e04, 0x07f3a3f5, 0x071f0751, 0x101c0340, 0xf4050f07, 0xc307b207, + 0xf225f335, 0x297ef515, 0x070f07f7, 0x0308031f, 0x1d7e241c, 0x90f441f7, + 0x27f49142, 0x83423000, 0x27f58ef3, 0x8ef38301, 0xa3f54ef5, 0x03df07f3, + 0x400710dc, 0x0f075107, 0xf4051d07, 0xf335c307, 0xf515f225, 0xe97ebf07, + 0x24bc03f6, 0x08030f07, 0xdd7e1b07, 0xd0f441f6, 0xf4911042, 0x0d074290, + 0xb17e1b07, 0x8ef383f3, 0x1e0127f5, 0xa3f54ef9, 0x03df07f3, 0x400710dc, + 0x0f075107, 0xf4051d07, 0xf335c307, 0xf515f225, 0xa57ebf07, 0x24bc03f6, + 0x08030f07, 0x997e1b07, 0xd0f441f6, 0xf4911042, 0x0d074290, 0x6d7e1b07, + 0x8ef383f3, 0x1e0127f5, 0xa3f54ef9, 0x03df07f3, 0x400710dc, 0x0f075107, + 0xf4051d07, 0xf335c307, 0xf515f225, 0x617ebf07, 0x24bc03f6, 0x08030f07, + 0x557e1b07, 0xd0f441f6, 0xf4911042, 0x0d074290, 0x297e1b07, 0x8ef383f3, + 0x1e00a7f5, 0xa3f54ef9, 0x03df07f3, 0x400710dc, 0x0f075107, 0xf4051d07, + 0xf335c307, 0xf515f225, 0x1d7ebf07, 0x24bc03f6, 0x08030f07, 0x117e1b07, + 0xd0f441f6, 0xf4911042, 0x0d074290, 0xe57e1b07, 0x8ef383f2, 0x1e00a7f5, + 0xa3f54ef9, 0x03df07f3, 0x400710dc, 0x0f075107, 0xf4051d07, 0xf335c307, + 0xf515f225, 0xd97ebf07, 0x24bc03f5, 0x08030f07, 0xcd7e1b07, 0xd0f441f5, + 0xf4911042, 0x0d074290, 0xa17e1b07, 0x8ef383f2, 0x1e0127f5, 0x63f54ef9, + 0x27a027f1, 0x278027b0, 0x2706b690, 0x07f40542, 0x1540270f, 0xf6d97ef4, + 0xf1435107, 0xd027f58e, 0x3c274327, 0x05c0073c, 0x35f325f4, 0xbefd45f0, + 0x070001ac, 0x1d1c0310, 0xc62c10c8, 0x0323d21f, 0x008200e8, 0x403b4c07, + 0x4c07f445, 0x3c27413b, 0x2bf4353c, 0x270f0731, 0x15f32540, 0xf6917ef4, + 0xf1435107, 0xe107f58e, 0x0e07e013, 0x27200c23, 0xc8702760, 0x41274200, + 0xb03bb407, 0xa2072127, 0x30a7ae3b, 0x3a0b40a7, 0x3c8b4b4b, 0x34ab4d8b, + 0x612734c6, 0x00c87027, 0x5b8d0740, 0x5b9d0780, 0x2747079e, 0x36073c2c, + 0x212b49ab, 0xf33538ab, 0xf225f445, 0x27ff5a5e, 0x4127203c, 0xb4073e2b, + 0xb91eb35b, 0x2b204c27, 0x072c0741, 0x3b245b3d, 0x4532ab31, 0xff745ef3, + 0x2b204c27, 0x073d074e, 0x5b343b8c, 0x1e83ab8e, 0x88fe4eb5, 0x13100c00, + 0x0e212710, 0x004e9efe, 0x68001300, 0xbe212710, 0x13000044, 0x13fe8e00, + 0x4ef31e10, 0x1200c8fd, 0x10c8d027, 0xbe202714, 0x8600002c, 0x8e0013d4, + 0x270013fd, 0xee10ccd1, 0x41271013, 0xd407d4d6, 0x4027e41e, 0xde1ed407, + 0x099e2127, 0x20270000, 0x0000039e, 0x01c2fe4e, 0x3310c836, 0x3c274127, + 0x47114720, 0x2101c244, 0x2707f3f0, 0x8e26e630, 0xee10ccfe, 0x012a3027, + 0x34ab012b, 0x11534153, 0x21b642d6, 0xfe8e0307, 0x30274066, 0x4127e91e, + 0xe31e3027, 0x4207f64e, 0x93078207, 0x3007a207, 0xab102c53, 0x073fab4f, + 0x07e39be2, 0x07710760, 0x531407b0, 0x349b100c, 0x4307109b, 0x4c53e10b, + 0x9be40b10, 0x031e0220, 0x0100002e, 0xb99b4e07, 0x9b10ec33, 0x104c53a7, + 0x3fabd207, 0xba0bce07, 0xc30bd40b, 0x0c071b07, 0xf68e1d0b, 0x00000ed4, + 0x0dd41701, 0x273a0100, 0xf9035b30, 0x014e2000, 0x204c2700, 0xfe0b041b, + 0x00000fb0, 0x3c270100, 0xf9035b18, 0x014e2000, 0x1b482700, 0x27fe0b04, + 0x3407104c, 0x00f9035b, 0x00014e20, 0xfe0b041b, 0x035b3827, 0x4e2000f9, + 0x4c270001, 0x0b041b18, 0xff1ea7fe, 0x1401fd4f, 0x03122f9b, 0xc1443341, + 0x24ab3813, 0x0027322e, 0xf3abfe0b, 0xc13812c5, 0x42ce3814, 0x27f3ebf8, + 0x4efe0b01, 0x76d33efe, 0x200c2705, 0x059efe0e, 0xfe8e0000, 0xb007fb4e, + 0xff012abe, 0x1007d007, 0x3bf6f093, 0xd80abe00, 0x27d746ff, 0x010b1ec0, + 0xbec103d2, 0x03ffd7fc, 0x931c07d4, 0x003be8f0, 0x8eedcbda, 0x000000fb, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x7478656e, 0x6369705f, 0x5f6f745f, 0x73726170, 0x20202065, 0x75252020, + 0x2a2a000a, 0x25202a2a, 0x2a2a2073, 0x50202a2a, 0x30203a43, 0x20782578, + 0x52532020, 0x7830203a, 0x20207825, 0x52414620, 0x7830203a, 0x000a7825, + 0x255b5220, 0x205d6432, 0x7830203d, 0x78383025, 0x6d20000a, 0x65747361, + 0x25232072, 0x73252064, 0x6f626120, 0x64657472, 0x2020000a, 0x55414620, + 0x203a544c, 0x78257830, 0x2020000a, 0x44414620, 0x203a5244, 0x78257830, + 0x4152000a, 0x41204353, 0x54524f42, 0x554d4d00, 0x4f424120, 0x57005452, + 0x68637461, 0x00676f64, 0x616e7944, 0x2063696d, 0x6e616863, 0x69206567, + 0x6874206e, 0x756e2065, 0x7265626d, 0x20666f20, 0x65726f63, 0x73692073, + 0x746f6e20, 0x70757320, 0x74726f70, 0x52006465, 0x30435341, 0x53415200, + 0x52003143, 0x32435341, 0x53415200, 0x52003343, 0x34435341, 0x4d445300, + 0x44560041, 0x5200414d, 0x00004645, 0x00011467, 0x0001146d, 0x00011473, + 0x00011479, 0x0001147f, 0x00011485, 0x0001148a, 0x0001148f, 0x45444956, + 0x5746204f, 0x41545320, 0x44204554, 0x20504d55, 0x6f636544, 0x3d726564, + 0x4745504a, 0x6946000a, 0x61776d72, 0x76206572, 0x69737265, 0x64206e6f, + 0x2073656f, 0x20746f6e, 0x6374616d, 0x61682068, 0x61776472, 0x0a216572, + 0x72694600, 0x7261776d, 0x6f632065, 0x6c69706d, 0x66206465, 0x7620726f, + 0x69737265, 0x30206e6f, 0x38302578, 0x48000a78, 0x77647261, 0x20657261, + 0x6f706572, 0x20737472, 0x20202020, 0x72657620, 0x6e6f6973, 0x25783020, + 0x0a783830, 0x72694600, 0x7261776d, 0x65762065, 0x6f697372, 0x6f64206e, + 0x6e207365, 0x6d20746f, 0x68637461, 0x72616820, 0x72617764, 0x65762065, + 0x6f697372, 0x6946006e, 0x61776d72, 0x63206572, 0x69706d6f, 0x2064656c, + 0x20726f66, 0x70207325, 0x69636572, 0x6e6f6973, 0x6c736420, 0x646f6d20, + 0x6c000a65, 0x4800776f, 0x77647261, 0x20657261, 0x6f706572, 0x20737472, + 0x20202020, 0x20732520, 0x63657270, 0x6f697369, 0x7364206e, 0x6f6d206c, + 0x000a6564, 0x68676968, 0x454c0020, 0x5254435f, 0x78253a4c, 0x434e202c, + 0x5345524f, 0x2c78253a, 0x43494c20, 0x524f435f, 0x554e5f45, 0x64253a4d, + 0x5748202c, 0x524f435f, 0x554e5f45, 0x64253a4d, 0x69000a20, 0x6c61766e, + 0x68206469, 0x77647261, 0x20657261, 0x65726f63, 0x6d756e20, 0x73726562, + 0x756e203a, 0x7265626d, 0x20666f20, 0x64726168, 0x20657261, 0x65726f63, + 0x20736920, 0x656c6c69, 0x006c6167, 0x69206f4e, 0x7562746e, 0x70732066, + 0x20656361, 0x20726f66, 0x7473616d, 0x73207265, 0x20657661, 0x61657261, + 0x626f4a00, 0x73656d20, 0x65676173, 0x754e203a, 0x7265626d, 0x20666f20, + 0x65726f63, 0x61632073, 0x6f6e206e, 0x65622074, 0x72657a20, 0x4a002e6f, + 0x6d20626f, 0x61737365, 0x203a6567, 0x626d754e, 0x6f207265, 0x6f632066, + 0x20736572, 0x206f6f74, 0x6772616c, 0x4a002e65, 0x6d20626f, 0x61737365, + 0x203a6567, 0x75736e55, 0x726f7070, 0x20646574, 0x67616c66, 0x65732073, + 0x4a002e74, 0x6d20626f, 0x61737365, 0x203a6567, 0x626d754e, 0x6f207265, + 0x72662066, 0x73656d61, 0x6f6f7420, 0x72616c20, 0x002e6567, 0x73206f6e, + 0x65636170, 0x206e6920, 0x20626f6a, 0x75657571, 0x41460065, 0x5f4c4154, + 0x4f525245, 0x4e555f52, 0x49464544, 0x0044454e, 0x41544146, 0x52455f4c, + 0x5f524f52, 0x43424641, 0x504e495f, 0x435f5455, 0x5552524f, 0x46005450, + 0x4c415441, 0x5252455f, 0x415f524f, 0x5f434246, 0x5f464552, 0x52524f43, + 0x00545055, 0x41544146, 0x52455f4c, 0x5f524f52, 0x4449534c, 0x5254435f, + 0x414d5f4c, 0x524f4358, 0x4f4e5f45, 0x45535f54, 0x00000054, 0x0001173a, + 0x00011750, 0x0001176f, 0x0001178c, 0x65666552, 0x636e6572, 0x69702065, + 0x72757463, 0x61742065, 0x0a656c62, 0x20646900, 0x73203a20, 0x75206174, + 0x72206573, 0x70206665, 0x70203179, 0x63203279, 0x6620706d, 0x6d20746d, + 0x705f6962, 0x20207274, 0x5f69626d, 0x65676170, 0x69732873, 0x2029657a, + 0x72747020, 0x706f7420, 0x746f623a, 0x3325000a, 0x203a2064, 0x20643325, + 0x20643325, 0x20643325, 0x20643325, 0x20643325, 0x20643325, 0x20643325, + 0x20207025, 0x64362520, 0x29642528, 0x25202020, 0x70253a70, 0x694c000a, + 0x70206576, 0x75746369, 0x74206572, 0x656c6261, 0x754e000a, 0x203a206d, + 0x20206425, 0x646c4f20, 0x20747365, 0x000a6425, 0x20786469, 0x7473203a, + 0x73752061, 0x69702065, 0x20646963, 0x69666572, 0x696c2064, 0x7973656e, + 0x7220636e, 0x20206665, 0x6576696c, 0x73666572, 0x20202020, 0x66657220, + 0x63697032, 0x3325000a, 0x203a2064, 0x20643325, 0x20643325, 0x33252020, + 0x20202064, 0x20643325, 0x36252020, 0x33252064, 0x30202064, 0x38302578, + 0x33252078, 0x33252064, 0x33252064, 0x33252064, 0x33252064, 0x33252064, + 0x33252064, 0x33252064, 0x33252064, 0x33252064, 0x33252064, 0x33252064, + 0x33252064, 0x33252064, 0x33252064, 0x33252064, 0x50000a64, 0x61766972, + 0x72206574, 0x61626665, 0x203a6b6e, 0x6f6c6f63, 0x78302072, 0x6d207825, + 0x625f7861, 0x65666675, 0x25207372, 0x626d2075, 0x75252077, 0x68626d20, + 0x20752520, 0x65736162, 0x6464615f, 0x78302072, 0x78383025, 0x2020000a, + 0x78646920, 0x61747320, 0x66657220, 0x6464615f, 0x20202072, 0x2077626d, + 0x68626d20, 0x2020000a, 0x75332520, 0x75332520, 0x25783020, 0x0a783830, + 0x6e652800, 0x666f2064, 0x69727020, 0x65746176, 0x66657220, 0x6b6e6162, + 0x6d756420, 0x000a2970, 0x75736e55, 0x726f7070, 0x20646574, 0x6f736572, + 0x6974756c, 0x203a6e6f, 0x2064255b, 0x64252078, 0x6f63005d, 0x70757272, + 0x6c732074, 0x00656369, 0x2d746573, 0x2074706f, 0x666f7270, 0x6e696c69, + 0x61203a67, 0x6d206772, 0x20747375, 0x30206562, 0x20726f20, 0x65730031, + 0x706f2d74, 0x73652074, 0x69706163, 0x203a676e, 0x20677261, 0x7473756d, + 0x20656220, 0x726f2030, 0x73003120, 0x6f2d7465, 0x6e207470, 0x20756c61, + 0x6d726f66, 0x203a7461, 0x6e6b6e55, 0x206e776f, 0x6d726f66, 0x73007461, + 0x6f2d7465, 0x6e207470, 0x20756c61, 0x6d726f66, 0x203a7461, 0x75736e55, + 0x726f7070, 0x20646574, 0x6d726f66, 0x73007461, 0x6f2d7465, 0x69207470, + 0x726f6e67, 0x74732065, 0x6d616572, 0x61656820, 0x73726564, 0x7261203a, + 0x756d2067, 0x62207473, 0x20302065, 0x3120726f, 0x74657300, 0x74706f2d, + 0x61726620, 0x7220656d, 0x64726f65, 0x6e697265, 0x61203a67, 0x6d206772, + 0x20747375, 0x30206562, 0x20726f20, 0x65730031, 0x706f2d74, 0x6f682074, + 0x70207473, 0x6f746f72, 0x206c6f63, 0x6e697270, 0x203a7374, 0x20677261, + 0x7473756d, 0x20656220, 0x726f2030, 0x46003120, 0x6978656c, 0x20656c62, + 0x6e776f64, 0x6c616373, 0x6f6e2065, 0x75732074, 0x726f7070, 0x20646574, + 0x68207962, 0x77647261, 0x00657261, 0x5f6c7364, 0x5f736f70, 0x65646f6d, + 0x6c6e6f20, 0x76612079, 0x616c6961, 0x20656c62, 0x68206e69, 0x20686769, + 0x63657270, 0x6f697369, 0x6f64206e, 0x63736e77, 0x20656c61, 0x65646f6d, + 0x6e49002e, 0x66754274, 0x20000a3a, 0x676f6c20, 0x61705f32, 0x735f6567, + 0x20657a69, 0x756e2020, 0x61705f6d, 0x20736567, 0x65726628, 0x000a2965, + 0x20202020, 0x64323025, 0x20202020, 0x20202020, 0x20202020, 0x20643525, + 0x64252820, 0x74796220, 0x0a297365, 0x626e5500, 0x6b636f6c, 0x20676e69, + 0x69736572, 0x3a73657a, 0x0a642520, 0x746f5400, 0x61206c61, 0x636f6c6c, + 0x64657461, 0x64382520, 0x73752820, 0x25206465, 0x75202c64, 0x6572666e, + 0x6c626165, 0x64252065, 0x7266202c, 0x25206565, 0x000a2964, 0x646e6553, + 0x20676e69, 0x20666572, 0x6d617266, 0x6e752065, 0x64657375, 0x64646120, + 0x73736572, 0x78383025, 0x6552000a, 0x76696563, 0x53206465, 0x43544957, + 0x52000a48, 0x69656365, 0x20646576, 0x20424f4a, 0x67616c66, 0x75253d73, + 0x61726620, 0x3d73656d, 0x63207525, 0x7365726f, 0x0a75253d, 0x54455300, + 0x54504f5f, 0x204e4f49, 0x6c696166, 0x203a6465, 0x000a7325, 0x2f355600, + 0x4a2d3756, 0x44474550, 0x203a4345, 0x63655200, 0x65766569, 0x45532064, + 0x504f5f54, 0x4e4f4954, 0x74616420, 0x69735f61, 0x2520657a, 0x706f2075, + 0x6e695f74, 0x20786564, 0x61207525, 0x30206772, 0x38302578, 0x53000a78, + 0x69737365, 0x6f206e6f, 0x6f697470, 0x6320736e, 0x6f206e61, 0x20796c6e, + 0x63206562, 0x676e6168, 0x69206465, 0x5453206e, 0x4550504f, 0x74732044, + 0x2e657461, 0x54455300, 0x54504f5f, 0x204e4f49, 0x202c4b4f, 0x666e6f63, + 0x696d7269, 0x000a676e, 0x65636552, 0x64657669, 0x4c444920, 0x43415f45, + 0x47000a4b, 0x4920746f, 0x5f454c44, 0x204b4341, 0x68746977, 0x2074756f, + 0x746e6573, 0x4c444920, 0x52002e45, 0x69656365, 0x20646576, 0x454c4552, + 0x5f455341, 0x5f464552, 0x4d415246, 0x61642045, 0x735f6174, 0x20657a69, + 0x62207525, 0x65666675, 0x64615f72, 0x73657264, 0x78302073, 0x78383025, + 0x6572000a, 0x7361656c, 0x65722065, 0x72662066, 0x3a656d61, 0x64646120, + 0x73736572, 0x746f6e20, 0x206e6920, 0x696c6176, 0x65722064, 0x6e6f6967, + 0x6553002e, 0x6e69646e, 0x72662067, 0x5f656d61, 0x6f6c6c61, 0x61705f63, + 0x736d6172, 0x2077203a, 0x68207525, 0x20752520, 0x63626661, 0x20752520, + 0x6d207525, 0x25206962, 0x6f642075, 0x63736e77, 0x64656c61, 0x6172665f, + 0x775f656d, 0x68746469, 0x2c75253d, 0x6e776f64, 0x6c616373, 0x665f6465, + 0x656d6172, 0x6965685f, 0x3d746867, 0x0a2e7525, 0x6e655300, 0x676e6964, + 0x71657320, 0x636e6575, 0x61705f65, 0x736d6172, 0x7830203a, 0x38302520, + 0x30252078, 0x000a7838, 0x646e6553, 0x20676e69, 0x66667562, 0x705f7265, + 0x6d617261, 0x70797420, 0x75252065, 0x7a697320, 0x7a252065, 0x53000a75, + 0x20646e65, 0x65727473, 0x63206d61, 0x7572726f, 0x203a7470, 0x000a7325, + 0x646e6553, 0x72747320, 0x206d6165, 0x20746f6e, 0x70707573, 0x6574726f, + 0x25203a64, 0x53000a73, 0x69646e65, 0x5320676e, 0x43544957, 0x5f444548, + 0x000a4e49, 0x646e6553, 0x20676e69, 0x5f424f4a, 0x55514544, 0x44455545, + 0x4449000a, 0x2820454c, 0x656c6469, 0x6e65735f, 0x6f745f74, 0x736f685f, + 0x75252074, 0x6e69202c, 0x5f667562, 0x20746e63, 0x202c7525, 0x6274756f, + 0x635f6675, 0x2520746e, 0x000a2975, 0x61202020, 0x6c696176, 0x726f7720, + 0x69207364, 0x6f63206e, 0x71206d6d, 0x65756575, 0x6d203a73, 0x25206773, + 0x6e692075, 0x20667562, 0x6f207525, 0x75627475, 0x75252066, 0x6573000a, + 0x6e69646e, 0x65722067, 0x6e6f7073, 0x63206573, 0x2065646f, 0x000a6425, + 0x646e6553, 0x20676e69, 0x434f5250, 0x45535345, 0x25000a44, 0x73252073, + 0x65766d20, 0x66756220, 0x20726566, 0x6d617266, 0x69282065, 0x6675626e, + 0x746e635f, 0x2c752520, 0x74756f20, 0x5f667562, 0x20746e63, 0x0a297525, + 0x20202000, 0x736f6820, 0x61685f74, 0x656c646e, 0x25783020, 0x25783830, + 0x20783830, 0x72657375, 0x7461645f, 0x61745f61, 0x78302067, 0x78383025, + 0x78383025, 0x2020000a, 0x72662020, 0x5f656d61, 0x67616c66, 0x78302073, + 0x78383025, 0x706f7420, 0x20752520, 0x20746f62, 0x65207525, 0x2520736f, + 0x65722075, 0x7525206a, 0x2020000a, 0x6f662020, 0x74616d72, 0x25783020, + 0x20783430, 0x69736976, 0x20656c62, 0x25787525, 0x20000a75, 0x6d202020, + 0x5f696e69, 0x6d617266, 0x20795f65, 0x2d752528, 0x0a297525, 0x20202000, + 0x616c7020, 0x2073656e, 0x30257830, 0x202c7838, 0x30257830, 0x000a7838, + 0x20202020, 0x657a6973, 0x75252073, 0x7525202c, 0x2020000a, 0x72632020, + 0x2078706f, 0x63207525, 0x79706f72, 0x20752520, 0x63626661, 0x735f775f, + 0x75252062, 0x20752520, 0x63626661, 0x7261705f, 0x20736d61, 0x30257830, + 0x000a7838, 0x20202020, 0x6b656570, 0x25783020, 0x25783230, 0x25783230, + 0x25783230, 0x0a783230, 0x20202000, 0x616c7020, 0x745f656e, 0x3020706f, + 0x38302578, 0x78302078, 0x78383025, 0x25783020, 0x0a783830, 0x20202000, + 0x616c7020, 0x625f656e, 0x3020746f, 0x38302578, 0x78302078, 0x78383025, + 0x25783020, 0x0a783830, 0x20202000, 0x72747320, 0x73656469, 0x25202020, + 0x64252064, 0x0a642520, 0x20202000, 0x78616d20, 0x78752520, 0x000a7525, + 0x25207325, 0x766d2073, 0x75622065, 0x72656666, 0x74696220, 0x65727473, + 0x28206d61, 0x75626e69, 0x6e635f66, 0x75252074, 0x756f202c, 0x66756274, + 0x746e635f, 0x29752520, 0x2020000a, 0x69622020, 0x72747374, 0x5f6d6165, + 0x67616c66, 0x78302073, 0x78383025, 0x736f6520, 0x75252066, 0x666f6520, + 0x20752520, 0x20736f65, 0x65207525, 0x7362666f, 0x20752520, 0x74617473, + 0x75252073, 0x2020000a, 0x64612020, 0x30207264, 0x38302578, 0x6c612078, + 0x20636f6c, 0x6f207525, 0x25206666, 0x69662075, 0x25206c6c, 0x25000a75, + 0x73252073, 0x65766d20, 0x66756220, 0x20726566, 0x61726170, 0x6574656d, + 0x74202c72, 0x20657079, 0x000a7525, 0x25207325, 0x766d2073, 0x75622065, + 0x72656666, 0x6e656720, 0x6c617265, 0x6e692820, 0x5f667562, 0x20746e63, + 0x202c7525, 0x6274756f, 0x635f6675, 0x2520746e, 0x000a2975, 0x20202020, + 0x65707974, 0x2c752520, 0x6e6f6320, 0x5f676966, 0x657a6973, 0x0a752520, + 0x20202000, 0x6e6f6320, 0x20676966, 0x30257830, 0x30207832, 0x32302578, + 0x78302078, 0x78323025, 0x25783020, 0x0a783230, 0x20202000, 0x66756220, + 0x5f726566, 0x20727470, 0x30257830, 0x202c7838, 0x66667562, 0x735f7265, + 0x20657a69, 0x000a7525, 0x74736f48, 0x69727020, 0x6220746e, 0x65666675, + 0x52452072, 0x2e524f52, 0x20732520, 0x6d207325, 0x62206576, 0x65666675, + 0x69772072, 0x75206874, 0x6f6e6b6e, 0x63206e77, 0x2065646f, 0x000a7525, + 0x00746f47, 0x5054554f, 0x53005455, 0x69646e65, 0x4900676e, 0x5455504e, + 0x63655200, 0x65766965, 0x554f2064, 0x54555054, 0x554c465f, 0x73204853, + 0x65746174, 0x20752520, 0x7074756f, 0x625f7475, 0x6b636f6c, 0x25206465, + 0x4f000a75, 0x75707475, 0x6c662074, 0x20687375, 0x796c6e6f, 0x6c6c6120, + 0x6465776f, 0x65687720, 0x7473206e, 0x6570706f, 0x6f202c64, 0x66612072, + 0x20726574, 0x70736572, 0x65736e6f, 0x45535f20, 0x4e455551, 0x505f4543, + 0x4d415241, 0x52455445, 0x65530053, 0x6e69646e, 0x554f2067, 0x54555054, + 0x554c465f, 0x44454853, 0x6553000a, 0x6e69646e, 0x4e492067, 0x5f545550, + 0x53554c46, 0x0a444548, 0x63655200, 0x65766965, 0x4e492064, 0x5f545550, + 0x53554c46, 0x49000a48, 0x5455504e, 0x554c465f, 0x6f204853, 0x20796c6e, + 0x6f6c6c61, 0x20646577, 0x6e656877, 0x206e6920, 0x504f5453, 0x20444550, + 0x74617473, 0x52002e65, 0x69656365, 0x20646576, 0x000a4f47, 0x5f45564d, + 0x55514552, 0x5f545345, 0x45444f43, 0x3a4f475f, 0x70204120, 0x69766572, + 0x2073756f, 0x74617473, 0x72742065, 0x69736e61, 0x6e6f6974, 0x20736920, + 0x6c697473, 0x6570206c, 0x6e69646e, 0x4e002e67, 0x6f6a206f, 0x6e692062, + 0x626f6a20, 0x65757120, 0x002e6575, 0x65636552, 0x64657669, 0x4f545320, + 0x4d000a50, 0x525f4556, 0x45555145, 0x435f5453, 0x5f45444f, 0x504f5453, + 0x2041203a, 0x76657270, 0x73756f69, 0x61747320, 0x74206574, 0x736e6172, + 0x6f697469, 0x7369206e, 0x69747320, 0x70206c6c, 0x69646e65, 0x002e676e, + 0x6e616843, 0x73206567, 0x65746174, 0x206f7420, 0x000a6425, 0x646e6553, + 0x20676e69, 0x54415453, 0x48435f45, 0x45474e41, 0x77656e20, 0x6174735f, + 0x253d6574, 0x53000a75, 0x65746174, 0x61686320, 0x2065676e, 0x646e6570, + 0x20676e69, 0x74617473, 0x64253d65, 0x6e657020, 0x676e6964, 0x0a64253d, + 0x63655200, 0x65766965, 0x55442064, 0x000a504d, 0x5f45564d, 0x55514552, + 0x5f545345, 0x45444f43, 0x4d55445f, 0x6f6e2050, 0x6c612074, 0x65776f6c, + 0x6f662064, 0x72702072, 0x6365746f, 0x20646574, 0x73736573, 0x736e6f69, + 0x626e002e, 0x75622072, 0x72656666, 0x65682073, 0x203a646c, 0x69207525, + 0x7475706e, 0x20752520, 0x7074756f, 0x000a7475, 0x69617661, 0x6f77206c, + 0x20736472, 0x63206e69, 0x206d6d6f, 0x75657571, 0x203a7365, 0x2067736d, + 0x69207525, 0x6675626e, 0x20752520, 0x6274756f, 0x25206675, 0x52000a75, + 0x69656365, 0x20646576, 0x474e4950, 0x6552000a, 0x76696563, 0x44206465, + 0x47554245, 0x736d202c, 0x643e2d67, 0x5f617461, 0x657a6973, 0x2c64253d, + 0x76656c20, 0x253d6c65, 0x63000a64, 0x2065646f, 0x6425203d, 0x7254000a, + 0x69736e61, 0x6e6f6974, 0x46494620, 0x766f204f, 0x6c667265, 0x5500776f, + 0x7075736e, 0x74726f70, 0x6d206465, 0x61737365, 0x63206567, 0x2e65646f, + 0x69424d00, 0x206f666e, 0x7074756f, 0x6e207475, 0x6120746f, 0x776f6c6c, + 0x66206465, 0x7020726f, 0x65746f72, 0x64657463, 0x73657320, 0x6e6f6973, + 0x6142002e, 0x424d2064, 0x6f666e69, 0x74756f20, 0x3b747570, 0x78616d20, + 0x7a69735f, 0x73282065, 0x64697274, 0x5d305b65, 0x756d2029, 0x62207473, + 0x6f6e2065, 0x656e2d6e, 0x69746167, 0x000a6576, 0x20646142, 0x6e69424d, + 0x6f206f66, 0x75707475, 0x75203b74, 0x5f646573, 0x657a6973, 0x73756d20, + 0x6f6e2074, 0x65622074, 0x72616c20, 0x20726567, 0x6e616874, 0x78616d20, + 0x7a69735f, 0x4d000a65, 0x666e6942, 0x756f206f, 0x74757074, 0x66756220, + 0x20726566, 0x20736168, 0x656c6c69, 0x206c6167, 0x61636f6c, 0x6e6f6974, + 0x64614200, 0x69424d20, 0x206f666e, 0x7074756f, 0x62207475, 0x65666675, + 0x4e002e72, 0x7573206f, 0x726f7070, 0x6f662074, 0x68742072, 0x62207369, + 0x65666675, 0x6f632072, 0x20726f6c, 0x6d726f66, 0x002e7461, 0x64726168, + 0x65726177, 0x656f6420, 0x6f6e2073, 0x75732074, 0x726f7070, 0x46412074, + 0x6f204342, 0x75707475, 0x61680074, 0x61776472, 0x64206572, 0x2073656f, + 0x20746f6e, 0x70707573, 0x2074726f, 0x5f45564d, 0x4d524f46, 0x595f5441, + 0x32345655, 0x30505f30, 0x54003031, 0x20736968, 0x65727473, 0x6e206d61, + 0x73646565, 0x206e6120, 0x65746e69, 0x63616c72, 0x62206465, 0x65666675, + 0x54002e72, 0x20736968, 0x65727473, 0x6e206d61, 0x73646565, 0x6e206120, + 0x692d6e6f, 0x7265746e, 0x6563616c, 0x75622064, 0x72656666, 0x694d002e, + 0x726f7272, 0x20676e69, 0x6e207369, 0x7320746f, 0x6f707075, 0x64657472, + 0x726f6620, 0x63656420, 0x2e65646f, 0x74694200, 0x74706564, 0x666f2068, + 0x42464120, 0x756f2043, 0x74757074, 0x66756220, 0x20726566, 0x7473756d, + 0x20656220, 0x622d3031, 0x62207469, 0x75616365, 0x6f206573, 0x65642066, + 0x65646f63, 0x74732064, 0x6d616572, 0x6942002e, 0x70656474, 0x6f206874, + 0x46412066, 0x6f204342, 0x75707475, 0x75622074, 0x72656666, 0x73756d20, + 0x65622074, 0x622d3820, 0x62207469, 0x75616365, 0x6f206573, 0x65642066, + 0x65646f63, 0x74732064, 0x6d616572, 0x4641002e, 0x66204342, 0x616d726f, + 0x756d2074, 0x62207473, 0x3a342065, 0x20323a32, 0x636e6973, 0x65642065, + 0x65646f63, 0x74732064, 0x6d616572, 0x2e736920, 0x42464100, 0x6f662043, + 0x74616d72, 0x73756d20, 0x65622074, 0x323a3420, 0x7320303a, 0x65636e69, + 0x63656420, 0x6465646f, 0x72747320, 0x206d6165, 0x002e7369, 0x61746f52, + 0x6e6f6974, 0x20736920, 0x20746f6e, 0x70707573, 0x6574726f, 0x6f662064, + 0x46412072, 0x62204342, 0x65666675, 0x002e7372, 0x43424641, 0x776f6420, + 0x6163736e, 0x676e696c, 0x746f6e20, 0x70757320, 0x74726f70, 0x66206465, + 0x6920726f, 0x7265746e, 0x6563616c, 0x74732064, 0x6d616572, 0x6e490073, + 0x696c6176, 0x63732064, 0x6e696c61, 0x65732067, 0x6f662074, 0x46412072, + 0x62204342, 0x65666675, 0x6d202c72, 0x20747375, 0x30206562, 0x20726f20, + 0x46002e31, 0x6420726f, 0x736e776f, 0x696c6163, 0x202c676e, 0x43424641, + 0x616c7020, 0x3120656e, 0x20736920, 0x20746f6e, 0x76206e69, 0x64696c61, + 0x6d656d20, 0x2079726f, 0x69676572, 0x002e6e6f, 0x43424641, 0x616c7020, + 0x3120656e, 0x7a697320, 0x68732065, 0x646c756f, 0x746f6e20, 0x20656220, + 0x6f72657a, 0x4641002e, 0x70204342, 0x656e616c, 0x69203020, 0x6f6e2073, + 0x6e692074, 0x6c617620, 0x6d206469, 0x726f6d65, 0x65722079, 0x6e6f6967, + 0x4641002e, 0x70204342, 0x656e616c, 0x73203020, 0x20657a69, 0x756f6873, + 0x6e20646c, 0x6220746f, 0x657a2065, 0x002e6f72, 0x20726f46, 0x65746e69, + 0x63616c72, 0x41202c65, 0x20434246, 0x6e616c70, 0x20312065, 0x6e207369, + 0x6920746f, 0x6176206e, 0x2064696c, 0x6f6d656d, 0x72207972, 0x6f696765, + 0x46002e6e, 0x6920726f, 0x7265746e, 0x6563616c, 0x6661202c, 0x775f6362, + 0x68746469, 0x5f6e695f, 0x65707573, 0x6f6c6272, 0x20736b63, 0x7473756d, + 0x20656220, 0x20656874, 0x656d6173, 0x726f6620, 0x746f6220, 0x6c702068, + 0x73656e61, 0x4641002e, 0x74204342, 0x64656c69, 0x61656820, 0x20726564, + 0x75716572, 0x73657269, 0x6c697420, 0x62206465, 0x2e79646f, 0x42464100, + 0x32332043, 0x73203878, 0x72657075, 0x636f6c62, 0x6e20736b, 0x7320746f, + 0x6f707075, 0x64657472, 0x726f6620, 0x63656420, 0x2065646f, 0x7074756f, + 0x43007475, 0x6e206e61, 0x7520746f, 0x34206573, 0x323a323a, 0x66756220, + 0x20726566, 0x73206669, 0x61657274, 0x7369206d, 0x323a3420, 0x002e303a, + 0x61766e49, 0x2064696c, 0x6c616373, 0x20676e69, 0x20746573, 0x20726f66, + 0x6e616c70, 0x62207261, 0x65666675, 0x6d002e72, 0x665f7861, 0x656d6172, + 0x6469775f, 0x73206874, 0x6c756f68, 0x65622064, 0x72616c20, 0x20726567, + 0x6e616874, 0x72657a20, 0x6d002e6f, 0x665f7861, 0x656d6172, 0x6965685f, + 0x20746867, 0x756f6873, 0x6220646c, 0x616c2065, 0x72656772, 0x61687420, + 0x657a206e, 0x002e6f72, 0x75736e55, 0x726f7070, 0x20646574, 0x6e616c70, + 0x62207261, 0x65666675, 0x6f632072, 0x20726f6c, 0x6d726f66, 0x002e7461, + 0x69727453, 0x74206564, 0x73206f6f, 0x6c6c616d, 0x206f7420, 0x646c6f68, + 0x78616d20, 0x6172665f, 0x775f656d, 0x68746469, 0x6c70002e, 0x5f656e61, + 0x20706f74, 0x7473756d, 0x20656220, 0x6d206e69, 0x726f6d65, 0x65722079, + 0x6e6f6967, 0x41524620, 0x5542454d, 0x70002e46, 0x656e616c, 0x746f625f, + 0x73756d20, 0x65622074, 0x206e6920, 0x6f6d656d, 0x72207972, 0x6f696765, + 0x5246206e, 0x42454d41, 0x002e4655, 0x6e616c70, 0x6f625f65, 0x68732074, + 0x646c756f, 0x20656220, 0x6f72657a, 0x726f6620, 0x6e6f6e20, 0x746e692d, + 0x616c7265, 0x20646563, 0x65727473, 0x002e6d61, 0x72646441, 0x20737365, + 0x7520666f, 0x6573756e, 0x6c702064, 0x20656e61, 0x756f6873, 0x6220646c, + 0x657a2065, 0x002e6f72, 0x69727453, 0x6f206564, 0x6e752066, 0x64657375, + 0x616c7020, 0x7320656e, 0x6c756f68, 0x65622064, 0x72657a20, 0x52002e6f, + 0x7461746f, 0x206e6f69, 0x206e6163, 0x20746f6e, 0x64206562, 0x20656e6f, + 0x20726f66, 0x3a323a34, 0x57002e32, 0x48435441, 0x20474f44, 0x00717269, + 0x2a2a2a2a, 0x53415220, 0x20642543, 0x524f4241, 0x2a2a2054, 0x000a2a2a, + 0x43502020, 0x20202020, 0x7830203d, 0x78383025, 0x2020000a, 0x20205253, + 0x203d2020, 0x30257830, 0x000a7838, 0x41462020, 0x20202052, 0x7830203d, + 0x78383025, 0x2020000a, 0x32255b52, 0x3d205d64, 0x25783020, 0x0a783830, + 0x00000000, 0x0001653b, 0x0000ba8b, 0x0000ba8b, 0x0000ba8b, 0x61766e49, + 0x2064696c, 0x66667562, 0x69207265, 0x564d206e, 0x4f435f45, 0x425f4d4d, + 0x495f4655, 0x415f514e, 0x20524444, 0x70786528, 0x65746365, 0x766d2064, + 0x75625f65, 0x72656666, 0x7469625f, 0x65727473, 0x2e296d61, 0x766e4900, + 0x64696c61, 0x706e6920, 0x62207475, 0x65666675, 0x46002e72, 0x6978656c, + 0x20656c62, 0x6e776f64, 0x6c616373, 0x6f6e2065, 0x75732074, 0x726f7070, + 0x20646574, 0x68207962, 0x77647261, 0x2e657261, 0x6e614300, 0x746f6e20, + 0x65737520, 0x642d2d20, 0x5f6e776f, 0x6c616373, 0x20582065, 0x68746977, + 0x642d2d20, 0x725f6c73, 0x6f697461, 0x726f685f, 0x7265762f, 0x646e6120, + 0x6c736420, 0x6172665f, 0x775f656d, 0x68746469, 0x6965682f, 0x20746867, + 0x73207461, 0x20656d61, 0x656d6974, 0x6143002e, 0x6f6e206e, 0x73752074, + 0x2d2d2065, 0x5f6c7364, 0x69746172, 0x6f685f6f, 0x65762f72, 0x20582072, + 0x68746977, 0x6c736420, 0x6172665f, 0x775f656d, 0x68746469, 0x6965682f, + 0x20746867, 0x73207461, 0x20656d61, 0x656d6974, 0x6c66002e, 0x62697865, + 0x6420656c, 0x736e776f, 0x696c6163, 0x7520676e, 0x7075736e, 0x74726f70, + 0x69206465, 0x7475706e, 0x73657220, 0x74756c6f, 0x206e6f69, 0x74616874, + 0x73656c20, 0x68742073, 0x32206e61, 0x4641002e, 0x202c4342, 0x6e20726f, + 0x202c746f, 0x7473756d, 0x20656220, 0x64657375, 0x6e6f6320, 0x74736973, + 0x6c746e65, 0x75642079, 0x676e6972, 0x63656420, 0x0065646f, 0x4e49424d, + 0x6f204f46, 0x75707475, 0x6f202c74, 0x6f6e2072, 0x6d202c74, 0x20747375, + 0x75206562, 0x20646573, 0x736e6f63, 0x65747369, 0x796c746e, 0x72756420, + 0x20676e69, 0x6f636564, 0x49006564, 0x6c61766e, 0x6d206469, 0x625f6576, + 0x65666675, 0x65675f72, 0x6172656e, 0x6e69206c, 0x45564d20, 0x4d4f435f, + 0x55425f4d, 0x554f5f46, 0x415f5154, 0x2e524444, 0x70695000, 0x69702065, + 0x72757463, 0x6f6a2065, 0x6c612062, 0x64616572, 0x61682079, 0x6e612073, + 0x45564d20, 0x4655425f, 0x5f524546, 0x45444f43, 0x4e45475f, 0x4c415245, + 0x61656820, 0x20726564, 0x6f737361, 0x74616963, 0x77206465, 0x20687469, + 0x55007469, 0x7075736e, 0x74726f70, 0x74206465, 0x20657079, 0x6d20666f, + 0x625f6576, 0x65666675, 0x65675f72, 0x6172656e, 0x7562206c, 0x72656666, + 0x206e6920, 0x7074756f, 0x71207475, 0x65756575, 0x6e49002e, 0x696c6176, + 0x75622064, 0x72656666, 0x206e6920, 0x5f45564d, 0x4d4d4f43, 0x4655425f, + 0x54554f5f, 0x44415f51, 0x28205244, 0x65707865, 0x64657463, 0x65766d20, + 0x6675625f, 0x5f726566, 0x6d617266, 0x726f2065, 0x65766d20, 0x6675625f, + 0x5f726566, 0x656e6567, 0x296c6172, 0x5044002e, 0x6e203a42, 0x665f6d75, + 0x656d6172, 0x64253d73, 0x61737520, 0x303d6567, 0x38302578, 0x70642078, + 0x75665f62, 0x656e6c6c, 0x253d7373, 0x696c2064, 0x725f6576, 0x645f6665, + 0x5f707369, 0x6b73616d, 0x2578303d, 0x44000a78, 0x203a4250, 0x3a643225, + 0x78646920, 0x6432253d, 0x73696420, 0x79616c70, 0x64726f5f, 0x253d7265, + 0x66206436, 0x6873756c, 0x2064253d, 0x646e6570, 0x3d676e69, 0x62206425, + 0x65666675, 0x73755f72, 0x253d6465, 0x6f6e2064, 0x74756f5f, 0x3d747570, + 0x69206425, 0x65725f73, 0x64253d66, 0x72617420, 0x5f746567, 0x253d6469, + 0x6d000a64, 0x69737369, 0x7020676e, 0x73747261, 0x20666f20, 0x6d617266, + 0x6e490065, 0x696c6176, 0x75622064, 0x72656666, 0x206e6920, 0x5f45564d, + 0x4d4d4f43, 0x4655425f, 0x514e495f, 0x4444415f, 0x65282052, 0x63657078, + 0x20646574, 0x5f65766d, 0x66667562, 0x625f7265, 0x74737469, 0x6d616572, + 0x73002e29, 0x6f2d7465, 0x6a207470, 0x64676570, 0x203a6365, 0x75736e55, + 0x726f7070, 0x20646574, 0x6974706f, 0x68006e6f, 0x65646165, 0x61702072, + 0x20657372, 0x6f727265, 0x61700072, 0x20657372, 0x6e617571, 0x617a6974, + 0x6e6f6974, 0x62617420, 0x202c656c, 0x303d2158, 0x72617000, 0x73206573, + 0x74726174, 0x20666f20, 0x6d617266, 0x62202c65, 0x65647469, 0x21687470, + 0x7000383d, 0x65737261, 0x61747320, 0x6f207472, 0x72662066, 0x2c656d61, + 0x72626e20, 0x6d6f635f, 0x656e6f70, 0x2173746e, 0x7000333d, 0x65737261, + 0x61747320, 0x6f207472, 0x72662066, 0x2c656d61, 0x735f6820, 0x6c706d61, + 0x61665f65, 0x726f7463, 0x72617000, 0x73206573, 0x74726174, 0x20666f20, + 0x6d617266, 0x76202c65, 0x6d61735f, 0x5f656c70, 0x74636166, 0x7000726f, + 0x65737261, 0x61747320, 0x6f207472, 0x72662066, 0x2c656d61, 0x61757120, + 0x745f746e, 0x656c6261, 0x6c65735f, 0x7000333e, 0x65737261, 0x61747320, + 0x6f207472, 0x72662066, 0x2c656d61, 0x72686320, 0x5f616d6f, 0x6d726f66, + 0x695f7461, 0x70006364, 0x65737261, 0x61747320, 0x6f207472, 0x63732066, + 0x202c6e61, 0x746c756d, 0x656c7069, 0x61637320, 0x7020736e, 0x66207265, + 0x656d6172, 0x72617000, 0x73206573, 0x74726174, 0x20666f20, 0x6e616373, + 0x626e202c, 0x6f635f72, 0x6e6f706d, 0x73746e65, 0x00333d21, 0x73726170, + 0x75682065, 0x616d6666, 0x6174206e, 0x2c656c62, 0x6c627420, 0x72626e5f, + 0x31203e20, 0x00000000, 0x20002000, 0x30023001, 0x30043003, 0xc0223005, + 0x10061006, 0xc0122007, 0x10081008, 0xc0122009, 0x100a100a, 0x0000200b, + 0x20002000, 0x20012001, 0x20022002, 0xc0233003, 0x10041004, 0x10041004, + 0x20052005, 0xc0233006, 0x10071007, 0x10071007, 0x20082008, 0xc0223009, + 0x100a100a, 0x0000200b, 0x20012001, 0x20012001, 0x20022002, 0x20022002, + 0x30033003, 0x40044000, 0xc0444011, 0xc0c4c084, 0x10051005, 0x10051005, + 0x10051005, 0x10051005, 0x10121012, 0x10121012, 0x10121012, 0x10121012, + 0x10211021, 0x10211021, 0x10211021, 0x10211021, 0x20312031, 0x20312031, + 0x20412041, 0x20412041, 0x30063006, 0x30133013, 0x30513051, 0x30613061, + 0x40224007, 0xc0444071, 0xc0c4c084, 0xc144c104, 0x10141014, 0x10141014, + 0x10141014, 0x10141014, 0x10321032, 0x10321032, 0x10321032, 0x10321032, + 0x10811081, 0x10811081, 0x10811081, 0x10811081, 0x10911091, 0x10911091, + 0x10911091, 0x10911091, 0x10a110a1, 0x10a110a1, 0x10a110a1, 0x10a110a1, + 0x20082008, 0x20082008, 0x20232023, 0x20232023, 0x20422042, 0x20422042, + 0x20b120b1, 0x20b120b1, 0x20c120c1, 0x20c120c1, 0x30153015, 0x30523052, + 0x30d130d1, 0x30f030f0, 0x40334024, 0x40724062, 0xc084c044, 0xc104c0c4, + 0xc184c144, 0xc204c1c4, 0x30823082, 0x400a4009, 0x40174016, 0x40194018, + 0x4025401a, 0x40274026, 0x40294028, 0x4034402a, 0x40364035, 0x40384037, + 0x403a4039, 0x40444043, 0x40464045, 0x40484047, 0x404a4049, 0x40544053, + 0x40564055, 0x40584057, 0x405a4059, 0x40644063, 0x40664065, 0x40684067, + 0x406a4069, 0x40744073, 0x40764075, 0x40784077, 0x407a4079, 0x40844083, + 0x40864085, 0x40884087, 0x408a4089, 0x40934092, 0x40954094, 0x40974096, + 0x40994098, 0x40a2409a, 0x40a440a3, 0x40a640a5, 0x40a840a7, 0x40aa40a9, + 0x40b340b2, 0x40b540b4, 0x40b740b6, 0x40b940b8, 0x40c240ba, 0x40c440c3, + 0x40c640c5, 0x40c840c7, 0x40ca40c9, 0x40d340d2, 0x40d540d4, 0x40d740d6, + 0x40d940d8, 0x40e140da, 0x40e340e2, 0x40e540e4, 0x40e740e6, 0x40e940e8, + 0x40f140ea, 0x40f340f2, 0x40f540f4, 0x40f740f6, 0x40f940f8, 0x000040fa, + 0x20002000, 0x20002000, 0x20002000, 0x20002000, 0x20002000, 0x20002000, + 0x20002000, 0x20002000, 0x20012001, 0x20012001, 0x20012001, 0x20012001, + 0x20012001, 0x20012001, 0x20012001, 0x20012001, 0x30023002, 0x30023002, + 0x30023002, 0x30023002, 0x40034003, 0x40034003, 0x40114011, 0x40114011, + 0x50045004, 0x50055005, 0x50215021, 0x50315031, 0x60126006, 0x60516041, + 0xc144c104, 0xc1c4c184, 0x10071007, 0x10071007, 0x10071007, 0x10071007, + 0x10611061, 0x10611061, 0x10611061, 0x10611061, 0x10711071, 0x10711071, + 0x10711071, 0x10711071, 0x20132013, 0x20132013, 0x20222022, 0x20222022, + 0x20322032, 0x20322032, 0x20812081, 0x20812081, 0x30083008, 0x30143014, + 0x30423042, 0x30913091, 0x30a130a1, 0x30b130b1, 0x30c130c1, 0x40234009, + 0x40524033, 0xc04340f0, 0xc083c063, 0xc1c3c0a3, 0x10151015, 0x10151015, + 0x10621062, 0x10621062, 0x10721072, 0x10721072, 0x10d110d1, 0x10d110d1, + 0x200a200a, 0x20162016, 0x20242024, 0x20342034, 0xc043c023, 0xc083c063, + 0xc0c3c0a3, 0xc103c0e3, 0x10e110e1, 0x10e110e1, 0x20252025, 0x20f120f1, + 0x30183017, 0x301a3019, 0x30273026, 0x30293028, 0x3035302a, 0x30373036, + 0x30393038, 0x3043303a, 0x30453044, 0x30473046, 0x30493048, 0x3053304a, + 0x30553054, 0x30573056, 0x30593058, 0x3063305a, 0x30653064, 0x30673066, + 0x30693068, 0x3073306a, 0x30753074, 0x30773076, 0x30793078, 0x3082307a, + 0x30843083, 0x30863085, 0x30883087, 0x308a3089, 0xc043c023, 0xc083c063, + 0xc0c3c0a3, 0xc103c0e3, 0x30933092, 0x30953094, 0x30973096, 0x30993098, + 0x30a2309a, 0x30a430a3, 0x30a630a5, 0x30a830a7, 0x30aa30a9, 0x30b330b2, + 0x30b530b4, 0x30b730b6, 0x30b930b8, 0x30c230ba, 0x30c430c3, 0x30c630c5, + 0x30c830c7, 0x30ca30c9, 0x30d330d2, 0x30d530d4, 0x30d730d6, 0x30d930d8, + 0x30e230da, 0x30e430e3, 0x30e630e5, 0x30e830e7, 0x30ea30e9, 0x30f330f2, + 0x30f530f4, 0x30f730f6, 0x30f930f8, 0x000030fa, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x2a2a2a2a, 0x53415220, 0x20642543, 0x524f4241, 0x2a2a2054, 0x000a2a2a, + 0x43502020, 0x20202020, 0x7830203d, 0x78383025, 0x2020000a, 0x20205253, + 0x203d2020, 0x30257830, 0x000a7838, 0x41462020, 0x20202052, 0x7830203d, + 0x78383025, 0x2020000a, 0x32255b52, 0x3d205d64, 0x25783020, 0x0a783830, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x0000c71e, 0x0000c71e, 0x0000c71e, 0x0000c71e, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x20000010, 0x804000c0, + 0x03008001, 0x00060100, 0x80ff080f, 0xff080f80, 0x080f8080, 0x0f8080ff, + 0x8080ff08, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x20000010, 0x00400080, 0x02008001, 0x00040100, + 0x00ff200f, 0x200f0802, 0x080200ff, 0x00ff200f, 0x200f0802, 0x080200ff, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x4649424d, 0x4745504a, 0x00000001, 0x2a2a2a2a, 0x53415220, 0x20642543, + 0x524f4241, 0x2a2a2054, 0x000a2a2a, 0x43502020, 0x20202020, 0x7830203d, + 0x78383025, 0x2020000a, 0x20205253, 0x203d2020, 0x30257830, 0x000a7838, + 0x41462020, 0x20202052, 0x7830203d, 0x78383025, 0x2020000a, 0x32255b52, + 0x3d205d64, 0x25783020, 0x0a783830, 0x73657200, 0x61756469, 0x3020736c, + 0x20702578, 0x78257830, 0x0000000a, 0x0000c98d, 0x0000c98d, 0x0000c98d, + 0x0000c98d, 0x06050100, 0x0d070402, 0x110c0803, 0x18120b09, 0x1c1b0f0e, + 0x2a1d1a10, 0x2b291e19, 0x352c281f, 0x2017130a, 0x26211614, 0x2f252215, + 0x31302423, 0x36342d27, 0x3c37332e, 0x3d3b3832, 0x3f3e3a39, 0x75736e55, + 0x726f7070, 0x20646574, 0x6e776f64, 0x6c616373, 0x20676e69, 0x69746172, + 0x4600216f, 0x6978656c, 0x20656c62, 0x6e776f44, 0x6c616373, 0x20676e69, + 0x73656f64, 0x746f6e20, 0x70757320, 0x74726f70, 0x6c697420, 0x6f206465, + 0x75707475, 0x6f662074, 0x74616d72, 0x6c46002e, 0x64207865, 0x63206c73, + 0x20706f72, 0x6f727265, 0x636f2072, 0x72727563, 0x202c6465, 0x61656c70, + 0x66206573, 0x69207869, 0x2a002174, 0x202a2a2a, 0x43534152, 0x41206425, + 0x54524f42, 0x2a2a2a20, 0x20000a2a, 0x20435020, 0x3d202020, 0x25783020, + 0x0a783830, 0x53202000, 0x20202052, 0x30203d20, 0x38302578, 0x20000a78, + 0x52414620, 0x3d202020, 0x25783020, 0x0a783830, 0x52202000, 0x6432255b, + 0x203d205d, 0x30257830, 0x000a7838, 0x0000e220, 0x0000e220, 0x0000e220, + 0x0000e220, 0x33323130, 0x37363534, 0x00003938, 0x33323130, 0x37363534, + 0x62613938, 0x66656463, 0x72726f43, 0x65747075, 0x6e692064, 0x20747570, + 0x75657571, 0x4f002e65, 0x20796c6e, 0x5f45564d, 0x46465542, 0x435f5245, + 0x5f45444f, 0x4d415246, 0x726f2045, 0x45564d20, 0x4655425f, 0x5f524546, + 0x45444f43, 0x4e45475f, 0x4c415245, 0x6c6c6120, 0x6465776f, 0x6e49002e, + 0x696c6176, 0x75622064, 0x72656666, 0x61656820, 0x20726564, 0x4d206e69, + 0x435f4556, 0x5f4d4d4f, 0x5f465542, 0x5154554f, 0x4444415f, 0x54002e52, + 0x6c206f6f, 0x65677261, 0x71657220, 0x74736575, 0x73656d20, 0x65676173, + 0x6f54002e, 0x616c206f, 0x20656772, 0x66667562, 0x6d207265, 0x61737365, + 0x002e6567, 0x61766e49, 0x2064696c, 0x66667562, 0x69207265, 0x564d206e, + 0x4f435f45, 0x425f4d4d, 0x495f4655, 0x415f514e, 0x2e524444, 0x45564d00, + 0x723a5052, 0x705f6d61, 0x746e6972, 0x20667562, 0x6e207369, 0x6120746f, + 0x6c696176, 0x656c6261, 0x4d000a2e, 0x50524556, 0x6172203a, 0x72705f6d, + 0x66746e69, 0x6d75645f, 0x72662070, 0x30206d6f, 0x0a702578, 0x54505200, + 0x504d5544, 0x616c663a, 0x78253d67, 0x6e69202c, 0x3d786564, 0x202c7525, + 0x635f7277, 0x253d746e, 0x72202c75, 0x6e635f64, 0x75253d74, 0x46000a2e, + 0x75252d57, 0x7325203a, 0x45564d00, 0x663a5052, 0x3d67616c, 0x202c7825, + 0x3d786469, 0x202c7525, 0x635f7277, 0x253d746e, 0x72202c75, 0x6e635f64, + 0x75253d74, 0x20000a2e, 0x78343025, 0x78382500, 0x0a73253a, 0x30252000, + 0x00007832, 0x1007f000, 0x49574558, 0x35565644, 0x2d37562f, 0x4745504a, + 0x3a434544, 0x65720020, 0x657a6973, 0x7470203a, 0x78302072, 0x78383025, + 0x77656e20, 0x7a69735f, 0x75252065, 0x766d000a, 0x656d5f65, 0x65725f6d, + 0x657a6973, 0x6c616d00, 0x3a636f6c, 0x7a697320, 0x75252065, 0x616d202c, + 0x75252078, 0x6572202c, 0x6e6f6967, 0x2c752520, 0x676f6c20, 0x6c615f32, + 0x206e6769, 0x000a7525, 0x6c6c616d, 0x203a636f, 0x75746572, 0x64656e72, + 0x25783020, 0x6d000a70, 0x6d5f6576, 0x615f6d65, 0x636f6c6c, 0x6c6c4100, + 0x7461636f, 0x6d206465, 0x726f6d65, 0x61682079, 0x72772073, 0x20676e6f, + 0x67696c61, 0x6e656d6e, 0x78450074, 0x74636570, 0x61206465, 0x636f6c6c, + 0x64657461, 0x6d656d20, 0x2079726f, 0x50206e69, 0x45544f52, 0x44455443, + 0x67657220, 0x2e6e6f69, 0x70784500, 0x65746365, 0x6c612064, 0x61636f6c, + 0x20646574, 0x6f6d656d, 0x69207972, 0x5246206e, 0x42454d41, 0x72204655, + 0x6f696765, 0x6e002e6e, 0x7720746f, 0x69746961, 0x3d00676e, 0x3d3d3d3d, + 0x3d3d3d3d, 0x4d44563d, 0x45525f41, 0x55445f47, 0x3d3d504d, 0x3d3d3d3d, + 0x000a3d3d, 0x64343025, 0x25783028, 0x29783430, 0x20202020, 0x30257830, + 0x000a7838, 0x69207325, 0x5f656c64, 0x6c637963, 0x000a7365, 0x25207325, + 0x7338312d, 0x35312520, 0x25000a64, 0x6f542073, 0x5f6c6174, 0x656c6469, + 0x20202020, 0x20202020, 0x64353125, 0x6f63000a, 0x25206572, 0x73252064, + 0x322d2520, 0x63207330, 0x3d65646f, 0x20643325, 0x3d636970, 0x20643325, + 0x5b736f70, 0x3d5d7570, 0x64332528, 0x6433252c, 0x6c632029, 0x64253d6b, + 0x6f63000a, 0x25206572, 0x73252064, 0x322d2520, 0x20207330, 0x20202020, + 0x20202020, 0x3d636970, 0x20643325, 0x5b736f70, 0x3d5d7570, 0x64332528, + 0x6433252c, 0x6e000a29, 0x7320746f, 0x77207465, 0x69746961, 0x5300676e, + 0x525f434f, 0x532e4645, 0x55544154, 0x20202053, 0x20202020, 0x30202020, + 0x0a782578, 0x434f5300, 0x4645525f, 0x4e4f432e, 0x20474946, 0x20202020, + 0x20202020, 0x25783020, 0x53000a78, 0x525f434f, 0x4c2e4645, 0x52455649, + 0x20204645, 0x20202020, 0x30202020, 0x0a782578, 0x434f5300, 0x4645525f, + 0x4f54532e, 0x53414d50, 0x2020204b, 0x20202020, 0x25783020, 0x53000a78, + 0x4d5f434f, 0x54532e43, 0x20545241, 0x20202020, 0x20202020, 0x30202020, + 0x0a782578, 0x434f5300, 0x2e434d5f, 0x54415453, 0x20205355, 0x20202020, + 0x20202020, 0x25783020, 0x53000a78, 0x545f434f, 0x532e4652, 0x55544154, + 0x20202053, 0x20202020, 0x30202020, 0x0a782578, 0x434f5300, 0x4652545f, + 0x4742442e, 0x54415453, 0x20205355, 0x20202020, 0x25783020, 0x53000a78, + 0x445f434f, 0x432e4c42, 0x204c5254, 0x20202020, 0x20202020, 0x30202020, + 0x0a782578, 0x434f5300, 0x4c42445f, 0x5254432e, 0x2020314c, 0x20202020, + 0x20202020, 0x25783020, 0x53000a78, 0x445f434f, 0x532e4c42, 0x55544154, + 0x20202053, 0x20202020, 0x30202020, 0x0a782578, 0x434f5300, 0x4c42445f, + 0x4154532e, 0x31535554, 0x20202020, 0x20202020, 0x25783020, 0x53000a78, + 0x445f434f, 0x532e4c42, 0x55544154, 0x20203253, 0x20202020, 0x30202020, + 0x0a782578, 0x434f5300, 0x4c42445f, 0x4154532e, 0x33535554, 0x20202020, + 0x20202020, 0x25783020, 0x53000a78, 0x425f434f, 0x54535449, 0x4d414552, + 0x4243412e, 0x532e4441, 0x55544154, 0x20202053, 0x20202020, 0x78257830, + 0x4f53000a, 0x49425f43, 0x52545354, 0x2e4d4145, 0x4942444d, 0x56415354, + 0x204c4941, 0x20202020, 0x30202020, 0x0a782578, 0x434f5300, 0x5449425f, + 0x45525453, 0x442e4d41, 0x435f4645, 0x204c5254, 0x20202020, 0x20202020, + 0x78302020, 0x000a7825, 0x5f434f53, 0x53544942, 0x41455254, 0x4d482e4d, + 0x45525056, 0x54532e44, 0x53555441, 0x20202020, 0x25783020, 0x53000a78, + 0x425f434f, 0x54535449, 0x4d414552, 0x4143482e, 0x2e444142, 0x54415453, + 0x20205355, 0x20202020, 0x78257830, 0x4853000a, 0x44455241, 0x4d41525f, + 0x7069702e, 0x74735f65, 0x20657461, 0x75252020, 0x73252820, 0x53000a29, + 0x45524148, 0x41525f44, 0x73692e4d, 0x73616c5f, 0x6f635f74, 0x25206572, + 0x53000a75, 0x45524148, 0x41525f44, 0x6f6a2e4d, 0x68705f62, 0x20657361, + 0x25202020, 0x53000a75, 0x45524148, 0x41525f44, 0x6f6a2e4d, 0x74735f62, + 0x20657461, 0x25202020, 0x53000a78, 0x45524148, 0x41525f44, 0x756f2e4d, + 0x626d5f74, 0x20202020, 0x25202020, 0x53000a75, 0x45524148, 0x41525f44, + 0x72742e4d, 0x66736e61, 0x5f6d726f, 0x2520626d, 0x53000a75, 0x45524148, + 0x41525f44, 0x616c2e4d, 0x6d5f7473, 0x666e6962, 0x2520206f, 0x53000a75, + 0x45524148, 0x41525f44, 0x756f2e4d, 0x74757074, 0x7274735f, 0x73657069, + 0x6d6f635f, 0x74656c70, 0x25206465, 0x53000a75, 0x45524148, 0x41525f44, + 0x72612e4d, 0x735f7165, 0x70697274, 0x695f7365, 0x65757373, 0x75252064, + 0x4453000a, 0x462e414d, 0x544c5541, 0x20202020, 0x20202020, 0x20202020, + 0x78302020, 0x000a7825, 0x74617453, 0x6f207375, 0x6c622066, 0x656b636f, + 0x61742064, 0x20736b73, 0x20726f66, 0x65726f63, 0x3a752520, 0x6b6c6320, + 0x2075253d, 0x4f53000a, 0x59535f43, 0x52544353, 0x56532e4c, 0x5645524e, + 0x20202020, 0x20202020, 0x20202020, 0x20202020, 0x0a782520, 0x5f574600, + 0x20564552, 0x20202020, 0x20202020, 0x20202020, 0x20202020, 0x20202020, + 0x20202020, 0x20202020, 0x000a7825, 0x53534553, 0x5f4e4f49, 0x2e4d4152, + 0x69746361, 0x635f6576, 0x7365726f, 0x20202020, 0x20202020, 0x25202020, + 0x46000a75, 0x776d7269, 0x20657261, 0x74617473, 0x6f207375, 0x616d2066, + 0x72657473, 0x6f632820, 0x25206572, 0x203a2964, 0x3d6b6c63, 0x0a206425, + 0x53455300, 0x4e4f4953, 0x4d41525f, 0x7269662e, 0x7261776d, 0x695f7365, + 0x73755f6e, 0x20202065, 0x20202020, 0x202c6425, 0x202c6425, 0x202c6425, + 0x202c6425, 0x202c6425, 0x202c6425, 0x202c6425, 0x000a6425, 0x53534553, + 0x5f4e4f49, 0x2e4d4152, 0x7473616d, 0x635f7265, 0x2065726f, 0x20202020, + 0x20202020, 0x25202020, 0x53000a75, 0x49535345, 0x525f4e4f, 0x6d2e4d41, + 0x65747361, 0x6c615f72, 0x61636f6c, 0x20646574, 0x20202020, 0x64252020, + 0x4553000a, 0x4f495353, 0x41525f4e, 0x616d2e4d, 0x72657473, 0x6769735f, + 0x736c616e, 0x20202020, 0x20202020, 0x38302520, 0x30252078, 0x25207838, + 0x0a783830, 0x53455300, 0x4e4f4953, 0x4d41525f, 0x6369702e, 0x65727574, + 0x6e695f73, 0x7069705f, 0x20202065, 0x20202020, 0x000a6425, 0x53534553, + 0x5f4e4f49, 0x2e4d4152, 0x65706970, 0x6369705f, 0x6961745f, 0x2020206c, + 0x20202020, 0x25202020, 0x53000a75, 0x49535345, 0x525f4e4f, 0x702e4d41, + 0x5f657069, 0x5f636970, 0x64616568, 0x20202020, 0x20202020, 0x75252020, + 0x4553000a, 0x4f495353, 0x41525f4e, 0x65702e4d, 0x6e69646e, 0x74735f67, + 0x20657461, 0x20202020, 0x20202020, 0x0a752520, 0x53455300, 0x4e4f4953, + 0x4d41525f, 0x7365732e, 0x6e6f6973, 0x6174735f, 0x20206574, 0x20202020, + 0x20202020, 0x000a7525, 0x53534553, 0x5f4e4f49, 0x2e4d4152, 0x706d6f63, + 0x6574656c, 0x69705f64, 0x72757463, 0x20207365, 0x25202020, 0x53000a75, + 0x49535345, 0x525f4e4f, 0x6c2e4d41, 0x5f657669, 0x69727473, 0x685f6570, + 0x20646165, 0x20202020, 0x75252020, 0x4553000a, 0x4f495353, 0x41525f4e, + 0x696c2e4d, 0x735f6576, 0x70697274, 0x61745f65, 0x692e6c69, 0x7865646e, + 0x0a752520, 0x53455300, 0x4e4f4953, 0x4d41525f, 0x76696c2e, 0x74735f65, + 0x65706972, 0x6961745f, 0x69702e6c, 0x20646963, 0x000a7525, 0x53534553, + 0x5f4e4f49, 0x2e4d4152, 0x6576696c, 0x7274735f, 0x5f657069, 0x6c696174, + 0x6665722e, 0x25202079, 0x2d000a75, 0x7773202d, 0x68637469, 0x20676e69, + 0x000a2d2d, 0x53534553, 0x5f4e4f49, 0x2e4d4152, 0x7478656e, 0x6f6f625f, + 0x6f745f74, 0x206e656b, 0x20202020, 0x25202020, 0x53000a75, 0x49535345, + 0x525f4e4f, 0x6a2e4d41, 0x715f626f, 0x65756575, 0x6b6f742e, 0x20206e65, + 0x20202020, 0x75252020, 0x4553000a, 0x4f495353, 0x41525f4e, 0x6f6a2e4d, + 0x63615f62, 0x65766974, 0x20202020, 0x20202020, 0x20202020, 0x0a752520, + 0x53455300, 0x4e4f4953, 0x4d41525f, 0x626f6a2e, 0x6168705f, 0x635f6573, + 0x746e756f, 0x20207265, 0x20202020, 0x000a7525, 0x53534553, 0x5f4e4f49, + 0x2e4d4152, 0x5f626f6a, 0x72617473, 0x69705f74, 0x20202063, 0x20202020, + 0x25202020, 0x53000a75, 0x49535345, 0x525f4e4f, 0x6a2e4d41, 0x655f626f, + 0x705f646e, 0x20206369, 0x20202020, 0x20202020, 0x75252020, 0x4553000a, + 0x4f495353, 0x41525f4e, 0x74732e4d, 0x6d616572, 0x6369705f, 0x6165685f, + 0x20202064, 0x20202020, 0x0a752520, 0x202d2d00, 0x63696c73, 0x75712065, + 0x73657565, 0x0a2d2d20, 0x53455300, 0x4e4f4953, 0x4d41525f, 0x6669662e, + 0x6c735f6f, 0x5f656369, 0x20626f6a, 0x20202020, 0x20202020, 0x65206425, + 0x6972746e, 0x000a7365, 0x53534553, 0x5f4e4f49, 0x2e4d4152, 0x6f666966, + 0x696c735f, 0x635f6563, 0x6c706d6f, 0x20657465, 0x25202020, 0x6e652064, + 0x65697274, 0x6c000a73, 0x5f657669, 0x2d626f6a, 0x6977733e, 0x5f686374, + 0x75716572, 0x20747365, 0x20202020, 0x20202020, 0x25202020, 0x6c000a75, + 0x5f657669, 0x2d626f6a, 0x7165723e, 0x74736575, 0x6e5f6465, 0x65626d75, + 0x666f5f72, 0x726f635f, 0x25207365, 0x6c000a75, 0x5f657669, 0x2d626f6a, + 0x726f633e, 0x625f7365, 0x65746f6f, 0x20202064, 0x20202020, 0x20202020, + 0x25202020, 0x6c000a75, 0x5f657669, 0x2d626f6a, 0x7069703e, 0x77735f65, + 0x68637469, 0x20202020, 0x20202020, 0x20202020, 0x25202020, 0x69000a75, + 0x7475706e, 0x66756220, 0x73726566, 0x61747320, 0x3a737574, 0x73000a2d, + 0x61657274, 0x65685f6d, 0x253a6461, 0x616d2075, 0x72657473, 0x6165685f, + 0x75253a64, 0x73616d20, 0x5f726574, 0x69617661, 0x75253a6c, 0x7562000a, + 0x72656666, 0x63636f20, 0x6e617075, 0x2d3a7963, 0x7562000a, 0x64695f66, + 0x75252078, 0x7473000a, 0x6d616572, 0x0a642520, 0x726f6300, 0x75255b65, + 0x6425205d, 0x6f63000a, 0x685f6572, 0x5b646165, 0x205d7525, 0x000a7525, + 0x45525453, 0x53004d41, 0x4543494c, 0x434d0020, 0x20202020, 0x45524100, + 0x00202051, 0x4e415254, 0x4f002053, 0x55505455, 0x49500054, 0x20514550, + 0x49415700, 0x564f0054, 0x55525245, 0x5331004e, 0x47415054, 0x49500045, + 0x00444943, 0x42544e49, 0x4c004655, 0x50455649, 0x45535241, 0x494c0044, + 0x4f434556, 0x5000504d, 0x4e494349, 0x00584544, 0x004c414e, 0x49504e49, + 0x4e450043, 0x54554f43, 0x00465542, 0x56455250, 0x00514553, 0x42464552, + 0x5f4b4e41, 0x45534552, 0x554f0054, 0x54555054, 0x554c465f, 0x43004853, + 0x5044524c, 0x4e450042, 0x45445f43, 0x49505f50, 0x55520043, 0x54535f4e, + 0x00455441, 0x43494c53, 0x49465f45, 0x4c004f46, 0x5f455649, 0x43494c53, + 0x45440045, 0x55455551, 0x4e450045, 0x55455551, 0x4f430045, 0x4552004c, + 0x55444953, 0x42004c41, 0x4e455449, 0x51455343, 0x54494200, 0x42434e45, + 0x45004655, 0x424d434e, 0x4f464e49, 0x42414300, 0x49424341, 0x48005354, + 0x5250564d, 0x52004445, 0x4f4f4245, 0x00444554, 0x424f5250, 0x4f430053, + 0x53544e55, 0x39505600, 0x50004342, 0x5f564552, 0x4d415246, 0x58450045, + 0x46554254, 0x00524546, 0x45504950, 0x50570044, 0x50570030, 0x4e450031, + 0x54535f44, 0x45504952, 0x49424d00, 0x5f4f464e, 0x44414548, 0x52005245, + 0x52464645, 0x00454d41, 0x4556494c, 0x544f4c53, 0x424f4a00, 0x49575300, + 0x00484354, 0x49464552, 0x00454c44, 0x53464552, 0x00544f4c, 0x53464552, + 0x50495254, 0x46455200, 0x49525453, 0x52004550, 0x424d4645, 0x4d445349, + 0x49500041, 0x52444550, 0x004e4941, 0x5f514e45, 0x43494c53, 0x4e450045, + 0x424d5f51, 0x0057525f, 0x5f514e45, 0x575f424d, 0x514e4500, 0x4152465f, + 0x4500454d, 0x575f514e, 0x4e450050, 0x54535f51, 0x00504952, 0x49415244, + 0x54535f4e, 0x45504952, 0x49424d00, 0x4745525f, 0x45545349, 0x434d0052, + 0x52415000, 0x4f434553, 0x4a00504d, 0x4c53424f, 0x4d00544f, 0x4f525f43, + 0x4d003057, 0x4f525f43, 0x44003157, 0x4e494152, 0x5045445f, 0x49525453, + 0x44004550, 0x54535045, 0x45504952, 0x4154535f, 0x48005452, 0x56415f57, + 0x004c4941, 0x495f5748, 0x00454c44, 0x5f444e42, 0x0052474d, 0x5f4c4244, + 0x544f4c53, 0x574f5200, 0x4c5f4e49, 0x0044414f, 0x4f574f52, 0x535f5455, + 0x45524f54, 0x574f5200, 0x4c525443, 0x414f4c5f, 0x49430044, 0x46554252, + 0x45525000, 0x52545356, 0x00455049, 0x43434950, 0x00504d4f, 0x00465254, + 0x5f4c4244, 0x0052444c, 0x414d4456, 0x49525453, 0x56004550, 0x53414d44, + 0x00544f4c, 0x49525453, 0x435f4550, 0x00504d4f, 0x49584950, 0x4f4c5f4e, + 0x52004441, 0x535f574f, 0x45524f54, 0x564d5300, 0x49424d5f, 0x004f464e, + 0x5f4c4244, 0x54005342, 0x535f4652, 0x45524f54, 0x4d4f435f, 0x46525400, + 0x5254535f, 0x43455049, 0x00504d4f, 0x4c525443, 0x45504f00, 0x4f45004e, + 0x4f450053, 0x55425f53, 0x45520046, 0x4544524f, 0x52460052, 0x53454d41, + 0x00455a49, 0x53594850, 0x00004449, 0x004e5552, 0x00424a50, 0x00545753, + 0x00424a43, 0x0002e080, 0x0002e0cc, 0x0002e118, 0x0002e138, 0x0002e19c, + 0x0002e1e8, 0x0002e234, 0x000149b0, 0x000149b7, 0x000149be, 0x000149c5, + 0x000149cc, 0x000149d3, 0x000149da, 0x44532020, 0x2020414d, 0x61747320, + 0x30737574, 0x20202020, 0x74617473, 0x20317375, 0x207c2020, 0x6c637273, + 0x20206e65, 0x6c747364, 0x7c206e65, 0x70747320, 0x7c206e65, 0x70747320, + 0x7c206469, 0x76656420, 0x65702023, 0x6e69646e, 0x20000a67, 0x32255b20, + 0x20205d64, 0x78383025, 0x25202020, 0x20783830, 0x207c2020, 0x20643625, + 0x64362520, 0x25207c20, 0x25206432, 0x7c206432, 0x78322520, 0x78322520, + 0x23207c20, 0x25206425, 0x20202c64, 0x20642523, 0x000a6425, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x02020100, 0x03030303, 0x04040404, 0x04040404, + 0x05050505, 0x05050505, 0x05050505, 0x05050505, 0x06060606, 0x06060606, + 0x06060606, 0x06060606, 0x06060606, 0x06060606, 0x06060606, 0x06060606, + 0x07070707, 0x07070707, 0x07070707, 0x07070707, 0x07070707, 0x07070707, + 0x07070707, 0x07070707, 0x07070707, 0x07070707, 0x07070707, 0x07070707, + 0x07070707, 0x07070707, 0x07070707, 0x07070707, 0x08080808, 0x08080808, + 0x08080808, 0x08080808, 0x08080808, 0x08080808, 0x08080808, 0x08080808, + 0x08080808, 0x08080808, 0x08080808, 0x08080808, 0x08080808, 0x08080808, + 0x08080808, 0x08080808, 0x08080808, 0x08080808, 0x08080808, 0x08080808, + 0x08080808, 0x08080808, 0x08080808, 0x08080808, 0x08080808, 0x08080808, + 0x08080808, 0x08080808, 0x08080808, 0x08080808, 0x08080808, 0x08080808, + 0x63617453, 0x7461206b, 0x0a702520, 0x61747300, 0x25206b63, 0x3d206434, + 0x25783020, 0x0a783830, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x7bfef493, 0x79f39302, 0x420101e4, 0x32053101, 0xfe0b4105, 0xe46af493, + 0x27420101, 0xff4ea731, 0x439dfeff, 0x5c2fc40a, 0x1d0001a8, 0xe457f493, + 0x26441901, 0x75f49347, 0x4499027d, 0x204c0454, 0xff59839e, 0xff5acb9e, + 0x0011579e, 0xfc4efe0b, 0xe433f493, 0xa7441901, 0xffffff3e, 0x99273199, + 0x45c62632, 0x063434d1, 0x34d14756, 0x46960638, 0xe6103499, 0xa7214e45, + 0xfeffff4e, 0x014844d1, 0x913e4486, 0xf9cfdea7, 0xffcea7ff, 0xd419fd4f, + 0x437bc301, 0xa70f41dc, 0xfff9cd4e, 0xc3014419, 0x41d8437b, 0xc2bbbe2e, + 0x01d419ff, 0xd8437bc3, 0xd3191741, 0xc4012127, 0x143b1207, 0xd31d31eb, + 0xcfff4ea7, 0x6842c5fd, 0x40270546, 0xc50ef49b, 0xfc8e38c4, 0xf4933127, + 0x9d027cd4, 0x355e6443, 0xff4ea7ff, 0x4499feff, 0x83202709, 0x33348743, + 0xf9432b44, 0x00004d43, 0x1e3103ff, 0x7824f913, 0x4bff000b, 0x2e408b4f, + 0x0b002714, 0x582103fe, 0x0b0127f3, 0xa7fc4efe, 0xfd9fff4e, 0xc0074d01, + 0x0027d858, 0xbbbe1c07, 0xded8fed4, 0x26040000, 0xe353f493, 0x27421901, + 0x49f49331, 0x431d01e3, 0x302726a6, 0x4fff4ea7, 0xb50027fd, 0x9682be43, + 0xff82beff, 0x00ded8ff, 0x273f8000, 0x25f49331, 0x431d01e3, 0x4fff4ea7, + 0xa74301fd, 0xffffff4e, 0x42b93387, 0x40270b81, 0xb04034f5, 0x26e6ff02, + 0xe303f493, 0x06441901, 0xdcccbe45, 0xbe051efe, 0x1efecec5, 0xfeb8beff, + 0x00ded8ff, 0x93170200, 0x01e2e4f4, 0x45e64419, 0xf4933127, 0x1d01e2d8, + 0x5c7ebe43, 0x10dcd800, 0xa731271b, 0xfdafff4e, 0x43550c07, 0xff2406be, + 0xf1930927, 0x9effc2db, 0xa7ff9d26, 0xffffff4e, 0x0b8442d1, 0x3ea725a6, + 0x41fdafff, 0x05420b34, 0x4efc8e34, 0x0108befa, 0xff4ea700, 0x44b9feff, + 0xd0070c41, 0xbe2f4c1c, 0xa70000b6, 0xffffff4e, 0x99264399, 0x3224274a, + 0x0d1eb127, 0xa200b127, 0xb4d6b027, 0x181e0027, 0x7b8af493, 0x54449902, + 0x4c043027, 0x07312720, 0x0741c343, 0xbe0f6b04, 0xa7000304, 0xffffff2e, + 0xd4964127, 0x40ab4027, 0x063623b9, 0x4496c127, 0x3706c027, 0x24bd4027, + 0xa8be0636, 0x0cabfef6, 0x04864027, 0xc4074127, 0xdea7cf6b, 0xb9ffffff, + 0xc6063ad4, 0xdcb8be44, 0x3bd4b9fe, 0x27460606, 0x29f49330, 0x439d027b, + 0x3bd3bd06, 0x27b4c606, 0x27a49601, 0xff3ea700, 0x34b9ffff, 0x45060637, + 0x34bd4027, 0xe4be0637, 0x0cabfeee, 0x04864027, 0x04074127, 0xfd4efa8e, + 0xffff4ea7, 0x274d99ff, 0xce264199, 0x44b92f1d, 0x45a60e84, 0xd2d9f093, + 0xbe2d07ff, 0xc4ff98e4, 0x39be0bd2, 0x06c6fed2, 0x0b1e0227, 0x4bbed616, + 0x0546fed1, 0xfd0e0027, 0xff1aa59e, 0xfd4efd8e, 0xa19af493, 0x09432902, + 0x3534ce44, 0x8b3ef493, 0x03240702, 0x3407c32c, 0xe37f2ce3, 0x34197f3c, + 0xc2803c03, 0xd027f932, 0x8b22f093, 0x952bbe02, 0x930626ff, 0x028b17f0, + 0xff1c96be, 0xe91ed127, 0xf493d027, 0x99028bd4, 0x44994043, 0x1134ce41, + 0xff174abe, 0x40270dab, 0x41270486, 0xdf6bd407, 0xfd8e0d07, 0x071e03dc, + 0xab483341, 0x07140741, 0x101c3332, 0x14ab3253, 0x071e3103, 0x24230105, + 0xf3b80403, 0x011d2506, 0xf2c80103, 0x4107fe0b, 0x43d840ab, 0x01151e0f, + 0x05242313, 0x03140303, 0x07071e04, 0x03425342, 0x86f45841, 0x03141925, + 0x03041d11, 0x0bf2a801, 0x030105fe, 0x0bf2c804, 0x862253fe, 0x03140125, + 0x03040514, 0x0bf2a804, 0xf50533fe, 0x02180001, 0x0403f5ff, 0x27ff0218, + 0x000e2340, 0x0435fde8, 0xe8000e03, 0x1002f5fd, 0xf5ff0218, 0x02181403, + 0xf00e23ff, 0x0435fde7, 0xfc4efe0b, 0x4327d007, 0xc1070333, 0x04f51d07, + 0xff021200, 0x0d47e307, 0x14f11333, 0xff021000, 0x27f848dc, 0xf5010334, + 0x02120013, 0xf54087ff, 0x02120043, 0x87e623ff, 0xf540273c, 0x02160034, + 0x0fec83ff, 0x2c333d07, 0x8333330e, 0xf000002f, 0x10ec333f, 0x34f5e2ab, + 0xff021400, 0x14043ef5, 0xf49bff02, 0x4efc8e0e, 0x07b207f6, 0x27a00791, + 0xf893406c, 0xa701e01c, 0xfdefff7e, 0xcb07451e, 0x0741bc10, 0x078401c6, + 0xc3d633d4, 0x23840541, 0xfefe74de, 0x4c337411, 0x1d4c5318, 0x07f642cc, + 0xe323032c, 0x070d0723, 0xff177e19, 0xf49b4027, 0x0700270e, 0x071d072a, + 0xff177e3c, 0xbc2bac0b, 0xbfd69c0b, 0xa7f68eba, 0xfdefff2e, 0xf3e8031e, + 0x33272411, 0xfc6a4ddc, 0x4efe0bf6, 0x07b107fb, 0x07e53ec0, 0xa72b070c, + 0xfefeb31e, 0xd25efb0e, 0x07fb4efe, 0x3eb107c0, 0x071c07cf, 0xa700273b, + 0xfefeb32e, 0xca5efb0e, 0x0f0c83fe, 0x0e230333, 0x39ffff7e, 0x9e44c604, + 0x0bff9e4c, 0x030333fe, 0xe8031e04, 0x0004f1f3, 0x27ff0210, 0x6a4ddc33, + 0xfe0bf2fc, 0x00000001, 0x00000000, 0x00000001, 0xff02b040, 0x0f6bf54e, + 0x0fe6f063, 0xdea7017a, 0xb9ffffff, 0x460635d4, 0x270bbe46, 0x270586ff, + 0xbd612740, 0x1e0635d4, 0x27602703, 0xffcea7d0, 0x7027ffff, 0x9552f993, + 0xff8ea702, 0xf593fd9f, 0xb9027834, 0xf40b9bc4, 0x0118104c, 0x0e25c4b9, + 0x94994606, 0x9df1139a, 0x4c501a01, 0x01045e10, 0x0196f213, 0x930f072a, + 0x0289bbf1, 0xff1485be, 0x00f00fe6, 0x4d24f409, 0xf4290bba, 0xf1284ce0, + 0x93062700, 0xffd8c7f1, 0x4307311e, 0x3707400b, 0x00014f30, 0xf4537000, + 0x4319ff64, 0x41c34307, 0x2f6b2407, 0x897ef193, 0x61147102, 0x0a430b13, + 0x2725b604, 0xdef19306, 0x039effd8, 0xc0b9ff99, 0xfbab0b9a, 0xdc83d007, + 0x073d070f, 0x3345334d, 0x23340b33, 0xfff4643e, 0x4a272107, 0x24032101, + 0x34033105, 0xc2b9f4a8, 0xf3930b9b, 0x81028938, 0x0731613e, 0x0333714d, + 0x33210301, 0x9ac0bd43, 0x9bc2bd0b, 0x404f030b, 0x0b0003ea, 0x0543151e, + 0x9a949941, 0x41033027, 0x9b9a949d, 0xa6260ef3, 0x0e25c4b9, 0x84114244, + 0x00004ea3, 0xeb841502, 0xff2ea7fb, 0x4027fd4f, 0xf49b2301, 0x9921270e, + 0x233b0ec4, 0xf45324cb, 0x4301feb8, 0x41272138, 0x21533405, 0x340324c6, + 0xd127f31e, 0x5e06579d, 0x4d07fee3, 0x002746ab, 0x01274486, 0x171e0f6b, + 0x88b2f493, 0x51438102, 0x003ff440, 0x0b200000, 0x5e2027ff, 0xf043ff20, + 0x1499f58e, 0x1b47d814, 0x418a049d, 0xc1133114, 0x340b3c02, 0x43334307, + 0x2b9003c5, 0xc5210824, 0xfe0b3c04, 0x412b4007, 0x8663f49b, 0x03200716, + 0x634f9b28, 0x044e3827, 0xf39b242e, 0x27f31e65, 0x00007f4f, 0x61f49b40, + 0x4ea7fe0b, 0x91fdefff, 0x182c3342, 0x1e1d2c53, 0x8904991b, 0x231231c4, + 0x87438341, 0x2b443334, 0x99400b43, 0x45e66144, 0x9988019d, 0x13078803, + 0x23ca1123, 0x4efe0bdd, 0x3ed007fd, 0x88d499c6, 0x3f9b45f6, 0x634f9b62, + 0x4027432e, 0x8e8ad49d, 0x6af09bfd, 0x0b6bf09b, 0x62f19b10, 0x9b63f09b, + 0x4ca3604f, 0x60f49b10, 0x0b63f09b, 0x604f9bfe, 0x9b104ce3, 0x4f9b60f4, + 0xff3ea76b, 0x4327fdef, 0x022034d5, 0x48dc3481, 0xd54427fc, 0xd5022034, + 0x27022434, 0x6832d520, 0xdf3ea706, 0x3205fdeb, 0x00004f27, 0x34150404, + 0x990ef29b, 0x45468804, 0x029d4027, 0x89049d88, 0x0c5cfe0b, 0xc5f49310, + 0x41c101dc, 0x07183cac, 0x0f1c8310, 0x4c834107, 0x2743330f, 0x0201002f, + 0x6b247b80, 0x9641272f, 0x93402724, 0x01dc9ff3, 0x31c54533, 0x4c349dac, + 0x9bc032c5, 0x34c1600f, 0x830ce3c0, 0xfe0b04ab, 0xdc82f493, 0x8b409901, + 0x01830253, 0x4f9bfe0b, 0x13478363, 0x9b480048, 0xfe0b65f4, 0x93630f9b, + 0x01dc63f4, 0x075043c1, 0x2b433343, 0x0b037304, 0x1efe0b03, 0x674f9be8, + 0x30640f9b, 0x00a7204c, 0x4103fe0b, 0x2365f49b, 0x1f4c1341, 0x0123045b, + 0xfe4efe0b, 0xdc2ef493, 0x4043c101, 0x074c4299, 0x52432b40, 0x27402824, + 0x07031ee0, 0x15f193e2, 0x13c101dc, 0x2b200750, 0x0733332e, 0x4c432b42, + 0x2be00740, 0xc52307e3, 0x1e9d4412, 0x4efe8e4e, 0x890499f8, 0x43831e21, + 0x94339407, 0x942b4487, 0xb9071d31, 0xb00be30b, 0x2b58bec5, 0x07c007d3, + 0x6b4307a1, 0x01df102f, 0x27010000, 0x000000df, 0x60b29d01, 0x315cbdc5, + 0x274d0ba3, 0x27430e80, 0x7f2ea781, 0xa301fde7, 0x2e05a411, 0xc561b89d, + 0xc4c5d0c3, 0x272d15d4, 0xa72e35e0, 0xfde76f3e, 0x051a4c27, 0x993d1534, + 0x3e3561b4, 0xbb7e44a6, 0x89c499fd, 0x0788c399, 0x582c0329, 0x41030c07, + 0x020b3103, 0x9d89c49d, 0xf88e88c3, 0x0499fc4e, 0xd6d00730, 0x1ec02744, + 0x1ec02777, 0x994aa66b, 0x412389d4, 0x34074383, 0x44873433, 0x3d0b342b, + 0xf6613499, 0x60309947, 0x07583ec1, 0x33100740, 0x2b153343, 0x211d0b14, + 0x5c33c114, 0xe30be42b, 0xd499271e, 0x3841dc8a, 0x9932d499, 0x040731d2, + 0x30070183, 0x33331007, 0x132b1533, 0x31033407, 0x9d1d24ce, 0x1d0b32d3, + 0x3e072007, 0x007e0d07, 0x330411ff, 0x99c40b43, 0xe02788d4, 0x078f42c8, + 0x4efc8e0c, 0x07d007f5, 0x07810701, 0x9b022b72, 0x50ce635f, 0x6c3f9b18, + 0x4c034207, 0x0d34da60, 0x12070107, 0x27fd177e, 0x01115ed0, 0x0750d3c1, + 0x33a7e3a0, 0x2b4a0733, 0x1240cc43, 0xa7e3a807, 0x432b4a07, 0xd127402c, + 0x2700f25e, 0x7e0d0770, 0xde99fd7d, 0x30d49931, 0x4e1b3027, 0x078ad39d, + 0x079f6b94, 0x07218329, 0x33c20742, 0x07c53343, 0x03c42b69, 0xcecd0b61, + 0xc1314e9e, 0x1333c441, 0xb1074333, 0xc3990a07, 0x2bb40b14, 0x2b450704, + 0x2b37d84b, 0x3b2b3807, 0x18964008, 0x072030c8, 0x7e1c070d, 0x4907fc76, + 0xd49d4103, 0x14c49932, 0x4483ab07, 0x4486d127, 0xd203d027, 0x0008401e, + 0x070901da, 0x279b1e96, 0xc1c02700, 0x4a0754d3, 0x432b3333, 0x4e2b40c8, + 0x27a30738, 0xc11f1ed4, 0x4ea738d2, 0xb9ffffff, 0x190b9a43, 0x07344e24, + 0xbe18070d, 0x07ff3bd5, 0x27a72ba8, 0x1e1027d0, 0x07c4412d, 0x0b337330, + 0xc51c0743, 0xd99d90d4, 0x7e0d0732, 0xd499fddb, 0x030c1132, 0x32d49d41, + 0x597e0d07, 0x07c333fe, 0x271c0b10, 0x7e0a07d0, 0xd536fc81, 0x17070807, + 0x07fc037e, 0x9bf58e0d, 0xf293603f, 0xc101d9a0, 0x4858ac24, 0xe3c024c1, + 0x04ab830c, 0x4c834307, 0xab48a310, 0xc634cb40, 0x60f49b38, 0x1e833cd8, + 0xd8631f9b, 0xc10d834c, 0x22994024, 0x32411b4c, 0x27400824, 0x65f09320, + 0x805e01d9, 0x4efe0bfe, 0x8a0499fe, 0x41dce007, 0x31039940, 0xce320499, + 0x4f9b3734, 0x633f9b62, 0x4ccc432b, 0x1f9b2060, 0x39f49363, 0x43c101d9, + 0x4c429940, 0x432b4107, 0x40082432, 0x0e072027, 0x405efe0e, 0xfdb67efe, + 0x0b624f9b, 0x62f49b40, 0xf94efe8e, 0x9f9ba007, 0x62bf9b63, 0x9363cf9b, + 0x01d903fd, 0x0744d1c1, 0x48dac50d, 0xff39f1be, 0x28be0d07, 0xd499ff39, + 0x0741588a, 0x8e0c2b0b, 0x40d4c1f9, 0x1b4cd299, 0x28245249, 0x1ed02740, + 0x93d20703, 0x01d8cff0, 0x93fb497e, 0x01d8c7f0, 0x9bff667e, 0x3f9b624f, + 0xd2432b63, 0xf09331a4, 0x9901d8b4, 0x41dc8a04, 0x30049926, 0x04994846, + 0x83412331, 0x33340741, 0x2b433335, 0x2034f934, 0x5c000334, 0x1907104c, + 0xc8be2d07, 0x0f9bff3e, 0x634f9b62, 0xf98e042b, 0xfc93fc4e, 0x010290fc, + 0x07dc07c4, 0xf6f48b0c, 0x04c49904, 0x40274266, 0x8e04c49d, 0x07fd4efc, + 0xf842bed0, 0x2704c6fe, 0x13fd8e04, 0x022747f4, 0xfd8ed405, 0x0499fc4e, + 0xe6d00705, 0xbdc0274a, 0xbd05d20c, 0xbd05d10c, 0xbd01850c, 0xbd03ab0c, + 0xbd02980c, 0xbd04be0c, 0xbd01840c, 0x9d05d60c, 0x0c9d820c, 0xeb7dbe6a, + 0x9dd421fe, 0x410305dc, 0xfc8ed425, 0xc007fc4e, 0xff37dbbe, 0x0556d007, + 0xf4530027, 0x101e00ca, 0xfffb6fbe, 0x0c0705e6, 0x0027a33e, 0x0587f413, + 0xc0fc8ec4, 0x0f9b32d2, 0xfba8be63, 0x624f9bff, 0x2b633f9b, 0x004dcc43, + 0x0d271010, 0xb3be1000, 0x0d0cfffe, 0x4f9b1000, 0x624f9b63, 0x2b633f9b, + 0x27412c43, 0x27fc8e04, 0x4efc8e00, 0x7ec007fc, 0xf413ff5c, 0x05002798, + 0x4efc8ec4, 0xd1d007fd, 0x9b078004, 0x432b633f, 0x272141cc, 0x402c2710, + 0xcdbe0027, 0x0227ff35, 0xfffab1be, 0xfffdd2be, 0x5010f493, 0x050027ff, + 0x27fd8ed4, 0xfa9cbe00, 0xfdbdbeff, 0x7f4f27ff, 0x9b400000, 0x002761f4, + 0xff34b9be, 0x0780d0d1, 0xff39edbe, 0x931602c4, 0xffd586f0, 0xfee756be, + 0xff36ccbe, 0xfed7f453, 0x0027d405, 0xf74efd8e, 0x07820499, 0xb945e6c0, + 0x26018404, 0x6a049945, 0x03674ff6, 0xbe630f9b, 0x9bfffae2, 0x3f9b624f, + 0xcc432b63, 0x1010004d, 0x10000d27, 0xfffdedbe, 0x10000d0c, 0x9b634f9b, + 0x3f9b624f, 0xcc432b63, 0x65be1248, 0x0fe6fffa, 0xf45303d5, 0xc405fe81, + 0x27031a5e, 0xbd4027b0, 0xd50778c4, 0x9b077ccb, 0x482764df, 0x9b18dc53, + 0x002765f4, 0xfff9f5be, 0xfffd16be, 0x007f4f27, 0xf49b4000, 0xbe002761, + 0xe0ff3412, 0x0243d9dc, 0x12dadcd4, 0x20c4dcc0, 0xbad8dce0, 0xc0dce401, + 0x985e01ef, 0xdbdce001, 0xdcf00188, 0xe401d4db, 0x01dddddc, 0x9b01735e, + 0x3353633f, 0x27649f9b, 0x9c53104c, 0x65f49b10, 0x00f249ea, 0x9b013e5e, + 0x442764bf, 0x5365f49b, 0xb2f41cbc, 0xdf9b012f, 0x65f49b64, 0xf41cdc53, + 0xc10122d4, 0x1f9b3c72, 0x623f9b63, 0x422b4307, 0x32074008, 0x432b4107, + 0xc11341c8, 0x411b3c74, 0x010548e4, 0xff38a6be, 0xfc5e0626, 0x614f9b00, + 0x8bbc73c1, 0xf04ff643, 0x15d2d000, 0xc4bd4127, 0xd1270778, 0xd5b6f493, + 0x7cc4d5ff, 0x00df5e07, 0x01133d27, 0xb5863d9b, 0x230b2c07, 0x03ab2d03, + 0x2c07091e, 0x2d03230b, 0xac030185, 0x27e02711, 0x101c2701, 0x27644f9b, + 0x65f39b38, 0x4c533207, 0x5d300b18, 0x0be40b34, 0x300103a4, 0x01edf4f1, + 0xea009201, 0x27008e9a, 0x27b02741, 0x27d02710, 0x2e3d110c, 0x191e241d, + 0x27644f9b, 0x65f39b38, 0x3b0b3207, 0x03184c53, 0x9db10311, 0x051e1334, + 0xed0be207, 0x14dae459, 0xf0d103e0, 0x121e03f0, 0xed1e1027, 0x830b8907, + 0xa0278333, 0xd56ef793, 0x634f9b01, 0x40e8482b, 0xf093feff, 0xc101d560, + 0x1f9b3c02, 0x623f9b63, 0x422b4307, 0x32074008, 0x432b4107, 0xc11141c8, + 0x411b3c04, 0xbe1948c4, 0x06ff37bb, 0x9b111e07, 0x03c1614f, 0x16438bbc, + 0x27091e45, 0x27071ed1, 0x27031ed4, 0xbd4027d0, 0xf605d2c4, 0x2700b6df, + 0xd2c4bd41, 0x00ad5e05, 0x35be0c07, 0x071eff50, 0x94be0c07, 0xd007ff50, + 0x07009a5e, 0x5194be0c, 0xf6d007ff, 0x07008e0f, 0x030c071c, 0xbe072c1d, + 0x1eff4df0, 0x27d0277f, 0x6acb9da0, 0x05d2cbbd, 0x05d1cbbd, 0x0185cbbd, + 0x03abcbbd, 0x0298cbbd, 0x04becbbd, 0x0184cbbd, 0x05d6cbbd, 0x1e82cb9d, + 0xbe0c0755, 0x07ff5306, 0x270d56d0, 0x40451ed3, 0x4d07fedc, 0xd4e04c23, + 0x9b17104c, 0x4c2764af, 0x65f49b10, 0xa223a45b, 0xa0c8d127, 0x1ed02729, + 0x234d0725, 0x48d0d04c, 0x27102719, 0x0027402c, 0xff32bfbe, 0xa3be0227, + 0xc4befff7, 0x375efffa, 0x27d12701, 0x5df093a0, 0x02c101d4, 0x631f9b3c, + 0x07623f9b, 0x08422b43, 0x07320740, 0xc8432b41, 0x04c11341, 0xc4411b3c, + 0xb8be1648, 0x0fe6ff36, 0x0c1e0085, 0xc1614f9b, 0x438bbc03, 0xbe774fc6, + 0x27fff7a0, 0x270496d1, 0x614f9bd0, 0x16404cdc, 0xd412f493, 0x3c44c101, + 0x2b633f9b, 0xd6414843, 0x1eb027d4, 0x93b12703, 0x01d3fbf4, 0x994443c1, + 0x030b4e40, 0xff3691be, 0x10270027, 0xbe402c27, 0x27ff3230, 0xf714be02, + 0xfa35beff, 0xc6bfe6ff, 0x53d50600, 0x1efb70f4, 0xc1f45305, 0xbec405fb, + 0x93ff3355, 0xffd202f0, 0xfee3d2be, 0xa85ed027, 0x27d32700, 0x270027a0, + 0x402c2710, 0xff31f3be, 0xd7be0227, 0xf8befff6, 0xd1c4fff9, 0x78c4b91d, + 0xd14f8607, 0xbe077cc0, 0x27fee39f, 0x78c4bd40, 0xd5402707, 0x1e077cc4, + 0xc8d7f64e, 0x3f9b14a1, 0x0ba33363, 0xd4f4533a, 0xd5c405fb, 0x1e0780c3, + 0xfff49357, 0x4a1eff4b, 0x4682c499, 0x84c4b948, 0x99478601, 0x46e66ac4, + 0x01be0c07, 0xd007ff4d, 0x073504cc, 0x4a9fbe0c, 0x1ed327ff, 0x78f0932b, + 0x48beffd1, 0xf493fee3, 0xc101d32c, 0x40994443, 0x0bd0274e, 0x35c0be03, + 0x32abbeff, 0x0df453ff, 0x1ec405fb, 0x07d42703, 0x4ef78e0d, 0x1dfd93fc, + 0xcea701d5, 0xd1feffff, 0x0705d8d4, 0xf6f48b0d, 0x0ac49904, 0xfc8e4266, + 0xf453fe0b, 0x0399021c, 0xd804d574, 0x93312405, 0x00054ff4, 0xf493061e, + 0x27004548, 0xd5202730, 0x2705dc04, 0x1704bd40, 0xe403ad06, 0x0c02d505, + 0xe003ad06, 0xe203ad05, 0x0802d505, 0x114c2706, 0x27a0f49b, 0x3f1c804e, + 0xd1a9f49b, 0x8705e804, 0x50f49b44, 0x05f804d1, 0x41a34487, 0xd150f49b, + 0x8705f004, 0x9b42a344, 0x04d150f4, 0x44870600, 0xf49b43a3, 0x4efe0b50, + 0xbed007fc, 0x9bfff5fa, 0x37be630f, 0x4f9bfff6, 0x633f9b62, 0x4ccc432b, + 0x0c270e20, 0xf944be20, 0x200c0cff, 0x9b634f9b, 0x2f9b634f, 0x102c5364, + 0x12ff2cc4, 0x53644f9b, 0xab240748, 0x644f9b2f, 0xf49b4827, 0xff2dc465, + 0x4f9b6dff, 0x101c2764, 0x9b65f19b, 0x3007640f, 0x4307315b, 0x4dc04453, + 0x07200ffd, 0x1c4c5340, 0x2e0d4cc0, 0x9b644f9b, 0x0f9b65f1, 0x5b300764, + 0x53430731, 0xfd4dc444, 0x23070f0f, 0xff002da3, 0x9b644f9b, 0x1a1e65f1, + 0x4c534007, 0x0d4cc41c, 0x53230718, 0x002da328, 0x644f9bff, 0xf49b4827, + 0x634f9b65, 0x091e1127, 0x9b644f9b, 0x102765f1, 0x44534207, 0x4dc44fab, + 0x073e0ffd, 0x0cd3d142, 0x0f4c8306, 0x763243ce, 0x644f9b15, 0x9b104c27, + 0x402765f4, 0x05e4d4ad, 0x05e0d4ad, 0x05e2d4ad, 0xf49b4027, 0x54f49b53, + 0x060cd4d1, 0x4103c027, 0xd4d54783, 0x0c1e060c, 0x27644f9b, 0xf49b104c, + 0x27c12765, 0x0000404f, 0x61f49b40, 0xd15ef093, 0x3c02c101, 0x9b631f9b, + 0x4307623f, 0x4008422b, 0x41073207, 0x41c8432b, 0x3c04c111, 0x48c4411b, + 0x33b9be13, 0x1e0d26ff, 0x614f9b0b, 0x8bbc03c1, 0xbe4ba643, 0x56fff4a4, + 0x21f29306, 0x24c101d1, 0x633f9b3c, 0x41cc432b, 0x11f49316, 0x43c101d1, + 0x4e409944, 0x030bc127, 0xff33a5be, 0x24c1111e, 0x4e209944, 0x97be040b, + 0x0427ff33, 0x4027fc8e, 0x0608d4d5, 0x4127c626, 0x0617d4bd, 0x56cef493, + 0xdcd4d5ff, 0x09f41305, 0xd4d50027, 0xfc8e05d8, 0xd007f74e, 0xf49b4027, + 0x05c8be74, 0xea04ec00, 0xa501e001, 0xb5fb9301, 0xf89301d0, 0x27ff56a0, + 0xf993107c, 0xc101d180, 0x3f9b3cb4, 0x4c432b63, 0xbd412741, 0xd50617d4, + 0x9b05dcd8, 0x4f9b622f, 0xcc242b63, 0x2c10002d, 0x9b3cb4c1, 0x432b633f, + 0x9b2142d2, 0x43be630f, 0x0d27fff4, 0x5bbe1000, 0x0dccfff7, 0xc10d1000, + 0x3f9b3cb4, 0xfa432b63, 0x27015804, 0xdcd4d1a0, 0x8b0d0705, 0x9bc007f4, + 0x4506744f, 0x9b644f9b, 0xb2c165f7, 0x631f9b3c, 0x07623f9b, 0x08422b43, + 0x07320740, 0xc8432b41, 0xb4c11241, 0xc4411b3c, 0xa0be1548, 0x0fc6ff32, + 0x9b0c1e78, 0xb3c1614f, 0xc6438bbc, 0x4f9b6b4f, 0x404cdc61, 0xf382be12, + 0xc105b6ff, 0x3f9b3cb4, 0xcc432b63, 0xb4c11341, 0x4eb09944, 0x8fbe040b, + 0x7abeff32, 0x501eff2f, 0xd4d1ac66, 0xd4d50610, 0xd4a905e0, 0xd4ad0614, + 0xb09905e4, 0x44b4c14e, 0x6bbe040b, 0x4dbeff32, 0xd4a9ff3e, 0x4f8b05e0, + 0xa953f49b, 0xa905e2d3, 0x8b05e4d4, 0x103c333f, 0xf49b43ab, 0x008e5e54, + 0x9917c1c4, 0xb4c14eb0, 0xbe040b44, 0x27ff323a, 0x17d4bd41, 0xdcd8d506, + 0x23900905, 0x16900d01, 0xbe090705, 0x07000809, 0x44a027c0, 0xffffff0f, + 0xbea127ff, 0x00000519, 0xffffffcf, 0x2ac1c8ff, 0xd4899349, 0x2243c22a, + 0x05cad4b9, 0xd4d147a6, 0xd3a90608, 0x410305c8, 0x0608d4d5, 0x460b43ca, + 0x53002735, 0x1efccaf4, 0x93a7e633, 0x01d00ff2, 0xd4892349, 0x2743222a, + 0xb9f78e00, 0x260617d4, 0x9d412746, 0x091ee324, 0xfe75cff6, 0xf78e0427, + 0x0004bcbe, 0xf4930327, 0xd5ff54ac, 0x8e05d8d4, 0x534f9bf7, 0x05e0d4ad, + 0x07543f9b, 0x104c5343, 0x05e2d4ad, 0x05e0d4d1, 0x05e4d3ad, 0x0610d4d5, + 0x05e4d4a9, 0xd4ada127, 0x7dbe0614, 0x7e5eff3d, 0x4ef78efe, 0x3bcf5bf0, + 0x4efe2bdf, 0xbe0f07fc, 0x0effeb4d, 0x0bf00efc, 0x004f27ff, 0x29100790, + 0x004f2743, 0x291007a0, 0xfc3d1044, 0x10ff1e03, 0x1e03fc4d, 0x2b0307ff, + 0x03000c04, 0x2703fc0d, 0x27010c41, 0x0b040740, 0x07fd4efe, 0xad85bed0, + 0x0cd499ff, 0xd49944b6, 0x2304070e, 0x0b300701, 0x0434993d, 0x270b42c4, + 0x04349d41, 0x1e0cd09d, 0xff4ea714, 0xd239fd4f, 0x41274301, 0x42ab433b, + 0x00a7d43d, 0xf49b4027, 0xff3ea70e, 0x34c5fd4f, 0x4efd8e38, 0xbed007fd, + 0x99ffad3b, 0x44b60dd4, 0x070ed499, 0x07012304, 0x993d0b30, 0x45960434, + 0x349d4127, 0x0dd09d04, 0x2d07181e, 0x4ea72203, 0x39fd4fff, 0x27430121, + 0xab433b41, 0xa7243d41, 0x9b402700, 0x3ea70ef4, 0xc5fd4fff, 0xfd8e3834, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x4f27fe4e, 0x40004000, 0x9bb0f49b, 0x41d8a24f, + 0x9b4227fb, 0x0499a2f4, 0x27412074, 0x275d1e00, 0x52f49b40, 0x9b51f49b, + 0xe3a652ef, 0xf49b4027, 0x51f49b52, 0xa6520f9b, 0x9b402703, 0xf49b52f4, + 0x521f9b51, 0x402713a6, 0x9b52f49b, 0x2f9b51f4, 0x2723a652, 0x52f49b40, + 0xf49b4127, 0x523f9b51, 0x402733a6, 0x2752f49b, 0x51f49b42, 0xa6524f9b, + 0xab0eab43, 0xab02ab01, 0x9b04ab03, 0x44c6744f, 0xfe8e0127, 0x01830153, + 0x0000fe8e, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x65befd4e, 0xd0070003, 0xf4930a96, 0x2701cc79, 0xa7421930, 0xfeffff4e, + 0x0c0843bd, 0xbb0df393, 0x5df493fe, 0x430501cc, 0xd8be2686, 0xf493fee0, + 0x9902657c, 0x44d60544, 0xffe7c7be, 0xfd8e0d07, 0xf493fe4e, 0x1901cc41, + 0x934aa644, 0x02655ff3, 0x66053499, 0x06349949, 0x349948d6, 0x1f41dc04, + 0x4cd43459, 0x0ea71910, 0xbefffb43, 0xccff8bc2, 0x16be0d04, 0x89be0040, + 0x0027ffe7, 0x04befe8e, 0x04ccfff9, 0xa730270f, 0xfeffff4e, 0x0c0843bd, + 0x932403c4, 0x01cbf0f4, 0x45864419, 0xf4933027, 0x9d02650c, 0x03c40643, + 0x55f3530e, 0xd1f493ff, 0x430501cb, 0xfe8e0027, 0x1499fb4e, 0x07e30710, + 0x5bc307b2, 0x07245be4, 0x51cb2bd1, 0x27e24e11, 0x1ee02730, 0x87e1830d, + 0x8b4d0b4e, 0x2b4e6131, 0x872183c3, 0x614d0b42, 0x0b1b8b44, 0x05033541, + 0x250c1504, 0x4efb8e0e, 0x07a007f6, 0xe1ad9980, 0x07308c03, 0xbe9a0708, + 0x030004d4, 0x60075c9c, 0xc9be0907, 0xac990004, 0x2b7007e0, 0x06cf6bcd, + 0x03bd07cf, 0x07b123b1, 0x07d383db, 0x8744334d, 0x0b340b3d, 0x9834c13a, + 0x462b0807, 0x414cb103, 0x2b9c34c1, 0x0e41c847, 0xbe27c4d0, 0x07ff3eea, + 0x3ee4be09, 0x332d87ff, 0x0b2d0bd4, 0x20a4d12a, 0xa023c101, 0x4305c123, + 0x34c24411, 0x8e01270f, 0xbea021f6, 0x27ffeb8d, 0xc1f68e00, 0xa3819024, + 0x879422c1, 0x05340b44, 0xe1ab9d32, 0xc066b103, 0xfd4e941e, 0xcbcef093, + 0x96040901, 0x0377be45, 0x2704d600, 0x93fd8e07, 0x01cbbbfd, 0xc613d499, + 0x8e002744, 0x69d329fd, 0x0bd209d4, 0x07422b43, 0x1ad48d0d, 0xbe300c03, + 0xc10003b0, 0xd3c138d4, 0xc5402b3c, 0x30c234d4, 0x210d0714, 0x300c03d1, + 0xbcbe2027, 0x04d6ff3e, 0xfd8e0827, 0xcbd2f093, 0x0386be01, 0x6df29300, + 0x24c101cb, 0x6823c164, 0x24c5402b, 0x1430c260, 0x21210207, 0x275c0c03, + 0x3e8dbe20, 0x2704d6ff, 0x93fd8e09, 0x01cb47fd, 0x3616d499, 0x7e0d0745, + 0x0536fecf, 0xd49d4127, 0x8e002713, 0x93f84efd, 0x01cb2bfc, 0xe313c499, + 0x214fe6f3, 0x69c42901, 0x0bc309c2, 0x1ac48924, 0x242b232b, 0x40272556, + 0x5e13c49d, 0xc4890108, 0x38cdc12c, 0x0c07f44d, 0x0c03c4a1, 0x6df42530, + 0x0306bef2, 0x07d02b00, 0x64c8c10c, 0xbe5c0c03, 0xc10002f8, 0x802b34c2, + 0x0f071c07, 0x03301c03, 0x3d070c0c, 0xc1fe237e, 0x0f0760c2, 0x0c031c07, + 0x5c1c0324, 0x117e3807, 0x16c499fe, 0xc48948e6, 0x88c0c11a, 0x2c271f07, + 0xbef40d3c, 0xc1ffe9a3, 0xc48988c3, 0x3c3c038c, 0xc48d4103, 0x88c3c58c, + 0x2700895e, 0xa0f49b41, 0x2f071f07, 0x0344c9c1, 0x3c2c0314, 0x34013107, + 0x03b0f49b, 0xf732ce34, 0xac03ad07, 0xcb4a0738, 0x0b49c24d, 0x498b4a07, + 0xda0744c6, 0xf193df1e, 0x9901ca5c, 0x1c99e01b, 0x834b0740, 0x871e4943, + 0x26138924, 0x10894433, 0x07240b1a, 0x5b3e9b4d, 0x0b210b4c, 0xc5418330, + 0x2ac59023, 0x9c28c598, 0x1c314487, 0xf369410b, 0x44c11e69, 0x0bd98b48, + 0x0b0e2b3c, 0xc5300b4d, 0x24c5a023, 0x9db10394, 0x3027e01b, 0xca06f493, + 0x13439d01, 0xf88ef3c3, 0xfc93fa4e, 0x9901c9f8, 0x44d612c4, 0xfa8e0027, + 0x00db44e4, 0xcd29c369, 0xcb31c409, 0xd42bd30b, 0xbd0bb32b, 0x0134cbd5, + 0xa27eca49, 0x694027fe, 0x8dc40dc3, 0xd3c21acd, 0x20c4d111, 0x033b0701, + 0x11430531, 0x4034e244, 0xb1fd9301, 0x002701c9, 0x00015abe, 0x8616d499, + 0xbe0d0747, 0x07ff3a2d, 0x300c030d, 0x0003d5be, 0x0c030d07, 0x03ccbe5c, + 0x07181e00, 0x300c030d, 0x0003c1be, 0x0c030d07, 0x03b8be5c, 0x7e0d0700, + 0xccbefd07, 0xf093ffe8, 0xbe01c99c, 0x9300043a, 0x01c9bff0, 0x000431be, + 0xc95afd93, 0xbed02101, 0xd1ffe8f1, 0x99012cd3, 0x34993932, 0x1d42c204, + 0x66e3d499, 0x3433c145, 0x0134d3d5, 0x42070f1e, 0x349d4103, 0x27002739, + 0x00b05e41, 0x4fff4ea7, 0x934311fd, 0x01c91ff4, 0x013c43d5, 0xbde34399, + 0x1e013343, 0x1e43c421, 0x0c030c07, 0x0344be30, 0x030c0700, 0x3bbe5c0c, + 0xc4d10003, 0x44c1012c, 0x34c4d534, 0xedfd9301, 0xc22701c8, 0xfaf30ea7, + 0x12dc9dff, 0xfff9c6be, 0x0627002c, 0xd3d1fa8e, 0x40070130, 0x43f54433, + 0xff00051c, 0x0134d3d1, 0x052043f5, 0xd3d1ff00, 0x43f50138, 0xff000524, + 0x013cd3d1, 0x052843f5, 0xf493ff00, 0xfd01c7c9, 0x0005100c, 0xf64419ff, + 0xff3ea747, 0x4127ffff, 0x063634bd, 0x270f3399, 0x0ef49b40, 0x33874127, + 0xb04034f5, 0x0027ff02, 0xd49d4027, 0x89fa8e12, 0xc38126c4, 0xd40b4a9b, + 0x430b4d87, 0x43053027, 0x07feb05e, 0xa9432940, 0x2d011c00, 0x0d032b40, + 0x0bfe0b40, 0x29fd4efe, 0xe4048903, 0x4322d007, 0xe01efd0e, 0xfffd10be, + 0x16e3d499, 0x31d44948, 0x894103d2, 0xd44de4d3, 0x4027230b, 0xd389d149, + 0x35d42d10, 0x07312ad2, 0xa7b93e0d, 0x4efd8e00, 0x3c11c1fb, 0x01a5f063, + 0xd0073119, 0xfb29f205, 0x66befc09, 0x05c6ff39, 0x4027d369, 0xdb4d3c1b, + 0xd32dd40d, 0xfb8ef043, 0x0499fd4e, 0x27412412, 0x39fd8e00, 0x9be5360e, + 0x4144b14f, 0x4f9bfa1e, 0x1943a6a2, 0x07432702, 0xf5333332, 0x02120034, + 0x0031f1ff, 0x47ff0210, 0x181c33d2, 0xd61d1c53, 0x1e002714, 0x8725331c, + 0x0423f14e, 0x99ff0218, 0x40f11002, 0xff021600, 0x030b1123, 0x010b123b, + 0x42273d87, 0x120034f5, 0xfd8eff02, 0x14470419, 0x31871103, 0x34f54327, + 0xff021200, 0x100032f1, 0x2c33ff02, 0x1d2c5318, 0x410726a6, 0x03994433, + 0x0444f110, 0x23ff0218, 0x0b233b21, 0x27318724, 0x0034f542, 0x21ff0212, + 0x0034f100, 0xdcff0210, 0x022bf848, 0xfe4efe0b, 0x41834107, 0x87110399, + 0x2b400b44, 0xd84e6131, 0x9119803c, 0x19028101, 0x0b438713, 0x034e0542, + 0x99131d31, 0x41031104, 0x8e11049d, 0x390419fe, 0xf5453300, 0x02180041, + 0x0442f5ff, 0x27ff0218, 0x004e2330, 0x4335fde8, 0xe8004e03, 0x1040f5fd, + 0xf5ff0218, 0x02181442, 0xf04e23ff, 0x4335fde7, 0xfc4efe0b, 0x0019d007, + 0x30074327, 0xe0073333, 0xdc39d129, 0x34f5e333, 0xff021200, 0xe4f13047, + 0xff021000, 0x27f848dc, 0xf5310324, 0x021200e2, 0x073387ff, 0x0032f541, + 0x03ff0212, 0x272c874a, 0x0023f530, 0x83ff0216, 0x20070f4c, 0x23331653, + 0x33141c33, 0x41ab104c, 0x140023f5, 0x24f5ff02, 0xff021404, 0x270ef39b, + 0x9dd35540, 0xd33504d4, 0xfa4efc8e, 0x04990319, 0x07333304, 0x07c427a2, + 0x6bb107d0, 0x03c42baf, 0x0034f134, 0x33ff0210, 0x4c53184c, 0xda44131d, + 0xd231f04c, 0xd1212566, 0x2a7e0d07, 0x51c123ff, 0x412566d2, 0x7e0d07d1, + 0xc123ff1d, 0x1b074d07, 0xb6274803, 0x12013627, 0x4205b123, 0x44031403, + 0xc6e6f398, 0x2626d231, 0xd121a5e6, 0xf67e0d07, 0x35c127fe, 0x27031edb, + 0x04dc9dc1, 0xfa4efa8e, 0x4fff4ea7, 0x074d01fd, 0xa3d433c0, 0x1ea407d8, + 0x01f4e803, 0x564627cb, 0xa401beb3, 0x27c401ff, 0x05449630, 0x0ef39bcd, + 0x0138abc5, 0xe4d4cec4, 0xfc4efa8e, 0x07120499, 0x8942e4d0, 0x210d0700, + 0xfdc67edc, 0x3527d419, 0xc02b4333, 0x120043f5, 0x0d07ff02, 0xcefe177e, + 0xd119e4c0, 0x31074127, 0xd49dd239, 0x33dc2512, 0xf5442733, 0x02120034, + 0x873107ff, 0x33402722, 0x0024f533, 0x03ff0216, 0x29432734, 0x0034f5d0, + 0x07ff0212, 0x0024f123, 0xdcff0210, 0x4007f848, 0x4a033427, 0x120023f5, + 0x4c83ff02, 0x5321070f, 0x33233306, 0x3027140c, 0xab104c33, 0x0023f540, + 0xf5ff0214, 0x02140424, 0x0ef39bff, 0xfb4efc8e, 0x04990d21, 0x110c9910, + 0xd45bd123, 0x4d2b4c07, 0x4cd8b007, 0x0ea72b80, 0x7effffdf, 0xdf6bff1a, + 0xc4070a1e, 0x1c07cf6b, 0x07fdc57e, 0x0741034c, 0xefdcce0b, 0xf49b4027, + 0xdf3ea70e, 0x3405ffff, 0x0000fb8e, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x40004f27, 0xf49b4000, 0x690299b0, 0xd8a24f9b, 0x4227fb41, 0x99a2f49b, + 0x42e47404, 0x40270092, 0x9b52f49b, 0x3f9b51f4, 0x2733a652, 0x52f49b40, + 0x9b51f49b, 0x43a6524f, 0x24001127, 0x34ab1027, 0x40271806, 0x9b52f49b, + 0x2f9b51f4, 0x2723a652, 0x52f49b40, 0x9b51f49b, 0x43a6524f, 0x34ab32ab, + 0xf49b4027, 0x9b412752, 0x4f9b51f4, 0xab43a652, 0x27166634, 0x52f49b40, + 0xf49b4127, 0x524f9b51, 0x34ab43a6, 0xf49b4027, 0x9b422752, 0x4f9b51f4, + 0xab43a652, 0x27166634, 0x52f49b40, 0xf49b4227, 0x524f9b51, 0x34ab43a6, + 0x01273238, 0x0027031e, 0xc6744f9b, 0x0b012744, 0x964127fe, 0x07402704, + 0x00fe0b04, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x8c7ef393, 0x44340101, + 0x01a85c4f, 0x40f45300, 0x0b340501, 0xcf4fc4fe, 0x130001a8, 0x00bef453, + 0x30273405, 0x2586f493, 0x06439d02, 0xff1efe0b, 0xa7633f9b, 0xffffff2e, + 0x0e1c24d1, 0x1027432e, 0x23d5071e, 0x11270e1c, 0x8c42f493, 0x4843c101, + 0x04003d14, 0x04003d27, 0xffff2ea7, 0x2024d1ff, 0xd5342e0e, 0x270e2023, + 0x4400c111, 0x062424d1, 0x20d5042e, 0x031e0624, 0x0ea715e6, 0x39fffb43, + 0x9e44c604, 0x0bff4ad8, 0xbefe4efe, 0xbeff4a06, 0x93fef030, 0x022517f4, + 0x24544499, 0xfe0e204c, 0xff01219e, 0x799efe0e, 0xfe4eff02, 0x24fef493, + 0x54449902, 0xbe204c24, 0x1eff0108, 0x0260be05, 0xef82beff, 0x9efe0efe, + 0x4eff49dc, 0x9d4127fe, 0xd73e0604, 0xffa72bbe, 0xfe8e0027, 0xf493fc4e, + 0x270224cc, 0x54429930, 0x2465439d, 0xb6be202c, 0x051eff00, 0xffb31bbe, + 0x04ccd007, 0xa7302718, 0xfeffff4e, 0x0bfc43bd, 0xf57e0344, 0x1ed027fe, + 0x3802c43b, 0x2496f093, 0x7ec00702, 0xc499ff14, 0xa7479605, 0xfeffff4e, + 0x3ea74411, 0xd1ffffff, 0x87062433, 0x8843f544, 0x1eff000e, 0x07d4280f, + 0x75f4be0d, 0x0e0c07fe, 0x07811efc, 0x4efc8e0d, 0x59fd93fb, 0xb0270224, + 0xbe65db9d, 0x0700008f, 0x7e0d07c0, 0xc4ccfecc, 0xff4ea755, 0x4bbdfeff, + 0xc9360bfc, 0x99fe8b7e, 0x4ba605d4, 0xb606d499, 0x04d4994a, 0x592e41dc, + 0x104cd4d4, 0x430ea728, 0x9bbefffb, 0x08ccff4a, 0xc4281e1c, 0x0e1e25c1, + 0x93be0c07, 0x0d07fe75, 0x205efb0e, 0xfe527eff, 0x0f1ec027, 0xbefef57e, + 0x1effa648, 0x05d49906, 0x0c074016, 0x4ea7fb8e, 0xc1ffffff, 0x44b9fc43, + 0x03ca0100, 0xc2430b13, 0x0c830e40, 0xf903330f, 0x00007c00, 0x27fe0bff, + 0x4efe0b00, 0xbdf393f5, 0x39c10223, 0x83f16344, 0x00000f9f, 0x5037c180, + 0x9123904c, 0xfff09fa3, 0x9103ffff, 0x4ff63439, 0x3459022f, 0x27104c30, + 0xb85e160c, 0x8031c103, 0xf3253027, 0x21102c27, 0x3b3127f4, 0x8b430734, + 0x07461641, 0x9341ab43, 0x022373f3, 0x1e8034c5, 0x03f3210a, 0xf0f32531, + 0xf121def2, 0x9d3c72c1, 0x39074071, 0x87062299, 0x2b353349, 0x41729d34, + 0xf2934307, 0xc1022348, 0x4333442d, 0x73c1432b, 0x38719934, 0x0b1cdc33, + 0x21d3ab42, 0xa9f135f6, 0x07045043, 0x4e44a91d, 0x83633304, 0xffffff1f, + 0x9bfc310f, 0x5c61f543, 0xf5ff0005, 0x00056064, 0x0bc333ff, 0x4422c1c2, + 0x0108cba9, 0x010ac4a9, 0x62f5f145, 0x0003cdb0, 0x3632b4da, 0x800c2747, + 0x00001e27, 0xbe202701, 0x27ff456f, 0xc0d510ac, 0x0f1e0104, 0xc0d11407, + 0x14330104, 0x81bea447, 0xf431ff44, 0x4aed4333, 0x0003ce36, 0x3b07f431, + 0x44f14333, 0x0003ce30, 0x340b3333, 0x22aef493, 0x791b0702, 0x03382340, + 0x03530711, 0x03f1f058, 0x3a011f1e, 0x4acb4d07, 0x4c532d07, 0x2b38111c, + 0xcc46f62a, 0xb1231320, 0x0fe63823, 0xda1e00fb, 0x8f27a027, 0x80000000, + 0x4333f431, 0xce3444e9, 0x4bd20003, 0xee540113, 0x8300de4d, 0xffffff4f, + 0x6064f50f, 0x07ff0005, 0x1c4c534d, 0x35333407, 0x342b4487, 0xc333c307, + 0x0c07c32b, 0x0f033f07, 0x0003d154, 0x2f071d07, 0xb9be3403, 0xf411fe98, + 0xc4f14606, 0x0003d1a0, 0x340b3087, 0x34054027, 0x23108cf4, 0xcb4a0702, + 0x1c4c534d, 0x02184ff6, 0xf1414807, 0x41f54333, 0xff000560, 0x055c44f1, + 0x41e2ff00, 0x05270202, 0x2411701e, 0x34152101, 0x28233105, 0x33104c34, + 0xb443f543, 0x230003cd, 0xe753ca38, 0xf1314907, 0x45333987, 0x3407432b, + 0x1f031333, 0x0003cd2c, 0x12a93333, 0x342b0108, 0x2103f421, 0x43335415, + 0x010812ad, 0xcdb445f5, 0x5d050003, 0xcd2c3f03, 0xf4250003, 0x043434b9, + 0x219af293, 0xbd410302, 0x59043434, 0x03312724, 0x5d233d41, 0x27191e24, + 0x81f29301, 0xf1210221, 0x278023c1, 0xeb413b41, 0x8023c534, 0x2701965e, + 0xa8d3be00, 0xff4ea7ff, 0x3027fdeb, 0x2f274305, 0x0b020000, 0xf39b4215, + 0x51fb930e, 0xb6390221, 0x00de61e4, 0x813c74c1, 0xc24801b3, 0xbcc15683, + 0xdf0ea744, 0xefbeffff, 0xdc07ff43, 0x990fdc83, 0xd33324b0, 0x20271c07, + 0x0080daf9, 0xa5beff00, 0xc007feb3, 0x74810686, 0x340b3a87, 0x30054a07, + 0xd4fd4103, 0xff000080, 0xffdf0ea7, 0x4395beff, 0x27c4f6ff, 0x011d5e06, + 0x0724b399, 0x85433b46, 0xc1bc75b4, 0xf2933c7c, 0x890220e4, 0xc4494a23, + 0x34ce2d71, 0x071d073e, 0xbe002728, 0x07fecab5, 0xa72c0738, 0xf7ffff1e, + 0x24013253, 0x14d52403, 0xf3a80118, 0x20b6f493, 0x81437102, 0x0bcc4942, + 0xc5282b38, 0x4dc53c7d, 0x8543754c, 0x4a4c8d42, 0x22c1071e, 0x3c72c54c, + 0x39874907, 0x432b4533, 0x13331407, 0x1f03142b, 0x0003d154, 0x207ef093, + 0xbe270702, 0x27fecad8, 0x71f49332, 0x433d0220, 0xfb430ea7, 0xb905beff, + 0x24d007ff, 0xffffff0f, 0x150c27ff, 0x40077e1e, 0x43337c09, 0x04d041f1, + 0x2c07ff00, 0xb4070027, 0xfeca28be, 0xfb34be23, 0x07c253ff, 0xff2ea737, + 0x3401f7ff, 0x24d53403, 0xfca80118, 0x8ebe0027, 0x7409ffa7, 0x201efc93, + 0xc1b40502, 0x73c568c3, 0xfd422750, 0x0004c0d4, 0x430ea7ff, 0x0439fffb, + 0xb1be44c6, 0x4027ff45, 0xc43d0027, 0xf4311e1e, 0x4f034333, 0x0003cd2c, + 0x010843a9, 0x010444d1, 0x340b3333, 0x28232307, 0x43fe005e, 0x4ef58ef1, + 0xff4ea7fb, 0x4cb9ffff, 0x43b90e26, 0xd2070e27, 0x221eb407, 0x0e2844f1, + 0x3e07ff00, 0x402b1405, 0x40c83f6b, 0x6822f90d, 0x27ff000e, 0x8ed21d01, + 0x27b3bdfb, 0x8323070e, 0xe3070f2c, 0xe1034287, 0x27d2c3ce, 0xa7fb8e00, + 0xffffff3e, 0x0e2734b9, 0x34bd4103, 0xfe0b0e27, 0x3ea7f94e, 0xd1fbffff, + 0x0702183a, 0x1f9c539a, 0x3c234f9b, 0x0000004f, 0x1ee02701, 0x103ed105, + 0x9395b602, 0x023c6bf4, 0xc58043c1, 0x4e078443, 0x43e44383, 0xbea7009a, + 0xb9ffffff, 0xb90e26b1, 0x070e27b4, 0x07411b0e, 0x272f6b24, 0xfd93104c, + 0x33023c40, 0x422b1d0c, 0xc11f0c53, 0xc02780d3, 0xc1274210, 0x2b102cd4, + 0x4f834a07, 0x0fffffff, 0x2c832107, 0x33342b0f, 0x03428733, 0x2843f511, + 0xfdff000e, 0x000e6820, 0x26b1bdff, 0x9b40270e, 0xc5160ef4, 0xb4bd4127, + 0xd4c10e24, 0x90d3c188, 0x305b4103, 0x8b88d4c5, 0xe335e63c, 0xa7e8a3e3, + 0xfbffff4e, 0x02104ed5, 0xb4bd4127, 0x3616063b, 0xfedf95be, 0xe394d4c1, + 0x94d4c543, 0x9ff6f98e, 0xf39300f1, 0xa7023bbc, 0xffffff4e, 0x0b9a4db9, + 0x99803bc1, 0xa0279a34, 0x2300815e, 0x07e21141, 0x031f6b14, 0xc6e00141, + 0xc49d6d2f, 0x10d2079a, 0x0000012f, 0x00df2701, 0x07010000, 0x833d0710, + 0xa7370317, 0xfde75f4e, 0x07e3310b, 0x37e34005, 0x00274315, 0x2ea74035, + 0x27fde74f, 0x24050e4c, 0x4d072315, 0xffff4f83, 0x4fa30fff, 0x80000000, + 0x351c1c33, 0xa741ab20, 0xfbffff3e, 0x021834d5, 0x0180c4c1, 0xc54d0be3, + 0xe41180c4, 0x4d2b3d0b, 0xe305e415, 0x41071d1e, 0xed07a127, 0xec83e42b, + 0x03e3330f, 0x03ea40ef, 0xf6c30700, 0x9dff6e4f, 0xf4939a34, 0xc1023b0c, + 0xb4ce8044, 0xff3ea70f, 0x3411fd9f, 0x00004ee3, 0x26341502, 0xff3ea7a8, + 0x4127ffff, 0x063534bd, 0x270f3399, 0x0ef49b40, 0x33874127, 0xb04034f5, + 0xf98eff02, 0xf49b4027, 0x00f98e0e, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0xff01020c, 0x00037e80, 0x00000001, 0x00000000, 0x00000003, 0x00000004, + 0x1007fd4e, 0xd1871f6b, 0x7fe8df03, 0x08530003, 0x01103f9b, 0xadf293d4, + 0x2e6100cf, 0xd405432b, 0x9908e19d, 0x3ea71624, 0x9dfd4fff, 0x248909e4, + 0x99e44d08, 0x21890c24, 0x0b32110a, 0x05e46d41, 0x2707f6e2, 0x0ef49b40, + 0xff8b0007, 0x30274027, 0xe39de405, 0x102f9b08, 0x420bd401, 0xfd8ed405, + 0x42734007, 0xf4e84103, 0x4007e31e, 0x45334903, 0x180042f5, 0x100bff02, + 0x180443f5, 0x2027ff02, 0xe8004e23, 0x034235fd, 0xfde8004e, 0x181041f5, + 0x43f5ff02, 0xff021814, 0xe7f04e23, 0x0b4235fd, 0xff4ea7fe, 0x40d5f7ff, + 0x22530100, 0x340725c6, 0x010834d1, 0x14031405, 0xfe0bf2a8, 0x4ea7f84e, + 0x99ffffff, 0x44d10a03, 0xb0070108, 0x076c3fc6, 0x074853a4, 0x539f6b94, + 0x030710ac, 0x8027eb07, 0xd027c0a7, 0x0758e299, 0x33320742, 0x2b353343, + 0xff2cc034, 0x8c34f113, 0x27ff0001, 0xd81d3b11, 0x0400004e, 0x03c1eb26, + 0xf0e103d1, 0xb441d7f0, 0xb431842e, 0xa7204cce, 0xf7ffff4e, 0xc5444cc5, + 0x00274848, 0xbc35b845, 0x92cef88e, 0x338d07db, 0x8aab108c, 0x0427d21e, + 0xc027f88e, 0xcf1e8027, 0x4ea7fd4e, 0x01f7ffff, 0x07d00743, 0x0d38dc01, + 0xfd8e16b6, 0x10060e27, 0xfea67e27, 0x5d7e0d07, 0x8e0276ff, 0x5efd0efd, + 0xfc4efe98, 0xdea7c007, 0x1ef7ffff, 0x2141dc0b, 0x640a0d27, 0x01fe837e, + 0x0f44dcd4, 0x07ef48d8, 0x3e10270c, 0xd8d401b4, 0x0227f344, 0xfe410d9e, + 0x0000fc8e, 0x0003e81c, 0x0003e80f, 0x0003e81b, 0x0003e807, 0xf1a3f54e, + 0x9107a007, 0xa469161e, 0x450b4c2b, 0x41c84f8b, 0xd9f41364, 0x0a074101, + 0xa7ff777e, 0xffffff2e, 0x010224a9, 0x010423a9, 0x92a9c407, 0x4307016a, + 0x422b4c1b, 0x9da96407, 0x6fab0168, 0xf305d62b, 0x3ea7d123, 0x99feffff, + 0xd0e80934, 0x438301a0, 0x34333407, 0x342b4487, 0x005432f1, 0xa401ff00, + 0x7e237307, 0xe2ffffb4, 0x99018f24, 0xa59909a4, 0x934fd608, 0xb1279231, + 0x1207f235, 0x1c837419, 0x0473990f, 0x83071333, 0x3e233107, 0xf9ffff84, + 0x00007c12, 0x45f415ff, 0x278200f3, 0x402c18b0, 0xb906b2a3, 0x007d14f9, + 0x4bceff00, 0xa7c1231e, 0xffffff4e, 0x010843b9, 0x4c834c07, 0x4ec1030f, + 0x2df25334, 0x5e2101ff, 0xdfe6ff4e, 0x2ea70132, 0x07ffffff, 0x0824b93c, + 0x0f3c8301, 0x34eef355, 0x60be00b4, 0x7459fe60, 0xffff2ea7, 0x0223a9ff, + 0xeef42501, 0x2700b03c, 0x270427b4, 0x0ef49b40, 0x4fff2ea7, 0xc5f321fd, + 0xa39d3824, 0x5fbfd608, 0xffff2ea7, 0x4224a9fe, 0x03e12701, 0x4224ad41, + 0x09ae9d01, 0x4fff3ea7, 0x11ac6dfd, 0x2d941932, 0x6893a99d, 0xd5912901, + 0x5101c892, 0x3d4383f2, 0x2b941d92, 0x3431c031, 0x3ea7d8d6, 0xbdffffff, + 0x9906373e, 0x40270f32, 0x270ef49b, 0xf5228731, 0x02b04023, 0x219431ff, + 0xce410373, 0x05c87734, 0x0310072d, 0x03e8001e, 0x31fe9d5e, 0xff2ea7f3, + 0x3f6bfddf, 0x4da34387, 0x24d50400, 0x2bd50208, 0xb51e0208, 0xfe62f453, + 0x7b5e4101, 0x7c04e0fe, 0x8ef183fe, 0x0424a9f5, 0xeef30101, 0x21ff4a43, + 0x4454eef4, 0x117419ff, 0x3c42eef2, 0x416f26ff, 0xce2439f2, 0xa4997bb4, + 0x6e4fd605, 0x41034c07, 0xffff3ea7, 0x0234adff, 0x27dad601, 0x6d0027b0, + 0xff195e74, 0x44a39419, 0x831e941d, 0x02279431, 0xf1834103, 0xf58ea405, + 0xf1830227, 0x28fcf58e, 0x8ff6fece, 0xf353feca, 0x3101fdec, 0x27fe095e, + 0x5e0027b0, 0xa499fee7, 0xa44fd605, 0x31a18fc6, 0xcf0ea7f3, 0x7325fff9, + 0x31277419, 0x741d4103, 0xbe05a39d, 0x1efe3ee0, 0x27b22787, 0xfebd5e02, + 0x30272b3d, 0xffff4ea7, 0x0a43adff, 0x0444a901, 0x0b360701, 0xff2ea734, + 0xb427ffff, 0x23ad0427, 0x985e0104, 0x99fa4efe, 0x3ea75204, 0xd5f7ffff, + 0xa7010034, 0xebffff2e, 0x01083ad1, 0xc1072421, 0x072744dc, 0xffdea7b2, + 0xd411fd7f, 0x4ea30c07, 0x15010000, 0x191c27d4, 0x11fcf77e, 0x004ee3d4, + 0xd4150100, 0x34d8b321, 0xff3ea7e2, 0x3ac5ebff, 0xc5412760, 0xfa8e6834, + 0xa007fa4e, 0xb207d107, 0xcfffcea7, 0x01de11fd, 0x31e001d1, 0x211211d4, + 0x0b402b13, 0xab240b34, 0x28e01132, 0x8e004830, 0x1e00a7fa, 0xc54427f9, + 0x0a0748c4, 0xa17e1b07, 0xc54027fc, 0xc4c548c4, 0x00cb1e68, 0x0000007d, + 0x00037fbc, 0xff010218, 0xff010228, 0x00037fc4, 0xff010220, 0xff0103e8, + 0x00037fcc, 0xff0105a8, 0xff1affb8, 0x5007f54e, 0xb007f0a3, 0x935c0c03, + 0x00c987f6, 0x02385d03, 0xb4c1f015, 0x290507bc, 0x684da942, 0x6d43b901, + 0x99419901, 0x3403d22b, 0xd123312b, 0xfae2f193, 0x142c27ff, 0x597ed33b, + 0x874007ff, 0x2b473330, 0x91f21343, 0x400b2101, 0xb2c14487, 0xb84e23bc, + 0x3107fef6, 0x11232901, 0x24034905, 0xf3984403, 0x64016311, 0x41033103, + 0x64056315, 0x050131ec, 0xc91ef293, 0xa7240100, 0xfefdf33e, 0x41273405, + 0xcfff9ea7, 0x6c94c5fd, 0x94c52027, 0xbcbec170, 0x31274027, 0x9d0cb49d, + 0xb29d0db3, 0x89cd0710, 0xcfab0cea, 0x4d08b18d, 0x0abc8db2, 0xa716ba8d, + 0xfef3e70e, 0xe489b065, 0x99e39972, 0x04874123, 0x016ce2b9, 0x03bb34f0, + 0x2374e489, 0x9d4d2b34, 0x433b0fb3, 0x42074202, 0x3407435b, 0x21232007, + 0x41234307, 0x230b1387, 0xb26d132b, 0x030eb49d, 0xe8040711, 0x07047541, + 0x07212323, 0x9d42a73b, 0x31031134, 0x0b0bf2b0, 0x8911019d, 0xb4990ce9, + 0x16b98d0e, 0x56ff4ce0, 0x7dfa9303, 0xa38900c8, 0x87a13110, 0x9b2d0743, + 0x07210b24, 0x07020b04, 0x0b100b14, 0x20a4d541, 0xe2a38d01, 0x8d54a2c5, + 0xa0c516a3, 0x5aa38d98, 0x8ddca1c5, 0xe4999ea3, 0x4e44f499, 0x89d02703, + 0x302774e4, 0x4d3b4123, 0xbcade407, 0xb3bd0116, 0xefab011d, 0x4127c516, + 0x011db4bd, 0x011eb3bd, 0x4127ec2e, 0x011eb4bd, 0x1127f311, 0x2d3b2107, + 0x00272c0b, 0x011d30bd, 0x011632ad, 0x25161103, 0x34bd4127, 0x30bd011d, + 0x2eee011e, 0x3c0302f4, 0xd914c45c, 0xc10cba99, 0x3a07bcb1, 0x33334a07, + 0x432b4533, 0x12994a2b, 0x89448798, 0x840708b3, 0x8b0b2423, 0x82a9323b, + 0xf4050118, 0x011483ad, 0x01e52ff6, 0x4910b499, 0xf6438bb3, 0x0701da4f, + 0x334a873a, 0x07430b36, 0x887f0374, 0xc100037e, 0xc407547d, 0xcf03d101, + 0x00037ea4, 0x02bc1fe6, 0x020811f8, 0x2b070c07, 0xfe0409be, 0x891e7489, + 0x70891673, 0x2b24871c, 0x16738d34, 0x708d2d0b, 0x5472c514, 0x84ad7c65, + 0xa1e00118, 0xa1f4021e, 0xf15301d2, 0xf253fd9c, 0xf353fd9c, 0x1d01fd9c, + 0x3c012901, 0xd4019311, 0x432bd211, 0xb2104cf4, 0xe8320702, 0x0702eb30, + 0x87453343, 0x89432b33, 0x4c0b1e72, 0x42053707, 0x033c3c03, 0x01262744, + 0x05340330, 0xa8440340, 0x03d301f2, 0x05d30531, 0x03d41193, 0x0f4c8341, + 0x4127d415, 0xcfff2ea7, 0x1c7389fd, 0x896c24c5, 0x402708b1, 0xfffe3d04, + 0x84bd4127, 0xb4c10120, 0x1883a9bc, 0x72428901, 0x4027310b, 0x4127320e, + 0x011f84bd, 0x891c7389, 0x34eec884, 0x726100db, 0x29091027, 0x41870427, + 0x7fac43f1, 0x39ee0003, 0x11030256, 0x1027f078, 0x41870427, 0x7fac43f1, + 0x3fe00003, 0xffffffff, 0x1103023a, 0xf193f058, 0x8900c698, 0x1e891410, + 0x9c1d8958, 0x8be01c89, 0x8bef8b0f, 0x27cf8bdf, 0x87142730, 0xac44f143, + 0x4e00037f, 0x0e4e2e04, 0xf3c4ee4d, 0x48310301, 0xc5f053f1, 0xa70d01fc, + 0xe62211c0, 0x0701d12f, 0x241c270a, 0x7e483c27, 0x0a07f84a, 0x2c271d07, + 0xf8777e48, 0x49f54c87, 0x00037fac, 0xfe01fc01, 0xcc030027, 0xecec03cc, + 0x40071827, 0x4b0b2007, 0x29212d0b, 0x3c0b3407, 0x22a13905, 0x42054e0b, + 0xf1280403, 0x4027d349, 0x99c8838d, 0x312706dd, 0xbdca8d9d, 0xbd010f84, + 0xbd011c83, 0xbd010c83, 0xbd010d84, 0x61010e84, 0x310a077d, 0x27d221d3, + 0xdf7e241c, 0xf6d351f7, 0xa900f83f, 0x01011882, 0x033207f4, 0x3123c84c, + 0x0b07b201, 0x1507040b, 0x011883ad, 0x4027f28b, 0x011c84bd, 0xb169b249, + 0x008512ee, 0x43834207, 0x43994b0b, 0x0b3f4b11, 0xf120c823, 0x07ee12da, + 0x83420732, 0x8d425333, 0xb39d08b4, 0x5eb24d0c, 0xa2c0fda4, 0x31a3c020, + 0x2107ff1e, 0x1c270a07, 0x383c2724, 0x07f7757e, 0x271c070a, 0xa27e382c, + 0xfdea5ef7, 0xfbc2f253, 0xfbc2f353, 0x39012d01, 0xfa47cea7, 0xfe0e5efe, + 0xc6a2fd93, 0x4f9ea700, 0xcea7fefa, 0x5efef887, 0xf453fdfc, 0xf053fb90, + 0xf153fb90, 0x4d01fb90, 0x1c010901, 0xc1fde75e, 0xb49dbcbe, 0x1d41270d, + 0xbcb1c1e4, 0x5d7e0507, 0x970fe6f8, 0x8ef083fb, 0x2b4427f5, 0x0fb49d43, + 0x3b74e389, 0xe23d2b24, 0x07fc4b32, 0xfc465e32, 0x34bd4127, 0x075e011e, + 0x0fb499fd, 0xcd07d43b, 0xcfabd407, 0xa85edfab, 0x07d241fc, 0x241c270a, + 0xa9f6d97e, 0x5e011882, 0x1ea7feff, 0x99feffff, 0x43830914, 0x44332487, + 0x43f9422b, 0xff000050, 0x072532c0, 0x100e2791, 0x457e1388, 0xf6d101f6, + 0x99fd1f1f, 0x43830994, 0x44332487, 0x43f9422b, 0xff000050, 0x89df32c4, + 0x14871674, 0x015e11a3, 0x5e30a7fd, 0xf293fd4f, 0x2100c488, 0xbe0d0721, + 0x5efe0121, 0xc307fe38, 0x4c07dc07, 0x4633d333, 0xde23d40b, 0x5ee50000, + 0xc107fe09, 0xd107eb1e, 0xd3334107, 0xd40b4633, 0x0000de23, 0xfe165ee5, + 0x2ea74427, 0xc5fdcfff, 0x05074824, 0x7e161c27, 0x4027f710, 0xcfff3ea7, + 0x4834c5fd, 0x5e6834c5, 0x0027fce4, 0x2bfb995e, 0x1df09343, 0x410300c4, + 0x01150405, 0x00faf35e, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x0489fd4e, 0xe40d89e8, 0x4fab410b, 0x99e8048d, 0x4d2be70e, 0x1fab1407, + 0x3ea7eaa6, 0xc1fdefff, 0x1e2ba434, 0x11e04cd8, 0x076515d0, 0xe8432723, + 0xa423c1f4, 0xf6e03cdc, 0x4d0b4e07, 0x039d3027, 0xe4048de7, 0xffff3ea7, + 0xea34adfe, 0x0718060b, 0x3815d441, 0x9ddc01c1, 0x2407e704, 0xe56feea7, + 0x9e0489fd, 0x40484f8b, 0x01c5f2b0, 0xc1fd8edc, 0x0389bc04, 0x03410bec, + 0x15e40548, 0x893027e3, 0xe335a004, 0xf2f0140b, 0x27e01ed9, 0x8ec61e44, + 0x07fd4efd, 0x871f6b10, 0x04df03d1, 0x5300038a, 0x103f9b08, 0xf293d401, + 0x5100ced4, 0x05432b2e, 0x08e19dd4, 0xa7122499, 0xfd4fff3e, 0x4909e49d, + 0x99e44d24, 0x21690824, 0x410b3211, 0xe205e46d, 0x402707f6, 0x070ef49b, + 0x27ff8b00, 0x05302740, 0x08e39de4, 0x01102f9b, 0x05420bd4, 0x07fd8ed4, + 0x03427340, 0x1ef4e841, 0x99fb4ee3, 0x43c0e604, 0xe0140713, 0xc000e242, + 0x4ff62244, 0x02c10146, 0xa7471ea4, 0xfdefff4e, 0xfc9843c1, 0x00a1e03c, + 0x049d4427, 0xc00489e6, 0xa7e0048d, 0xfdefff4e, 0xfc7443c1, 0x0112e03c, + 0x27c00389, 0xca049d40, 0xa7c4038d, 0xfeffff4e, 0x0be643ad, 0x89a402c1, + 0x1027a204, 0x02c5240b, 0xa804c1a4, 0x891242c2, 0xe20ba20e, 0xe407e402, + 0x01d004c1, 0x52e3c243, 0x27e60499, 0x27144e20, 0xff4ea731, 0x43c5fdcf, + 0xe6029d70, 0x893913c4, 0x4f8b9e04, 0x893140cc, 0x0189c00c, 0xa40ec1e0, + 0xe59fdea7, 0xb804c1fd, 0x0bec0389, 0x0548034e, 0x07d315d4, 0x89310331, + 0x4027a002, 0xd4351307, 0xe20b1fab, 0x8edfc1ce, 0xcc0499fb, 0x009d4ff6, + 0x89a00189, 0x210bc003, 0x4207210b, 0x3103412b, 0x8df64eca, 0x4ea7c003, + 0xadfeffff, 0xa70be443, 0xfeffff3e, 0x0be834a9, 0x89c00b89, 0x4b1bc403, + 0x4ccc4f8b, 0x0ec15c11, 0xa71307a4, 0xfde63fce, 0xe62fdea7, 0xb804c1fd, + 0x4e0b3827, 0xc315c405, 0x4c834107, 0x3320270f, 0x23c23543, 0xfef4c44e, + 0xd315d405, 0x41034107, 0x07a00389, 0xabd23514, 0xcee30b1f, 0x0499d0b1, + 0x271327e6, 0xff2f5e23, 0x27e60499, 0x5e242714, 0x2407ff25, 0x2a5e2f6b, + 0xe60499ff, 0x22271227, 0xa7ff145e, 0xd07fff3e, 0xe4e23411, 0x3e25ff5c, + 0x00feff5e, 0x00038cec, 0x000389e8, 0x00038980, 0xff010218, 0xff010228, + 0x00038988, 0xff010220, 0xff0103e8, 0x00038990, 0xff0105a8, 0xff0105b8, + 0xd007f54e, 0xd071f193, 0x55f09300, 0x2d0700c8, 0x0ce3f1a3, 0x7f1ce37f, + 0x35f82c03, 0x45f155f0, 0xff4ea7f2, 0x43d1ffff, 0x3fe60b84, 0x3ea706c9, + 0x11fd6fff, 0x104ca334, 0xf0933415, 0xa700cc44, 0xfefdf31e, 0x03011401, + 0x432b0211, 0x071a41e8, 0x072620e8, 0x32874207, 0x432b4733, 0x4487420b, + 0x417d1c27, 0xb84e23f3, 0x2107fef6, 0x11234001, 0x44033005, 0xf2983403, + 0xcc06f293, 0x11240100, 0x93410322, 0x00cbfbf3, 0x34052103, 0x41233215, + 0x06db21ec, 0x4ea73301, 0x15fefdf3, 0x60d3a943, 0xfad18902, 0xcfff4ea7, + 0xc52127fd, 0x312b6842, 0xd4993123, 0x98d38df8, 0x062641f8, 0xb998dc89, + 0xb90265d4, 0x3b0191d0, 0x0404f0c4, 0x6cdaa906, 0x07042301, 0x03403b4a, + 0x074c1b04, 0x8defabe4, 0x04f09ede, 0x042305e0, 0x105b1c07, 0x20270403, + 0xf3db4ea7, 0x6adba9fe, 0x0cd29d01, 0xd24dd20d, 0x0104d2a9, 0x3027d455, + 0xb1234127, 0x9d12d28d, 0xd49d08d3, 0x87d16d09, 0x64d2b99b, 0xf0b10302, + 0x07058d04, 0x8b30074e, 0x2734234f, 0x274008e0, 0xab4e07e1, 0x2b4a0b4f, + 0x0bd39d41, 0x4202433b, 0x435b4207, 0x29073407, 0x43072123, 0x13874123, + 0x132b230b, 0xd49dd22d, 0x0711030a, 0xfa41e8e4, 0x23230705, 0xa73d0721, + 0x0d349d42, 0xf2b03103, 0xfe62f253, 0x2301ed0b, 0x2027a427, 0x070de19d, + 0x0b415342, 0xe204e04c, 0x03340504, 0x2c3c0321, 0x0261faf8, 0xa9f9d499, + 0x070100d2, 0x83412334, 0x33330f4c, 0x00274333, 0x3e23b29b, 0x23fffef4, + 0xfffef44e, 0xdeb91247, 0xd3c5015b, 0xd0d4c5d4, 0xc5a2d18d, 0xd09da8db, + 0xa0d28dcd, 0xe6ccd09d, 0xa7055bef, 0xfeffff4e, 0x014143b9, 0x054e3fe6, + 0xa7fad489, 0xdfffff3e, 0x0260d2a9, 0xc5bcd3c5, 0x4103b8d3, 0x4127422e, + 0x99ccd49d, 0x4438f8d4, 0xd49d4127, 0x273027cd, 0xdcd3c540, 0xc5e6d49d, + 0xd3c5a4d3, 0xacd3c5b0, 0xc5b4d3c5, 0x0d07d8d3, 0x27fc387e, 0x0000004f, + 0x90d3b980, 0xf0d4c501, 0x050e36e0, 0x89f6d489, 0x432bf4d3, 0x47334783, + 0x00004fa3, 0xd4c58000, 0x8df253f0, 0x51f093fd, 0xf19300ca, 0x0100ca60, + 0x31f99326, 0xf01500ca, 0xd499f105, 0x144fe609, 0x08dc9901, 0x3c07db49, + 0x34334c87, 0x3c2b342b, 0xb9f4d189, 0x870191d4, 0xe88f0383, 0x0b00038c, + 0xea46e01b, 0x05834902, 0x0a9c9d8b, 0x932d9b4d, 0xd3999b0d, 0x0b4b07f6, + 0x27478343, 0x0b949d33, 0xc10c939d, 0x3c07f0d2, 0x830f1c83, 0xab418733, + 0x4534ab32, 0x0ad49993, 0x3da3c42e, 0x93450440, 0xd2a99409, 0x4f8b016e, + 0x242b4433, 0x27412c10, 0x9429402c, 0x0170d3a9, 0x44334f8b, 0x342b2703, + 0x3c102353, 0x403c2741, 0x33533703, 0x94412123, 0x31232783, 0x37832b33, + 0x3c3324ab, 0x4523ab14, 0xb3cff692, 0xead28901, 0x41234207, 0x01ab4be2, + 0xffff1ea7, 0xe614a9fe, 0xc8d3890b, 0x432bb103, 0xb4ca4fab, 0x27a10720, + 0x7e64110d, 0x0d07fabd, 0xa9fb207e, 0x890be6a4, 0x432bc8d3, 0x4bc24fab, + 0xead289e7, 0xc93af093, 0x49040100, 0x054103d3, 0x0032ea04, 0x9d412702, + 0xcfe60c94, 0x94990209, 0x1043c40c, 0x848d40a7, 0x0c939908, 0xe008948d, + 0xa700cc33, 0xebffff3e, 0x41dc3421, 0x27c30716, 0x27c43541, 0x627e0f0c, + 0x354027fa, 0xd8c321c4, 0x6499ee31, 0xa748c60c, 0xfeffff2e, 0xc8e2f493, + 0xd1430100, 0x230bc024, 0xd5410331, 0x930bc024, 0x00c8cff0, 0x40270305, + 0x990c649d, 0x4ff609d4, 0x94990134, 0x8742f00c, 0x93924101, 0x00c8b3f1, + 0x4ea71301, 0x45ebffff, 0x2231c842, 0xf2114607, 0xf915f601, 0xf2059407, + 0xb9fe715e, 0x5e0191d0, 0x0d07fd87, 0x617e1027, 0xe84327f9, 0xe4d389f4, + 0xcee8d489, 0xd089ed43, 0xf6d489ea, 0xa9c8d389, 0x89016ad1, 0x310be2d2, + 0x4103400b, 0x89c8d38d, 0x200b9ed3, 0xd28d41e3, 0xf6d48de2, 0x30ec3f8b, + 0xd489fbe9, 0x8d400bf4, 0xde5ef4d4, 0x9cd499fb, 0x44863027, 0x9a993127, + 0x073f6b0a, 0x33f3254a, 0x2b3a8744, 0x214a2b43, 0x03b487f1, 0x038ce8bf, + 0xf614c600, 0x31039caf, 0x963027b4, 0x41312744, 0x6b5307b4, 0x574fe65f, + 0x445fe601, 0x0fac0301, 0xc333ca07, 0xf000ce23, 0x01b261fd, 0x0b0d27c4, + 0x202fe610, 0x33b15101, 0x4c53184c, 0x001ff01d, 0x21100000, 0x13be8103, + 0x83eff644, 0xeb4ff603, 0xf9377e00, 0xd289d41e, 0x8921e4ea, 0x85cff6fe, + 0xff1ea7fe, 0x14a9feff, 0xd3890be6, 0xab432bc8, 0x71b4ea4f, 0x27a107fe, + 0x7e64110d, 0x0d07f90d, 0xa9f9707e, 0x890be6a4, 0x432bc8d3, 0x4bc24fab, + 0xfe4f5ee7, 0xd129d209, 0x023612ee, 0x43834207, 0x43994d0b, 0x0b3f4b0d, + 0xf120c823, 0x07ee12da, 0x83420732, 0x4d425333, 0x08d39dd4, 0x9299d20d, + 0x8927160a, 0x9349ead4, 0x43d24123, 0x9ed4890d, 0x8be2d189, 0xc540e84f, + 0x0ad49901, 0xfe8442ee, 0x11270d07, 0x99f8137e, 0x42f40c94, 0x2027fe7d, + 0x99fe7a5e, 0xd36908d4, 0x0b9ad289, 0xf624e243, 0xfbcff6fd, 0x7e0d07fd, + 0xf35ef8e9, 0x5e1383fd, 0x4a07fd15, 0xb2614333, 0x100044f1, 0x2aa6ff02, + 0x1ff0b151, 0x10000000, 0x4c33023c, 0x53be8118, 0x44131d4c, 0x0239eff6, + 0x4a0748e6, 0x41f54533, 0xff021800, 0x180442f5, 0x3027ff02, 0xe8004e23, + 0x414335fd, 0x0bb431b3, 0x35302743, 0x21b345b4, 0xb03ff6f3, 0x23b431fd, + 0x5eb43541, 0xa1e0fda7, 0xa1d400af, 0xfdf3536f, 0xfdf453f9, 0xfdf053f9, + 0x013c01f9, 0xc6080147, 0x7301625f, 0xc211c401, 0x016934ee, 0x40e84207, + 0x34070217, 0x44873533, 0x4b07342b, 0x4c03380b, 0x01272710, 0x05340330, + 0xa8440340, 0x03c401f2, 0x15c40541, 0x03c31174, 0x0f3c8331, 0x4127c315, + 0xcfff2ea7, 0x6824c5fd, 0xe60fac03, 0x07ff3d5f, 0x23c333ca, 0xfdf000ce, + 0xc0fe485e, 0xa3c025a2, 0x01ff1e4c, 0x11c40173, 0x0334eec2, 0xe0420701, + 0xffffff4f, 0x1eff62ff, 0x0b4c079a, 0x5e340542, 0xf453fb1b, 0xf053f980, + 0xf153f980, 0x4c01f980, 0x18010701, 0x53ff6a5e, 0x53f95ff1, 0x53f95ff2, + 0x01f95ff3, 0x0127011c, 0xff555e38, 0xc5dafc93, 0x4f7ea700, 0x8ea7fefa, + 0x5efef887, 0x4427ff43, 0x3a07402b, 0x312b243b, 0xe20bd49d, 0x07fa8932, + 0xfa845e32, 0x402b4427, 0x143b1c07, 0xa9fa215e, 0x27016cda, 0x07402b44, + 0x07147b1a, 0xf9fb5e41, 0x31be0d07, 0xf331fe03, 0xf4513419, 0xc2803c03, + 0xc95ef734, 0xff3ea7f9, 0x3411fd6f, 0x15104ce3, 0xf9385e34, 0x310b3103, + 0x07e0d489, 0x2bcfabc3, 0xec4f8b4c, 0x07fe2c41, 0xf73f7e0d, 0x2be0d489, + 0xc84f8b4c, 0x9299f241, 0xfe175e0a, 0xc5fcd4c1, 0xd4c5bcd4, 0xfacf5eb8, + 0xd49d4027, 0xfde85e09, 0x0104d4d1, 0x83ead389, 0x33438b41, 0x004fa347, + 0xc5800000, 0xf25ef0d4, 0x5ee027fa, 0x40a7fa14, 0xa7fefe5e, 0xfe985e40, + 0xe55e20a7, 0x2b4203f8, 0x15340542, 0xf91e5e31, 0xf49b4027, 0x0ef49b0b, + 0xcfffbea7, 0xa79107fd, 0xfeffffae, 0xb4c54827, 0xbd32274c, 0x270c3fa3, + 0x0efc9bc0, 0xb4c54127, 0x7e052760, 0x4027f64d, 0x0c3fa4bd, 0xc50efc9b, + 0xbcc54cbc, 0xc9f1936c, 0x940100c4, 0x12111301, 0x410c432b, 0x20ec20a7, + 0xc11ef88c, 0x75fff093, 0x2646befe, 0xf0ff1efe, 0x07fdee42, 0xf545334a, + 0x02180041, 0xf51407ff, 0x02180442, 0x001e23ff, 0x2027fde8, 0x1235b371, + 0x180043f5, 0x4ef5ff02, 0xff021804, 0xb45e1235, 0xbdf293fd, 0x243100c7, + 0x24354123, 0x27fb665e, 0xff2ea748, 0x24c5fdcf, 0x7e0b274c, 0x4027f5cd, + 0xcfff3ea7, 0x4c34c5fd, 0x5e6c34c5, 0x42d4fdbe, 0xfc7f5ea3, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x4007fb4e, 0x6b174c53, 0x07c0074f, 0xc0d027b1, + 0x0741ff4c, 0xff3e8330, 0x4ba67fff, 0x0c230407, 0x1f0ccc77, 0x003ea32f, + 0x13078000, 0x01e82027, 0x4c23008c, 0x6940c897, 0xe43be307, 0xd03bd107, + 0x2d074e07, 0x49333e07, 0x73172c53, 0x24ab173c, 0x272831c8, 0x27fb8e00, + 0x773c2720, 0x07574c27, 0x07d47bd2, 0x07e37be2, 0x072d074e, 0x5349333e, + 0x3c73172c, 0xcc24ab17, 0x3536da31, 0xba602fd4, 0xc8d10ccc, 0xffffff3f, + 0x3fc0caff, 0xffffffff, 0x07b2051f, 0x21c0cc42, 0x01274013, 0xfb8eb405, + 0x2b204c27, 0x5be20740, 0xabe03b34, 0xd08e1ee3, 0x0000002f, 0xda1e9e80, + 0xfb8e0127, 0x30133007, 0x4c234307, 0x9840cc20, 0x2b204c27, 0x07020743, + 0x5b043bd1, 0x1ed0abd3, 0xa3f84e8b, 0x09f005f0, 0x8b8207f0, 0x1593070f, + 0x3a42bef1, 0x49c007fe, 0xbe0f8bf0, 0x07fe3a38, 0xbe0c0710, 0x07fe37f5, + 0x07f029b0, 0xbe0f8bab, 0x07fe3a24, 0x8bf069c0, 0x3a1abe0f, 0x071007fe, + 0x37d7be0c, 0x00df27fe, 0x07448000, 0x071d07c0, 0xbebc070b, 0xc8fe3bbb, + 0xd0272201, 0x0b071907, 0x07fec77e, 0x071807c0, 0xfebe7e0a, 0x08b60c8b, + 0xf1930427, 0x9efe7488, 0x07fe27a6, 0x270c071d, 0x3b8dbed0, 0x270108fe, + 0xc34d07d1, 0x6bd40741, 0xc6ca1edf, 0xf083dbdf, 0xfc4ef88e, 0xefff4ea7, + 0xe04ec1fd, 0xec33d107, 0xb6028918, 0x53b20389, 0xd1031dec, 0xe47fcea7, + 0x143222fd, 0x03fdf0e4, 0x0489fc8e, 0x2b1407bc, 0x3b42c212, 0x02c00489, + 0xc1140714, 0x0389cc04, 0x0b240bdc, 0x15c20523, 0xc00289c1, 0x89b60389, + 0x320bb204, 0x0189420b, 0xb6038dc8, 0x03b2048d, 0x89402711, 0x0389b602, + 0x8dc435b2, 0x4e07c801, 0xe4074103, 0xaa1eef6b, 0x04a9fe4e, 0x49260374, + 0x31071353, 0xc1c80e89, 0x3fabd402, 0x14072411, 0x13c21fab, 0x27e142f8, + 0x5efe0e10, 0x1e2bff66, 0xfe0e1fab, 0x8eff5d5e, 0x07fc4efe, 0x6bd007c1, + 0xbdf093cf, 0xad7e00da, 0xa7c7a600, 0xfeffff2e, 0x014223a9, 0x014424a9, + 0x277834ce, 0x4023bd30, 0x9b40270c, 0x1d070ef4, 0x01871f6b, 0xa1180f03, + 0xd8530003, 0x01103f9b, 0x35f29304, 0x2e5100d9, 0x0405432b, 0x9908e19d, + 0x3ea71224, 0x9dfd4fff, 0x244909e4, 0x2499e44d, 0x11216908, 0x6d410b32, + 0xf6e205e4, 0x9b4027dc, 0x00070ef4, 0x2027ff8b, 0xe49d4027, 0x9be20508, + 0x0401103f, 0x0405430b, 0x3ea7c606, 0xbdfeffff, 0x270c4032, 0x0ef49b40, + 0x3227fc8e, 0x0c4023bd, 0xf49b4027, 0xa731270e, 0xfdcfff4e, 0x5e6043c5, + 0x4d07ff7e, 0x41034273, 0xbb1ef4e8, 0x0499f94e, 0xe6c00725, 0xa700a54f, + 0xfddfff1e, 0x01c014d1, 0x00944fe6, 0x020c13d1, 0x03250271, 0x021014d1, + 0x35270d99, 0x1413d104, 0x45402702, 0xa811d103, 0xff3ea701, 0x210bffff, + 0x7525049d, 0xb9d12302, 0x83010834, 0xd4ee0fdc, 0xd3330168, 0xc3894027, + 0x0cd4f520, 0xa7ff0001, 0xffffff2e, 0x24b93e56, 0x4ce00101, 0xb90131ff, + 0x07010124, 0x07db07b4, 0x3347334b, 0x23d40bd5, 0xfff5ccde, 0x20274d07, + 0x05283c27, 0xc8440342, 0xc1c451f3, 0xd40550d2, 0x4ea7c161, 0xc5fd4fff, + 0x430164d1, 0xab103c33, 0x50d2c523, 0x00271c1e, 0x0127f98e, 0x24b9f98e, + 0xd4070101, 0xd533b407, 0xd40b4733, 0xf5ccde23, 0x071c07ff, 0x0318032d, + 0x0327942c, 0x13012401, 0x430b1403, 0x24032405, 0xaea7f088, 0x81fd4fff, + 0xff9ea7ae, 0xa091feff, 0x012894d1, 0x013093d1, 0xe3330333, 0xc154d2c1, + 0x301b5cd1, 0x240b4e1b, 0x90d5130b, 0x9ed50130, 0xd2c50128, 0x5cd1c554, + 0xd4c1c371, 0x50d2c170, 0xd4c5430b, 0x27a30170, 0xab033b01, 0x22c49902, + 0x5650d0c5, 0x20c1894c, 0x0329c499, 0x2ac39911, 0x3b28c299, 0x06132b14, + 0xa3115325, 0x9980001d, 0xc39926c4, 0xa9483327, 0xab014492, 0x101c3343, + 0x3ea741ab, 0x03ffffff, 0x0834d521, 0xad012701, 0x8e014492, 0x07a401f9, + 0x144c331b, 0xd0c504ab, 0xbe0c0750, 0xa7fe1640, 0xff4ea730, 0x43bdffff, + 0xa21e0101, 0xe8070e27, 0x7e102703, 0x0ea7fdad, 0xbefff5db, 0x07fe9bd7, + 0xe900c8b0, 0xffff4ea7, 0x0140bdff, 0xfebf5e01, 0x0d27b307, 0x10276406, + 0xb9fd887e, 0xee0108b4, 0x1efe894d, 0x07f84eee, 0xffbea7c0, 0x8c27fddf, + 0xe5fd9310, 0x9c2700d6, 0xffaea70c, 0x471efd4f, 0x9b30b8c5, 0xd4c1102f, + 0x2bd35138, 0x38d4c542, 0x9908399d, 0x349d12d4, 0x11d44909, 0x99344da1, + 0xd26908d4, 0x420b3105, 0x4027346d, 0x070ef49b, 0x9dff8b00, 0x30050834, + 0xc1104f9b, 0xb0c538d3, 0xc5430b30, 0x0c0738d4, 0xc6fdd37e, 0xf88eb30f, + 0xcea7fc4e, 0x27fdcfff, 0xc4c5104c, 0x7e1f6b50, 0x4027fd01, 0xc550c4c5, + 0xfc8e70c4, 0xfc93fb4e, 0x0700d668, 0xffdea7bc, 0xbd03e7ff, 0xd3210150, + 0x40273158, 0xfb8ed435, 0x036ec4b9, 0x10270b27, 0xb90c4c38, 0x760387c4, + 0x35412745, 0xfcc37ed4, 0x0b07dd1e, 0x1eff407e, 0xa7fc4ed6, 0xfeffff4e, + 0x0be443a9, 0x011804a9, 0x2bfc0ec1, 0xc83f8b34, 0x01d11631, 0x1ec20100, + 0xf802890f, 0x04ad4103, 0xe20b0118, 0xc55ef3f0, 0x4ea7fc0e, 0xd1fdefff, + 0xc1013001, 0xe1c2a844, 0x184c334a, 0xd41d4c53, 0xd4274144, 0xcea7d42b, + 0xd1fde55f, 0xc2013404, 0x04d11941, 0x03a90110, 0x410b014a, 0x02a9430b, + 0xc405014c, 0x4027c215, 0x04a9c435, 0x03890140, 0x0b4103f8, 0x4004ad13, + 0x3001d501, 0xf0e10201, 0xfc8ecafd, 0xa9a11ec2, 0x1e011804, 0xa9fd4e90, + 0x07017e04, 0xc61f6b12, 0x4ea77a4f, 0xc1fdefff, 0x0389ec4d, 0x18dc33c6, + 0x53ca0489, 0x3d2b1ddc, 0x0bc40289, 0xc111c343, 0x210bd803, 0x01894fab, + 0xb40e89b8, 0x028d3415, 0xca048dc4, 0xd647e1c2, 0xbc0489dc, 0x072741c2, + 0xc0038924, 0x2302212b, 0x04c12307, 0xdc0389d0, 0x130b140b, 0xe44f4ea7, + 0x154105fd, 0xb8018942, 0x35b40e89, 0xc004894d, 0x31072e07, 0x240bd127, + 0x038d340b, 0xb4028db8, 0x8ec60d8d, 0x8ddfabfd, 0xf81ec60d, 0x09a9f74e, + 0xe0070148, 0x7907910b, 0x8ea77fab, 0xadfdefff, 0xa7014807, 0xfde52fae, + 0xb9b48cc1, 0x330146e3, 0xcc5318cc, 0xa93c2b1d, 0x060142e4, 0xad430b35, + 0x070142e4, 0x073c0b34, 0xce4fab43, 0xc4d46247, 0x0703074d, 0x2b310349, + 0xabb40743, 0x0bd427bf, 0xd1dc2bb3, 0xd10138e1, 0x03013ce4, 0x1941c2c1, + 0x0114e4d1, 0x014ae3a9, 0x430b410b, 0x014ce2a9, 0xa215a405, 0xa4354027, + 0x03f8e489, 0xd5410b01, 0x070138e4, 0xce4fab40, 0xfdf0160b, 0xbd471bc7, + 0xab0146ec, 0x0c45d04f, 0xf4e84327, 0xbdff7b5e, 0xa70146ec, 0xfeffff4e, + 0x0bea43a9, 0x0142e2a9, 0x422b4307, 0x80004dfc, 0x820700e3, 0xefff4ea7, + 0xbc41c1fd, 0x0123e4b9, 0x53181c33, 0x412b1d1c, 0x011ee2a9, 0x240b4766, + 0xffff4ea7, 0xe842adfe, 0x1ee2ad0b, 0xa7312701, 0xfdcfff4e, 0x076c43c5, + 0x07310b32, 0xce4fab43, 0x14d45647, 0x03d30753, 0x079d2bd1, 0x07cfabc9, + 0x03d123b1, 0x1f9ea7c1, 0xaea7fde5, 0x07fde50f, 0x0f4c834d, 0xe0d14333, + 0x4e23010c, 0xd1fef4c4, 0x050110e3, 0x03182794, 0x15300bb1, 0x35202791, + 0x15a30592, 0xf8e489a1, 0x400ba235, 0x010ce4d5, 0xfcf0d103, 0xa91b0748, + 0xbd011ae2, 0xce0123e1, 0xeca94028, 0x2cce011e, 0x04e1d139, 0xf8ed8901, + 0x012ce0d1, 0x7fffbea7, 0x072103d0, 0x25e4b932, 0x0b3fab01, 0x8623071d, + 0x05b10544, 0xce380e01, 0xe3ade8c3, 0xe1d5011a, 0xf78e0104, 0x1e81b4c4, + 0x07f78eb5, 0xff1e5e83, 0x5007f54e, 0x7ea7d007, 0xa7feffff, 0xe7ffff6e, + 0x01505d03, 0xd089d949, 0x08d89998, 0xd189da69, 0x8631279a, 0x07302794, + 0x0be123e0, 0x331123a8, 0x4127103c, 0x40279e0e, 0xbda3b807, 0xb3ab2000, + 0x27114c33, 0x271a0e21, 0x03b4ab20, 0x0f2c3311, 0x090e3127, 0xb2ab3027, + 0x270e3c33, 0x271a0e41, 0x33b3ab40, 0xb4ab0e4c, 0xce078ad6, 0xc907e902, + 0x0be674a9, 0x0120d3a9, 0x4fab432b, 0x2720c4ca, 0x160c2710, 0x07fc5b7e, + 0xfcaf7e0d, 0x0be674a9, 0x0120d3a9, 0x4fab432b, 0x89e54cc2, 0x09e298d0, + 0x8fe600c3, 0xd4890161, 0xc34aee9a, 0xb98e7600, 0x890214d4, 0x442398d3, + 0x39c2345b, 0x44d4a926, 0x40d3a901, 0x07490b01, 0x2bcfabc4, 0xcc3f8b3c, + 0x0d071131, 0xa9fc647e, 0x2b0140d4, 0xc84f8b4c, 0xd4b9f141, 0x4cd8036e, + 0xd499170c, 0x8b4123b1, 0xb945f649, 0x260387d4, 0x98d48945, 0x016894ea, + 0xce0ad499, 0xd4892784, 0x2149c298, 0x036ed4b9, 0x120c4cd8, 0x23b1d499, + 0x56498b41, 0x87d4b945, 0x4d4ff603, 0x270d0701, 0xfd327e11, 0x45fbcf7e, + 0x75d4b96b, 0x094c1601, 0xced129d2, 0x42074412, 0x4d0b4383, 0x4b0d4399, + 0xc8230b3f, 0x12daf120, 0x073207ee, 0x53338342, 0x9dd44d42, 0xd20d08d3, + 0x89feb35e, 0xbde39ad4, 0xa4ee0800, 0xbda3ff41, 0x3a5e0400, 0x7e0507ff, + 0xd209f934, 0x21ced129, 0x274027be, 0xffbea7c4, 0xd49de7ff, 0xfb6e7e09, + 0xb4454027, 0x657efcb0, 0x1ad3a9fb, 0x48d4a901, 0x1734ce01, 0x10270d07, + 0x27fcb37e, 0xa9f4e843, 0xa9011ad3, 0xce0148d4, 0xd3b9eb43, 0xd2890214, + 0x2cdcd198, 0x20d1a901, 0x44d0a901, 0x2340a701, 0xeedea934, 0x5bc40501, + 0x0b1e0b23, 0x6ed4b902, 0x20d1ad03, 0x44d0ad01, 0x0c4c3801, 0x0387d4b9, + 0xd4d148d6, 0xd3890378, 0x0b410398, 0xd541e343, 0x8e0378d4, 0x7e0d07f5, + 0x9b5efb31, 0x270d07fe, 0x7e212710, 0xd489fbb9, 0xcad289c4, 0xa9ef42ce, + 0xc60374d4, 0xb6d38948, 0xcabcd489, 0x1a1e0c34, 0x89b6d389, 0x43c2bcd4, + 0x270d070e, 0xf70c7e11, 0x0374d4a9, 0xd2894196, 0xd8d3c1ca, 0x341540a7, + 0x0378d4d1, 0x0398d389, 0xe3430b41, 0xc4d28d41, 0x0378d4d5, 0x0d07f58e, + 0x557e1907, 0xfe925ef7, 0x0d071907, 0x567e2027, 0xfeab5efb, 0x0000007d, + 0x00000001, 0x00000000, 0x00020000, 0x07f54e00, 0x071d07d0, 0x073d072d, + 0x03f7634d, 0x0301500d, 0x03017c1d, 0x0303882d, 0x03018c3d, 0xc5034c4d, + 0xf1c568f0, 0x64f2c544, 0xc548f3c5, 0xbea75cf4, 0xd1ffffff, 0xe60b84b4, + 0xa709284f, 0xfd5fffce, 0x4ca3c411, 0x93c41510, 0x00d07ff1, 0xfdf30ea7, + 0x010401fe, 0x2b121113, 0x9741e843, 0xda20e80a, 0x8742070b, 0x2b473332, + 0x53420b43, 0x87ff7ffc, 0x23c10144, 0xfef6b84e, 0xc544f2c1, 0x34073cf4, + 0x3e014107, 0x2e051123, 0x24033403, 0xf293f498, 0x0100d038, 0x03231124, + 0x05310341, 0x23231524, 0x8b31ec41, 0x21f3930b, 0x340100d0, 0xfdf3bea7, + 0xa9b425fe, 0xa9017edc, 0xc502e4d4, 0xf0c154fc, 0xa7c12754, 0xfdcfffee, + 0x2b68ecc5, 0xb9412340, 0xad017cd3, 0xdc0374d4, 0xf0c11b31, 0xf9077e68, + 0x19be0d07, 0xd1a9fdf9, 0xd2a9017e, 0xf1c50188, 0x12d28d54, 0x036ed4b9, + 0x5c0c4cf8, 0x87d4b908, 0x544fe603, 0x74d3a909, 0xead2a903, 0x4cf3c503, + 0x02e9d4b9, 0xb54cfbc1, 0x03feb1f4, 0x70d3b9b1, 0x3bfb5503, 0xe8d4b9be, + 0xb9fb5502, 0x7b0371d0, 0xc5fb55b3, 0xd1b930f0, 0xb43303ed, 0xb13bf235, + 0xd2b94433, 0x437b03ec, 0xfb55037b, 0xa94cf3c1, 0x3b03e8db, 0xa5013bc1, + 0x85f095f3, 0xb9fb25fc, 0xc10216dc, 0xfcc554fe, 0x38fec534, 0xf3314fab, + 0x03e4d5d1, 0x0a7d2ff6, 0xa51bfa81, 0xf0b1a153, 0x0a6602e0, 0xfb65b027, + 0x413bf751, 0x2ff6742b, 0xf981094d, 0x9153951b, 0xf4054027, 0x08cf7ff6, + 0x8de8d48d, 0xd489eed7, 0x8b3f8be8, 0x0743124f, 0xeadba943, 0xe8d48d03, + 0xd489bf8b, 0xc53b07ee, 0x4f8b60fb, 0x43123173, 0xd48d4307, 0xe8dc89ee, + 0x07eede89, 0x9b3e074c, 0x27359b45, 0x3b4a0b01, 0x27a30b01, 0x6cfcc510, + 0xc540fec5, 0xdac5e0d4, 0x70f0c5e4, 0xcd07fd15, 0xf271f175, 0x08692fe6, + 0x71e4d8c1, 0x964127f3, 0x51402734, 0x61fe81f2, 0x7b247bf3, 0x07b20734, + 0x1bb32b6e, 0x71f39162, 0x2b345bf2, 0x2b2f6bbe, 0x07b32b63, 0x322fe6a8, + 0x40f4c108, 0x7160f0c1, 0x7b7407f1, 0x077fab01, 0x58f0c540, 0x472b2027, + 0xc29d9407, 0xf2c29df0, 0xb8c29fab, 0xe4d1d131, 0x2b0b0703, 0x3f58be08, + 0x070f6bfe, 0x9d459b40, 0x480bf0c0, 0x40074b4a, 0xc49d4123, 0xf0c499f0, + 0x4f6b4103, 0xa59ba407, 0xc49da80b, 0x994907f0, 0x4f8bf0c3, 0x43074312, + 0x942b4f6b, 0xc49db907, 0xe2bfabf0, 0xe606b16a, 0xd106adbf, 0x0703e4d1, + 0xbe0a2b06, 0x6bfe3f0a, 0x9b40070f, 0x9d4a0b45, 0x464af2c0, 0x41234007, + 0x99f2c49d, 0x1027f2c4, 0xc49d4103, 0x994b07f2, 0x4f8bf2c3, 0x43074312, + 0x6bf0c299, 0x0b720b4f, 0xf2c49d74, 0xf4113707, 0xfbc13fab, 0xea438d70, + 0x07405bee, 0x03ecd4b9, 0x073842e0, 0xfb11f471, 0xb2034103, 0xfb15f475, + 0x42e4c103, 0xd4d1feee, 0xeea703e0, 0xd5fddfff, 0xd1022ce4, 0xc103e4d3, + 0xe3d530fc, 0xd2c10230, 0x6cf1c1e0, 0x023ce2d5, 0x53e4d3c1, 0xff1d83c2, + 0x40e3d53f, 0x30fcc502, 0xb16cf1c5, 0xb9f4a1f0, 0x3b0370d2, 0x33c27b40, + 0x83425b44, 0x40f2c1c7, 0x8310cc33, 0xc53fff4d, 0x1c3330fc, 0x83c4ab10, + 0xd51fff2d, 0xc50234ec, 0x12ab6cf1, 0x0238e1d5, 0x99f2d499, 0xfbc1f1d2, + 0x34fcc13c, 0x833f4c83, 0xde991f2c, 0xf3d099f0, 0x3396b389, 0x102c3348, + 0xc4861127, 0x42ab1027, 0x7b3fec83, 0x834eab31, 0xfe311f0c, 0x3394b289, + 0x3d83180c, 0xf1213fff, 0x2d8340ab, 0x0ea73fff, 0x33fddfff, 0xed83103c, + 0x04d53fff, 0x32ab0244, 0x8310ec33, 0xd53fff1d, 0x35022403, 0xabf3a1fe, + 0x280ed5e1, 0xecd2b902, 0x86412703, 0xc1402734, 0x4c3338fb, 0x27238318, + 0x27b48631, 0x3342ab30, 0x43ab193c, 0x022004d5, 0x02e9d4b9, 0xb94cf6c1, + 0x3b02ead3, 0x303ff664, 0x27c02705, 0x15d1b9e0, 0x1914f002, 0x07142305, + 0x03015b06, 0xeed2a914, 0x23412701, 0xa92e0b21, 0x270188de, 0x9db02730, + 0x4ea709d4, 0x9dfef3cf, 0xd39d08db, 0x0dd4550c, 0x6dd34dd3, 0x12de8dd0, + 0xdbb92287, 0x14f002e8, 0xd4a90515, 0x310701f0, 0x34234c0b, 0xd39d402b, + 0x02433b0b, 0x5b4b074b, 0x23340743, 0x23430721, 0x0b138741, 0x2d132b23, + 0x0ad49dd2, 0x04071103, 0x066541e8, 0x21232307, 0x42a73d07, 0x030d349d, + 0x0bf2b031, 0x86d5b90d, 0x0d019d03, 0x04c25fe6, 0x04be61e8, 0x71237607, + 0x01a4d4a9, 0x40e84f8b, 0xe0270515, 0x0348d4d1, 0x4df8fe45, 0x05130100, + 0x0370d3b9, 0x437b4707, 0x21732407, 0x34070207, 0xe2070283, 0x14073283, + 0x90878387, 0x02073407, 0x1183e183, 0xee471147, 0x34830483, 0xdcd1810b, + 0x9e0b03b0, 0x03333333, 0x03bcd1d1, 0x900b830b, 0x47e327e3, 0x219b4c9b, + 0x94338433, 0x920b840b, 0x03c0d4d1, 0x03b4dad1, 0xc153cb07, 0xab9bc49b, + 0x034cf1c1, 0xcc037fac, 0xd4d0a97f, 0x7face303, 0xd17fcce3, 0xd103acd4, + 0x9b03b8d3, 0x2ba19bc1, 0x0ba40b06, 0x070b12c3, 0x54f2c10b, 0x04312fe6, + 0xfa92f353, 0x0371d1b9, 0x40273e01, 0x045b6fe6, 0xefe63027, 0x6fe6015c, + 0xfb530154, 0xb201fa7c, 0x17831253, 0x13ab14ab, 0xdfffeea7, 0xd512abfd, + 0x2501d4e1, 0xf6f041e0, 0xb9013c0f, 0xe601ecd4, 0xd100914f, 0xd80348d4, + 0x5101004d, 0x019cd4d1, 0x0370d0b9, 0x03c8dbd1, 0x20c04cd8, 0x21732707, + 0x053a20e8, 0x03d0d4d1, 0xd3d12373, 0x249b03cc, 0xdfff1ea7, 0xd5c20bfd, + 0x2701f413, 0x07103b18, 0x3ba1be07, 0xff2ea7fe, 0x4427fddf, 0x01d824d5, + 0x03c4d3d1, 0xab0bb09b, 0x01bc23d5, 0x41275626, 0x40276486, 0xdfff3ea7, + 0x9834d5fd, 0xc6f44101, 0x9cd4d146, 0xc04c5801, 0xdfffbea7, 0xe4b9d5fd, + 0xe8bcd501, 0xffcea701, 0xcad5fddf, 0xc8d5019c, 0xdab901ac, 0xac83036e, + 0xa5afe60c, 0x87d4b900, 0x9d4fe603, 0x3cd4d100, 0xc0d3d103, 0xc4dcd101, + 0x5a4ce001, 0x4cf405b4, 0xf603ab5b, 0x8903a54f, 0xd289e8d0, 0xeede89ea, + 0xd1894007, 0x9b422bec, 0xa73e0743, 0xfddfffbe, 0xb4d5312b, 0x3c9b0114, + 0x0118b3d5, 0x1e2b202b, 0x011cb3d5, 0xa91921c8, 0xa903d8d3, 0x2b03d6d4, + 0x12402b30, 0xe8320732, 0xfa044c40, 0x27034f43, 0xc80027c0, 0xd3a91911, + 0xd4a903de, 0x3e2b03dc, 0x31124e2b, 0x40e83107, 0x43fa0543, 0x20270337, + 0x291e4027, 0xfeac5fe6, 0xad5e2027, 0xc0d4d1fe, 0xd141fc01, 0xff1e5efe, + 0x03d6dca9, 0x03d8d0a9, 0x44334607, 0xc42b042b, 0x40272027, 0xdfffeea7, + 0x50ecd5fd, 0x58e0d501, 0x44e2d501, 0x48e4d501, 0x2a6fe601, 0xa7302702, + 0xfddfff0e, 0x0364d4a9, 0x016403d5, 0x048942e0, 0xd1b98327, 0xfbc10387, + 0x50f1c564, 0xdf235ea7, 0x617807fd, 0x66369bb3, 0x50f2c1ac, 0xd4d12bc6, + 0xdad1033c, 0xd9d101c0, 0xd38901c4, 0xeed089e8, 0x99ead189, 0xd289f4de, + 0xf5dc99ec, 0xca5a4ce0, 0x5b4cf402, 0x4fe601c3, 0xff1e02a9, 0x3a9b4007, + 0x3013499b, 0x83004013, 0xb4313407, 0x54c5430b, 0x50f4c1a8, 0xb4014506, + 0x5405430b, 0xf7f88123, 0xd4b90176, 0xd1a9017d, 0x34070184, 0x4c834123, + 0xeed2a90f, 0x33333301, 0x9be02743, 0xf43e2321, 0x4e23fffe, 0x47fffef4, + 0xdfdcb901, 0x7cd8d501, 0x2cd3d503, 0x28d4d501, 0xfad08d01, 0x0100d2d5, + 0x0125debd, 0x0384dead, 0xbdf8d18d, 0xe60124de, 0xa70133cf, 0xfeffff4e, + 0x014143b9, 0x01263fe6, 0x017edea9, 0xffff4ea7, 0xa93e07df, 0xd502e4d2, + 0xd50114d4, 0x030110d4, 0x9323ee31, 0x7cd4b903, 0x27443801, 0x25d4bd41, + 0x14d3b901, 0x98d08902, 0x34234027, 0x69f8d289, 0xd5037bd1, 0xc50138d4, + 0xd4d5fcd4, 0xd4d50108, 0xd4d50104, 0xd4d5010c, 0x029b0130, 0x02bb1fe6, + 0xefe64007, 0xd4d502bb, 0xd0d50134, 0x0d07013c, 0xb9f2507e, 0x38036ed4, + 0xd4b90c4c, 0x4ff60387, 0x0d0702a4, 0xc1f5037e, 0x727e68f0, 0xbd4127f1, + 0xd10175d4, 0xc10150d3, 0x2c2748f4, 0x034b0112, 0x033b0544, 0xd1f2a834, + 0xb90188de, 0xd10187d1, 0xa90344d0, 0xb90374d2, 0xb90370d3, 0xb902e9db, + 0xa9017ddc, 0xd5017ed4, 0xbd0164de, 0x530176d1, 0xd5f743fe, 0xad0168d0, + 0xbd0170d2, 0xbd0178d3, 0xbd0179db, 0x190177dc, 0x274496e1, 0xe8d3b911, + 0x98d48902, 0x0386d0b9, 0x4433439b, 0x016cd4d5, 0x0154d2d1, 0xbd5cf4c1, + 0xbd0172d1, 0x27017ad0, 0x03410138, 0x03210544, 0x5ef3a824, 0xdab9f72a, + 0xb403036e, 0xac835403, 0xfe215e0c, 0x0180d4d1, 0x017edea9, 0x0114d4d5, + 0x0110d4d5, 0xe0fef45e, 0xfe42b44c, 0x010e4de0, 0x375e00ea, 0xdad3a9fe, + 0xfdd55e03, 0x412b4427, 0x043b0607, 0x27fae85e, 0x5ee127c1, 0xf353fad1, + 0x3101f6a0, 0xa9f9785e, 0xc50374dc, 0xa95e4cfc, 0xffeea7fa, 0xe411fd5f, + 0x15104ce3, 0xf6d95ee4, 0x455e7607, 0xf0d3a9fb, 0x2b442701, 0x07302b41, + 0x0bd49d0b, 0x30e2043b, 0x3007faf3, 0xb9faee5e, 0x2701ead4, 0x71d1b9e1, + 0x12d3a903, 0x18202702, 0x7b212744, 0x07230732, 0x70d3b946, 0x33210b03, + 0xc6242b44, 0xe3230334, 0x33400723, 0x33422b44, 0x004d8346, 0xa96ff603, + 0xc33507fb, 0x33318331, 0x9f5e103c, 0xc0d4d1fb, 0x45c12701, 0xf142fcfc, + 0xb0d8d1fa, 0xbcd4d103, 0x73970703, 0x9b949b91, 0xfb2e5e87, 0x0307c407, + 0x07fcb25e, 0x5e430724, 0xff1efcf4, 0xb2b44ce0, 0x0e4de001, 0x1e01fb01, + 0x9b4007f2, 0x5e499b3a, 0x1e3bfd5e, 0x31272c3b, 0x312b4127, 0x4f5e422b, + 0x3b4007fd, 0x5e4c3b3e, 0xfec1fd46, 0xc5eff654, 0x58f0c1f8, 0xf8be03f2, + 0xf3114307, 0x348d4103, 0x871fe6ea, 0x03420700, 0xf0c49d41, 0xa9f8a75e, + 0xc50374de, 0xa95e4cfe, 0x6cf4c1f9, 0xc1f7cf5e, 0x985ee0d8, 0x278f07f7, + 0x27150760, 0x27649641, 0x91b70740, 0x5bfe81fc, 0x2bc45bb4, 0x07c90bbe, + 0x2b61030b, 0x1bbcc20c, 0xfe3725be, 0x40070fab, 0x800d459b, 0x01234c0b, + 0x800d4b0a, 0x41038409, 0x8203840d, 0xa9c362c4, 0x090374d1, 0x7ed0a9f2, + 0x4cf1c501, 0x8d54f0c5, 0xf429e8d2, 0x03ead3a9, 0x03edd1b9, 0x5eeed48d, + 0xc499f6d6, 0x9d4103f2, 0x215ef2c4, 0x202100f8, 0x5e902722, 0x9507f6b4, + 0xad5e9153, 0x5e4027f6, 0x20a7fbb3, 0x27f5685e, 0xf9a95e00, 0xc55e2703, + 0xf64027fa, 0x27fd49ef, 0xfd445e00, 0xf09330a7, 0x1500c5c0, 0x7dd4b903, + 0x74d2a901, 0x23340703, 0x0f4c8341, 0x43333333, 0xfef43e23, 0xf44e23ff, + 0xd3c5fffe, 0xd4d4c5d8, 0xd0c524b6, 0x6cd1a9d4, 0xa6d08903, 0x89bed18d, + 0x0103bed3, 0x44272007, 0xd49d239b, 0x273387b0, 0xc0d38d48, 0x9dbcd28d, + 0x0303b1d4, 0x1cbe1427, 0xd389fe36, 0xa74027c0, 0xd17fff2e, 0x8dbad08d, + 0xd48db4d3, 0xd0d2c5dc, 0x8dc4d48d, 0xd48dc2d4, 0xcad48dc8, 0x8db6d48d, + 0xd38db8d4, 0xc6d48db2, 0x5eccd2c5, 0x4127fcce, 0x0124d4bd, 0x07fc685e, + 0xbe16070d, 0xb9fe0505, 0x83036eda, 0x695e0cac, 0xe8d089fb, 0x89ead289, + 0xd189eede, 0xa7202bec, 0xfddfff4e, 0x1e2b329b, 0x011443d5, 0x4c9b4107, + 0xdfffbea7, 0x18b4d5fd, 0x1cb4d501, 0xfaa65e01, 0xc153c407, 0xfc65c13b, + 0x00f5975e, 0x27222021, 0xf5845ea0, 0xa153a507, 0x27f57d5e, 0xfabc5e40, + 0xcea74027, 0x89fddfff, 0xde89e8d0, 0xead289ee, 0xd5ecd189, 0xd50114c4, + 0x2b0118c4, 0xd51e2b20, 0x5e011cc4, 0x4203fa60, 0x2405432b, 0x6e5e2115, + 0x68f0c1f4, 0x27eda87e, 0x0bf49b40, 0x270ef49b, 0x7e112705, 0x2ea7ee04, + 0x93fefdf3, 0x00c473fb, 0xb3012401, 0x432bb211, 0x20a7410c, 0x5ee120c8, + 0x0000f3f9, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x000149e1, 0x000149e6, 0x000149ee, 0x000149f6, + 0x000149fc, 0x00014a03, 0x00014a0e, 0x00014a17, 0x00014a20, 0x00014a24, + 0x00014a2a, 0x00014a34, 0x00014a3c, 0x00014a4a, 0x00014a57, 0x00014a5e, + 0x00014a6a, 0x00014a74, 0x00014a7f, 0x000149e1, 0x00014a8a, 0x00014a92, + 0x00014a9a, 0x00014abe, 0x00014a9e, 0x000149ee, 0x00014aa7, 0x00014ab1, + 0x00014abb, 0x00014ac5, 0x00014acf, 0x00014ad7, 0x00014ae0, 0x00014ae6, + 0x00014aed, 0x00014af3, 0x00014afe, 0x00014b08, 0x000149e1, 0x00014a8a, + 0x00014b0e, 0x00014b12, 0x00014b16, 0x00014a84, 0x00014abe, 0x00014b21, + 0x000149e1, 0x00014a8a, 0x00014b2f, 0x00014b38, 0x00014b41, 0x00014b45, + 0x00014b4c, 0x00014b54, 0x00014b5c, 0x00014b65, 0x00014b6f, 0x00014b7a, + 0x00014abe, 0x00014b84, 0x00014b8e, 0x00014b98, 0x00014ba1, 0x00014bab, + 0x00014bb2, 0x00014bbc, 0x00014b21, 0x00014bc9, 0x00014bd6, 0x00014bd9, + 0x00014be3, 0x000149e1, 0x00014a8a, 0x00014beb, 0x00014bf3, 0x00014abe, + 0x00014b21, 0x00014a84, 0x00014b5f, 0x00014c01, 0x00014bfb, 0x00014c0b, + 0x00014c1b, 0x00014c24, 0x00014c2c, 0x00014c34, 0x00014c3d, 0x00014c48, + 0x00014c55, 0x00014c62, 0x000149e1, 0x00014a8a, 0x00014c69, 0x00014c74, + 0x00014c7c, 0x00014abe, 0x00014b21, 0x00014c80, 0x00014c88, 0x00014c93, + 0x00014a84, 0x00014c9c, 0x00014ca8, 0x00014cb3, 0x00014cbd, 0x00014cc8, + 0x00014ccf, 0x00014cdd, 0x00014cec, 0x000149e1, 0x00014cf1, 0x00014bd9, + 0x00014cf6, 0x00014cfa, 0x00014d02, 0x00014d0a, 0x00014d14, 0x00014ab7, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, +}; +const int fw_jpegdec_size = 184192; + +int get_fw_jpegdec(unsigned char **data) +{ + *data = (unsigned char *)fw_jpegdec; + return fw_jpegdec_size; +} diff --git a/drivers/media/platform/canaan/vpu/fw_jpegenc.c b/drivers/media/platform/canaan/vpu/fw_jpegenc.c new file mode 100644 index 0000000000000..939fa4d67796d --- /dev/null +++ b/drivers/media/platform/canaan/vpu/fw_jpegenc.c @@ -0,0 +1,11613 @@ +// SPDX-License-Identifier: GPL-2.0-only +/* + * Copyright (c) 2024, Canaan Bright Sight Co., Ltd + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND + * CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, + * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, + * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + */ + +#include "mvx_firmware_cache.h" + +const unsigned int fw_jpegenc[] __aligned(0x1000) = { + 0x0000eb5e, 0x02020305, 0x33363635, 0x32303137, 0x69746f4d, 0x4a206e6f, + 0x20474550, 0x6f636e45, 0x00726564, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x4745504a, 0x20434e45, + 0x33346332, 0x31643430, 0x30703172, 0x6530302d, 0x00306361, 0x00000000, + 0x00043d00, 0x00045000, 0x00000015, 0x001f9b95, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00054000, 0x00005378, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x01a70d27, + 0x6ea7f07b, 0x53fdcfff, 0xa50207f0, 0x25012760, 0x25002760, 0x0ef09b60, + 0x4fff6ea7, 0x036101fd, 0xa3143311, 0x3861c510, 0xce3860c1, 0x1ea7f810, + 0x27ffffff, 0x07142131, 0x24169924, 0x96806c40, 0x806c2765, 0x2724169d, + 0x03302761, 0x27620e21, 0x0b510720, 0x66501952, 0xf042ce0b, 0x33273826, + 0x270d139d, 0x6a13bd31, 0x9b002704, 0x10990ef0, 0xff6ea70f, 0x0233fd4f, + 0x63c5600b, 0x9b302740, 0x6ea70ef3, 0xc5fd4fff, 0x0d273863, 0xf0e81000, + 0x1225871e, 0x501d0127, 0x070c1399, 0x9d310353, 0x32070c13, 0x9b182c33, + 0x21a304f2, 0xffff0ea7, 0x270205fe, 0x0ef29b20, 0x059d0315, 0x000d2708, + 0xcdf19302, 0x2d27046c, 0xf09b0400, 0x93f10706, 0x04473ff1, 0x0b361001, + 0x10050127, 0x4132f093, 0x2df39304, 0x03c2043e, 0x0331011e, 0x30ca803c, + 0x1df393f9, 0xf293043e, 0x01043818, 0x05240321, 0xca340331, 0x58bef630, + 0x00270002, 0xbe0bf09b, 0x27000280, 0x9b102701, 0xff8b06f0, 0x0000fd1e, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x01a70d27, 0x6ea7f07b, + 0x93feffff, 0x000213f1, 0x937f1ce3, 0x00020bf2, 0x05b66001, 0x9bfa21d2, + 0x1c030ff1, 0xe3f21e80, 0x04f09b01, 0x02000d27, 0x8bcef193, 0x012d2704, + 0x06f09b20, 0x22bef107, 0xff8b0069, 0x0000fd1e, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x01a70d27, 0x6ea7f07b, 0x93feffff, 0x000193f1, 0x937f1ce3, 0x00032df2, + 0x05b66001, 0x9bfa21d2, 0x1c030ff1, 0xe3f21e80, 0x04f09b01, 0x02000d27, + 0xbacef193, 0x022d2704, 0x06f09b20, 0x61bef107, 0xff8b0001, 0x0000fd1e, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x01a70d27, 0x6ea7f07b, 0x93feffff, 0x0002b5f1, + 0x937f1ce3, 0x0004acf2, 0x05b66001, 0x9bfa21d2, 0x1c030ff1, 0xe3f21e80, + 0x04f09b01, 0x02000d27, 0xd2cef193, 0x032d2704, 0x06f09b20, 0x83bef107, + 0xff8b0002, 0x0000fd1e, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x01a70d27, 0x6ea7f07b, + 0x93feffff, 0x000434f1, 0x937f1ce3, 0x00050cf2, 0x05b66001, 0x9bfa21d2, + 0x1c030ff1, 0xe3f21e80, 0x04f09b01, 0x02000d27, 0xf7cef193, 0x042d2704, + 0x06f09b20, 0x02bef107, 0xff8b0004, 0xf09bfd1e, 0x07fe0b06, 0x4efe0b0f, + 0x25fd93f5, 0xd0010000, 0xf08b0506, 0xf71ed403, 0xf54ef58e, 0x0016fd93, + 0x06d00100, 0x03f08b05, 0x8ef71ed4, 0x000000f5, 0x00000000, 0x00000000, + 0xf3abfe4e, 0xabc2f493, 0xbef41b00, 0x930041bb, 0x044187f0, 0xedbe1027, + 0xfe0e0030, 0x0066a69e, 0xf493fa4e, 0x1b00ae00, 0xff3ea7f4, 0x4d27fd7f, + 0x34250202, 0xf2ab3415, 0xf0eb0127, 0xffff1ea7, 0x184d27eb, 0x27140501, + 0x4000003f, 0x27131502, 0x14c5214c, 0xa720275c, 0xfefddb1e, 0xfe931215, + 0x1504b920, 0xd3cea7e2, 0xc215fefd, 0xb91afb93, 0xa7b21504, 0xfefdcb3e, + 0xfa933225, 0x1504b914, 0xff4ea7a2, 0x40c5e7ff, 0x05120550, 0x05c205e2, + 0x153205b2, 0x01fd9332, 0xa20504b9, 0x01d8d2d5, 0x01dcd2d5, 0xa70ef29b, + 0xfdcfff3e, 0xfe52f493, 0x3534b5ff, 0x93323530, 0xfffec7f4, 0x453034c5, + 0xa7324530, 0xfddfff1e, 0x14c54727, 0x5412c550, 0x20004d27, 0x275814c5, + 0xc540003d, 0x0ea75c13, 0x27f3ffff, 0x5404c548, 0xffff1ea7, 0x91fe93fe, + 0x02c50269, 0xa7402754, 0xfefdbf3e, 0x077fece3, 0x6414adc1, 0x78d3d519, + 0x48c4d101, 0xc0362701, 0xeff41843, 0x00028bb4, 0xfe9b00a5, 0x48c4d10f, + 0x80ec0301, 0x43c43627, 0x974ea7ea, 0x2027fef6, 0x0148c0d1, 0xad09429d, + 0xa70142c2, 0x7cd4d510, 0x9d302701, 0x41450443, 0x3505429d, 0x0a429d41, + 0x429d426d, 0x1103c008, 0xffff2ea7, 0xe84627fe, 0x4823d1f4, 0xf633c401, + 0xffff4ea7, 0x09f393ff, 0x42d104b9, 0x13070458, 0xa7971c03, 0xfef6974e, + 0x1ce34205, 0x7f3ce37f, 0x3c033419, 0xf931c280, 0x93262c27, 0x04b8e3f3, + 0x42071027, 0x21233105, 0xf4b83403, 0xe6674ea7, 0xedf093fe, 0xd2c504b7, + 0xf4d4c568, 0xbe6cd2c5, 0x1e027375, 0x5ef3e8ff, 0xfa4eff49, 0xce3af393, + 0x48f29304, 0x3ce304d5, 0x7f2ce37f, 0x3c033419, 0xf932c280, 0xacbaf493, + 0xa7f41b00, 0xfd6fff3e, 0x42024d27, 0x34153425, 0x4127f2ab, 0xf093f4eb, + 0x2704d018, 0xa7e00730, 0xebffff4e, 0xf2934335, 0x9304cff8, 0x04cffbf1, + 0x01cfed03, 0x13152315, 0x13052305, 0xe37fece3, 0x04197f0c, 0xc2800c03, + 0xf393f90e, 0x2704cfe4, 0x744c2720, 0x34033205, 0xfd93f4c8, 0x0704d1a4, + 0x7fdd033d, 0xe32d0702, 0x2ce37f3c, 0x7fdd237f, 0x03341902, 0x32c2803c, + 0xa0ac27f9, 0xd182f393, 0x07202704, 0x2332054a, 0xb83403a1, 0xf1fe93f4, + 0xb42704d3, 0xc127eb1d, 0xdcc5e227, 0xd5c327a0, 0xd50140de, 0x9301e0dc, + 0x04d163f0, 0x2a271827, 0x0c003d27, 0xda054927, 0x00667bbe, 0xd196f093, + 0x27142704, 0x3d272c2c, 0x48271800, 0x006667be, 0xf01fcea7, 0xd5f093ff, + 0x192704d1, 0x3d272b27, 0x49270e00, 0xc54cdcc5, 0x49be94da, 0xf0930066, + 0x2704d204, 0x2d2c2715, 0x19003d27, 0xdcc54827, 0x34dad5ec, 0x662ebe01, + 0x41f09300, 0x1a2704d2, 0x270c2c27, 0x2710003d, 0x661abe49, 0xcdf09300, + 0x1b2704d2, 0x270d2c27, 0x2712003d, 0x6606be49, 0x61f09300, 0x162704d2, + 0x272e2c27, 0x271a003d, 0x65f2be48, 0x2f2c2700, 0x1b003d27, 0xf0934827, + 0x2704d2e4, 0x65debe17, 0x7f4ea700, 0xdcd5fee7, 0xdad5018c, 0x3ea70274, + 0x19fee6ff, 0x93341942, 0x04d313fe, 0x3ea74027, 0x27fee73f, 0xe49d26dc, + 0x38eac586, 0xc598eac5, 0xeac59cea, 0x3ceac5ac, 0xc530eac5, 0xe3c534ea, + 0x072027a0, 0x2332054d, 0xb83403d1, 0xff2ea7f4, 0x1027feff, 0x196c21ad, + 0x24bd4027, 0x3ea70214, 0xa7fee65b, 0xfee73f4e, 0x196621ad, 0xf0934355, + 0xa704d2bc, 0xfefa2b4e, 0x196821ad, 0xd5a4e4c5, 0x0e18bc2d, 0x85b69efa, + 0xa3fd4e03, 0x69f493f4, 0xf41b00ab, 0x5fff3ea7, 0x024d27fd, 0xb1fd9382, + 0x342504f3, 0xdc032d07, 0x07341597, 0x7f2ce33d, 0x237f3ce3, 0x241997dc, + 0xc2802c03, 0xec27f923, 0x8df39326, 0x202704f3, 0x32054e07, 0x3403e123, + 0x2ea7f4b8, 0x05fdeb9f, 0x004f272e, 0x15050300, 0x65f19324, 0x3ea704f3, + 0x55fee64f, 0x051e15d3, 0x9b40271e, 0xf3ab0ef4, 0xf2eb2127, 0xdfff4ea7, + 0xc44ec5fd, 0x27c84ec5, 0xc520003d, 0x42d5cc43, 0x3ea7015c, 0xd5feffff, + 0xa719603e, 0xe7ffff4e, 0x40274e35, 0x04d0d4bd, 0x4f073027, 0xf322f093, + 0xd2d38d04, 0x0100dead, 0x0108d4d5, 0x04c8ded5, 0x04ccded5, 0x04d8ded5, + 0x0520ded5, 0x8dd4de8d, 0xde8dd6de, 0xdade8dd8, 0x8df8de8d, 0xde8dfade, + 0x2e4ebefc, 0x8ef48304, 0x000000fd, 0x660ef493, 0xc0400104, 0x01211d0f, + 0x41270f00, 0x2b690f00, 0x40270001, 0xfe0b0407, 0xfe0b0127, 0xd007fb4e, + 0x08c6db3e, 0xe68b2ea7, 0x082499fe, 0x93524dce, 0x052907f1, 0x4fff4ea7, + 0x9d4311fd, 0x1199082d, 0x9d230544, 0xfb8e0921, 0x65caf493, 0x29406904, + 0x7feea742, 0x4309fee6, 0x0b08e199, 0x21032b02, 0xce4b494c, 0x4ea72b1d, + 0x11fd4fff, 0x7f3ea742, 0x3205fee6, 0x9d083d9d, 0x304d093c, 0xfb8e3b6d, + 0x28b6f193, 0x09239905, 0xce4414c1, 0xfb8ea743, 0xce09e499, 0xe449d1c4, + 0x69cc40ce, 0xc7b4cee4, 0x3ea7dd1e, 0x99feffff, 0x1ea70934, 0x83ffffff, + 0x87410343, 0x5012d134, 0x2b443304, 0x4843f143, 0x56ff0000, 0x5c14d12a, + 0xc2012704, 0xf1ab2834, 0x23873127, 0x31c038a6, 0xbc34f921, 0x03ff0119, + 0xf1478631, 0x02300024, 0x1244d8ff, 0x83e435d0, 0x0bf1eb01, 0x1e0027fe, + 0x1e3103d6, 0xeb0027d6, 0x4efe0bf1, 0x51f093fa, 0xd8be0088, 0xf0930070, + 0xbe008851, 0xa70070cf, 0xfffbf34e, 0xf0934249, 0x07008866, 0x0cac33a2, + 0x070c1c27, 0x70b5be3a, 0xedbea700, 0xdc27fffb, 0x07b2090d, 0x3bc2071d, + 0x43f093cd, 0x3c070088, 0x98beb203, 0xac0b0070, 0xbfc4d103, 0xff000430, + 0xf3cea7e1, 0xc189fffb, 0x48f09332, 0x7cbe0088, 0xc1a10070, 0x2107c3b1, + 0xf0934a07, 0x2b00884f, 0x9efa0e2a, 0x4e007067, 0x7a44befe, 0xff3ea700, + 0x3411feff, 0x886cf093, 0xf1448700, 0x000fb841, 0x7049beff, 0x5efe0e00, + 0xfe4eff63, 0xebef2ea7, 0x053027fd, 0x004e2723, 0x24150500, 0xf39be107, + 0xff3ea70e, 0x3411fdef, 0x33240c03, 0x4c53184c, 0x24ec031d, 0x071244c4, + 0xe8432723, 0x332311f4, 0x3c53183c, 0xf234c01d, 0xe7ff3ea7, 0x273005fd, + 0x1508bc1d, 0x35202731, 0xef4ea732, 0x4e05fde7, 0x3ea74115, 0x35fdefff, + 0x33345142, 0x4c53184c, 0x1244c41d, 0x43272307, 0x2351f4e8, 0x53183c33, + 0x34c01d3c, 0xbf4ea7f2, 0x0d03fde7, 0x400508bc, 0x08bc2d27, 0x30274215, + 0xe20b4335, 0xe7af4ea7, 0x154e05fd, 0x8e433542, 0xe9f493fe, 0x40010526, + 0xffff1ea7, 0xff545eff, 0xdea7fc4e, 0x27ffffff, 0xd1102702, 0xbe0450dc, + 0xb900bc0c, 0x270c38d4, 0x27c48631, 0x8b415330, 0x8b41c330, 0x2744c643, + 0xa7fc8e01, 0xfd4fff4e, 0x00274201, 0xf49b4027, 0x9911270e, 0x123b0ed3, + 0x3ea713cb, 0x38fd4fbf, 0x05412711, 0x03115334, 0x8e12d634, 0xf1f193fc, + 0x13010573, 0x937f0c03, 0x0573e3f4, 0x0b7f0ce3, 0x05420103, 0x0b030710, + 0x4efe0b02, 0xff3ea7fe, 0x4027ffff, 0xbd0d3299, 0x10046a34, 0x87202724, + 0x3841f142, 0x270000c0, 0x723f9e01, 0xa7fd4e00, 0xfd4fff3e, 0x07683dc1, + 0x0f4de34d, 0x004fc4f0, 0x4d566301, 0xd87434c1, 0x0100004e, 0xff2ea772, + 0x21a1d07f, 0x4c5324a1, 0x0f4c830c, 0x0f0f4cc0, 0x22a124a1, 0x2c832853, + 0x0923d40f, 0x24a1fd8e, 0xfd8e23a1, 0x0fff1d83, 0x87adf093, 0x27322700, + 0x6ea9be42, 0x93042700, 0x0087d7f1, 0x0071dc9e, 0x86caf093, 0x6e95be00, + 0xecf09300, 0x1f270086, 0x56637102, 0x006e86be, 0xf0931d07, 0xbe008701, + 0x27006e7b, 0x1cf19304, 0xae9e0087, 0x04270071, 0x8742f193, 0x71a39e00, + 0x23fa4e00, 0xd2f093f5, 0x58be0087, 0xf093006e, 0xbe0087e2, 0x93006e4f, + 0x052724fb, 0xfe72dea7, 0x1ea027ff, 0x03a1030d, 0xdc0310bc, 0x10acc014, + 0x23ed0762, 0xd8ec01e1, 0x030000ce, 0x19b059e9, 0x19b123b3, 0x99b103b4, + 0xb19908b2, 0x15f20509, 0x39e201f1, 0x122c53be, 0xf2252183, 0xcc53d119, + 0xc1f13510, 0xf05507d2, 0xf2450e3b, 0xdec1f065, 0x072c070b, 0x9323831a, + 0x0087c2f0, 0xa103c027, 0xfc85fe75, 0xbe10bc03, 0x03006ddb, 0xacc414dc, + 0xf093a010, 0xbe0087df, 0xa7006dcb, 0xffffffce, 0x0100c1b9, 0x93fcc2c1, + 0x0087def0, 0x006db6be, 0x87ebf093, 0x6dadbe00, 0xfcc1c100, 0x0100cab9, + 0xa1e2a10b, 0xd10700d0, 0xf900af5e, 0x00007c10, 0xa00fe6ff, 0x33320700, + 0x2b228734, 0x33430732, 0x07430b43, 0xf9e333e4, 0x00007f13, 0x8312f9ff, + 0x0bff0000, 0xd0ef03e4, 0x99000552, 0xf21507e4, 0xe399f305, 0x25200705, + 0x38e3c1f3, 0xe199f335, 0x453c0768, 0x69e099f1, 0xf0551d07, 0x936aec99, + 0x0087baf0, 0xeb99fc65, 0x99fb756b, 0xfc856cec, 0x956deb99, 0x6eec99fb, + 0xeb99fca5, 0x99fbb56f, 0xfcc570ec, 0x71eb9930, 0x9934fbc5, 0xfcc572ec, + 0x73eb9938, 0x993cfbc5, 0xfcc574ec, 0x75eb9940, 0x9944fbc5, 0xfcc576ec, + 0x77eb9948, 0xbe4cfbc5, 0x03006cf3, 0x1dadced1, 0x2c832d07, 0x3312070f, + 0x7e1cf913, 0xe6ff0000, 0xf9ff42cf, 0x00007c10, 0xff435eff, 0xfa8ef503, + 0xfc93fc4e, 0xc1057180, 0xc1c13cce, 0x34c2c130, 0x8940c389, 0xf06342c4, + 0xf093fe05, 0xbe008794, 0x93006cab, 0x0087d6f0, 0x006ca2be, 0xc311c219, + 0x87e9f093, 0xbe102700, 0x03006c93, 0xd1270ccc, 0xc311c219, 0xf0931d07, + 0x030087d3, 0x6c7dbed1, 0x0ccc0300, 0x93ead4c4, 0x0087d5f0, 0xfc0ef043, + 0x006c6a9e, 0xf093fe4e, 0xbe0087e5, 0xbe006c5f, 0x7e00786f, 0xf27efbf3, + 0x1efe0efd, 0x99fb4e84, 0xd1271004, 0x03c14153, 0x07b10738, 0xabd43bc2, + 0x6bbf6bd3, 0x271027cf, 0x4127112c, 0x4d8b413b, 0x4d861103, 0x07680499, + 0x03e433e4, 0x054260ef, 0xff4cc000, 0x84e3b915, 0x85e4b901, 0x2b3b2b01, + 0x85e4bd4c, 0x84e3bd01, 0x69049901, 0xe433e407, 0x4260ef03, 0x4cc00005, + 0xe3b915ff, 0xe4b90184, 0x3b2b0185, 0xe4bd4c2b, 0xe3bd0185, 0x02030184, + 0x8ea8f2f0, 0x07fc4efb, 0x0fdc83d0, 0x0ea7cd07, 0x33ffffdf, 0x7073bec3, + 0x7cc2f900, 0xdcff0000, 0x072d102c, 0x333d874d, 0x07432b44, 0x0b033304, + 0x07300704, 0x0b333342, 0x104ca303, 0x007cc4fd, 0x0f03ff00, 0x000552d0, + 0x20271127, 0xa7ff407e, 0xffffdf0e, 0x007011be, 0xffff4ea7, 0x0e4199ff, + 0xfb9d0ea7, 0x9efc0eff, 0x4e0073a4, 0x07c107fb, 0x27b207d0, 0x6b102702, + 0xb7eabebf, 0x07c59600, 0xf64b8b40, 0x8e00b14f, 0xfcc2c4fb, 0x015ff393, + 0x95f49301, 0xf1930522, 0x05057040, 0x07202743, 0x464c2731, 0x34033205, + 0x4c27f4c8, 0x483c2770, 0xc50c148d, 0x20a7d013, 0x70f6f393, 0x05482705, + 0xc8340332, 0x09f393f4, 0x00a70571, 0x48272827, 0x21233005, 0xf4b83403, + 0x2256fc93, 0x07f49305, 0xf3930103, 0x15057000, 0x270c0714, 0xc51225b1, + 0x66be50c3, 0xcb9d0100, 0x0046be05, 0x9d402701, 0xc49d0dcb, 0x1d422704, + 0xff3ea7d4, 0x3201fd4f, 0xf49b4027, 0xff3ea70e, 0x3499ffff, 0x3b31270e, + 0xa734cb32, 0xfd4fbf2e, 0x41273138, 0x31532405, 0x32d62403, 0xfc93fb8e, + 0x990521f8, 0x46f605c4, 0xd21d2027, 0xffff3ea7, 0xad4027ff, 0xbd119a34, + 0x8e119832, 0xf89e7efb, 0x0c070706, 0x00fffcbe, 0xc605c499, 0xd9bedb4f, + 0xe5be00ff, 0xd11e00b6, 0x00ffe4be, 0x00b6dbbe, 0x0f6be11e, 0x34333007, + 0x302b0087, 0x8fc43f03, 0x34190005, 0x270941c4, 0x1d012742, 0x27fe0b34, + 0x0bfe0b00, 0x07fc4efe, 0x76fcabd0, 0xff3ea7cb, 0x34c1ffff, 0x154dc2fc, + 0x663fdc27, 0xdf0ea7c5, 0xabbeffff, 0xfceb006e, 0xfc8e0d07, 0x010033b9, + 0x34d24d1b, 0x0fdc830e, 0xddf9d333, 0xff00007c, 0xd027da1e, 0x0ea7d61e, + 0xbeffffdf, 0x1e006ea5, 0xff4ea7bd, 0x41b9ffff, 0x40c10100, 0x071926fc, + 0x0f3c8330, 0x34f93333, 0xff00007e, 0x21074756, 0x01034027, 0x007c34fd, + 0x3007ff00, 0x330f3c83, 0xf0112333, 0x4ea70ff2, 0xbdffffff, 0xc5010041, + 0xfe0bfc40, 0x007e34f9, 0x4fc6ff00, 0xff4ea7d4, 0x41bdffff, 0x40c50100, + 0x27fe0bfc, 0xa7fe0b00, 0xfffbf34e, 0x0ea74149, 0x33fffbed, 0x2c270c1c, + 0x0f3c270d, 0x02030409, 0x140b423b, 0xf3982103, 0xfbf34ea7, 0x2b40a1ff, + 0x93fe0b01, 0x05207ff4, 0x0b144099, 0x07fd4efe, 0x271007d0, 0xf0934c2c, + 0xbe05232c, 0x0600636d, 0x930d0708, 0x05231ff3, 0x01134c27, 0x05040302, + 0xa8340332, 0x933127f4, 0x052087f4, 0x8e0a439d, 0x07f94efd, 0x23c107a0, + 0x114714ac, 0x13091a0b, 0x0999d007, 0x073e6624, 0x2340070c, 0x493b0c4c, + 0x3123d201, 0xe20be487, 0x4e0b4387, 0x4b01130d, 0x27320cc2, 0x47493b44, + 0x07300720, 0x0722231e, 0x23e007d4, 0x0b142b31, 0x2bd0132a, 0x413ccaec, + 0x41270123, 0x4b0b403b, 0x230d3127, 0x22231405, 0xfe581d0b, 0xf98e0b07, + 0x41034c07, 0xec272447, 0x0b0c071c, 0xd4ec2b2a, 0x071a1d4c, 0x03010312, + 0x07fef022, 0x0b07b027, 0x1309f98e, 0x8a1e31e6, 0xbd1ee127, 0xe41ee127, + 0xf0930230, 0x0b008433, 0xddf393fe, 0x4027051f, 0x275d309d, 0x6034c500, + 0x0230fe0b, 0x843ff093, 0x93fe0b00, 0x051f87f3, 0x341d4027, 0x412704c6, + 0x0027341d, 0x4ea7fe0b, 0xd5ffffff, 0x860c3c40, 0xff1ea708, 0x1341fdaf, + 0x9fff2ea7, 0x05300bfd, 0x27242113, 0x104ce300, 0x23112425, 0x15103ca3, + 0xa7fe0b23, 0xfd9fff3e, 0x00273411, 0x15104ce3, 0x93fe0b34, 0x051f73f4, + 0x536840c5, 0xa7018307, 0xffffff4e, 0x2745409d, 0x07fe0b00, 0xd0412340, + 0x04c01442, 0x0e08c011, 0x20100c40, 0xf093200c, 0x0b0083e2, 0x41f393fe, + 0x3499051f, 0x36408b56, 0xf3f09345, 0xfe0b0083, 0x2754309d, 0xa7fe0b00, + 0xfffbf33e, 0x0e3434c1, 0x3430c504, 0xfe0b0027, 0x03490469, 0x202043ce, + 0x24f09338, 0xfe0b0084, 0x1ecaf493, 0x17439d05, 0x31272827, 0x439d0027, + 0x16429d15, 0xf093fe0b, 0x0b0083d6, 0x234007fe, 0x93423041, 0x00842cf0, + 0xf393fe0b, 0x9d051ea0, 0x41271930, 0x349d0027, 0x93fe0b18, 0x051e8ff3, + 0x26183499, 0x19309945, 0xfe0b0240, 0x04c40783, 0x101c83f8, 0x14d60127, + 0xfe0b0313, 0x03130027, 0x0e10f91e, 0x27010000, 0x93ffff0d, 0x051e5ff4, + 0x00274015, 0x0230fe0b, 0x840bf093, 0x93fe0b00, 0x051e4bf4, 0x0027403d, + 0x0411fe0b, 0x45760321, 0xf0933606, 0x0b008442, 0x14f093fe, 0xfe0b0084, + 0x1e2af493, 0x45002705, 0x0b433543, 0x4ef093fe, 0xfe0b0084, 0x8467f093, + 0x93fe0b00, 0x051e0ff4, 0xfe0b4059, 0x847af093, 0x30fe0b00, 0x9af09304, + 0xfe0b0084, 0x1df6f393, 0x9d412705, 0x00271b30, 0x0b1a349d, 0x930230fe, + 0x0084a5f0, 0x3127fe0b, 0x30270496, 0xffff4ea7, 0xbd0027ff, 0x0b0fb443, + 0xe3f54efe, 0x58f0c5f6, 0x27240299, 0x3b4f0731, 0x03e00732, 0xf2c5404c, + 0x4cf3c554, 0x235cf1c5, 0x2f0714ec, 0x2768f4c5, 0x4027103c, 0x24032405, + 0xf3c1f3b8, 0x2320274c, 0xc54a2731, 0xf2c540fe, 0x0d6c2748, 0xc560f3c5, + 0xf2c164f4, 0x1a238940, 0xc5182789, 0x72f050f3, 0xf4c100b1, 0xaa34ee4c, + 0x54f2c100, 0x4c234607, 0xc1423b0d, 0x048758f2, 0x030b2301, 0x01007fe6, + 0xc150f4c1, 0x24e260f2, 0x46070103, 0x2354f2c1, 0x423b0c4c, 0x2350f2c1, + 0x87420b61, 0x0b812754, 0x3b302753, 0x03a20786, 0xc5100761, 0x902744f3, + 0x0201c707, 0x42073f07, 0x4c83465b, 0x0bd4870f, 0x0734013d, 0xe6e48be8, + 0x0700854f, 0xd63207b4, 0x073407e4, 0x0b4307b2, 0x774bce48, 0x14031205, + 0x91030403, 0x0748fcf0, 0x4634013f, 0x27140545, 0x05140340, 0x68f2c134, + 0x32ce3403, 0x5cf3c1ed, 0xc16936ce, 0xf3c144f4, 0x8d471b40, 0x3a8d1834, + 0x40f4c11a, 0x0364f2c1, 0xc5212342, 0xf2c540f4, 0xf6610364, 0xc1ff2d2f, + 0xf6c348f0, 0xf4c1f58e, 0x7fa4ea60, 0x074907ff, 0x2b410337, 0x5874ca39, + 0x02017ee6, 0x12050403, 0xf3a81403, 0x32059a1e, 0xf2c18f1e, 0x054f0744, + 0x03d40b53, 0x03402722, 0xc5a10354, 0xd40544f2, 0xc1ff775e, 0x412750f2, + 0xf4c52a2e, 0x278d1e48, 0x48f4c540, 0xfac1861e, 0x07302750, 0x44f3c510, + 0xc1ff5e5e, 0x902750fa, 0xf9c51007, 0x279f1e44, 0x0ba81e31, 0x07fc4efe, + 0xfb277ec0, 0x0c0e4127, 0x04074027, 0xfc4efc8e, 0xcf03c007, 0x03ffffff, + 0x0000cf83, 0x1c07fc00, 0x3c272027, 0x68d1be16, 0xf34ea700, 0x3027fffb, + 0xc5404cc5, 0x40c53c43, 0x4efc8e38, 0x23d007fa, 0xc24714dc, 0xdc03cd0b, + 0x24de9914, 0x4127c009, 0xb0074e3b, 0x4223b30b, 0xd301a307, 0x0127b432, + 0x2c23fa8e, 0x0b2e3b0c, 0x0b008702, 0xbe2a8703, 0x27005eea, 0x0d002741, + 0x31d49dcb, 0xf74efa8e, 0x27240399, 0x63433b41, 0x018407f0, 0x0570070b, + 0x33d107f1, 0x07948783, 0x49a027c0, 0x070d07c2, 0x0322871b, 0x5eb4bea1, + 0x0bb90b00, 0xc4c203d8, 0x99e910ac, 0x7c012474, 0x4103d407, 0x0124749d, + 0x05d603f4, 0x07070774, 0x272d071f, 0x7efc0531, 0x0596ff6b, 0x412773b1, + 0x340b4d3b, 0xf04373b5, 0xfe0bf78e, 0x4ea7fd4e, 0xb9ffffff, 0x070fb443, + 0x76df6bd0, 0x6df49337, 0x3d270433, 0x242707d4, 0x43050407, 0x4d254215, + 0xb79efd0e, 0xf093005f, 0xbe008217, 0x1e006407, 0x000000dd, 0x00000012, + 0x00000032, 0x00000030, 0x00054242, 0x3ea7f54e, 0x99ffffff, 0x4fe62734, + 0xf7930378, 0x99051b34, 0x4ff60874, 0x30d1036c, 0x38d10458, 0x34a9045c, + 0x33a90102, 0x802b0104, 0xe3071407, 0x20078f46, 0x32072183, 0x36334287, + 0x320b342b, 0x44334307, 0x420b432b, 0xfb944e23, 0x7042a9ff, 0x7243a903, + 0x071e2b03, 0xab320be1, 0x8b3e2bef, 0x1431ec3f, 0x03180703, 0x83400701, + 0x87340741, 0x2b363324, 0x07340b32, 0x2b243323, 0x23240b23, 0xfffb942e, + 0xf1f88123, 0x4ea702dd, 0xd5ffffff, 0x27045840, 0x71f69380, 0x5027051a, + 0xffff9ea7, 0x5c9ad1ff, 0x834a0704, 0x87340741, 0x2b363324, 0x07340b32, + 0x2bb433b3, 0x07b40bb3, 0xb19abdcb, 0x230a070f, 0xfffb94ce, 0x00f8c6be, + 0x02e704f8, 0x4c834a07, 0x3324070f, 0x2b448724, 0x33320724, 0x07320b33, + 0x0bd333d3, 0xd0df03d3, 0x99000552, 0x4ce004d4, 0xc102fe10, 0x41e030d4, + 0x93b90321, 0x74d10c45, 0x432b0f20, 0x4f4b4223, 0x033241ec, 0xfedef153, + 0x2d073b07, 0x3e231401, 0x03fffa90, 0x2101b02c, 0x31052403, 0xf4a83403, + 0x4227d301, 0x3127c305, 0x038dc4bd, 0x038ec3bd, 0x99a8d4c1, 0xd38917d1, + 0xecc4d52c, 0x34d4c102, 0x0385c1bd, 0xfea2f153, 0x037ac3ad, 0x030cc4d5, + 0x3d072c07, 0x2d031401, 0x3c03020c, 0x033101f8, 0x03210534, 0xd1f4a824, + 0x0701c0d3, 0xd4c3d54d, 0x033c0702, 0x0302d83d, 0x2701c44d, 0x03410124, + 0x03310544, 0x09f2a834, 0x0d0c0744, 0x44d3c134, 0xd5402c27, 0x9902f0c3, + 0x0d0307d4, 0xc4bd032c, 0xd1c10388, 0x10c1d530, 0xc2d3b903, 0x8cc3bd03, + 0x2ed48903, 0xad4cd3c1, 0x890370c4, 0xc3d526d1, 0xc1ad02f4, 0xd489036c, + 0xad1d0728, 0x03036ec4, 0xdfbe681c, 0x71c100ae, 0x073c073c, 0x04c1d54d, + 0x03340303, 0x2701d84d, 0x4101402c, 0x31054403, 0xf2a83403, 0x0398d3a9, + 0xc3ad6449, 0xc4ad0374, 0x4ff60376, 0xd3a9017a, 0xf153039c, 0xc3adfde0, + 0x2c070378, 0x14013d07, 0x014c2d03, 0x02d83d03, 0x34033101, 0x24032105, + 0xd4b9f4a8, 0x302703aa, 0x31274486, 0xbd5074c1, 0x99037ec3, 0xc4bd5444, + 0xd3b9037f, 0xc3bd03a0, 0xd4b90380, 0xc4bd03a1, 0xd1d10381, 0xc1d503a4, + 0xd3b90328, 0xc3bd03a8, 0xd4b90382, 0xc4bd03ab, 0xd1d10383, 0xc1d503b4, + 0xd3d10320, 0xc3d503b8, 0xd4c10324, 0xf8c4d550, 0x54d1c102, 0x02fcc1d5, + 0xd558d3c1, 0xb90300c3, 0xbd03bcd4, 0x990384c4, 0xc1bd18d1, 0xd3990389, + 0x86c3bd05, 0xc1d4b903, 0x87c4bd03, 0x38d1c103, 0x0314c1d5, 0x03bed3b9, + 0x038fc3bd, 0x03bdd4b9, 0x0390c4bd, 0xe61c6499, 0x5300db4f, 0x01fd23f1, + 0xc4d3d114, 0x08c4d503, 0x18c3d503, 0x1b649903, 0x038ac4bd, 0x03c0d1b9, + 0x038bc1bd, 0x03c8d3b9, 0x4fff1ea7, 0x92c3bdfd, 0x89121103, 0x94d14871, + 0x73d10450, 0xc1ad0f20, 0xd1b90372, 0x410303c9, 0x94d53103, 0xc1bd0450, + 0x40270393, 0x0f8893d5, 0x0fb094bd, 0x0fa892d5, 0x0f2073d5, 0x41034a07, + 0x045c94d5, 0xf39b3027, 0x2ed4890e, 0xa7487389, 0xfffb9f0e, 0x748d430b, + 0xbe810348, 0x2700683b, 0x4282f051, 0x1ed127fd, 0x7223a922, 0x7024a903, + 0x2b430b03, 0xe84f8b4e, 0xa7fcf241, 0xffffff4e, 0x045840d5, 0xfd1381e0, + 0x0d07d027, 0x7489f58e, 0x74c4ad58, 0x58748903, 0x4fab4103, 0xa958748d, + 0xee0376c3, 0x27fe7143, 0x9df19340, 0x148d0517, 0xfe645e58, 0x2a5e4027, + 0x271527ff, 0xff4ea725, 0x7789fd4f, 0xad431148, 0xa70372c7, 0xffffff4e, + 0x0fa843d5, 0x0fb042bd, 0x13c4d507, 0xff3ea7ae, 0x34d1ffff, 0x0ea7045c, + 0x03fffb9f, 0x5c34d541, 0x67a5be04, 0xd1941e00, 0x16045094, 0x04749948, + 0x1746fd93, 0x1442dc05, 0x127e0a07, 0x04d499f4, 0x42a31227, 0xd49d2227, + 0x270b1e04, 0x1e272717, 0x2713279d, 0xff4ea723, 0x7789fd4f, 0xad431148, + 0xa70372c7, 0xffffff4e, 0x43d5d127, 0x42bd0fa8, 0x971e0fb0, 0x070c1c27, + 0xff735e21, 0x1cd0fe4e, 0x04411920, 0x04514826, 0x04894906, 0x2749d61a, + 0x3af19306, 0xca9e007e, 0x06270062, 0x7da7f193, 0x62bf9e00, 0x93062700, + 0x007dcff1, 0x0062b49e, 0xf1930627, 0x9e007df0, 0x270062a9, 0x37f19306, + 0x9e9e007e, 0xfe4e0062, 0x5f0c0cc4, 0x13111401, 0x4a261021, 0x073a44c0, + 0xe84d2343, 0x194fd403, 0x523b9ac6, 0x24d11301, 0x23c50108, 0xa31311e4, + 0x0000004f, 0xe823c510, 0x24d51121, 0x21c50108, 0x26fe8eec, 0x93042730, + 0x007e54f1, 0x0062549e, 0x4d234007, 0x4f1403e8, 0x3b9ac619, 0x27b930c2, + 0x75f19304, 0x3a9e007e, 0x06270062, 0x7e07f193, 0x622f9e00, 0x93042700, + 0x007e89f1, 0x0062249e, 0x3007fe4e, 0x011d14d0, 0x274a4004, 0xbef19306, + 0x0e9e007e, 0x01070062, 0x04231307, 0xfe0e1403, 0x27ff655e, 0x85f19306, + 0xf69e007e, 0xfe4e0061, 0xec03e007, 0x870d0354, 0x07200701, 0x7f2ce33e, + 0x01870d23, 0x197f3ce3, 0x803c0334, 0x07f932c2, 0x2741073e, 0x4e014d2c, + 0x3e054403, 0xf2a83403, 0x015f04b9, 0x4a264183, 0x010812d1, 0x010c14d1, + 0x3f833207, 0x03ffffff, 0xd50f4ce3, 0xd5010c14, 0x38010813, 0x0000003f, + 0xc0141901, 0x2711ff4c, 0x3014bd40, 0x9dfe8e01, 0x049d5804, 0x83ca1e54, + 0xffffff2f, 0xd5402702, 0xbd010812, 0x8e013014, 0xd1fd4efe, 0xd8010804, + 0x0000004f, 0x03c14210, 0x3e31c0e4, 0x6432fd93, 0x4ed40105, 0x05412734, + 0x0cd49dd3, 0x11e803c1, 0x27344ed4, 0x9dd31541, 0x03c10cd4, 0xced421ec, + 0x03071634, 0x03334127, 0x1a27032b, 0x250cd49d, 0x7460bed3, 0x8ed01500, + 0xf5fd93fd, 0xd4010563, 0x43ce3227, 0x00c61ec1, 0x00fffffc, 0x7007f54e, + 0xa107b207, 0x2fc60481, 0xa7940774, 0xfdefff8e, 0xe7ff5ea7, 0xef6ea7fd, + 0x7299fde7, 0x5b4a072d, 0x3b312742, 0xa1410332, 0x87312372, 0x07420b44, + 0x032307ca, 0x07c38b21, 0x012c2bdb, 0xfdbe3040, 0xf413ffff, 0xc24d01b4, + 0xd20709d2, 0x3327051e, 0x8411f3e8, 0x53184c33, 0x44131d4c, 0x7ef041c8, + 0xc00bf84b, 0x5d155c05, 0x54354027, 0x6d156905, 0xbd2b6435, 0x9d0bb506, + 0x9f1ead0b, 0xefff3ea7, 0xd83411fd, 0x0efc6a4d, 0x43272307, 0x2311f4e8, + 0xfc6a3ddc, 0x654027f6, 0x93f58e74, 0x0450a3f0, 0xf4933027, 0x0500b94d, + 0x09039d04, 0x0308039d, 0xfe0b3c0c, 0x0451f74e, 0x320bb307, 0x7007f063, + 0xc107d207, 0x03553402, 0xaea7de86, 0xa7fdefff, 0xfde7ff8e, 0xe7ef9ea7, + 0x070707fd, 0xbe2f071b, 0x0100b2c6, 0x024d07f3, 0x054307d3, 0x27051ef4, + 0x11f3e833, 0x184c33a4, 0x131d4c53, 0xf041c844, 0x8c05f301, 0x40278315, + 0x90058435, 0x94359315, 0xd42bf401, 0xc40bd506, 0xbe1eb40b, 0xefff3ea7, + 0xd83411fd, 0x0efc6a4d, 0x43272307, 0x2311f4e8, 0xfc6a3ddc, 0x8ef043f6, + 0x51fa4ef7, 0x0bb30704, 0x07f06332, 0x07d207a0, 0x553402c1, 0x07d92603, + 0x072f071b, 0xb250be0a, 0x07f30100, 0x024d071c, 0x074307d3, 0xbef40524, + 0x0100a932, 0x0bd42bf4, 0xd6b40bc4, 0xf043dadf, 0xf94efa8e, 0x3f6b9107, + 0x39962516, 0xf98e0027, 0x19fa22c4, 0x404f4b04, 0x65f49342, 0x43190450, + 0xf4933186, 0x9300ba5d, 0x045053f3, 0x22273405, 0x921d0127, 0xf493f98e, + 0x19045048, 0x9335a643, 0x051367f4, 0xd6054399, 0xfd93723f, 0x99045038, + 0x49760fd4, 0x40a73027, 0xd39dd425, 0x0ed39d0f, 0xf49b4427, 0x61fa9321, + 0xa499044f, 0x7e477608, 0x4027feb3, 0x2721f49b, 0x8e941d01, 0x030d07f9, + 0x9abe100c, 0xcd1e00b0, 0x04030a07, 0x00b34abe, 0xaba1c027, 0xbc75ac65, + 0xa161bc65, 0x04030a07, 0x00b578be, 0x6174d3c1, 0xc5430ba4, 0x412774d4, + 0x9d31b49d, 0xac9d09ac, 0x7eb51e08, 0x0fc6e9b0, 0xf0f6be8a, 0xa802be00, + 0x4e801e00, 0xc60f6bfd, 0xd5f49305, 0x43990512, 0x8e3e7605, 0x9b4427fd, + 0x3ea721f4, 0xd1fbffff, 0xcc04c034, 0x4f9bfa40, 0xfb41d848, 0xffff4ea7, + 0xc442d1fb, 0xc841d104, 0xc843d104, 0xc1fd9304, 0x3533044e, 0x07ff2d83, + 0x07ff1d83, 0x99153c53, 0xd28d08d4, 0x36d18d34, 0x3638d38d, 0x9b402747, + 0xfd8e21f4, 0xc6e93f7e, 0x85beaa0f, 0xfd0e00f0, 0x00a78f9e, 0x04030d07, + 0x00b296be, 0xd605d499, 0x304f9b45, 0x3f9bd485, 0x1ed39531, 0x484f9bd1, + 0x3f9bd485, 0x1ed39549, 0x07fc4ec5, 0x031127c0, 0xb4d4be04, 0x0af49300, + 0x032700b7, 0xfc8ec405, 0xefff3ea7, 0xd83411fd, 0x0efc6a4d, 0x43272307, + 0x2311f4e8, 0xfc6a3ddc, 0xff3ea7f6, 0x3451fdef, 0xfc6a4dd8, 0x2723070e, + 0x51f4e843, 0x6a3ddc23, 0xfe0bf6fc, 0x0227fe4e, 0x29be1227, 0x3ea700a7, + 0xb9ffffff, 0x530c3834, 0x38408b41, 0x8e012741, 0xff4ea7fe, 0x4201fd4f, + 0x40270027, 0x270ef49b, 0x0e339911, 0x13cb123b, 0x4fbf3ea7, 0x271138fd, + 0x53340541, 0xd6340311, 0x4efe8e12, 0x21c207fb, 0x11c401c3, 0x07b10722, + 0x6df09310, 0x4cbe007a, 0xc231005a, 0x7a90f093, 0xbe102700, 0x6b005a3f, + 0x27c403bf, 0x07c231d1, 0x7bf0931d, 0xd103007a, 0x005a2abe, 0xdcc4c403, + 0xbd86ec0f, 0xdea7c027, 0x1efdbfff, 0x03c10309, 0xc8c020dc, 0xc6d4413a, + 0xf14c8742, 0x00c01842, 0x931c0700, 0x007a5bf0, 0x0059fabe, 0xf093d141, + 0xbe007a68, 0x510059ef, 0x6df093d1, 0xe4be007a, 0x40270059, 0xc103d445, + 0xc420dc03, 0xf493c8c8, 0x19044e00, 0x0e34e643, 0xed625efb, 0x605efb0e, + 0x07fe4ee9, 0x93102720, 0x007a4ff0, 0xa7ff567e, 0xffffff2e, 0x3ea74127, + 0xbdfd4fff, 0x010c3924, 0x9b402731, 0x23990ef4, 0x3b21270e, 0xa723cb21, + 0xfd4fbf3e, 0x41272138, 0x21533405, 0x22d63403, 0x78414f27, 0xf4e8017d, + 0xfd4efe8e, 0x07060f6b, 0x7a13fd93, 0x07210700, 0x7e11270d, 0x1d07ff07, + 0x9e9e0127, 0xfd93005c, 0x1e007a08, 0x271007e9, 0x4ed81e01, 0x27b007fb, + 0xfff09310, 0x44be0079, 0xb1110059, 0x7a0cf093, 0x5939be00, 0x93b12100, + 0x007a13f0, 0x00592ebe, 0xf093b101, 0xbe007a1a, 0x31005923, 0x21f093b2, + 0x1027007a, 0x005916be, 0xd403db07, 0xd231c127, 0xf0931c07, 0x03007a0c, + 0x5901bec1, 0xc4d40300, 0x07ec0fcc, 0x1efb0e0b, 0xa7f94e9d, 0xffffffee, + 0xffff1ea7, 0x2ae399fe, 0x07081499, 0xeeaf6ba0, 0xa7018e43, 0xffffd72e, + 0x44d62479, 0xf98e0227, 0x24792379, 0x4f4b9307, 0x40e83027, 0x24190177, + 0x43830307, 0x4cf14487, 0xff00002c, 0x0744e499, 0x09149dbc, 0x6b091199, + 0x0713830f, 0x334187d1, 0x83d42bd4, 0xde230fbc, 0xf6ffffb4, 0x2601510f, + 0xff4ea7a6, 0x3127d07f, 0x42314335, 0x012d21e4, 0xec53ec07, 0x590ff610, + 0x05d49901, 0x4f4b2027, 0x21274008, 0xe1c3d459, 0x3e074103, 0x3183d45d, + 0xffff4ea7, 0xbdb207fe, 0x6b014143, 0xa7bac6bf, 0xffffff3e, 0x664032c1, + 0x534c0708, 0x3c32c548, 0x4fe64f6b, 0x240b00f4, 0xffff4ea7, 0x4042c5ff, + 0x27203ca7, 0x9dd32540, 0x4ea704d4, 0xd5feffff, 0x76013c42, 0xff4ea7a9, + 0x43b9feff, 0x385c19c1, 0x4ea73127, 0x35d07fff, 0xff3ea743, 0x3431d07f, + 0x070c41c0, 0xe8432723, 0xc42331f4, 0x0ea7f831, 0xb9feffff, 0x76014104, + 0xa7312745, 0xd07fff4e, 0x19074345, 0xc40f1c83, 0x2ea71b11, 0x99ffffff, + 0x31274424, 0x249d4103, 0xff4ea744, 0x03bdd07f, 0x41550140, 0x006e73be, + 0x1ea7d319, 0x03ffffd7, 0x79d31d31, 0x0f4c8314, 0x24074123, 0x28e62fab, + 0x3ea72f6b, 0x7dffffd7, 0x03345932, 0xe6345d41, 0x9b402705, 0x3ea70ef4, + 0xc5fd4fff, 0xb9063834, 0x8e100c27, 0x031419f9, 0x19141d41, 0xce143913, + 0x14194b34, 0x44874383, 0x002c42f1, 0x2c83ff00, 0x802ca30f, 0x0c27bd1e, + 0x27f98e20, 0x27f98e08, 0x27f98e01, 0xfe885e31, 0x5e202ca7, 0xe4d1ff0c, + 0xe3990c2c, 0x40e4c524, 0x4f4b4307, 0x9d3e40cc, 0xd47924eb, 0xfe994fe6, + 0xf98e0427, 0x831e2027, 0x41234107, 0x34874383, 0x432b4433, 0x005244e9, + 0x3027ff00, 0xd35ddb7d, 0xd31dd46d, 0xec38db3d, 0x9d412780, 0xde9d04d4, + 0xfe7f5e05, 0x27c43bce, 0x09f19303, 0x229e0078, 0xf64e005a, 0xdfff2ea7, + 0x004e27fd, 0x16c12000, 0xd5302734, 0xd5020824, 0xa7020823, 0xfd4fff4e, + 0x11ac13c1, 0xc5a10742, 0x70075032, 0x36079007, 0xac898027, 0x28a48926, + 0x01089ba9, 0xc49b0307, 0x0b1c0c33, 0xd12b07c0, 0xc601049e, 0xcbe401b6, + 0x004fd040, 0x0a100000, 0xe8033b07, 0xf3f02123, 0x03d2074b, 0x232e07d1, + 0x031d0728, 0xf0d12328, 0x420747f1, 0x43734e2b, 0x4b1b4886, 0x010894ad, + 0x3d07d786, 0x21012411, 0xe105e415, 0x4c542803, 0x0b433310, 0x884ec547, + 0xf338e803, 0x030da499, 0xda980381, 0xa3c12748, 0x01881e34, 0xd440cbe4, + 0x0000004f, 0xaa1ea510, 0x40072301, 0x030743cb, 0x00004fd4, 0xceac1000, + 0xa71ea2c3, 0x0ea7c607, 0x83ffffdf, 0xbabe0fcc, 0xc333005a, 0x007cc3f9, + 0xc4f9ff00, 0xff00007e, 0x412338a3, 0x007ec4fd, 0x0ea7ff00, 0xfdffffdf, + 0x00007cc3, 0x5a70beff, 0x34a0c100, 0x330f0c83, 0x7e0e2303, 0x0439ffff, + 0x3ea749f6, 0x01fd4fff, 0x9b402732, 0x3ea70ef4, 0x99ffffff, 0x31270e34, + 0x34cb323b, 0x4fbf2ea7, 0x273138fd, 0x53240541, 0xd6240331, 0xbef68e32, + 0x1e005d47, 0x93fc4ece, 0x050ceffc, 0x1fc6c119, 0x44cdc168, 0x20274027, + 0xc49d30a7, 0x4ac38d0c, 0xc49dc265, 0x4cc2c50b, 0x000fdf83, 0xd0c88000, + 0x6a11c061, 0x03cc4d27, 0x3d07d49b, 0x42603f03, 0x32b90005, 0x31b91086, + 0x41271074, 0x46332c26, 0xc49d41ab, 0x8034b95a, 0x9df09310, 0xc49d050c, + 0x7534b95b, 0x76202710, 0x4403c146, 0x31034027, 0x029d041d, 0x4403c55c, + 0x03c1fc8e, 0x03212744, 0x1d402731, 0x5c029d04, 0x1e4403c5, 0x1e4027ec, + 0xa3d123be, 0xfffff0df, 0x1ed103ff, 0x5bf1be95, 0x59f5be00, 0x59e4be00, + 0x873d0700, 0x2b34332d, 0x33430732, 0x07430b43, 0x0bd333d4, 0xdcd3f9d4, + 0xf6000552, 0x07ff753f, 0x030c071d, 0x0552d01f, 0xfdf07e00, 0x00ff655e, + 0x00001000, 0x08000000, 0x0000000f, 0x07c1f54e, 0x3c0dc138, 0x07240a99, + 0x27c107b0, 0x27502780, 0xddfc0c6c, 0x00a41000, 0x4d034d07, 0xc4ea2000, + 0x3c27009a, 0x2b06071b, 0x27010336, 0x3b4d0722, 0x0b405b20, 0x5b41dc2d, + 0x2755f3f0, 0x4a3b0f4c, 0xf4139487, 0x134e01b0, 0x4201aff4, 0x2b0b2247, + 0xb3012149, 0x490b4187, 0x3707430b, 0x11033d0b, 0x3a074305, 0x3703214d, + 0x030ade0b, 0x18025127, 0x41278107, 0x42234a3b, 0x5936841a, 0xa194dcca, + 0x3cb3c1b4, 0x2b3cbcc5, 0xa54c0b43, 0xc2f58eb4, 0x2007982c, 0x070c2c23, + 0x274a3b42, 0x3b9487e1, 0x07aa1ee0, 0x7e0b0713, 0x1007eae9, 0x6f7e0b07, + 0x24ba99ef, 0xff5cdcea, 0xf453c61e, 0x4e01ff34, 0x20270607, 0x851e9027, + 0x02c1fa4e, 0x4003c13c, 0x04a1d107, 0x0fffdd03, 0x0fffdde3, 0xb007322b, + 0x00c1d42b, 0xd634d638, 0x07fa8ed7, 0x243dcaad, 0xc20bca07, 0x6cbe1c07, + 0x0b070057, 0xfd7e1c07, 0xc6da2bfe, 0x7e0d07d0, 0x0b07eea6, 0xfa0e1d07, + 0x07feeb5e, 0x0bca07a3, 0xbe1c07c2, 0x07005747, 0x7e1c070b, 0xda2bfed8, + 0xfa4eda1e, 0x07310499, 0x07a207d0, 0x56c107b3, 0x0cb2c04f, 0x5e7e0a07, + 0x5d0fc6ee, 0x475ab3c0, 0x144c234c, 0x0b24d199, 0x3b31274d, 0x23420931, + 0x2932c231, 0x41273c07, 0xd1a1433b, 0x31233407, 0x13eb130b, 0x0d07140b, + 0x89ff577e, 0x0d0732d4, 0x1c074103, 0x0e32d48d, 0xea0f5efa, 0x47034107, + 0x071ac4c2, 0x1e31033c, 0xec777ece, 0x402706d6, 0xc431d49d, 0xa81e9fb2, + 0xfa8e0027, 0x38033107, 0x0d07b51e, 0xe27e1c07, 0x9d4027e9, 0x0fc631d4, + 0x4efa8e81, 0xffcea7f9, 0xc4d1ffff, 0xb0070440, 0x91070a99, 0x274d760d, + 0xe6d4a1c1, 0xa700894f, 0xffffdf0e, 0x00578cbe, 0x2c07b161, 0x49be0a07, + 0xd4990368, 0x87d3a12c, 0x07430b44, 0xa74005c0, 0xffffdf0e, 0x005749be, + 0xd499cf26, 0x0321272c, 0x2cd49d41, 0x2a3bb341, 0x0027320b, 0xf98eb345, + 0xffdf0ea7, 0x574bbeff, 0x40c4d100, 0x34c3d104, 0x27448704, 0x1c43ca20, + 0x1199c2bd, 0x1199c4b9, 0xc12745f6, 0xffdf0ea7, 0x5704beff, 0x278b1e00, + 0x27f21ec3, 0x99c2bd21, 0x99c4b911, 0x1e40a611, 0x150c27ef, 0x0ea7f98e, + 0xbeffffdf, 0x61005705, 0x0c0c27b1, 0xc1be2c07, 0x90070367, 0xffdf0ea7, + 0x56ccbeff, 0xda9fc600, 0xd4999905, 0x03d9a52c, 0x2cd49d41, 0x00ff4a5e, + 0x000000ff, 0xfe93f54e, 0xc1044654, 0xf6e360e2, 0xe489e349, 0x60f2c50c, + 0xc164f0c5, 0x43c23021, 0x0b238724, 0x36240121, 0x0d0c2745, 0xf58ef6c3, + 0xf2c12401, 0xc1310360, 0x00273c22, 0x4215f6c3, 0xf58ee34d, 0x74037007, + 0x07071207, 0x2abe2027, 0x0ff600aa, 0xf3c100a4, 0x60f4c160, 0xb160fec1, + 0xc1445133, 0xf3c530ee, 0xc5f40548, 0x308140fe, 0x1548f4c1, 0x253291f0, + 0x3533a1f2, 0x104389f3, 0x3fe64387, 0xfec102d9, 0x40f5c148, 0x070eea89, + 0x27e40783, 0x27ffffcd, 0x71afc690, 0xff62f253, 0x26015001, 0xb027dc07, + 0x04310251, 0xa13003c1, 0x09420b01, 0x03310b0c, 0x2607184c, 0xe40b2103, + 0xcd4e930b, 0x43010411, 0x0429e30b, 0xb40b6207, 0x6f6bdc07, 0x03d2bada, + 0xbef8f054, 0x0148f0c1, 0x0bf95504, 0x01f4454e, 0x0b070701, 0x241c0314, + 0x29be190b, 0x07c600af, 0xff3203e4, 0x2764f3c1, 0x4ef49303, 0xf6c300ad, + 0xf58e3405, 0xfef2f353, 0xc41e3601, 0x98be0707, 0xf2c100a8, 0xe6245160, + 0x2702454f, 0x18dc2730, 0x1f070707, 0x7e182c27, 0xf3c1f469, 0xb1070760, + 0x013d0731, 0x7e2c071c, 0xf4c1f459, 0x48fec160, 0x012a4189, 0x874107ee, + 0x2b453331, 0x0bcd0b43, 0xc53c07e4, 0xfec53cfc, 0xf6340b38, 0x2701e46f, + 0xc58e0700, 0x1fe638f0, 0x460701ce, 0x4333e607, 0xe42be533, 0x0760f0c1, + 0x184c034f, 0x0354f3c5, 0x89302744, 0xfec52802, 0xffbd2744, 0x4cf3c5ff, + 0xc550f3c5, 0xf4c558f3, 0xac2fe668, 0x58f2c100, 0xc138f5c1, 0xa28740f3, + 0xa30b5833, 0x4b0756ab, 0x1c1ed027, 0xc1f3dc7e, 0xf3c13cf0, 0x03942960, + 0x32891c0c, 0x3cf0c528, 0x2dd2d40b, 0x014b0778, 0x091f07a9, 0x3cf3c19b, + 0x1c030707, 0x1c2c2718, 0x110a4bce, 0x50f8c59e, 0x840be401, 0x6550fec1, + 0x31fe85f5, 0xa59c5194, 0x95c40bf8, 0xc19ea1fc, 0xfb8d3094, 0xc14e0b1c, + 0xf4b54cfe, 0x2930fec5, 0x8d8c0b9e, 0xfec11efe, 0xc5e40b4c, 0xdfc64cfe, + 0x54f3c194, 0x0768f1c1, 0x182c0323, 0x0754f2c5, 0x182c2707, 0xc1f35c7e, + 0x942960f3, 0x0b283289, 0x8ad2dad4, 0xc12a3189, 0x410358f4, 0xd258f4c5, + 0xfec10f14, 0x44f0c138, 0xfec5e00b, 0xff3b5e38, 0x00d41fe6, 0x2740f4c1, + 0x54fdc1e0, 0x0734f4c5, 0xff6d2754, 0x5cfec5ff, 0x07622fc6, 0x1e802746, + 0x01460703, 0x09bd0759, 0x073d0796, 0xceb40307, 0x91111946, 0x2c071c01, + 0x07f2737e, 0x0707073b, 0x7e222719, 0x9609f2ed, 0x9c31dc0b, 0x3d079121, + 0x2c070707, 0x07f2577e, 0x0b9a51bd, 0x079141bc, 0x072a0707, 0xf2467e3b, + 0x2960f0c1, 0x28028994, 0x840bdb07, 0x82dada0b, 0x2a0189a9, 0x035cf3c1, + 0xc5310354, 0x31da5cf3, 0x271da690, 0x272b8660, 0x34f4c180, 0x4c013d07, + 0xcba10707, 0x2b07c191, 0x07f20b7e, 0x30c9c1ad, 0xc1b1ab0b, 0x07072907, + 0xf97e3a07, 0x60fec1f1, 0xe289c429, 0x0bda0728, 0xdad90b84, 0xe189cc82, + 0x34f0c12a, 0x04036103, 0xda34f0c5, 0x0707b861, 0xd3be1127, 0xb55e00a8, + 0x9b4607fd, 0x33840741, 0xc1433385, 0x842b38f2, 0x135e820b, 0x27e407fe, + 0x5e602790, 0x3027fd78, 0xf1930707, 0x2700840c, 0x267e0c2c, 0x0c3c27f2, + 0x5e24dc27, 0xfd4efdac, 0x0ea7d007, 0xbeffffdf, 0x99005351, 0xd16108d0, + 0x0dbe2027, 0xd0450364, 0xd3110706, 0x3419d201, 0x420b4487, 0xd4314005, + 0x3419d455, 0x341d4103, 0xffdf0ea7, 0x5300beff, 0x27d44100, 0x27449600, + 0x8301c301, 0x4efd8e01, 0x070451fb, 0x07d207c0, 0x4642cab1, 0xe7ff3ea7, + 0x153b05fd, 0x27c1413d, 0xa7323520, 0xfde7ef4e, 0x4d154105, 0xefff3ea7, + 0x114235fd, 0x6a4dd834, 0x23070efc, 0xf4e84327, 0x3ddc2311, 0x41f6fc6a, + 0x0bc451c3, 0x2b03073d, 0x550d2b4d, 0x8ec345c4, 0xff647efb, 0x8eb60fd6, + 0x51fa4efb, 0x07b0070e, 0x07d207c3, 0x024307a1, 0x154e073e, 0x96b451d4, + 0x11dc1544, 0x05893ed2, 0x1108a6d0, 0x2b2c07d4, 0x16d23524, 0x25012725, + 0x07fa8ed2, 0x07140b1a, 0xff6d7e0b, 0x4127d025, 0x40270496, 0xfa8e0407, + 0xd207fa4e, 0xb107a007, 0xfa8e27b6, 0xfbf3cea7, 0x24c099ff, 0x22271027, + 0x1dbe0703, 0x10070363, 0x037e0c07, 0x073d07e9, 0xa72b071a, 0xfffbf30e, + 0xd6e8b27e, 0x4027d70f, 0x8e0ef49b, 0xc1f54efa, 0xc1073412, 0xdc83d207, + 0x5811990f, 0xb127d333, 0xde23fd23, 0x07ffff84, 0x0370073b, 0x3bf265d4, + 0x50c2c131, 0xf335a027, 0xfd154027, 0x5508f19d, 0x076707fa, 0x45d4230f, + 0x03f205f4, 0x7961186c, 0x16fe957e, 0xdf0ea70c, 0xe6beffff, 0xc0c10051, + 0x04d29950, 0x0358c199, 0x7e212304, 0xc199ff64, 0x54c0c159, 0x7e05d299, + 0x4027ff58, 0x0ea73127, 0x9dffffdf, 0xd39d05d4, 0x5194be04, 0x03042700, + 0x99f58efd, 0xc3c159c4, 0xa5b43b54, 0x30fac5fb, 0x0324f49d, 0xc10f07d5, + 0xfd8534c4, 0x231c0c03, 0xb5f375d5, 0x34f4c5fa, 0xc6fe2d7e, 0x3f07980f, + 0x27383c03, 0x204c2720, 0x34033205, 0xc289f4c8, 0x132fe628, 0x0b302701, + 0xff1d2796, 0x26c489ff, 0xc5bcf9c5, 0xf1c5c0f3, 0xc8f3c5c4, 0x01bcf1c1, + 0x5334c613, 0xc5360b38, 0x4fe6ccf3, 0xf8c100d3, 0xc8f4c1bc, 0x87c4f9c1, + 0x27840344, 0xb8f4c550, 0x41008a5e, 0x40ac23fb, 0x4540bc03, 0x23fa55fb, + 0x55a640bc, 0x07ccf8c1, 0x181c0318, 0x09ccf1c5, 0xc4fac58a, 0x03189ace, + 0xab4a07a2, 0x0794874f, 0xc1920b2f, 0xa2233893, 0xc6c0f3c5, 0xba0d633f, + 0xf2c18129, 0x2d8431c0, 0x07b215b1, 0x212b0716, 0x07140b83, 0x7e28030f, + 0x0fe6fe21, 0x7141fee9, 0x160b8451, 0x0f078341, 0x140b2b07, 0x03242c03, + 0x067e1c0c, 0xb8f3c1fe, 0x0b4cc4c1, 0x294b0543, 0x26c489b3, 0x45d2530b, + 0x519a0734, 0x40acf4fa, 0x0f07ff73, 0xe6fd417e, 0x51feac0f, 0xff655efa, + 0x0f078111, 0x1201160b, 0xe6fd767e, 0x09fe980f, 0xc0f0c58a, 0xc53890c5, + 0x831ec4fa, 0xc128c289, 0x1103c8f1, 0xd2c8f1c5, 0xf3c10d21, 0x1c3c03bc, + 0x5ebcf3c5, 0x0027ff08, 0x4efea65e, 0xa7f063fd, 0xffffdf0e, 0x00504cbe, + 0x0ea72f07, 0x03fff01f, 0x053f0723, 0x7f2ce3f0, 0x197f3ce3, 0x803c0334, + 0xa7f932c2, 0xfff01f0e, 0x01b404b9, 0x30274bc6, 0x101ed027, 0x3d07f001, + 0x01b404b9, 0xd3073103, 0x0b2843d2, 0x6434b930, 0xe942d801, 0x31994d87, + 0x27040b42, 0xfd8a7e21, 0x3499f301, 0x9d412340, 0xf0014034, 0xd6400499, + 0x1027cd4f, 0x01b82d27, 0xf01f0ea7, 0x459bbeff, 0xdf0ea700, 0xafbeffff, + 0xf043004f, 0xf94efd8e, 0x03b2f493, 0x03240705, 0x34073f2c, 0xe37f2ce3, + 0x34197f3c, 0xc2803c03, 0x2c27f932, 0x95f39310, 0x10a70503, 0x31054207, + 0x34032123, 0xfd93f4b8, 0x27050240, 0x9d40a730, 0xd2c566d4, 0x9dd33d80, + 0xd29d0bd3, 0x1dd35d0c, 0x039d07d3, 0x0710709d, 0xe33d0749, 0x3d037f4c, + 0x4f544d30, 0x00058f90, 0x030cf49b, 0x43ca804c, 0x9bc027f8, 0xbea70efc, + 0x27fdebff, 0x9842be00, 0x00af2700, 0x05058200, 0x9bba15bc, 0x3ea70efc, + 0x27fde7ff, 0x27340544, 0x153cc02d, 0xef4ea732, 0x3c35fde7, 0x42154905, + 0x4c350027, 0x009813be, 0xba15bc05, 0xd50efc9b, 0x931068dc, 0x0502bff4, + 0x2c032407, 0xe334073f, 0x3ce37f2c, 0x0334197f, 0x32c2803c, 0xa9f293f9, + 0x38270502, 0x240d4027, 0xf3b82803, 0x07c42c23, 0x7f1c0312, 0x1ce33207, + 0x7f3ce37f, 0x3c033419, 0xf931c280, 0x01fef393, 0x27202705, 0x3205204c, + 0xf4c83403, 0xfd330ea7, 0xbe1827ff, 0xa70052b0, 0xfffce30e, 0xa5be1427, + 0x10270052, 0xa7802c27, 0xfffc730e, 0x004464be, 0x485ef90e, 0x07f84efe, + 0x0f1c8310, 0x21874107, 0x422b4433, 0x33333407, 0xd307340b, 0xd30bd333, + 0x52d0df03, 0xa1070005, 0x3307dc99, 0x079007a3, 0xdf0ea7ba, 0xbe23ffff, + 0xbeffff84, 0xc0004e65, 0x071affcc, 0x334c872c, 0xf1420b24, 0x00018c43, + 0x003ea3ff, 0x43f50300, 0xff00018c, 0x007ca4f9, 0x44fcff00, 0xcce000ba, + 0x0700c3ff, 0x8724332c, 0xf1420b4c, 0x00019443, 0xb13fe6ff, 0x50d3c100, + 0x4f034207, 0x00054260, 0x018843d5, 0x9358d399, 0x0500b7f8, 0x018643bd, + 0xbd5ad399, 0xf9018c43, 0x000080aa, 0x874abdff, 0x05b29901, 0x9954d0c1, + 0x7d7e59d1, 0x9d2027fb, 0xd39905b2, 0xff3cc009, 0x03343313, 0x0542603f, + 0x8534b900, 0xbd412301, 0x59018534, 0x23b21db4, 0xa7b45d41, 0xffffffce, + 0x0100c4b9, 0x41239103, 0x0100c4bd, 0xc5acd3c1, 0x3219fcc9, 0x106881d1, + 0x423b4127, 0x41cb3027, 0xa7acd3c5, 0xffffdf0e, 0x106884d5, 0x004d71be, + 0xa70ec199, 0xfffb9d0e, 0x099ef80e, 0x0d070051, 0x21271027, 0xe4dc807e, + 0xff41ffcc, 0x5604b499, 0x15f89345, 0x725e0500, 0x50d0c1ff, 0x275ad199, + 0xfaee7e21, 0x9950d0c1, 0xd19904b2, 0x23040358, 0xfade7e21, 0xf8934027, + 0x9d04fff0, 0x4a5e04b4, 0x93f74eff, 0x050167fc, 0x4027f063, 0xffdf0ea7, + 0x057c07ff, 0x6baea7f4, 0x26befffe, 0x8027004d, 0x7c23d027, 0x030e1e40, + 0x10cc03d1, 0xe014ac03, 0x009410dc, 0xb823ba07, 0x4ed8b401, 0x23030000, + 0x4886c419, 0xc009c399, 0x0709ff3c, 0x27340b4f, 0x99341d41, 0x3cc00ac3, + 0x4f0709ff, 0x4127340b, 0xc419341d, 0x30a745d6, 0x9d0ac39d, 0x402709c3, + 0xb401a415, 0x00004e83, 0x004ec403, 0x39a90300, 0x019616c9, 0x794586a4, + 0x834ff6c4, 0x27a90500, 0xd6c30981, 0xb401923f, 0x4ee32707, 0x05030000, + 0x0aa38db4, 0xf3934027, 0x8d0500c4, 0x372b08a4, 0x4dce2419, 0xb0210341, + 0x03d103f3, 0xac0310cc, 0x10dce414, 0xd027ff70, 0x4d0b4f07, 0x39a64319, + 0xd4c4d103, 0xdf0ea7f4, 0x43beffff, 0x8666004c, 0xffff4ea7, 0x0e4199ff, + 0xfb9d0ea7, 0x4fd6beff, 0x8ef04300, 0x1d40a7f7, 0x07bb1e24, 0xdd347e0d, + 0x402708ab, 0x41270486, 0x8f6b8407, 0xc011c31e, 0x2708c199, 0xf9ba7e21, + 0xc279c011, 0x0403c159, 0xad7e2123, 0x7d4027f9, 0xff635ec4, 0xd007fb4e, + 0x07cc00c1, 0xf9d77e1d, 0x04c6b007, 0xfb8e0b07, 0xffffcea7, 0x50c4d1ff, + 0x6b0ea704, 0x4103fff4, 0x0450c4d5, 0x009b46be, 0x073900c8, 0x33408730, + 0x34ddc136, 0x4df5430b, 0xff000ba4, 0x04fd4227, 0xff000b98, 0x27fe8c7e, + 0x68c4bd41, 0x0fc39904, 0xf49b4027, 0x8741270e, 0xf50b0733, 0x02b04034, + 0x1efb8eff, 0x93fa4eff, 0x04fe4ffa, 0x41e0a419, 0x4ea7012b, 0xb9ffffff, + 0xc101004b, 0xbc0bfc4c, 0x1e10cbca, 0xfd40273b, 0x00007cd4, 0xcec103ff, + 0xdc072ebc, 0x330fdc83, 0x7cd4f9d3, 0x83ff0000, 0x42c4224c, 0xfd4127e1, + 0x00007ed4, 0x7e0c07ff, 0x4027fcc5, 0x007cd4fd, 0xc103ff00, 0x93d4cbce, + 0x04ff7bf4, 0x2c032407, 0xe33407ff, 0x3ce37f2c, 0x0334197f, 0x32c2803c, + 0x70a399f9, 0xfddafd93, 0xff3cc004, 0x03343319, 0x0543e43f, 0xa7343900, + 0x3d412320, 0x9d402734, 0xd4c570d2, 0xfdd37e74, 0xffdf0ea7, 0x4b0bbeff, + 0x44dcc100, 0xffff3ea7, 0xbd4027ff, 0x27010034, 0xc501402d, 0x3cd5fc3c, + 0x0ea70454, 0x27fffe73, 0x40a7be10, 0x034d0700, 0x2701844d, 0x403c2720, + 0x44034205, 0xf393f3c8, 0x9304ff05, 0x04fd73fd, 0xa7102c27, 0x1d343d40, + 0x103c0334, 0xd4c1f2a0, 0x2749d63c, 0xdba47e00, 0x0d07d127, 0x9b7ed103, + 0xf7d4c4db, 0x302740a7, 0xffdf0ea7, 0x44acc5ff, 0xc570a49d, 0x6fbe74a3, + 0xfa0e004a, 0x99fac15e, 0xf0933ad1, 0x2704fd68, 0xf80e7e21, 0xd4c54027, + 0x27c11e3c, 0x7ea41d42, 0xcf5ef025, 0xd0fe4efe, 0x2810010d, 0x030c2c27, + 0x3be12721, 0xf8e0cae2, 0xffff3ea7, 0x3834d1ff, 0x0b020704, 0x271027e4, + 0x383ed522, 0x9efe0e04, 0x27035b08, 0xed270c2c, 0xdd1e1000, 0x0419fb4e, + 0x1f6bb007, 0x1fe64506, 0xfb8e0168, 0x010c1fe6, 0xfd934127, 0x9d04fcc4, + 0x0ea705d4, 0xbeffffdf, 0x27004a11, 0x3e14780d, 0x05fc939d, 0xc005054a, + 0xffdf0ea7, 0x49d8beff, 0x27c30100, 0x27341d40, 0x983c0321, 0x1d1c4c27, + 0x03210332, 0xf4b0983c, 0x30a72027, 0xd3c54027, 0x0dd49d78, 0x1036d2bd, + 0xc53cd2c5, 0xd2bd44d2, 0xd2bd1034, 0xf77e1035, 0x0c4c27f9, 0x9d26d49d, + 0xd49d24d4, 0x27102725, 0xa701b82d, 0xfff01f0e, 0x003f68be, 0x40000d27, + 0x10072027, 0x00496dbe, 0xffff4ea7, 0xe040d5ff, 0x03212702, 0x2708000d, + 0x33420737, 0xe040f543, 0x03ff0002, 0x000d0321, 0x93f36808, 0x054aebf0, + 0x3127e007, 0x1d272027, 0xed034000, 0x40a7023b, 0x9d5bd49d, 0xd1ad5cd2, + 0xd39d4d32, 0x5ad29d56, 0x4d30d1ad, 0x9d55d39d, 0xece354d3, 0x7f0ce37f, + 0x0c030419, 0xf90ec280, 0x938f2c27, 0x054aabf3, 0x42071027, 0x21233105, + 0xf4b83403, 0xd2c54027, 0x5dd49d60, 0xb41d4127, 0xf293fb8e, 0x9300a295, + 0x04388bf3, 0x40273205, 0x9321f49b, 0x043887fd, 0x20273d07, 0x051f4c27, + 0xc8340332, 0x9d4027f4, 0x107e0ed4, 0x9d4227e7, 0x4d2710d4, 0xd48d1708, + 0x233c2716, 0xd39d4127, 0x14d49d15, 0x4c273b27, 0x60d0c51e, 0x9d12d38d, + 0xcdbe11d4, 0xa51e0098, 0x0098c7be, 0x009f97be, 0x377ef393, 0x08349904, + 0xfe884fe6, 0xf6053499, 0x9b348146, 0x339130f4, 0x9331f39b, 0x043767f0, + 0x039efb0e, 0x3481009a, 0x9148f49b, 0x49f39b33, 0xfb4eea1e, 0xffffdea7, + 0x10d499ff, 0xfb8e4486, 0xc027fbab, 0x9b0dfc9b, 0x3ea70efc, 0x11fd9fff, + 0xa3012734, 0x0400004e, 0xc8be3415, 0x4ea7003f, 0x01fd4fff, 0x9d212743, + 0xf4930fd3, 0x1d0437cc, 0x10d29d42, 0x9b0fd499, 0x31270efc, 0x43f54487, + 0xff02b040, 0xf093fbeb, 0x2704fad4, 0x5efb0e11, 0xfc4efdf4, 0xfbf3eea7, + 0x34e4c1ff, 0x4606d107, 0xcea7d407, 0xa1fffbf3, 0x484dcac4, 0x3ea7fc8e, + 0x99feffff, 0xe2990934, 0x87438324, 0x2b443334, 0x4d41f943, 0x03ff0000, + 0x9b120328, 0x0b41271d, 0xa1423b10, 0xca140be3, 0xd1074013, 0x00011fd0, + 0xa7c01000, 0xfffbf3ce, 0xdf27c4a1, 0x10000000, 0xa7bad4c2, 0xffffdf0e, + 0x0047a6be, 0x0ea70976, 0xbeffffdf, 0x070047b5, 0x7e1d070c, 0x0ea7ef0c, + 0x0effffdf, 0x47809efc, 0x07130700, 0x011ff0d1, 0x7f100000, 0x07bd1eff, + 0x0e1d070c, 0xeeea5efc, 0x00058fc4, 0xf693f54e, 0x0704fa28, 0x4461c1a1, + 0xa1a5f123, 0x0ea75007, 0x35ffffdf, 0x446cc1f2, 0x004768be, 0xa7d8c47e, + 0xfeffff3e, 0x83093499, 0x33248743, 0xf9422b44, 0x00004d43, 0x0b3403ff, + 0x10c3ca30, 0xffdf0ea7, 0x471cbeff, 0x030b2700, 0x07f58ef1, 0x0f2c832c, + 0x43334207, 0x007c43f9, 0xe407ff00, 0xff84ee23, 0xa03ff6ff, 0x33420700, + 0x2b228744, 0x33340742, 0x07340b33, 0x0b033303, 0xd00f0303, 0xc1000552, + 0x0cc5ac04, 0x19464634, 0x6862d144, 0x3b312710, 0xd532cb34, 0xd1106863, + 0xd110686d, 0xab106c64, 0xd641f84d, 0x5320270b, 0xdc210341, 0x1127fa41, + 0x3207123b, 0x34334287, 0x430b1dab, 0x46c2f393, 0x6861d505, 0x01422b10, + 0xff2ea731, 0x2311fd4f, 0x140b4333, 0xc58813c5, 0x3027ac01, 0x412720a7, + 0x3d05e39d, 0x04e39de3, 0xe27de41d, 0xa707029d, 0xffffff3e, 0x010034b9, + 0x3cc544b6, 0xbd4103fc, 0xa7010034, 0xffffdf0e, 0x004655be, 0x994469c1, + 0x49070a61, 0x070f4c83, 0x87243324, 0x07242b44, 0x0b333332, 0x33d30732, + 0x03d30bd3, 0x0552d0df, 0xacd2c100, 0xf8f2fb93, 0xe6f21504, 0x9903571f, + 0x4ce00aa4, 0xb9034f10, 0xb90285b3, 0x9302cab0, 0x040977f7, 0xb1b94027, + 0x740502c9, 0x31037415, 0xb2b90803, 0x18030286, 0x7d04739d, 0x88b3b970, + 0xcbb4b902, 0xccb0b902, 0x5d210302, 0x9d1b0771, 0x709d0572, 0x3d731d06, + 0x601d0374, 0x07282710, 0x3b5fbe07, 0x96c12700, 0x89c02704, 0xa08910a1, + 0xd7997e0e, 0xb4a9c0ab, 0xb3c102b0, 0x9611276c, 0x071027c4, 0x0e2027c1, + 0xb9212734, 0x990284b3, 0xc2ab09b4, 0x340e2027, 0x4c072127, 0x4fe642ab, + 0x090700bd, 0xbe7e0123, 0xf804e6d6, 0x0b03200c, 0x59f8607e, 0x8462b974, + 0xdf49f002, 0x2774390a, 0x274200c1, 0x21cd03c0, 0x6864c180, 0x458efb93, + 0x004d8305, 0xc1920701, 0x812734b3, 0x80274496, 0x88479103, 0x890ea089, + 0x39ee10a1, 0x227e0bae, 0x69f293f8, 0x34270545, 0x2c032419, 0x9541e00c, + 0xc1f3a00b, 0x49ee34b4, 0xb0c10ae9, 0xbe09a63c, 0x27004380, 0xb1f15340, + 0x0c2c27fd, 0x453ef093, 0x3c04c505, 0x42071301, 0x31051027, 0x34032123, + 0x4027f4b8, 0x8d40b48d, 0xb8c542b2, 0x34b9c538, 0x1130bcc5, 0xb064a971, + 0xb9770102, 0xd5028462, 0xc5106461, 0x67d56c64, 0x629d1060, 0xb9402709, + 0x9d028660, 0x64b90a64, 0x609d0285, 0x35649d36, 0x028b60b9, 0x028a64b9, + 0x9d38609d, 0x60d13764, 0x64b902c0, 0x61a9028c, 0x62a902ac, 0x63b902b0, + 0x60c5028d, 0x39649d40, 0xf093219b, 0xe604f75c, 0x0703563f, 0x33410731, + 0x0b443338, 0x0b844743, 0x45820b42, 0xa7402704, 0xffffdf0e, 0x4d5164bd, + 0x004490be, 0xffff2ea7, 0x4021d1ff, 0x29f09304, 0x1fe604f7, 0x0ca9030b, + 0x074102ac, 0x00a9ca33, 0xcdf002ae, 0x0a9c1001, 0x270c3c27, 0x073103e1, + 0xca433b4e, 0x3f6bf64c, 0x35113cf0, 0x07b30709, 0x001e1491, 0x9e270600, + 0x9b060000, 0x27033307, 0x5608be1a, 0x3b442700, 0x000e034b, 0x040b0400, + 0xffff0ee3, 0x07090203, 0xbd402790, 0xa74d5164, 0xffffff3e, 0x119932b9, + 0x21836c55, 0x34bd4827, 0x39d51194, 0x32bd0440, 0x0ea71199, 0xbeffffdf, + 0xd10043de, 0xd102c061, 0xa902bc64, 0x0b02b863, 0xf81d0314, 0xa9130b07, + 0xd102ae62, 0x8702c463, 0xd56c5522, 0x474d5463, 0xf0120b08, 0xab10010d, + 0x0c3c2708, 0x41273103, 0x40ca433b, 0x513f6bf8, 0x24639d64, 0x4c020c07, + 0x0df00407, 0x08861001, 0x030c3c27, 0x3b412731, 0xf840ca43, 0x4f6b4307, + 0xf025649d, 0xdd10011d, 0x0c3c2708, 0x41273103, 0x41ca433b, 0x6b4307f8, + 0x26649d4f, 0xf62af693, 0x24649904, 0x270c4c14, 0x61990c4c, 0x24649d25, + 0x270c1c14, 0x62a90c1c, 0x63a9029a, 0x64b90298, 0x239b02cb, 0x2d034223, + 0x619d03ff, 0x534f6b25, 0x8c42f02a, 0x0b324708, 0xb9315332, 0x93029362, + 0x04f5e7fc, 0x02c961b9, 0x4c272596, 0x93c4bd10, 0x102c2702, 0x47034307, + 0x419b4353, 0xc099430b, 0x27429b24, 0x07203b21, 0x334553e2, 0x9932274a, + 0xe12325c1, 0x4307e40b, 0x303b413b, 0x430b2013, 0x4e02e28b, 0x1e07e407, + 0xcf7e0027, 0x87c4b9fa, 0x07c49d02, 0x30270d07, 0x02d7dd03, 0x01d80d03, + 0x40a72d07, 0x074c63c5, 0x4a648d30, 0x237f2ce3, 0xe302d7dd, 0x34197f3c, + 0xc2803c03, 0xf231f932, 0xdfbe1a07, 0x1d07008a, 0x07f81c03, 0x0311230d, + 0x2107b00c, 0x2ce33007, 0xe311037f, 0x34197f3c, 0xc2803c03, 0x6ed1f932, + 0x300702d4, 0x4c034e07, 0x122c270c, 0x44034001, 0x34033005, 0x60d1f2a8, + 0x03b902d4, 0x3183015f, 0x00b43fe6, 0x01bfdd03, 0x31072d07, 0x237f2ce3, + 0xe301bfdd, 0x34197f3c, 0xc2803c03, 0x4007f932, 0x4c033107, 0x322c2754, + 0x44034101, 0x34033105, 0x64d1f2a8, 0x44d102d4, 0xd4d50174, 0xd0c101c0, + 0x89e361c0, 0xe2512ad4, 0x4d831007, 0x1853ffdf, 0x074453c5, 0x303c8330, + 0xc52ad48d, 0x11834052, 0x14c63453, 0x33833203, 0x49534007, 0x140e4183, + 0x539d34a3, 0x6df29361, 0x212104f4, 0xd5c8d489, 0xb903a4d1, 0xc54d5163, + 0xd3bd30d4, 0x4de003c8, 0x07811102, 0x11034dd4, 0x824de029, 0xd4076a01, + 0x3d01834d, 0x01024de0, 0x4df406e1, 0x06cf0103, 0x06c641e0, 0x4027ff1e, + 0x9df8d49d, 0x7f5efcd3, 0x044de0ff, 0xd4071a31, 0x2931054d, 0x11214de0, + 0x4df406d6, 0x06c41122, 0x11044de0, 0xd51e0731, 0x02814de0, 0x4df40712, + 0x07000282, 0x02014de0, 0xc11e06f5, 0x80024de0, 0x4df40642, 0x06308003, + 0x80014dc0, 0xa9ae1e2b, 0xa902b203, 0x2702ac0c, 0xc39b104c, 0x119424bd, + 0x119921bd, 0x07fd555e, 0x404c0342, 0x81538407, 0x0445840b, 0x27fcb05e, + 0xd4bd134c, 0x243903c2, 0xf3aaf393, 0x89456604, 0x4ca32ad4, 0x2ad48d10, + 0xd4bd4027, 0x349903a8, 0xe8d2a90c, 0xa0d4bd01, 0x10339903, 0x039cd2ad, + 0x03a1d3bd, 0x896860c1, 0xd0d5c2d3, 0x619903c4, 0x7df49354, 0xd1bd0542, + 0x3183039f, 0xd3bd4011, 0xd1a9039e, 0x06a601e6, 0x419b4207, 0x230d40c2, + 0xbe010b01, 0xad0052ae, 0x89039cd0, 0xd38912a4, 0x8d20272a, 0xd2d50e63, + 0xd4d502f4, 0x545901f4, 0xa089647d, 0x1ad08d12, 0x8d14a189, 0xa3891cd1, + 0x1ed38d16, 0x8d18a489, 0xa08920d4, 0x22d08d30, 0x9332a189, 0x04f34bf0, + 0x9924d18d, 0xd39d3563, 0x36a4990f, 0x44963027, 0xd39d3127, 0x37049906, + 0xbd0cd29d, 0x2703abd4, 0x0bd49d40, 0xd1c5a181, 0xc5a2915c, 0xa3a160d2, + 0x9964d3c5, 0xd49d0aa4, 0x0ca19904, 0xb105d19d, 0x3cd2c5a2, 0xd3c5a3b1, + 0x0ba39938, 0x470aa499, 0x0b418333, 0x6b430734, 0x10d49d4f, 0xfc5a0299, + 0x0337402c, 0xf804d199, 0x99033014, 0x41c35b03, 0x04c534ee, 0x275c0399, + 0x26356640, 0x62d49945, 0x41c34183, 0xd49d4f6b, 0x37a49916, 0xd49d3027, + 0x9d40a708, 0xa09909d4, 0x11d09d38, 0xbd4f5199, 0x5903bed1, 0xf742e054, + 0xc3430702, 0x12d49d41, 0xb1286289, 0x2cd28d60, 0xc510a389, 0x538da8d0, + 0x0ea4892a, 0x548d3027, 0x04d19928, 0xf27af793, 0x18519d04, 0xd499a315, + 0x32a28904, 0x41834253, 0x2c03245b, 0x8342071f, 0xd3b91f4c, 0x4c1303ab, + 0x02102720, 0x0b112734, 0x27422723, 0x14d49d31, 0x9d17d19d, 0x420715d3, + 0x73994553, 0x2ed48d0b, 0x00fb3ff6, 0xa74472c1, 0xffffdf0e, 0x9934d2c5, + 0xf2050773, 0x2510d999, 0x3f77bef3, 0x27f20100, 0x0f2c8340, 0xb2072333, + 0xff84be23, 0xfd3327ff, 0x00007e23, 0x7f29fdff, 0xfdff0000, 0x00008224, + 0x3db603ff, 0x37a899b4, 0x070ca499, 0x83b62319, 0x07dc9981, 0x85a64496, + 0x007f21fd, 0xcce0ff00, 0x9d034cff, 0x9cfd07dc, 0x000543a4, 0x423cb419, + 0xb41d42a3, 0xf7936461, 0xe604f1c0, 0x2703114f, 0x9d302741, 0xb39d04b4, + 0x0ca49905, 0x02ed4fe6, 0x2fe6f221, 0x3c0702e7, 0x34334c87, 0xf293430b, + 0xf504f1b0, 0x00019442, 0x23b459ff, 0x99b45d41, 0x3ff636a3, 0xd49902ba, + 0xac44fc04, 0xfd91c302, 0x0543a49c, 0xdf0ea700, 0xa3beffff, 0x0d07003e, + 0x0c036361, 0xc5200768, 0x412744d3, 0x2ce3d007, 0x0b649d7f, 0x0768dc23, + 0x03341932, 0x32c2803c, 0x89f193f9, 0x2c2704f2, 0x86b8be40, 0x10a48900, + 0x8d44dbc1, 0xa08928d4, 0x26d08d0e, 0x0b075179, 0x990dd19d, 0x1a070452, + 0xc10ed29d, 0xac014063, 0x3110a489, 0x87c30bf2, 0xbec40b44, 0x01008686, + 0x0b4b07a9, 0xc59b0b4c, 0xd9c550d4, 0x2463994c, 0x03fccd03, 0x9958d39d, + 0x3b072660, 0x615ad09d, 0x0b548561, 0xc541053c, 0x629954d3, 0xfccd0325, + 0x59d29d03, 0xdcc55395, 0x5ad29948, 0x02bc64d1, 0x4c0b3127, 0x342b323b, + 0xa289b40b, 0x856b7510, 0x07268663, 0x27102729, 0x89240540, 0x110310a3, + 0x13da2403, 0x9b4027f3, 0xd3b90ef4, 0x539d039f, 0x0c64991d, 0x00ed4fe6, + 0xc134d2c1, 0x525544d3, 0xb53059c5, 0x08a49953, 0x9919549d, 0x509d2460, + 0x5462d11b, 0x012df04d, 0x27023a10, 0x31030c3c, 0x433b4127, 0x07f842ca, + 0x144f6b43, 0x4c270c4c, 0x9d4f6b0c, 0x64411c54, 0x253c53c1, 0x27615154, + 0xd55135b0, 0x3103b4d4, 0x3dfc9352, 0xd2d504f0, 0x339903b8, 0xbcd3bd08, + 0x4464c103, 0x8308aa99, 0x34070f4c, 0x34332487, 0xf293322b, 0x0b053d74, + 0x87240134, 0xbd340b33, 0x8911383a, 0x45532ad4, 0x34bd4183, 0xd499113b, + 0x403bd505, 0x3a34bd11, 0x3c54c111, 0x113c3bd5, 0xc1284499, 0xd4bd30d3, + 0x669903bd, 0x18d69d34, 0x012831e0, 0x2704c499, 0x9d42e331, 0xc31d04c4, + 0xbed48b7e, 0xa7003f51, 0xfd4fff4e, 0xf1114311, 0x1bc50027, 0x8c13c564, + 0xc54c1bc5, 0xd05e541b, 0x5e4027f5, 0x3127fcea, 0xa7fd085e, 0xffffdf0e, + 0x003cf8be, 0x2734d2c1, 0x0f2c83c1, 0x24f92333, 0xff00007c, 0x44a31d07, + 0x007c24fd, 0xd399ff00, 0x38d4c110, 0xc33b3153, 0xab681c03, 0x270027c4, + 0x412711ec, 0x4c8b403b, 0x4d460103, 0x24071419, 0x2f032433, 0x00054260, + 0x15ff4cc0, 0x018523b9, 0x018424b9, 0x41033103, 0x018424bd, 0x018523bd, + 0x24071439, 0x2f032433, 0x00054260, 0x15ff4cc0, 0x018523b9, 0x018424b9, + 0x41033103, 0x018424bd, 0x018523bd, 0xfef01203, 0x07d499aa, 0x2fff4cc0, + 0x44333487, 0x34f1340b, 0xff00018c, 0x00004ee3, 0x004ea303, 0x34f50200, + 0xff00018c, 0x9944d0c1, 0x30f534d1, 0xff000194, 0x018c31fd, 0x0ea7ff00, + 0xbeffffdf, 0x27003c12, 0x0c649d41, 0x99fe435e, 0x4ff616d4, 0x91c3fd59, + 0x94fd40a7, 0x000543a4, 0xe6fd4c5e, 0x5efd2c8f, 0x0d07fd16, 0xe6eff77e, + 0x5efed30f, 0x7099f4cb, 0x27f10126, 0x4cc2be20, 0xf6706503, 0xa7fce20f, + 0xffffdf0e, 0x003bc9be, 0xac5e0827, 0x033707f4, 0x2701843d, 0xa7e02720, + 0xfffe730e, 0x01101c27, 0x004e8304, 0x48360300, 0x0c032103, 0x103c0314, + 0x863722d4, 0x28ea9624, 0xdf0ea7f1, 0x8fbeffff, 0x0727003b, 0xc4f4725e, + 0x0300004e, 0xd63419de, 0x3421d94f, 0xff004e83, 0x004ec4ff, 0x03ccffff, + 0x27c81ee1, 0xdc5e0c4c, 0xa71027fd, 0xfffe73ee, 0x01100c27, 0x14ec03e2, + 0x00002e83, 0x2f2fe603, 0x68110301, 0x07b31ef0, 0x8341cb42, 0x3541e445, + 0x5c0399fb, 0x2705d499, 0x27340e20, 0xc3420721, 0x5e418341, 0x4dc0fb25, + 0x40148021, 0x5e80224d, 0x4c27f97c, 0xf9f45e15, 0x5e164c27, 0x4c27f9ee, + 0xf9e85e14, 0x5e0c4c27, 0x3c27f788, 0xf7615e0c, 0x22532c07, 0xb3074e07, + 0x433b2c0b, 0xf6c124f2, 0xb3073103, 0xb85ebf6b, 0x272027f6, 0xf4345e11, + 0xb75e4027, 0x044dc0f9, 0x4d401301, 0x2d5e0121, 0x5e4b27f9, 0x4c27f9a6, + 0xf9a05e0d, 0x5e184c27, 0x4dc0f99a, 0x40141201, 0x5e21044d, 0x4c27f910, + 0xf9885e0e, 0x5e1a4c27, 0x4a27f982, 0x47f97d5e, 0xf7795e32, 0x5e0c4c27, + 0x7479f731, 0xf51f49f4, 0xfdf6f493, 0xc0433903, 0xcd275e32, 0x1a5e8001, + 0x0f0c27f5, 0x27f3625e, 0x4f5e1b4c, 0x5e4227f9, 0x4dc0f94a, 0x40140301, + 0x5e03214d, 0x4c27f8c0, 0xf9385e0f, 0x5e114c27, 0x4127f932, 0x27f92d5e, + 0x275e104c, 0x194c27f9, 0x27f9215e, 0x1b5e0c4c, 0x30b4c1f9, 0xf514c4ee, + 0x3a62f493, 0x3843c105, 0xf50883ee, 0x27f5355e, 0x5e8002cd, 0xc107f4bd, + 0xcce0cf6b, 0x07fe84ff, 0x8714331c, 0xf1310b3c, 0x00018c34, 0x9432f5ff, + 0xe3ff0001, 0x0300004e, 0x00004ea3, 0x8c34f501, 0x99ff0001, 0x1f0304d4, + 0x00054260, 0x018d34fd, 0x4027ff00, 0x019834f5, 0x20a7ff00, 0x018e12bd, + 0x018d12bd, 0x018c34f1, 0x4ee3ff00, 0xf5040000, 0x00018c34, 0x30a089ff, + 0x019c30ed, 0xa189ff00, 0x9e31ed32, 0x5eff0001, 0x2c07faa3, 0xbc272253, + 0x072c0b0c, 0x004d273b, 0xfeaa5e10, 0x5e100c27, 0xb4c1f27f, 0x4fc4ee30, + 0xcb697ef4, 0xf49d0fe6, 0x4ef4455e, 0x000e27fb, 0xe37e0200, 0xf3bea7cf, + 0x4827fffb, 0x0524b49d, 0x001e27b0, 0x0b070200, 0x99e01b7e, 0x0b0724bc, + 0x1c07c603, 0x27cba47e, 0xb54c3b41, 0x4efb8eb4, 0xff3ea7fa, 0x3499ffff, + 0x99453611, 0x4fe61234, 0x3c270167, 0xff4ea70f, 0x4335fdbf, 0xa75f2c27, + 0xfd4fff4e, 0x273442c5, 0x4ea7b63c, 0xd5fdefff, 0xbe0f0443, 0xa7003a84, + 0xfd9fff1e, 0x000a4e27, 0x27141580, 0x11132532, 0xff0ea714, 0x4da3fdeb, + 0x14150400, 0x20271321, 0x04003da3, 0x02051325, 0x00004f27, 0x04150582, + 0xa70ef29b, 0xffffff2e, 0x36112499, 0x12249945, 0x010f4fe6, 0x1ea7d027, + 0x99ffffff, 0xcea71114, 0x03feffff, 0x11149d41, 0xc3d53327, 0x0ea70148, + 0x01fd4fff, 0x07b12703, 0x07433b4b, 0x0e129934, 0x43073f6b, 0x149d42ab, + 0x3c03c50e, 0xf49b4027, 0x7e01270e, 0xc0bddb15, 0x0c1819c1, 0x100cfc30, + 0xdfe600a4, 0x0ea70086, 0xd1ffffff, 0x060c3c04, 0xff1ea748, 0x1341fdaf, + 0x9fff2ea7, 0x05340bfd, 0xe3242113, 0x2425104c, 0x3ca32311, 0x93231510, + 0x04eb1bfa, 0x4fe6a419, 0x049900ac, 0xe0200725, 0x19027042, 0xa73027a2, + 0xffffff4e, 0x1625439d, 0x9c0d2726, 0xc4677e11, 0xeaeaf493, 0xa7400504, + 0xffffff4e, 0x0fb443b9, 0x02603ff6, 0x4fff4ea7, 0x934101fd, 0x0402cff2, + 0x07d14d27, 0x02073427, 0x23152405, 0x1bbe2125, 0x4027002f, 0xa70ef49b, + 0xfeffff1e, 0x4fff3ea7, 0x4012b9fd, 0x3834c501, 0xfa8e2af6, 0xcfff4ea7, + 0x684bc5fd, 0x93ff555e, 0x04ea9bf4, 0x3ff64319, 0xfabefe92, 0x8b5e0032, + 0x89f493fe, 0x431904ea, 0x24993546, 0x7f4cf824, 0xd12701ef, 0xb9fee15e, + 0x5319c110, 0x0e018304, 0xcee25efa, 0x7ec4187e, 0x3ea7fe1b, 0x27fffb9d, + 0x3d341d40, 0xdf3ea734, 0x3401ffff, 0x23074586, 0xf4e84627, 0x33562301, + 0x4fff3ea7, 0xa73401fd, 0xffffdfbe, 0x48a34433, 0x0d27b405, 0x1e7e2000, + 0x89fc93ed, 0xc0050537, 0x5bbe0b07, 0xc4010037, 0x01a44fe6, 0xf46b0ea7, + 0xbe1227ff, 0x27003b60, 0xd74ea700, 0x401dffff, 0x407d403d, 0xffff2ea7, + 0x9d4027ff, 0xeea72a20, 0x1dfff3bf, 0x69f393e4, 0x10a704e9, 0xbd43319d, + 0x9d0c3024, 0xe43d2520, 0xc53c24c5, 0x249d4024, 0x27249d26, 0x0fb424bd, + 0x21273827, 0x24fd4027, 0xff000c30, 0xf3982103, 0xe982fe93, 0x0c0c2704, + 0x20273e07, 0x32054007, 0x34030123, 0xfd93f4b8, 0xa704e9a8, 0x70d49d40, + 0x0374d0c5, 0x070184dd, 0x0332271d, 0x2127ffdc, 0xe35d4027, 0x1ce33d07, + 0x2ee29d7f, 0xe21de43d, 0xe035e015, 0xe025e045, 0x9d1be29d, 0xe09d1ae0, + 0x7f3ce31c, 0x0283dd23, 0x1c031419, 0xf913c280, 0xeaebf493, 0x59f19304, + 0x3c2704e9, 0x1d20a710, 0x03423d42, 0xf3a0104c, 0xffff4ea7, 0x0142bdff, + 0x27302701, 0x13bd520c, 0x13bd02dd, 0x202702dc, 0xfde2f393, 0x05400703, + 0x03012332, 0xa7f4b834, 0xffffff4e, 0x43bd3027, 0x42bd0c44, 0x42bd0c46, + 0x42bd0c45, 0x40bd1198, 0xd2bd0c47, 0x102702d0, 0xbd44429d, 0xad0c3942, + 0x9d119a41, 0xd19d06d1, 0x5840d508, 0x5c40d504, 0x9f3ea704, 0x311dfffb, + 0x40ad313d, 0x3c270102, 0x0843bd0f, 0xbd20a701, 0xad010942, 0xd5010a40, + 0xd50c2c40, 0xbd045040, 0xa70fb041, 0xfffef33e, 0x4c272027, 0x03320520, + 0xa7f4c834, 0xfffe7b3e, 0x341540a7, 0x945e3405, 0x274027fd, 0x25249d30, + 0x010a23ad, 0x7efda25e, 0x5d7ec199, 0x5ed127d6, 0xf093fcee, 0xbe0052ac, + 0x5e00312b, 0x0127fd98, 0x5279f193, 0x345b9e00, 0xa7fd4e00, 0xffffff4e, + 0x0fb443b9, 0x3fd6d007, 0x51f19367, 0x33270400, 0x07e04d27, 0x14051325, + 0x070c1c03, 0x4f1c0331, 0x3ce32107, 0x7f2ce37f, 0x195b1c23, 0x803c0334, + 0xc6f932c2, 0x544c27d8, 0x0d071415, 0x002af393, 0x144c2704, 0x04030101, + 0x34033105, 0xf093f4a8, 0x0e04000c, 0x2c649efd, 0x15442700, 0x09f39314, + 0x20270400, 0x05144c27, 0xc8340332, 0x93e01ef4, 0x005234f0, 0x00309ebe, + 0xfd4e901e, 0xffff4ea7, 0xb443b9ff, 0x893ff60f, 0xff3ea700, 0x3499feff, + 0x83102709, 0x33d40743, 0x2b4487d4, 0xb4de23d4, 0x0ea7ffff, 0x79ffffd7, + 0x03310704, 0x874f4b31, 0x19404823, 0xce438304, 0x24f15114, 0xff000028, + 0x00004ea3, 0x2824f580, 0x07ff0000, 0xd834c413, 0x004729be, 0xd39d3127, + 0x27d41904, 0x1d410330, 0x0ef39bd4, 0x4fff4ea7, 0x3843c5fd, 0xa70ef39b, + 0xffffff4e, 0xa70e4399, 0xfd4fbf2e, 0x41273138, 0x31532405, 0x32d62403, + 0x3107fd8e, 0xbc1e3103, 0x51a6f093, 0x2ffdbe00, 0xff6f5e00, 0x4ea7fd4e, + 0xb9ffffff, 0x070fb443, 0xec3ff6d0, 0x08d48900, 0x00da4fe6, 0x00cb49f4, + 0x4ffcd431, 0xfffffffe, 0xd48900b6, 0x004df40a, 0xbe00a201, 0xa70046ae, + 0xffffd70e, 0x03190439, 0x43cc432b, 0x89013971, 0xd43108de, 0xd2890339, + 0x104c330a, 0xec833103, 0x3de4ab0f, 0x83283303, 0x87e2ab13, 0xf5047911, + 0x00002c1e, 0xf63127ff, 0x0fec8345, 0x4fa34e07, 0xffffff80, 0x4027047d, + 0xa70ef49b, 0xfd4fff2e, 0xa63824c5, 0x2722013b, 0x0ef49b40, 0xffff3ea7, + 0x0e3499ff, 0x323b3127, 0x2ea734cb, 0x38fd4fbf, 0x05412731, 0x46315324, + 0x1e240335, 0x1e3027f3, 0x0df393c6, 0x349904e6, 0x9d410343, 0xfd8e4334, + 0xf1930127, 0x9e0051b2, 0x27003269, 0x7ef19304, 0x5e9e0051, 0x04270032, + 0x514ff193, 0x32539e00, 0x93042700, 0x00511cf1, 0x0032489e, 0xf1930427, + 0x9e0050e3, 0x3100323d, 0x0a028901, 0x93080389, 0x0050a8f0, 0x002eeebe, + 0x4eff045e, 0xff4ea7fb, 0x43b9ffff, 0xf1230fb4, 0xd107b007, 0x07653fd6, + 0x81f1930f, 0x2c270051, 0x2908be10, 0x93dde600, 0x03fe0bfc, 0x07e14d27, + 0x05843c27, 0x25c315c4, 0xbe0d07cb, 0x0700295e, 0x03210320, 0x3f070ccc, + 0x31014327, 0xc1053403, 0xf4a8c403, 0x33093459, 0xc45d1d07, 0xf093c30d, + 0xbe03fdef, 0x930028c6, 0x03fdcbf0, 0x002a25be, 0xfb8ef103, 0x5125fd93, + 0x93ad1e00, 0x005107f0, 0x002e6abe, 0xfa4e921e, 0xffffcea7, 0xb4c4b9ff, + 0xf6d0070f, 0x9902814f, 0x4ff626c4, 0xdc21026f, 0x08030d07, 0x8724cce0, + 0x25ccd001, 0x32cce02a, 0xccd00194, 0xcce05533, 0xf002044b, 0x01154ccc, + 0xf25acce0, 0x5bcce001, 0xcce401e5, 0x9300a54c, 0x00514bf1, 0xc9e02e1e, + 0xcad00160, 0x13cce073, 0xccf0010d, 0xe0008314, 0x01271acc, 0x1623cce0, + 0x19ccc401, 0x0df4937e, 0x402104e5, 0x07c6ff7e, 0x07090610, 0x5efa0e0c, + 0xcce0fefb, 0xf0015728, 0x00ac29cc, 0xae29cce0, 0x2accc401, 0x7ed03156, + 0xdc21c56e, 0x1fd61007, 0xff4ea7db, 0x43b9ffff, 0x3ff60fb4, 0xf49301f4, + 0x2703fcfc, 0x2707d33d, 0x05040724, 0x25421543, 0x9efa0e4c, 0xe0002946, + 0xd0013cc4, 0xc5e057c5, 0xc6c40118, 0x7ed03116, 0xdc21c56b, 0xbf1e1007, + 0x3811cce0, 0x12cce001, 0xfb930129, 0x0705339c, 0x3bbd033b, 0xe32b0702, + 0x2ce37f3c, 0x3bbd237f, 0x03341902, 0x32c2803c, 0x20cce0f9, 0xccf401a0, + 0xe0014b21, 0x01c41ccc, 0x411fccc0, 0x517af193, 0xff595e00, 0xc44bc1c0, + 0xd031c1c2, 0x21c4bd7e, 0x5e1007dc, 0xcce0ff6a, 0xc4010c26, 0x31ac27cc, + 0xc58b7ed0, 0x1007dc21, 0xe0ff555e, 0x00a633cc, 0x974accc4, 0x5113f193, + 0xff215e00, 0xb405d431, 0x3e5edc21, 0x7ed031ff, 0xdc21c5aa, 0x2f5e1007, + 0x7ed031ff, 0xdc21c4e7, 0x235e1007, 0x7ed031ff, 0xdc21c5a6, 0x175e1007, + 0xf1fa93ff, 0xd43104e3, 0xb4ebab21, 0xdd7e0b07, 0xf61007c5, 0x25fede0f, + 0x5edc21ab, 0x937efefd, 0x07dc21c5, 0xfef05e10, 0xdc7ed031, 0x07dc21c4, + 0xfee45e10, 0xe3befc93, 0x070c0704, 0x1e0c031d, 0x270c1c03, 0xd3be102c, + 0x41270026, 0x211cc49d, 0xfec75edc, 0x9c7ed031, 0x07dc21c5, 0xfeb85e10, + 0xe57ed031, 0x07dc21c3, 0xfeac5e10, 0x4307d331, 0x48d04123, 0xe3f19353, + 0x785e004f, 0x7ed031fe, 0xdc21c58d, 0x8f5e1007, 0x7ed031fe, 0x1007c550, + 0x31fe855e, 0xc53f7ed0, 0x7b5e1007, 0x11f193fe, 0x505e0050, 0xd8f193fe, + 0x485e004f, 0x14f193fe, 0x405e0051, 0x84f193fe, 0x385e004f, 0xc45a7efe, + 0x1007dc21, 0x93fe515e, 0x04e32bf4, 0x212e439d, 0xfe475edc, 0x8421cce0, + 0x55cce400, 0xd431feb8, 0x022cb4d5, 0xb4d5d441, 0xd4510230, 0x0234b4d5, + 0xb4d5d461, 0xdc210238, 0x27fe205e, 0xd7f19304, 0x169e004e, 0x0111002f, + 0x03310221, 0x4e8ef093, 0x2bc9be00, 0xfd715e00, 0x508ef093, 0x2bbdbe00, + 0xfe045e00, 0x30271d07, 0x99100c27, 0x26861012, 0x0fa33cd4, 0x041e4127, + 0x03a33c40, 0xc2310341, 0x1103f742, 0x3cd0f020, 0xf19322a3, 0x5e004fea, + 0xd431fda3, 0xdc21b415, 0x31fdc05e, 0x2441c0d4, 0x933c42c0, 0x005021f1, + 0x31fd8a5e, 0x4a41c0d4, 0xe07343c0, 0xe000c842, 0x93009844, 0x004fdff1, + 0x07fd725e, 0x83f0931d, 0x1c030531, 0x402c2710, 0x002589be, 0xb49d4127, + 0x5edc2108, 0x1d07fd7d, 0x31a8f093, 0x101c0305, 0xbe402c27, 0x2700256e, + 0x09b49d41, 0x625edc21, 0x031d07fd, 0x2c27101c, 0xcbf09310, 0x53be0531, + 0x1d070025, 0x31d0f093, 0x201c0305, 0xbe0c2c27, 0x27002542, 0x8ab49d41, + 0x365edc21, 0x031d07fd, 0x2c27101c, 0xbbf09310, 0x27be0531, 0x1d070025, + 0x31c0f093, 0x201c0305, 0xbe0c2c27, 0x27002516, 0x8bb49d41, 0x0a5edc21, + 0x031d07fd, 0x2c27101c, 0x5df09310, 0xfbbe0532, 0x1d070024, 0x3262f093, + 0x201c0305, 0xbea22c27, 0x270024ea, 0x8db49d41, 0xde5edc21, 0x031d07fc, + 0x2c27101c, 0x7ff09310, 0xcfbe0531, 0x1d070024, 0x3184f093, 0x201c0305, + 0xbea22c27, 0x270024be, 0x8cb49d41, 0xb25edc21, 0xa7fe4efc, 0xffffff4e, + 0x0fb443b9, 0xf3933796, 0x1904e178, 0x27450634, 0x8e341d40, 0x930427fe, + 0x004f7cf1, 0x002d8c9e, 0x4f60f093, 0x2a45be00, 0x4edc1e00, 0xffdea7fc, + 0xd4b9ffff, 0x0c210fb4, 0xf6694fd6, 0xd54027c9, 0xad0fd8dc, 0xa70fdcd4, + 0xffffff4e, 0x0fb443b9, 0x93603fd6, 0x03f95ff4, 0x07e33d27, 0x04072027, + 0x42154305, 0xab9efc0e, 0xc6d40025, 0xd8d4d1db, 0xdcdcad0f, 0xd04fd60f, + 0x0000cf27, 0x4f271010, 0x10100080, 0x0fd8d4d5, 0x10270c07, 0xbe802c27, + 0x27002449, 0x2233563f, 0x40c3c511, 0xf49b4027, 0x11a51e0e, 0x932c0701, + 0x004f0cf0, 0x0029bebe, 0xf0938a1e, 0x27004f2e, 0xbe07e31d, 0x1e0029af, + 0xa7fb4e93, 0xffffffce, 0x0fb4c4b9, 0xfb8e4496, 0xe0aef493, 0x93411904, + 0x04e057f3, 0xe056f493, 0x01320104, 0x15f09343, 0x80be004f, 0xc4b90029, + 0x4fc60fb4, 0x001f27da, 0x271007a0, 0x0790000f, 0x2565be10, 0x27b00700, + 0x07c0001f, 0x000f2710, 0xbe1007b0, 0x07002553, 0x001f27c0, 0x271007e0, + 0x07d0000f, 0x2541be10, 0x07300700, 0x932c071b, 0x004f05f0, 0x349efb0e, + 0xfd4e0029, 0xffff4ea7, 0xb443b9ff, 0x56d0070f, 0x69f2933a, 0x4d2703f8, + 0x240507e0, 0x272c3c27, 0x15242544, 0x030d0723, 0x4a270c2c, 0x04030301, + 0x24032305, 0xf093f4a8, 0x0e03f844, 0x249c9efd, 0xf5f09300, 0xecbe004e, + 0xc61e0028, 0x0fabfb4e, 0xf0a3d107, 0xe3071207, 0x0bb90dc0, 0xba0de067, + 0xe0008d0b, 0xbd0bbb0d, 0xbc0dc000, 0x4ea7120b, 0xb9ffffff, 0xf60fb443, + 0x8300f63f, 0xa7fb8ef0, 0xffffffce, 0x0fb4c4b9, 0x01064ff6, 0xf41ad489, + 0xa700b144, 0xffffffce, 0x0fb4c4b9, 0x00e24ff6, 0x44d0d451, 0xb4c4b9d7, + 0xc6d3410f, 0x3479ce4f, 0x32393119, 0xf0933359, 0x83004fd3, 0x9efb0ef0, + 0xa7002873, 0xffffffbe, 0x0fb4b3b9, 0x010e3ff6, 0x8b18d489, 0x8b40e84f, + 0x1d3ff600, 0x34d4c102, 0xb99944c8, 0x710fb4b4, 0x904fc6d3, 0xbea7c11e, + 0xb9ffffff, 0xf60fb4b4, 0x71017c4f, 0x7c44f0d4, 0xb4b4b9ff, 0x81d3610f, + 0x704fe6d0, 0x79030bff, 0x39011904, 0x83035902, 0x70f093f0, 0xfb0e004f, + 0x0028129e, 0xffff4ea7, 0xb443b9ff, 0x4c3fe60f, 0x07d301ff, 0x87f0932e, + 0xf0830050, 0xf49efb0e, 0xc4b90027, 0x4fe60fb4, 0xd199ff4b, 0x21d29920, + 0x9922d399, 0xf09323d4, 0xbe0050e0, 0x5e0027d7, 0x3ff6ff33, 0xd49101ef, + 0xff1144f0, 0x07ff765e, 0x932e0730, 0x005112f0, 0xfb0ef083, 0x0027b69e, + 0xd251d141, 0x50daf093, 0x27a9be00, 0xff125e00, 0xde66f493, 0x65f29304, + 0x430104de, 0xf0932401, 0x07005043, 0x278dbe2e, 0xb4c4b900, 0xdd4fe60f, + 0x11d421fe, 0x31d201d1, 0xc5f093d3, 0x74be004d, 0xc4b90027, 0x4fe60fb4, + 0xd189fec4, 0x1ad28918, 0x5049f093, 0x275dbe00, 0xfeb25e00, 0xde1af493, + 0x19f29304, 0x430104de, 0xf0932401, 0x07004d5e, 0x2741be2e, 0xb4b3b900, + 0xd53fe60f, 0x11d331fe, 0x21d201d1, 0x79f093d4, 0x28be004d, 0xb3b90027, + 0x3fe60fb4, 0xd241febc, 0x4d9bf093, 0x07c20700, 0x53420732, 0x12070ccc, + 0x4c533353, 0x83225310, 0x833183c1, 0x05418321, 0x26f9befc, 0xb4b3b900, + 0x8d3fe60f, 0x14d389fe, 0x8918d189, 0xf09316d2, 0xbe004d99, 0xb90026df, + 0xe60fb4b3, 0x89fe733f, 0xd28944d1, 0xa3f09346, 0xc8be004d, 0xb3b90026, + 0x5d5e0fb4, 0x81f493fe, 0xf29304dd, 0x0104dd80, 0x93240143, 0x004e92f0, + 0xa8be2e07, 0xb4b90026, 0x4fe60fb4, 0xd421fe67, 0xd201d111, 0xf093d331, + 0xbe004ce0, 0xb900268f, 0xe60fb4b4, 0x41fe4e4f, 0x9ef093d3, 0xe307004e, + 0x1307c307, 0xec532307, 0x10cc5314, 0x4107e183, 0x34532a53, 0x4183c183, + 0x31832183, 0xfc15fe05, 0x00265abe, 0x0fb4b4b9, 0xfe194fe6, 0xd251d181, + 0xd471d361, 0x4ea7f093, 0x2641be00, 0xfe055e00, 0xd171d391, 0xf093d281, + 0xbe004da8, 0xb900262f, 0xe60fb4b3, 0xc1fdd03f, 0xd1a130d3, 0xf093d2b1, + 0xbe004db4, 0xb9002617, 0xe60fb4b3, 0xc1fdb83f, 0xd1c13cd3, 0x38d2c134, + 0x4dbef093, 0x25fdbe00, 0xb4b3b900, 0x9e3fe60f, 0x40d189fd, 0x9342d289, + 0x004dbff0, 0x0025e6be, 0x71fd8c5e, 0x93d281d1, 0x004ccbf0, 0x0025d6be, + 0x0fb4b3b9, 0xfe003fe6, 0xd2a1d191, 0x4cd1f093, 0x25c1be00, 0xb4b3b900, + 0xeb3fe60f, 0x34dec1fd, 0x892cd189, 0xd3892ed2, 0x32d48930, 0x4cc3f093, + 0xbefe0500, 0x5e00259f, 0xfb4efdce, 0x2df6f493, 0x0a428905, 0x07084389, + 0x2eb107c0, 0x8e002732, 0xd412befb, 0x45f39300, 0x340104dc, 0x400bd007, + 0x05563405, 0xd4860d07, 0xfb8e0127, 0xffff4ea7, 0xb443b9ff, 0x0931e60f, + 0x931b07c0, 0x004eeaf2, 0x4ee9f393, 0xfc667e00, 0xfd4edb1e, 0xd007f063, + 0xef2ef193, 0x3e0f0703, 0x090726a2, 0xba4d24f4, 0xc0f4290b, 0x2714284c, + 0xdef19306, 0x629e004e, 0xd0850028, 0xf0430027, 0xf293fd8e, 0x8103ef04, + 0xd4215124, 0x0000004f, 0x00271820, 0x24712361, 0x140a430b, 0x062707d6, + 0x4e98f193, 0x28339e00, 0x27410b00, 0x014fd030, 0x1e700000, 0x0f6b0307, + 0x0d07db1e, 0xeecaf393, 0x014a2703, 0x05340332, 0xa8040302, 0x1e0127f4, + 0x1e3127ae, 0x93fb4ee0, 0x04db8bf4, 0xbea74301, 0x63ffffff, 0xb93123f0, + 0x050fb4b2, 0x074305f0, 0x36fc09d1, 0x01fc0d2b, 0xd64d27f0, 0xe5fc9307, + 0x302703f3, 0x1d07c405, 0x05bec315, 0x0c070020, 0x002031be, 0x4cd8d441, + 0xd4710f11, 0xb4b94586, 0x41030c45, 0x0c45b4bd, 0xfb8ef043, 0xf2930c07, + 0x93004e6b, 0x004dfef3, 0x1efb7b7e, 0x63fc4eb9, 0x09f005f0, 0xc0d107fc, + 0x0c0bbbcd, 0xdb12f393, 0x23340104, 0xa7340541, 0xffffff4e, 0x0fb443b9, + 0xfc0d38b6, 0xfc93f001, 0x2703f37c, 0x2707d54d, 0x051d0730, 0xbec315c4, + 0x07001fb1, 0x0ef0430c, 0x1fc09efc, 0x930c0700, 0x004e12f2, 0x4e15f393, + 0xfb227e00, 0xf063cd1e, 0x0bb94d27, 0x0d483c27, 0x07f32df4, 0x43f00110, + 0x4e931ef0, 0x4df493fb, 0x4269052c, 0xd0074349, 0x322eb107, 0xfb8e0027, + 0x002107be, 0x07e6c007, 0x0dc0d009, 0x930c0bbb, 0x04da8ff3, 0x41033401, + 0x4ea73405, 0xb9ffffff, 0x960fb443, 0xc60c0735, 0x8e0127c4, 0x07fb8efb, + 0x3cf2931b, 0xf393004d, 0x7e004dab, 0xe61efab8, 0x3ea7f84e, 0xb9feffff, + 0xf819c134, 0x00d5104c, 0xffff1ea7, 0x093399ff, 0x2b441499, 0xe84f4b43, + 0x9300c241, 0x04da43fb, 0x9941bc99, 0x4c0740b2, 0x3407422b, 0x3fe63f6b, + 0xe2070139, 0xe333e783, 0x41d8ef03, 0xbd990005, 0x8fefe644, 0xe4e40100, + 0x005a724f, 0x0700b100, 0xd7aea791, 0x8b07ffff, 0x9399a479, 0x274f4b44, + 0x0140e820, 0x2b430701, 0x6b040742, 0x0703230f, 0x031f6b10, 0x7b01ce03, + 0x43834107, 0x44332487, 0x43f9422b, 0xff00004f, 0x410737f6, 0x14074103, + 0x31071f6b, 0x43873383, 0x342b3433, 0xf95401ce, 0x00004f34, 0x9940a6ff, + 0x310704e4, 0x3f4b342b, 0x994c31c8, 0x280742b4, 0xd1234496, 0x27402499, + 0x07410330, 0x9d1f6b14, 0x219d4223, 0x47c1ce40, 0xbd9d3027, 0xf6002744, + 0x93f88e36, 0x04d983f4, 0x99404299, 0x322b4143, 0x00273f6b, 0x012731a6, + 0xe499f88e, 0x2b300704, 0xcc3f4b34, 0xb499b631, 0x44bd9d42, 0xf49349a6, + 0x9904d958, 0x3c074042, 0x3f6b322b, 0xe107d51e, 0xe333e783, 0x41d8ef03, + 0xee860005, 0x4fe0e401, 0x00005a72, 0x8d9dff2c, 0x9d412744, 0x4ea742b4, + 0x99feffff, 0xe3010944, 0x9304e49d, 0x04d91bfc, 0x5a723fc0, 0x9d240000, + 0xe40144cd, 0xc399f48b, 0x41c49940, 0x3407432b, 0x871e3f6b, 0xfe5e2127, + 0x44bd99fe, 0x5e44bd9d, 0xd123ff65, 0x4c07da1e, 0x3407412b, 0x535e3f6b, + 0xa7f84eff, 0xffffffde, 0x0fb4d4b9, 0x4ff6f0a3, 0xf8930122, 0x9904d954, + 0x42e026d4, 0xb2be0104, 0x4ea70071, 0xb9ffffff, 0xb90c444b, 0xce0c474c, + 0x9d2759bc, 0xac270bba, 0x070c1e28, 0x0741034c, 0xcecf6bc4, 0x3c0745bc, + 0x070f3c83, 0x33238743, 0x0b422b44, 0x07448743, 0x23d40704, 0xfff3b8de, + 0xf3900e23, 0x7127beff, 0xc6d48100, 0x4027ce4f, 0xd465d475, 0xfa2df90d, + 0x1d07f001, 0x07fcd07e, 0x0741034c, 0xcecf6bc4, 0x2ea7bdcb, 0xbdffffff, + 0xbd0c472b, 0xc10c462b, 0x30274481, 0x9d06839d, 0x8bbd0883, 0x21d502d0, + 0x24d10458, 0x30a70458, 0x045c24d5, 0x23bddf07, 0x40270109, 0x24add403, + 0x21d5010a, 0x0b1e0c2c, 0xf193f011, 0x7e03ec58, 0x0d07fc7d, 0xec4ef193, + 0xfba07e03, 0x0156c007, 0xffffdea7, 0xb4d4b9ff, 0x5e4fd60f, 0xf06ef493, + 0xd83d2703, 0x05040707, 0xbe4c1543, 0x93001cbe, 0x04d7dff2, 0x27402499, + 0x9d410330, 0x249d4223, 0xfd667e40, 0x0f2088b9, 0xd8bdf083, 0xf88e0c45, + 0xf6088499, 0x27fef94f, 0x28f19304, 0x229e004b, 0xf8930024, 0x9904d834, + 0x829926d1, 0xe2f09308, 0xd0be004a, 0xd05e0020, 0x57f093fe, 0xc4be004b, + 0x991e0020, 0xf063fd4e, 0xf001061e, 0x93fc587e, 0x03ebc3f1, 0xbc7e0f07, + 0x93d007fc, 0x03ebb7f1, 0x4ea70156, 0xb9ffffff, 0xd60fb443, 0xddf49339, + 0x3d2703ef, 0x040707d7, 0x4d154305, 0x001c2dbe, 0xd74ef293, 0x40249904, + 0x41033027, 0x9d42239d, 0xd57e4024, 0x8ef043fc, 0x0ff093fd, 0x64be004b, + 0xca1e0020, 0xdea7fb4e, 0xb9ffffff, 0x630fb4d4, 0xc94ff6f0, 0x26d49900, + 0x00ce4ff6, 0xd79afc93, 0xdccbb904, 0xddcdb902, 0x0edbce02, 0x4d073d1e, + 0xd4074103, 0xbdcedf6b, 0x834d0732, 0x33340747, 0x2b433336, 0x33030734, + 0xf1032b03, 0x05454004, 0xc4438300, 0x0f03d942, 0x0005454c, 0x07fc017e, + 0x0741034d, 0xcedf6bd4, 0xc4b9d0db, 0x48c60f29, 0x3d07d027, 0x33334d07, + 0x432b4633, 0x03330407, 0x0f03042b, 0x00055194, 0xb9fbd57e, 0x030f29c4, + 0xdfd4dad1, 0x40273027, 0x02d8c3d5, 0x0f29c4bd, 0x0f24c3d5, 0x02dcc3bd, + 0x02ddc3bd, 0xf1930f07, 0x7e03e7b0, 0x07e6fbbf, 0x4dc0f409, 0x01ee0bbb, + 0x9df193f0, 0x3e7e03e7, 0x930f07fb, 0x03e793f1, 0xb6fba27e, 0xfece7e00, + 0xfb8ef043, 0x4a43f093, 0x1f81be00, 0xff2f5e00, 0xf1930427, 0x9e004a4b, + 0x4e0022b1, 0xffdea7fd, 0xd4b9ffff, 0x4e360fb4, 0x9926d199, 0x41ce27d4, + 0xff3ea73c, 0x3499feff, 0x87438309, 0x2b443324, 0x4d43f942, 0x23ff0000, + 0x3738d431, 0xd49d4227, 0x8e120027, 0x01f493fd, 0x439904d6, 0x03202740, + 0x42429d31, 0x0e40439d, 0xfb865efd, 0xf1930827, 0x9e004a2c, 0x93002255, + 0x004a16f0, 0x001f0ebe, 0x0827a71e, 0x4a59f193, 0x223f9e00, 0xa7fd4e00, + 0xffffffde, 0x0fb4d4b9, 0xd2994a96, 0x27d49926, 0x271f42ce, 0x27d49d40, + 0xfd8e2486, 0xd5aaf393, 0x40349904, 0x0342329d, 0x40349d41, 0x315efd0e, + 0x930827fb, 0x004a3ef1, 0x0022009e, 0x4a26f093, 0x1eb9be00, 0x4ec41e00, + 0xffcea7fb, 0xc4b9ffff, 0xd0070fb4, 0xdc064f96, 0xc4b9b027, 0xcbbd0fb4, + 0x4f760464, 0xeddef293, 0x27cd9d03, 0x07db4d27, 0x24053427, 0x2d252315, + 0xcd9d0207, 0x1a24be26, 0x45f39300, 0x349904d5, 0x423b9d40, 0x349d4103, + 0x5efb0e40, 0xf493facc, 0x9904d5b8, 0x20270443, 0x439d32e3, 0x08429d04, + 0x7e064d9d, 0xa91ed751, 0x4a06f093, 0xbe1d0700, 0x1e001e43, 0x0df0939a, + 0x1d07004a, 0x001e36be, 0xfb4e9b1e, 0xffffcea7, 0xb4c4b9ff, 0x9349960f, + 0x04d537fb, 0xd486bd19, 0xc4b9fb8e, 0x48160fb4, 0xed5af493, 0xdd3d2703, + 0x05040707, 0xbe4d1543, 0x270019aa, 0x8eb41d41, 0xf44f7efb, 0xf093d21e, + 0x2700436a, 0xbe07dd1d, 0x1e001deb, 0xa7fb4ed4, 0xffffffde, 0x0fb4d4b9, + 0x00c14ff6, 0x7fff4ea7, 0xf84391d0, 0x00d0103c, 0x93b1637e, 0x04d48ff4, + 0xd486f393, 0x01420104, 0x1ff09331, 0xb4be004a, 0x1f27001d, 0x1007a000, + 0x90000f27, 0xa0be1007, 0xb0070019, 0xc0001f27, 0x0f271007, 0x1007b000, + 0x00198ebe, 0x1f27c007, 0x1007e000, 0xd0000f27, 0x7cbe1007, 0x30070019, + 0x1b072c07, 0x4a02f093, 0x1d71be00, 0xa7412700, 0xfd4fff3e, 0x0c39d4bd, + 0x40273201, 0x270ef49b, 0x0ed399c1, 0xc3cbc23b, 0x4fbf3ea7, 0x27c138fd, + 0x53340541, 0x03c4c6c1, 0x27f31e34, 0x7d78414f, 0xa7f4e801, 0xffffff3e, + 0x0fb434b9, 0xf4934876, 0x2703ec74, 0x0707dc3d, 0x15430504, 0x9efb0e4c, + 0x930018c2, 0x004934f0, 0x001d12be, 0x93ff375e, 0x004281f0, 0x07dc1d27, + 0x001d02be, 0x0427d11e, 0x4926f193, 0x20339e00, 0xa7fc4e00, 0xffffff4e, + 0x0fb443b9, 0x7c7e3956, 0xa70a16b3, 0xffffff4e, 0x0fb443b9, 0x93743fd6, + 0x03ec1bf4, 0x07d93d27, 0x04072027, 0x42154305, 0x679efc0e, 0xf0930018, + 0xbe00497f, 0x1e001cb7, 0xa5f293ce, 0x239904d2, 0x08249909, 0x076434ce, + 0x83410343, 0x003cf947, 0x9d000541, 0x0ea70924, 0xbeffffdf, 0x0700213d, + 0x8734333c, 0xf1c30bcc, 0x00018cc4, 0x004ed8ff, 0x070d0300, 0xe4cf03c3, + 0x19000543, 0x2747b6c4, 0x66f19308, 0xa29e0049, 0xf093001f, 0x270041d6, + 0xbe07d91d, 0x5e001c57, 0x4223ff7f, 0xffdf0ea7, 0xbec41dff, 0x5e0020d2, + 0x0827ff63, 0x4910f193, 0x1f779e00, 0xa7fb4e00, 0xffffffbe, 0x0fb4b4b9, + 0x0d01c007, 0x013a4ff6, 0x03eedde0, 0xddd000e9, 0xe02403ef, 0xe303f2dd, + 0xf3ddf400, 0xe0008d03, 0x1803f0dd, 0xf1dde001, 0x27010b03, 0x59f19304, + 0x369e0049, 0xdde0001f, 0x00c703eb, 0x03ecddd0, 0xecdde07d, 0xc400d303, + 0xe003eddd, 0xd2aafd93, 0x44d49904, 0xde994e96, 0x07412741, 0x3317831e, + 0x44d49d13, 0xf4531d0b, 0x1405eb2a, 0xa743d099, 0xfeffff3e, 0x9904109d, + 0x329944b4, 0x4b422b09, 0x1141cc4f, 0xffd74ea7, 0x364379ff, 0x03400735, + 0x04149d41, 0x41034e07, 0x6b40d399, 0x41d49d4f, 0x4f6b432b, 0x00a849f4, + 0xdde0fb8e, 0x008103f4, 0x03f5dde4, 0x0c07ff77, 0x305efb0e, 0xe9ddc0f1, + 0xdde41d03, 0xff6503ea, 0xd22efd93, 0x41de9904, 0xfc5bf453, 0x17831e07, + 0x1d0b1333, 0xfd938d1e, 0x9904d218, 0xf45341de, 0x1e07fbd3, 0x13331783, + 0x775e1d0b, 0x5efb0eff, 0x0c07fe41, 0xc75efb0e, 0xf5fd93ec, 0xde9904d1, + 0xc1f45341, 0x831e07fa, 0x0b133317, 0xff545e1d, 0xd1defd93, 0x41de9904, + 0xf8f7f453, 0x17831e07, 0x1d0b1333, 0x0eff3d5e, 0xf0875efb, 0xfb0e0c07, + 0x0eeafb5e, 0xfd075efb, 0x4822f093, 0xbe1d0700, 0x5e001ae3, 0x0427febc, + 0x481df193, 0x1e139e00, 0x00000000, 0x00054548, 0x000455f0, 0x00001000, + 0x00000fff, 0x00000080, 0x0000007f, 0xf123f54e, 0x4127f3ab, 0x7ea7f4eb, + 0xa7ffffff, 0xfeffff6e, 0x0c3c73d1, 0x0ea735a6, 0x41fdafff, 0x05430b04, + 0x10749904, 0x02f14fe6, 0x0eb6f293, 0xf6241904, 0x27020b4f, 0xc164b980, + 0x2f4cfc19, 0x61b901c0, 0x1cd819c1, 0x64992430, 0x87438309, 0x2b443324, + 0x5043f942, 0x46ff0000, 0x4863d136, 0xbb31e001, 0x23430707, 0x8642f042, + 0xc164b909, 0x104cd819, 0x277c9972, 0x0692cfe6, 0x6d11a027, 0x0c30dbf9, + 0x1d07ff00, 0x1e23bf4b, 0xeefff3d0, 0x2702a2cb, 0x4df29390, 0x2419040e, + 0x0ea74686, 0x19fff3c7, 0x4e4f4b04, 0x071c074c, 0xae997e2a, 0x41279746, + 0x046474bd, 0x270f7399, 0x0ef49b40, 0x33874127, 0xb04034f5, 0xb2fcff02, + 0x64d10291, 0x30270148, 0x02a842e0, 0x48ab4307, 0x44863027, 0x83073127, + 0x6c118f6b, 0xf3d0ce23, 0xfa8fe6ff, 0x93b02700, 0x040de7f8, 0x0deaf393, + 0x06391904, 0x09f4939d, 0x439904d1, 0xc74ea765, 0x4a19fff3, 0x3ff6cd19, + 0x01270238, 0x31533d07, 0x41534a07, 0x34eb31c3, 0xd0e6f493, 0x64429904, + 0x0536315c, 0xf8044499, 0x07008d43, 0x8b41c342, 0x8630274b, 0x07312744, + 0xc6b183b3, 0xc41979bf, 0xc41d41a3, 0x3ea795a6, 0x19fff3c7, 0x1d41a334, + 0x9b402734, 0x83190ef4, 0x00953ff6, 0x045074d1, 0x008d4ff6, 0x19c16db9, + 0xd183d453, 0x0d6af093, 0x560b1904, 0xf6d706bd, 0x990685bf, 0x30270f74, + 0x270ef39b, 0xf5448731, 0x02b04043, 0x19fdabff, 0x864fe684, 0x19fdeb05, + 0x3df093c4, 0x41e3040d, 0x0319c41d, 0x3ea735a6, 0x19fff3c7, 0x1d41e334, + 0x9b402734, 0x40270ef4, 0x4d5e841d, 0x270127fe, 0x6572be11, 0xc60fc600, + 0xf3c73ea7, 0x273419ff, 0x184d8b30, 0x07312741, 0x1edf6bd3, 0xf1f89399, + 0x8419040c, 0x4fe6b127, 0xb027ff04, 0x27feff5e, 0xff7a5ed0, 0xc27e0027, + 0x4064b9bf, 0xf6d00701, 0x0705074f, 0x83b007c0, 0xbc8310cc, 0x07c67630, + 0x254c834d, 0x302748ab, 0x31274486, 0x8f6b8307, 0x04c9bff6, 0x19c164b9, + 0x0b0f4cf8, 0xc16dbdfe, 0xfe045e19, 0x006998be, 0x19c164b9, 0x04969127, + 0x4cf89027, 0x9905822f, 0x75992674, 0x8b42e027, 0x8752e002, 0x27802702, + 0x6974bd40, 0x680bbe04, 0xb90d9600, 0xb90c4473, 0x1b0c4774, 0x6bd40743, + 0x10dcd4df, 0x27b30739, 0x27111ea0, 0x31c49d40, 0xb103d103, 0xdcf4a127, + 0x07054510, 0x0f4c834b, 0x24873407, 0x322b3433, 0xc387340b, 0xf3b8ce23, + 0x7e0c07ff, 0x0fd6f2be, 0x23aff6d3, 0xab402705, 0x86302749, 0xb9312744, + 0x6b046674, 0xf6f3153f, 0xb904e04f, 0xf6046a74, 0xf604f84f, 0x2704c98f, + 0x6774b950, 0x27450604, 0x6774bd40, 0x21f09304, 0x049904cf, 0xf84fe608, + 0x11402701, 0x2743abf3, 0x27448630, 0x93402731, 0x04cf07f0, 0x049d3f6b, + 0xe6830764, 0x27fd283f, 0x65049d41, 0xa7fd205e, 0xffffeb0e, 0x001c44be, + 0xa7d3b97e, 0xffffeb0e, 0x001c15be, 0xa7fcfb5e, 0xfff3c70e, 0x3a072c07, + 0xf9bb297e, 0x000c30db, 0x4b9007ff, 0xfd4b5ebf, 0xcebef093, 0x05049904, + 0x04ba4fe6, 0xbd5e0027, 0x81fd93fd, 0xd001040b, 0x0ff6f08b, 0x649906a9, + 0x2742a60a, 0x9d402731, 0x64d10a64, 0x42e40148, 0xdea7fd5c, 0x11fd9fff, + 0x184c83d4, 0xe9bed415, 0x4ea7001c, 0xb9feffff, 0x66014143, 0xa7312735, + 0xd07fff4e, 0xf2934345, 0x19040b40, 0x274ff624, 0x7e002707, 0xf1abbb7f, + 0x2fe62127, 0x21e0066e, 0x24f9066a, 0xff0119bc, 0x06c642f0, 0x43f14287, + 0xff023000, 0x06ba34f8, 0x25d02103, 0xeb4127de, 0xbe4fe6f1, 0x2dbcbe06, + 0xff3ea700, 0x3461ffff, 0xc3074726, 0x4fffdea7, 0x9b4027fd, 0xd4c50ef4, + 0x2da0be38, 0x56c46100, 0xff0ea742, 0x0399feff, 0xffbea709, 0xb201fd4f, + 0xffffeea7, 0x0ee199ff, 0x8311ed99, 0x3b412733, 0xeb230742, 0x87d12314, + 0x9d243333, 0x232b0ee1, 0xf911ed9d, 0x00005024, 0xf9c407ff, 0x00004f24, + 0xfd4123ff, 0x00004f24, 0x24dff6ff, 0x09039906, 0x2b44e499, 0xe84f4b43, + 0x86061641, 0x58e4d1c5, 0x25ec9d04, 0x9340e4c5, 0x04cd93f4, 0x40274101, + 0xe49d0e07, 0x2ae49d0c, 0x7e12ed9d, 0xb101a5f6, 0xe57af293, 0xd24d2703, + 0x0c3c2707, 0x24050207, 0x21252315, 0x2d452c35, 0x0011c1be, 0x0a42f393, + 0xf6341904, 0x2705824f, 0x0bf49b40, 0xa70ef49b, 0xfeffff2e, 0x4c272111, + 0x8824bd10, 0xfd302719, 0x00000013, 0x9b4027ff, 0x3ea70ef4, 0x99ffffff, + 0x4fe61234, 0x312705e9, 0x4fff4ea7, 0x3043c5fd, 0x8127ff1e, 0xb9fd7a5e, + 0xf6046874, 0x2703384f, 0x2c7ad180, 0x93231e0c, 0x04cd0ff0, 0xe05d0499, + 0x9901ad41, 0x45860bd4, 0xf2934227, 0x9d04ccfc, 0x0a070424, 0x03cbb07e, + 0xbe0a07a1, 0x0700ab37, 0x184c8340, 0x92184ce4, 0x83b00701, 0xbff620bc, + 0x2a070189, 0x070f2c83, 0x333287c2, 0x07c32bc4, 0x0b43334c, 0x33d4074c, + 0x03d40bd3, 0x0552d0df, 0x11d49900, 0xc104d399, 0x4733acd9, 0x939d34ab, + 0x7ec20b48, 0xf493abbb, 0x010519f8, 0xc5cc8743, 0xc30b7090, 0x113cc4d1, + 0x33749bc5, 0x6c94c543, 0xf604d399, 0x99ff723f, 0x4fe605d4, 0xbc7eff6b, + 0x640fe6ab, 0x11f093ff, 0x039904cb, 0x09049908, 0x13073103, 0x31231783, + 0x051914ee, 0x9307d299, 0x04caf7f4, 0xfa32f053, 0x0108419d, 0x0032fd04, + 0x27000541, 0x27ba2710, 0x2341053a, 0xb84403b1, 0x334287f3, 0xf1420b24, + 0x00019844, 0xb9f293ff, 0x240503df, 0x020adea9, 0x03abd1b9, 0x01ecd2a9, + 0x01ead3a9, 0x0208dca9, 0xf2354e07, 0xf293410b, 0xd103df98, 0x0301f8d0, + 0x23150fcc, 0x310f4c03, 0x534453f3, 0x252445c4, 0x652b5523, 0x35208521, + 0xc4d3d12c, 0x53482703, 0x8d318338, 0x4e072424, 0x8d0f4c03, 0x44532623, + 0x01b73fe6, 0x3c07e407, 0xf9aaf453, 0xf9aaf053, 0xe8033703, 0x04014101, + 0xe7e337e3, 0x2e9b2307, 0x428b2433, 0x210b44c6, 0x0d27242b, 0x039b0180, + 0x30471e07, 0x43071103, 0x4c831153, 0xa611237f, 0x803c0344, 0xe42b4147, + 0x4e07e09b, 0xa67f4c83, 0x80ec0344, 0x320b319b, 0xf956f253, 0xdf02f493, + 0x013e0b03, 0x7e437520, 0xf093eae2, 0x9904cb64, 0x41e45d04, 0x0907fe57, + 0x7e480c03, 0x4c5ee2e5, 0x2c74d1fe, 0x294ace0c, 0xfb9f0ea7, 0x2c7ad5ff, + 0x1b8dbe0c, 0x9b402700, 0x73990ef4, 0xbf2ea70e, 0x3138fd4f, 0x24054127, + 0x34c63153, 0xf31e2403, 0x02f15ff6, 0x4f6b4807, 0xbdfc025e, 0xe619c16d, + 0x27f945cf, 0xff4ea731, 0x43c5fdcf, 0xf9385e68, 0x07a2697e, 0xf96c5ea0, + 0xbc83b007, 0xe5bff630, 0x83c00702, 0xf65e10cc, 0x1a9bbefa, 0xc6212700, + 0x21c0712f, 0xbc24f96e, 0x26ff0119, 0xf1428746, 0x02300043, 0x033438ff, + 0xe425d021, 0xcfff3ea7, 0x4031c1fd, 0x41072027, 0x34c541a3, 0x0ef29b40, + 0xff8b0007, 0xc54031c5, 0x71d16032, 0x4ea70c3c, 0xc5fd4fff, 0x18a66442, + 0xafff2ea7, 0xa72341fd, 0xfdafff4e, 0x2ea7310b, 0x05fd9fff, 0xe3242143, + 0x2425104c, 0x3ca32311, 0xbe231510, 0x5e001a4b, 0x2103fa05, 0x41278a1e, + 0x40275496, 0x325e5407, 0xbd4027fb, 0xbe046674, 0x1100a9cd, 0xab4027f3, + 0x27048603, 0x154f6b41, 0x6a74b9f4, 0x0c4fe604, 0xa3c97efb, 0xbefb065e, + 0x5e0063bf, 0x0ea7fa7b, 0x39fff3bf, 0x447bbd04, 0x2744f60c, 0xfad15e41, + 0x001a6ebe, 0xc85e4127, 0x01f253fa, 0x01f053f8, 0x01e407f8, 0x07040121, + 0x5ee1033c, 0x7b7efe50, 0xf98b5ef4, 0x27a0bf7e, 0x27048621, 0x5e020720, + 0x4ea7f8fc, 0xc5fdcfff, 0x465e6843, 0x274027f8, 0x6874bdd0, 0x6b0ea704, + 0x3ebefff4, 0x8c270066, 0xe0900711, 0xffffff0f, 0x07014dff, 0x87463349, + 0xf1c40bc9, 0x000ba4c0, 0x7eac07ff, 0xc3f1a689, 0xff000ba4, 0xf45cae23, + 0x0f3c83ff, 0x24332307, 0x232b3387, 0x43334207, 0x3407420b, 0x430b3333, + 0x537c42f1, 0x1a070005, 0x38074207, 0x10014403, 0x40051403, 0xf3a84403, + 0x23c5a371, 0xc5a48158, 0xa0915c24, 0xa16020c5, 0xbdf093a3, 0x23c50516, + 0x0aa48980, 0x4c830101, 0x6824c50f, 0x0a07a331, 0x517823c5, 0x2c0c03a4, + 0x017c24c5, 0x0f3c83a3, 0x23874307, 0x422b4433, 0x4487430b, 0x410ba2a1, + 0x116442d5, 0x4d033627, 0x02011144, 0x42050403, 0xf3a84403, 0x045074d1, + 0xc916f393, 0xb9412304, 0xb902dc3b, 0x0102dd3d, 0x5074d5a3, 0xddf45304, + 0x274201f6, 0x01182700, 0xb134ee24, 0x03010300, 0x8801882d, 0x01c027f1, + 0x9642fcc4, 0x84c4b900, 0x754fd601, 0x41a3c401, 0xdbcec405, 0x07291e0e, + 0x0741034d, 0xcedf6bd4, 0x3d071ebd, 0x23073783, 0x33332633, 0x4207232b, + 0x422b4333, 0x454043f1, 0x31dc0005, 0x93bd07db, 0x04c8a7f3, 0x02dd3bbd, + 0x94fd4027, 0xff000b98, 0xf46b3ea7, 0x963479ff, 0xa7d12747, 0xfff46b0e, + 0x0064f0be, 0x0fe49007, 0xffffffff, 0x8d07feb7, 0xa7fb605e, 0xfff4690e, + 0x0018bebe, 0xdc1ed127, 0x0bbc0d27, 0x0d202c27, 0x07f22df0, 0x03f0011c, + 0x7e01641d, 0x755eeca1, 0x030c07ff, 0xef7e0c0c, 0xff635eec, 0x46334007, + 0x402b0333, 0xc333c407, 0xcf03c42b, 0x00054540, 0x7eff465e, 0x08abace8, + 0x04864027, 0x84074127, 0x015e8f6b, 0x267499fd, 0xf9884fe6, 0x72201cf8, + 0xf9805ef6, 0xcc83c007, 0x860c0710, 0x7e0127c4, 0x0a5eac74, 0x5c04e8f8, + 0x9eda7ef9, 0x270a6499, 0x524ff631, 0x5e3027f9, 0x2103f94d, 0xa7f98d5e, + 0xffffff1e, 0x23d61251, 0xf0934027, 0x1d0404ac, 0x9b302704, 0xf39b0bf3, + 0xff4ea70e, 0x129dfd4f, 0x0f129d10, 0xf39b4201, 0x9931270e, 0x323b0e14, + 0x2ea734cb, 0x38fd4fbf, 0x05412731, 0xe6315324, 0x03fa463f, 0xa7f11e24, + 0xffffffce, 0xa70ec199, 0xfffb9d0e, 0x001867be, 0xc49d4127, 0xfa165e12, + 0x4c5e4027, 0xeb4127f9, 0x4a4ff6f1, 0xe84327f9, 0x27f1abf4, 0xc02d4621, + 0x24f94621, 0xff0119bc, 0x873942d0, 0x0043f142, 0xd8ff0230, 0x21032e34, + 0x1ee325d0, 0xb51a7ed1, 0x27fa155e, 0x63f19308, 0x269e003d, 0x01270013, + 0xabb45a7e, 0xe3d411f3, 0x0400004e, 0xf3ebd415, 0x27f8c85e, 0x03a91e40, + 0x4eb31e21, 0xeb0ea7fe, 0x6ebeffff, 0xe37e0014, 0xeb0ea7cb, 0x3fbeffff, + 0xfe0e0014, 0x4ef4f75e, 0xff4ea7fe, 0x4391d07f, 0x4e103cd8, 0x03c10471, + 0x3802c134, 0x00004fd0, 0x0b347000, 0x014fd443, 0x2bf00000, 0x813e32ca, + 0x91475604, 0xa146d604, 0xb1465604, 0xc145d604, 0x45363004, 0x963c04c1, + 0x27fe8e44, 0xb3f19306, 0x9e9e003d, 0x06270012, 0x3d29f193, 0x12939e00, + 0x93062700, 0x003ceef1, 0x0012889e, 0xf1930627, 0x9e003d3c, 0x4e00127d, + 0x3bcf5bf0, 0x4efe2bdf, 0xbe0f07fc, 0x1effb5df, 0x9b4027ff, 0x00070ef4, + 0xf61eff8b, 0xff1eff1e, 0x3ea7fe4e, 0x11fd7fff, 0x004de334, 0xa7341508, + 0xfd4fff3e, 0x40273201, 0x270ef49b, 0xf52287e1, 0x02b0402e, 0xff1ea7ff, + 0x4427fdcf, 0x14c53007, 0xd0382348, 0x21274232, 0xffff3ea7, 0xbe32bdfe, + 0x9b402719, 0x1ec50ef4, 0xbe76be60, 0xa7202701, 0xfeffff3e, 0x19be32bd, + 0xf49b4027, 0xff3ea70e, 0x34c5fdcf, 0x6834c548, 0x7fff2ea7, 0xa32411fd, + 0x1508004d, 0x27fe8e24, 0x4ebe1e22, 0x27c007fc, 0xcdf09312, 0x94be0045, + 0xc111000e, 0x45daf093, 0x0e89be00, 0x93c12100, 0x0045e1f0, 0x000e7ebe, + 0xf093c101, 0xbe0045e8, 0x31000e73, 0xeff093c2, 0x10270045, 0x000e66be, + 0xf093c241, 0x270045e2, 0x0e59be11, 0x93c25100, 0x0045d5f0, 0x4cbe1227, + 0xc261000e, 0x45c8f093, 0xbe132700, 0x71000e3f, 0xbbf093c2, 0x14270045, + 0x000e32be, 0xf093c281, 0x270045ae, 0x0e25be15, 0x93c29100, 0x0045a1f0, + 0x18be1627, 0xc2a1000e, 0x4594f093, 0xbe172700, 0xb1000e0b, 0x87f093c2, + 0x18270045, 0x000dfebe, 0x9330c2c1, 0x004579f0, 0xf0be1927, 0xc2c1000d, + 0x6bf09334, 0x1a270045, 0x000de2be, 0x9338c2c1, 0x00455df0, 0xd4be1b27, + 0xc2c1000d, 0x4ff0933c, 0x1c270045, 0x0dc5be0c, 0x40c2c100, 0x4540f093, + 0x0d1c2700, 0x000db6be, 0x9344c2c1, 0x004531f0, 0xbe0e1c27, 0x1e000da7, + 0x5bf04eff, 0x2bdf3bcf, 0x07fc4efe, 0xfe76be0f, 0x0efc0eff, 0x4eff0bf0, + 0x3bcf5bf0, 0x4efe2bdf, 0xbe0f07fc, 0x1efffedf, 0x000000ff, 0xe407fe4e, + 0xe30b4623, 0x330f4c83, 0x023d0e3c, 0x3f83011d, 0x3ff00000, 0x20271333, + 0xab104c33, 0x0012f543, 0xf5ff0214, 0x02140414, 0x270e2dff, 0x0ef49b40, + 0xff1efe8e, 0xf94eff1e, 0xc107a007, 0x4714ac23, 0x091a0b11, 0x99d00713, + 0x3e662409, 0x40070c07, 0x3b0c4c23, 0x23d20149, 0x0be48731, 0x0b4387e2, + 0x01130d4e, 0x320cc24b, 0x493b4427, 0x30072047, 0x22231e07, 0xe007d407, + 0x142b3123, 0xd0132a0b, 0x3ccaec2b, 0x27012341, 0x0b403b41, 0x0d31274b, + 0x23140523, 0x581d0b22, 0x8e0b07fe, 0x034c07f9, 0x27244741, 0x0c071cec, + 0xec2b2a0b, 0x1a1d4cd4, 0x01031207, 0xfef02203, 0x07b02707, 0x09f98e0b, + 0x1e31e613, 0x1ee1278a, 0x1ee127bd, 0xe3f54ee4, 0x58f0c5f6, 0x27240299, + 0x3b4f0731, 0x03e00732, 0xf2c5404c, 0x4cf3c554, 0x235cf1c5, 0x2f0714ec, + 0x2768f4c5, 0x4027103c, 0x24032405, 0xf3c1f3b8, 0x2320274c, 0xc54a2731, + 0xf2c540fe, 0x0d6c2748, 0xc560f3c5, 0xf2c164f4, 0x1a238940, 0xc5182789, + 0x72f050f3, 0xf4c100b1, 0xaa34ee4c, 0x54f2c100, 0x4c234607, 0xc1423b0d, + 0x048758f2, 0x030b2301, 0x01007fe6, 0xc150f4c1, 0x24e260f2, 0x46070103, + 0x2354f2c1, 0x423b0c4c, 0x2350f2c1, 0x87420b61, 0x0b812754, 0x3b302753, + 0x03a20786, 0xc5100761, 0x902744f3, 0x0201c707, 0x42073f07, 0x4c83465b, + 0x0bd4870f, 0x0734013d, 0xe6e48be8, 0x0700854f, 0xd63207b4, 0x073407e4, + 0x0b4307b2, 0x774bce48, 0x14031205, 0x91030403, 0x0748fcf0, 0x4634013f, + 0x27140545, 0x05140340, 0x68f2c134, 0x32ce3403, 0x5cf3c1ed, 0xc16936ce, + 0xf3c144f4, 0x8d471b40, 0x3a8d1834, 0x40f4c11a, 0x0364f2c1, 0xc5212342, + 0xf2c540f4, 0xf6610364, 0xc1ff2d2f, 0xf6c348f0, 0xf4c1f58e, 0x7fa4ea60, + 0x074907ff, 0x2b410337, 0x5874ca39, 0x02017ee6, 0x12050403, 0xf3a81403, + 0x32059a1e, 0xf2c18f1e, 0x054f0744, 0x03d40b53, 0x03402722, 0xc5a10354, + 0xd40544f2, 0xc1ff775e, 0x412750f2, 0xf4c52a2e, 0x278d1e48, 0x48f4c540, + 0xfac1861e, 0x07302750, 0x44f3c510, 0xc1ff5e5e, 0x902750fa, 0xf9c51007, + 0x279f1e44, 0xa7a81e31, 0xffffff4e, 0x010041b9, 0x26fc40c1, 0x83300719, + 0x33330f3c, 0x007e34f9, 0x4756ff00, 0x40272107, 0x34fd0103, 0xff00007c, + 0x3c833007, 0x2333330f, 0x0ff2f011, 0xffff4ea7, 0x0041bdff, 0xfc40c501, + 0x34f9fe0b, 0xff00007e, 0xa7d44fc6, 0xffffff4e, 0x010041bd, 0x0bfc40c5, + 0x07fc4efe, 0x27a13ec0, 0x270c0e41, 0x8e040740, 0x07fa4efc, 0x14dc23d0, + 0xcd0bc247, 0x9914dc03, 0xc00924de, 0x4e3b4127, 0xb30bb007, 0xa3074223, + 0xb432d301, 0xfa8e0127, 0x3b0c2c23, 0x87020b2e, 0x87030b00, 0x04b4be2a, + 0x27412700, 0x9dcb0d00, 0xfa8e31d4, 0x0399f74e, 0x3b412724, 0x07f06343, + 0x070b0184, 0x07f10570, 0x878333d1, 0x27c00794, 0x07c249a0, 0x871b070d, + 0xbea10322, 0x0b00047e, 0x03d80bb9, 0x10acc4c2, 0x247499e9, 0xd4077c01, + 0x749d4103, 0x03f40124, 0x077405d6, 0x071f0707, 0x0531272d, 0xff6b7efc, + 0x73b10596, 0x4d3b4127, 0x73b5340b, 0xf78ef043, 0xb007fb4e, 0xf0931327, + 0xbe0041a4, 0x110009f7, 0xb1f093b1, 0xecbe0041, 0xb1210009, 0x41b8f093, + 0x09e1be00, 0x93b10100, 0x0041bff0, 0x0009d6be, 0xf093b231, 0x270041c6, + 0x09c9be10, 0x03db0700, 0x31c127d4, 0x931c07d2, 0x0041b1f0, 0xb4bec103, + 0xd4030009, 0xec0fccc4, 0xfb0e0b07, 0x00fc675e, 0x00001000, 0x08000000, + 0x0000000f, 0x07c1f54e, 0x3c0dc138, 0x07240a99, 0x27c107b0, 0x27502780, + 0xddfc0c6c, 0x00a41000, 0x4d034d07, 0xc4ea2000, 0x3c27009a, 0x2b06071b, + 0x27010336, 0x3b4d0722, 0x0b405b20, 0x5b41dc2d, 0x2755f3f0, 0x4a3b0f4c, + 0xf4139487, 0x134e01b0, 0x4201aff4, 0x2b0b2247, 0xb3012149, 0x490b4187, + 0x3707430b, 0x11033d0b, 0x3a074305, 0x3703214d, 0x030ade0b, 0x18025127, + 0x41278107, 0x42234a3b, 0x5936841a, 0xa194dcca, 0x3cb3c1b4, 0x2b3cbcc5, + 0xa54c0b43, 0xc2f58eb4, 0x2007982c, 0x070c2c23, 0x274a3b42, 0x3b9487e1, + 0x07aa1ee0, 0x7e0b0713, 0x1007fbae, 0x7d7e0b07, 0x24ba99fe, 0xff5cdcea, + 0xf453c61e, 0x4e01ff34, 0x20270607, 0x851e9027, 0x02c1fa4e, 0x4003c13c, + 0x04a1d107, 0x0fffdd03, 0x0fffdde3, 0xb007322b, 0x00c1d42b, 0xd634d638, + 0x07fa8ed7, 0x503dcaad, 0xc20bca07, 0x44be1c07, 0x0b07000c, 0xfd7e1c07, + 0xc6da2bfe, 0xffdf03d0, 0x0703ffff, 0x00cf83cd, 0x03fc0000, 0x000001df, + 0x071c07fc, 0x2720270d, 0x4cbe163c, 0x3ea7000c, 0xc5fffbf3, 0x40273830, + 0x0b071d07, 0xc5403cc5, 0xfa0e3c34, 0x07febf5e, 0x0bca07a3, 0xbe1c07c2, + 0x07000bf3, 0x7e1c070b, 0xda2bfeac, 0xfa4eae1e, 0x07310499, 0x07a207d0, + 0x56c107b3, 0x0cb2c04f, 0x6e7e0a07, 0x5d0fc6fd, 0x475ab3c0, 0x144c234c, + 0x0b24d199, 0x3b31274d, 0x23420931, 0x2932c231, 0x41273c07, 0xd1a1433b, + 0x31233407, 0x13eb130b, 0x0d07140b, 0x89ff2b7e, 0x0d0732d4, 0x1c074103, + 0x0e32d48d, 0xfaa85efa, 0x47034107, 0x071ac4c2, 0x1e31033c, 0xfb2f7ece, + 0x402706d6, 0xc431d49d, 0xa81e9fb2, 0xfa8e0027, 0x38033107, 0x0d07b51e, + 0x7b7e1c07, 0x9d4027fa, 0x0fc631d4, 0x4efa8e81, 0x07d207fa, 0xb6b107a0, + 0xa7fa8e27, 0xfffbf3ce, 0x2724c099, 0x03222710, 0x1d31be07, 0x07100703, + 0xfd227e0c, 0x1a073d07, 0x0ea72b07, 0x7efffbf3, 0x0fd6fcd1, 0x9b4027d7, + 0xfa8e0ef4, 0x04a1fb4e, 0xd007f063, 0x14ceb107, 0x1001992c, 0xc15bcb07, + 0xcc87c183, 0xc461cd0b, 0x0f072127, 0xa03ef405, 0xa110d199, 0x3b4127d2, + 0x27242b41, 0xa5c36530, 0xd9b2ced2, 0xfb8ef043, 0xcf5bf04e, 0xfe2bdf3b, + 0x0f07fc4e, 0xfff9e5be, 0xf00efc0e, 0xf04eff0b, 0xdf3bcf5b, 0xfc4efe2b, + 0x0dbe0f07, 0xff1efffd, 0xb007fb4e, 0xff9046be, 0x1007d007, 0x3f1af093, + 0x06f9be00, 0x27d74600, 0x010b1ec0, 0xbec103d2, 0x030006eb, 0x931c07d4, + 0x003f0cf0, 0x8eedcbda, 0x1eff1efb, 0x1e0499ff, 0x4cc00107, 0x348718ff, + 0x340b4433, 0x018c34f1, 0x4ea3ff00, 0xf5040000, 0x00018c34, 0xff2ea7ff, + 0x4d27fddf, 0x24d50800, 0x10270208, 0x020821d5, 0x4fff3ea7, 0x073211fd, + 0x33408730, 0xf5430b36, 0x000bc442, 0xfd4227ff, 0x000b9804, 0xff2ea7ff, + 0x4127ffff, 0x046824bd, 0x9b0f2399, 0x41270ef1, 0x34f53387, 0xff02b040, + 0xfb4efe0b, 0x1427b007, 0x3ea2f093, 0x065dbe00, 0x93b11100, 0x003eaff0, + 0x000652be, 0xf093b121, 0xbe003eb6, 0x01000647, 0xbdf093b1, 0x3cbe003e, + 0xb2310006, 0x3ec4f093, 0xbe102700, 0x0700062f, 0x27d403db, 0x07d231c1, + 0xaff0931c, 0xc103003e, 0x00061abe, 0xccc4d403, 0x0b07ec0f, 0x345efb0e, + 0x5bf04eff, 0x2bdf3bcf, 0x07fc4efe, 0xff23be0f, 0x0efc0eff, 0x4eff0bf0, + 0x3bcf5bf0, 0x4efe2bdf, 0xbe0f07fc, 0x1effff7e, 0x1e2103ff, 0x19031918, + 0x03010314, 0x0d34ce11, 0x11230123, 0x14190019, 0xfe0b042b, 0x0027f230, + 0xfe4efe0b, 0x40ab4107, 0x43d83007, 0x01151e0f, 0x0524231e, 0x0314033e, + 0x07071e34, 0x03425342, 0x86f45841, 0x03141925, 0x03341d11, 0x8ef2a831, + 0x07fd4efe, 0x2903dce0, 0x072624d0, 0x073f6b31, 0xab483343, 0x07320743, + 0x533423e4, 0x10ec3332, 0x3103e4ab, 0x4e054007, 0x44032423, 0xe407f3b8, + 0x40272103, 0x311d031e, 0x340b3e07, 0xf2a84103, 0x3007fd8e, 0x01030419, + 0x032b4396, 0xfb4efe0b, 0xeea7f063, 0x05fd4fff, 0x07c007f2, 0x01b307d1, + 0x123f9be4, 0x44334103, 0xab38e2c1, 0x1023ce34, 0xffe30ea7, 0x09cbbeff, + 0xe8101e00, 0xa7061ef3, 0xffffe32e, 0x36272401, 0xf1294276, 0x1303d409, + 0x12732407, 0x03fc4d10, 0x0107ff1e, 0xc4090103, 0x322b3407, 0x03fc4d10, + 0x310cff1e, 0x03fc3d03, 0x87ec30da, 0x104c0342, 0x4d0bf301, 0x21034305, + 0x03fc2d04, 0x01072027, 0x01033b07, 0x3401111e, 0x14052103, 0x2d103403, + 0x2d2303fc, 0x128703fc, 0x0b101c03, 0x0df0301d, 0xe30ea7d2, 0x0401ffff, + 0x2bbe44c6, 0x40270009, 0x270ef49b, 0xff4ea731, 0xf043fd4f, 0xfb8e43a5, + 0xf005f063, 0x20073107, 0xe0001f27, 0x0f271007, 0x1007d000, 0x2f5ef043, + 0x05f063ff, 0x073107f0, 0x001f2720, 0x271007c0, 0x07b0000f, 0x5ef04310, + 0x0409ff16, 0xf40df063, 0x30070449, 0xf201f42d, 0x0f273803, 0x10079000, + 0xa0001f27, 0xf0431007, 0x4efef55e, 0x07a007fa, 0xbeb10701, 0x07fffede, + 0x21fc9330, 0x350303d2, 0x0c072307, 0x07da4d27, 0x24231b07, 0x050c0c03, + 0x15ca25c4, 0xfe4cbec3, 0x3e0c07ff, 0x29ff1eae, 0x10142903, 0x1e03fc3d, + 0xfc4d10ff, 0x07ff1e03, 0x0c042b03, 0xfc0d0300, 0x27fe0b03, 0x0790004f, + 0x6b442910, 0x1034070f, 0x2303fc4d, 0x2703fc3d, 0x07b0004f, 0x93442910, + 0x050c2bf2, 0x3407230d, 0x03fc4d10, 0x03fc3d23, 0xd0004f27, 0x44291007, + 0x4d10234d, 0x4d2303fc, 0x248d03fc, 0x270ba608, 0x07a0004f, 0x07442910, + 0xfc4d1034, 0xfc3d2303, 0x004f2703, 0x291007c0, 0x07232d44, 0xfc4d1034, + 0xfc3d2303, 0x004f2703, 0x291007e0, 0x10236d44, 0x2303fc4d, 0x8d03fc4d, + 0xfe0b0a24, 0xf493f84e, 0x09050bc4, 0x07422943, 0x0c322b90, 0xfc3d0330, + 0x2734d603, 0x87f88e00, 0x124de942, 0x07100790, 0x07d303a3, 0x23c207bd, + 0x03b273a1, 0xe9d323c1, 0x07901048, 0x0dbad210, 0xf1930827, 0x7e003bdc, + 0xba07feeb, 0x9d159805, 0x27c5dc50, 0x11f19308, 0xd87e003c, 0x07b806fe, + 0x07080309, 0xfccd103b, 0xfccd2303, 0xf14c8703, 0x07901044, 0x05c10310, + 0x38040304, 0xfccd10f3, 0xfccd2303, 0x45f39303, 0x3c2d050b, 0xa0003f27, + 0x01271007, 0xf88e3c2d, 0xf493f74e, 0x49050b30, 0x07426943, 0x07322b90, + 0x03300c71, 0xd603fc3d, 0x8e002734, 0xe94287f7, 0x07b0124c, 0x03a30710, + 0x078c07c3, 0x73a123b2, 0x23b10382, 0x104de9c3, 0xd21007b0, 0x08270d8a, + 0x3b46f193, 0xfe557e00, 0x9c2d8a07, 0x94299d0d, 0x0bb9dd24, 0x74484cc4, + 0xdd24141e, 0x4cc40bba, 0x0a1e6a28, 0x0bbbdd00, 0x0bbcddc4, 0x5094295f, + 0x0827f94c, 0x3b75f193, 0xfe217e00, 0x37079029, 0x0123070b, 0xe37f3ce3, + 0x34197f0c, 0xc2803c03, 0x87c6f930, 0x38071707, 0x03fcbd10, 0x03fcbd23, + 0x44f14b87, 0x1007b010, 0x1405b103, 0xf3381403, 0x03fcbd10, 0x03fcbd23, + 0x0a7af393, 0x273b6d05, 0x07c0003f, 0x2d012710, 0x27f78e3b, 0x36f19306, + 0xc87e003b, 0xa7971efd, 0xfd4fff2e, 0x3f9b2401, 0x33410312, 0x3822c144, + 0x002734ab, 0x0127320e, 0xf0e3fe0b, 0xf315f205, 0xfa4ef425, 0xffff3ea7, + 0xdc34a9ff, 0x07f0630f, 0xe6a107d0, 0xfa00ad4f, 0xd100a940, 0xe60fd834, + 0x3e00a14f, 0x9b07e6bb, 0x4ea7122f, 0x01fd4fff, 0xe71ea743, 0x3433ffff, + 0x43d61401, 0x32ab38a3, 0x0a1e1305, 0xffe70ea7, 0x063fbeff, 0x00cf2700, + 0xc1101000, 0x4ea744cb, 0xd1ffffff, 0xa70fd840, 0xfd4fff4e, 0x3b074401, + 0x030b3733, 0x1d304c03, 0x124f9b04, 0xc530ddf9, 0x4c030000, 0x07043d30, + 0x204c273f, 0x047d0d5d, 0x03183c03, 0x272a0704, 0xf3057b1c, 0x001087be, + 0x07a6d007, 0x0748c4c1, 0xc541033b, 0xc4c148c4, 0x10310348, 0x270fff3d, + 0x44c3c530, 0xa744c4c1, 0xffffe70e, 0x0005a9be, 0xd027031e, 0xf0430d07, + 0xf0c3fa0e, 0xfa4efe0b, 0xc3073401, 0xa207b107, 0xffff4fc4, 0x0727ffff, + 0x012d2710, 0x27022706, 0xbe01a43d, 0x07ff8a2a, 0x1000ccd0, 0x01060d27, + 0xff8a1dbe, 0xd2d2f493, 0x05400503, 0xc0c101cd, 0xffffff1f, 0x2b071dff, + 0x05273a07, 0xff8a01be, 0x271000cc, 0xbe01060d, 0x93ff89f6, 0x03d2abf4, + 0xfa8e4005, 0xb6befe4e, 0x2f270007, 0x1007f000, 0x04e33d27, 0x4307051e, + 0x2401f4e8, 0x0ef842c4, 0x07bd9efe, 0x27fb4e00, 0x0efb9bb0, 0xf000cf27, + 0x31271007, 0x4027c305, 0xa70ef49b, 0xfd4fff4e, 0xc13e43a5, 0xcb05c031, + 0xfb4efb8e, 0xfc9bc027, 0x00bf270e, 0x271007f0, 0x27b30531, 0x0ef49b40, + 0x4fff4ea7, 0x3e43a5fd, 0x8ebc059c, 0xa7fe4efb, 0xffffe70e, 0x0004c3be, + 0x4f273027, 0x1007f000, 0xfe8e4305, 0x307efe4e, 0x9b07e6fe, 0x4ea7122f, + 0x01fd4fff, 0xe71ea743, 0x3433ffff, 0x43d61401, 0x32ab38a3, 0xfe8e1305, + 0xffe70ea7, 0x9efe0eff, 0x230004b1, 0x15f105f1, 0x35f325f2, 0xa7fb4ef4, + 0xd07fff4e, 0xf0634491, 0x4cf8b007, 0xab008b10, 0xfde57efd, 0x2f9b07e6, + 0xff4ea712, 0x4301fd4f, 0xffe71ea7, 0x013433ff, 0xa343d614, 0x0532ab38, + 0xa70a1e13, 0xffffe70e, 0x000468be, 0x4fff4ea7, 0x274401fd, 0x07f000cf, + 0x304c0310, 0x9d203c27, 0xc39d0cc4, 0x124f9b0d, 0x030fc39d, 0x3f07304c, + 0x07143c03, 0xf01d272b, 0x0ec49d03, 0xf0100f27, 0xf3051007, 0x000ebfbe, + 0xc4154127, 0xf00c0f27, 0x1fbe1007, 0x0103fffa, 0xff7ec025, 0xe70ea7fe, + 0xebbeffff, 0xfdeb0003, 0xfb0ef043, 0xfe0bf103, 0x4f27f84e, 0x10100000, + 0x48c14a01, 0x4449c140, 0x2a484cc1, 0x1edc07ca, 0x23dc0705, 0xffbea7d1, + 0xb4d1ffff, 0xda2b0fd8, 0xf0934556, 0x7e003882, 0xb1d1ff23, 0xf0930fd8, + 0x7e00389c, 0x8fc4ff17, 0x11223356, 0xff9dd457, 0xde26520f, 0x3c072907, + 0xf0931807, 0x070038a2, 0x7e9b074a, 0xca07fef7, 0x1f1ebd07, 0x00155fbe, + 0x0fd894d1, 0x27332007, 0x2419240b, 0x1c074586, 0x38aef093, 0xfed57e00, + 0xb123c103, 0x1d270c07, 0xbfc40fff, 0xffffffff, 0x27da0bd4, 0x1000004f, + 0x8e4d0510, 0xff4ea7f8, 0x44d1ffff, 0x47c60fd8, 0x00004f27, 0x41011010, + 0x42014403, 0x43014403, 0x44014403, 0x3874f093, 0xfe915e00, 0xf54efe0b, + 0xf5634207, 0xa2074013, 0x80076107, 0x91075247, 0xf4c57027, 0x09351e50, + 0xbed103b3, 0x0b000fb3, 0x07b203c0, 0x501c270c, 0x386ef293, 0xcead0e00, + 0x4027e6d9, 0x1707c41d, 0x3864f093, 0x7e2f0700, 0xf4c1fe4b, 0x0b7a0b50, + 0xc2850b94, 0xb8070967, 0xcf07d027, 0xf543ce1e, 0xf54ef58e, 0xf5236207, + 0x92077107, 0x60135007, 0x8027a107, 0xb319301e, 0x5cbed103, 0xc00b000f, + 0x0c07b103, 0x93501c27, 0x003825f2, 0xdace9d0e, 0x074027e6, 0x93c41d18, + 0x00380df0, 0xf47e2f07, 0x0b890bfd, 0x0b78c2a6, 0xb50bb807, 0xcf07d027, + 0xf503d11e, 0xf94ef58e, 0xd107b007, 0x9307a207, 0xd47efcab, 0x9b07e6fb, + 0x4ea7122f, 0x01fd4fff, 0xe71ea743, 0x3433ffff, 0x43d61401, 0x32ab38a3, + 0x0a1e1305, 0xffe70ea7, 0x0257beff, 0x004f2700, 0x271007f0, 0x03431532, + 0x254d453a, 0x144a9d43, 0x3515499d, 0xfcff7e4b, 0x0ea7d007, 0xbeffffe7, + 0xeb00020e, 0x07d5c6fc, 0x020d272b, 0xbe1d0702, 0x07ff86ae, 0x4ef98e0d, + 0x07c007fb, 0x7efdabb1, 0x07e6fb67, 0xa7122f9b, 0xfd4fff4e, 0x1ea74301, + 0x33ffffe7, 0xd6140134, 0xab38a343, 0x1e130532, 0xe70ea70a, 0xeabeffff, + 0x3f270001, 0x1007f000, 0x34154327, 0x3c354827, 0x3b453425, 0x07fc987e, + 0xe70ea7c0, 0xa7beffff, 0xfdeb0001, 0xfb8e0c07, 0xd007fc4e, 0xfcab0d66, + 0xe6fb0e7e, 0x122f9b07, 0x4fff4ea7, 0xa74301fd, 0xffffe71e, 0x14013433, + 0x38a343d6, 0x130532ab, 0x0ea70a1e, 0xbeffffe7, 0x27000191, 0x07f0004f, + 0x15342710, 0x35432543, 0xfc687e4d, 0xffe70ea7, 0x0154beff, 0x8efceb00, + 0x23fc4efc, 0x07d107f1, 0xe3f193c0, 0x0f070036, 0xbe102c27, 0xf6fff6ee, + 0x70fd93d4, 0x0d07003d, 0xfff751be, 0xcbe6f393, 0x27200703, 0x0707da4d, + 0x140c03e3, 0x30153405, 0x21033c25, 0x070cec03, 0x0143273f, 0x05340331, + 0xa8e403e1, 0x093459f4, 0x931d0733, 0x03cbd2f0, 0xe30de45d, 0xfff6a5be, + 0xcbaaf093, 0xf804be03, 0x4eff1eff, 0xff4ea7fc, 0x44b9ffff, 0xd0070fb4, + 0x45e6c107, 0x3680f093, 0x071d0700, 0xfc3dbe2c, 0x070d07ff, 0xfec9be1c, + 0x270596ff, 0x87f19302, 0x665e0036, 0x4efc8eff, 0xff8ea7f8, 0x84b9ffff, + 0x90070fb4, 0xa207b107, 0x4666d307, 0x3677f093, 0x07190700, 0x073a072b, + 0xfc01be4d, 0x14cd07ff, 0x07c227d2, 0x071b0709, 0xbe3c072a, 0xb9fffe12, + 0x070fb484, 0x9345a6d0, 0x00367ff0, 0xdcbe1d07, 0xd576fffb, 0xf1930227, + 0x1e003687, 0x3b412712, 0x8b41234c, 0x2745864d, 0x82f19301, 0xfa5e0036, + 0x50a796fe, 0x000000df, 0x0b4d0720, 0x014fd04b, 0x23700000, 0xf1930127, + 0x1e00368a, 0x00df50e2, 0x07700000, 0x504b0b4d, 0x0000014f, 0x930127f0, + 0x0036a0f1, 0x0d07c91e, 0x3c27f88e, 0xff595e0c, 0x04054027, 0x4027fe0b, + 0x050ef49b, 0x01fe0b04, 0x123f9b02, 0x4fff4ea7, 0x274401fd, 0xa3443300, + 0x0e43ab48, 0x0b012742, 0x07fa4efe, 0x123f9bc0, 0x4fff4ea7, 0x074d01fd, + 0xa3d433a4, 0x1ed3abd8, 0x01f4e803, 0x564627cb, 0x1218beb3, 0x27c40100, + 0x05449630, 0x0ef39bcd, 0x0138abc5, 0xe4d4cec4, 0x3027fa8e, 0xffff4ea7, + 0x3843d5fe, 0x9bfe0b01, 0x2407124f, 0x25333487, 0x21f1232b, 0xff010014, + 0x03103f9b, 0x87310b41, 0xf5453314, 0x01001423, 0xa7412bff, 0xfd4fff3e, + 0x44f13311, 0xff010000, 0x342b1207, 0x002023f5, 0x1e23ff01, 0x23fefff4, + 0xfeff682e, 0x13014727, 0x23051403, 0xf4a82403, 0x4ea7fe0b, 0xa7fd4fff, + 0xfeffff3e, 0x44914181, 0x012832d1, 0x013030d1, 0x43331333, 0x041b211b, + 0x013034d5, 0x012432d5, 0x012831d5, 0x012c30d5, 0xfe0bfe0b, 0xf493fe0b, + 0x7503cc48, 0x07fe0b40, 0x87453340, 0xf5402b00, 0x01000c41, 0xa841f5ff, + 0x0b00045b, 0x334007fe, 0x2b008745, 0x1041f540, 0xf5ff0100, 0x045bac41, + 0x87fe0b00, 0x2b053340, 0x680e2304, 0xfe0bfeff, 0xcc27fc4e, 0xa72c078c, + 0xfefff31e, 0xcad2f093, 0xf470be03, 0xa72c07ff, 0xfeff671e, 0xcb4ef093, + 0xf460be03, 0xd1f093ff, 0x1ea703cb, 0x27fefedb, 0xfc0e102c, 0xfff44d9e, + 0xf493fe4e, 0x1903caa0, 0xa24ff644, 0x99f49300, 0x240703ca, 0x078b2c03, + 0x7f2ce334, 0x197f3ce3, 0x803c0334, 0x93f932c2, 0x03ca7ff3, 0x4c272027, + 0x03320523, 0x93f4c834, 0x03cafbf4, 0x2c032407, 0xe334078b, 0x3ce37f2c, + 0x0334197f, 0x32c2803c, 0x233c27f9, 0xcadef293, 0x07102703, 0x23210543, + 0xb8240331, 0x59f493f4, 0x433503cb, 0x43154305, 0x20274325, 0xcb5af393, + 0x054a2703, 0xc8340332, 0x273027f4, 0xf5402725, 0x045c3834, 0xa834f500, + 0xf500045b, 0x045bac34, 0x3434f500, 0x0300045c, 0xf2001c3c, 0xf4933127, + 0x1d03c9fc, 0x85f19343, 0x2c2703ca, 0x670ea78c, 0x8fbefeff, 0xf193fff3, + 0x2703c9e8, 0x0ea78c2c, 0xbefefff3, 0x93fff37e, 0x03caeff1, 0xa7102c27, + 0xfefedb0e, 0xfff36dbe, 0x6f5efe0e, 0xff4ea7fe, 0x4311fd4f, 0xffff4ea7, + 0x3443d5fe, 0xa7fe0b01, 0xfeffff3e, 0x4fff4ea7, 0xd14111fd, 0xd1013834, + 0x0b013432, 0xd5422b41, 0x0b013834, 0x124f9bfe, 0x35333407, 0x342b4487, + 0x4fff4ea7, 0xf14211fd, 0x01002434, 0xf5422bff, 0x01002434, 0x9bfe0bff, + 0x2407124f, 0x44872533, 0x4ea7242b, 0x11fd4fff, 0x2423f144, 0x0bff0100, + 0x2424f543, 0x0bff0100, 0x75f293fe, 0x3ea703ca, 0x27feff67, 0x03310147, + 0x03210534, 0xa7f4a824, 0xfeffff4e, 0x013844d1, 0xca56f393, 0x27349503, + 0x0332014a, 0x03020534, 0x0bf4a804, 0xff3ea7fe, 0x309dffff, 0xbd41270d, + 0x99046a34, 0x40270f33, 0x270ef49b, 0xf5338741, 0x02b04034, 0x4eff1eff, + 0xbec007fc, 0x39000f14, 0x07c419c3, 0x1d43ab13, 0x3d4027c4, 0x2705e6c4, + 0x0ef49b40, 0x4fff3ea7, 0x3834c5fd, 0xf49b4027, 0xff4ea70e, 0x4399ffff, + 0xbf2ea70e, 0x318bfd4f, 0x41273138, 0x31532405, 0x32d62403, 0xfc4efc8e, + 0xf7bec007, 0x1ea7000e, 0x39fd4fff, 0x271301c2, 0xab433b41, 0x27c43d42, + 0x0ef49b40, 0x8e3814c5, 0x07fc4efc, 0x0ed4bec0, 0xff1ea700, 0xc319fd4f, + 0x41271201, 0x34eb423b, 0x4027c31d, 0xc50ef49b, 0xfc8e3814, 0xc007fb4e, + 0x85beb107, 0xc219000e, 0x2bab4027, 0xc43dc21d, 0x402705e6, 0xa70ef49b, + 0xfd4fff3e, 0x273834c5, 0x0ef49b40, 0xffff4ea7, 0x0e4399ff, 0x4fbf1ea7, + 0x38328bfd, 0x05412731, 0x03315314, 0x8e32d614, 0x0d0499fb, 0x070c0399, + 0x0744c623, 0x99041e34, 0x43070e03, 0x400b4123, 0x99044499, 0x45960e00, + 0x3028321b, 0xfe0b0307, 0xfe0b030b, 0xb027fb4e, 0x0b9dc007, 0x0ec19d0c, + 0x0b9d2107, 0x0310270d, 0xf1b7be04, 0x3dcb1dff, 0x03cb5dcb, 0x8ecb3dc2, + 0x07fc4efb, 0xfbcc27d0, 0x38be0d07, 0x004c004b, 0xf4e84c07, 0xfc8ef31e, + 0xd007fc4e, 0x07fbcc27, 0x4b21be0d, 0x07004c00, 0x1ef4e84c, 0x6bfc8ef3, + 0x9315361f, 0x00324af0, 0x4087fe0b, 0xd50040f1, 0x04860000, 0xf0931434, + 0x0b0037bb, 0x0b4187fe, 0x104c2340, 0xfe0b4001, 0x0087f74e, 0xd51c0af1, + 0x0bf10000, 0x0000d500, 0xf093c107, 0x0700321f, 0x2772071a, 0xf6c5be90, + 0x1e8027ff, 0x03cd011c, 0x66c40391, 0x93b201d6, 0x003212f0, 0x3d071a07, + 0xfff6aabe, 0xb4038d0b, 0x07e397ce, 0x9328071a, 0x003209f0, 0x949ef70e, + 0xfa4efff6, 0x23082a99, 0x87d207f1, 0xf1ac8631, 0x00d50033, 0x34348600, + 0x40f393a4, 0x0a1e0037, 0x430b4a87, 0x01104c23, 0x09de9943, 0xdb69dc49, + 0xfe054187, 0xfb25fc15, 0xd51c42f1, 0xdd010000, 0x4a071007, 0x31d7f093, + 0xbefd3500, 0x1efff647, 0x09249922, 0xde492c69, 0xd51c32f1, 0x10070000, + 0x322cf393, 0xf2f09300, 0xfe050031, 0x24befc15, 0xf103fff6, 0xfc4efa8e, + 0xffffcea7, 0x63c101f7, 0x1bf093f0, 0x0cbe0032, 0xc121fff6, 0x322ef093, + 0xf601be00, 0x48c1c1ff, 0x3240f093, 0xf5f5be00, 0x44c1c1ff, 0x3252f093, + 0xf5e9be00, 0xffcea7ff, 0xc181efff, 0x3260f093, 0xf5d9be00, 0x93c1a1ff, + 0x003273f0, 0xfff5cebe, 0xffffcea7, 0x93c121eb, 0x003281f0, 0xfff5bebe, + 0x9364c1c1, 0x003293f0, 0xfff5b2be, 0xffffcea7, 0x93c101e7, 0x0032a1f0, + 0xfff5a2be, 0x9350c1c1, 0x0032b3f0, 0xfff596be, 0xf093c121, 0xbe0032c6, + 0xc1fff58b, 0xf09354c1, 0xbe0032d8, 0xc1fff57f, 0xf09358c1, 0xbe0032ea, + 0xc1fff573, 0xf0935cc1, 0xbe0032fc, 0xa7fff567, 0xfbffffce, 0x0628c1d1, + 0x3308f093, 0xf555be00, 0x30c1d1ff, 0x22f09301, 0x48be0033, 0xc1d1fff5, + 0xf0930208, 0xbe00333c, 0xd1fff53b, 0x930420c1, 0x003356f0, 0xfff52ebe, + 0x0468c1d1, 0x3370f093, 0xf521be00, 0xff4ea7ff, 0x41c1f3ff, 0x86f09334, + 0x10be0033, 0xcea7fff5, 0x31fddfff, 0x94f093c1, 0x00be0033, 0xc1c1fff5, + 0x4cc2c148, 0xc16cc3c1, 0xcec170c4, 0x9af09340, 0xfe050033, 0xfff4e6be, + 0xffffcea7, 0x48c1d1fe, 0x48c2d101, 0xb9f09301, 0x22870033, 0xd4f02f03, + 0xc8be0000, 0xc1b9fff4, 0xf0930140, 0xbe0033c5, 0x99fff4bb, 0xf09309c1, + 0xbe0033d5, 0xb9fff4af, 0x9319c1c1, 0x0033e4f0, 0xfff4a2be, 0x0144c1a9, + 0x33f3f093, 0xf495be00, 0x42c1a9ff, 0x0ef09301, 0x88be0034, 0x4ea7fff4, + 0xd1fdefff, 0x930f0041, 0x00341ff0, 0xfff476be, 0x0005d1be, 0x4fff4ea7, + 0x114c01fd, 0x931c0742, 0x003425f0, 0xfff45ebe, 0x10270c07, 0xe68b2ea7, + 0xfdc07efe, 0x11270c07, 0xe67f2ea7, 0xfdb47efe, 0x13270c07, 0xe6672ea7, + 0xfda87efe, 0x14270c07, 0xe65b2ea7, 0xfd9c7efe, 0x15270c07, 0xe64f2ea7, + 0xfd907efe, 0xffffcea7, 0x90c1d1ff, 0x98c2d10f, 0x94c3d10f, 0xa4c4d10f, + 0xf9f0930f, 0x04be0033, 0xc2d1fff4, 0xc1d10fa0, 0xf0930f9c, 0x4300340a, + 0x9efc0ef0, 0x4efff3ef, 0xffbea7f8, 0xb1c1fd4f, 0x93f1236c, 0x003404f0, + 0xfff3dabe, 0x000628be, 0xf0931007, 0xa700341c, 0xffffffce, 0xfff3c6be, + 0x9311c199, 0x003432f0, 0xfff3babe, 0xb211ba01, 0xf0931a07, 0xbe00344a, + 0x07fff3ab, 0xa716270a, 0xfff0572e, 0xa7fd0d7e, 0xfffffb0e, 0x01030919, + 0x4ea70a19, 0x03fffffe, 0x19421901, 0x0341030b, 0x190e1901, 0x19410343, + 0x93c11944, 0x00343ff0, 0xf905fe35, 0xfb25fa15, 0xfff36abe, 0x930fc199, + 0x00346ef0, 0xfff35ebe, 0x9310c199, 0x003489f0, 0xfff352be, 0x0468c2d1, + 0x046cc3d1, 0x0464c1d1, 0x349bf093, 0xf33dbe00, 0x50c1d1ff, 0xc1f09304, + 0x30be0034, 0xc1d1fff3, 0xf0930458, 0xbe0034db, 0xd1fff323, 0x93045cc1, + 0x0034f5f0, 0xfff316be, 0x9327c199, 0x003510f0, 0xfff30abe, 0x9326c199, + 0x00352bf0, 0xfff2febe, 0x0c2cc1d1, 0x3545f093, 0xf2f1be00, 0x02c1a9ff, + 0x5ff09301, 0x1c830035, 0xf2e1be0f, 0x08c1b9ff, 0x76f09301, 0xd4be0035, + 0xc1b9fff2, 0xf0930109, 0xbe003590, 0xa9fff2c7, 0x93010ac1, 0x0035aaf0, + 0xfff2babe, 0x1198c1b9, 0x35c4f093, 0xf2adbe00, 0x99c1b9ff, 0xdef09311, + 0xcea70035, 0xbefff01f, 0xb9fff29b, 0x9301b4c1, 0x0035f3f0, 0xfff28ebe, + 0x9340c199, 0x00360cf0, 0x80be8c07, 0xc027fff2, 0x14f9661e, 0xff001144, + 0x115430f1, 0x32f1ff00, 0xff001034, 0x107433f1, 0x42d8ff00, 0x2bb30749, + 0xcad027b2, 0xb0070923, 0xb22bb103, 0x4187d307, 0x115443f1, 0xeb07ff00, + 0xed0b3103, 0x107449f1, 0x42f1ff00, 0xff000fe0, 0x35dcf093, 0x3444f100, + 0x27ff0010, 0x27e30ea0, 0x053a07a1, 0x25fb15f9, 0xf219befd, 0x07c103ff, + 0x4084991c, 0x31871f6b, 0xa79014ca, 0xffffffce, 0x0c46c1b9, 0x35f7f093, + 0xf1f9be00, 0x47c1b9ff, 0x11f0930c, 0xecbe0036, 0xc1b9fff1, 0xf0930c44, + 0xbe00362b, 0x93fff1df, 0x003649f0, 0xfff1d6be, 0x930cc199, 0x00364ef0, + 0xfff1cabe, 0x932ac199, 0x003669f0, 0xfff1bebe, 0x9312c199, 0x003684f0, + 0xfff1b2be, 0x9344c199, 0x00369ff0, 0xfff1a6be, 0x933cc1c1, 0x0036baf0, + 0xfff19abe, 0x9340c1c1, 0x0036d5f0, 0xfff18ebe, 0x0454c1d1, 0x36eff093, + 0xf181be00, 0x0df093ff, 0x78be0037, 0x0ea7fff1, 0xbefffd33, 0x07fff9e5, + 0x0df09310, 0x64be0037, 0x0ea7fff1, 0xbefffce3, 0x07fff9d1, 0x28f09310, + 0x50be0037, 0xc027fff1, 0x43334c07, 0x011042f1, 0x1c07ff00, 0x3740f093, + 0xbec10300, 0xc4fff137, 0xa7e610cc, 0xfeffff4e, 0x93094b99, 0x003745f0, + 0xcb07b383, 0xc4334b87, 0xc1f9c42b, 0xff000050, 0xffb8ce23, 0xf10dbeff, + 0x39c403ff, 0x4bf093c1, 0x00be0037, 0xc159fff1, 0x3768f093, 0xf0f5be00, + 0x87b103ff, 0x2bb4334b, 0x48b1f1b4, 0x93ff0000, 0x003779f0, 0xf80ef103, + 0xfff0da9e, 0x04110321, 0x04014342, 0x411d430b, 0x41030421, 0xfe0b0425, + 0x00000030, 0xf2e3f54e, 0x5f079307, 0xb0273f07, 0x3a037027, 0x82074027, + 0x5c036027, 0x95fb850c, 0x05f3a5f7, 0x25f115f0, 0x01c85ef4, 0x1c40b7b6, + 0x3e0f0725, 0x01ba5eb8, 0x40276807, 0x61237027, 0xf485b127, 0xa95ef795, + 0x301c2301, 0x4f6b4107, 0xd4301c03, 0x7536184a, 0x27301c24, 0x47f38531, + 0x0b733347, 0x301c2374, 0x855e710b, 0x6c1ce001, 0x1cd40180, 0x1ce0206d, + 0x54010663, 0x1ce0641c, 0xe4015a25, 0x01632d1c, 0x1cc0261e, 0x1ce42964, + 0x1e015869, 0x731ce022, 0x1c3400f6, 0x701ce474, 0x131e0149, 0x0f751cc0, + 0x3e781ce4, 0x27081e01, 0x5ef49541, 0x9001013c, 0xc4641c00, 0xcc0a691c, + 0x00130b00, 0x071eb127, 0x2b751cc4, 0xd007b027, 0x0d07a027, 0x5dbe1a27, + 0x00f90006, 0x0000d538, 0x4a0b4507, 0x1a27401d, 0x4fbe0d07, 0xd0070006, + 0x07e6a103, 0xa027dd1e, 0x4c834007, 0xf935070f, 0x00d54444, 0x1d3a0b00, + 0x03045334, 0x270176a1, 0x91c707b0, 0x2bca2bf3, 0x813a76cb, 0x6647a6f4, + 0x270f07b7, 0xc57e2d1c, 0x1eb027fe, 0x96f3810e, 0x071d0734, 0xfeb67e0f, + 0xdc27041e, 0x07c12320, 0xbdf3534c, 0x014103fe, 0xe241cc31, 0x0f07b546, + 0x7e2d1c27, 0xda07fe98, 0xd50bd123, 0xd139061e, 0xa1fe8b7e, 0x07d123f4, + 0xf3d4ce0f, 0x061edc07, 0x23fe7b7e, 0x270f07d1, 0xd1cc201c, 0x01591ef4, + 0x03c90791, 0x7e0f07c4, 0x9c07fe64, 0x9d01611e, 0xb02774d6, 0x0d070b1e, + 0xffe9d9be, 0xb02bb707, 0x34e6f391, 0x457e171e, 0x07b123fe, 0x0741034b, + 0x201c270f, 0x1ef041cc, 0xfe327e04, 0x0f07d419, 0xd1031407, 0xdb0742b6, + 0x217e061e, 0x07d123fe, 0x201c270f, 0x03f4d1cc, 0x07141e94, 0xfe0e7e0f, + 0x61190d1e, 0x057e6103, 0xc20f07fe, 0xb027f568, 0x81198103, 0xfe361ff6, + 0x10270f07, 0x21fdef7e, 0x23f2c3f0, 0xa3f58e01, 0x15f305f0, 0x63fe4ef4, + 0x033f07f0, 0x7ef30538, 0xf043fdec, 0xf083fe0e, 0xf64efe0b, 0xf093f4e3, + 0xbe0038e4, 0x27ffee97, 0x87d02771, 0x0044f14d, 0x87ff0210, 0xf1f49537, + 0x02100034, 0x91f4a5ff, 0xe04c3cf4, 0x0b1e40a7, 0x44334d07, 0x180c44f1, + 0xf4b5ff02, 0x4c3cf4a1, 0x1e40a7e0, 0x3347070b, 0x0c44f144, 0xc5ff0218, + 0xdc3030f4, 0x1e402738, 0xf14d8709, 0x02160044, 0x34f4c5ff, 0x27387c30, + 0x87091e40, 0x0044f147, 0xc5ff0216, 0x402738f4, 0xc53cf4c5, 0xf4c540f4, + 0x48f4c544, 0xf3a1f291, 0x4f38f4b1, 0x20000000, 0x0b1e10a7, 0x44334d07, + 0x180441f1, 0xf4c1ff02, 0x004f3830, 0xa7200000, 0x070b1e60, 0xf1443347, + 0x02180446, 0x3cfec1ff, 0xfcc14107, 0xc11d0740, 0xfac144fb, 0x34f9c148, + 0x5538f8c1, 0x031153fd, 0x68f093d2, 0xf7750038, 0xfe15f605, 0xfb35fc25, + 0xf965fa45, 0x7203f885, 0xffedbabe, 0x2450dce4, 0x8ef4c3ff, 0xd10f27f6, + 0x0b2c4304, 0x63f54efe, 0x07f035f1, 0xf6d207b1, 0xe200b83f, 0xf400f621, + 0x0100002e, 0x2df401c8, 0x037a0100, 0x2c274027, 0x5b3d0720, 0xec33f934, + 0x070000d5, 0x66e32be2, 0x27f231e7, 0x4e2b204c, 0xf431245b, 0x3e3b3b07, + 0x4e3bb207, 0xf435b3ab, 0xad07de3b, 0x0710ac53, 0xbe0b071a, 0x070003c6, + 0x071a0790, 0x03b6be0b, 0x07f43100, 0x100c336d, 0x4c536fab, 0xabc90710, + 0x62c69b04, 0x230d0bc0, 0xea0d0a91, 0x1b033a0c, 0x071a07c0, 0x0394be0c, + 0x07b00700, 0xbe0c071a, 0x31000384, 0x100c33f4, 0x3b074fab, 0x369b04ab, + 0x0d0b3082, 0x0d2ab123, 0xb1233002, 0x4c334907, 0xab0b0710, 0x07402704, + 0x07700714, 0x8ef14384, 0xea2307f5, 0xf000fb13, 0x0100003e, 0x3ff400e6, + 0x01000000, 0x1c2702a8, 0x07410710, 0xf9345b32, 0x00d5ec33, 0x2b610700, + 0x016ff663, 0x312b2a01, 0xcd4deaf4, 0x27012700, 0x07140740, 0x43840770, + 0x96f58ef1, 0x27012725, 0x0310be10, 0xf0d00700, 0x010000de, 0xdff400ba, + 0x01000000, 0x2c270270, 0x07420710, 0xf9345b3d, 0x00d5ec33, 0x2b920700, + 0x939ff693, 0x07cb0701, 0x2b6d07ad, 0x10ac53cd, 0x51276fab, 0x0c071a07, + 0x0002d1be, 0x1a079007, 0xc1be0c07, 0xf4310002, 0x53100c33, 0xc907104c, + 0xc69b04ab, 0x0d0bc062, 0x0d0a9123, 0x02500cea, 0x1a07c01b, 0xa3be0c07, + 0xb0070002, 0x0c071a07, 0x000293be, 0x0c33f431, 0x074fab10, 0x9b04ab3b, + 0x0b308236, 0x2ab1230d, 0x2330020d, 0x334907b1, 0x0b07104c, 0x450704ab, + 0x70071407, 0xf1438407, 0x3df4f58e, 0x01ce0100, 0x1c274027, 0xff1d5e20, + 0x40270027, 0x70071407, 0xf1438407, 0xddf4f58e, 0x01ca0100, 0x2c274027, + 0xff495e20, 0x00002ff4, 0x01c20100, 0x07102c27, 0xfe375e42, 0x2b203c27, + 0x5b4d0736, 0x07263b43, 0x31a2aba4, 0x07cb07f2, 0x5b4b079a, 0x3b235bc3, + 0x109c5346, 0x190724ab, 0xf2150c07, 0x000205be, 0x19075007, 0xf5be0c07, + 0x3a070001, 0x3fabf411, 0x53100c33, 0xc307104c, 0xf345d63b, 0xc59b04ab, + 0xc0a2fd05, 0x51230a0b, 0xc0220a4a, 0x0a0b5123, 0x1907c01b, 0xcbbe0c07, + 0xb0070001, 0x0c071907, 0x0001bbbe, 0x0c33f411, 0xabf94110, 0xabd0074f, + 0x429b9bd4, 0x23da0b9d, 0x39ade2b1, 0x33450701, 0xb4ab104c, 0xf401eb07, + 0x0110ec53, 0xab1b07fc, 0x071fab4f, 0x10cc530e, 0x049b2107, 0x2c9b149b, + 0x41073007, 0x4c53320b, 0x0b2d0710, 0x9b292b34, 0x030302ec, 0x010000ee, + 0x4c534307, 0xeae40b10, 0xee00b32e, 0x07009c2e, 0x5e40270b, 0xd93bfe35, + 0x31204c27, 0x07492bf2, 0x07ad07cb, 0x5bc45b3b, 0x53393b24, 0x23ab10ac, + 0x0c071a07, 0x33bef225, 0x50070001, 0x0c071a07, 0x000123be, 0x6d07f421, + 0xab100c33, 0x104c536f, 0x40abc507, 0xc4a2c69b, 0x51234d0b, 0xc4224d4a, + 0x4d0b5123, 0x1a07c41b, 0xffbe0c07, 0xb0070000, 0x0c071a07, 0x0000efbe, + 0x0c33f421, 0x074fab10, 0x9b04ab2b, 0x0b20a226, 0x4ab1230d, 0x2320220d, + 0x070d0bb1, 0x33f33145, 0xc007104c, 0x393b5b07, 0x54abc22b, 0xed5ef335, + 0x314307fd, 0x333107f2, 0x3fab104c, 0x430b263b, 0xff5542e2, 0x01230b07, + 0x14074027, 0x84077007, 0xf58ef143, 0x27184c27, 0xfd595e18, 0x1c274827, + 0xfd515e18, 0x27184c27, 0xfd915e28, 0x2c274827, 0xfc875e18, 0x2c274827, + 0xfd815e18, 0x27184c27, 0xfc775e28, 0xfec79de2, 0xb123da0b, 0x23fec05e, + 0x5e0d0b91, 0x9123fcc3, 0xad5e0d0b, 0x88fe4efd, 0x13100c00, 0x0e212710, + 0x004e9efe, 0x68001300, 0xbe212710, 0x13000044, 0x13fe8e00, 0x4ef31e10, + 0x1200c8fd, 0x10c8d027, 0xbe202714, 0x8600002c, 0x8e0013d4, 0x270013fd, + 0xee10ccd1, 0x41271013, 0xd407d4d6, 0x4027e41e, 0xde1ed407, 0x099e2127, + 0x20270000, 0x0000039e, 0x01c2fe4e, 0x3310c836, 0x3c274127, 0x47114720, + 0x2101c244, 0x2707f3f0, 0x8e26e630, 0xee10ccfe, 0x012a3027, 0x34ab012b, + 0x11534153, 0x21b642d6, 0xfe8e0307, 0x30274066, 0x4127e91e, 0xe31e3027, + 0x4fff1ea7, 0x9b1401fd, 0x4103122f, 0x13c14433, 0x2e24ab38, 0x0b002732, + 0xc5f3abfe, 0x14c13812, 0xf842ce38, 0x0127f3eb, 0xfe4efe0b, 0x0576d33e, + 0x0e200c27, 0x00059efe, 0x4efe8e00, 0xbeb007fb, 0x07ff7243, 0x931007d0, + 0x0034dbf0, 0xffe8f6be, 0xc027d746, 0xd2010b1e, 0xe8bec103, 0xd403ffe8, + 0xf0931c07, 0xda0034cd, 0xfb8eedcb, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x42746e49, 0x0a3a6675, + 0x6c202000, 0x5f32676f, 0x65676170, 0x7a69735f, 0x20202065, 0x5f6d756e, + 0x65676170, 0x66282073, 0x29656572, 0x2020000a, 0x30252020, 0x20206432, + 0x20202020, 0x20202020, 0x35252020, 0x28202064, 0x62206425, 0x73657479, + 0x55000a29, 0x6f6c626e, 0x6e696b63, 0x65722067, 0x657a6973, 0x25203a73, + 0x54000a64, 0x6c61746f, 0x6c6c6120, 0x7461636f, 0x25206465, 0x28206438, + 0x64657375, 0x2c642520, 0x666e7520, 0x61656572, 0x20656c62, 0x202c6425, + 0x65657266, 0x29642520, 0x656e000a, 0x705f7478, 0x745f6369, 0x61705f6f, + 0x20657372, 0x20202020, 0x000a7525, 0x6d726946, 0x65726177, 0x72657620, + 0x6e6f6973, 0x656f6420, 0x6f6e2073, 0x616d2074, 0x20686374, 0x64726168, + 0x65726177, 0x46000a21, 0x776d7269, 0x20657261, 0x706d6f63, 0x64656c69, + 0x726f6620, 0x72657620, 0x6e6f6973, 0x25783020, 0x0a783830, 0x72614800, + 0x72617764, 0x65722065, 0x74726f70, 0x20202073, 0x76202020, 0x69737265, + 0x30206e6f, 0x38302578, 0x46000a78, 0x776d7269, 0x20657261, 0x73726576, + 0x206e6f69, 0x73656f64, 0x746f6e20, 0x74616d20, 0x68206863, 0x77647261, + 0x20657261, 0x73726576, 0x006e6f69, 0x64726168, 0x65726177, 0x656f6420, + 0x6f6e2073, 0x75732074, 0x726f7070, 0x6e652074, 0x69646f63, 0x4c00676e, + 0x54435f45, 0x253a4c52, 0x4e202c78, 0x45524f43, 0x78253a53, 0x494c202c, + 0x4f435f43, 0x4e5f4552, 0x253a4d55, 0x48202c64, 0x4f435f57, 0x4e5f4552, + 0x253a4d55, 0x000a2064, 0x61766e69, 0x2064696c, 0x64726168, 0x65726177, + 0x726f6320, 0x756e2065, 0x7265626d, 0x6e203a73, 0x65626d75, 0x666f2072, + 0x72616820, 0x65726164, 0x726f6320, 0x73692065, 0x6c6c6920, 0x6c616765, + 0x66655200, 0x6e657265, 0x70206563, 0x75746369, 0x74206572, 0x656c6261, + 0x6469000a, 0x203a2020, 0x20617473, 0x20657375, 0x20666572, 0x20317970, + 0x20327970, 0x20706d63, 0x20746d66, 0x5f69626d, 0x20727470, 0x69626d20, + 0x6761705f, 0x73287365, 0x29657a69, 0x74702020, 0x6f742072, 0x6f623a70, + 0x25000a74, 0x3a206433, 0x64332520, 0x64332520, 0x64332520, 0x64332520, + 0x64332520, 0x64332520, 0x64332520, 0x20702520, 0x36252020, 0x64252864, + 0x20202029, 0x253a7025, 0x4c000a70, 0x20657669, 0x74636970, 0x20657275, + 0x6c626174, 0x4e000a65, 0x3a206d75, 0x20642520, 0x6c4f2020, 0x74736564, + 0x0a642520, 0x78646900, 0x73203a20, 0x75206174, 0x70206573, 0x64696369, + 0x66657220, 0x6c206469, 0x73656e69, 0x20636e79, 0x20666572, 0x76696c20, + 0x66657265, 0x20202073, 0x65722020, 0x69703266, 0x25000a63, 0x3a206433, + 0x64332520, 0x64332520, 0x25202020, 0x20206433, 0x64332520, 0x25202020, + 0x25206436, 0x20206433, 0x30257830, 0x25207838, 0x25206433, 0x25206433, + 0x25206433, 0x25206433, 0x25206433, 0x25206433, 0x25206433, 0x25206433, + 0x25206433, 0x25206433, 0x25206433, 0x25206433, 0x25206433, 0x25206433, + 0x25206433, 0x000a6433, 0x76697250, 0x20657461, 0x62666572, 0x3a6b6e61, + 0x6c6f6320, 0x3020726f, 0x20782578, 0x5f78616d, 0x66667562, 0x20737265, + 0x6d207525, 0x25207762, 0x626d2075, 0x75252068, 0x73616220, 0x64615f65, + 0x30207264, 0x38302578, 0x20000a78, 0x64692020, 0x74732078, 0x65722061, + 0x64615f66, 0x20207264, 0x77626d20, 0x626d2020, 0x20000a68, 0x33252020, + 0x33252075, 0x78302075, 0x78383025, 0x6528000a, 0x6f20646e, 0x72702066, + 0x74617669, 0x65722065, 0x6e616266, 0x7564206b, 0x0a29706d, 0x44495600, + 0x46204f45, 0x54532057, 0x20455441, 0x504d5544, 0x636e4520, 0x7265646f, + 0x45504a3d, 0x73000a47, 0x6f2d7465, 0x70207470, 0x69666f72, 0x676e696c, + 0x7261203a, 0x756d2067, 0x62207473, 0x20302065, 0x3120726f, 0x74657300, + 0x74706f2d, 0x63736520, 0x6e697061, 0x61203a67, 0x6d206772, 0x20747375, + 0x30206562, 0x20726f20, 0x65730031, 0x706f2d74, 0x616e2074, 0x6620756c, + 0x616d726f, 0x55203a74, 0x6f6e6b6e, 0x66206e77, 0x616d726f, 0x65730074, + 0x706f2d74, 0x616e2074, 0x6620756c, 0x616d726f, 0x55203a74, 0x7075736e, + 0x74726f70, 0x66206465, 0x616d726f, 0x65730074, 0x706f2d74, 0x69642074, + 0x72656666, 0x20746e65, 0x65727473, 0x62206d61, 0x65647469, 0x73687470, + 0x746f6e20, 0x70757320, 0x74726f70, 0x73006465, 0x6f2d7465, 0x65207470, + 0x646f636e, 0x74732065, 0x6d616572, 0x74696220, 0x74706564, 0x75203a68, + 0x7075736e, 0x74726f70, 0x76206465, 0x65756c61, 0x74657300, 0x74706f2d, + 0x72686320, 0x5f616d6f, 0x6d726f66, 0x203b7461, 0x6f726863, 0x6620616d, + 0x616d726f, 0x6f6e2074, 0x75732074, 0x726f7070, 0x2e646574, 0x74657300, + 0x74706f2d, 0x69626d20, 0x206f666e, 0x7074756f, 0x203a7475, 0x20677261, + 0x7473756d, 0x20656220, 0x726f2030, 0x73003120, 0x6f2d7465, 0x6d207470, + 0x65732076, 0x68637261, 0x6e617220, 0x203a6567, 0x61766e69, 0x2064696c, + 0x72612078, 0x65730067, 0x706f2d74, 0x766d2074, 0x61657320, 0x20686372, + 0x676e6172, 0x69203a65, 0x6c61766e, 0x79206469, 0x67726120, 0x74657300, + 0x74706f2d, 0x66204220, 0x656d6172, 0x4e203a73, 0x7320746f, 0x6f707075, + 0x64657472, 0x74657300, 0x74706f2d, 0x504f4720, 0x70797420, 0x55203a65, + 0x7075736e, 0x74726f70, 0x74206465, 0x00657079, 0x2d746573, 0x2074706f, + 0x7420626d, 0x3a657079, 0x766e4920, 0x64696c61, 0x746e6920, 0x73206172, + 0x63656c65, 0x6e6f6974, 0x74657300, 0x74706f2d, 0x42475220, 0x206f7420, + 0x3a565559, 0x736e7520, 0x6f707075, 0x64657472, 0x646f6d20, 0x65730065, + 0x706f2d74, 0x6f682074, 0x70207473, 0x6f746f72, 0x206c6f63, 0x6e697270, + 0x203a7374, 0x20677261, 0x7473756d, 0x20656220, 0x726f2030, 0x53003120, + 0x69646e65, 0x4a20676e, 0x445f424f, 0x45555145, 0x0a444555, 0x45564d00, + 0x4655425f, 0x5f524546, 0x454e4547, 0x3a4c4152, 0x7a697320, 0x6f742065, + 0x6d73206f, 0x206c6c61, 0x72206f74, 0x20646165, 0x64616568, 0x002e7265, + 0x5f45564d, 0x46465542, 0x475f5245, 0x52454e45, 0x203a4c41, 0x66667562, + 0x70207265, 0x746e696f, 0x69207265, 0x554e2073, 0x002e4c4c, 0x5f45564d, + 0x46465542, 0x475f5245, 0x52454e45, 0x203a4c41, 0x66667562, 0x73207265, + 0x20657a69, 0x7a207369, 0x2e6f7265, 0x45564d00, 0x4655425f, 0x5f524546, + 0x454e4547, 0x3a4c4152, 0x6e6f6320, 0x20676966, 0x657a6973, 0x20736920, + 0x6f72657a, 0x564d002e, 0x55425f45, 0x52454646, 0x4e45475f, 0x4c415245, + 0x6e75203a, 0x70707573, 0x6574726f, 0x79742064, 0x69206570, 0x564d206e, + 0x4f435f45, 0x425f4d4d, 0x495f4655, 0x415f514e, 0x2e524444, 0x6f725700, + 0x7320676e, 0x20657a69, 0x6220666f, 0x65666675, 0x61702072, 0x206d6172, + 0x65746172, 0x6e6f635f, 0x6c6f7274, 0x74657300, 0x74706f2d, 0x74696220, + 0x74617220, 0x66203a65, 0x7420726f, 0x20657079, 0x2c46464f, 0x72617420, + 0x20746567, 0x65746172, 0x6f687320, 0x20646c75, 0x7a206562, 0x006f7265, + 0x2d746573, 0x2074706f, 0x20746962, 0x65746172, 0x6e75203a, 0x70707573, + 0x6574726f, 0x616d2064, 0x69622078, 0x74617274, 0x65730065, 0x706f2d74, + 0x69622074, 0x61722074, 0x203a6574, 0x75736e75, 0x726f7070, 0x20646574, + 0x67726174, 0x72207465, 0x00657461, 0x5f45564d, 0x46465542, 0x505f5245, + 0x4d415241, 0x7a697320, 0x6f742065, 0x6d73206f, 0x2e6c6c61, 0x736e5500, + 0x6f707075, 0x64657472, 0x636e6520, 0x2065646f, 0x61726170, 0x6e69206d, + 0x45564d20, 0x4d4f435f, 0x55425f4d, 0x4e495f46, 0x44415f51, 0x002e5244, + 0x2a2a2a2a, 0x20732520, 0x2a2a2a2a, 0x3a435020, 0x25783020, 0x20202078, + 0x203a5253, 0x78257830, 0x46202020, 0x203a5241, 0x78257830, 0x5220000a, + 0x6432255b, 0x203d205d, 0x30257830, 0x000a7838, 0x73616d20, 0x20726574, + 0x20642523, 0x61207325, 0x74726f62, 0x000a6465, 0x46202020, 0x544c5541, + 0x7830203a, 0x000a7825, 0x46202020, 0x52444441, 0x7830203a, 0x000a7825, + 0x43544157, 0x474f4448, 0x71726920, 0x53415200, 0x42412043, 0x0054524f, + 0x20554d4d, 0x524f4241, 0x2a2a0054, 0x52202a2a, 0x25435341, 0x42412064, + 0x2054524f, 0x2a2a2a2a, 0x2020000a, 0x20204350, 0x203d2020, 0x30257830, + 0x000a7838, 0x52532020, 0x20202020, 0x7830203d, 0x78383025, 0x2020000a, + 0x20524146, 0x203d2020, 0x30257830, 0x000a7838, 0x5b522020, 0x5d643225, + 0x30203d20, 0x38302578, 0x57000a78, 0x68637461, 0x00676f64, 0x616e7944, + 0x2063696d, 0x6e616863, 0x69206567, 0x6874206e, 0x756e2065, 0x7265626d, + 0x20666f20, 0x65726f63, 0x73692073, 0x746f6e20, 0x70757320, 0x74726f70, + 0x4e006465, 0x6e69206f, 0x66756274, 0x61707320, 0x66206563, 0x6d20726f, + 0x65747361, 0x61732072, 0x61206576, 0x00616572, 0x646e6553, 0x20676e69, + 0x54495753, 0x44454843, 0x0a4e495f, 0x6e655300, 0x676e6964, 0x4f525020, + 0x53534543, 0x000a4445, 0x65636552, 0x64657669, 0x49575320, 0x0a484354, + 0x63655200, 0x65766965, 0x4f4a2064, 0x6c662042, 0x3d736761, 0x66207525, + 0x656d6172, 0x75253d73, 0x726f6320, 0x253d7365, 0x4a000a75, 0x6d20626f, + 0x61737365, 0x203a6567, 0x626d754e, 0x6f207265, 0x6f632066, 0x20736572, + 0x206e6163, 0x20746f6e, 0x7a206562, 0x2e6f7265, 0x626f4a00, 0x73656d20, + 0x65676173, 0x754e203a, 0x7265626d, 0x20666f20, 0x65726f63, 0x6f742073, + 0x616c206f, 0x2e656772, 0x626f4a00, 0x73656d20, 0x65676173, 0x6e55203a, + 0x70707573, 0x6574726f, 0x6c662064, 0x20736761, 0x2e746573, 0x626f4a00, + 0x73656d20, 0x65676173, 0x754e203a, 0x7265626d, 0x20666f20, 0x6d617266, + 0x74207365, 0x6c206f6f, 0x65677261, 0x6f6e002e, 0x61707320, 0x69206563, + 0x6f6a206e, 0x75712062, 0x00657565, 0x5f544553, 0x4954504f, 0x66204e4f, + 0x656c6961, 0x25203a64, 0x00000a73, 0x562f3556, 0x504a2d37, 0x4e454745, + 0x00203a43, 0x69636552, 0x64657665, 0x54455320, 0x54504f5f, 0x204e4f49, + 0x61746164, 0x7a69735f, 0x75252065, 0x74706f20, 0x646e695f, 0x25207865, + 0x72612075, 0x78302067, 0x78383025, 0x6553000a, 0x6f697373, 0x706f206e, + 0x6e6f6974, 0x61632073, 0x6e6f206e, 0x6220796c, 0x68632065, 0x65676e61, + 0x6e692064, 0x4f545320, 0x44455050, 0x61747320, 0x002e6574, 0x6d726946, + 0x65726177, 0x20736920, 0x20746f6e, 0x70707573, 0x2074726f, 0x73696874, + 0x74706f20, 0x206e6f69, 0x6e692d2d, 0x715f7469, 0x62006270, 0x77646e61, + 0x68746469, 0x6d696c20, 0x203a7469, 0x20746f6e, 0x70707573, 0x6574726f, + 0x65730064, 0x706f2d74, 0x616d2074, 0x756e5f78, 0x6f635f6d, 0x3a736572, + 0x766e4920, 0x64696c61, 0x6c617620, 0x46006575, 0x776d7269, 0x20657261, + 0x6e207369, 0x7320746f, 0x6f707075, 0x74207472, 0x20736968, 0x6974706f, + 0x2d206e6f, 0x7264672d, 0x6d756e5f, 0x00726562, 0x6d726946, 0x65726177, + 0x20736920, 0x20746f6e, 0x70707573, 0x2074726f, 0x73696874, 0x74706f20, + 0x206e6f69, 0x64672d2d, 0x65705f72, 0x646f6972, 0x72694600, 0x7261776d, + 0x73692065, 0x746f6e20, 0x70757320, 0x74726f70, 0x69687420, 0x706f2073, + 0x6e6f6974, 0x692d2d20, 0x5f74696e, 0x00697071, 0x6765706a, 0x20636e65, + 0x2d746573, 0x3a74706f, 0x6b6e5520, 0x6e776f6e, 0x74706f20, 0x206e6f69, + 0x65646e69, 0x65730078, 0x706f2d74, 0x75682074, 0x616d6666, 0x6174206e, + 0x3a656c62, 0x72726520, 0x6920726f, 0x6174206e, 0x00656c62, 0x2d746573, + 0x2074706f, 0x66667568, 0x206e616d, 0x6c626174, 0x55203a65, 0x6f6e6b6e, + 0x74206e77, 0x656c6261, 0x70797420, 0x65730065, 0x706f2d74, 0x75712074, + 0x20746e61, 0x6c626174, 0x55203a65, 0x6f6e6b6e, 0x74206e77, 0x00657079, + 0x5f544553, 0x4954504f, 0x4f204e4f, 0x63202c4b, 0x69666e6f, 0x6e696d72, + 0x46000a67, 0x776d7269, 0x20657261, 0x6e207369, 0x7320746f, 0x6f707075, + 0x74207472, 0x20736968, 0x6974706f, 0x2d206e6f, 0x696e692d, 0x70715f74, + 0x65520070, 0x76696563, 0x49206465, 0x5f454c44, 0x0a4b4341, 0x746f4700, + 0x4c444920, 0x43415f45, 0x6977204b, 0x756f6874, 0x65732074, 0x4920746e, + 0x2e454c44, 0x63655200, 0x65766965, 0x45442064, 0x2c475542, 0x67736d20, + 0x61643e2d, 0x735f6174, 0x3d657a69, 0x202c6425, 0x6576656c, 0x64253d6c, + 0x6573000a, 0x6e69646e, 0x65722067, 0x6e6f7073, 0x63206573, 0x2065646f, + 0x000a6425, 0x454c4449, 0x64692820, 0x735f656c, 0x5f746e65, 0x685f6f74, + 0x2074736f, 0x202c7525, 0x75626e69, 0x6e635f66, 0x75252074, 0x756f202c, + 0x66756274, 0x746e635f, 0x29752520, 0x2020000a, 0x61766120, 0x77206c69, + 0x7364726f, 0x206e6920, 0x6d6d6f63, 0x65757120, 0x3a736575, 0x67736d20, + 0x20752520, 0x75626e69, 0x75252066, 0x74756f20, 0x20667562, 0x000a7525, + 0x646e6553, 0x20676e69, 0x46464552, 0x454d4152, 0x7325000a, 0x20732520, + 0x2065766d, 0x66667562, 0x66207265, 0x656d6172, 0x6e692820, 0x5f667562, + 0x20746e63, 0x202c7525, 0x6274756f, 0x635f6675, 0x2520746e, 0x000a2975, + 0x20202020, 0x74736f68, 0x6e61685f, 0x20656c64, 0x30257830, 0x30257838, + 0x75207838, 0x5f726573, 0x61746164, 0x6761745f, 0x25783020, 0x25783830, + 0x0a783830, 0x20202000, 0x61726620, 0x665f656d, 0x7367616c, 0x25783020, + 0x20783830, 0x20706f74, 0x62207525, 0x2520746f, 0x6f652075, 0x75252073, + 0x6a657220, 0x0a752520, 0x20202000, 0x726f6620, 0x2074616d, 0x30257830, + 0x76207834, 0x62697369, 0x2520656c, 0x75257875, 0x2020000a, 0x696d2020, + 0x665f696e, 0x656d6172, 0x2820795f, 0x252d7525, 0x000a2975, 0x20202020, + 0x6e616c70, 0x30207365, 0x38302578, 0x30202c78, 0x38302578, 0x20000a78, + 0x73202020, 0x73657a69, 0x2c752520, 0x0a752520, 0x20202000, 0x6f726320, + 0x25207870, 0x72632075, 0x2079706f, 0x61207525, 0x5f636266, 0x62735f77, + 0x20752520, 0x61207525, 0x5f636266, 0x61726170, 0x3020736d, 0x38302578, + 0x20000a78, 0x70202020, 0x206b6565, 0x30257830, 0x30257832, 0x30257832, + 0x30257832, 0x000a7832, 0x20202020, 0x6e616c70, 0x6f745f65, 0x78302070, + 0x78383025, 0x25783020, 0x20783830, 0x30257830, 0x000a7838, 0x20202020, + 0x6e616c70, 0x6f625f65, 0x78302074, 0x78383025, 0x25783020, 0x20783830, + 0x30257830, 0x000a7838, 0x20202020, 0x69727473, 0x20736564, 0x64252020, + 0x20642520, 0x000a6425, 0x20202020, 0x2078616d, 0x25787525, 0x25000a75, + 0x73252073, 0x65766d20, 0x66756220, 0x20726566, 0x73746962, 0x61657274, + 0x6928206d, 0x6675626e, 0x746e635f, 0x2c752520, 0x74756f20, 0x5f667562, + 0x20746e63, 0x0a297525, 0x20202000, 0x74696220, 0x65727473, 0x665f6d61, + 0x7367616c, 0x25783020, 0x20783830, 0x66736f65, 0x20752520, 0x20666f65, + 0x65207525, 0x2520736f, 0x6f652075, 0x20736266, 0x73207525, 0x73746174, + 0x0a752520, 0x20202000, 0x64646120, 0x78302072, 0x78383025, 0x6c6c6120, + 0x2520636f, 0x666f2075, 0x75252066, 0x6c696620, 0x7525206c, 0x7325000a, + 0x20732520, 0x2065766d, 0x66667562, 0x70207265, 0x6d617261, 0x72657465, + 0x7974202c, 0x25206570, 0x25000a75, 0x73252073, 0x65766d20, 0x66756220, + 0x20726566, 0x656e6567, 0x206c6172, 0x626e6928, 0x635f6675, 0x2520746e, + 0x6f202c75, 0x75627475, 0x6e635f66, 0x75252074, 0x20000a29, 0x74202020, + 0x20657079, 0x202c7525, 0x666e6f63, 0x735f6769, 0x20657a69, 0x000a7525, + 0x20202020, 0x666e6f63, 0x30206769, 0x32302578, 0x78302078, 0x78323025, + 0x25783020, 0x20783230, 0x30257830, 0x000a7832, 0x20202020, 0x66667562, + 0x705f7265, 0x30207274, 0x38302578, 0x62202c78, 0x65666675, 0x69735f72, + 0x2520657a, 0x48000a75, 0x2074736f, 0x6e697270, 0x75622074, 0x72656666, + 0x52524520, 0x202e524f, 0x25207325, 0x766d2073, 0x75622065, 0x72656666, + 0x74697720, 0x6e752068, 0x776f6e6b, 0x6f63206e, 0x25206564, 0x47000a75, + 0x4f00746f, 0x55505455, 0x6e490054, 0x696c6176, 0x756f2064, 0x74757074, + 0x66756220, 0x2e726566, 0x766e4900, 0x64696c61, 0x66756220, 0x20726566, + 0x4d206e69, 0x435f4556, 0x5f4d4d4f, 0x5f465542, 0x5154554f, 0x4444415f, + 0x65282052, 0x63657078, 0x20646574, 0x5f65766d, 0x66667562, 0x625f7265, + 0x74737469, 0x6d616572, 0x53002e29, 0x69646e65, 0x4900676e, 0x5455504e, + 0x63655200, 0x65766965, 0x554f2064, 0x54555054, 0x554c465f, 0x73204853, + 0x65746174, 0x20752520, 0x7074756f, 0x625f7475, 0x6b636f6c, 0x25206465, + 0x4f000a75, 0x75707475, 0x6c662074, 0x20687375, 0x796c6e6f, 0x6c6c6120, + 0x6465776f, 0x65687720, 0x7473206e, 0x6570706f, 0x6f202c64, 0x66612072, + 0x20726574, 0x70736572, 0x65736e6f, 0x45535f20, 0x4e455551, 0x505f4543, + 0x4d415241, 0x52455445, 0x65530053, 0x6e69646e, 0x554f2067, 0x54555054, + 0x554c465f, 0x44454853, 0x6553000a, 0x6e69646e, 0x4e492067, 0x5f545550, + 0x53554c46, 0x0a444548, 0x63655200, 0x65766965, 0x4e492064, 0x5f545550, + 0x53554c46, 0x49000a48, 0x5455504e, 0x554c465f, 0x6f204853, 0x20796c6e, + 0x6f6c6c61, 0x20646577, 0x6e656877, 0x206e6920, 0x504f5453, 0x20444550, + 0x74617473, 0x52002e65, 0x69656365, 0x20646576, 0x000a4f47, 0x5f45564d, + 0x55514552, 0x5f545345, 0x45444f43, 0x3a4f475f, 0x70204120, 0x69766572, + 0x2073756f, 0x74617473, 0x72742065, 0x69736e61, 0x6e6f6974, 0x20736920, + 0x6c697473, 0x6570206c, 0x6e69646e, 0x4e002e67, 0x6f6a206f, 0x6e692062, + 0x626f6a20, 0x65757120, 0x002e6575, 0x65636552, 0x64657669, 0x4f545320, + 0x4d000a50, 0x525f4556, 0x45555145, 0x435f5453, 0x5f45444f, 0x504f5453, + 0x2041203a, 0x76657270, 0x73756f69, 0x61747320, 0x74206574, 0x736e6172, + 0x6f697469, 0x7369206e, 0x69747320, 0x70206c6c, 0x69646e65, 0x002e676e, + 0x6e616843, 0x73206567, 0x65746174, 0x206f7420, 0x000a6425, 0x646e6553, + 0x20676e69, 0x54415453, 0x48435f45, 0x45474e41, 0x77656e20, 0x6174735f, + 0x253d6574, 0x53000a75, 0x65746174, 0x61686320, 0x2065676e, 0x646e6570, + 0x20676e69, 0x74617473, 0x64253d65, 0x6e657020, 0x676e6964, 0x0a64253d, + 0x63655200, 0x65766965, 0x55442064, 0x000a504d, 0x5f45564d, 0x55514552, + 0x5f545345, 0x45444f43, 0x4d55445f, 0x6f6e2050, 0x6c612074, 0x65776f6c, + 0x6f662064, 0x72702072, 0x6365746f, 0x20646574, 0x73736573, 0x736e6f69, + 0x626e002e, 0x75622072, 0x72656666, 0x65682073, 0x203a646c, 0x69207525, + 0x7475706e, 0x20752520, 0x7074756f, 0x000a7475, 0x69617661, 0x6f77206c, + 0x20736472, 0x63206e69, 0x206d6d6f, 0x75657571, 0x203a7365, 0x2067736d, + 0x69207525, 0x6675626e, 0x20752520, 0x6274756f, 0x25206675, 0x52000a75, + 0x69656365, 0x20646576, 0x474e4950, 0x6e65000a, 0x65722d63, 0x72662d66, + 0x3a656d61, 0x206f6e20, 0x6f707865, 0x20646573, 0x6d617266, 0x6f742065, + 0x6c657220, 0x65736165, 0x69702800, 0x2029676e, 0x65746e69, 0x6c616e72, + 0x72726520, 0x7720726f, 0x20687469, 0x2d666572, 0x6d617266, 0x78652d65, + 0x63617274, 0x6e6f6974, 0x63656d20, 0x696e6168, 0x002e6d73, 0x65646f63, + 0x25203d20, 0x54000a64, 0x736e6172, 0x6f697469, 0x4946206e, 0x6f204f46, + 0x66726576, 0x00776f6c, 0x75736e55, 0x726f7070, 0x20646574, 0x7373656d, + 0x20656761, 0x65646f63, 0x6e65002e, 0x65722d63, 0x72662d66, 0x3a656d61, + 0x746f6e20, 0x6f6e6520, 0x20686775, 0x65746e69, 0x6c616e72, 0x6f6c7320, + 0x4d007374, 0x666e6942, 0x6e69206f, 0x20747570, 0x20746f6e, 0x6f6c6c61, + 0x20646577, 0x20726f66, 0x746f7270, 0x65746365, 0x65732064, 0x6f697373, + 0x4d002e6e, 0x666e6942, 0x6e69206f, 0x20747570, 0x66667562, 0x68207265, + 0x69207361, 0x67656c6c, 0x6c206c61, 0x7461636f, 0x006e6f69, 0x20646142, + 0x6e69424d, 0x69206f66, 0x7475706e, 0x7375203b, 0x735f6465, 0x20657a69, + 0x72747328, 0x5b656469, 0x20295d31, 0x7473756d, 0x746f6e20, 0x20656220, + 0x6772616c, 0x74207265, 0x206e6168, 0x5f78616d, 0x657a6973, 0x74732820, + 0x65646972, 0x295d305b, 0x6142000a, 0x424d2064, 0x6f666e69, 0x706e6920, + 0x62207475, 0x65666675, 0x4e002e72, 0x7573206f, 0x726f7070, 0x6f662074, + 0x68742072, 0x62207369, 0x65666675, 0x6f632072, 0x20726f6c, 0x6d726f66, + 0x002e7461, 0x64726168, 0x65726177, 0x656f6420, 0x6f6e2073, 0x75732074, + 0x726f7070, 0x46412074, 0x69204342, 0x7475706e, 0x636e6500, 0x6e69646f, + 0x6f6e2067, 0x75732074, 0x726f7070, 0x20646574, 0x7420666f, 0x20736968, + 0x622d3031, 0x69207469, 0x7475706e, 0x726f6620, 0x0074616d, 0x64726168, + 0x65726177, 0x656f6420, 0x6f6e2073, 0x75732074, 0x726f7070, 0x564d2074, + 0x4f465f45, 0x54414d52, 0x5655595f, 0x5f303234, 0x30313050, 0x45564d00, + 0x4655425f, 0x5f524546, 0x4d415246, 0x4c465f45, 0x495f4741, 0x5245544e, + 0x4543414c, 0x74657320, 0x6e49203a, 0x6c726574, 0x64656361, 0x636e6520, + 0x2065646f, 0x20746f6e, 0x70707573, 0x6574726f, 0x46002e64, 0x2067616c, + 0x5f45564d, 0x46465542, 0x465f5245, 0x454d4152, 0x414c465f, 0x4f425f47, + 0x49465f54, 0x20545352, 0x756f6873, 0x6e20646c, 0x6220746f, 0x65732065, + 0x46002e74, 0x2067616c, 0x5f45564d, 0x46465542, 0x465f5245, 0x454d4152, + 0x414c465f, 0x4f425f47, 0x52505f54, 0x4e455345, 0x68732054, 0x646c756f, + 0x746f6e20, 0x20656220, 0x2e746573, 0x73754d00, 0x61682074, 0x76206576, + 0x62697369, 0x665f656c, 0x656d6172, 0x6469775f, 0x3e206874, 0x002e3020, + 0x7473754d, 0x76616820, 0x69762065, 0x6c626973, 0x72665f65, 0x5f656d61, + 0x67696568, 0x3e207468, 0x002e3020, 0x69736976, 0x5f656c62, 0x6d617266, + 0x69775f65, 0x20687464, 0x206f6f74, 0x6772616c, 0x69760065, 0x6c626973, + 0x72665f65, 0x5f656d61, 0x67696568, 0x74207468, 0x6c206f6f, 0x65677261, + 0x746f5200, 0x6f697461, 0x6f6e206e, 0x75732074, 0x726f7070, 0x20646574, + 0x20726f66, 0x43424641, 0x706e6920, 0x002e7475, 0x6c616353, 0x20676e69, + 0x20746f6e, 0x70707573, 0x6574726f, 0x6f662064, 0x46412072, 0x69204342, + 0x7475706e, 0x694d002e, 0x726f7272, 0x20676e69, 0x6e207369, 0x7320746f, + 0x6f707075, 0x64657472, 0x726f6620, 0x42464120, 0x6e692043, 0x2e747570, + 0x6f726300, 0x6e697070, 0x6f6e2067, 0x75732074, 0x726f7070, 0x20646574, + 0x20726f66, 0x43424641, 0x706e6920, 0x41007475, 0x20434246, 0x6e616c70, + 0x20302065, 0x6e207369, 0x6920746f, 0x6176206e, 0x2064696c, 0x6f6d656d, + 0x72207972, 0x6f696765, 0x41002e6e, 0x20434246, 0x6e616c70, 0x20302065, + 0x657a6973, 0x6f687320, 0x20646c75, 0x20746f6e, 0x7a206562, 0x2e6f7265, + 0x42464100, 0x6f622043, 0x6d6f7474, 0x616c7020, 0x7020656e, 0x746e696f, + 0x73207265, 0x6c756f68, 0x61682064, 0x62206576, 0x206e6565, 0x6f72657a, + 0x4641002e, 0x70204342, 0x656e616c, 0x73203120, 0x20657a69, 0x756f6873, + 0x6220646c, 0x657a2065, 0x002e6f72, 0x43424641, 0x706e6920, 0x203a7475, + 0x6469775f, 0x695f6874, 0x75735f6e, 0x62726570, 0x6b636f6c, 0x6f742073, + 0x6d73206f, 0x206c6c61, 0x20726f66, 0x6d617266, 0x63530065, 0x6e696c61, + 0x6f6e2067, 0x75732074, 0x726f7070, 0x20646574, 0x20726f66, 0x6e616c70, + 0x69207261, 0x7475706e, 0x616d002e, 0x72665f78, 0x5f656d61, 0x74646977, + 0x68732068, 0x646c756f, 0x20656220, 0x6772616c, 0x74207265, 0x206e6168, + 0x6f72657a, 0x616d002e, 0x72665f78, 0x5f656d61, 0x67696568, 0x73207468, + 0x6c756f68, 0x65622064, 0x72616c20, 0x20726567, 0x6e616874, 0x72657a20, + 0x55002e6f, 0x7075736e, 0x74726f70, 0x70206465, 0x616e616c, 0x75622072, + 0x72656666, 0x6c6f6320, 0x6620726f, 0x616d726f, 0x53002e74, 0x64697274, + 0x6f742065, 0x6d73206f, 0x206c6c61, 0x68206f74, 0x20646c6f, 0x5f78616d, + 0x6d617266, 0x69775f65, 0x2e687464, 0x616c7000, 0x745f656e, 0x6d20706f, + 0x20747375, 0x69206562, 0x656d206e, 0x79726f6d, 0x67657220, 0x206e6f69, + 0x4d415246, 0x46554245, 0x6c70002e, 0x5f656e61, 0x20746f62, 0x756f6873, + 0x6220646c, 0x657a2065, 0x66206f72, 0x6e20726f, 0x692d6e6f, 0x7265746e, + 0x6563616c, 0x74732064, 0x6d616572, 0x6441002e, 0x73657264, 0x666f2073, + 0x756e7520, 0x20646573, 0x6e616c70, 0x68732065, 0x646c756f, 0x20656220, + 0x6f72657a, 0x7453002e, 0x65646972, 0x20666f20, 0x73756e75, 0x70206465, + 0x656e616c, 0x6f687320, 0x20646c75, 0x7a206562, 0x2e6f7265, 0x73754d00, + 0x61682074, 0x76206576, 0x62697369, 0x665f656c, 0x656d6172, 0x6469775f, + 0x3c206874, 0x616d203d, 0x72665f78, 0x5f656d61, 0x74646977, 0x4d002e68, + 0x20747375, 0x65766168, 0x73697620, 0x656c6269, 0x6172665f, 0x685f656d, + 0x68676965, 0x3d3c2074, 0x78616d20, 0x6172665f, 0x685f656d, 0x68676965, + 0x5f002e74, 0x5f504f54, 0x53455250, 0x20544e45, 0x5f20726f, 0x5f444e45, + 0x535f464f, 0x41455254, 0x756d204d, 0x62207473, 0x65732065, 0x49002e74, + 0x6c61766e, 0x62206469, 0x65666675, 0x6e692072, 0x45564d20, 0x4d4f435f, + 0x55425f4d, 0x4e495f46, 0x44415f51, 0x28205244, 0x65707865, 0x64657463, + 0x65766d20, 0x6675625f, 0x5f726566, 0x6d617266, 0x726f2065, 0x65766d20, + 0x6675625f, 0x5f726566, 0x61726170, 0x002e296d, 0x20303234, 0x34203e2d, + 0x63203232, 0x65766e6f, 0x6f697372, 0x6f6e206e, 0x75732074, 0x726f7070, + 0x2e646574, 0x49464a00, 0x41520046, 0x00304353, 0x43534152, 0x41520031, + 0x00324353, 0x43534152, 0x41520033, 0x00344353, 0x414d4453, 0x4d445600, + 0x45520041, 0x41460046, 0x5f4c4154, 0x4f525245, 0x4e555f52, 0x49464544, + 0x0044454e, 0x41544146, 0x52455f4c, 0x5f524f52, 0x43424641, 0x504e495f, + 0x435f5455, 0x5552524f, 0x46005450, 0x4c415441, 0x5252455f, 0x415f524f, + 0x5f434246, 0x5f464552, 0x52524f43, 0x00545055, 0x41544146, 0x52455f4c, + 0x5f524f52, 0x4449534c, 0x5254435f, 0x414d5f4c, 0x524f4358, 0x4f4e5f45, + 0x45535f54, 0x00000054, 0x0000bf72, 0x0000bf78, 0x0000bf7e, 0x0000bf84, + 0x0000bf8a, 0x0000bf90, 0x0000bf95, 0x0000bf9a, 0x0000bf9e, 0x0000bfb4, + 0x0000bfd3, 0x0000bff0, 0x0000de83, 0x00007bcf, 0x00007bcf, 0x00007bcf, + 0x4649424d, 0x4745504a, 0x00010001, 0x16131008, 0x221d1b1a, 0x18161010, + 0x25221d1b, 0x1b1a1613, 0x2622221d, 0x1b1a1616, 0x2825221d, 0x1d1b1a16, + 0x30282320, 0x201d1b1a, 0x3a302823, 0x221d1b1a, 0x45382e26, 0x26231d1b, + 0x5345382e, 0x01050100, 0x01010101, 0x00000001, 0x00000000, 0x03020100, + 0x07060504, 0x0b0a0908, 0x03010200, 0x03040203, 0x04040505, 0x7d010000, + 0x00030201, 0x12051104, 0x06413121, 0x07615113, 0x32147122, 0x08a19181, + 0xc1b14223, 0xf0d15215, 0x72623324, 0x160a0982, 0x1a191817, 0x28272625, + 0x35342a29, 0x39383736, 0x4544433a, 0x49484746, 0x5554534a, 0x59585756, + 0x6564635a, 0x69686766, 0x7574736a, 0x79787776, 0x8584837a, 0x89888786, + 0x9493928a, 0x98979695, 0xa3a29a99, 0xa7a6a5a4, 0xb2aaa9a8, 0xb6b5b4b3, + 0xbab9b8b7, 0xc5c4c3c2, 0xc9c8c7c6, 0xd4d3d2ca, 0xd8d7d6d5, 0xe2e1dad9, + 0xe6e5e4e3, 0xeae9e8e7, 0xf4f3f2f1, 0xf8f7f6f5, 0x0300faf9, 0x01010101, + 0x01010101, 0x00000001, 0x01000000, 0x05040302, 0x09080706, 0x02000b0a, + 0x04040201, 0x05070403, 0x01000404, 0x01007702, 0x04110302, 0x06312105, + 0x07514112, 0x22137161, 0x14088132, 0xb1a19142, 0x332309c1, 0x6215f052, + 0x160ad172, 0x25e13424, 0x191817f1, 0x2827261a, 0x36352a29, 0x3a393837, + 0x46454443, 0x4a494847, 0x56555453, 0x5a595857, 0x66656463, 0x6a696867, + 0x76757473, 0x7a797877, 0x85848382, 0x89888786, 0x9493928a, 0x98979695, + 0xa3a29a99, 0xa7a6a5a4, 0xb2aaa9a8, 0xb6b5b4b3, 0xbab9b8b7, 0xc5c4c3c2, + 0xc9c8c7c6, 0xd4d3d2ca, 0xd8d7d6d5, 0xe3e2dad9, 0xe7e6e5e4, 0xf2eae9e8, + 0xf6f5f4f3, 0xfaf9f8f7, 0x2a2a2a2a, 0x53415220, 0x20642543, 0x524f4241, + 0x2a2a2054, 0x000a2a2a, 0x43502020, 0x20202020, 0x7830203d, 0x78383025, + 0x2020000a, 0x20205253, 0x203d2020, 0x30257830, 0x000a7838, 0x41462020, + 0x20202052, 0x7830203d, 0x78383025, 0x2020000a, 0x32255b52, 0x3d205d64, + 0x25783020, 0x0a783830, 0x00000000, 0x00007d7f, 0x00007d7f, 0x00007d7f, + 0x00007d7f, 0x2a2a2a2a, 0x53415220, 0x20642543, 0x524f4241, 0x2a2a2054, + 0x000a2a2a, 0x43502020, 0x20202020, 0x7830203d, 0x78383025, 0x2020000a, + 0x20205253, 0x203d2020, 0x30257830, 0x000a7838, 0x41462020, 0x20202052, + 0x7830203d, 0x78383025, 0x2020000a, 0x32255b52, 0x3d205d64, 0x25783020, + 0x0a783830, 0x00000000, 0x000083ee, 0x000083ee, 0x000083ee, 0x000083ee, + 0x63617453, 0x7461206b, 0x0a702520, 0x61747300, 0x25206b63, 0x3d206434, + 0x25783020, 0x0a783830, 0x00000000, 0x2a2a2a2a, 0x53415220, 0x20642543, + 0x524f4241, 0x2a2a2054, 0x000a2a2a, 0x43502020, 0x20202020, 0x7830203d, + 0x78383025, 0x2020000a, 0x20205253, 0x203d2020, 0x30257830, 0x000a7838, + 0x41462020, 0x20202052, 0x7830203d, 0x78383025, 0x2020000a, 0x32255b52, + 0x3d205d64, 0x25783020, 0x0a783830, 0x00000000, 0x00008517, 0x00008517, + 0x00008517, 0x00008517, 0x72726f43, 0x65747075, 0x6e692064, 0x20747570, + 0x75657571, 0x49002e65, 0x6c61766e, 0x62206469, 0x65666675, 0x65682072, + 0x72656461, 0x206e6920, 0x5f45564d, 0x4d4d4f43, 0x4655425f, 0x54554f5f, + 0x44415f51, 0x002e5244, 0x206f6f54, 0x6772616c, 0x65722065, 0x73657571, + 0x656d2074, 0x67617373, 0x54002e65, 0x6c206f6f, 0x65677261, 0x66756220, + 0x20726566, 0x7373656d, 0x2e656761, 0x766e4900, 0x64696c61, 0x66756220, + 0x20726566, 0x4d206e69, 0x435f4556, 0x5f4d4d4f, 0x5f465542, 0x5f514e49, + 0x52444441, 0x564d002e, 0x3a505245, 0x5f6d6172, 0x6e697270, 0x66756274, + 0x20736920, 0x20746f6e, 0x69617661, 0x6c62616c, 0x000a2e65, 0x5245564d, + 0x72203a50, 0x705f6d61, 0x746e6972, 0x75645f66, 0x6620706d, 0x206d6f72, + 0x70257830, 0x5052000a, 0x4d554454, 0x6c663a50, 0x253d6761, 0x69202c78, + 0x7865646e, 0x2c75253d, 0x5f727720, 0x3d746e63, 0x202c7525, 0x635f6472, + 0x253d746e, 0x000a2e75, 0x252d5746, 0x25203a75, 0x564d0073, 0x3a505245, + 0x67616c66, 0x2c78253d, 0x78646920, 0x2c75253d, 0x5f727720, 0x3d746e63, + 0x202c7525, 0x635f6472, 0x253d746e, 0x000a2e75, 0x34302520, 0x38250078, + 0x73253a78, 0x2520000a, 0x00783230, 0x1007f000, 0x49574558, 0x35565644, + 0x2d37562f, 0x4745504a, 0x3a434e45, 0x65720020, 0x657a6973, 0x7470203a, + 0x78302072, 0x78383025, 0x77656e20, 0x7a69735f, 0x75252065, 0x766d000a, + 0x656d5f65, 0x65725f6d, 0x657a6973, 0x6c616d00, 0x3a636f6c, 0x7a697320, + 0x75252065, 0x616d202c, 0x75252078, 0x6572202c, 0x6e6f6967, 0x2c752520, + 0x676f6c20, 0x6c615f32, 0x206e6769, 0x000a7525, 0x6c6c616d, 0x203a636f, + 0x75746572, 0x64656e72, 0x25783020, 0x6d000a70, 0x6d5f6576, 0x615f6d65, + 0x636f6c6c, 0x6c6c4100, 0x7461636f, 0x6d206465, 0x726f6d65, 0x61682079, + 0x72772073, 0x20676e6f, 0x67696c61, 0x6e656d6e, 0x78450074, 0x74636570, + 0x61206465, 0x636f6c6c, 0x64657461, 0x6d656d20, 0x2079726f, 0x50206e69, + 0x45544f52, 0x44455443, 0x67657220, 0x2e6e6f69, 0x70784500, 0x65746365, + 0x6c612064, 0x61636f6c, 0x20646574, 0x6f6d656d, 0x69207972, 0x5246206e, + 0x42454d41, 0x72204655, 0x6f696765, 0x6e002e6e, 0x7720746f, 0x69746961, + 0x2500676e, 0x64692073, 0x635f656c, 0x656c6379, 0x25000a73, 0x2d252073, + 0x20733831, 0x64353125, 0x7325000a, 0x746f5420, 0x695f6c61, 0x20656c64, + 0x20202020, 0x25202020, 0x0a643531, 0x726f6300, 0x64252065, 0x20732520, + 0x30322d25, 0x6f632073, 0x253d6564, 0x70206433, 0x253d6369, 0x70206433, + 0x705b736f, 0x283d5d75, 0x2c643325, 0x29643325, 0x6b6c6320, 0x0a64253d, + 0x726f6300, 0x64252065, 0x20732520, 0x30322d25, 0x20202073, 0x20202020, + 0x70202020, 0x253d6369, 0x70206433, 0x705b736f, 0x283d5d75, 0x2c643325, + 0x29643325, 0x6f6e000a, 0x65732074, 0x61772074, 0x6e697469, 0x4f530067, + 0x45525f43, 0x54532e46, 0x53555441, 0x20202020, 0x20202020, 0x78302020, + 0x000a7825, 0x5f434f53, 0x2e464552, 0x464e4f43, 0x20204749, 0x20202020, + 0x20202020, 0x78257830, 0x4f53000a, 0x45525f43, 0x494c2e46, 0x45524556, + 0x20202046, 0x20202020, 0x78302020, 0x000a7825, 0x5f434f53, 0x2e464552, + 0x504f5453, 0x4b53414d, 0x20202020, 0x20202020, 0x78257830, 0x4f53000a, + 0x434d5f43, 0x4154532e, 0x20205452, 0x20202020, 0x20202020, 0x78302020, + 0x000a7825, 0x5f434f53, 0x532e434d, 0x55544154, 0x20202053, 0x20202020, + 0x20202020, 0x78257830, 0x4f53000a, 0x52545f43, 0x54532e46, 0x53555441, + 0x20202020, 0x20202020, 0x78302020, 0x000a7825, 0x5f434f53, 0x2e465254, + 0x53474244, 0x55544154, 0x20202053, 0x20202020, 0x78257830, 0x4f53000a, + 0x42445f43, 0x54432e4c, 0x20204c52, 0x20202020, 0x20202020, 0x78302020, + 0x000a7825, 0x5f434f53, 0x2e4c4244, 0x4c525443, 0x20202031, 0x20202020, + 0x20202020, 0x78257830, 0x4f53000a, 0x42445f43, 0x54532e4c, 0x53555441, + 0x20202020, 0x20202020, 0x78302020, 0x000a7825, 0x5f434f53, 0x2e4c4244, + 0x54415453, 0x20315355, 0x20202020, 0x20202020, 0x78257830, 0x4f53000a, + 0x42445f43, 0x54532e4c, 0x53555441, 0x20202032, 0x20202020, 0x78302020, + 0x000a7825, 0x5f434f53, 0x2e4c4244, 0x54415453, 0x20335355, 0x20202020, + 0x20202020, 0x78257830, 0x4f53000a, 0x49425f43, 0x52545354, 0x2e4d4145, + 0x41424341, 0x54532e44, 0x53555441, 0x20202020, 0x30202020, 0x0a782578, + 0x434f5300, 0x5449425f, 0x45525453, 0x4d2e4d41, 0x54494244, 0x41564153, + 0x20204c49, 0x20202020, 0x78302020, 0x000a7825, 0x5f434f53, 0x53544942, + 0x41455254, 0x45442e4d, 0x54435f46, 0x20204c52, 0x20202020, 0x20202020, + 0x25783020, 0x53000a78, 0x425f434f, 0x54535449, 0x4d414552, 0x564d482e, + 0x44455250, 0x4154532e, 0x20535554, 0x20202020, 0x78257830, 0x4f53000a, + 0x49425f43, 0x52545354, 0x2e4d4145, 0x42414348, 0x532e4441, 0x55544154, + 0x20202053, 0x30202020, 0x0a782578, 0x434f5300, 0x2e454d5f, 0x54415453, + 0x20205355, 0x20202020, 0x20202020, 0x25783020, 0x53000a78, 0x565f434f, + 0x2e414d44, 0x5f515249, 0x54415453, 0x20205355, 0x30202020, 0x0a782578, + 0x4f532000, 0x44565f43, 0x6520414d, 0x3d305f71, 0x64207825, 0x3d305f71, + 0x65207825, 0x3d315f71, 0x64207825, 0x3d315f71, 0x73207825, 0x635f6372, + 0x3d6c7274, 0x000a7825, 0x52414853, 0x525f4445, 0x702e4d41, 0x5f657069, + 0x74617473, 0x20202065, 0x28207525, 0x0a297325, 0x41485300, 0x5f444552, + 0x2e4d4152, 0x6c5f7369, 0x5f747361, 0x65726f63, 0x0a752520, 0x41485300, + 0x5f444552, 0x2e4d4152, 0x5f626f6a, 0x73616870, 0x20202065, 0x0a752520, + 0x41485300, 0x5f444552, 0x2e4d4152, 0x5f626f6a, 0x74617473, 0x20202065, + 0x0a782520, 0x41485300, 0x5f444552, 0x2e4d4152, 0x7074756f, 0x735f7475, + 0x70697274, 0x635f7365, 0x6c706d6f, 0x64657465, 0x0a752520, 0x41485300, + 0x5f444552, 0x2e4d4152, 0x71657261, 0x7274735f, 0x73657069, 0x7373695f, + 0x20646575, 0x000a7525, 0x414d4453, 0x5541462e, 0x2020544c, 0x20202020, + 0x20202020, 0x20202020, 0x78257830, 0x7453000a, 0x73757461, 0x20666f20, + 0x636f6c62, 0x2064656b, 0x6b736174, 0x6f662073, 0x6f632072, 0x25206572, + 0x63203a75, 0x253d6b6c, 0x000a2075, 0x74617473, 0x25207375, 0x6f742078, + 0x64252070, 0x746e6320, 0x20642520, 0x756e636d, 0x7825206d, 0x626d000a, + 0x3d6d756e, 0x72207825, 0x766d656d, 0x0a78253d, 0x434f5300, 0x5359535f, + 0x4c525443, 0x4e56532e, 0x20564552, 0x20202020, 0x20202020, 0x20202020, + 0x20202020, 0x000a7825, 0x525f5746, 0x20205645, 0x20202020, 0x20202020, + 0x20202020, 0x20202020, 0x20202020, 0x20202020, 0x25202020, 0x53000a78, + 0x49535345, 0x525f4e4f, 0x612e4d41, 0x76697463, 0x6f635f65, 0x20736572, + 0x20202020, 0x20202020, 0x75252020, 0x6946000a, 0x61776d72, 0x73206572, + 0x75746174, 0x666f2073, 0x73616d20, 0x20726574, 0x726f6328, 0x64252065, + 0x63203a29, 0x253d6b6c, 0x000a2064, 0x53534553, 0x5f4e4f49, 0x2e4d4152, + 0x6d726966, 0x65726177, 0x6e695f73, 0x6573755f, 0x20202020, 0x25202020, + 0x25202c64, 0x25202c64, 0x25202c64, 0x25202c64, 0x25202c64, 0x25202c64, + 0x25202c64, 0x53000a64, 0x49535345, 0x525f4e4f, 0x6d2e4d41, 0x65747361, + 0x6f635f72, 0x20206572, 0x20202020, 0x20202020, 0x75252020, 0x4553000a, + 0x4f495353, 0x41525f4e, 0x616d2e4d, 0x72657473, 0x6c6c615f, 0x7461636f, + 0x20206465, 0x20202020, 0x0a642520, 0x53455300, 0x4e4f4953, 0x4d41525f, + 0x73616d2e, 0x5f726574, 0x6e676973, 0x20736c61, 0x20202020, 0x20202020, + 0x78383025, 0x38302520, 0x30252078, 0x000a7838, 0x53534553, 0x5f4e4f49, + 0x2e4d4152, 0x74636970, 0x73657275, 0x5f6e695f, 0x65706970, 0x20202020, + 0x25202020, 0x53000a64, 0x49535345, 0x525f4e4f, 0x702e4d41, 0x5f657069, + 0x5f636970, 0x6c696174, 0x20202020, 0x20202020, 0x75252020, 0x4553000a, + 0x4f495353, 0x41525f4e, 0x69702e4d, 0x705f6570, 0x685f6369, 0x20646165, + 0x20202020, 0x20202020, 0x0a752520, 0x53455300, 0x4e4f4953, 0x4d41525f, + 0x6e65702e, 0x676e6964, 0x6174735f, 0x20206574, 0x20202020, 0x20202020, + 0x000a7525, 0x53534553, 0x5f4e4f49, 0x2e4d4152, 0x73736573, 0x5f6e6f69, + 0x74617473, 0x20202065, 0x20202020, 0x25202020, 0x53000a75, 0x49535345, + 0x525f4e4f, 0x632e4d41, 0x6c706d6f, 0x64657465, 0x6369705f, 0x65727574, + 0x20202073, 0x75252020, 0x4553000a, 0x4f495353, 0x41525f4e, 0x696c2e4d, + 0x735f6576, 0x70697274, 0x65685f65, 0x20206461, 0x20202020, 0x0a752520, + 0x53455300, 0x4e4f4953, 0x4d41525f, 0x76696c2e, 0x74735f65, 0x65706972, + 0x6961745f, 0x6e692e6c, 0x20786564, 0x000a7525, 0x53534553, 0x5f4e4f49, + 0x2e4d4152, 0x6576696c, 0x7274735f, 0x5f657069, 0x6c696174, 0x6369702e, + 0x25206469, 0x53000a75, 0x49535345, 0x525f4e4f, 0x6c2e4d41, 0x5f657669, + 0x69727473, 0x745f6570, 0x2e6c6961, 0x79666572, 0x75252020, 0x4553000a, + 0x4f495353, 0x41525f4e, 0x74732e4d, 0x6970706f, 0x6e5f676e, 0x626f5f6f, + 0x20202020, 0x20202020, 0x0a752520, 0x53455300, 0x4e4f4953, 0x4d41525f, + 0x7369642e, 0x5f62695f, 0x69736572, 0x2020657a, 0x20202020, 0x20202020, + 0x000a6425, 0x5f78616d, 0x69736572, 0x6c617564, 0x6761705f, 0x20207365, + 0x20202020, 0x20202020, 0x20202020, 0x0a642520, 0x67617000, 0x6f635f65, + 0x20746e75, 0x20202020, 0x20202020, 0x20202020, 0x20202020, 0x20202020, + 0x64252020, 0x7020000a, 0x5f656761, 0x65646e69, 0x64252078, 0x20702520, + 0x74706d65, 0x64252079, 0x5f727720, 0x20786469, 0x72206425, 0x64695f64, + 0x64252078, 0x61702020, 0x725f6567, 0x735f6d65, 0x64252030, 0x67617020, + 0x65725f65, 0x31735f6d, 0x0a642520, 0x53455300, 0x4e4f4953, 0x4d41525f, + 0x74756f2e, 0x5f747570, 0x66667562, 0x6e5f7265, 0x20747865, 0x20202020, + 0x000a7525, 0x53534553, 0x5f4e4f49, 0x2e4d4152, 0x7074756f, 0x625f7475, + 0x65666675, 0x61745f72, 0x20206c69, 0x25202020, 0x53000a75, 0x49535345, + 0x525f4e4f, 0x6f2e4d41, 0x75707475, 0x75625f74, 0x72656666, 0x6165685f, + 0x20202064, 0x75252020, 0x2d2d000a, 0x69777320, 0x69686374, 0x2d20676e, + 0x53000a2d, 0x49535345, 0x525f4e4f, 0x6e2e4d41, 0x5f747865, 0x746f6f62, + 0x6b6f745f, 0x20206e65, 0x20202020, 0x75252020, 0x4553000a, 0x4f495353, + 0x41525f4e, 0x6f6a2e4d, 0x75715f62, 0x2e657565, 0x656b6f74, 0x2020206e, + 0x20202020, 0x0a752520, 0x53455300, 0x4e4f4953, 0x4d41525f, 0x626f6a2e, + 0x7463615f, 0x20657669, 0x20202020, 0x20202020, 0x20202020, 0x000a7525, + 0x53534553, 0x5f4e4f49, 0x2e4d4152, 0x5f626f6a, 0x73616870, 0x6f635f65, + 0x65746e75, 0x20202072, 0x25202020, 0x53000a75, 0x49535345, 0x525f4e4f, + 0x6a2e4d41, 0x735f626f, 0x74726174, 0x6369705f, 0x20202020, 0x20202020, + 0x75252020, 0x4553000a, 0x4f495353, 0x41525f4e, 0x6f6a2e4d, 0x6e655f62, + 0x69705f64, 0x20202063, 0x20202020, 0x20202020, 0x0a752520, 0x53455300, + 0x4e4f4953, 0x4d41525f, 0x7274732e, 0x5f6d6165, 0x5f636970, 0x64616568, + 0x20202020, 0x20202020, 0x000a7525, 0x73202d2d, 0x6563696c, 0x65757120, + 0x20736575, 0x000a2d2d, 0x53534553, 0x5f4e4f49, 0x2e4d4152, 0x6f666966, + 0x696c735f, 0x6a5f6563, 0x2020626f, 0x20202020, 0x25202020, 0x6e652064, + 0x65697274, 0x53000a73, 0x49535345, 0x525f4e4f, 0x662e4d41, 0x5f6f6669, + 0x63696c73, 0x6f635f65, 0x656c706d, 0x20206574, 0x64252020, 0x746e6520, + 0x73656972, 0x6d20000a, 0x74735f65, 0x65706972, 0x736f705f, 0x253d6920, + 0x6f702064, 0x64253d73, 0x696c000a, 0x6a5f6576, 0x3e2d626f, 0x74697773, + 0x725f6863, 0x65757165, 0x20207473, 0x20202020, 0x20202020, 0x75252020, + 0x696c000a, 0x6a5f6576, 0x3e2d626f, 0x75716572, 0x65747365, 0x756e5f64, + 0x7265626d, 0x5f666f5f, 0x65726f63, 0x75252073, 0x696c000a, 0x6a5f6576, + 0x3e2d626f, 0x65726f63, 0x6f625f73, 0x6465746f, 0x20202020, 0x20202020, + 0x20202020, 0x75252020, 0x696c000a, 0x6a5f6576, 0x3e2d626f, 0x65706970, + 0x6977735f, 0x20686374, 0x20202020, 0x20202020, 0x20202020, 0x75252020, + 0x5453000a, 0x4d414552, 0x494c5300, 0x00204543, 0x2020454d, 0x52540020, + 0x20534e41, 0x54554f00, 0x00545550, 0x45504950, 0x57002051, 0x00544941, + 0x5245564f, 0x004e5552, 0x50545331, 0x00454741, 0x49434950, 0x4e490044, + 0x46554254, 0x56494c00, 0x52415045, 0x00444553, 0x4556494c, 0x504d4f43, + 0x43495000, 0x45444e49, 0x414e0058, 0x4e49004c, 0x00434950, 0x4f434e45, + 0x55425455, 0x52500046, 0x45535645, 0x45520051, 0x4e414246, 0x45525f4b, + 0x00544553, 0x5054554f, 0x465f5455, 0x4853554c, 0x524c4300, 0x00425044, + 0x5f434e45, 0x5f504544, 0x00434950, 0x5f4e5552, 0x54415453, 0x4c530045, + 0x5f454349, 0x4f464946, 0x56494c00, 0x4c535f45, 0x00454349, 0x55514544, + 0x00455545, 0x55514e45, 0x00455545, 0x004c4f43, 0x49534552, 0x4c415544, + 0x54494200, 0x53434e45, 0x42005145, 0x4e455449, 0x46554243, 0x434e4500, + 0x4e49424d, 0x43004f46, 0x43414241, 0x53544942, 0x564d4800, 0x44455250, + 0x42455200, 0x45544f4f, 0x52500044, 0x0053424f, 0x4e554f43, 0x56005354, + 0x43423950, 0x45525000, 0x52465f56, 0x00454d41, 0x42545845, 0x45464655, + 0x49500052, 0x00444550, 0x46464552, 0x454d4152, 0x56494c00, 0x4f4c5345, + 0x4f4a0054, 0x57530042, 0x48435449, 0x46455200, 0x454c4449, 0x50495000, + 0x41524445, 0x52004e49, 0x5542574f, 0x4f4a0046, 0x4f4c5342, 0x4f520054, + 0x554f4357, 0x5245544e, 0x46525200, 0x4d445600, 0x43525341, 0x41525400, + 0x4f46534e, 0x52004d52, 0x52464652, 0x00454d41, 0x51455241, 0x5f454d00, + 0x454c4449, 0x4d445600, 0x54535f41, 0x45504952, 0x4c4f4300, 0x5200434f, + 0x5f465542, 0x53554c46, 0x4e450048, 0x52465f44, 0x00454d41, 0x535f4352, + 0x00544154, 0x4e49424d, 0x495f4f46, 0x424d004e, 0x4f464e49, 0x54554f5f, + 0x53455200, 0x41554449, 0x554f5f4c, 0x4f540054, 0x574f5250, 0x00434d00, + 0x49465254, 0x53005152, 0x57414d44, 0x50454400, 0x49525453, 0x44004550, + 0x535f4c42, 0x00544f4c, 0x4949424d, 0x43005152, 0x55425249, 0x424d0046, + 0x41455249, 0x52500044, 0x54535645, 0x45504952, 0x43495000, 0x504d4f43, + 0x46525400, 0x49424d00, 0x5f4f464e, 0x44414548, 0x44005245, 0x4c5f4c42, + 0x56005244, 0x53414d44, 0x50495254, 0x44560045, 0x4c53414d, 0x5300544f, + 0x50495254, 0x4f435f45, 0x5000504d, 0x4e495849, 0x414f4c5f, 0x4f520044, + 0x54535f57, 0x0045524f, 0x5f564d53, 0x4e49424d, 0x44004f46, 0x425f4c42, + 0x52540053, 0x54535f46, 0x5f45524f, 0x004d4f43, 0x5f465254, 0x49525453, + 0x4f434550, 0x4300504d, 0x004c5254, 0x4e45504f, 0x52415000, 0x4f434553, + 0x4500504d, 0x4500534f, 0x425f534f, 0x52004655, 0x44524f45, 0x46005245, + 0x454d4152, 0x455a4953, 0x59485000, 0x00444953, 0x004e5552, 0x00424a50, + 0x00545753, 0x00424a43, 0x00045100, 0x0004514c, 0x00000000, 0x00045198, + 0x000451f0, 0x0004522c, 0x00045278, 0x0000d1ca, 0x0000d1d1, 0x00000000, + 0x0000d1d8, 0x0000d1de, 0x0000d1e5, 0x0000d1ec, 0x33323130, 0x37363534, + 0x00003938, 0x33323130, 0x37363534, 0x62613938, 0x66656463, 0x44532020, + 0x2020414d, 0x61747320, 0x30737574, 0x20202020, 0x74617473, 0x20317375, + 0x207c2020, 0x6c637273, 0x20206e65, 0x6c747364, 0x7c206e65, 0x70747320, + 0x7c206e65, 0x70747320, 0x7c206469, 0x76656420, 0x65702023, 0x6e69646e, + 0x20000a67, 0x32255b20, 0x20205d64, 0x78383025, 0x25202020, 0x20783830, + 0x207c2020, 0x20643625, 0x64362520, 0x25207c20, 0x25206432, 0x7c206432, + 0x78322520, 0x78322520, 0x23207c20, 0x25206425, 0x20202c64, 0x20642523, + 0x000a6425, 0x02020100, 0x03030303, 0x04040404, 0x04040404, 0x05050505, + 0x05050505, 0x05050505, 0x05050505, 0x06060606, 0x06060606, 0x06060606, + 0x06060606, 0x06060606, 0x06060606, 0x06060606, 0x06060606, 0x07070707, + 0x07070707, 0x07070707, 0x07070707, 0x07070707, 0x07070707, 0x07070707, + 0x07070707, 0x07070707, 0x07070707, 0x07070707, 0x07070707, 0x07070707, + 0x07070707, 0x07070707, 0x07070707, 0x08080808, 0x08080808, 0x08080808, + 0x08080808, 0x08080808, 0x08080808, 0x08080808, 0x08080808, 0x08080808, + 0x08080808, 0x08080808, 0x08080808, 0x08080808, 0x08080808, 0x08080808, + 0x08080808, 0x08080808, 0x08080808, 0x08080808, 0x08080808, 0x08080808, + 0x08080808, 0x08080808, 0x08080808, 0x08080808, 0x08080808, 0x08080808, + 0x08080808, 0x08080808, 0x08080808, 0x08080808, 0x08080808, 0x63617453, + 0x7461206b, 0x0a702520, 0x61747300, 0x25206b63, 0x3d206434, 0x25783020, + 0x0a783830, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x6ad6f493, 0xadf39304, 0x420103a7, 0x32053101, 0xfe0b4105, 0x4ea7fe4e, + 0x99feffff, 0x33830943, 0x34334387, 0x33f9342b, 0xff00004d, 0x4ea73726, + 0xb9ffffff, 0x4b0c304e, 0xcee08bef, 0x202719e1, 0xf3f02103, 0x8e012705, + 0x3024f9fe, 0x4bff000c, 0xce408b4f, 0x0027eb4e, 0x4107fe8e, 0x43dc40ab, + 0x1524d018, 0x44234207, 0x41034253, 0x24231301, 0x14030305, 0xf4980403, + 0x14192586, 0x041d1103, 0xf2a80103, 0x2253fe0b, 0x14012586, 0x04051403, + 0xf2a80403, 0x0533fe0b, 0x180001f5, 0x03f5ff02, 0xff021804, 0x0e234027, + 0x35fde800, 0x000e0304, 0x02f5fde8, 0xff021810, 0x181403f5, 0x0e23ff02, + 0x35fde7f0, 0x4efe0b04, 0x66b207f6, 0x0791072f, 0xd9f793a0, 0x6c2703a6, + 0xff8ea740, 0xdb07fdef, 0x0741bc10, 0x077401d6, 0xc3c633c4, 0x23740541, + 0xfefe74ce, 0x4c338411, 0x1d4c5318, 0x07f642cc, 0xe323032d, 0x070c0723, + 0xff7c7e19, 0xf49b4027, 0x2b00270e, 0x071c07bd, 0x7e3d072a, 0xb506ff7a, + 0x9d0bad0b, 0xf68eb91e, 0x04030333, 0x100004f1, 0x4dd8ff02, 0x2710fc6a, + 0xf1f4e843, 0x02100003, 0x6a3ddcff, 0xfe0bf2fc, 0xa66af493, 0x27430103, + 0xff4ea721, 0x429dfeff, 0x1d3f000a, 0x0b000121, 0x55f493fe, 0x431903a6, + 0xf49332e6, 0x1d04b71c, 0x27fe0b42, 0x69f49331, 0x439d0469, 0x4eca1e64, + 0xff4ea7fa, 0x4b01fd9f, 0xb8fca007, 0xbed80143, 0x15040000, 0xa622f493, + 0x27421903, 0x11f49331, 0x431d03a6, 0x01342ff6, 0x0000bef8, 0x2700c280, + 0xfdf49321, 0x421d03a5, 0x4fff3ea7, 0xa73201fd, 0xffffff1e, 0x40272287, + 0x0c3913b9, 0xb04024f5, 0x3ff6ff02, 0xf49300ec, 0x1903a5e0, 0x27109943, + 0xc6261299, 0x6414d135, 0xd1463604, 0x76046814, 0x10149945, 0x02ee44c6, + 0x4d7e00fd, 0x9fdea7ff, 0xcea7fffb, 0x19fd4fff, 0x7bc301d4, 0x0f41dc43, + 0xfb9d4ea7, 0x014319ff, 0xd8327bc2, 0x29be5231, 0xd419ffc8, 0x437bc301, + 0x191741d8, 0x012127d3, 0x3b1207c4, 0x1d31eb14, 0xff4ea7d3, 0x42c5fdcf, + 0x9d1ea768, 0x1419fffb, 0x437bc301, 0x191741d8, 0x01212713, 0x3be207c4, + 0x1d3eebe4, 0xff4ea713, 0x42c5fdcf, 0x2705466c, 0x0ef49b40, 0x5838c4c5, + 0x020000be, 0xa542f493, 0xd6431903, 0x10bcdc37, 0xff4ea726, 0x42d1ffff, + 0x25a60c3c, 0xafff3ea7, 0x0b3441fd, 0x8e340542, 0x933127fa, 0x03a513f4, + 0xbcd8431d, 0x3127dc10, 0xafff4ea7, 0x550a07fd, 0x5717be43, 0x930927ff, + 0xffd1eaf1, 0xffb40c9e, 0xa4f6f493, 0x06431903, 0x445abe39, 0x27ff1eff, + 0xbe1a0700, 0x5eff573e, 0x3027feb6, 0x4fff4ea7, 0xb50027fd, 0xacbdbe43, + 0xfe897eff, 0xbefebb5e, 0x1eff4037, 0xff4ea7d9, 0x43d1feff, 0x3fe60148, + 0xf75efefd, 0x99fb4efe, 0xc007040d, 0x96050b99, 0xa7fb8ed4, 0xffffdf0e, + 0xffb520be, 0x010fd2d0, 0x072d07c0, 0x2304031b, 0x629ebe21, 0x27c001ff, + 0x21270c1c, 0xff6293be, 0xffdf0ea7, 0xb4d8beff, 0x154027ff, 0x8ec405c4, + 0xa7f54efb, 0xffffff1e, 0x0c4718b9, 0x0c4415b9, 0x58eef063, 0x380700b5, + 0x070f3c83, 0x33238743, 0x0b422b44, 0x23d48743, 0xfff3b8de, 0xe631d499, + 0x4100984f, 0x61d971d7, 0x30d699da, 0xa3107c18, 0x1000007e, 0xd351d481, + 0x00c04ff6, 0xdb210d07, 0xa7bedc31, 0x0fe6ff8a, 0xd35100c0, 0xdc35db25, + 0xc30733e3, 0xc9073902, 0x0d071a07, 0xbc072c07, 0xff5203be, 0xda61ba0b, + 0x4a073c07, 0x43c2490b, 0x2b43074f, 0x2bc9074a, 0xffcd03c4, 0x533c0703, + 0x26d38d3a, 0x0bba3d27, 0x3c27f30d, 0x07f32d28, 0x113ee337, 0xd3451004, + 0x7525d69d, 0x23f001d4, 0x0703ffcd, 0x8ac7be1d, 0x27caa6ff, 0x75d48540, + 0x45db65dc, 0x4f85eed7, 0x430027ff, 0x27f58ef0, 0x26d48d40, 0x27283c27, + 0x0d0bba4d, 0x75f32df4, 0x9dd745d9, 0xf00125d6, 0x92be1d07, 0x0d07ff8a, + 0x7e280c03, 0x4807fec9, 0x84074103, 0x4ea78f6b, 0xbdffffff, 0x5e0c4748, + 0x33e3ff0a, 0xa32ba32a, 0x27ff515e, 0xff645eb0, 0x430e0c27, 0x4ef58ef0, + 0xff4ea7fd, 0x4d99ffff, 0x26419927, 0xb90c1dce, 0xb60fb444, 0x13d2c048, + 0xfd8ed486, 0xff3f73be, 0x00270346, 0x489efd0e, 0x51beff90, 0x0186ff54, + 0xfd0e0227, 0xff903a9e, 0xdaddf093, 0xbe2d07ff, 0x1effaee3, 0x93fd4ed1, + 0x04b73bf4, 0x43094229, 0x272632ce, 0x99f493d0, 0x42990465, 0x41439940, + 0x0d07322e, 0x21befd8e, 0x0dabff8b, 0x04864027, 0xd4074127, 0xfd8e0d07, + 0x64aaf493, 0x03240704, 0x3407c32c, 0xe37f2ce3, 0x34197f3c, 0xc2803c03, + 0xd027f932, 0xf0930c1e, 0xbe04648c, 0x27ff9251, 0x81f093d1, 0x15be0464, + 0x0196ffab, 0x3ea7a81e, 0x11fdefff, 0x6a4dd834, 0x23070efc, 0xf4e84327, + 0x3ddc2311, 0x0bf6fc6a, 0x07fb4efe, 0x3ec007b1, 0x070c07de, 0xb31ea72b, + 0xfb0efefe, 0x4efb415e, 0x07c007fb, 0x07c83eb1, 0x273b071c, 0xb32ea700, + 0xfb0efefe, 0x4efb395e, 0x640b89f8, 0x1b07d007, 0x19330403, 0x000c0fbe, + 0x018d0ff6, 0xc668d4c1, 0x44996cbf, 0xffcea73c, 0x9127fbff, 0x017442f0, + 0x27139c33, 0x270208ad, 0xd4b1ff8c, 0x4be2eb07, 0x1b07013c, 0x4eab4907, + 0x04c0c4d5, 0x04c0c3d1, 0x271930c8, 0x22f49b48, 0xf39b3027, 0x8b00070e, + 0x22f39bff, 0x04c0c4d1, 0xb1e940cc, 0x30d0c1d2, 0x2e2b4b07, 0x412b0e2b, + 0x07a6d389, 0xc5d2b5b4, 0xbfab30d0, 0x249634c6, 0xbfd60b36, 0x484f9bae, + 0x271a41dc, 0x9b02082d, 0x402722f2, 0x070ef49b, 0x9bff8b00, 0x3f9b22f4, + 0xec31d848, 0xf88e0027, 0xf49b4827, 0x9b302722, 0x00070ef3, 0xf39bff8b, + 0xc0c4d122, 0xe940cc04, 0xdc484f9b, 0xfa9b1641, 0x9b402722, 0x00070ef4, + 0xf49bff8b, 0x483f9b22, 0x9bec31d8, 0x4c33484f, 0x1b4c5317, 0x342b3827, + 0x3ff63783, 0x4f9b0091, 0x1641dc48, 0x2722fa9b, 0x0ef49b40, 0xff8b0007, + 0x9b22f49b, 0x31d8483f, 0x484f9bec, 0x02004de3, 0x8948f49b, 0x3783a4d3, + 0xffd03d03, 0x3ea33fab, 0x9b0f0000, 0x4f9b40f3, 0x1641dc48, 0x2722fa9b, + 0x0ef49b40, 0xff8b0007, 0x9b22f49b, 0x31d8483f, 0x484f9bec, 0x02004da3, + 0x2748f49b, 0xa4d38920, 0x04c4c2d5, 0x27a6d189, 0xc8c2d540, 0x8d310304, + 0xd38d38d4, 0x8dd1b5a4, 0xd48d34d4, 0xc3bff636, 0xff135efe, 0xefabe407, + 0xc15e1e07, 0x104c27fe, 0x2807432b, 0x3123243b, 0x3c834207, 0x103c330f, + 0x43ab4fab, 0x5e40f49b, 0x9027ff56, 0x27fe8b5e, 0x4ef88e04, 0x3bcf5bf0, + 0x4efe2bdf, 0xbe0f07fc, 0x0efffa6f, 0x0bf00efc, 0x004f27ff, 0x29100790, + 0x004f2743, 0x291007a0, 0xfc3d1044, 0x10ff1e03, 0x1e03fc4d, 0x2b0307ff, + 0x03000c04, 0x2703fc0d, 0x27010c41, 0x0b040740, 0x07fd4efe, 0xc324bed0, + 0x0cd499ff, 0xd49944b6, 0x2304070e, 0x0b300701, 0x0434993d, 0x270b42c4, + 0x04349d41, 0x1e0cd09d, 0xff4ea714, 0xd239fd4f, 0x41274301, 0x42ab433b, + 0x00a7d43d, 0xf49b4027, 0xff3ea70e, 0x34c5fd4f, 0x4efd8e38, 0xbed007fd, + 0x99ffc2da, 0x44b60dd4, 0x070ed499, 0x07012304, 0x993d0b30, 0x45960434, + 0x349d4127, 0x0dd09d04, 0x2d07181e, 0x4ea72203, 0x39fd4fff, 0x27430121, + 0xab433b41, 0xa7243d41, 0x9b402700, 0x3ea70ef4, 0xc5fd4fff, 0xfd8e3834, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x10080100, 0x0a030209, 0x19201811, 0x05040b12, + 0x211a130c, 0x22293028, 0x060d141b, 0x1c150e07, 0x38312a23, 0x242b3239, + 0x170f161d, 0x332c251e, 0x2d343b3a, 0x2e271f26, 0x363d3c35, 0x3f3e372f, + 0xebef2ea7, 0x054027fd, 0x003e2724, 0x23150500, 0x0b0ef49b, 0x19fd4efe, + 0x07432703, 0x39d333d3, 0xf50e2901, 0x021200d4, 0x073347ff, 0x0004f10d, + 0xdcff0210, 0x2427f848, 0x31034e07, 0x120002f5, 0x3387ff02, 0x32f54a03, + 0xff021200, 0x30271187, 0x530f4c83, 0x0013f5e6, 0x33ff0216, 0x4c3314ec, + 0xf54eab10, 0x021400d3, 0x04d4f5ff, 0x9bff0214, 0xfd8e0ef3, 0xf193fe4e, + 0x29039f04, 0x09136912, 0xff4ea71e, 0x320bfd4f, 0x3e2b4211, 0xe67f4ea7, + 0x08409dfe, 0x434d4205, 0x11991349, 0x9d436d08, 0x08530941, 0x40270776, + 0x070ef49b, 0xa7ff8b00, 0xfee67f4e, 0x20273027, 0x429d4305, 0x07fe8e08, + 0x03427340, 0x1ef4e841, 0x9bfe4ee7, 0x41d8484f, 0x270219fb, 0x33320743, + 0x0034f533, 0xf1ff0212, 0x02100031, 0x33e247ff, 0x1c53181c, 0x3919661d, + 0x87253304, 0x0423f144, 0x99ff0218, 0x40f10702, 0xff021600, 0x030b1123, + 0x3e87123b, 0x010b4227, 0x120034f5, 0xfe8eff02, 0x42273e87, 0x34f50027, + 0xff021200, 0xfc4efe8e, 0x31070e31, 0xe1c2d207, 0x2b00210b, 0x05010be1, + 0x91fc8e2e, 0x99412701, 0x3e2b2d12, 0x4123423b, 0xc38bc407, 0x4103325b, + 0x310312a1, 0x33874c2b, 0x320bd405, 0xccbe3001, 0x0c0bff44, 0xfa4efc8e, + 0x03390219, 0x0207c007, 0x44270333, 0x120004f5, 0x3387ff02, 0x20074027, + 0x160034f5, 0x2403ff02, 0xc1294327, 0x24f5f063, 0xff021200, 0x100024f1, + 0x48dcff02, 0x034107f8, 0x8334274a, 0x16530f4c, 0x120023f5, 0x1c33ff02, + 0x33d02714, 0x41ab104c, 0x14000df5, 0x04f5ff02, 0xff021404, 0x510efd9b, + 0xc2c331cb, 0xc4196c3b, 0x43f14333, 0xff021000, 0x53183c33, 0x34441d3c, + 0xcb55f043, 0x2f07fa8e, 0x1b070c07, 0x01ff397e, 0x012f10f2, 0x27010000, + 0x0000002f, 0x39c41901, 0x054533c3, 0x0043f5f2, 0xf5ff0218, 0x02180442, + 0x004e23ff, 0x4d35fde8, 0xe8004e03, 0x1040f5fd, 0xf5ff0218, 0x02181442, + 0xf04e23ff, 0x4d35fde7, 0xc331f401, 0xb3cab40b, 0xc6c441a8, 0xd307a34f, + 0xdb2bd40b, 0x199adfc6, 0xf14333c4, 0x02100043, 0x183c33ff, 0xc01d3c53, + 0xaf278734, 0x01000000, 0x0c071b07, 0xbf7e2f07, 0x10f101fe, 0x0000011f, + 0x021a0701, 0x191d071d, 0x33c339c4, 0xf5f10545, 0x02180043, 0x0441f5ff, + 0x27ff0218, 0x004e2320, 0x4235fde8, 0xe8004e03, 0x1040f5fd, 0xf5ff0218, + 0x02181441, 0x23f301ff, 0xfde7f04e, 0xd32b4235, 0xdfe6b30b, 0xc419ff2c, + 0x43f14333, 0xff021000, 0x53183c33, 0x34c41d3c, 0x55f04398, 0x4efa8ecb, + 0x07d007fd, 0xfdf37e0d, 0x3527d419, 0xe103e447, 0x43f54333, 0xff021200, + 0x43272e87, 0x120024f5, 0x21f1ff02, 0xff021000, 0x53181c33, 0x16661d1c, + 0xd499e433, 0x04e3f107, 0x23ff0218, 0x0b143b11, 0xf5422713, 0x02120024, + 0x0024f1ff, 0xdcff0210, 0x10cef848, 0x51d019af, 0x032047d4, 0x87412b21, + 0x23d45532, 0x0034f121, 0xdcff0210, 0xd339f848, 0x44271007, 0x14f51333, + 0xff021200, 0x40273387, 0x34f52103, 0xff021600, 0x43272287, 0x24f5d029, + 0xff021200, 0x100024f1, 0x48dcff02, 0x034007f8, 0x8334274a, 0x06530f4c, + 0x120023f5, 0x0c33ff02, 0x33302714, 0x40ab104c, 0x140013f5, 0x14f5ff02, + 0xff021404, 0x8e0ef39b, 0x99f84efd, 0x82070504, 0xa107b007, 0x4ff68f6b, + 0x9ea700cd, 0x99ffffff, 0x1399391c, 0x469db955, 0x07c30b0c, 0x6b4c2b4d, + 0xfe4ff64f, 0xffcea700, 0xc4b9ffff, 0x4dee0c44, 0x3ea700c8, 0xb9ffffff, + 0xf611983c, 0x070107cf, 0xbd41034d, 0xa70c4634, 0xfff3bd0e, 0x4ff60439, + 0x4d0700a1, 0x070f4c83, 0x33348724, 0x0b232b24, 0x07228724, 0xb80e2302, + 0x0481fff3, 0xb4250351, 0x412733e3, 0x9d06b89d, 0xb33505b4, 0xbc45bc55, + 0xa199b095, 0x07b19d1c, 0xb465a451, 0xc12d019d, 0xa3c144a4, 0x5424f540, + 0xc1ff000c, 0x23f548a4, 0xff000c50, 0xa4990445, 0x30049d61, 0x9960a499, + 0x4b0619a3, 0x430b4027, 0x9924049d, 0x395639a3, 0xb41d4327, 0x4d273927, + 0xb299080a, 0x2db33d06, 0x102cc0b4, 0x04b49968, 0x41274596, 0x0704b49d, + 0xfce47e0b, 0xf88e0027, 0x4127ff1e, 0x1ec632c4, 0xae5dbec6, 0xff5c5eff, + 0xf3bf0ea7, 0xae98beff, 0x44c4b9ff, 0x2bd4ee0c, 0x27c491ff, 0xff4de330, + 0x004e04ff, 0x31270200, 0xbd0c0c27, 0x8e1198c3, 0xbd0ea7f8, 0x6fbefff3, + 0x9db9ffae, 0x4d070c46, 0x4f6b4c2b, 0xfeef4fe6, 0xf88e0b27, 0x4403b451, + 0x921eb455, 0x8e0c0c27, 0x07fc4ef8, 0x48cf9bd0, 0x33fbc1d8, 0xcc5317cc, + 0x9b40271b, 0x0d074af4, 0x53fdce7e, 0x13d051c3, 0x2bc383c4, 0x8ed0550c, + 0x99fe4efc, 0xf0630604, 0x4c20e107, 0x8ef04310, 0xfa14d0fe, 0x1f07e423, + 0x30272427, 0x8abefe05, 0xf043ff49, 0xfa4efe8e, 0x07040499, 0x6bd007b1, + 0x3e4826bf, 0x91d451a5, 0x75a027dc, 0xa64127c4, 0x07ca65b6, 0x2746f6b4, + 0x31cb9d40, 0x9d05da9d, 0xfa8e04d4, 0xca654027, 0x41a6b407, 0x0d07d151, + 0xf493a03e, 0x51039a08, 0x7442c1d3, 0x43c5320b, 0x4ed51e74, 0x07fa63f8, + 0x3a11e0b1, 0xf911f401, 0x03a00700, 0x9c2710ac, 0x390123a0, 0x27c0270e, + 0xca312721, 0x4f0711e2, 0x21034c0b, 0x1da3cc54, 0xc2c10343, 0x3103f12e, + 0x21274307, 0x3c34400b, 0x1e4e1911, 0x0b3f07df, 0x1d40273c, 0x07e02734, + 0x194e0b4a, 0x07f11943, 0x27df0743, 0x0f4c8300, 0x6b10bcd0, 0x24532307, + 0x33102c23, 0xd4240b44, 0x1926a02c, 0x103c27d4, 0x8007342b, 0x3807833b, + 0x3fab4123, 0x0b0f4c83, 0x333b3329, 0x34ab1b4c, 0x23f52287, 0xff060000, + 0x41034007, 0xe1030407, 0xecc20fab, 0x26d23932, 0x0341072b, 0x07304741, + 0xab4f6b03, 0xf442ce0f, 0x0726ceca, 0x0b4a0714, 0x0343194e, 0x834307d1, + 0xbcd40f4c, 0x4cd49710, 0x2407c70c, 0xd4399e1e, 0x07e114ce, 0xca2fd624, + 0x4910bcc0, 0x1811bcc4, 0xfa934ea7, 0x003f27f9, 0x05080000, 0x002f2743, + 0x234ff400, 0x27420544, 0x0ef49b40, 0xf88efa43, 0xc0101c20, 0x1e10111c, + 0x03a007ff, 0x0c032cac, 0x5e90271c, 0xa007fefd, 0x03faac03, 0x9c27ea0c, + 0xfeef5eae, 0xfd4b4ea7, 0x003f27f9, 0x051d0000, 0x002f2743, 0x2357f900, + 0x1e420544, 0x03a007bb, 0x0c03deac, 0x4e9d27ce, 0xfec75e01, 0xfc93fc4e, + 0xc10397e8, 0x052668c0, 0xf6fd0499, 0x9300834f, 0xffd9fbfd, 0x10270d07, + 0x07fe927e, 0x101c270d, 0x07fe8a7e, 0x7e11270d, 0x0d07fe83, 0x7e111c27, + 0x4f27fe7b, 0x76000011, 0x9ba0f49b, 0x31dc483f, 0x082d271a, 0x22f29b02, + 0xf49b4027, 0x8b00070e, 0x22f49bff, 0xd8483f9b, 0x4d27ec31, 0xf49b0200, + 0xa0c3c148, 0x89a3f39b, 0xc28938c4, 0x34c38936, 0x07ff4d83, 0xffff1ea7, + 0xff3d83fb, 0x104c3307, 0x07ff2d83, 0x04c413d5, 0x14d542ab, 0xfc8e04c8, + 0xdd03d007, 0x7d5e0100, 0x27fd4eff, 0x07402730, 0x38038dd0, 0x8d3a049d, + 0x038d3403, 0xff4e7e36, 0x1d070d07, 0x0359d299, 0x3c1c0304, 0x86fc047e, + 0x99fd8e04, 0x4cc054d4, 0xd4893910, 0x104cdc94, 0xcdf45329, 0x89d40503, + 0xd28964d4, 0x70d3c166, 0x232b249b, 0xc5a6d489, 0x44d630d2, 0xfd8ed2b5, + 0x42c2d4b5, 0x8ed2b5cd, 0x51f493fd, 0xd405ff51, 0xf493d61e, 0x05ff487d, + 0x4ecd1ed4, 0x91fa93fa, 0xa4190397, 0xf39345a6, 0x99045ab0, 0x4fd60534, + 0x9b44276f, 0xfb9321f4, 0xa70396c0, 0xfeffffce, 0x0876081e, 0xd60ac499, + 0x93b40147, 0x0396abf0, 0xd007f48b, 0xeb0d0cc4, 0xe80d0e27, 0xf84e7e03, + 0xc60ac499, 0x9b402740, 0xd44c21f4, 0x4ea73027, 0xbdfeffff, 0x19198843, + 0xc04536a4, 0x0d0712d3, 0x3027fa8e, 0x5a52f493, 0x06439d04, 0x27f0d3c4, + 0x37f313d0, 0x9716f493, 0x050d0703, 0x99fa8e43, 0x4fd60634, 0x0434998d, + 0x598741dc, 0x104cd434, 0x330ea781, 0x42befffd, 0x04ecffab, 0x3ebeff75, + 0x35be0038, 0xd027ffef, 0xfd4eb51e, 0xfce30ea7, 0xf6b9beff, 0x9900e8ff, + 0xd9fe9300, 0xe3c10396, 0x0ce18960, 0x07283489, 0x33300720, 0x9b353323, + 0x07322b41, 0x68e4c52e, 0xfcd43e23, 0x642c03ff, 0x4627d627, 0xd1232101, + 0x24033105, 0xf4983403, 0x04fd4227, 0xff000320, 0xffff3ea7, 0xbd4127ff, + 0x99046634, 0x40270f32, 0x270ef49b, 0xf5228741, 0x02b04024, 0x79f393ff, + 0x40270396, 0x190ee49d, 0x6ef21331, 0xffff3ea7, 0x61f493fe, 0x3dbd0396, + 0x42051988, 0x002714d6, 0xf2befd8e, 0xf4930038, 0x99045978, 0x32160543, + 0xffee8fbe, 0xfd8e0027, 0xfd8e0627, 0xd007fc4e, 0x867ec107, 0x270c22f7, + 0x07fc8e00, 0xf9817e0d, 0xd431d151, 0x41ca1c0b, 0x41102712, 0xf6140ad4, + 0x7e0d0715, 0x0027f802, 0x142bfc8e, 0x0d07ee1e, 0xff4edabe, 0x8eeb04c8, + 0x93f64efc, 0x0395fbfc, 0x4586c419, 0x591af393, 0x05349904, 0xf9934c76, + 0x990395ec, 0x96c10e9d, 0x5edfc660, 0x949d4427, 0x2764510e, 0x99942530, + 0x40275066, 0x9d78948d, 0x4ea76496, 0xbdfeffff, 0x53198843, 0x93fe26f2, + 0x0395b3f4, 0x00273027, 0x93c54205, 0x99f68e74, 0x4fd60634, 0x043499ba, + 0x59b441dc, 0x104cd434, 0x330ea7ae, 0xdabefffd, 0x04ccffa9, 0x36d7bea2, + 0xedcebe00, 0x8e0027ff, 0x330ea7f6, 0x0abefffd, 0x8007fff5, 0xffff0fe0, + 0x00b7ffff, 0x4fff4ea7, 0x074301fd, 0x66939d40, 0x9dc54333, 0xa1f3936c, + 0xf2930390, 0xf10395d3, 0x0002e041, 0xdc4cf1ff, 0xe3ff0002, 0x2ce37f3c, + 0x0334197f, 0x32c2803c, 0x6090c1f9, 0xa007c906, 0x7c27b107, 0x070b0740, + 0x41cc10dc, 0x1d07d707, 0xfff2aebe, 0x1d070a07, 0x8ebecd2b, 0xbd0bfff2, + 0xc076ad0b, 0x84fd4027, 0xff0002d0, 0xfd333ea7, 0x763479ff, 0x2741274a, + 0x609dc130, 0x2d0e949d, 0x18d49993, 0x94eefc93, 0x104cc003, 0x28d18925, + 0xbe34d0c1, 0xabffb726, 0x89c04d0f, 0x040b4cd4, 0x5e0cc08d, 0x0ea7fef0, + 0xbefffd31, 0x1effa83b, 0x0cc38dc5, 0xdd5ec34d, 0xff4ea7fe, 0x4211feff, + 0xffff3ea7, 0x5431d1ff, 0x19228704, 0xb821f5c4, 0x06ff000f, 0x93302746, + 0x0457bff4, 0x439d0527, 0x27f68e06, 0x4ef68e05, 0x11d107fd, 0x7d12c211, + 0xd3010419, 0x320b4533, 0x0139211b, 0x180043f5, 0x42f5ff02, 0xff021804, + 0x4e233027, 0x35fde800, 0x004e0343, 0x41f5fde8, 0xff021810, 0x181442f5, + 0x4e23ff02, 0x27fde7f0, 0x21433520, 0x31eba6de, 0x191b26d1, 0x33e20b04, + 0x39211b45, 0x004ef501, 0xf5ff0218, 0x02180442, 0x233027ff, 0xfde8004e, + 0x4e034335, 0xf5fde800, 0x02181041, 0x1442f5ff, 0x23ff0218, 0xfde7f04e, + 0xfd8e4335, 0xbc1e212b, 0xfb93f94e, 0xc1039400, 0xb24960b3, 0x070cb489, + 0x3033c1c0, 0x00f724ea, 0xf63004c1, 0xa700d14f, 0xfbffff3e, 0x04c034d1, + 0x071b40c8, 0x9b482723, 0x302722f4, 0x070ef39b, 0x9bff8b00, 0x24d122f3, + 0x40cc04c0, 0x484f9be9, 0x271a41dc, 0x9b02082d, 0x402722f2, 0x070ef49b, + 0x9bff8b00, 0x3f9b22f4, 0xec31d848, 0x33484f9b, 0x4c53174c, 0x2b28271b, + 0x66278324, 0x103c2727, 0x4c27322b, 0x3b2123ff, 0x0f2c8343, 0xab102c33, + 0x9b42ab4f, 0x4f9b40f4, 0x1a41dc48, 0x02082d27, 0x2722f29b, 0x0ef49b40, + 0xff8b0007, 0x9b22f49b, 0x31d8483f, 0x484f9bec, 0x02004de3, 0x2748f49b, + 0x0fffd93e, 0x9b40f39b, 0x41dc484f, 0x082d271a, 0x22f29b02, 0xf49b4027, + 0x8b00070e, 0x22f49bff, 0xd8483f9b, 0x4f9bec31, 0x004da348, 0x48f49b02, + 0xd403dc07, 0xd007051e, 0x0d07d403, 0x07f87c7e, 0x7e11270d, 0xf453f8c2, + 0x3027faf9, 0xc4050327, 0x8e68c3c5, 0x0fb499f9, 0x42874cf6, 0x4001430b, + 0x0c2704f6, 0x27f98e0d, 0x6cbe401c, 0xb2c1fff0, 0xf82fe66c, 0x030b0704, + 0x1c27200c, 0xf043be40, 0x60b4c1ff, 0x44c10b07, 0x271b073c, 0x100c0320, + 0x95441c03, 0xfe297eb4, 0xb2494127, 0x160fb49d, 0x3ac49925, 0x07744fc6, + 0xf045be0c, 0x6904ccff, 0x995cb099, 0xfd935dbe, 0xee039294, 0x8704720e, + 0x48d1c130, 0x107434f1, 0x32f1ff00, 0xff001154, 0x428b410b, 0x34f5c027, + 0xff001074, 0x11340cfd, 0xd1c1ff00, 0x87180650, 0x7443f14e, 0xf1ff0010, + 0x00115442, 0x8b310bff, 0x7443f532, 0xfdff0010, 0x001134ec, 0x27b349ff, + 0x27310340, 0x0fb49d00, 0xf98eb34d, 0xff2403e0, 0xdc07f98e, 0x0d07d403, + 0x027e1d27, 0x7e68c9c1, 0x0156fbe4, 0xdc484f9b, 0x2d271a41, 0xf29b0208, + 0x9b402722, 0x00070ef4, 0xf49bff8b, 0x483f9b22, 0x9bec31d8, 0x4de3484f, + 0xf49b0200, 0xd83e2748, 0xf39b0fff, 0xe04e2740, 0xf49b0fff, 0x103e2740, + 0xf39b0f00, 0x0ef29340, 0x3527ffd2, 0x48332419, 0x00004ea3, 0x40f49b07, + 0xf3782103, 0x01004e27, 0x40f49b07, 0x2740f49b, 0x0700003e, 0x2740f39b, + 0x0f00014e, 0x9b40f49b, 0xf39b40f4, 0x40f39b40, 0xffdb2e27, 0x68cec10f, + 0x2740f29b, 0x0f00434e, 0x9b40f49b, 0xf09340f3, 0x07fff1d0, 0x402c2710, + 0x3e0b1319, 0x333d3499, 0x004ea348, 0xf49b0700, 0x50110340, 0xdb4e27f2, + 0xf49b0fff, 0x433e2740, 0xf39b0f00, 0x004e2740, 0xf49b0701, 0x2b210740, + 0x0b031920, 0x7d34993e, 0x4ea34833, 0x9b070000, 0x010340f4, 0x9fe6f250, + 0x9499034a, 0x434fe6fd, 0x03d90703, 0x270100dd, 0x0fffc44e, 0x0740f49b, + 0x03d019ed, 0x112710ec, 0x070f2c27, 0x19310b3d, 0x0b110334, 0xab040740, + 0x03f2780f, 0x4007130c, 0x4ea34fab, 0x230f0000, 0xf49b130c, 0x003e2740, + 0xf39b0700, 0x27102740, 0x3d07102c, 0x3419310b, 0x4ea34833, 0x9b070000, + 0x110340f4, 0x0746f258, 0x10272007, 0x310b3e07, 0x48333419, 0x00004ea3, + 0x40f49b07, 0xf2581103, 0xffc44e27, 0x40f49b0f, 0xad07ed07, 0x031cd099, + 0xac031cec, 0x2711272c, 0x3e070f2c, 0x3419310b, 0x400b1103, 0x0fab0407, + 0x0c03f278, 0xab400713, 0x004ea34f, 0x0c230f00, 0x40f49b13, 0x10003e27, + 0x40f39b07, 0x2c271027, 0x0b3e0710, 0x33341931, 0x004ea348, 0xf49b0700, + 0x58110340, 0x070746f2, 0x07102720, 0x19310b3a, 0xa3483334, 0x0700004e, + 0x0340f49b, 0x27f25811, 0x0fffc44e, 0x0740f49b, 0x99ad07ed, 0xec03ced0, + 0xdeac03ce, 0x2c271127, 0x0b3e070f, 0x03341931, 0x07400b11, 0x780fab04, + 0x130c03f2, 0x4fab4007, 0x00004ea3, 0x130c230f, 0x2740f49b, 0x0701003e, + 0x2740f39b, 0x102c2710, 0x310b3e07, 0x48333419, 0x00004ea3, 0x40f49b07, + 0xf2581103, 0x20070746, 0x3a071027, 0x3419310b, 0x4ea34833, 0x9b070000, + 0x110340f4, 0x4e27f258, 0x9b0fffc4, 0xed0740f4, 0x03ead099, 0xdc03eaec, + 0x271127fa, 0x3e070f2c, 0x3419310b, 0x400b1103, 0x0fab0407, 0x0c03f278, + 0xab400713, 0x004ea34f, 0x0c230f00, 0x40f49b13, 0x11003e27, 0x40f39b07, + 0x2c271027, 0x0b3e0710, 0x33341931, 0x004ea348, 0xf49b0700, 0x58110340, + 0x070746f2, 0x07102720, 0x193d0b31, 0xa3483334, 0x0700004e, 0x0340f49b, + 0x89f25811, 0x2746a6c2, 0xffdd4e27, 0x40f49b0f, 0x00043e27, 0x40f39b0f, + 0x00002ea3, 0x40f29b0f, 0x893c9e99, 0x92891291, 0xc04e2714, 0xf49b0fff, + 0x113e2740, 0xf39b0f00, 0x004e2740, 0xf49b0708, 0x002ea340, 0xf29b0f00, + 0x001ea340, 0xf19b0f00, 0x004e2740, 0xf49b0703, 0x27002740, 0x003e2711, + 0xde270310, 0x27070100, 0x070000ae, 0x20002e27, 0x6b400703, 0xa348334f, + 0x0700004e, 0xb640f49b, 0xefe3e007, 0x40f29b00, 0x9b0de2c0, 0xfa9b40f2, + 0x03010340, 0x9bdb1e11, 0xf31e40f3, 0x9b40f39b, 0xfd9b40f3, 0xea13c840, + 0xffda4e27, 0x40f49b0f, 0x000c3e27, 0x40f39b0f, 0x03004e27, 0x40f49b07, + 0x42072027, 0x48334f6b, 0x1e273127, 0x27071100, 0x0700000e, 0x00004ea3, + 0x40f49b07, 0xf09b2736, 0x07210340, 0x334f6b42, 0xa3310348, 0x0700004e, + 0x6640f49b, 0x40f19b21, 0x27e733c8, 0x0700004e, 0x2740f49b, 0x073f003e, + 0x9b40f39b, 0x3f9b40f4, 0x1a31dc48, 0x02082d27, 0x2722f29b, 0x0ef49b40, + 0xff8b0007, 0x9b22f49b, 0x31d8483f, 0x484f9bec, 0x02004da3, 0x2748f49b, + 0x3ac39d31, 0xc1fb7a5e, 0x2e8748d0, 0xf150d4c1, 0x00107421, 0x5423f1ff, + 0x0bff0011, 0x8b410b40, 0xf5302743, 0x00107424, 0x34e3fdff, 0x5eff0011, + 0xfd93fbad, 0x5effcf58, 0xf39bfcbf, 0x40f29b40, 0x99ff155e, 0x3ea708b4, + 0x33fddfff, 0x4ea30c4c, 0xd5100000, 0xd5020834, 0xa7020832, 0xfd4fff4e, + 0xb3c54311, 0xfae75e6c, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x08050508, 0x1e19140c, 0x09070606, 0x1b1e1d0d, 0x0c080607, 0x1c221c14, + 0x0e0b0807, 0x1f282b19, 0x1c120b09, 0x26333622, 0x201b110c, 0x2e383428, + 0x2b272018, 0x323c3c33, 0x312f2e24, 0x31333238, 0x170c0908, 0x31313131, + 0x210d0a09, 0x31313131, 0x311c0d0c, 0x31313131, 0x31312117, 0x31313131, + 0x31313131, 0x31313131, 0x31313131, 0x31313131, 0x31313131, 0x31313131, + 0x31313131, 0x31313131, 0x170c0908, 0x31313131, 0x210d0a09, 0x31313131, + 0x311c0d0c, 0x31313131, 0x31312117, 0x31313131, 0x31313131, 0x31313131, + 0x31313131, 0x31313131, 0x31313131, 0x31313131, 0x31313131, 0x31313131, + 0x5ef2f393, 0x20340103, 0x01211d4f, 0x694fc000, 0x0b00012b, 0xf453ff1e, + 0x34050b11, 0xf453fe0b, 0x340500bd, 0xf4933027, 0x9d0421f8, 0xfe0b0643, + 0xff71869e, 0x4127fe4e, 0x3e06049d, 0xb702bef4, 0x8e0027ff, 0x715f9efe, + 0xff2ea7ff, 0x03c1ffff, 0x5424d144, 0x0e34ce04, 0x045423d5, 0xfd330ea7, + 0x960439ff, 0x9efe0b44, 0xa7ff7207, 0xffffff4e, 0xb9fc43c1, 0xca010044, + 0x430b1303, 0x830e40c2, 0x03330f0c, 0x007c00f9, 0xfe0bff00, 0xfe0b0027, + 0x00dbf453, 0x00270415, 0xfd4efe0b, 0xf193d007, 0x27032f60, 0x26ec2700, + 0x12011411, 0x420b1403, 0x3c533407, 0x73340b1f, 0x0a3dda31, 0xfe380103, + 0x8e640c27, 0x150cc8fd, 0x0b40870e, 0x500c2304, 0xed650ccc, 0x00ccfd8e, + 0x8e0027eb, 0x93f94efd, 0x04213ff9, 0x6ee2fb93, 0x9d402704, 0xab076594, + 0xda07b411, 0xf48b0a07, 0x06f6c007, 0x4246a419, 0x4ea73027, 0xbdfeffff, + 0x1d197c43, 0x8e0c07b3, 0x1d3027f9, 0x1904cca3, 0xffff4ea7, 0x7c43bdfe, + 0x0a03c419, 0x27fedb7e, 0x8e0c07c0, 0xde02c4f9, 0x20eef093, 0xff137e04, + 0xd6059499, 0xff4ea747, 0x4311feff, 0xffff2ea7, 0x5424d1ff, 0x07338704, + 0xb834f50c, 0x8eff000f, 0x93c44cf9, 0x0420c3f0, 0xd15ef90e, 0xbe0c07fe, + 0x1efef79c, 0x07fc4eef, 0x13bbbec0, 0x80c3c1ff, 0xc189c221, 0x0331037e, + 0x53110321, 0x270151f4, 0xc5c41500, 0xc22580c3, 0x8e7ec18d, 0x27f54efc, + 0xe30ea7d0, 0xeabefffc, 0xf893ffbc, 0xa704207c, 0xfd4fff5e, 0x6dcaf693, + 0xe0b00704, 0xffffff0f, 0x0700f3ff, 0x33200740, 0x2b253343, 0x2c29f924, + 0xf1ff0003, 0x00033023, 0x334907ff, 0x604f0343, 0xc1000542, 0x3f03884d, + 0x80000000, 0x47c1d315, 0x07a20784, 0x0f0c8307, 0x30871007, 0x132b1433, + 0x43334107, 0xc407410b, 0xc40bc333, 0x52d0cf03, 0xc3c10005, 0xd4ae23ac, + 0x34c1fffc, 0xa44ff64c, 0x3424f100, 0xc5ff0003, 0x24f94c34, 0xff00032e, + 0x016434c5, 0xf04d5cd4, 0x004f3cff, 0x110fff00, 0x8434c554, 0x010b6201, + 0x420b4087, 0x113c41d1, 0x40d1a241, 0xa3891140, 0x0b210b14, 0x4043d530, + 0x3c42d511, 0x8083c111, 0x493b4127, 0x83c534eb, 0x0ccd9980, 0xcd9dd123, + 0x2384590c, 0x27845d41, 0x20b4fd40, 0xa7ff0003, 0xfffce33e, 0x49563479, + 0x84c1d5f6, 0x07474e44, 0xbe08071c, 0x27ff1156, 0xe30ea7d1, 0xeabefffc, + 0xb007ffbb, 0xffff0fe4, 0xff11ffff, 0xf58e0d07, 0xfce10ea7, 0x6fb9beff, + 0xf1ce1eff, 0x0003342e, 0xec4e1bff, 0xc5ff6640, 0x24f94c3e, 0xff00032e, + 0x5e6434c5, 0xf54eff57, 0x1f46f793, 0xdd71b904, 0xdc76b902, 0x1b410702, + 0x07f32346, 0x6bf195d4, 0xbe8007df, 0xc1ff00df, 0x3ff64473, 0x21270150, + 0x4387f2a5, 0x43f5f3a1, 0x0004585c, 0x02d874d1, 0xd8d4f4b5, 0x35f99334, + 0x0f07042e, 0x30a2f193, 0x43b9be03, 0x090866ff, 0xb94dc0f4, 0x4dc0320b, + 0xc43e0bbb, 0x2e0bbc4d, 0xf093f129, 0x07033084, 0x07e2be29, 0xd3d8d0ff, + 0xf291f4b1, 0x02dc76bd, 0x4f6b422b, 0x01b04dea, 0x030d0c27, 0x29f58ef3, + 0x48acc0fa, 0x9306271e, 0xff9b46f1, 0xff6a9c9e, 0xf093f129, 0x0703304c, + 0x086ebe29, 0x9bd8d0ff, 0xfb93c71e, 0x8903303c, 0xc1e018bc, 0xb14106ab, + 0x1102cdc0, 0x03cdf026, 0xc001fe11, 0x1b3104cd, 0x3105cdf4, 0xcd400405, + 0xcdf01121, 0x04cf1122, 0x1201cd00, 0x2104cde4, 0x3c0703f7, 0xf60f3c53, + 0xa700ba3f, 0xfd4fff2e, 0x5c7424c1, 0x0000004f, 0x21cd4001, 0x21cd2001, + 0xf0ccfc11, 0xcde00512, 0x02050281, 0x064611fc, 0x066312fc, 0x065418fc, + 0x00a314f8, 0x8516b489, 0x684fe6f4, 0x14b58906, 0x066c5fe6, 0x4d3074a9, + 0x42eaf281, 0xf293066d, 0xa9041e10, 0xea4d3224, 0xe6066b45, 0xfc019b3f, + 0x06d0301c, 0xc0c01cfc, 0x001dfc06, 0xb106f103, 0xe04ff6b4, 0x91b47106, + 0x004ff4b3, 0x95700000, 0x93062703, 0xff977af1, 0xff69c09e, 0x41234307, + 0x000f4f83, 0x40e88000, 0x448701a9, 0x585c44f1, 0x3f830004, 0x8000000f, + 0x30ecf4a5, 0x3123fe96, 0xfff03fa3, 0x3103ffff, 0xa7fe895e, 0xfd4fff2e, + 0xfc7424c1, 0x8000004e, 0x0427ff3b, 0x94cef193, 0x69779eff, 0x001ef8ff, + 0x05f50100, 0x47834607, 0x36333407, 0x342b4333, 0xc333c307, 0xbc07c32b, + 0x4260bf03, 0xb4d10005, 0x0c0702e0, 0x42a347e3, 0xb4d52a07, 0xf19302e0, + 0x03032ef8, 0x05454c0f, 0x6038be00, 0x40cf03ff, 0x07000545, 0xbe19070c, + 0xd1ff0736, 0x030f2471, 0xe4b1d561, 0x2470d102, 0x03f1a10f, 0x7c46be01, + 0x2470d5ff, 0xf0d1030f, 0x5efe19d8, 0xf4b1fe44, 0x1ab6fb93, 0x07478304, + 0x33363334, 0x07342b43, 0x2b233323, 0x93020723, 0x041cfff4, 0x45402f03, + 0x42d50005, 0x0f0302d4, 0x00054594, 0xff0764be, 0xbc033b07, 0xe32b07ff, + 0x2ce37f3c, 0xffbc237f, 0x3c033419, 0xf932c280, 0x1a6ef393, 0x27202704, + 0x3205404c, 0xf4c83403, 0x02d47cd1, 0x7124c089, 0xfde9bec1, 0x3cb09dfe, + 0xa4fcca71, 0xf4530130, 0x38070a67, 0x3c032027, 0x150027d0, 0x27f30384, + 0x4883c540, 0x9dd6849d, 0x828dd782, 0xe0f58ed4, 0x1f0182cd, 0x83cdf4fe, + 0xe0021901, 0x130104cd, 0x21cde0fe, 0xe4fe0d01, 0xfc0102cd, 0xfe045e01, + 0xdfc01cfc, 0xbe0c0704, 0xc4fefd93, 0xcdc05d02, 0xc0580182, 0x531102cd, + 0x0102cdc0, 0x834c074e, 0x4744c047, 0xf1930627, 0x9eff9928, 0xa7ff6825, + 0xfd4fff2e, 0xfc7424c1, 0x1000004e, 0x0427fdf0, 0x93baf193, 0x680b9eff, + 0xa34123ff, 0xfffff04f, 0x874103ff, 0x5c44f144, 0x83000458, 0x00000f3f, + 0xecf4a580, 0x5efce530, 0xb089fe4e, 0xd60fe640, 0x42bb8904, 0x048dbfe6, + 0x0301cde0, 0xcdf403b1, 0x01d40302, 0x0121cde0, 0xcdf40246, 0x03550122, + 0x0102cde0, 0xcde403b8, 0x01d90104, 0x40271127, 0xf1753087, 0xf465f315, + 0xf435f425, 0xf455fb45, 0x2d56f293, 0x27102703, 0xe2f371c0, 0x07028431, + 0x0b44034f, 0xc14e014c, 0x3efa3423, 0x4f070484, 0x71104c03, 0x014c0b23, + 0x003ff444, 0x94700000, 0x93062702, 0xff96d0f1, 0xff67689e, 0x0724cd89, + 0x930d071a, 0x041b37f9, 0xfefca2be, 0xe6159499, 0x9901864f, 0x9e991691, + 0x23182317, 0x10acf8e8, 0xcd89016e, 0x20c28922, 0x2ea48489, 0xa6848942, + 0x01e84dee, 0x2ff6fc93, 0xca8e9d03, 0x8da4828d, 0x809da68d, 0xc9819dcb, + 0xfefce2be, 0x79cd809d, 0xa68e89cc, 0x99c88c9d, 0x01271a94, 0x02d0ed14, + 0x00470027, 0x02394fe6, 0x27a48189, 0x0f1c0340, 0x2d832107, 0x3207fff0, + 0x849d3453, 0xac838d8c, 0x9d8a849d, 0x828d8b84, 0x3cb49998, 0xe00f1c23, + 0xe0021841, 0x07028c42, 0x0321073e, 0x3d830f3c, 0x2703fff0, 0xfff82d83, + 0x44534307, 0x13531207, 0x27ae848d, 0x8d04004d, 0x848dac81, 0x9a838db2, + 0x8998828d, 0x8389ac82, 0x274827ae, 0x27329b10, 0x8d2933c0, 0x0807b084, + 0x01004d27, 0x9dc482c5, 0x83c58681, 0xb8848db4, 0x8d84819d, 0x0c03ba8c, + 0xf9d3be84, 0xcd8299fe, 0x9d628c9d, 0xcf5e6082, 0x01cdf4fd, 0x2700b280, + 0x80f19306, 0x529eff91, 0xcde0ff66, 0xfbfc0281, 0x0282cdf0, 0xcde000b0, + 0xfbf00301, 0x0321cdc4, 0xfbe85edf, 0x4ff4430b, 0xf0000001, 0x3fe6fc65, + 0xb48102f1, 0x02e04ff6, 0x4ff6b4a1, 0xb4c102f0, 0xa944fc34, 0x89f481fc, + 0x4c0330b3, 0xe244530f, 0x27fc9b43, 0x5df19306, 0xfe9eff94, 0xcdc0ff65, + 0xf4741121, 0x571122cd, 0x02cde001, 0xe001e711, 0x311104cd, 0x21cde0fe, + 0x27018503, 0xecf19306, 0xd69eff94, 0xcd89ff65, 0x22c28920, 0xc0fe935e, + 0x750321dd, 0x0322ddd4, 0x82ddc05b, 0xddc06b01, 0xc0660281, 0x610121dd, + 0xe0271027, 0xf0fe685e, 0x578003cd, 0x034c07fb, 0xab7fdf4d, 0x4b42f04f, + 0xff3d5efb, 0x0201cde4, 0x3f5eff37, 0x04cde4fb, 0x5eff2e11, 0x4b07fb36, + 0x30274103, 0x20874153, 0xf1751127, 0xf445f215, 0xf325f365, 0xf355f335, + 0xc0fdc75e, 0x111121dd, 0x1121ddd0, 0xdfdd03ac, 0xab4d077f, 0xa142d44f, + 0x4fff4ea7, 0x7443c1fd, 0x8499971e, 0x1540eecb, 0xc98499fe, 0xfe0e41ee, + 0xeeca8499, 0x93fe07e4, 0x032dfbfc, 0x4fe6c439, 0x8399fc96, 0xeec479c8, + 0x5efdf843, 0x0427fc8a, 0x908ff193, 0x65139eff, 0xf62471ff, 0xa1015b4f, + 0x554ff624, 0x3424c101, 0x01a64ff6, 0xc4031103, 0x13e42403, 0xf481fd5d, + 0x018b04ea, 0xfb7e5be2, 0xf1930627, 0x9eff952b, 0x9bff64e1, 0xf4430b4e, + 0x0000014f, 0xa1fd64f0, 0xd14fc624, 0xf1930627, 0x9eff945a, 0xbeff64c5, + 0x89fefa9b, 0xc15ea68e, 0x034e07fd, 0x4d830f4c, 0x3407fff0, 0x2d273453, + 0x838d0300, 0xb2828dae, 0x5e9a848d, 0xcde0fdff, 0xfce22104, 0x3104cde0, + 0xcde4fcdc, 0xfead1201, 0x41034b07, 0x41533027, 0xf1751227, 0xf365f455, + 0xf025f015, 0xfb45f335, 0xc0fccf5e, 0xe10201cd, 0x0281cdc0, 0x82cde46b, + 0x5efe8201, 0x4b07fca8, 0x41534103, 0x23273047, 0xf315f275, 0xf025f465, + 0xfb45f035, 0xa15ef455, 0x034e07fc, 0xf84d8347, 0x533407ff, 0x002d2733, + 0xae838d02, 0x8db2828d, 0x885e9a84, 0x074007fd, 0x0341033b, 0x53415331, + 0x75132731, 0x65f435f1, 0x25f015f3, 0x55fb45f4, 0xfc665ef3, 0x40272127, + 0xf2753047, 0x07fc4f5e, 0x4741034b, 0x53202730, 0x75122741, 0x55f325f1, + 0x15f265f4, 0x45f235f3, 0xfc3e5efb, 0xf1930627, 0x9eff8fb5, 0x07ff63d5, + 0x50e5be0b, 0x5efa29ff, 0x0627fa5c, 0x901df193, 0x63bf9eff, 0x930627ff, + 0xff8fdaf1, 0xff63b49e, 0xf1930627, 0x9eff9372, 0x27ff63a9, 0x36f19306, + 0x9e9eff90, 0x0627ff63, 0x904ef193, 0x63939eff, 0x930627ff, 0xff9067f1, + 0xff63889e, 0xf1930627, 0x9eff907a, 0x27ff637d, 0xf0f19306, 0x729eff93, + 0x0627ff63, 0x91fcf193, 0x63679eff, 0x930627ff, 0xff9374f1, 0xff635c9e, + 0xf1930627, 0x9eff9342, 0x27ff6351, 0x2ff19306, 0x469eff92, 0x0627ff63, + 0x9147f193, 0x633b9eff, 0x930627ff, 0xff9116f1, 0xff63309e, 0xf1930627, + 0x9eff9162, 0x27ff6325, 0x5df19306, 0x1a9eff90, 0x0627ff63, 0x902bf193, + 0x630f9eff, 0x930627ff, 0xff91c1f1, 0xff63049e, 0xf1930627, 0x9eff9237, + 0x27ff62f9, 0x82f19306, 0xee9eff90, 0x0627ff62, 0x904cf193, 0x62e39eff, + 0x93f54eff, 0x0416f3f6, 0x274467c1, 0x65649d40, 0x000f7f83, 0xf0a38000, + 0xe8506ac1, 0x3902ea70, 0x234ff664, 0xf4645901, 0x01a4104c, 0x278061c1, + 0x102c2780, 0x383b3127, 0x418b4307, 0x03204fe6, 0xf2788103, 0x47873707, + 0x342b3433, 0x9d3ca2c1, 0x430750a8, 0x33062299, 0x9d430b43, 0x140751a2, + 0x33446bc1, 0x34a3c113, 0x4807140b, 0x2107f115, 0xbc334333, 0x38a5991c, + 0x42602f03, 0xb3ab0005, 0x21a9f405, 0xf0011098, 0x109623a9, 0x4f834b07, + 0x0fffffff, 0x038c04f5, 0x319bff00, 0x95075333, 0x039003f5, 0x9f03ff00, + 0x00054260, 0x143122b9, 0xa94461c1, 0xa901089d, 0x9d010a9c, 0x01f560a2, + 0x000542e4, 0x0277cdf2, 0x43645cf1, 0xed070005, 0xec0be333, 0xe823da46, + 0x4b07e301, 0x4c5343cb, 0x76e8031c, 0x2b4b0748, 0x1b40cc43, 0x160af493, + 0x26437904, 0x232e0739, 0x1d07102c, 0xd123e207, 0xf1f8e803, 0x250701e9, + 0x42602f03, 0x23a90005, 0x3df20108, 0xe40100ee, 0x00d6b4ee, 0x278063c1, + 0xeb483b41, 0xd1f09334, 0x63c50415, 0xf3f37e80, 0x4ea73027, 0xbdfeffff, + 0x7e197c43, 0xd027f39c, 0xf0830d07, 0x41e0f58e, 0x0ea7011f, 0xbefffd33, + 0x07ffb25b, 0xff0fe0d0, 0x8affffff, 0x33c00702, 0xe0c0f1c3, 0x09ff0002, + 0xbe1a07a2, 0xbeffab73, 0x09ffafbe, 0x81fb93a4, 0xc4f50415, 0xff0002dc, + 0xc56866c1, 0x42275ca6, 0x02d0d4fd, 0xdea7ff00, 0x39fffd33, 0x7d4ff6d4, + 0x07c02701, 0x7ebc3d0b, 0x4ea7f381, 0xbdfeffff, 0x7e197c4c, 0xb499f32c, + 0x99462605, 0x453606b4, 0xf804b499, 0x7e016041, 0x55bef348, 0xd027ffaa, + 0xf0830d07, 0xdc27f58e, 0x25f09316, 0x4a7e0415, 0x056499f3, 0x0d074186, + 0xfeebfbbe, 0x1512f093, 0x0ef08304, 0xf31e5ef5, 0x4f83f001, 0x0fffffff, + 0x01042cd1, 0x039004f5, 0x3333ff00, 0x3ec23c0b, 0x23130725, 0x1e210718, + 0x11182303, 0x15200124, 0x34300534, 0x4333104c, 0x42e843f5, 0x28230005, + 0xe1ca3107, 0x033507e5, 0x0542603f, 0x0834a900, 0x01f21101, 0xf54103f1, + 0x0542e81e, 0x0834ad00, 0x15eb0501, 0x602f03e8, 0xb9000542, 0x03107c24, + 0x7c24bd41, 0x27635910, 0x3d310341, 0xc1635d64, 0x64813cab, 0xf893b901, + 0xea041488, 0x8900f349, 0xb4494a63, 0x147afc93, 0xee6d7104, 0x0700af34, + 0x070d071b, 0xaa51be29, 0x81c471ff, 0x0bbb49c3, 0xc5392b49, 0xcdc53cad, + 0x85c4754c, 0x4acb8dc3, 0x27873707, 0x322b3433, 0x43334307, 0x2407430b, + 0x420b2333, 0x52fa44e9, 0xa3990005, 0x58a48d04, 0x02d062b9, 0xb955a29d, + 0x0b02d064, 0x6b410343, 0xd064bd4f, 0x56a29902, 0x420b3227, 0x64bd633d, + 0x5f5e02d0, 0x072301fe, 0x0743cb4b, 0x1c4c530b, 0x032b2823, 0xfe084ff6, + 0xfdfa00e8, 0x23fe015e, 0xf07fa371, 0x03ffffff, 0xfd0d5e71, 0x30be0d07, + 0x7e5eff64, 0xf4b459fe, 0xfe9d104c, 0xf2be0d07, 0x08e8ff64, 0xd97efe9a, + 0xfe905ef1, 0xc54cccc1, 0x6d5e3cac, 0x7dcfd6ff, 0x00001e27, 0x800c2701, + 0xd7be2027, 0x1c27ff60, 0x0490d510, 0x6a51ed01, 0x5e000543, 0x4107fd6c, + 0x64c543ab, 0xfcde5e80, 0xa7448cc1, 0xffffdf0e, 0xff60e0be, 0xdc83dc07, + 0x2480990f, 0x1c07d333, 0xdbf92027, 0xff000080, 0x02718fbe, 0x0d26c007, + 0x4b87a381, 0x3b07430b, 0x31034005, 0x0080d3fd, 0x0ea7ff00, 0xbeffffdf, + 0x99ff6086, 0x41272483, 0x3b3cabc1, 0x75848543, 0xfebd5e8c, 0x90d11c07, + 0x14330104, 0xff5f86be, 0x1c07cc47, 0x51ed1fab, 0x0005436a, 0xa7fcf35e, + 0xffffdf0e, 0xff6051be, 0xee5ed627, 0x15dc27fd, 0x4efde85e, 0x8003c1fb, + 0x837c0199, 0x23070f3c, 0x33872433, 0x4207232b, 0x420b4333, 0xc333c407, + 0xcf03c40b, 0x000552d0, 0x039cc3a9, 0x038dd007, 0x5e1fc658, 0x30274027, + 0x9d24db99, 0x038d7c04, 0x10bcc074, 0x40d0c170, 0xbe34d189, 0x89ff71e6, + 0xc48936d2, 0x104c182a, 0x8958d28d, 0x400b58d4, 0x271624c2, 0x10bc4410, + 0x039ec4b9, 0xab104ca3, 0xc5032714, 0xfb8e54d1, 0x039ec4b9, 0x1127202b, + 0xf3534bd6, 0x1d13f0fc, 0xd3150431, 0x1e58d28d, 0x340089d5, 0x9b40d4c1, + 0x89400b03, 0xd4c576d1, 0x7190be40, 0x74d489ff, 0x0b24db99, 0x74d48d40, + 0x9210bcc4, 0x2736d289, 0x58d28d00, 0x1027951e, 0xf0bef353, 0x04311d13, + 0xd28dd315, 0x4e971e58, 0xddfa93f5, 0x3a07040f, 0x07ffac03, 0xe3f2e32a, + 0xb0077f3c, 0x237f2ce3, 0x3419ffac, 0xc2803c03, 0xf693f932, 0xd104121c, + 0x9302d461, 0x0460e3f5, 0xa58a5499, 0x361371f1, 0x8b549945, 0x03284fe6, + 0xf4254127, 0x029c0d27, 0x3483e127, 0x34864127, 0x30274027, 0xa49d4433, + 0x08a39d0a, 0x9d7eb499, 0x41830ca3, 0x890ba49d, 0xa005acb1, 0x890ea18d, + 0xa28daeb2, 0xa4b38910, 0x8912a38d, 0x3027a6b4, 0x8914a48d, 0x412798b1, + 0x8930a18d, 0xa1999ab2, 0x32a28d3c, 0xb57eb289, 0x24a28da3, 0xa49da285, + 0x3df29336, 0x11e0040f, 0x12e00601, 0x43270608, 0x249d3427, 0x35239d34, + 0x9d085499, 0x4fe6fdae, 0xf19301a5, 0x27046056, 0xf093402c, 0xbe040f51, + 0x99ff545a, 0x4fe60954, 0xf1930168, 0x2704607e, 0xf093402c, 0xbe040f79, + 0x93ff5442, 0x04606df1, 0x93402c27, 0x040fa8f0, 0xff5431be, 0x6002f993, + 0x15930104, 0x113506f3, 0x6e7ff697, 0x030b0701, 0xf1930c0c, 0x27040ecc, + 0xbe01002d, 0x07ff16f8, 0x170ff690, 0xd1b38101, 0xc502d462, 0x232580b3, + 0x02d864d1, 0x41035311, 0x02d864d5, 0x01a53ff6, 0x5fcef493, 0x27440904, + 0x76b48d30, 0xb49d4127, 0x40b3c57c, 0x233ca499, 0xf04f6b42, 0x9901ce42, + 0xa39934a4, 0x23432335, 0x83338333, 0x0e4c3343, 0xab103c33, 0x004e2734, + 0x43ab0400, 0x11054da3, 0x2170b4c5, 0xad4fe6f4, 0x38bdc100, 0x078a5499, + 0x00cd03cd, 0x2f4ff601, 0xe9f19305, 0x2c27ff8e, 0xbe0c0710, 0x07ff5386, + 0x100d030d, 0xe5f19301, 0x2c27ff8e, 0x5374be0c, 0x8b5499ff, 0x052f4fe6, + 0xf1930c07, 0x27045ff6, 0x0c03102c, 0x535cbece, 0x030c07ff, 0xf193de0c, + 0x27045ff2, 0x4bbe0c2c, 0x5499ff53, 0x2f4fe68c, 0x930c0705, 0x045fe9f1, + 0x03102c27, 0x33be1c0c, 0x0c07ff53, 0x932c0c03, 0x045fe5f1, 0xbea22c27, + 0x99ff5322, 0x4fe68d54, 0x0c07052f, 0x6072f193, 0x102c2704, 0xbeea0c03, + 0x07ff530a, 0xfa0c030c, 0x606ef193, 0xa22c2704, 0xff52f9be, 0xfcfdf453, + 0x0907b415, 0xf58ef2c3, 0xed5ef193, 0x402c27ff, 0x0e13f093, 0x52dcbe04, + 0x8df193ff, 0x2c27ffed, 0x42f09340, 0xcbbe040e, 0x995eff52, 0xf9f193fe, + 0x2c27ffec, 0xaef09340, 0xb7be040d, 0x5c5eff52, 0xff3ea7fe, 0x3499feff, + 0x81f39309, 0x4383040f, 0x44332487, 0x3399422b, 0x4d44f92e, 0xeaff0000, + 0x03042834, 0x23230731, 0xc02f6b31, 0x33c00e34, 0x0731230b, 0xf04f6b43, + 0x07057542, 0x446dc1c2, 0x4d386cd5, 0x0f82f893, 0xc7dcfa04, 0x4c84d100, + 0xbf4dee4d, 0x2b0d0700, 0xeddbbe0c, 0x180c83fe, 0xa6180ce0, 0x139c2700, + 0xc1ff595e, 0x4c8380b4, 0x3324070f, 0x2b448724, 0x33320724, 0x07320b33, + 0x0b433343, 0xd04f0343, 0xa9000552, 0x89039c43, 0x349b2644, 0x00003e10, + 0x8d340701, 0x412776b3, 0xb49d3027, 0x40b3c57c, 0x233ca499, 0xf44f6b42, + 0xa1fe3642, 0x243489f3, 0x01024dc0, 0x024dc014, 0x4d400f11, 0x4d208002, + 0x47838022, 0xfe1944e4, 0x9934a499, 0x432335a3, 0x33833323, 0x4c334383, + 0x103c330e, 0x4e2734ab, 0x5e080000, 0x5499fe16, 0xd54ff68c, 0x8d5499fc, + 0xfcce4ff6, 0x0d272027, 0xe0270100, 0xcb5ef225, 0xc19401fc, 0x9711448d, + 0x51a9f415, 0x52d1023a, 0x1f8b022c, 0x023053d1, 0xf205f195, 0x023454d1, + 0x41083128, 0xf191f305, 0x2c2714f6, 0xf6f2951e, 0x2703b9df, 0x446dc140, + 0x4d5064bd, 0x34e0f311, 0x4027042e, 0xf191f485, 0x42be0d07, 0x04e6ff6d, + 0xa60c9499, 0x91402747, 0x0c949df2, 0x4c2730a7, 0x446dc1c8, 0x4d4063d5, + 0x4d4464d5, 0x4d3c62d5, 0x03a0dcfa, 0x4c07cd1b, 0x070f4c83, 0x33248734, + 0x0b322b34, 0x91f49334, 0x4201045b, 0x320b3387, 0x113c31d1, 0x899ab489, + 0x133398b2, 0x4c030107, 0x0f2c030f, 0xf1752473, 0x33d1e007, 0x44731168, + 0x9b1f1c73, 0x18ec5342, 0x18339027, 0x2407f365, 0x08331eab, 0x84073907, + 0xff68fcbe, 0xd007f261, 0xa2152ce8, 0x23020703, 0x1527140c, 0xff6cd2be, + 0x08140c03, 0x0c27260c, 0xf5408725, 0x0450404d, 0x1001c800, 0x1baaf393, + 0x12340103, 0x033d05d4, 0x91f0a834, 0xbe0c07f1, 0x07ff6cd4, 0x910596d0, + 0x4060d5f1, 0x3c61d54d, 0xe8f2814d, 0x81043821, 0xbef191f0, 0x45ff6c8b, + 0x406cd1f0, 0x91f2934d, 0xc0e8040d, 0xd586046b, 0xd14423c1, 0xce4d4c24, + 0x24d11534, 0xf3714d3c, 0x3c0b4123, 0x4d3c24d5, 0x4d4023d5, 0x6dd1c307, + 0x07074d3c, 0x1d070c2b, 0xff6c4ebe, 0x0c2cf055, 0xc84c27c8, 0xf181f455, + 0x03f511e8, 0x1a27f081, 0x34be0333, 0x0c2bff6c, 0x2cbe1d07, 0xf045ff6c, + 0x13c80ce8, 0x07f38103, 0x0731731d, 0xbe0c2b03, 0x07ff6c17, 0x07f051c0, + 0x07100728, 0x1f1c7340, 0x33184c53, 0x0714ab18, 0xbe083339, 0x7eff6811, + 0x7007eb82, 0xd9c8cce8, 0x734c0702, 0x2c071f4c, 0x2c53d407, 0xabd83318, + 0x41c833d2, 0x072807f0, 0x73400710, 0x4c531f1c, 0xab183318, 0x33390714, + 0x67dbbe08, 0xeb4c7eff, 0x2807f035, 0x39070c07, 0xcabe1d07, 0x3b7eff67, + 0x71c007eb, 0xf2f351f2, 0x61027732, 0xa847f2f4, 0x4f71e802, 0x08d70703, + 0xdc27657c, 0xd1f14164, 0xc84d4464, 0x4c0c2011, 0x1e4c271e, 0xd4d24503, + 0x31f43115, 0x1f4c53f2, 0xd173420b, 0xd40b4173, 0x7e15dcec, 0xe0f31102, + 0x1102c134, 0x0d32e0f3, 0x4463c103, 0x4d4c64d1, 0x025134ee, 0x0092d1e8, + 0x19fefc93, 0x1d482703, 0x272127c4, 0x24f93f3c, 0x0000c064, 0x43734d9b, + 0xff004ff8, 0x018fffff, 0x4c734013, 0xfd4f6b1f, 0x04500024, 0xf0210300, + 0xf093ddf3, 0x93040a09, 0x0319c7f1, 0xff4f0dbe, 0xc41d4827, 0x273f3c27, + 0x64c4f9c1, 0x9b0000c0, 0xf843734d, 0xffff004f, 0x13014fff, 0x1f4c7340, + 0xc4fd4f6b, 0x00045000, 0xf3f0c103, 0x91f193dd, 0x2c070319, 0x0a07f093, + 0x4ed0be04, 0x932c07ff, 0x040a3cf0, 0x197af193, 0x4ec0be03, 0x4463c1ff, + 0x070f3c83, 0x33238743, 0x93422b44, 0x04591bf1, 0x1201430b, 0x420b4487, + 0x11684dd5, 0x4d4463d1, 0x0baef493, 0xd53d1204, 0xc14d444d, 0x4dd54442, + 0x42d54d48, 0x665e4d4c, 0x9d4427fa, 0x249d3424, 0xfa065e35, 0x33274427, + 0x9d34249d, 0xf95e3523, 0x5e3407f9, 0xf193fbd7, 0x27045ad6, 0x0c07102c, + 0xff4e59be, 0x0d030d07, 0xf1930110, 0x27045ad2, 0x47be0c2c, 0x5499ff4e, + 0xd54ff68b, 0x930c07fa, 0xff8a61f1, 0x03102c27, 0x2fbece0c, 0x0c07ff4e, + 0x93de0c03, 0xff8a5df1, 0xbe0c2c27, 0x99ff4e1e, 0x4ff68c54, 0x0c07fad5, + 0x8986f193, 0x102c27ff, 0xbe1c0c03, 0x07ff4e06, 0x2c0c030c, 0x8982f193, + 0xa22c27ff, 0xff4df5be, 0xf68d5499, 0x07fad54f, 0x2bf1930c, 0x2c27ff8a, + 0xea0c0310, 0xff4dddbe, 0x0c030c07, 0x27f193fa, 0x2c27ff8a, 0x4dccbea2, + 0xd0f453ff, 0x5eb415f7, 0xdce8fad2, 0xb9fc4f1f, 0x934d5064, 0x040acbf3, + 0xfc424ff6, 0x27443dc1, 0x5034bd41, 0xfc365e4d, 0xb75e4f6b, 0x5e4f6bfe, + 0xf201fe77, 0x00ba2fe6, 0x31e8f301, 0xfd010134, 0x2765dc08, 0xfc9364dc, + 0x27031838, 0x27c41d48, 0xc1273f3c, 0xc064c4f9, 0x4d9b0000, 0x4fd84373, + 0xffffff00, 0x73401326, 0x4f6b1f4c, 0x5000c4fd, 0xc1030004, 0x93def3f0, + 0x031807f1, 0xf0932c07, 0xbe04083d, 0x5eff4d46, 0x4f6bfe65, 0x9121df1e, + 0xd35ef185, 0xe8f361fb, 0x07015930, 0xfc655e03, 0xf251f171, 0xfd8b12f2, + 0x37faf361, 0x7ce8fd85, 0x03015615, 0xfd7f5e75, 0x5ec8cc27, 0x2c27fd25, + 0x5ef245c8, 0xc427fce9, 0x93fa8c5e, 0x040a13f4, 0x4d484dd1, 0xe8fda75e, + 0x00e0157c, 0x525e7523, 0x270d07fd, 0x68e9be15, 0x0bd087ff, 0xfd775ed0, + 0x0707f191, 0xff68dabe, 0x899ab489, 0x100798b3, 0x030f4c03, 0x34730f3c, + 0x4473e007, 0x9b1f1c73, 0x18ec5343, 0x24071833, 0x1eab3027, 0xc6be0833, + 0x377eff64, 0x5ef005e8, 0x64b9ff10, 0xf3934d50, 0xd60409b0, 0x33d17a4f, + 0xf4014d48, 0xc81fd4da, 0x271965dc, 0xf105641c, 0x4307fd01, 0xd45a4223, + 0x4d124403, 0xd4074d07, 0x05fd185e, 0xe8f201fd, 0x0100ab21, 0x651cc8f1, + 0x642c27e0, 0xd91ef205, 0xd35ed127, 0x453027fe, 0xfbcf5ef3, 0x4d4863d1, + 0xd127c91e, 0x51fcb85e, 0x073907f0, 0x73400710, 0x4c531f1c, 0xab183318, + 0x33280714, 0x6447be08, 0xe7b87eff, 0x70073027, 0xf335c027, 0xd1fc765e, + 0xd24d4833, 0xdc0747c3, 0x7123811e, 0x91fc745e, 0xbe0707f1, 0x07ff680b, + 0x73400710, 0x4c531f1c, 0xab183318, 0x07f05514, 0x33390728, 0x6407be08, + 0xe7787eff, 0x7007f481, 0x272941c8, 0x5ed027c0, 0xf493fc03, 0x050316cc, + 0xfb295e40, 0xd3f2fd31, 0xd307ff3a, 0x03ff355e, 0xfc275e71, 0xf4054127, + 0x27ff375e, 0x35c02710, 0xfc095ef1, 0xf493f74e, 0x890459cc, 0x42890843, + 0x2b80070a, 0x0c710732, 0xfc3d0330, 0x2734d603, 0x87f78e00, 0x124ce942, + 0x071007d0, 0x07c30393, 0x23b207ac, 0x03a27391, 0xe9c323b1, 0x07d0104d, + 0x0ea9d210, 0xf1930827, 0xbeff89e0, 0x07ff4cef, 0x0d8c2da9, 0x2484298d, + 0xc40bb9dd, 0x1e66484c, 0xbadd2414, 0x284cc40b, 0x000a1e5c, 0xc40bbbdd, + 0x510bbcdd, 0x37078029, 0x0123070b, 0xe37f3ce3, 0x34197f0c, 0xc2803c03, + 0xa7c6f930, 0x3a071707, 0x03fcbd10, 0x03fcbd23, 0x44f14b87, 0x1007d010, + 0x1405b103, 0xf3381403, 0x03fcbd10, 0x03fcbd23, 0x5922f393, 0x0a3b8d04, + 0xe0003f27, 0x01271007, 0xf78e3b2d, 0xf1930627, 0xbeff8977, 0x1eff4c6f, + 0x000000a4, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00023a88, 0x00023a9c, + 0xff010224, 0x0004ce00, 0x00000040, 0x00000034, 0x00000003, 0xff01022c, + 0x0004ce08, 0x00000040, 0x00000034, 0x00000003, 0x1007fd4e, 0xd1871f6b, + 0xcf00df03, 0x08530004, 0x01103f9b, 0x51f293d4, 0x2ec10293, 0x05432bf4, + 0x08e19dd4, 0xa7f22499, 0xfd4fff3e, 0x8909e49d, 0xe44de424, 0x89e82499, + 0x3211e621, 0xe46d410b, 0x07f6e205, 0xf49b4027, 0x8b00070e, 0x274027ff, + 0x9de40530, 0x2f9b08e3, 0x0bd40110, 0x8ed40542, 0x734007fd, 0xe8410342, + 0x4ee31ef4, 0xff4ea7f8, 0x0399ffff, 0x0844d10a, 0xc6b00701, 0xa4076a3f, + 0x94074853, 0xac539f6b, 0x07030710, 0xa78027eb, 0x99d027c0, 0x420758e2, + 0x44333287, 0x2cc0340b, 0x34f113ff, 0xff00018c, 0x1d3b1127, 0x00004ed8, + 0xc1eb2604, 0xe103d103, 0x41d9f0f0, 0x31842eb4, 0x204cceb4, 0xffff4ea7, + 0x444cc5f7, 0x274848c5, 0x35b84500, 0xcef88ebc, 0x8d07db92, 0xab108c33, + 0x27d21e8a, 0x27f88e04, 0x1e8027c0, 0xa7fd4ecf, 0xf7ffff4e, 0xd0074301, + 0x38dc0107, 0x8e16b60d, 0x060e27fd, 0xf97e2710, 0x7e0d07fe, 0x0276ff5f, + 0xfd0efd8e, 0x4efeeb5e, 0xff3ea7fb, 0x34c1fddf, 0xd8c00740, 0xd3071b41, + 0xd140bc27, 0x27017cc0, 0xdba5151c, 0x4027b83e, 0xd3c1d4a5, 0xec31dc40, + 0x0000fb8e, 0x0003e80d, 0x0003e80b, 0x0003e807, 0xf1a3f54e, 0x9107a007, + 0xa469151e, 0x460b4b2b, 0x41c84f8b, 0xddf41363, 0x0a074101, 0x2ea7803e, + 0xa9ffffff, 0xa9010224, 0x07010423, 0x7292a9b4, 0x1b430703, 0x07422b4b, + 0x709da974, 0x2b7fab03, 0x23f305d7, 0xff3ea7d1, 0x3499feff, 0x9bd0e809, + 0x07438301, 0x87343334, 0xf1342b44, 0x00005432, 0x07a401ff, 0xb48e2383, + 0x24e2ffff, 0xa499018c, 0x08a69909, 0xd1944fd6, 0x27030c92, 0x07f235c1, + 0x83841912, 0x83990f1c, 0x07133304, 0x23310753, 0xffff843e, 0x007c12f9, + 0xf415ff00, 0x5200f345, 0x2c18c027, 0x06c2a340, 0x7d14f9c9, 0xceff0000, + 0xb1231e4c, 0xffff4ea7, 0x0843b9ff, 0x834b0701, 0xb1030f4c, 0xf253344e, + 0x2101ff30, 0xa7ff4d5e, 0xffffff3e, 0x34b92b07, 0x2c830108, 0xeef2550f, + 0xbe00b224, 0x59fe650e, 0xff2ea784, 0x23a9ffff, 0xf4250102, 0x00ae3bee, + 0x0427e427, 0xf49b4027, 0xff2ea70e, 0xf321fd4f, 0x9d3824c5, 0xefd608a3, + 0xff2ea75d, 0x24a9feff, 0xc1270142, 0x24ad4103, 0xac9d0142, 0xff3ea709, + 0x3211fd4f, 0x94a9ab6d, 0x3d070370, 0x031c92d5, 0x3fabf251, 0x432b923d, + 0x41c0932d, 0xa7d91636, 0xffffff3e, 0x04673cbd, 0x270f3299, 0x0ef49b40, + 0x22873127, 0xb04023f5, 0x94d1ff02, 0x8321030c, 0x34ce4103, 0x2d05c876, + 0x1e031007, 0x5e03e800, 0xf331fea2, 0xdfff2ea7, 0x873f6bfd, 0x004da343, + 0x0824d504, 0x082ed502, 0x53b31e02, 0x01fe67f4, 0xfe805e41, 0xfe8004e0, + 0xf58ef183, 0x010424a9, 0x43eef301, 0xf421ff4c, 0xff4664ee, 0xf2118419, + 0xff3e42ee, 0x00817fe6, 0x2439f241, 0x00c3c4ee, 0xf605a499, 0x2100b54f, + 0xcaf33184, 0x41272934, 0x0227e227, 0x5e05a49d, 0x9419ff1c, 0x941d44a3, + 0x94d1841e, 0x0227030c, 0xf1834103, 0xf58ea405, 0xf1830227, 0xd9b6f58e, + 0xffff4ea7, 0xff2ea7ff, 0x43d1feff, 0x24d10c2c, 0x43c2013c, 0x034b0751, + 0xff2ea741, 0x24adffff, 0xe0270102, 0x846d0027, 0x07fed35e, 0xa741034b, + 0xffffff3e, 0x0027e027, 0x010234ad, 0x99febf5e, 0x4ff605a4, 0x5fe6ff7c, + 0xf331ff78, 0xfb9f0ea7, 0x198325ff, 0x03312784, 0x9d841d41, 0x50be05a3, + 0x5d5efe54, 0xa7f331ff, 0xfffb9f0e, 0x83253103, 0x3cbef335, 0xf231fe54, + 0x2305a499, 0xc6f23521, 0xe227944f, 0x755e0227, 0x272c3dfe, 0xff4ea730, + 0x43adffff, 0x44a9010a, 0x37070104, 0x2ea7340b, 0x27ffffff, 0xad0427e4, + 0x5e010423, 0x0000fe50, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0xfe0bfe0b, 0x2ea7fc4e, + 0xa9feffff, 0xa9014423, 0x07014224, 0x1a34cec0, 0xc0d1d207, 0x1d27017c, + 0x7abe6418, 0xd3a9fffc, 0xd4a90144, 0x43ce0142, 0x78c3d1ea, 0xff1ea701, + 0x3289feff, 0x6414a912, 0x0b302719, 0x6414ad42, 0x0ef39b19, 0xf94efc8e, + 0x017804d1, 0x07a003c1, 0xa92433e0, 0x2b011c40, 0xffbea732, 0xeac1fddf, + 0x80e2c184, 0xc18ce9c1, 0xecc188e4, 0x90edc194, 0x80000d83, 0x01c8b3d5, + 0xb1d50846, 0xe3d101fc, 0x34a90178, 0x4d83011c, 0x45d68000, 0xcd0bd19b, + 0xdfff4ea7, 0xe44cc5fd, 0x219bf98e, 0x419b2a0b, 0x0bdcb2c5, 0xe0b4c549, + 0x0000d51e, 0x000000e5, 0xd007f54e, 0x07e0dc03, 0x7809d11d, 0x97dc0301, + 0x077f1ce3, 0x93f0638d, 0x028e3ff6, 0x8ce3f105, 0x77dd237f, 0xa7e90701, + 0xffffff5e, 0x94293107, 0x03709ba9, 0xb123b42b, 0x9944dbc5, 0xab0739e4, + 0xa43b4513, 0x3c033419, 0xf938c280, 0x40272027, 0xd39d3127, 0xe8d49de9, + 0x8decd29d, 0xd28de0d2, 0xa9ca07e4, 0xab030ce2, 0xe6dc8dcf, 0xa7f2d28d, + 0xfee6673e, 0x89f4d3c5, 0xe39912e4, 0x87412339, 0x8de2b914, 0x3a34f003, + 0x14e48902, 0x4a2b3423, 0x3bebd39d, 0x07420243, 0x07435b42, 0x23210734, + 0x23430721, 0x0b038741, 0x8d032b23, 0xd49de2d2, 0x070103ea, 0x4d41e814, + 0x23230702, 0xa73d0721, 0xed349d42, 0xf2b03103, 0x109d1d0b, 0xd1e439ed, + 0x07017cd7, 0x83412334, 0x33330f4c, 0x3e234333, 0x23fffef4, 0xfffef44e, + 0xc5c8d3c5, 0xdc8dc4d4, 0xcb1ea7e6, 0x6401fefd, 0x13211211, 0x240b4013, + 0x32ab340b, 0x30e86211, 0x20e80201, 0x42070202, 0x46333287, 0x420b432b, + 0x34333407, 0xf453342b, 0x4c01fedc, 0x3e23320b, 0x07fef200, 0x014c0729, + 0x05c12321, 0x03240331, 0x11f49834, 0x03630164, 0x15310341, 0xec630564, + 0x9301e841, 0x028d0bf3, 0x1ea73401, 0x05fefdcb, 0xa7312714, 0xfdcfff2e, + 0x897023c5, 0x23c51cd4, 0x6d4ae26c, 0x2ad48901, 0x3fab3b07, 0x231ed38d, + 0x272b4741, 0x8034ee10, 0x06d49901, 0xe605d19d, 0x2701694f, 0x78d2d110, + 0x9d402701, 0xd18d12d4, 0xb4d3c116, 0xd4c54427, 0x58dcc554, 0xc5b8dcc5, + 0xdcc5bcdc, 0x3f4ea770, 0x2089fdbf, 0x03432518, 0xd4c11f0c, 0x1eda89ac, + 0x73162e89, 0x04d19d05, 0xdfff1ea7, 0x1fec03fd, 0x2b4014c5, 0x10e5730a, + 0x07012701, 0x234e9b40, 0x9931a741, 0xd48d11d2, 0xccd38dce, 0x9ddcdcc5, + 0xde8dd7d0, 0xd0dc8dd4, 0xe6d2da8d, 0x9900a52f, 0x11d810d1, 0x0edb994f, + 0x010852d1, 0x44334b07, 0xc40bcb87, 0x018cc3f1, 0x4a07ff00, 0x3edc4403, + 0x30040000, 0x4207a447, 0x32074853, 0x0d274f6b, 0x3c536412, 0xd2b40e10, + 0xbdbe17a3, 0x54d1fff8, 0xc3f10108, 0xff00018c, 0x3ed82407, 0xd7040000, + 0xd810d199, 0xdb994d12, 0x1ed1890f, 0xcb874b07, 0xc40b4433, 0x018cc3f1, + 0x52d1ff00, 0x14030108, 0x00003edc, 0xa1472d04, 0x48534207, 0x4f6b3207, + 0x64120d27, 0x0e103c53, 0x17a3d2b4, 0xfff86bbe, 0x010854d1, 0x018cc3f1, + 0x2407ff00, 0x00003ed8, 0x0d07d704, 0xfff96abe, 0x941d4127, 0x017cd0d1, + 0x95be1907, 0x0b16fff9, 0x0178ded1, 0x6f5ef301, 0x2b4427fd, 0xebd49d43, + 0x3b14e389, 0xe23a2b24, 0x07fdcc32, 0xfdc75e32, 0x717e0d07, 0x1d4127fc, + 0x7cd0d194, 0xbe190701, 0xc6fff960, 0xf043cb0f, 0xd1c1f58e, 0x270d0744, + 0xfc9c7e30, 0x27fe8e5e, 0xfe7f5e11, 0xc15e1027, 0x5e20a7fd, 0x4427fdfe, + 0xcfff2ea7, 0x4824c5fd, 0x1c270707, 0xf8c7be18, 0xa74027ff, 0xfdcfff3e, + 0xc54834c5, 0xc25e6834, 0x93342bfd, 0x028b23f2, 0x23053103, 0x0c5e2c15, + 0x000000fe, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x049d4027, 0x0c149906, 0x8911049d, 0x048d1214, + 0x1414891a, 0x891c048d, 0x14d11613, 0x3c030310, 0x8d34530f, 0x04c52403, + 0x18148950, 0x530f4c03, 0x26048d44, 0x03181389, 0x35531f3c, 0x892a038d, + 0x31231814, 0x432b3533, 0x43534123, 0x9914049d, 0x019d0e11, 0x4efe0b09, + 0x1c1389f5, 0x89161289, 0x1c891a1e, 0x27a10718, 0xff1ea741, 0x1445fddf, + 0xc32b2e2b, 0xc5a402c5, 0x12d5a00c, 0xa3b901c4, 0xd007038c, 0xd18413c5, + 0xe30114a4, 0x530407f3, 0x83140748, 0x1153300c, 0x04534183, 0xf4c51183, + 0xc5f06534, 0x4ff630f1, 0x30070170, 0xc134f4c1, 0x040e30f0, 0xa1a934a3, + 0x4107011c, 0x8338f1c5, 0xe680004d, 0xa700c74f, 0xfddfff2e, 0x0134a3a9, + 0x01082cd5, 0x0138a4d1, 0x01b842fc, 0x010c23d5, 0x0120a4d1, 0x01f824d5, + 0xc134f0c1, 0xf26130f1, 0x13334087, 0x42ab41ab, 0xdfff3ea7, 0x8834c5fd, + 0x2738f4c1, 0xacd2c521, 0x80004d83, 0xa4d149e6, 0x42580138, 0x02012d27, + 0xd1acd2c5, 0xf80138a4, 0xc1016b44, 0x2da3acd2, 0xd2c50400, 0x38a4d1ac, + 0x404c3801, 0x40002da3, 0xd1acd2c5, 0x990178d4, 0x31e04043, 0xa4b90162, + 0x3027038a, 0x4b334383, 0xd2c524ab, 0xff4ea7ac, 0x43a5fddf, 0x3183f361, + 0x00c53ff6, 0x0310a1d1, 0xe0200c27, 0xc502011d, 0x021df000, 0xe000e102, + 0x5802811d, 0x011de001, 0x2700b312, 0xc5f3c340, 0xf58eb4d4, 0x42234307, + 0x010943f4, 0x33274127, 0x1d031a07, 0x4ff60138, 0x2ea705e3, 0x01fddef7, + 0x05140314, 0xa8240324, 0x074327f3, 0x032f073a, 0x0701203d, 0x0c2c031f, + 0x20053061, 0x24033001, 0x34031005, 0xf4781403, 0x0144a4a9, 0x0310a0d1, + 0x14074103, 0x41231153, 0x0c182027, 0x072127f0, 0xe03f6b32, 0xe603010d, + 0x020df402, 0x4000f303, 0xf401210d, 0xf201220d, 0x020de002, 0xe402fc01, + 0xfb01040d, 0x27848700, 0x85402770, 0x00f85ef4, 0x22032007, 0x33833207, + 0xf2652223, 0xd1fe875e, 0xc10310a1, 0x1de4a0d0, 0xff3f0201, 0x27a4d2c1, + 0x07209b10, 0x07315332, 0xd4420b43, 0x3e80014e, 0x8341072c, 0xc3483343, + 0xb4d4c5f3, 0x11e4f58e, 0xd4c1ff2b, 0xa0d3c1a4, 0x349b2007, 0x3153249b, + 0x43071027, 0x4ed0420b, 0xd63e8001, 0x2ef0230a, 0x673e8001, 0x83410702, + 0xa3483343, 0xc5f3c341, 0xf58eb4d4, 0x5eacd2c1, 0x3703fea1, 0xfff83d83, + 0x27fe435e, 0xf737e041, 0x5e4027fe, 0xd4c1fef2, 0x024dc050, 0x4dc01e01, + 0xc0191102, 0x1480024d, 0x80224dc0, 0x824d400f, 0x10a4d101, 0xe4478303, + 0xa3fe7d44, 0xacd2c528, 0xc1fe755e, 0x1127a4d4, 0x01c83ff6, 0x209b2447, + 0x12133207, 0x831e3153, 0x11210de0, 0x0df4ff21, 0x02331122, 0x11020de0, + 0x0de00209, 0xff0f1104, 0x03210de0, 0x102701d1, 0x7027f185, 0xa4d18027, + 0x34070114, 0xe4073853, 0x8330ec83, 0xc6e45331, 0x83e20334, 0x834953e3, + 0xa3340e41, 0x38f4c1e4, 0x80004d83, 0xfdb24ff6, 0xe050d4c1, 0xd103014d, + 0x206c2701, 0x01020de0, 0x0de001d1, 0x04301102, 0x03210de0, 0x0d00042a, + 0x0de40121, 0x04101121, 0x5c272127, 0x27f27520, 0xe0e40842, 0x4902810d, + 0x040de001, 0xe0014c01, 0x4611040d, 0x040de001, 0x27014021, 0xe0f19510, + 0x3a31040d, 0x820de001, 0x27012001, 0x010de010, 0xe0013103, 0x2b03210d, + 0xa5302701, 0xb52027f3, 0xffcea7f2, 0xb027fddf, 0x27a4d2c1, 0xcbd5209c, + 0x140b0114, 0x0118cbd5, 0x313b3907, 0x011ccbd5, 0x41271307, 0x03210d00, + 0x143b4027, 0x036ce3e0, 0x016ee4ec, 0x031be1e0, 0x057ce2e8, 0x02010de0, + 0x0de00559, 0x05531201, 0x01020de0, 0x0de00448, 0x04421102, 0x01210de0, + 0x0de00531, 0x052b1121, 0x02810de0, 0x1007046f, 0x14e01783, 0x0de00508, + 0x05020182, 0x03210de0, 0xa3d104cd, 0x2ea70138, 0x33fddfff, 0x203c2335, + 0x011423d5, 0x013ca4d1, 0x4c234433, 0x1824d510, 0x40a3d101, 0x23343301, + 0x23d5103c, 0x14e0011c, 0x0de00410, 0x040a0182, 0x41a0d4c1, 0x533407f2, + 0x31312331, 0x07f051f1, 0x0b239be2, 0x81412372, 0x9b419bf2, 0x33230b30, + 0x33840be4, 0x85043315, 0x2b852bf2, 0x13101326, 0x13762be0, 0x80d1c500, + 0xc584d8c5, 0xd7c588de, 0x90d0c58c, 0x5e94d2c5, 0x2447010c, 0x1027209b, + 0x12133207, 0xbb5e3153, 0xa52227fd, 0xfeef5ef2, 0x10273127, 0xd65ef395, + 0x953027fe, 0x5e1227f3, 0x3127fecd, 0xf3b52027, 0xd65ef2a5, 0x07133bfe, + 0x07833b84, 0x5ef18571, 0x4107fe2e, 0x48334383, 0xf3c344a3, 0x8eb4d4c5, + 0x010dc0f5, 0x0dc04202, 0xe43d0281, 0x0701820d, 0x0b8147fe, 0x27833b84, + 0x85302770, 0xfe005ef3, 0xe4106c27, 0x3301020d, 0x405c27fe, 0x10274127, + 0x465ef175, 0x040de0fe, 0xe0fce421, 0xde31040d, 0x010de4fc, 0x07fdd112, + 0x07833b84, 0x27310371, 0x85733b20, 0xfdc85ef2, 0x0196e5e0, 0x0110e5e8, + 0x009de6e0, 0xff1ee700, 0x0de03207, 0x02d90121, 0x11210de0, 0x0de002d3, + 0x02ba0281, 0xfc41fb31, 0xf4a12307, 0x143b2173, 0xf4512123, 0x3123f081, + 0x3b9bc29b, 0x062b312b, 0xc62b249b, 0x40134607, 0x380bf085, 0x020bc70b, + 0xd1c51013, 0x84d3c580, 0xc58cdcc5, 0xd0c590d4, 0x88d4c594, 0xd2c1f391, + 0xc1f40184, 0x233b94d0, 0x0b8cd1c1, 0x3bf42124, 0x80dec103, 0xc188dcc1, + 0x133b90db, 0xf311040b, 0x130bf491, 0xc43be43b, 0xdec5b43b, 0x88dcc580, + 0xc590dbc5, 0xd1c584d2, 0x94d0c58c, 0xa1fafb5e, 0x07f291f4, 0x71240be9, + 0x38a3d1f4, 0x07e47b01, 0x07423b41, 0x133e9b24, 0xd5432b40, 0xb10114c4, + 0x3ca3d1f4, 0x13247b01, 0x1b343320, 0x18c3d532, 0x40a4d101, 0x2b443301, + 0x1cc2d524, 0x810de001, 0x3101e002, 0xa1fc41fb, 0x3bf451f0, 0x2b370710, + 0x2bbe9b36, 0x33c43381, 0x80dbc544, 0xc584d8c5, 0xd4c588dc, 0x94d3c590, + 0x5e8cd3c5, 0xf2a1ff50, 0xa4d1f391, 0x320b0138, 0xf371f3a5, 0x937b2107, + 0x499bf3a1, 0x420b233b, 0x0114c4d5, 0x013ca3d1, 0x3433f4b1, 0x320b247b, + 0x0118c3d5, 0x0140a4d1, 0x240b4433, 0x011cc2d5, 0x02810de0, 0xfb310166, + 0xd4c1fc41, 0x71fe51a0, 0x5b2407f0, 0x071c0720, 0x07415339, 0x1341230e, + 0x33212330, 0x9b043314, 0x9b2b9bc4, 0x133b9b4e, 0xc5001310, 0xd2c580d3, + 0x88d1c584, 0xc58cdcc5, 0xd4c590d0, 0xfece5e94, 0xd6c5f2a1, 0xc5123b90, + 0xdbc580d1, 0x84dbc594, 0xc588d6c5, 0xb55e8cdb, 0x210de0fe, 0xe0010001, + 0xfa11210d, 0x810de000, 0x0700ed02, 0xe0478340, 0xe000ec44, 0xe601820d, + 0x07f48100, 0x85462b36, 0x07f081f4, 0x2b301345, 0x13762b85, 0x80d4c540, + 0xc584d8c5, 0xd3c58cd7, 0x94d0c590, 0x5e88d3c5, 0x0de0fe6c, 0x00a80121, + 0x11210de0, 0x0dc000a2, 0x07760281, 0xc4478340, 0xd4c13e44, 0x23f331a4, + 0x87439b41, 0x80d2c525, 0x5e84d4c5, 0x5c27fe40, 0xe0412720, 0xa711020d, + 0x5e4027fd, 0x5c27fda2, 0xa7ef1e40, 0xfddef72e, 0x14031401, 0x24054013, + 0xf3982403, 0xc0fa1c5e, 0xbf01820d, 0x31a4d3c1, 0x232307f4, 0x9bf14131, + 0x51215334, 0x9b2123f4, 0xc5249b12, 0xd3c580d5, 0x8cd1c584, 0xc590d6c5, + 0xd6c594d2, 0xfde65e88, 0x31a4d4c1, 0x07f241f3, 0x23415314, 0x9b412311, + 0x47429b13, 0xc5264735, 0xd1c580d3, 0x88d2c584, 0x5e8cd4c5, 0xd4c1fdc0, + 0x5e4153a4, 0x5547ff69, 0x1e5e6647, 0x5e5587ff, 0xfb31ff19, 0xb153fc41, + 0xfb35c153, 0x935efc45, 0x41fb31fe, 0x53b153fc, 0x538153c1, 0x45fb3571, + 0xfe155efc, 0xfc41fb31, 0xc153b153, 0x71538153, 0xfc45fb35, 0x73fd3b5e, + 0xfd2c5e31, 0x0138a4d1, 0x4c234533, 0x14c4d540, 0x210de001, 0xc0008101, + 0x7b11210d, 0x02810dc0, 0x83100742, 0xfbf05e17, 0x31a0d4c1, 0x9b4123f3, + 0x804c2343, 0x480b3533, 0xd3c53013, 0x84d4c580, 0xd1fd335e, 0xa70138a4, + 0xfddfff2e, 0x4c234533, 0x1424d540, 0x3ca3d101, 0x23343301, 0x23d5403c, + 0xd4c10118, 0x41f131a0, 0x533407f2, 0x23312341, 0x9b319b41, 0x403c2342, + 0x33404c23, 0x0b243315, 0x13470b38, 0xc5201310, 0xd3c580d1, 0x88d2c584, + 0x5e8cd4c5, 0xd4c1fce0, 0x53f331a0, 0x9b412341, 0x33317343, 0x804c2335, + 0x3013480b, 0xc580d3c5, 0xc15e84d4, 0x38a3d1fc, 0xff2ea701, 0x3533fddf, + 0xd5403c23, 0xd1011423, 0x33013ca4, 0x204c2344, 0x011824d5, 0x0140a3d1, + 0x3c233433, 0x1c23d520, 0xfb345e01, 0x0138a4d1, 0xdfff3ea7, 0x234533fd, + 0x34d5804c, 0x1f5e0114, 0x38a4d1fb, 0x23443301, 0xc4d5804c, 0x0a5e0114, + 0x38a4d1ff, 0x23453301, 0xc4d5204c, 0xa3d10114, 0x3433013c, 0xd5203c23, + 0x5e0118c3, 0xeff6feed, 0x0de0fbf6, 0x012a0201, 0x12010de0, 0x0de00124, + 0x010d0102, 0x11020de0, 0x0de00107, 0x00eb0121, 0x11210de0, 0x0de000e5, + 0x00bb0281, 0x47834007, 0x009e44e0, 0x01820de0, 0x0dc00098, 0xd1630321, + 0xa70138a3, 0xfddfff2e, 0x3c133533, 0x1423d580, 0x3ca4d101, 0x13443301, + 0x24d5404c, 0xa3d10118, 0x34330140, 0xd5403c13, 0x31011c23, 0x51f441f1, + 0x332027f3, 0x33153344, 0x88d4c534, 0xc590d3c5, 0xd1c594d2, 0x84d2c580, + 0xd18cd2c5, 0x000310a4, 0xe401214d, 0xb511214d, 0xc51173fb, 0xad5e80d1, + 0x38a3d1fb, 0xff2ea701, 0x3533fddf, 0x01003d13, 0x011423d5, 0x013ca4d1, + 0x4c134433, 0x1824d580, 0x40a3d101, 0x13343301, 0x23d5803c, 0x9c1e011c, + 0x0138a4d1, 0xdfff3ea7, 0x134533fd, 0xd502004d, 0x1e011434, 0x38a4d187, + 0xff2ea701, 0x4533fddf, 0x01004d13, 0x011424d5, 0x013ca3d1, 0x3d133433, + 0x23d50100, 0x645e0118, 0x38a4d1ff, 0xff3ea701, 0x4433fddf, 0x02004d13, + 0x011434d5, 0xd1ff4e5e, 0x330138a4, 0x004d1345, 0x14c4d501, 0xff3d5e01, + 0x0138a4d1, 0x4c134533, 0x14c4d580, 0x3ca3d101, 0x13343301, 0xc3d5803c, + 0x205e0118, 0xd1f54eff, 0x07017809, 0xff8ea770, 0xbea7ffff, 0x27feffff, + 0x84d1e55c, 0x4fe60c3c, 0x0ea70136, 0x11fd7fff, 0x104ca304, 0x40270415, + 0x017c7cd1, 0x941d6227, 0xd109b499, 0x830148b3, 0x33d40743, 0x2b4487d4, + 0x23ad07d4, 0xffffb4ae, 0x00983ff6, 0x0054d3f1, 0x4027ff00, 0x045c8dd1, + 0x0104c49d, 0x07d342c1, 0x071302d3, 0x081deed1, 0x83410701, 0x87340741, + 0x2b363324, 0x07340b32, 0x2b243323, 0x05240b23, 0x942e23c1, 0x3907fffb, + 0x2e014507, 0x3e052403, 0xf4a83403, 0x045884d1, 0x40e8411b, 0x412700ca, + 0x9904c49d, 0x499604c4, 0x07866fd6, 0x7e190707, 0x0707f4a0, 0xf07e1907, + 0xbe0707f4, 0xa7ffb54c, 0xfddfffee, 0x4df8e431, 0xff480100, 0x0e9e0127, + 0x0c07fe08, 0x79be1907, 0x6007ffb1, 0xff526ff6, 0xb4d1ca1e, 0x41c00148, + 0x48b4d11f, 0x4e42c001, 0x0148b4d1, 0xb9ad43c4, 0xd819c1b4, 0x275f104c, + 0x48b4d540, 0xf19d1e01, 0x000054d4, 0xe2c301ff, 0xd100de43, 0xca045c84, + 0x0ea7e634, 0xbefffb9f, 0xf1fe0826, 0x000054d2, 0xd1c301ff, 0xca045c84, + 0x23c2ce34, 0xbe0527cb, 0x1efdf108, 0x9b4027c3, 0xf49b0bf4, 0xbe09270e, + 0x5efdf0f8, 0x3ea7ff57, 0x11fd7fff, 0x104ce334, 0xcb5e3415, 0xbe0827fe, + 0x5efdf0e0, 0x0d07ff3f, 0x1103012b, 0x0549f0f0, 0x04a499cd, 0x83d145b6, + 0xb4d10c2c, 0x34ca013c, 0x16c0be2a, 0xa9a369fe, 0xce010284, 0xa4192634, + 0x41033027, 0xf39ba41d, 0xff4ea70e, 0x0ea7fd4f, 0xc5fffb9f, 0x58be3843, + 0x4127fe07, 0x0148b4d5, 0x25fef25e, 0x07d81ead, 0x07418341, 0x33248734, + 0x0b322b36, 0x33230734, 0x0b232b24, 0x23c10524, 0xfffb942e, 0x45073907, + 0x24032e01, 0x34033e05, 0x84d1f4a8, 0x411b0458, 0xfeb440ec, 0xa9ff7d5e, + 0xa90144b3, 0xee0142b4, 0x27feaa43, 0x48b4d542, 0xfea15e01, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x0499fd4e, 0xc0100712, + 0x0e396341, 0x4c234e07, 0x0f44d42c, 0x33333407, 0xff7c3e23, 0xdc3401eb, + 0x1219fc41, 0x32074327, 0x34f53333, 0xff021200, 0x100030f1, 0xd247ff02, + 0x53180c33, 0x08461d0c, 0x4e872533, 0x180422f1, 0x13c1ff02, 0x004ef140, + 0x0bff0216, 0xc13766e2, 0x01233814, 0x0e0b049b, 0x42273d87, 0x120034f5, + 0xfd8eff02, 0xfd8e0027, 0x23101499, 0x0b043b01, 0x4ee61e0e, 0x834107fe, + 0x11039941, 0x400b4487, 0x4e61312b, 0x8e803c1c, 0x810191fe, 0x87131902, + 0x05420b43, 0x1d31034e, 0x11049913, 0x049d4103, 0x4efe8e11, 0xa10b21fb, + 0xced00704, 0xd3995a4b, 0x5b4b0710, 0x83dc5143, 0x87d31941, 0x0bde3944, + 0x071c074d, 0x8b35332b, 0x0340612c, 0xf5122b11, 0x0218003e, 0xf5200bff, + 0x02180431, 0x234027ff, 0xfde8003e, 0x3e033435, 0xf5fde800, 0x02181032, + 0x1431f5ff, 0x23ff0218, 0xfde7f03e, 0xb10b3435, 0xdb25d4a1, 0x27a8b4ce, + 0x12d49d42, 0xfa4efb8e, 0x4fff4ea7, 0x074b01fd, 0xa3b433d0, 0x01a407bb, + 0x764627dc, 0x1231bec7, 0x27d40100, 0x05449630, 0x0ef39bdb, 0x0138acc5, + 0xe4b4ced4, 0xf4e8fa8e, 0xfd4ede1e, 0x5d96f493, 0xa043c101, 0x1f6b1007, + 0xd1873803, 0x0853d30b, 0x2f9b3823, 0x51d40110, 0x05422b3e, 0x08e19dd4, + 0xa7123499, 0xfd4fff2e, 0x4909e49d, 0x99e44d34, 0x31690834, 0x410b2311, + 0xe305e46d, 0x402707f6, 0x070ef49b, 0x27ff8b00, 0x05302740, 0x08e39de4, + 0x01102f9b, 0x05420bd4, 0x07fd8ed4, 0x03427340, 0x1ef4e841, 0xff3ea7e3, + 0x3499feff, 0x07438309, 0x87343334, 0xf9342b44, 0x00004f32, 0x4d34f9ff, + 0xc2ff0000, 0xf4931d42, 0xc1015d0c, 0x3ea7a442, 0xc1ffffff, 0x24d1fc31, + 0x0027030c, 0x0127140e, 0x0027fe0b, 0xf193fe0b, 0xa7015888, 0xfefdcb4e, + 0x12014301, 0x322b1011, 0xfe0b3108, 0xfb1e00a7, 0xf193f54e, 0xa301587c, + 0x073107f0, 0xcf1d0390, 0x20008901, 0x2107f215, 0x057f3ce3, 0x7f2ce3f0, + 0x01cf1d23, 0x3c033419, 0xf932c280, 0x5852f393, 0x27202701, 0x3205744c, + 0xf4c83403, 0x149d4127, 0x6d14bd11, 0xf9149d01, 0x1185149d, 0xfd0fe0f0, + 0x0cffffff, 0xa702a702, 0xebffff5e, 0xdfff8ea7, 0x036007fd, 0x03100703, + 0x07132361, 0x831383e6, 0x07e38303, 0x07200741, 0x87a0873e, 0x33c187be, + 0x33353325, 0xa09dc145, 0x3b2b2a2b, 0x410b4c2b, 0x3e0b200b, 0x8709d199, + 0x87a387b2, 0x90bf0374, 0x030004e6, 0x04e690af, 0x907f0300, 0xe60004e6, + 0x49022c1f, 0x69b20dd2, 0x08d499d3, 0x430bb209, 0xd099b42d, 0x9d320708, + 0x94c10bb0, 0x8d340b30, 0x918908b3, 0x879e9920, 0x41234107, 0x014824ee, + 0x29229489, 0x274123b3, 0x5c34ee11, 0x9d208701, 0x290b11b1, 0x94992301, + 0x5b130787, 0x9d310314, 0x3c8312b1, 0x9923050f, 0xbe8912b4, 0x87438308, + 0x99190b14, 0x124111b3, 0x07a49dc1, 0x0f4c834e, 0xc487232b, 0x9938d399, + 0x2fe639d4, 0x949901b7, 0xe0124588, 0x0701c543, 0x33473340, 0xf1040b05, + 0x04e86003, 0x000f2700, 0x83400040, 0x003fa333, 0xab800000, 0xc5b0153c, + 0xd4b950b3, 0x4fe60386, 0x91c101a7, 0x291209a0, 0xf302ee10, 0x83420701, + 0x99410b43, 0x3f4b0d43, 0x20c8230b, 0xee02daf1, 0x32074207, 0x32534383, + 0x4d08149d, 0x21120d13, 0xa041f854, 0xf8542101, 0xc101af44, 0x4fe650b4, + 0xbc890136, 0x87949908, 0xc783c47b, 0x84354127, 0xc14884c1, 0x30c84c83, + 0x1240c85f, 0x4cce4783, 0xe2378357, 0xca010243, 0x4cc24ec3, 0x50b4c14b, + 0x01044fe6, 0x3127b411, 0xc56054c5, 0xb4c16853, 0xc1544550, 0x44e65074, + 0x74c54027, 0x50a4c150, 0xa39947a6, 0x07a1110b, 0x33273323, 0xf1320b35, + 0x04e86034, 0xf5433300, 0x14008041, 0xcef411ff, 0x06074e46, 0x27fe4c5e, + 0x2784b541, 0xfd1c7e0b, 0x84b54027, 0x3127871e, 0x31233e3b, 0x418b4307, + 0x4fe63103, 0x1307feac, 0x142b1103, 0x29229489, 0xee4123b3, 0x07fea843, + 0x2c939940, 0x34f24103, 0x431bfe9d, 0x310b3107, 0x1307f4d8, 0xa7fe905e, + 0xebffff3e, 0x42f83421, 0x2ea700fe, 0x99feffff, 0x24a92893, 0xfd01196c, + 0x24ad430b, 0x9099196c, 0x3091c187, 0x273493c1, 0x01203b21, 0x3890c194, + 0x233c9ec1, 0x031d0b21, 0x0b3d0b31, 0x0b41030d, 0x83120bde, 0xfd050e4c, + 0x31e312eb, 0x831fdc83, 0x3c9dc5f0, 0x91c59435, 0x3493c530, 0x053890c5, + 0x25941594, 0xe2f58e94, 0xeaff4e34, 0xc1fefdc3, 0x4ff650b4, 0x4027ff00, + 0x085e5445, 0x50b1c5ff, 0x13feae5e, 0x27432b4a, 0x99343b31, 0x13458894, + 0x0000cfa3, 0x43e42000, 0xec83fe3f, 0x33e17310, 0xceab10ec, 0xc1fe325e, + 0xb399a091, 0x0a14990b, 0xfe5343ee, 0xffff2ea7, 0x6824a9fe, 0xad410319, + 0xc1196824, 0x4127a091, 0xcfff3ea7, 0x7034c5fd, 0x27fe345e, 0x27543541, + 0xfc007e0b, 0x54354027, 0x31fc5321, 0xec1efe51, 0x54354427, 0x7e0f0c27, + 0x4027fbea, 0x53215435, 0xfe4134fc, 0x4027eb1e, 0x5e09149d, 0xd307fe2b, + 0xd4354227, 0xcb7e0b27, 0x354027fb, 0xfcd321d4, 0x1efef132, 0xa7f74eec, + 0xfeffff1e, 0x196614a9, 0x48038007, 0x196614ad, 0x9307c207, 0xd3070de6, + 0xd30bd333, 0xa027b107, 0xcfff7ea7, 0x27081efd, 0x7efa0d0d, 0xc401fb8e, + 0xa9f54dca, 0x271966b3, 0xad310320, 0xa91966b3, 0x031968b4, 0x68b4ad41, + 0x6cb3a919, 0xad310319, 0x9b196cb3, 0x41270ef2, 0x037074c5, 0x0b8a2ea1, + 0x8ecc1ed9, 0xc1fc4ef7, 0xc007a40e, 0xe4b9e239, 0x21230386, 0xa90f2c83, + 0x89037ae3, 0x23332000, 0x2330c1c1, 0xfffef42e, 0xc1ff747e, 0xc38930c4, + 0x3cc2c120, 0x430b4103, 0x41e3320b, 0xc51f3c83, 0xc4c53cc3, 0x4efc8e30, + 0x990421fb, 0x41231003, 0x0d99435b, 0x6bc40711, 0x2b3d07cf, 0x1cb0073c, + 0xfb8e803c, 0xffdf0ea7, 0xfabc7eff, 0x0713cdce, 0x0741034d, 0x07df6bd4, + 0x7e1d070b, 0xdccefa0f, 0x9b4027ef, 0x3ea70ef4, 0x05ffffdf, 0x4efb8e34, + 0xa7d007f9, 0xffffdf0e, 0xc107b207, 0xda99d9a1, 0xfa847e10, 0x0710d099, + 0xbe1c072b, 0x07000e0f, 0x070b26b0, 0x07ca5bc9, 0x230d071c, 0xf9cd7e12, + 0xf49b4027, 0xdf3ea70e, 0x3405ffff, 0xa110d299, 0x27c183d3, 0x87423b41, + 0x0b340bcc, 0x650d07cd, 0x7ed3a5cb, 0x0127f9d7, 0x4027f98e, 0xa70ef49b, + 0xffffdf4e, 0x4b050027, 0x0000f98e, 0x00006407, 0x00006408, 0xf293f54e, + 0xc10157e8, 0xf563a403, 0xf0c52e19, 0x50f1c54c, 0xe648f3c5, 0xc10126ef, + 0xf3c14cf2, 0x22248950, 0x011943e2, 0x554cfa93, 0x27702701, 0xff6ea720, + 0x5ea7ffff, 0x1efeffff, 0x7e0c0753, 0xd4c1f8cc, 0x60d3c15c, 0xd4c5402b, + 0x7d03ca58, 0x64ad4027, 0x0907119a, 0x006e14be, 0xc144d4c1, 0xd26140d3, + 0x42ea430b, 0x41270553, 0xf293a41d, 0x1901577c, 0xf271032e, 0xc100c6e7, + 0xac034cf4, 0x224389a0, 0x0750f4c1, 0xe2470b27, 0x0700b234, 0x334207d2, + 0x0b4733d5, 0x60df03d4, 0x070004e8, 0x03cd079d, 0xcc030c9c, 0x99402754, + 0xd49d66d3, 0x8a3fc69c, 0x007e0c07, 0x7e0c07f9, 0xd4c1f850, 0x60d3c15c, + 0xd4c5402b, 0x8530c258, 0xc6f9f47e, 0x2227620f, 0x119a64a9, 0x13884df4, + 0xf0c1053a, 0x0c01d148, 0x7e0c0703, 0x0ff6fea3, 0x5499ff64, 0x87438309, + 0x2b443324, 0x5043f942, 0xe4ff0000, 0x99045932, 0xd4c164d2, 0x48f0c15c, + 0xd1c1425b, 0x2741837c, 0x87323b31, 0x0402d144, 0x0b310b03, 0x6c42c54d, + 0xf67cd3c5, 0x2704851f, 0x9cd49d41, 0xb9ff1f5e, 0xe6119964, 0x2704664f, + 0x93961e23, 0x01542ff3, 0x40272427, 0x1d05349d, 0x9d347d34, 0x3c030434, + 0xe6f270a0, 0x07045def, 0x17f1933e, 0x20270154, 0x1c031419, 0xc14546a0, + 0x04894cf0, 0x70240b20, 0x4cf0c1f3, 0x7e50f1c1, 0xf093f9a0, 0x1901566c, + 0x844fe604, 0x4cf3c101, 0x53def493, 0x22328901, 0x439d3027, 0x50f4c10a, + 0x016d24e2, 0x5474f093, 0x07202701, 0xc55407af, 0xf2c540f0, 0x03402744, + 0xb40740ac, 0x4733b533, 0xbf03b40b, 0x0004e860, 0xc10bb499, 0xf40d48f3, + 0x33a96b07, 0xbdc1036c, 0x546c035c, 0x06074027, 0xf32df415, 0x7e68b8c1, + 0xbec1f728, 0x64b49958, 0x3d07d02b, 0xcd072e07, 0x245b345b, 0xb1c1ce2b, + 0x3223ee68, 0x87318301, 0x074b0b43, 0xc1918b9d, 0xc92b6c47, 0x42872183, + 0x43c14b0b, 0x071e8b6c, 0x03310b0b, 0xf3250c0c, 0xf745fc35, 0xe17ef955, + 0x44b4c1f6, 0x0b40b3c1, 0xc5402b43, 0x34ea50b4, 0xf4a500d5, 0x2738b4c1, + 0x99f49530, 0x402748b0, 0xb53cf09d, 0x3df49df3, 0x0130f3c5, 0x072333b2, + 0x0334013f, 0x8024f534, 0xceff1400, 0x3d07f4a3, 0x07403c03, 0xc24dcb43, + 0x43070b48, 0x44c6488b, 0xdc1ed307, 0x0764b499, 0x83345b3d, 0x99338731, + 0x3b0b66b2, 0xe06c39c1, 0x0701e322, 0xfca97e06, 0xe01eb499, 0x99009742, + 0x4a569cb4, 0x8748f2c1, 0xf423d145, 0x8b430b02, 0x05980b8d, 0x9b302749, + 0x24d10ef3, 0x4c83030c, 0xf943330f, 0x00008343, 0x230407ff, 0xffff7e0e, + 0x02713ff6, 0x9344f0c1, 0x01550ff3, 0x34190103, 0xd244f0c5, 0xf4c12240, + 0x40f0c14c, 0x8944f2c1, 0xf5c12243, 0x1d402750, 0xa00c0304, 0xf0c5520b, + 0xea420740, 0x27fead53, 0x8ef54300, 0x38b2c1f5, 0xf295f3a5, 0xb399432b, + 0x30f4c548, 0xc13cf39d, 0xf4b53cb4, 0x9d49b099, 0x285e3df0, 0x279027ff, + 0xfeda5e70, 0x270cb399, 0xf5333325, 0x02120032, 0x0cb499ff, 0x43f14333, + 0xff021000, 0xfc0a3dd8, 0x0c0d2718, 0xf6fc7e64, 0x330cb499, 0x0043f143, + 0xdcff0210, 0xeafc0a3d, 0xc140b1c1, 0xb29950b3, 0x49bc9948, 0x13024107, + 0x43e21307, 0x702701ce, 0xe2074027, 0x4b50b4c5, 0x30e0c8ef, 0x874cb0c1, + 0xc1400b4e, 0x42d15443, 0x310b0174, 0x41c1328b, 0x5443c594, 0x40270e0b, + 0x01f613ee, 0x015404bd, 0x274cb4c1, 0xbde40b32, 0x070164e3, 0xc8ef4bec, + 0x78c632e0, 0x874cb0c1, 0xc1400b4e, 0x42d15443, 0x370b0174, 0x41c1328b, + 0x5443c594, 0x40270e0b, 0x01c313ee, 0x015404bd, 0x274cb4c1, 0xbde40b32, + 0x990164e3, 0x10a70cb0, 0xb2993027, 0x49b19d0d, 0x2748b19d, 0x9d100741, + 0xb3c51eb4, 0x44b3c540, 0x44271333, 0x120014f5, 0x2287ff02, 0x23f50107, + 0xff021600, 0x43270403, 0xf50eb289, 0x02120004, 0x38b3c5ff, 0xf13cb3c5, + 0x02100004, 0xf848dcff, 0x4a034207, 0x4c833427, 0xf526530f, 0x02120003, + 0x142c33ff, 0x4c333027, 0xf542ab10, 0x02140013, 0x0414f5ff, 0x9bff0214, + 0x345e0ef3, 0x0c0d27fe, 0xf5e07e64, 0xbcc10607, 0xf48e7e5c, 0x2754b499, + 0xf5433335, 0x02120043, 0x54b299ff, 0x22474327, 0x12872103, 0x120014f5, + 0x1ef1ff02, 0xff021000, 0xec33c02b, 0x1dec5318, 0x00a7efe6, 0x23f12433, + 0xff021804, 0x0764b499, 0x3b21232e, 0x27230b24, 0x0014f542, 0xc1ff0212, + 0x14f15cb3, 0xff021000, 0x07f848dc, 0xce422b43, 0xb29994c4, 0x55b39954, + 0x02074127, 0xc566b49d, 0x03335cbc, 0x04f54427, 0xff021200, 0x40273387, + 0x34f52007, 0xff021600, 0x43272403, 0xf556b189, 0x02120024, 0x0024f1ff, + 0xdcff0210, 0x4107f848, 0x34274a03, 0x530f4c83, 0x0023f516, 0x33ff0212, + 0x3027141c, 0xab104c33, 0x0003f541, 0xf5ff0214, 0x02140404, 0x0ef39bff, + 0xbefd525e, 0x5efcfa73, 0x7307fd8c, 0x315e712b, 0x5e2027fe, 0x0ea7ff6b, + 0xbeffffdf, 0x07fcf765, 0x6826be09, 0xdf0ea700, 0x33beffff, 0x64a9fcf7, + 0xf253119a, 0x4103fa80, 0x64ad2001, 0x4827119a, 0xcfff3ea7, 0x4c34c5fd, + 0x27f4c97e, 0xff0ea740, 0x04c5fdcf, 0x6c04c54c, 0x27fb0c5e, 0xfb325e20, + 0x095e4127, 0x5e4127fe, 0x0c07fe3c, 0x5ef4067e, 0x2027fb77, 0x7efbbc5e, + 0x0e96f505, 0x119964b9, 0x00b04fe6, 0xf3c12327, 0xd1090748, 0xbe030c31, + 0x070069f4, 0x8f0ff680, 0x095499fa, 0x24874383, 0x422b4433, 0x005043f9, + 0x32c0ff00, 0xdf0ea734, 0xcebeffff, 0x0907fcf6, 0x00678fbe, 0xffdf0ea7, + 0xf69cbeff, 0xf1f253fc, 0x5e2001f9, 0x2227ff72, 0xaa7eb51e, 0x962127f4, + 0x47202704, 0xfabc5e22, 0xc14cd1c1, 0x1b9948f4, 0x044cd141, 0x99412703, + 0x4b3b4013, 0xc4960127, 0x23870027, 0x4123210b, 0x0047e307, 0xe103310b, + 0x017424d5, 0x34bd4027, 0x30bd0154, 0x1e9d0164, 0x9428c540, 0x05423b9d, + 0x5428c52c, 0x02be0907, 0x41270068, 0x5e9cd49d, 0x2027f9f6, 0x4eff515e, + 0x0df393f5, 0xfe93014b, 0x6301521b, 0x077007f0, 0xe32fabd1, 0xece37f3c, + 0x0334197f, 0x3ec2803c, 0xa474c1f9, 0x99227389, 0x322b0c44, 0xb929749d, + 0x93037ed4, 0x01513bf5, 0x082a749d, 0x1d342735, 0xc1442753, 0x749da473, + 0x4034992c, 0xe088749d, 0xe001ce41, 0xd101ca43, 0x83030cdc, 0xc3330fcc, + 0xff84ce23, 0xf3df7eff, 0x01a00fe6, 0x54198227, 0x00874fe6, 0x64036c07, + 0x4e8ef993, 0x1ea02701, 0xd2541906, 0xd4d1744a, 0xca070324, 0xd4d19405, + 0xc5330320, 0x074894c5, 0x0b47334a, 0x0cd1d1c4, 0x00d2b903, 0xf8d3d103, + 0x070c0702, 0xb40f0346, 0x050004e8, 0x465abef8, 0x6ccf0300, 0xd10004e8, + 0xb9030cd1, 0x070301d2, 0x073807b0, 0x6974be0c, 0x030b8b00, 0xa09c03a1, + 0xa7a70fd6, 0xffffdf0e, 0xfcf568be, 0x29be0c07, 0x0ea70066, 0xbeffffdf, + 0x27fcf536, 0x8ef04307, 0xa474c1f5, 0x4df7f293, 0x8b43b901, 0x9d142701, + 0x739d8573, 0x2b74992b, 0x4027241d, 0x2c03243d, 0xa7f188a0, 0xebffff4e, + 0x02f0d6d1, 0x01183e27, 0x99430501, 0x41e03c64, 0x42e00102, 0x3f270119, + 0x42788000, 0xffff4ea7, 0x274315eb, 0x43c5613c, 0x002e275c, 0x42853a00, + 0x42a54295, 0x42c542b5, 0x27802730, 0xc5ffff9d, 0xd8073442, 0xd60bd633, + 0x8100a127, 0xdc03a027, 0x27a6333d, 0x27d119b0, 0x0100000e, 0x0004a5be, + 0x23732b07, 0x1b074207, 0x14834483, 0xcb074333, 0x11873207, 0xeb074a0b, + 0x410bc183, 0xe2833283, 0x33874c0b, 0x430bee47, 0x4e0b2183, 0x420b2247, + 0xd1030fab, 0xb1034447, 0x09070496, 0x000040ed, 0xbcc4ff17, 0x8103b040, + 0x279882c4, 0x0ef49b40, 0xc5887399, 0x33c03874, 0x2b709963, 0x749d4127, + 0x0c0c2387, 0x076300c8, 0x33300740, 0x004d8345, 0xf03c831f, 0x34ab0573, + 0x30ab0783, 0xffff4ea7, 0x430027eb, 0x7043c5f0, 0x4ea7f58e, 0xb9ffffff, + 0xe6119943, 0x5e832734, 0x8027fe56, 0x89fe515e, 0x422b2274, 0x42274308, + 0x4227541d, 0x5e2c749d, 0x3f27fe27, 0x52588000, 0x99ff035e, 0x42272b70, + 0x2387749d, 0x00cc0c0c, 0x1e00279f, 0x003f279b, 0x5e126880, 0xf84efee8, + 0x0bc1d007, 0xf2287ea4, 0x018100e8, 0xbd033b07, 0x2b070393, 0xe37f3ce3, + 0xbd237f2c, 0x34190393, 0xc2803c03, 0x4007f932, 0x46333087, 0x400b432b, + 0x34333407, 0x300b342b, 0x23e51c27, 0xfef2003e, 0x21074b07, 0x11233001, + 0x34034005, 0xf2984403, 0x4a66f393, 0x11340101, 0x03410332, 0x15340521, + 0xec412332, 0x01011b21, 0xcb4ea733, 0x4325fefd, 0xb0a9b429, 0x31270370, + 0x4ea7042b, 0xc5fdcfff, 0xd3c16843, 0x890123a4, 0xd0c51234, 0x393299a8, + 0x8920d48d, 0xd48d1434, 0xdcb41922, 0x45277f41, 0x3389422b, 0xc2043b14, + 0xf8937330, 0x07014bec, 0x27142738, 0x1e349d40, 0x0366349d, 0xf190a03c, + 0xafaba007, 0x4e56f993, 0xffcea701, 0x1b1efdcf, 0x030cb3a9, 0x8da094c1, + 0x38271243, 0x7e4cc3c5, 0x4027f0a2, 0xc54cc4c5, 0x1b076cc4, 0x0d072a07, + 0x07fcb67e, 0x03472340, 0xd064000d, 0xd289d342, 0xa8d0c122, 0x32074027, + 0x2328d49d, 0xce404731, 0x21d82443, 0x9d412721, 0x1f1e84d4, 0xc122d289, + 0x4027a8d0, 0xd49d3207, 0x47312328, 0x69f89340, 0x34ce014b, 0x9d4027de, + 0xb1a984d4, 0x00470378, 0x0002bcbe, 0x9d0b809d, 0xd3c1ab80, 0x992127a4, + 0x31993934, 0x2b4a1338, 0x75243b41, 0x55d245d2, 0xa7d265d2, 0xfddfff3e, + 0x994c34c1, 0x4f8387d2, 0x7fffffff, 0xd405423b, 0xd425d435, 0xf88ed415, + 0x422b4203, 0x31153405, 0xa7fede5e, 0xffffdf0e, 0xfcf260be, 0x4a07a027, + 0x37333a07, 0x430b4533, 0x34079407, 0xe86c9f03, 0x3f030004, 0x0004e8b4, + 0x3499c027, 0x86030712, 0x4034c145, 0xbe5e4fc6, 0x030062f8, 0xc43907c1, + 0xa103e9c2, 0xa7c8a4c4, 0xffffdf0e, 0xfcf1f9be, 0xf49b4027, 0x0ef49b0b, + 0xcfffaea7, 0xff9ea7fd, 0x4827feff, 0x274ca4c5, 0xbf93bd32, 0x9bc02719, + 0x41270efc, 0x2760a4c5, 0xef807e05, 0x94bd4027, 0xfc9b19bf, 0x4cacc50e, + 0x7e6cacc5, 0x00c8f01a, 0xfdf25ed2, 0x31213451, 0x140b0307, 0xadbe14eb, + 0x981efce5, 0x7ea7f64e, 0xd1ffffff, 0x070c3c74, 0xff9ea7c0, 0x6ea7fd6f, + 0xa7fee65b, 0xfeffff8e, 0x00e64fe6, 0x4ca39411, 0x07941510, 0xfda87e0c, + 0xc1a4cec1, 0xeb99a0c0, 0x27202739, 0xc1312740, 0x1527a8cd, 0x9d08049d, + 0x029d0903, 0x4d020d0c, 0xa91b2b02, 0x3b030ce2, 0x8d0d6dd1, 0xe4891202, + 0x23065512, 0xb9a48741, 0xf0038de2, 0x8900bcb4, 0x3b0714e4, 0x4d2b3423, + 0x3b0b039d, 0x07420243, 0x07435b42, 0x232a0734, 0x23430721, 0x0b138741, + 0x2d132b23, 0x0a049d02, 0xe4071103, 0x00a241e8, 0x21232307, 0x42a73007, + 0x030d349d, 0x0bf2b031, 0x0d019d0e, 0x89a4c4c1, 0x433922c2, 0x3c833123, + 0x2333330f, 0xfffef43e, 0xca98c3c5, 0x0c0748d2, 0x27f3347e, 0x86c39911, + 0x23874307, 0x422b4533, 0x032bc299, 0x6c42fd31, 0xfdff0112, 0x01126d41, + 0x9d3383ff, 0x84b986c3, 0x41030214, 0x021484bd, 0x0c3c74d1, 0xff1e4ff6, + 0x4ce39411, 0x5e941510, 0x477eff1b, 0x071d07ee, 0xf3ea7e0c, 0x0da34007, + 0x44ccfa00, 0x1e1027ee, 0x2b4427ad, 0x0b049d4b, 0x3b14e389, 0xe23d2b24, + 0x07ff4c32, 0xff475e32, 0x6c5ee027, 0xff1ea7ff, 0x1401fd4f, 0x03122f9b, + 0xc1443341, 0x24ab3813, 0x0027322e, 0xf3abfe0b, 0xc13812c5, 0x42ce3814, + 0x27f3ebf8, 0x4efe0b01, 0x76d33efe, 0x200c2705, 0x959efe0e, 0xfe8efce4, + 0x0088fe4e, 0x1013100c, 0xfe0e2127, 0x00004e9e, 0x10680013, 0x44be2127, + 0x00130000, 0x1013fe8e, 0xfd4ef31e, 0x271200c8, 0x1410c8d0, 0x2cbe2027, + 0xd4860000, 0xfd8e0013, 0xd1270013, 0x13ee10cc, 0xd6412710, 0x1ed407d4, + 0x074027e4, 0x27de1ed4, 0x00099e21, 0x9e202700, 0x4e000003, 0x3601c2fe, + 0x273310c8, 0x203c2741, 0x44471147, 0xf02101c2, 0x302707f3, 0xfe8e26e6, + 0x27ee10cc, 0x2b012a30, 0x5334ab01, 0xd6115341, 0x0721b642, 0x66fe8e03, + 0x1e302740, 0x274127e9, 0x00e31e30, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0xd007fb4e, 0x0ea7b107, 0x07fffbf3, 0xbec2071d, + 0x36fc8151, 0x071d0706, 0xa73c072b, 0xfffbf30e, 0xfc96d9be, 0xf49b4027, + 0x4efb8e0e, 0x07d007fb, 0xf30ea7b1, 0x1d07fffb, 0x13bec207, 0x0636fcdd, + 0x2b071d07, 0x0ea73c07, 0xbefffbf3, 0x27fce202, 0x0ef49b40, 0x0000fb8e, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0xd007fa4e, 0x07120099, 0x07b207a1, 0x76230714, 0x21d4510f, 0x10d399dc, + 0xd285c40b, 0xc4ebd195, 0xa7353bce, 0xffffdf0e, 0xfcaf10be, 0x0d071c07, + 0xfca2ebbe, 0xffdf0ea7, 0xaedcbeff, 0x3b3127fc, 0x0b31233b, 0x07c3ebc3, + 0x234b5b4c, 0x11d49d41, 0x5510db9d, 0xa1dca5d3, 0x25dc15d4, 0x0f4ccedc, + 0xc8be0d07, 0x0127ffab, 0x0127fa8e, 0xf251fa8e, 0x1a070d07, 0xffb18abe, + 0x04964127, 0x04074027, 0x0000fa8e, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x0ac1f54e, 0x99500740, 0x435440a4, 0xffff4ea7, + 0x9843b9ff, 0xbe3fe611, 0xb4a8b900, 0xc08fe601, 0x079a0700, 0x272027ba, + 0xff6ea770, 0xca07ffff, 0xc4b9c20b, 0x42d80164, 0x5494b932, 0x54b1c101, + 0xb994b0c1, 0xd1016493, 0x360174be, 0x83430745, 0x2642c043, 0x32871027, + 0x11986db9, 0x34d13a0b, 0xdfd60174, 0xce410373, 0x27072114, 0xb4032103, + 0x72079103, 0x8eb828da, 0xc24007f5, 0x30075001, 0x4027312b, 0x140b1307, + 0xc199cd1e, 0x870a0742, 0x270c0bc7, 0x8249be21, 0x40a499fc, 0xa49d4123, + 0x4053c140, 0xc30b4027, 0x0b40a299, 0x74cdd537, 0x5434bd01, 0x423d9d01, + 0xcdc5cd05, 0x94cdc554, 0x01643dbd, 0xb9b12fc6, 0x1e01b4a8, 0x033e079e, + 0x1e312b31, 0xc1f58eb0, 0x34c59434, 0x8e8c1e54, 0x31f64ef5, 0x3804c106, + 0x1b3403c1, 0xee700746, 0xc1012734, 0x94b94009, 0x4c0601b4, 0x3027e407, + 0xc387d027, 0x490b4c07, 0xc19441c1, 0x390b544b, 0x8d07a107, 0x30b9ab2b, + 0x44d10164, 0x8f6b0174, 0x015432b9, 0x00e91be2, 0xd1031027, 0x43834007, + 0x24b63d07, 0xf00d42c0, 0x0027c9fe, 0x749d4227, 0x07f68e12, 0xca410b4a, + 0xc90bee46, 0x6ae2c201, 0x060700cc, 0x0fe60a2b, 0x1ff600d8, 0xd02700cb, + 0xe0270027, 0x7419ade6, 0x7ac57339, 0x3c789d34, 0x2b0b4533, 0x180043f5, + 0x72b5ff02, 0x18044af5, 0x1027ff02, 0xe8004e23, 0x034135fd, 0xfde8004e, + 0x181042f5, 0x4af5ff02, 0xff021814, 0x4e233807, 0x4bfde7f0, 0x0b41353f, + 0x6434b939, 0xbd41a301, 0xe6016434, 0x1900820f, 0xc5733974, 0x7d9d3870, + 0xf545333d, 0x02180043, 0x307ec5ff, 0x180440f5, 0x71c1ff02, 0x23202740, + 0xfde8004e, 0x4e034235, 0xf5fde800, 0x0218104e, 0x1440f5ff, 0x07ff0218, + 0xf04e233d, 0x3f4bfde7, 0x310b4235, 0x016434b9, 0x41a30127, 0x016434bd, + 0x749d4227, 0x07f68e12, 0x2ba103a4, 0xff145eab, 0xf68e0127, 0xd027a607, + 0xe0270027, 0x07ff3f5e, 0x07df6bd8, 0xff365ee2, 0xe027d027, 0x27ff2f5e, + 0xff025e01, 0xc007f94e, 0x6340c4c1, 0xdf0ea7f0, 0x9207ffff, 0xf405a107, + 0xff8a45be, 0x23032f07, 0x2ce33f07, 0x7f3ce37f, 0x3c033419, 0xf932c280, + 0xb940c3c1, 0xe601b431, 0x6434b916, 0xb642f801, 0x27230700, 0x07310701, + 0xf0010310, 0xbc277ef3, 0x99f001ff, 0x04b94003, 0x43e201b4, 0x4b07008a, + 0x4fc04f4b, 0xffffffff, 0x410d997e, 0x29071a07, 0x80be0d07, 0xa007ff9d, + 0xc16c0fc6, 0x1b0740ce, 0x1f6b2e07, 0x4027210b, 0x24bd3227, 0x23bd0154, + 0x2d9d0164, 0x27f00142, 0x40039941, 0x11874d3b, 0x20271e0b, 0x31034123, + 0xd540039d, 0x05017414, 0x9412c51a, 0x075412c5, 0xfdef7e0c, 0xffdf0ea7, + 0x8c1cbeff, 0x430127fc, 0xb9f98ef0, 0x03016524, 0x7442fc21, 0x07f001ff, + 0x400399b1, 0x01b404b9, 0x34eabf6b, 0x0ea7ff7a, 0xbeffffdf, 0x27fc8bf2, + 0x8ef04300, 0x5eb027f9, 0xfb4eff59, 0x07120e99, 0x07c107d0, 0x562f6bb3, + 0xa740a7ee, 0xfff01f3e, 0x9d4003c5, 0x0ea53d04, 0xb5340ec5, 0x3c049d0e, + 0xc5380ec5, 0x0ec5300e, 0xa70e2544, 0xffffff3e, 0x102134b9, 0x32bd2402, + 0x6e7e1021, 0x070676fd, 0x071c070d, 0xfebe7e2b, 0x06664127, 0xfb8e0407, + 0x567e0d07, 0x8e0127fd, 0x8e0127fb, 0x074027fb, 0x00fb8e04, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0xc107fc4e, 0xcf6bd007, + 0xc886f093, 0x00ad7e00, 0x2ea7c7a6, 0xa9feffff, 0xa9014223, 0xce014424, + 0x30277834, 0x19c023bd, 0xf49b4027, 0x6b1d070e, 0x0301871f, 0x050c100f, + 0x9bd85300, 0x0401103f, 0xc746f293, 0x2b2e5100, 0x9d040543, 0x249908e1, + 0xff3ea712, 0xe49dfd4f, 0x4d244909, 0x082499e4, 0x32112169, 0xe46d410b, + 0xdcf6e205, 0xf49b4027, 0x8b00070e, 0x272027ff, 0x08e49d40, 0x3f9be205, + 0x0b040110, 0x06040543, 0xff3ea7c6, 0x32bdfeff, 0x402719c0, 0x8e0ef49b, + 0xbd3227fc, 0x2719c023, 0x0ef49b40, 0x4ea73127, 0xc5fdcfff, 0x7e5e6043, + 0x734d07ff, 0xe8410342, 0x4ebb1ef4, 0x1d0499f9, 0x4fe6c007, 0x40270148, + 0xa71d049d, 0xfeffff2e, 0x021424b9, 0x014423a9, 0x4f4b432b, 0x071c41cc, + 0x150e27d2, 0x102703e8, 0xb9ff177e, 0xa90214d4, 0x2b0144d3, 0xc84f4b43, + 0xcd99e841, 0xff3ea71f, 0xd123ffff, 0x010834b9, 0xee0fdc83, 0x070145d4, + 0x3330274d, 0x18c28943, 0x011043f5, 0x43f5ff00, 0xff00010c, 0xffff3ea7, + 0xb92cb6ff, 0xe0010134, 0x0106ff4c, 0x010134b9, 0x4b07b407, 0xdb874633, + 0xde23d40b, 0x07fff45c, 0x2720274d, 0x4205113c, 0xf3c84403, 0xd221c431, + 0xc141d405, 0x4fff4ea7, 0x01d175fd, 0x103c3343, 0xd22523ab, 0x34b9121e, + 0xd4870101, 0x4633b407, 0xde23d40b, 0xa7fff45c, 0xfd4fffae, 0x9ea7ae81, + 0x91feffff, 0x2894d1a0, 0x3093d101, 0x51d23101, 0x33e333d1, 0x1b4e1b03, + 0x0b240b30, 0x289ed513, 0x3090d501, 0x55d23501, 0xa1c451d1, 0xd1f293d3, + 0x340b00c5, 0x24b9d3a5, 0xa10104d0, 0x43834103, 0x04d024bd, 0x2127d321, + 0x23ab213b, 0x251ac499, 0x894af6d2, 0xc19918c4, 0x1ec39921, 0x0322c299, + 0x1fc09941, 0x422b413b, 0x92a93833, 0x4c330144, 0xab30ab10, 0xff4ea734, + 0x2103ffff, 0x010843d5, 0x014492ad, 0xf98e0127, 0x1b07a401, 0xab144c33, + 0x07d22524, 0x3d97be0c, 0xa730a7fc, 0xffffff4e, 0x010143bd, 0x0e27ae1e, + 0x2703e807, 0xfdca7e10, 0xf46b0ea7, 0x9855beff, 0xc8b007fc, 0x4ea7e900, + 0xbdffffff, 0x5e010140, 0xb307feea, 0x64060d27, 0xa57e1027, 0x08b4b9fd, + 0xac4dee01, 0x4eee1efe, 0x93c007f9, 0x00c51bfd, 0xa70c9c27, 0xfd4fffae, + 0x1e33bc27, 0x103f9b3e, 0x5138d4c1, 0xc5432bd2, 0x299d38d4, 0x12d49908, + 0x4909249d, 0x4da111d4, 0x08d49924, 0x2105d369, 0x246d430b, 0xf4e84b07, + 0x20053027, 0x9b08239d, 0xd3c1104f, 0xc5430b38, 0x0c0738d4, 0xc6fdfe7e, + 0xf98ebc0f, 0xcea7fc4e, 0x27fdcfff, 0xc4c5104c, 0x7e1f6b50, 0x4027fd2c, + 0xc550c4c5, 0xfc8e70c4, 0x000000e5, 0x00000012, 0x9007f54e, 0x60075007, + 0x0ea7d007, 0xd1ffffff, 0x930c3c04, 0x00c483fb, 0x01089d03, 0x012c5d03, + 0x02306d03, 0x5fff8ea7, 0xcb7ea7fd, 0x4fe6fefd, 0x841101ac, 0x15104ca3, + 0x01740184, 0x2bb211b3, 0xac41e843, 0xae20e801, 0x87420701, 0x2b463332, + 0x07420b43, 0x2b343334, 0x9df41334, 0x320b4101, 0xf2003e23, 0x072507fe, + 0x23300141, 0x03200511, 0x98240334, 0x11b401f4, 0x034103b3, 0x15b40531, + 0xec4123b3, 0x9301d731, 0x00c40ff0, 0x74150401, 0x049cd3a9, 0x012ed2a9, + 0x1ea74127, 0xc5fdcfff, 0x322b6814, 0xd4b93123, 0xd3ad012c, 0x41f804c4, + 0xdcd10198, 0xd2a90438, 0xd4b904c4, 0xd3b904ba, 0x243b04af, 0x017b3ff6, + 0xd0b9a027, 0x04f00165, 0x04230166, 0xe05be207, 0xd2a90403, 0x1027013e, + 0x230b2123, 0x40273127, 0xa709d39d, 0xfee64f3e, 0x0d0cd19d, 0x9dd14dd1, + 0xdc8d08d4, 0x6dd35512, 0xb92287de, 0xf004b9d1, 0xa9011504, 0x070140d4, + 0x234a0b30, 0x9d4e2b34, 0x433b0bd3, 0x41074102, 0x3407435b, 0x43072123, + 0x03874123, 0x032b230b, 0xd49dd22d, 0x0701030a, 0x1c41e814, 0x23230701, + 0xa73d0721, 0x0d349d42, 0xf2b03103, 0x109d1d0b, 0x7e09070d, 0x4127fe2b, + 0xfea2f053, 0x0125d4bd, 0x0108d2d1, 0x36070401, 0x34033101, 0x24032105, + 0xd1d1f4a8, 0xd3d10438, 0xd0b90448, 0xd1d504b4, 0xd1a90114, 0xd3d504c4, + 0xd0bd0118, 0xd1ad0126, 0xd3b90120, 0xd0b904c0, 0xd1b904ba, 0xd4a9012d, + 0xd3bd012e, 0xd0bd0128, 0xd1bd0129, 0x20270127, 0x21274496, 0x04b9d3b9, + 0xa798d489, 0xffffff0e, 0x4433439b, 0x011cd4d5, 0x04ded3b9, 0x0c3c04d1, + 0x0122d2bd, 0x012ad3bd, 0xfe584ff6, 0x4ce38411, 0x01841510, 0x11b30174, + 0xec432bb2, 0xa7fe5841, 0x5620ec20, 0x7e0907fe, 0x4027fd87, 0x9b0bf49b, + 0x051e0ef4, 0xfe4320ec, 0x11270527, 0x01fdcf7e, 0x11b30174, 0xcc432bb2, + 0x20a7eb41, 0xd3a9e71e, 0x44270140, 0x143b402b, 0xd49d3e2b, 0xf531e20b, + 0x5e3107fe, 0x4427fef0, 0xe207402b, 0x9b5ee43b, 0x27a127fe, 0xfe845e31, + 0x347e0907, 0x38dcd1fd, 0x12dc8d04, 0x27fe615e, 0xfef25e10, 0x432b4203, + 0xc236f393, 0x15340500, 0xfe1d5e31, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x16131008, 0x221d1b1a, 0x18161010, 0x25221d1b, + 0x1b1a1613, 0x2622221d, 0x1b1a1616, 0x2825221d, 0x1d1b1a16, 0x30282320, + 0x201d1b1a, 0x3a302823, 0x221d1b1a, 0x45382e26, 0x26231d1b, 0x5345382e, + 0x00030000, 0x0002b4af, 0x0001d0aa, 0x00016fe2, 0x000137b5, 0x0001121c, + 0x0000f6c9, 0x0000e1d1, 0x0000d119, 0x0000c362, 0x0000b7e1, 0x0000ae0e, + 0x0000a58c, 0x00009e17, 0x0000977b, 0x00009194, 0x00008c44, 0x00008774, + 0x00008311, 0x00007f0c, 0x00007b59, 0x00006c79, 0x000061a8, 0x0000595c, + 0x000052bf, 0x00004d51, 0x000048c4, 0x000044e1, 0x00004183, 0x00003e8f, + 0x00003bf2, 0x0000399c, 0x00003782, 0x0000359a, 0x000033dd, 0x00003246, + 0x000030d0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x0000d1f3, 0x0000d1f8, 0x0000d200, 0x0000d208, 0x0000d20e, 0x0000d215, + 0x0000d220, 0x0000d229, 0x0000d232, 0x0000d236, 0x0000d23c, 0x0000d246, + 0x0000d24e, 0x0000d25c, 0x0000d269, 0x0000d270, 0x0000d27c, 0x0000d286, + 0x0000d291, 0x0000d1f3, 0x0000d29c, 0x0000d2a4, 0x0000d2ac, 0x0000d2d0, + 0x0000d2b0, 0x0000d200, 0x0000d2b9, 0x0000d2c3, 0x0000d2cd, 0x0000d2d7, + 0x0000d2e1, 0x0000d2e9, 0x0000d2f2, 0x0000d2f8, 0x0000d2ff, 0x0000d305, + 0x0000d310, 0x0000d31a, 0x0000d1f3, 0x0000d29c, 0x0000d320, 0x0000d329, + 0x0000d332, 0x0000d336, 0x0000d33d, 0x0000d345, 0x0000d34f, 0x0000d356, + 0x0000d35e, 0x0000d369, 0x0000d36d, 0x0000d375, 0x0000d37f, 0x0000d388, + 0x0000d38d, 0x0000d395, 0x0000d3a1, 0x0000d3a7, 0x0000d3b2, 0x0000d3bc, + 0x0000d1f3, 0x0000d29c, 0x0000d3c4, 0x0000d3ce, 0x0000d3d9, 0x0000d3e6, + 0x0000d3ed, 0x0000d3f0, 0x0000d3f7, 0x0000d3fd, 0x0000d407, 0x0000d410, + 0x0000d417, 0x0000d41e, 0x0000d3bc, 0x0000d1f3, 0x0000d29c, 0x0000d426, + 0x0000d431, 0x0000d439, 0x0000d2d0, 0x0000d43d, 0x0000d44b, 0x0000d453, + 0x0000d45e, 0x0000d296, 0x0000d467, 0x0000d473, 0x0000d47e, 0x0000d488, + 0x0000d493, 0x0000d49a, 0x0000d4a8, 0x0000d4b7, 0x0000d1f3, 0x0000d4bc, + 0x0000d4c1, 0x0000d4cb, 0x0000d4cf, 0x0000d4d7, 0x0000d4df, 0x0000d4e9, + 0x0000d2c9, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, +}; +const int fw_jpegenc_size = 277760; + +int get_fw_jpegenc(unsigned char **data) +{ + *data = (unsigned char *)fw_jpegenc; + return fw_jpegenc_size; +} diff --git a/drivers/media/platform/canaan/vpu/mve_protocol_def_v2.h b/drivers/media/platform/canaan/vpu/mve_protocol_def_v2.h new file mode 100644 index 0000000000000..a7079225b1612 --- /dev/null +++ b/drivers/media/platform/canaan/vpu/mve_protocol_def_v2.h @@ -0,0 +1,1971 @@ +/* SPDX-License-Identifier: GPL-2.0-only + * The confidential and proprietary information contained in this file may + * only be used by a person authorised under and to the extent permitted + * by a subsisting licensing agreement from Arm Technology (China) Co., Ltd. + * + * (C) COPYRIGHT 2021-2021 Arm Technology (China) Co., Ltd. + * ALL RIGHTS RESERVED + * + * This entire notice must be reproduced on all copies of this file + * and copies of this file may only be made by a person if such person is + * permitted to do so under the terms of a subsisting license agreement + * from Arm Technology (China) Co., Ltd. + * + * 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. + * + */ + +#ifndef __FW_INCLUDE__MVE_PROTOCOL_DEF_H__ +#define __FW_INCLUDE__MVE_PROTOCOL_DEF_H__ + +#ifdef __cplusplus +extern "C" { +#endif + +#ifdef __KERNEL__ +#include +#else +#include +#endif + +/***************************************************************************** + * + * Communication protocol between the host/driver and the MVE firmware, + * the 'host interface'. + * + * MVE == LINLON Video Engine + * + * Protocol version 2.5 + * + * Note: Message structs may be expanded in the future; the host should + * use the 'size' of the message to determine how many bytes to + * read from the message queue, rather than a sizeof(struct). + * + ****************************************************************************/ + +/***************************************************************************** + * + * Virtual memory regions + * + * ..._ADDR_BEGIN gives the starting virtual address of the region, + * and ..._ADDR_END the (non-inclusive) ending address, such that + * the size of the region is obtained with the subtraction + * (..._ADDR_END - ..._ADDR_BEGIN). + * + ****************************************************************************/ + +/* Memory region for first firmware instance */ +#define MVE_MEM_REGION_FW_INSTANCE0_ADDR_BEGIN (0x00000000u) +#define MVE_MEM_REGION_FW_INSTANCE0_ADDR_END (0x000FFFFFu + 1) + +/* + * Areas for communication between host and MVE are placed in the interval + * 0x10079000 - 0x1007FFFF, see special defines further down. + */ + +/* PROTECTED virtual memory region */ +#define MVE_MEM_REGION_PROTECTED_ADDR_BEGIN (0x20000000u) +#define MVE_MEM_REGION_PROTECTED_ADDR_END (0x4FFFFFFFu + 1) + +/* FRAMEBUF virtual memory region */ +#define MVE_MEM_REGION_FRAMEBUF_ADDR_BEGIN (0x50000000u) +#define MVE_MEM_REGION_FRAMEBUF_ADDR_END (0x7FFFFFFFu + 1) + +/* Memory regions for other firmware instances */ +#define MVE_MEM_REGION_FW_INSTANCE1_ADDR_BEGIN (0x80000000u) +#define MVE_MEM_REGION_FW_INSTANCE1_ADDR_END \ + (MVE_MEM_REGION_FW_INSTANCE1_ADDR_BEGIN + \ + MVE_MEM_REGION_FW_INSTANCE0_ADDR_END) + +#define MVE_MEM_REGION_FW_INSTANCE2_ADDR_BEGIN (0x90000000u) +#define MVE_MEM_REGION_FW_INSTANCE2_ADDR_END \ + (MVE_MEM_REGION_FW_INSTANCE2_ADDR_BEGIN + \ + MVE_MEM_REGION_FW_INSTANCE0_ADDR_END) + +#define MVE_MEM_REGION_FW_INSTANCE3_ADDR_BEGIN (0xA0000000u) +#define MVE_MEM_REGION_FW_INSTANCE3_ADDR_END \ + (MVE_MEM_REGION_FW_INSTANCE3_ADDR_BEGIN + \ + MVE_MEM_REGION_FW_INSTANCE0_ADDR_END) + +#define MVE_MEM_REGION_FW_INSTANCE4_ADDR_BEGIN (0xB0000000u) +#define MVE_MEM_REGION_FW_INSTANCE4_ADDR_END \ + (MVE_MEM_REGION_FW_INSTANCE4_ADDR_BEGIN + \ + MVE_MEM_REGION_FW_INSTANCE0_ADDR_END) + +#define MVE_MEM_REGION_FW_INSTANCE5_ADDR_BEGIN (0xC0000000u) +#define MVE_MEM_REGION_FW_INSTANCE5_ADDR_END \ + (MVE_MEM_REGION_FW_INSTANCE5_ADDR_BEGIN + \ + MVE_MEM_REGION_FW_INSTANCE0_ADDR_END) + +#define MVE_MEM_REGION_FW_INSTANCE6_ADDR_BEGIN (0xD0000000u) +#define MVE_MEM_REGION_FW_INSTANCE6_ADDR_END \ + (MVE_MEM_REGION_FW_INSTANCE6_ADDR_BEGIN + \ + MVE_MEM_REGION_FW_INSTANCE0_ADDR_END) + +#define MVE_MEM_REGION_FW_INSTANCE7_ADDR_BEGIN (0xE0000000u) +#define MVE_MEM_REGION_FW_INSTANCE7_ADDR_END \ + (MVE_MEM_REGION_FW_INSTANCE7_ADDR_BEGIN + \ + MVE_MEM_REGION_FW_INSTANCE0_ADDR_END) + +/* 0xF0000000 - 0xFFFFFFFF is used internally in MVE */ + +/***************************************************************************** + * + * Communication queues between HOST/DRIVER and MVE + * + * Address for queue for messages in to MVE, + * one struct mve_comm_area_host located here + * + ****************************************************************************/ + +#define MVE_COMM_MSG_INQ_ADDR (0x10079000u) + +/* Address for queue for messages out from MVE, + * one struct mve_comm_area_mve located here + */ +#define MVE_COMM_MSG_OUTQ_ADDR (0x1007A000u) + +/* Address for queue for input buffers in to MVE, + * one struct mve_comm_area_host located here + */ +#define MVE_COMM_BUF_INQ_ADDR (0x1007B000u) + +/* Address for queue for input buffers returned from MVE, + * one struct mve_comm_area_mve located here + */ +#define MVE_COMM_BUF_INRQ_ADDR (0x1007C000u) + +/* Address for queue for output buffers in to MVE, + * one struct mve_comm_area_host located here + */ +#define MVE_COMM_BUF_OUTQ_ADDR (0x1007D000u) + +/* Address for queue for output buffers returned from MVE, + * one struct mve_comm_area_mve located here + */ +#define MVE_COMM_BUF_OUTRQ_ADDR (0x1007E000u) + +/* One struct mve_rpc_communication_area located here */ +#define MVE_COMM_RPC_ADDR (0x1007F000u) + +/* Address for ram_print buffer in FW */ +#define MVE_FW_PRINT_RAM_ADDR (0x10100000u) +#define MVE_FW_PRINT_RAM_SIZE (0x80000u) + +/* One page of memory (4 kB) is used for each queue, + * so maximum 1024 words, but need room for some counters as well, + * see structs mve_comm_area_mve and mve_comm_area_host below. + */ +#define MVE_COMM_QUEUE_SIZE_IN_WORDS 1020 + +/* This is the part of the message area that is written by host. */ +struct mve_comm_area_host { + uint16_t out_rpos; + uint16_t in_wpos; + uint32_t reserved[3]; + /* + * Queue of messages to MVE, each block of data prefixed with + * a mve_msg_header + */ + uint32_t in_data[MVE_COMM_QUEUE_SIZE_IN_WORDS]; +}; + +/* This is the part of the message area that is written by MVE. */ +struct mve_comm_area_mve { + uint16_t out_wpos; + uint16_t in_rpos; + uint32_t reserved[3]; + /* + * Queue of messages to host, each block of data prefixed with + * a mve_msg_header + */ + uint32_t out_data[MVE_COMM_QUEUE_SIZE_IN_WORDS]; +}; + +#define MVE_RPC_AREA_SIZE_IN_WORDS 256 +#define MVE_RPC_DATA_SIZE_IN_WORDS (MVE_RPC_AREA_SIZE_IN_WORDS - 3) +union mve_rpc_params { + uint32_t data[MVE_RPC_DATA_SIZE_IN_WORDS]; + struct { + char string[MVE_RPC_DATA_SIZE_IN_WORDS * 4]; + } debug_print; + struct { + uint32_t size; + uint32_t max_size; + uint8_t region; /* Memory region selection */ +#define MVE_MEM_REGION_PROTECTED (0) +#define MVE_MEM_REGION_OUTBUF (1) +#define MVE_MEM_REGION_FRAMEBUF (MVE_MEM_REGION_OUTBUF) + + /* The newly allocated memory must be placed + * on (at least) a 2^(log2_alignment) boundary + */ + uint8_t log2_alignment; + } mem_alloc; + struct { + uint32_t ve_pointer; + uint32_t new_size; + } mem_resize; + struct { + uint32_t ve_pointer; + } mem_free; +}; + +struct mve_rpc_communication_area { + uint32_t state; +#define MVE_RPC_STATE_FREE (0) +#define MVE_RPC_STATE_PARAM (1) +#define MVE_RPC_STATE_RETURN (2) + uint32_t call_id; +#define MVE_RPC_FUNCTION_DEBUG_PRINTF (1) +#define MVE_RPC_FUNCTION_MEM_ALLOC (2) +#define MVE_RPC_FUNCTION_MEM_RESIZE (3) +#define MVE_RPC_FUNCTION_MEM_FREE (4) + uint32_t size; + union mve_rpc_params params; +}; + +struct mve_fw_ram_print_head_aera { + uint32_t rd_cnt; + uint32_t reserved0[15]; + + uint32_t flag; + uint32_t index; + uint32_t wr_cnt; + uint32_t reserved1[13]; +}; + +/********************************************************************* + * + * Message codes + * + *********************************************************************/ + +/* Messages consist of one struct mve_msg_header, possibly followed + * by extra data. + */ +struct mve_msg_header { + uint16_t code; +/* REQUESTs are messages from the + * host/driver to the firmware: + * Code: Extra data in message: + */ +#define MVE_REQUEST_CODE_GO (1001) /* no extra data */ +#define MVE_REQUEST_CODE_STOP (1002) /* no extra data */ +#define MVE_REQUEST_CODE_INPUT_FLUSH (1003) /* no extra data */ +#define MVE_REQUEST_CODE_OUTPUT_FLUSH (1004) /* no extra data */ +#define MVE_REQUEST_CODE_SWITCH (1005) /* no extra data */ +#define MVE_REQUEST_CODE_PING (1006) /* no extra data */ +#define MVE_REQUEST_CODE_DUMP (1008) /* no extra data */ +#define MVE_REQUEST_CODE_JOB (1009) /* struct mve_request_job */ +#define MVE_REQUEST_CODE_SET_OPTION \ + (1010) /* struct mve_request_set_option (variable size) */ +#define MVE_REQUEST_CODE_RELEASE_REF_FRAME \ + (1011) /* struct mve_request_release_ref_frame */ +#define MVE_REQUEST_CODE_IDLE_ACK (1012) /* no extra data */ +#define MVE_REQUEST_CODE_DEBUG \ + (1013) /* level: 0 for disable, refer to fw_log_level */ +/* RESPONSEs are messages from + * the firmware to the host: + */ +#define MVE_RESPONSE_CODE_SWITCHED_IN \ + (2001) /* struct mve_response_switched_in */ +#define MVE_RESPONSE_CODE_SWITCHED_OUT \ + (2002) /* struct mve_response_switched_out */ +#define MVE_RESPONSE_CODE_SET_OPTION_CONFIRM (2003) /* no extra data */ +#define MVE_RESPONSE_CODE_JOB_DEQUEUED \ + (2004) /* struct mve_response_job_dequeued */ +#define MVE_RESPONSE_CODE_INPUT \ + (2005) /* no extra data, but buffer placed in buffer queue */ +#define MVE_RESPONSE_CODE_OUTPUT \ + (2006) /* no extra data, but buffer placed in buffer queue */ +#define MVE_RESPONSE_CODE_INPUT_FLUSHED (2007) /* no extra data */ +#define MVE_RESPONSE_CODE_OUTPUT_FLUSHED (2008) /* no extra data */ +#define MVE_RESPONSE_CODE_PONG (2009) /* no extra data */ +#define MVE_RESPONSE_CODE_ERROR (2010) /* struct mve_response_error */ +#define MVE_RESPONSE_CODE_STATE_CHANGE \ + (2011) /* struct mve_response_state_change */ +#define MVE_RESPONSE_CODE_DUMP (2012) /* no extra data */ +#define MVE_RESPONSE_CODE_IDLE (2013) /* no extra data */ +#define MVE_RESPONSE_CODE_FRAME_ALLOC_PARAM \ + (2014) /* struct mve_response_frame_alloc_parameters */ +#define MVE_RESPONSE_CODE_SEQUENCE_PARAMETERS \ + (2015) /* struct mve_response_sequence_parameters */ +#define MVE_RESPONSE_CODE_EVENT \ + (2016) /* struct mve_response_event (variable size) */ +#define MVE_RESPONSE_CODE_SET_OPTION_FAIL \ + (2017) /* struct mve_response_set_option_failed */ +#define MVE_RESPONSE_CODE_REF_FRAME_UNUSED \ + (2018) /* struct mve_response_ref_frame_unused */ +#define MVE_RESPONSE_CODE_DEBUG (2019) /* no extra data */ +/* BUFFERs are sent from host to firmware, + * and then return at some time: + */ +#define MVE_BUFFER_CODE_FRAME (3001) /* struct mve_buffer_frame */ +#define MVE_BUFFER_CODE_BITSTREAM (3002) /* struct mve_buffer_bitstream */ +#define MVE_BUFFER_CODE_PARAM (3003) /* struct mve_buffer_param */ +#define MVE_BUFFER_CODE_GENERAL (3004) /* struct mve_buffer_general */ + + uint16_t size; /* size in bytes of trailing data, 0 if none */ +}; + +/********************************************************************* + * + * REQUESTs are messages from the host to the firmware + * + * Some of the MVE_REQUEST_CODE_ codes are followed by one of the + * structs below. + * + *********************************************************************/ + +struct mve_request_job { + uint16_t cores; /* >= 1, number of cores to use, must match request to HW scheduler */ + uint16_t frames; /* number of frames to process, zero means infinite */ + uint32_t flags; /* can be zero */ +#define MVE_JOB_FLAG_DISABLE_BNDMGR (0x01) +}; + +struct mve_request_set_option { + uint32_t index; +#define MVE_SET_OPT_INDEX_NALU_FORMAT (1) /* see arg, MVE_OPT_NALU_FORMAT_ */ +#define MVE_SET_OPT_INDEX_STREAM_ESCAPING \ + (2) /* arg=1 to enable (default), arg=0 to disable */ +#define MVE_SET_OPT_INDEX_PROFILE_LEVEL (3) /* data.profile_level */ +#define MVE_SET_OPT_INDEX_HOST_PROTOCOL_PRINTS \ + (4) /* arg=1 to enable, arg=0 to disable (default) */ +#define MVE_SET_OPT_INDEX_PROFILING \ + (5) /* arg=1 to enable, arg=0 to disable (default) */ +#define MVE_SET_OPT_INDEX_DISABLE_FEATURES \ + (6) /* see arg, MVE_OPT_DISABLE_FEATURE_ */ +#define MVE_SET_OPT_INDEX_IGNORE_STREAM_HEADERS \ + (7) /* decode, arg=1 to enable, arg=0 to disable (default) */ +#define MVE_SET_OPT_INDEX_FRAME_REORDERING \ + (8) /* decode, arg=1 to enable (default), arg=0 to disable */ +#define MVE_SET_OPT_INDEX_INTBUF_SIZE \ + (9) /* decode, arg = suggested limit of intermediate, buffer allocation */ +#define MVE_SET_OPT_INDEX_ENC_P_FRAMES (16) /* encode, arg = nPFrames */ +#define MVE_SET_OPT_INDEX_ENC_B_FRAMES \ + (17) /* encode, arg = number of B frames */ +#define MVE_SET_OPT_INDEX_GOP_TYPE (18) /* encode, see arg */ +#define MVE_SET_OPT_INDEX_INTRA_MB_REFRESH (19) /* encode, arg */ +#define MVE_SET_OPT_INDEX_ENC_CONSTR_IPRED (20) /* encode, arg = 0 or 1 */ +#define MVE_SET_OPT_INDEX_ENC_ENTROPY_SYNC (21) /* encode, arg = 0 or 1 */ +#define MVE_SET_OPT_INDEX_ENC_TEMPORAL_MVP (22) /* encode, arg = 0 or 1 */ +#define MVE_SET_OPT_INDEX_TILES (23) /* encode, data.tiles */ +#define MVE_SET_OPT_INDEX_ENC_MIN_LUMA_CB_SIZE \ + (24) /* HEVC encode, arg = 8 or 16, for sizes 8x8 or 16x16 */ +#define MVE_SET_OPT_INDEX_ENC_MB_TYPE_ENABLE (25) /* encode, see arg */ +#define MVE_SET_OPT_INDEX_ENC_MB_TYPE_DISABLE (26) /* encode, see arg */ +#define MVE_SET_OPT_INDEX_ENC_H264_CABAC \ + (27) /* encode, arg = 0 or 1, enabled by default */ +#define MVE_SET_OPT_INDEX_ENC_SLICE_SPACING \ + (28) /* encode, arg = suggested number of CTUs/macroblocks in a slice */ +#define MVE_SET_OPT_INDEX_ENC_VP9_PROB_UPDATE (30) /* VP9 encode, see arg */ +#define MVE_SET_OPT_INDEX_RESYNC_INTERVAL \ + (31) /* JPEG encode, arg = nRestartInterval = nResynchMarkerSpacing */ +#define MVE_SET_OPT_INDEX_HUFFMAN_TABLE \ + (32) /* JPEG encode, data.huffman_table */ +#define MVE_SET_OPT_INDEX_QUANT_TABLE (33) /* JPEG encode, data.quant_table */ +#define MVE_SET_OPT_INDEX_ENC_EXPOSE_REF_FRAMES \ + (34) /* encode only, disabled by default */ +#define MVE_SET_OPT_INDEX_MBINFO_OUTPUT \ + (35) /* encode, arg=1 to enable, arg=0 to disable (default) */ +#define MVE_SET_OPT_INDEX_MV_SEARCH_RANGE \ + (36) /* encode, data,motion_vector_search_range */ +#define MVE_SET_OPT_INDEX_ENC_STREAM_BITDEPTH \ + (38) + /* encode, data.bitdepth, + * to set other bitdepth of encoded stream than of input frames + */ +#define MVE_SET_OPT_INDEX_ENC_STREAM_CHROMA_FORMAT \ + (39) /* encode, arg, to set other chroma format of encoded stream than of input frames */ +#define MVE_SET_OPT_INDEX_ENC_RGB_TO_YUV_MODE \ + (40) /* encode, arg, select which way RGB is converted to YUV before encoding */ +#define MVE_SET_OPT_INDEX_ENC_BANDWIDTH_LIMIT \ + (41) /* encode, arg, the maximum bandwidth limit defined by host */ +#define MVE_SET_OPT_INDEX_WATCHDOG_TIMEOUT \ + (42) /* arg=timeout, arg=0 to disable */ +#define MVE_SET_OPT_INDEX_ENC_CABAC_INIT_IDC \ + (43) /* encode, arg; 0,1,2 for H264; 0,1 for HEVC */ +#define MVE_SET_OPT_INDEX_ENC_ADPTIVE_QUANTISATION \ + (44) /* encode (h264 and hevc) */ +#define MVE_SET_OPT_INDEX_QP_DELTA_I_P (45) +#define MVE_SET_OPT_INDEX_QP_DELTA_I_B_REF (46) +#define MVE_SET_OPT_INDEX_QP_DELTA_I_B_NONREF (47) +#define MVE_SET_OPT_INDEX_CB_QP_OFFSET (48) +#define MVE_SET_OPT_INDEX_CR_QP_OFFSET (49) +#define MVE_SET_OPT_INDEX_LAMBDA_SCALE (50) /* encode, data.lambda_scale */ +#define MVE_SET_OPT_INDEX_ENC_MAX_NUM_CORES (51) /* maximum number of cores */ +#define MVE_SET_OPT_INDEX_ENC_EXTRA_REFS \ + (52) /* configure number of extra ref buffers */ +#define MVE_SET_OPT_INDEX_QP_DELTA_RAW_I_P (53) +#define MVE_SET_OPT_INDEX_QP_DELTA_RAW_I_B_REF (54) +#define MVE_SET_OPT_INDEX_QP_DELTA_RAW_I_B_NONREF (55) +#define MVE_SET_OPT_INDEX_ENC_FIXED_QP (56) +/* ARBITRARY_DOWNSCALE */ +#define MVE_SET_OPT_INDEX_DEC_DOWNSCALE \ + (57) /* decode, set downscaled width and height */ +#define MVE_SET_OPT_INDEX_FLUSHLESS_REFBANK \ + (58) + /* configure AFBC ref bank for individual buffer allocation. + * Forced internally for flushless resolution change codecs + */ +#define MVE_SET_OPT_INDEX_ENC_SAO_LUMA_EN (60) +#define MVE_SET_OPT_INDEX_ENC_SAO_CHROMA_EN (61) + +#define MVE_SET_OPT_INDEX_ENC_CROP_RARAM_LEFT (62) +#define MVE_SET_OPT_INDEX_ENC_CROP_RARAM_RIGHT (63) +#define MVE_SET_OPT_INDEX_ENC_CROP_RARAM_TOP (64) +#define MVE_SET_OPT_INDEX_ENC_CROP_RARAM_BOTTOM (65) +/* LONG_TERM_REFERENCE */ +#define MVE_SET_OPT_INDEX_ENC_LTR_MODE (66) +#define MVE_SET_OPT_INDEX_ENC_LTR_PERIOD (67) +#define MVE_SET_OPT_INDEX_DEC_DOWNSCALE_POS_MODE (69) +#define MVE_SET_OPT_INDEX_MINI_FRAME_HEIGHT_PIX (70) /* max cnt of mini frames*/ +/* Encode Data Statistics */ +#define MVE_SET_OPT_INDEX_ENC_STATS_MODE (71) +#define MVE_SET_OPT_INDEX_ENC_MULTI_SPS_PPS (73) +#define MVE_SET_OPT_INDEX_ENC_INIT_QPI (74) +#define MVE_SET_OPT_INDEX_ENC_INIT_QPP (75) +#define MVE_SET_OPT_INDEX_ENC_INIT_QPB (76) + +#define MVE_SET_OPT_INDEX_ENC_RC_CLIP_TOP (80) +#define MVE_SET_OPT_INDEX_ENC_RC_CLIP_BOTTOM (81) +#define MVE_SET_OPT_INDEX_ENC_QPMAP_CLIP_TOP (82) +#define MVE_SET_OPT_INDEX_ENC_QPMAP_CLIP_BOTTOM (83) + +#define MVE_SET_OPT_INDEX_ENC_REF_RING_BUFFER (84) +#define MVE_SET_OPT_INDEX_ENC_JPEG_RC (85) //MVE_ENC_RC_JPEG +#define MVE_SET_OPT_INDEX_ENC_RC_I_BIT_RATIO (86) /* RC_I_BIT_RATIO */ +#define MVE_SET_OPT_INDEX_ENC_RC_I_BIT_MODE (87) /* RC_I_BIT_RATIO */ + /* SVCT3 level-1 period */ +#define MVE_SET_OPT_INDEX_ENC_SVCT3_LEVEL1_PEROID (88) +#define MVE_SET_OPT_iNDEX_ENC_VISUAL_ENABLE \ + (89) //enable_visual FW CODE IS iNDEX + /* GDR */ +#define MVE_SET_OPT_INDEX_ENC_GDR_NUMBER (90) +#define MVE_SET_OPT_INDEX_ENC_GDR_PERIOD (91) +#define MVE_SET_OPT_INDEX_SCD_ENABLE (93) +#define MVE_SET_OPT_INDEX_SCD_PERCENT (94) +#define MVE_SET_OPT_INDEX_SCD_THRESHOLD (95) +/* for aq, add new para */ +#define MVE_SET_OPT_INDEX_ENC_AQ_SSIM_EN (96) +#define MVE_SET_OPT_INDEX_ENC_AQ_NEG_RATIO (97) +#define MVE_SET_OPT_INDEX_ENC_AQ_POS_RATIO (98) +#define MVE_SET_OPT_INDEX_ENC_AQ_QPDELTA_LMT (99) +#define MVE_SET_OPT_INDEX_ENC_AQ_INIT_FRM_AVG_SVAR (100) +#define MVE_SET_OPT_INDEX_SCD_ADAPTIVE_I (101) +#define MVE_SET_OPT_INDEX_DEC_YUV2RGB_PARAMS (103) +#define MVE_SET_OPT_INDEX_ENC_FORCED_UV_VAL (104) +#define MVE_SET_OPT_INDEX_DEC_DSL_INTERP_MODE (105) + +#define MVE_SET_OPT_INDEX_ENC_SRC_CROPPING (106) +#define MVE_SET_OPT_INDEX_DEC_DST_CROPPING (107) //ENABLE_DST_CROP + + union { + uint32_t arg; /* Most options only need a uint32_t as argument */ +/* For option MVE_SET_OPT_INDEX_NALU_FORMAT, arg should + * be one of these: + */ +#define MVE_OPT_NALU_FORMAT_START_CODES (1) +#define MVE_OPT_NALU_FORMAT_ONE_NALU_PER_BUFFER (2) +#define MVE_OPT_NALU_FORMAT_ONE_BYTE_LENGTH_FIELD (4) +#define MVE_OPT_NALU_FORMAT_TWO_BYTE_LENGTH_FIELD (8) +#define MVE_OPT_NALU_FORMAT_FOUR_BYTE_LENGTH_FIELD (16) +/* For option MVE_SET_OPT_INDEX_GOP_TYPE, arg should + * be one of these: + */ +#define MVE_OPT_GOP_TYPE_BIDIRECTIONAL (1) +#define MVE_OPT_GOP_TYPE_LOW_DELAY (2) +#define MVE_OPT_GOP_TYPE_PYRAMID (3) +#define MVE_OPT_GOP_TYPE_SVCT3 (4) +#define MVE_OPT_GOP_TYPE_GDR (5) +/* For option MVE_SET_OPT_INDEX_ENC_VP9_PROB_UPDATE, + * arg should be one of these: + */ +#define MVE_OPT_VP9_PROB_UPDATE_DISABLED (0) +#define MVE_OPT_VP9_PROB_UPDATE_IMPLICIT (1) +#define MVE_OPT_VP9_PROB_UPDATE_EXPLICIT (2) +/* For option MVE_SET_OPT_INDEX_DISABLE_FEATURES, arg + * should be a bitmask with features to disable: + */ +#define MVE_OPT_DISABLE_FEATURE_AFBC_COMP \ + (0x00000001) /* VDMA AFBC Compression */ +#define MVE_OPT_DISABLE_FEATURE_REF_CACHE \ + (0x00000002) /* REF caching */ +#define MVE_OPT_DISABLE_FEATURE_DEBLOCK \ + (0x00000004) /* Deblocking */ +#define MVE_OPT_DISABLE_FEATURE_SAO (0x00000008) /* SAO */ +#define MVE_OPT_DISABLE_FEATURE_PIC_OUTPUT \ + (0x00000020) /* Picture Output Removal */ +#define MVE_OPT_DISABLE_FEATURE_PIPE (0x00000040) /* Pipe (i.e. parser-only) */ +#define MVE_OPT_DISABLE_FEATURE_SLEEP \ + (0x00000080) /* Clock gating (SOC_SYSCTRL.SLEEP bit) */ +#define MVE_OPT_DISABLE_FEATURE_AFBC_LEGACY_REF \ + (0x00000100) + /* Enables tiled AFBC format in reference buffers. + * Ignored for decode AFBC output + */ +#define MVE_OPT_DISABLE_FEATURE_REF_PICS \ + (0x00000400) /* Forces use of static 16x16 reference pics */ +#define MVE_OPT_DISABLE_FEATURE_CHNG_RECT_WA \ + (0x00000800) /* Disables workaround */ +#define MVE_OPT_DISABLE_FEATURE_REFSZ_LIMIT \ + (0x00001000) /* Disable REFSZ bw limit */ +/* For options MVE_SET_OPT_INDEX_ENC_MB_TYPE_ENABLE + * and MVE_SET_OPT_INDEX_ENC_MB_TYPE_DISABLE, arg + * should be a bitmask of MVE_MBTYPEs: + */ +#define MVE_MBTYPE_4x4 (0x00000001) /* 4x4 inter */ +#define MVE_MBTYPE_4x8 (0x00000002) /* 4x8 inter */ +#define MVE_MBTYPE_8x4 (0x00000004) /* 8x4 inter */ +#define MVE_MBTYPE_8x8 (0x00000008) /* 8x8 inter */ +#define MVE_MBTYPE_8x16 (0x00000010) /* 8x16 inter */ +#define MVE_MBTYPE_16x8 (0x00000020) /* 16x8 inter */ +#define MVE_MBTYPE_16x16 (0x00000040) /* 16x16 inter */ +#define MVE_MBTYPE_PSKIP (0x00000080) /* P Skip inter */ +#define MVE_MBTYPE_I4x4 (0x00000100) /* 4x4 intra */ +#define MVE_MBTYPE_I8x8 (0x00000200) /* 8x8 intra */ +#define MVE_MBTYPE_I16x16 (0x00000400) /* 16x16 intra */ +#define MVE_MBTYPE_I32x32 (0x00000800) /* 32x32 intra */ +#define MVE_MBTYPE_16x32 (0x00001000) /* 16x32 inter */ +#define MVE_MBTYPE_32x16 (0x00002000) /* 32x16 inter */ +#define MVE_MBTYPE_32x32 (0x00004000) /* 32x32 inter */ +/* For option MVE_SET_OPT_INDEX_ENC_RGB_TO_YUV_MODE, + * arg should be one of these: + */ +#define MVE_OPT_RGB_TO_YUV_BT601_STUDIO (0) +#define MVE_OPT_RGB_TO_YUV_BT601_FULL (1) +#define MVE_OPT_RGB_TO_YUV_BT709_STUDIO (2) +#define MVE_OPT_RGB_TO_YUV_BT709_FULL (3) +#define MVE_OPT_RGB_TO_YUV_BT2020_STUDIO (4) +#define MVE_OPT_RGB_TO_YUV_BT2020_FULL (5) +/* For option MVE_SET_OPT_INDEX_ENC_EXPOSE_REF_FRAMES, + * arg should be one of: + */ +#define MVE_OPT_REF_OUTPUT_NONE (0) /* No REF output */ +#define MVE_OPT_REF_OUTPUT_USED_FOR_REF (1) /* Output reference frames */ +#define MVE_OPT_REF_OUTPUT_ALL (2) /* Output/reconstruct all frames */ + struct { + uint16_t profile; +/* AVC/H.264 profiles */ +#define MVE_OPT_PROFILE_H264_BASELINE (1) +#define MVE_OPT_PROFILE_H264_MAIN (2) +#define MVE_OPT_PROFILE_H264_HIGH (3) +/* HEVC/H.265 profiles */ +#define MVE_OPT_PROFILE_H265_MAIN (1) +#define MVE_OPT_PROFILE_H265_MAIN_STILL (2) +#define MVE_OPT_PROFILE_H265_MAIN_INTRA (3) +#define MVE_OPT_PROFILE_H265_MAIN_10 (4) +/* VC-1 profiles */ +#define MVE_OPT_PROFILE_VC1_SIMPLE (1) +#define MVE_OPT_PROFILE_VC1_MAIN (2) +#define MVE_OPT_PROFILE_VC1_ADVANCED (3) +/* VP8 profiles */ +#define MVE_OPT_PROFILE_VP8_MAIN (1) + uint16_t level; +/* AVC/H.264 levels */ +#define MVE_OPT_LEVEL_H264_1 (1) +#define MVE_OPT_LEVEL_H264_1b (2) +#define MVE_OPT_LEVEL_H264_11 (3) +#define MVE_OPT_LEVEL_H264_12 (4) +#define MVE_OPT_LEVEL_H264_13 (5) +#define MVE_OPT_LEVEL_H264_2 (6) +#define MVE_OPT_LEVEL_H264_21 (7) +#define MVE_OPT_LEVEL_H264_22 (8) +#define MVE_OPT_LEVEL_H264_3 (9) +#define MVE_OPT_LEVEL_H264_31 (10) +#define MVE_OPT_LEVEL_H264_32 (11) +#define MVE_OPT_LEVEL_H264_4 (12) +#define MVE_OPT_LEVEL_H264_41 (13) +#define MVE_OPT_LEVEL_H264_42 (14) +#define MVE_OPT_LEVEL_H264_5 (15) +#define MVE_OPT_LEVEL_H264_51 (16) +#define MVE_OPT_LEVEL_H264_52 (17) +#define MVE_OPT_LEVEL_H264_6 (18) +#define MVE_OPT_LEVEL_H264_61 (19) +#define MVE_OPT_LEVEL_H264_62 (20) +#define MVE_OPT_LEVEL_H264_USER_SUPPLIED_BASE (32) +/* The value (MVE_OPT_LEVEL_H264_USER_SUPPLIED_BASE + level_idc) encodes a user + * supplied level_idc value in the range 0 to 255 inclusive. If the host supplies a level_idc + * value by this method then the encoder will encode this level_idc value in the bitstream + * without checking the validity of the level_idc value + */ +#define MVE_OPT_LEVEL_H264_USER_SUPPLIED_MAX \ + (MVE_OPT_LEVEL_H264_USER_SUPPLIED_BASE + 255) +/* HEVC/H.265 levels */ +#define MVE_OPT_LEVEL_H265_MAIN_TIER_1 (1) +#define MVE_OPT_LEVEL_H265_HIGH_TIER_1 (2) +#define MVE_OPT_LEVEL_H265_MAIN_TIER_2 (3) +#define MVE_OPT_LEVEL_H265_HIGH_TIER_2 (4) +#define MVE_OPT_LEVEL_H265_MAIN_TIER_21 (5) +#define MVE_OPT_LEVEL_H265_HIGH_TIER_21 (6) +#define MVE_OPT_LEVEL_H265_MAIN_TIER_3 (7) +#define MVE_OPT_LEVEL_H265_HIGH_TIER_3 (8) +#define MVE_OPT_LEVEL_H265_MAIN_TIER_31 (9) +#define MVE_OPT_LEVEL_H265_HIGH_TIER_31 (10) +#define MVE_OPT_LEVEL_H265_MAIN_TIER_4 (11) +#define MVE_OPT_LEVEL_H265_HIGH_TIER_4 (12) +#define MVE_OPT_LEVEL_H265_MAIN_TIER_41 (13) +#define MVE_OPT_LEVEL_H265_HIGH_TIER_41 (14) +#define MVE_OPT_LEVEL_H265_MAIN_TIER_5 (15) +#define MVE_OPT_LEVEL_H265_HIGH_TIER_5 (16) +#define MVE_OPT_LEVEL_H265_MAIN_TIER_51 (17) +#define MVE_OPT_LEVEL_H265_HIGH_TIER_51 (18) +#define MVE_OPT_LEVEL_H265_MAIN_TIER_52 (19) +#define MVE_OPT_LEVEL_H265_HIGH_TIER_52 (20) +#define MVE_OPT_LEVEL_H265_MAIN_TIER_6 (21) +#define MVE_OPT_LEVEL_H265_HIGH_TIER_6 (22) +#define MVE_OPT_LEVEL_H265_MAIN_TIER_61 (23) +#define MVE_OPT_LEVEL_H265_HIGH_TIER_61 (24) +#define MVE_OPT_LEVEL_H265_MAIN_TIER_62 (25) +#define MVE_OPT_LEVEL_H265_HIGH_TIER_62 (26) + } profile_level; + struct { + int32_t mv_search_range_x; + int32_t mv_search_range_y; + } motion_vector_search_range; + struct { + uint32_t type; +#define MVE_OPT_HUFFMAN_TABLE_DC_LUMA (1) +#define MVE_OPT_HUFFMAN_TABLE_AC_LUMA (2) +#define MVE_OPT_HUFFMAN_TABLE_DC_CHROMA (3) +#define MVE_OPT_HUFFMAN_TABLE_AC_CHROMA (4) + uint8_t number_of_huffman_of_code_length[16]; + uint8_t table[162]; /* 12 are used for DC, 162 for AC */ + } huffman_table; + struct { + uint32_t type; +#define MVE_OPT_QUANT_TABLE_LUMA (1) +#define MVE_OPT_QUANT_TABLE_CHROMA (2) + uint8_t matrix[64]; + } quant_table; + struct { + uint32_t qscale; + uint32_t qscale_luma; + uint32_t qscale_chroma; + uint32_t fps; + uint32_t change_pos; + } jpeg_rate_control; //MVE_ENC_RC_JPEG + struct { + /* For HEVC, tile_cols must be zero. For VP9, + * tile_rows and tile_cols must be powers of 2. + */ + uint16_t tile_rows; + uint16_t tile_cols; + } tiles; + struct { + uint16_t luma_bitdepth; + uint16_t chroma_bitdepth; + } bitdepth; + struct { +/* Scale factors, and their square roots, + * for the lambda coefficients used by the encoder, + * in unsigned Q8 fixed-point format. + * Default (no scaling) is 1.0 (so 0x0100 in hex). + */ + uint16_t lambda_scale_i_q8; + uint16_t lambda_scale_sqrt_i_q8; + uint16_t lambda_scale_p_q8; + uint16_t lambda_scale_sqrt_p_q8; + uint16_t lambda_scale_b_ref_q8; + uint16_t lambda_scale_sqrt_b_ref_q8; + uint16_t lambda_scale_b_nonref_q8; + uint16_t lambda_scale_sqrt_b_nonref_q8; + } lambda_scale; + /* ARBITRARY_DOWNSCALE */ + struct { + uint16_t width; + uint16_t height; + } downscaled_frame; + struct { + uint32_t mode; + } dsl_pos; + struct { + int16_t coef[3][3]; //coef[Y|U|V][R|G|B] + uint16_t offset[3]; + } yuv2rgb_params; + struct { + uint8_t rgb2yuv_mode; + int16_t coef[3 * 3]; //coef[Y|U|V][R|G|B] + uint8_t luma_range[2]; + uint8_t chroma_range[2]; + uint8_t rgb_range[2]; + } rgb2yuv_params; + struct { + uint16_t value; + } gray_uv_value; + struct { + uint16_t mode; + } interp_mode; + struct { + uint8_t crop_en; + /* left start x of luma in original image */ + uint16_t x; //included + /* top start y of luma in original image */ + uint16_t y; //included + /* cropped width of luma in original image */ + uint16_t width; + /* cropped height of luma in original image */ + uint16_t height; + } enc_src_crop; + + struct { + uint8_t crop_en; + /* left start x of luma in original image */ + uint16_t x; //included + /* top start y of luma in original image */ + uint16_t y; //included + /* cropped width of luma in original image */ + uint16_t width; + /* cropped height of luma in original image */ + uint16_t height; + } dec_dst_crop; //ENABLE_DST_CROP + } data; +}; + +struct mve_request_release_ref_frame { +/* Decode: For a frame buffer that MVE has returned + * marked as _REF_FRAME, the host can send this message + * to ask the MVE to release the buffer as soon as it is + * no longer used as reference anymore. (Otherwise, in + * normal operation, the host would re-enqueue the buffer + * to the MVE when it has been displayed and can be over- + * written with a new frame.) + * + * Note: When a frame is no longer used as reference depends + * on the stream being decoded, and there is no way to + * guarantee a short response time, the response may not + * come until the end of the stream. + * + * Encode: Return this reference buffer to the firmware + * so it can be reused. This is only useful when the + * MVE_SET_OPT_INDEX_ENC_EXPOSE_REF_FRAMES is used and reference + * frames are reported by events (and must be returned). + */ + uint32_t buffer_address; +}; + +/********************************************************************* + * + * RESPONSEs are messages from the host to the firmware + * + * Some of the MVE_RESPONSE_CODE_ codes are followed by one of the + * structs below. + * + *********************************************************************/ + +/* Sent when firmware has booted. + */ +struct mve_response_switched_in { + uint32_t core; +}; + +/* Sent when last core in a session has switched out. + */ +struct mve_response_switched_out { + uint32_t core; + uint32_t reason; + uint32_t sub_reason; +}; + +/* Response confirming state transition after either GO or STOP + * command from host. + */ +struct mve_response_state_change { + uint32_t new_state; +#define MVE_STATE_STOPPED (0) +#define MVE_STATE_RUNNING (2) +}; + +/* Message sent when the all cores in the session have dequeued a + * job from the firmware job queue. + */ +struct mve_response_job_dequeued { + uint32_t valid_job; +}; + +/* Fatal error message from firmware, if sent then no further + * operation is possible. + */ +struct mve_response_error { + uint32_t error_code; +#define MVE_ERROR_ABORT (1) +#define MVE_ERROR_OUT_OF_MEMORY (2) +#define MVE_ERROR_ASSERT (3) +#define MVE_ERROR_UNSUPPORTED (4) +#define MVE_ERROR_INVALID_BUFFER (6) +#define MVE_ERROR_INVALID_STATE (8) +#define MVE_ERROR_WATCHDOG (9) + +#define MVE_MAX_ERROR_MESSAGE_SIZE (128) + char message[MVE_MAX_ERROR_MESSAGE_SIZE]; +}; + +/* When a set-option succeeds, a confirmation message is + * sent, including the index-code for that particular option. + */ +struct mve_response_set_option_confirm { + uint32_t index; /* Same as 'index' in struct mve_request_set_option */ +}; + +/* If a set-option request fails, this message is returned. + * This is not a fatal error. The set-option had no effect, + * and the session is still alive. + * For example, trying to set an option with a too large + * or small parameter would result in this message. + * The included text string is meant for development and + * debugging purposes only. + * (When a set-option succeeds the set-option-confirm + * message code is sent instead.) + */ +struct mve_response_set_option_fail { + uint32_t index; /* Same as 'index' in struct mve_request_set_option */ + char message[MVE_MAX_ERROR_MESSAGE_SIZE]; +}; + +/* Decode only: This message is sent from MVE to the host so that it can + * allocate large enough output buffers. Output buffers that are to small + * will be returned to the host marked as 'rejected'. + */ +struct mve_response_frame_alloc_parameters { + /* Please note that the below information is a hint + * for what buffers to allocate, it does not say + * what actual resolution an output picture has. + */ + + /* To use if allocating PLANAR YUV output buffers: */ + uint16_t planar_alloc_frame_width; + uint16_t planar_alloc_frame_height; + + /* To use if allocating AFBC output buffers + * (if interlace, each field needs this size): + */ + uint32_t afbc_alloc_bytes; + + /* For situations where downscaled AFBC is supported, + * this number of bytes is needed for the downscaled frame. + */ + uint32_t afbc_alloc_bytes_downscaled; + + /* When the host allocates an AFBC frame buffer, it should normally set + * the afbc_width_in_superblocks to be at least this recommended value. + * Buffers with smaller values are likely to be returned rejected by the MVE. + * See also comments above for afbc_alloc_bytes and + * afbc_alloc_bytes_downscaled, they describe the situations where the + * different values are used. + */ + uint16_t afbc_width_in_superblocks; + uint16_t afbc_width_in_superblocks_downscaled; + + /* For PLANAR YUV output, every plane's address need to be adjusted to get + * optimal AXI bursts when the pixel data is written, the values below may + * be used to calculate address offsets. + */ + uint16_t cropx; + uint16_t cropy; + + uint32_t mbinfo_alloc_bytes; /* Only for debugging */ + + /* downscaled frame width/height for decode */ + /* ARBITRARY_DOWNSCALE */ + uint16_t dsl_frame_width; + uint16_t dsl_frame_height; + uint16_t dsl_pos_mode; + uint8_t ctu_size; /* EXPORT_SEQ_INFO */ + /* ENABLE_DST_CROP*/ + uint16_t dst_crop_x; + uint16_t dst_crop_y; + uint16_t dst_crop_width; + uint16_t dst_crop_height; +}; + +/* Decode only: This message is sent from MVE to the host so that it can + * allocate suitable output buffers. The needed size of the buffer is sent + * in a separate message (above). + * When MVE sends the message below, it enters a waiting-state and will not + * make any progress until the host sends an output-flush command, upon + * which MVE will return all output buffers, followed by a message saying + * that the output has been flushed. Only then should the host start + * enqueueing new output buffers. + */ +struct mve_response_sequence_parameters { + /* Other stream parameters affecting buffer allocation, + * any change in these values will trigger a flush. + */ + uint8_t interlace; /* 0 or 1 */ + uint8_t chroma_format; +#define MVE_CHROMA_FORMAT_MONO (0x0) +#define MVE_CHROMA_FORMAT_420 (0x1) +#define MVE_CHROMA_FORMAT_422 (0x2) +#define MVE_CHROMA_FORMAT_440 (0x3) +#define MVE_CHROMA_FORMAT_ARGB (0x4) +#define MVE_CHROMA_FORMAT_RGB (0x5) +#define MVE_CHROMA_FORMAT_444 (0x6) +#define MVE_CHROMA_FORMAT_OSD_ARGB (0x7) + + uint8_t bitdepth_luma; /* 8, 9 or 10 */ + uint8_t bitdepth_chroma; /* 8, 9 or 10 */ + uint8_t num_buffers_planar; /* number of planar buffers needed */ + uint8_t num_buffers_afbc; +/* number of AFBC buffers needed, for + * AFBC output more buffers are needed + * (for planar output, the firmware + * will allocate extra memory via RPC) + */ + uint8_t range_mapping_enabled; +/* VC-1 AP specific feature, if enabled + * then AFBC buffers may need special + * filtering before they can be + * displayed correctly. If the host is + * not able to do that, then planar output + * should be used, for which MVE + * automatically performs the filtering. + */ + uint8_t reserved0; +}; + +struct mve_response_ref_frame_unused { + /* Decode only: If requested by the host with the message + * MVE_REQUEST_CODE_RELEASE_REF_FRAME, the MVE will respond + * with this message when (if ever) the buffer is no longer + * used. + */ + uint32_t unused_buffer_address; +}; + +/* This message is only for debugging and performance profiling. + * Is sent by the firmware if the corresponding options is enabled. + */ +struct mve_event_processed { + uint8_t pic_format; + uint8_t qp; + uint8_t pad0; + uint8_t pad1; + uint32_t parse_start_time; /* Timestamp, absolute time */ + uint32_t parse_end_time; /* Timestamp, absolute time */ + uint32_t parse_idle_time; + /* Definition of idle here is waiting for in/out buffers or available RAM */ + + uint32_t pipe_start_time; /* Timestamp */ + uint32_t pipe_end_time; + /* Timestamp, end-start = process time. Idle time while in a frame is not measured. */ + uint32_t pipe_idle_time; /* Always 0 in decode, */ + + uint32_t parser_coreid; /* Core used to parse this frame */ + uint32_t pipe_coreid; /* Core used to pipe this frame */ + + uint32_t bitstream_bits; /* Number of bitstream bits used for this frame. */ + + uint32_t intermediate_buffer_size; + /* Size of intermediate (mbinfo/residuals) buffer after this frame was parsed. */ + uint32_t total_memory_allocated; + /* after the frame was parsed. Including reference frames. */ + + uint32_t bus_read_bytes; /* bus read bytes */ + uint32_t bus_write_bytes; /* bus written bytes */ + + uint32_t afbc_bytes; /* afbc data transferred */ + + uint32_t slice0_end_time; /* Timestamp, absolute time */ + uint32_t stream_start_time; /* Timestamp, absolute stream start time */ + uint32_t stream_open_time; /* Timestamp, absolute stream open time */ +}; + +/* This message is sent by the firmware if the option + * MVE_SET_OPT_INDEX_ENC_EXPOSE_REF_FRAMES is enabled + */ +struct mve_event_ref_frame { + uint32_t ref_addr; /* MVE virtual address of AFBC reference frame */ + uint32_t ref_width; /* Width of display area in luma pixels */ + uint32_t ref_height; /* Height of display area in luma pixels */ + uint32_t ref_mb_width; /* Width in macroblocks */ + uint32_t ref_mb_height; /* Height in macroblocks */ + uint32_t ref_left_crop; /* Left crop in luma pixels */ + uint32_t ref_top_crop; /* Top crop in luma pixels */ + uint32_t ref_frame_size; /* Total AFBC frame size in bytes */ + uint32_t ref_display_order; /* Display picture order count */ + uint16_t bit_width; /* Bit width of the YUV either 8 or 10 */ + uint16_t tiled_headers; /* AFBC format is tiled */ + uint64_t user_data_tag; /* User data tag of corresponding input buffer */ +}; + +/* This message is only for debugging, is sent by the firmware if event tracing + * is enabled. + */ +struct mve_event_trace_buffers { + uint16_t reserved; + uint8_t num_cores; + uint8_t rasc_mask; +#define MVE_MAX_TRACE_BUFFERS 40 + /* this array will contain one buffer per rasc in rasc_mask per num_core */ + struct { + uint32_t rasc_addr; /* rasc address of the buffer */ + uint32_t size; /* size of the buffer in bytes */ + } buffers[MVE_MAX_TRACE_BUFFERS]; +}; + +/* 'Events' are informative messages, the host is not required to react in + * any particular way. + */ +struct mve_response_event { + uint32_t event_code; +#define MVE_EVENT_ERROR_STREAM_CORRUPT (1) /* message, text string */ +#define MVE_EVENT_ERROR_STREAM_NOT_SUPPORTED (2) /* message, text string */ +#define MVE_EVENT_PROCESSED (3) /* struct mve_event_processed */ +#define MVE_EVENT_REF_FRAME (4) /* struct mve_event_ref_frame */ +#define MVE_EVENT_TRACE_BUFFERS (5) /* struct mve_event_trace_buffers */ + union { + struct mve_event_processed event_processed; + struct mve_event_ref_frame event_ref_frame; + struct mve_event_trace_buffers event_trace_buffers; + char message[MVE_MAX_ERROR_MESSAGE_SIZE]; + } event_data; +} __packed; + +/********************************************************************* + * + * BUFFERs are sent both ways, from host to firmware and back again + * + * Each MVE_BUFFER_CODE_ code is followed by one of the structs + * below. + * + *********************************************************************/ + +/* Flags in mve_buffer_frame::frame_flags: + * Set by whom? Meaning: + * DECODE: ENCODE: + * MVE_BUFFER_FRAME_FLAG_INTERLACE host - Buffer is interlaced (both top and + * bottom fields are allocated) + * MVE_BUFFER_FRAME_FLAG_BOT_FIRST fw - Bottom field should be displayed + * first (only if interlaced) + * MVE_BUFFER_FRAME_FLAG_TOP_PRESENT fw host Top field present (or full frame if + * not interlaced) + * MVE_BUFFER_FRAME_FLAG_BOT_PRESENT fw - Bottom present (only if interlaced) + * + * MVE_BUFFER_FRAME_FLAG_ROTATION_* host host Decode: MVE will rotate the output frame + * according to this setting. + * Encode: MVE will rotate the input frame + * according to this setting before + * encoding them. + * MVE_BUFFER_FRAME_FLAG_SCALING_MASK host - Output pictures should be downscaled + * + * MVE_BUFFER_FRAME_FLAG_MIRROR_* - host Input frame should be mirrored + * + * MVE_BUFFER_FRAME_FLAG_REJECTED fw - Buffer was too small, + * host should re-allocate + * + * MVE_BUFFER_FRAME_FLAG_CORRUPT fw - Frame contains visual corruption + * + * MVE_BUFFER_FRAME_FLAG_DECODE_ONLY fw - Frame should not be displayed + * + * MVE_BUFFER_FRAME_FLAG_REF_FRAME fw - Frame is used by MVE as reference, + * host must not change, + * just re-enqueue when displayed + * MVE_BUFFER_FRAME_FLAG_EOS fw host This is the last frame in the stream. + */ + +/* mve_buffer_frame_planar stores uncompressed YUV pictures. + * ________________________________________ + * | ^ | | ^ + * |<-:--visible_frame_width---->| | : + * | : | | : + * | : | | : + * | visible_frame_height | | max_frame_height + * | : | | : + * | : | | : + * |__v__________________________| | : + * | | : + * |<-------------max_frame_width---------->| : + * |________________________________________| v + * + */ +struct mve_buffer_frame_planar { + /* Y,Cb,Cr top field */ + uint32_t plane_top[3]; + + /* Y,Cb,Cr bottom field (interlace only) */ + uint32_t plane_bot[3]; + + /* Stride between rows, in bytes */ + int32_t stride[3]; + + /* Size of largest frame allowed to put in this buffer */ + uint16_t max_frame_width; + uint16_t max_frame_height; +}; + +/* mve_buffer_frame_afbc stores AFBC compressed content that is also used + * as the reference frame. Out of loop processing (crop, rotation, + * range reduction) must be supported by the user of this buffer and + * the parameters are signaled within the buffer descriptor below. + * ________________________________________ + * | ^ | + * | cropy | + * | v_____________________________ | + * |<-cropx->| ^ || + * | |<-:--visible_frame_width---->|| + * | | : || + * | | : || + * | | visible_frame_height || + * | | : || + * | | : || + * | |__v__________________________|| + * |________________________________________| + * + * <----- superblock_width ---------------> + * * afbc_width_in_superblocks + * + * Note that the sizes and cropping values need not be multiples of 16. + * + * For interlaced streams, the values refer to a full frame, + * while the output is actually separated into fields. Thus for fields, + * cropy and visible_frame_height should be divided by two. + * + * For dual-downscaled AFBC output (not supported for interlace), + * then the cropx, cropy, visible_frame_width and visible_frame_height + * should be divided by two for the downscaled plane. + */ +struct mve_buffer_frame_afbc { + uint32_t plane[2]; + /* Addresses for up to two AFBC planes: + * Top and bottom fields for interlace, + * or standard and optional downscaled output. + */ + uint32_t alloc_bytes[2]; /* Size of allocation for each plane */ + uint16_t cropx; /* Luma x crop */ + uint16_t cropy; /* Luma y crop */ + uint16_t afbc_width_in_superblocks[2]; + /* Width of AFBC frame buffer, in units + * of superblock width (32 or 16). + * If dual-downscaled output is chosen, + * this width can be different for the + * two planes. + * For first plane: + * (cropx + frame_width) <= superblock_width * afbc_width... + */ + uint32_t afbc_params; /* AFBC parameters */ +#define MVE_BUFFER_FRAME_AFBC_TILED_BODY \ + (0x00000001) /* Output body blocks should be tiled */ +#define MVE_BUFFER_FRAME_AFBC_TILED_HEADER \ + (0x00000002) /* Output headers should be tiled */ +#define MVE_BUFFER_FRAME_AFBC_32X8_SUPERBLOCK \ + (0x00000004) + /* Super block is 32x8, default is 16x16, only supported as input for encode) */ +#define MVE_BUFFER_FRAME_AFBC_DN_FORCE_8BIT \ + (0x00000008) + /* For downscaled AFBC plane: It shall be 8-bit, even if full-scale is 10-bit */ +#define MVE_BUFFER_FRAME_AFBC_DN_FORCE_420 \ + (0x00000010) + /* For downscaled AFBC plane: It shall be 4:2:0, even if full-scale is 4:2:2 */ +#define MVE_BUFFER_FRAME_AFBC_STRIDE_SET_BY_MVE \ + (0x00000020) + /* Decode only: By default, the host should set the afbc_width_in_superblocks. + * If the value is zero, or if this bit is set, then the MVE sets an appropriate value. + */ +}; + +/* output from encoder, encoder statistics. + * buffer parameter to a buffer of this encoder statistics + * this struct indicates each size of statistics. + */ + +struct mve_buffer_param_enc_stats { + uint32_t mms_buffer_size; + uint32_t bitcost_buffer_size; + uint32_t qp_buffer_size; + uint32_t flags; + //ENC_STATS_FLAGS +#define MVE_BUFFER_ENC_STATS_FLAG_MMS (1 << 0) +#define MVE_BUFFER_ENC_STATS_FLAG_BITCOST (1 << 1) +#define MVE_BUFFER_ENC_STATS_FLAG_QP (1 << 2) +#define MVE_BUFFER_ENC_STATS_FLAG_DROP (1 << 3) + uint16_t stats_mb_width; + uint16_t stats_mb_height; +}; + +/* + * The FRAME buffer stores the common information for PLANAR and AFBC buffers, + * and a union of PLANAR and AFBC specific information. + */ +struct mve_buffer_frame { + /* For identification of the buffer, this is not changed by the firmware. */ + uint64_t host_handle; + + /* For matching input buffer with output buffers, + * the firmware copies these values between frame buffers and bitstream buffers. + */ + uint64_t user_data_tag; + + /* Frame buffer flags, see commentary above */ + uint32_t frame_flags; +#define MVE_BUFFER_FRAME_FLAG_INTERLACE (0x00000001) +#define MVE_BUFFER_FRAME_FLAG_BOT_FIRST (0x00000002) +#define MVE_BUFFER_FRAME_FLAG_TOP_PRESENT (0x00000004) +#define MVE_BUFFER_FRAME_FLAG_BOT_PRESENT (0x00000008) +#define MVE_BUFFER_FRAME_FLAG_ROTATION_90 (0x00000010) +#define MVE_BUFFER_FRAME_FLAG_ROTATION_180 (0x00000020) +#define MVE_BUFFER_FRAME_FLAG_ROTATION_270 (0x00000030) +#define MVE_BUFFER_FRAME_FLAG_SCALING_MASK (0x000000C0) +#define MVE_BUFFER_FRAME_FLAG_MIRROR_HORI (0x00000100) +#define MVE_BUFFER_FRAME_FLAG_MIRROR_VERT (0x00000200) +#define MVE_BUFFER_FRAME_FLAG_FORCE_IDR (0x00000400) +#define MVE_BUFFER_FRAME_FLAG_RESET_GOP (0x00000800) +#define MVE_BUFFER_FRAME_FLAG_REJECTED (0x00001000) +#define MVE_BUFFER_FRAME_FLAG_CORRUPT (0x00002000) +#define MVE_BUFFER_FRAME_FLAG_DECODE_ONLY (0x00004000) +#define MVE_BUFFER_FRAME_FLAG_REF_FRAME (0x00008000) +#define MVE_BUFFER_FRAME_FLAG_EOS (0x00010000) +#define MVE_BUFFER_FRAME_FLAG_RESET_LTR_PEROID (0x00020000) +/*ARBITRARY_DOWNSCALE*/ +#define MVE_BUFFER_FRAME_FLAG_SCALING_MASKX (0xFF000000) //8bit +#define MVE_BUFFER_FRAME_FLAG_SCALING_MASKY (0x00FE0000) //7bit + + /* Height (in luma samples) of visible part of frame, + * may be smaller than allocated frame size. + */ + uint16_t visible_frame_height; + + /* Width (in luma samples) of visible part of frame, + * may be smaller than allocated frame size. + */ + uint16_t visible_frame_width; + + /* Color format of buffer */ + uint16_t format; +/* format bitfield: */ +#define MVE_FORMAT_BF_C (0) /* 3 bits, chroma subsampling */ +#define MVE_FORMAT_BF_B (4) /* 4 bits, max bitdepth minus 8 */ +#define MVE_FORMAT_BF_N (8) /* 2 bits, number of planes */ +#define MVE_FORMAT_BF_V (12) /* 2 bits, format variant */ +#define MVE_FORMAT_BF_A (15) /* 1 bit, AFBC bit */ +/* formats: */ +#define MVE_FORMAT_YUV420_AFBC_8 \ + ((MVE_CHROMA_FORMAT_420 << MVE_FORMAT_BF_C) | \ + ((8 - 8) << MVE_FORMAT_BF_B) | (1 << MVE_FORMAT_BF_A)) + +#define MVE_FORMAT_YUV420_AFBC_10 \ + ((MVE_CHROMA_FORMAT_420 << MVE_FORMAT_BF_C) | \ + ((10 - 8) << MVE_FORMAT_BF_B) | (1 << MVE_FORMAT_BF_A)) + +#define MVE_FORMAT_YUV422_AFBC_8 \ + ((MVE_CHROMA_FORMAT_422 << MVE_FORMAT_BF_C) | \ + ((8 - 8) << MVE_FORMAT_BF_B) | (1 << MVE_FORMAT_BF_A)) + +#define MVE_FORMAT_YUV422_AFBC_10 \ + ((MVE_CHROMA_FORMAT_422 << MVE_FORMAT_BF_C) | \ + ((10 - 8) << MVE_FORMAT_BF_B) | (1 << MVE_FORMAT_BF_A)) + +#define MVE_FORMAT_YUV420_I420 \ + ((MVE_CHROMA_FORMAT_420 << MVE_FORMAT_BF_C) | \ + ((8 - 8) << MVE_FORMAT_BF_B) | (3 << MVE_FORMAT_BF_N) | \ + (0 << MVE_FORMAT_BF_V)) + +#define MVE_FORMAT_YUV420_I420_10 \ + ((MVE_CHROMA_FORMAT_420 << MVE_FORMAT_BF_C) | \ + ((10 - 8) << MVE_FORMAT_BF_B) | (3 << MVE_FORMAT_BF_N) | \ + (0 << MVE_FORMAT_BF_V)) + +#define MVE_FORMAT_YUV420_NV12 \ + ((MVE_CHROMA_FORMAT_420 << MVE_FORMAT_BF_C) | \ + ((8 - 8) << MVE_FORMAT_BF_B) | (2 << MVE_FORMAT_BF_N) | \ + (0 << MVE_FORMAT_BF_V)) + +#define MVE_FORMAT_YUV420_NV21 \ + ((MVE_CHROMA_FORMAT_420 << MVE_FORMAT_BF_C) | \ + ((8 - 8) << MVE_FORMAT_BF_B) | (2 << MVE_FORMAT_BF_N) | \ + (1 << MVE_FORMAT_BF_V)) + +#define MVE_FORMAT_YUV420_P010 \ + ((MVE_CHROMA_FORMAT_420 << MVE_FORMAT_BF_C) | \ + ((16 - 8) << MVE_FORMAT_BF_B) | (2 << MVE_FORMAT_BF_N) | \ + (0 << MVE_FORMAT_BF_V)) + +#define MVE_FORMAT_YUV420_2P_10 \ + ((MVE_CHROMA_FORMAT_420 << MVE_FORMAT_BF_C) | \ + ((10 - 8) << MVE_FORMAT_BF_B) | (2 << MVE_FORMAT_BF_N) | \ + (0 << MVE_FORMAT_BF_V)) + +#define MVE_FORMAT_YUV420_Y0L2 \ + ((MVE_CHROMA_FORMAT_420 << MVE_FORMAT_BF_C) | \ + ((10 - 8) << MVE_FORMAT_BF_B) | (1 << MVE_FORMAT_BF_N) | \ + (0 << MVE_FORMAT_BF_V)) + +#define MVE_FORMAT_YUV420_AQB1 \ + ((MVE_CHROMA_FORMAT_420 << MVE_FORMAT_BF_C) | \ + ((10 - 8) << MVE_FORMAT_BF_B) | (1 << MVE_FORMAT_BF_N) | \ + (1 << MVE_FORMAT_BF_V)) + +#define MVE_FORMAT_YUV422_YUY2 \ + ((MVE_CHROMA_FORMAT_422 << MVE_FORMAT_BF_C) | \ + ((8 - 8) << MVE_FORMAT_BF_B) | (1 << MVE_FORMAT_BF_N) | \ + (0 << MVE_FORMAT_BF_V)) + +#define MVE_FORMAT_YUV422_UYVY \ + ((MVE_CHROMA_FORMAT_422 << MVE_FORMAT_BF_C) | \ + ((8 - 8) << MVE_FORMAT_BF_B) | (1 << MVE_FORMAT_BF_N) | \ + (1 << MVE_FORMAT_BF_V)) + +#define MVE_FORMAT_YUV422_Y210 \ + ((MVE_CHROMA_FORMAT_422 << MVE_FORMAT_BF_C) | \ + ((16 - 8) << MVE_FORMAT_BF_B) | (1 << MVE_FORMAT_BF_N) | \ + (0 << MVE_FORMAT_BF_V)) + +#define MVE_FORMAT_YUV422_1P_10 \ + ((MVE_CHROMA_FORMAT_422 << MVE_FORMAT_BF_C) | \ + ((10 - 8) << MVE_FORMAT_BF_B) | (1 << MVE_FORMAT_BF_N) | \ + (0 << MVE_FORMAT_BF_V)) + +#define MVE_FORMAT_RGBA_8888 \ + ((MVE_CHROMA_FORMAT_ARGB << MVE_FORMAT_BF_C) | \ + ((8 - 8) << MVE_FORMAT_BF_B) | (1 << MVE_FORMAT_BF_N) | \ + (0 << MVE_FORMAT_BF_V)) + +#define MVE_FORMAT_BGRA_8888 \ + ((MVE_CHROMA_FORMAT_ARGB << MVE_FORMAT_BF_C) | \ + ((8 - 8) << MVE_FORMAT_BF_B) | (1 << MVE_FORMAT_BF_N) | \ + (1 << MVE_FORMAT_BF_V)) + +#define MVE_FORMAT_ARGB_8888 \ + ((MVE_CHROMA_FORMAT_ARGB << MVE_FORMAT_BF_C) | \ + ((8 - 8) << MVE_FORMAT_BF_B) | (1 << MVE_FORMAT_BF_N) | \ + (2 << MVE_FORMAT_BF_V)) + +#define MVE_FORMAT_ABGR_8888 \ + ((MVE_CHROMA_FORMAT_ARGB << MVE_FORMAT_BF_C) | \ + ((8 - 8) << MVE_FORMAT_BF_B) | (1 << MVE_FORMAT_BF_N) | \ + (3 << MVE_FORMAT_BF_V)) +#define MVE_FORMAT_Y \ + ((MVE_CHROMA_FORMAT_MONO << MVE_FORMAT_BF_C) | \ + ((8 - 8) << MVE_FORMAT_BF_B) | (1 << MVE_FORMAT_BF_N) | \ + (0 << MVE_FORMAT_BF_V)) +#define MVE_FORMAT_Y_10 \ + ((MVE_CHROMA_FORMAT_MONO << MVE_FORMAT_BF_C) | \ + ((10 - 8) << MVE_FORMAT_BF_B) | (1 << MVE_FORMAT_BF_N) | \ + (0 << MVE_FORMAT_BF_V)) + +#define MVE_FORMAT_RGB_888 \ + ((MVE_CHROMA_FORMAT_RGB << MVE_FORMAT_BF_C) | \ + ((8 - 8) << MVE_FORMAT_BF_B) | (1 << MVE_FORMAT_BF_N) | \ + (0 << MVE_FORMAT_BF_V)) + +#define MVE_FORMAT_BGR_888 \ + ((MVE_CHROMA_FORMAT_RGB << MVE_FORMAT_BF_C) | \ + ((8 - 8) << MVE_FORMAT_BF_B) | (1 << MVE_FORMAT_BF_N) | \ + (1 << MVE_FORMAT_BF_V)) + +#define MVE_FORMAT_RGB_3P \ + ((MVE_CHROMA_FORMAT_RGB << MVE_FORMAT_BF_C) | \ + ((8 - 8) << MVE_FORMAT_BF_B) | (3 << MVE_FORMAT_BF_N) | \ + (0 << MVE_FORMAT_BF_V)) +#define MVE_FORMAT_YUV444 \ + ((MVE_CHROMA_FORMAT_444 << MVE_FORMAT_BF_C) | \ + ((8 - 8) << MVE_FORMAT_BF_B) | (3 << MVE_FORMAT_BF_N) | \ + (0 << MVE_FORMAT_BF_V)) +#define MVE_FORMAT_YUV444_10 \ + ((MVE_CHROMA_FORMAT_444 << MVE_FORMAT_BF_C) | \ + ((10 - 8) << MVE_FORMAT_BF_B) | (3 << MVE_FORMAT_BF_N) | \ + (0 << MVE_FORMAT_BF_V)) +#define MVE_FORMAT_ARGB_1555 \ + ((MVE_CHROMA_FORMAT_OSD_ARGB << MVE_FORMAT_BF_C) | \ + ((8 - 8) << MVE_FORMAT_BF_B) | (1 << MVE_FORMAT_BF_N) | \ + (0 << MVE_FORMAT_BF_V)) +#define MVE_FORMAT_ARGB_4444 \ + ((MVE_CHROMA_FORMAT_OSD_ARGB << MVE_FORMAT_BF_C) | \ + ((8 - 8) << MVE_FORMAT_BF_B) | (1 << MVE_FORMAT_BF_N) | \ + (1 << MVE_FORMAT_BF_V)) +#define MVE_FORMAT_RGB_565 \ + ((MVE_CHROMA_FORMAT_OSD_ARGB << MVE_FORMAT_BF_C) | \ + ((8 - 8) << MVE_FORMAT_BF_B) | (1 << MVE_FORMAT_BF_N) | \ + (2 << MVE_FORMAT_BF_V)) + +#define MVE_FORMAT_MBINFO (0x0001) /* only used for debugging */ + +#define MVE_FORMAT_UNUSED (0x0000) + + //uint16_t reserved0; /* force 'data' to be 4-byte aligned */ + uint8_t frame_type; /* ADD_FRAME_TYPE_TO_PIC_JOB */ + uint8_t frame_flags_ext; /* add osd buffer tag to separate osd & source */ +#define OSD1_TAG 0x80 /* use bit7 stand for osd_1 */ +#define OSD0_TAG 0x40 /* use bit6 stand for osd_1 */ + + union { + struct mve_buffer_frame_planar planar; + struct mve_buffer_frame_afbc afbc; + } data; + + //uint32_t reserved1; /* force size to be multiple of 8 bytes */ + uint16_t mini_frame_y_start; + uint16_t mini_frame_y_end; +}; + +/* The bitstream buffer stores a number of bitstream bytes */ +struct mve_buffer_bitstream { + /* For identification of the buffer, this is not changed by + * the firmware. + */ + uint64_t host_handle; + + /* For matching input buffer with output buffers, the firmware + * copies these values between frame buffers and bitstream buffers. + */ + uint64_t user_data_tag; + + /* BufferFlags */ + uint32_t bitstream_flags; +#define MVE_BUFFER_BITSTREAM_FLAG_EOS (0x00000001) +#define MVE_BUFFER_BITSTREAM_FLAG_ENDOFFRAME (0x00000010) +#define MVE_BUFFER_BITSTREAM_FLAG_SYNCFRAME (0x00000020) +#define MVE_BUFFER_BITSTREAM_FLAG_CODECCONFIG (0x00000080) +#define MVE_BUFFER_BITSTREAM_FLAG_ENDOFSUBFRAME (0x00000400) +#define MVE_BUFFER_BITSTREAM_FLAG_ENC_STATS (0x00010000) +#define MVE_BUFFER_BITSTREAM_FLAG_BSEOF (0x00100000) + + /* Length of allocated buffer */ + uint32_t bitstream_alloc_bytes; + + /* Byte offset from start to first byte */ + uint32_t bitstream_offset; + + /* Number of bytes in the buffer */ + uint32_t bitstream_filled_len; + + /* Pointer to buffer start */ + uint32_t bitstream_buf_addr; + + /* frame_type. 0:I, 1:P, 2:B, 3:b */ + uint8_t frame_type; +#define MVE_FRAME_TYPE_I 0 +#define MVE_FRAME_TYPE_P 1 +#define MVE_FRAME_TYPE_B 2 // B frame +#define MVE_FRAME_TYPE_LOWER_B 3 // b frame +#define MVE_FRAME_TYPE_P_KEY 4 +#define MVE_FRAME_TYPE_NO_REF_P 5 // only svct3 +#define MVE_FRAME_TYPE_GDR 6 // GDR + + uint8_t src_transform; +#define MVE_SRC_TRANSFORM_NONE (0) // none src transform +#define MVE_SRC_TRANSFORM_R90 (1) // rotate 90 degrees +#define MVE_SRC_TRANSFORM_R180 (2) // rotate 180 degrees +#define MVE_SRC_TRANSFORM_R270 (3) // rotate 270 degrees +#define MVE_SRC_TRANSFORM_VFLIP (4) // vertical flip (no rotation) +#define MVE_SRC_TRANSFORM_R90_VFLIP (5) // rotate 90 degrees and vertical flip +#define MVE_SRC_TRANSFORM_R180_VFLIP (6) // rotate 180 degrees and vertical flip +#define MVE_SRC_TRANSFORM_R270_VFLIP (7) // rotate 270 degrees and vertical flip + + /* Pad to force 8-byte alignment */ + //uint32_t reserved; + uint16_t bitstream_remaining_kb; // remaining kbytes of bitstream not returned to host. +}; + +/* + * Define a region in 16x16 units + * + * The region is macroblock positions (x,y) in the range + * mbx_left <= x < mbx_right + * mby_top <= y < mby_bottom + */ +struct mve_buffer_param_region { + uint16_t mbx_left; /* macroblock x left edge (inclusive) */ + uint16_t mbx_right; /* macroblock x right edge (exclusive) */ + uint16_t mby_top; /* macroblock y top edge (inclusive) */ + uint16_t mby_bottom; /* macroblock y bottom edge (exclusive) */ + int16_t qp_delta; + /* QP delta value for this region, this + * delta applies to QP values in the ranges: + * H264: 0-51 + * HEVC: 0-51 + * VP9: 0-255 + */ + uint8_t prio; /* the priority of this region */ + uint8_t force_intra; + /* force intra to this ROI region, refer to macro: FEATURE_SUPPORT_ROI_MISC */ +}; + +/* input for encoder, + * the mve_buffer_param_regions buffer stores the information for FRAME buffers, + * and the information for regions of interest. + */ +struct mve_buffer_param_regions { + uint8_t n_regions; /* Number of regions */ + uint8_t reserved[3]; +#define MVE_MAX_FRAME_REGIONS 16 + struct mve_buffer_param_region region[MVE_MAX_FRAME_REGIONS]; +}; + +/* the block parameter record specifies the various properties of a quad */ +struct mve_block_param_record { + uint32_t qp_delta; +/* Bitset of four 4-bit QP delta values for a quad. + * For H.264 and HEVC these are qp delta values in the range -8 to +7. + * For Vp9 these are segment map values in the range 0 to 7. + */ +#define MVE_BLOCK_PARAM_RECORD_QP_DELTA_TOP_LEFT_16X16 (0) +#define MVE_BLOCK_PARAM_RECORD_QP_DELTA_TOP_LEFT_16X16_SZ (6) +#define MVE_BLOCK_PARAM_RECORD_QP_DELTA_TOP_RIGHT_16X16 (6) +#define MVE_BLOCK_PARAM_RECORD_QP_DELTA_TOP_RIGHT_16X16_SZ (6) +#define MVE_BLOCK_PARAM_RECORD_QP_DELTA_BOT_LEFT_16X16 (12) +#define MVE_BLOCK_PARAM_RECORD_QP_DELTA_BOT_LEFT_16X16_SZ (6) +#define MVE_BLOCK_PARAM_RECORD_QP_DELTA_BOT_RIGHT_16X16 (18) +#define MVE_BLOCK_PARAM_RECORD_QP_DELTA_BOT_RIGHT_16X16_SZ (6) +#define MVE_BLOCK_PARAM_RECORD_QP_FORCE_FIELD (24) +#define MVE_BLOCK_PARAM_RECORD_QP_FORCE_FIELD_SZ (5) +#define MVE_BLOCK_PARAM_RECORD_QUAD_FORCE_INTRA (29) +#define MVE_BLOCK_PARAM_RECORD_QUAD_FORCE_INTRA_SZ (1) +#define MVE_BLOCK_PARAM_RECORD_QP_ABSOLUTE (30) +#define MVE_BLOCK_PARAM_RECORD_QP_ABSOLUTE_SZ (1) +#define MVE_BLOCK_PARAM_RECORD_QP_QUAD_SKIP (31) +#define MVE_BLOCK_PARAM_RECORD_QP_QUAD_SKIP_SZ (1) + +#define MVE_BLOCK_PARAM_RECORD_FORCE_NONE (0x00) +#define MVE_BLOCK_PARAM_RECORD_FORCE_QP (0x01) + uint32_t min_qp; +#define MVE_BLOCK_PARAM_RECORD_MIN_QP_TOP_LEFT_16X16 (0) +#define MVE_BLOCK_PARAM_RECORD_MIN_QP_TOP_LEFT_16X16_SZ (6) +#define MVE_BLOCK_PARAM_RECORD_MIN_QP_TOP_RIGHT_16X16 (6) +#define MVE_BLOCK_PARAM_RECORD_MIN_QP_TOP_RIGHT_16X16_SZ (6) +#define MVE_BLOCK_PARAM_RECORD_MIN_QP_BOT_LEFT_16X16 (12) +#define MVE_BLOCK_PARAM_RECORD_MIN_QP_BOT_LEFT_16X16_SZ (6) +#define MVE_BLOCK_PARAM_RECORD_MIN_QP_BOT_RIGHT_16X16 (18) +#define MVE_BLOCK_PARAM_RECORD_MIN_QP_BOT_RIGHT_16X16_SZ (6) +#define MVE_BLOCK_PARAM_RECORD_QUAD_SELECT_QP_DELTA (24) +#define MVE_BLOCK_PARAM_RECORD_QUAD_SELECT_QP_DELTA_SZ (1) +}; + +/* block configuration uncompressed rows header. this configures the size of the + * uncompressed body. + */ +struct mve_buffer_general_rows_uncomp_hdr { + uint8_t n_cols_minus1; /* number of quad cols in picture minus 1 */ + uint8_t n_rows_minus1; /* number of quad rows in picture minus 1 */ + uint8_t reserved[2]; +}; + +/* block configuration uncompressed rows body. this structure contains an array + * of block parameter records whose length is (n_cols_minus1 + 1) * (n_rows_minus1 + 1) + * elements. therefore the allocation of this structure needs to be dynamic and + * a pointer to the allocated memory should then be assigned to the general + * purpose buffer data pointer + */ +struct mve_buffer_general_rows_uncomp_body { + /* the size of this array is variable and not necessarily equal to 1. + * therefore the sizeof operator should not be used + */ + struct mve_block_param_record bpr[2]; +}; + +/* input for encoder, block level configurations. + * the row based block configurations can be defined in different formats. they + * are stored in the blk_cfgs union and identified by the blk_cfg_type member. + * these definitions consist of a header and body pair. the header part contains + * configuration information for the body. the body part describes the actual + * layout of the data buffer pointed to by the mve_buffer_general_hdr buffer_ptr. + */ +struct mve_buffer_general_block_configs { + uint8_t blk_cfg_type; +#define MVE_BLOCK_CONFIGS_TYPE_NONE (0x00) +#define MVE_BLOCK_CONFIGS_TYPE_ROW_UNCOMP (0xff) + uint8_t reserved[3]; + union { + struct mve_buffer_general_rows_uncomp_hdr rows_uncomp; + } blk_cfgs; +}; + +/* for the mve_buffer_general_encoder_stats buffer type the body data + * is an array of records of the following format, one record for each + * 32x32 pixel block of the picture. Values that are marked "per CTU" + * are only valid in the first 32x32 block of the 64x64 CTU for HEVC or VP9. + * For H.264 the "per CTU" values are the sum of four 16x16 macroblocks. + * Each record is 12 bytes and must be 32-bit aligned. + */ +struct mve_block_stats_record_full { + uint8_t intra_count; // number of 8x8 blocks in the CTU that are intra + uint8_t reserved0; // not used + uint16_t bit_estimate; // bit estimate for the CTU + uint16_t luma_mean; // luminance mean + uint16_t luma_cplx; // luma complexity measure (0=flat) + int16_t rmv_x; // rough x motion vector in pixels + int16_t rmv_y; // rough y motion vector in pixels +}; + +/* input for encoder, block level statistics + * this buffer is added to the encoder input frame queue, before the + * input frame for which statistics are to be gathered. The buffer is + * filled duing frame analysis and returned in the input buffer return + * queue before the input buffer is returned. + */ +struct mve_buffer_general_encoder_stats { + uint8_t encoder_stats_type; +#define MVE_ENCODER_STATS_TYPE_FULL (0x01) + uint8_t frame_type; // See MVE_FRAME_TYPE_* +#define MVE_FRAME_TYPE_I 0 +#define MVE_FRAME_TYPE_P 1 +#define MVE_FRAME_TYPE_B 2 + uint8_t used_as_reference; // 0=No, 1=Yes + uint8_t qp; // base quantizer used for the frame + // HEVC, H.264: 0-51. VP9: 0-63 + uint32_t picture_count; // display order picture count + uint16_t num_cols; // number of columns (each 32 pixels wide) + uint16_t num_rows; // number of rows (each 32 pixels high) + uint32_t ref_pic_count[2]; // display order picture count of references + // unused values are set to zero +}; + +/* input for encoder */ +struct mve_buffer_param_qp { + /* QP (quantization parameter) for encode. + * + * When used to set fixed QP for encode, with rate control + * disabled, then the valid ranges are: + * H264: 0-51 + * HEVC: 0-51 + * VP8: 0-63 + * VP9: 0-63 + * Note: The QP must be set separately for I, P and B frames. + * + * But when this message is used with the regions-feature, + * then the valid ranges are the internal bitstream ranges: + * H264: 0-51 + * HEVC: 0-51 + * VP8: 0-127 + * VP9: 0-255 + */ + int32_t qp; + int32_t epr_iframe_enable; +}; + +struct mve_reset_gop_dynamic { + uint32_t reset_gop_pframes; +}; + +struct mve_reset_ltr_peroid_dynamic { + uint32_t reset_ltr_peroid_pframes; +}; + +/* output from decoder */ +struct mve_buffer_param_display_size { + uint16_t display_width; + uint16_t display_height; +}; + +/* output from decoder, colour information needed for hdr */ +struct mve_buffer_param_colour_description { + uint32_t flags; +#define MVE_BUFFER_PARAM_COLOUR_FLAG_MASTERING_DISPLAY_DATA_VALID (1) +#define MVE_BUFFER_PARAM_COLOUR_FLAG_CONTENT_LIGHT_DATA_VALID (2) + + uint8_t range; /* Unspecified=0, Limited=1, Full=2 */ +#define MVE_BUFFER_PARAM_COLOUR_RANGE_UNSPECIFIED (0) +#define MVE_BUFFER_PARAM_COLOUR_RANGE_LIMITED (1) +#define MVE_BUFFER_PARAM_COLOUR_RANGE_FULL (2) + + uint8_t colour_primaries; /* see hevc spec. E.3.1 */ + uint8_t transfer_characteristics; /* see hevc spec. E.3.1 */ + uint8_t matrix_coeff; /* see hevc spec. E.3.1 */ + + uint16_t mastering_display_primaries_x[3]; /* see hevc spec. D.3.27 */ + uint16_t mastering_display_primaries_y[3]; /* see hevc spec. D.3.27 */ + uint16_t mastering_white_point_x; /* see hevc spec. D.3.27 */ + uint16_t mastering_white_point_y; /* see hevc spec. D.3.27 */ + uint32_t max_display_mastering_luminance; /* see hevc spec. D.3.27 */ + uint32_t min_display_mastering_luminance; /* see hevc spec. D.3.27 */ + + uint32_t max_content_light_level; /* see hevc spec. D.3.35 */ + uint32_t avg_content_light_level; /* see hevc spec. D.3.35 */ + + uint8_t video_format_present_flag; + uint8_t video_format; + uint8_t aspect_ratio_info_present_flag; + uint8_t aspect_ratio_idc; + uint8_t timing_flag_info_present_flag; + uint16_t sar_width; + uint16_t sar_height; + uint32_t num_units_in_tick; + uint32_t time_scale; + + uint8_t pad[7]; // pad for 8-byte alignment +}; + +struct mve_buffer_param_sei_user_data_unregistered { + uint8_t flags; +#define MVE_BUFFER_PARAM_USER_DATA_UNREGISTERED_VALID (1) + uint8_t uuid[16]; + char user_data[256 - 35]; + uint8_t user_data_len; + + uint8_t reserved[5]; +}; + +/* output from decoder see hevc spec. D.3.3 */ +struct mve_buffer_param_frame_field_info { + uint8_t pic_struct; + uint8_t source_scan_type; + uint8_t duplicate_flag; + uint8_t reserved; +}; + +/* output from decoder, VC-1 specific feature only relevant + * if using AFBC output + */ +struct mve_buffer_param_range_map { + uint8_t luma_map_enabled; + uint8_t luma_map_value; + uint8_t chroma_map_enabled; + uint8_t chroma_map_value; +}; + +/* input for encoder */ +struct mve_buffer_param_rate_control { + uint32_t rate_control_mode; +#define MVE_OPT_RATE_CONTROL_MODE_OFF (0) +#define MVE_OPT_RATE_CONTROL_MODE_STANDARD (1) +#define MVE_OPT_RATE_CONTROL_MODE_VARIABLE (2) +#define MVE_OPT_RATE_CONTROL_MODE_CONSTANT (3) +#define MVE_OPT_RATE_CONTROL_MODE_C_VARIABLE (4) + uint32_t target_bitrate; /* in bits per second */ + uint32_t maximum_bitrate; /* in bits per second */ +}; + +/* input for encoder */ +struct mve_buffer_param_rate_control_qp_range { + int32_t qp_min; + int32_t qp_max; +}; + +/* input for encoder, see hevc spec. D.3.16 */ +struct mve_buffer_param_frame_packing { + uint32_t flags; +#define MVE_BUFFER_PARAM_FRAME_PACKING_FLAG_QUINCUNX_SAMPLING (1) +#define MVE_BUFFER_PARAM_FRAME_PACKING_FLAG_SPATIAL_FLIPPING (2) +#define MVE_BUFFER_PARAM_FRAME_PACKING_FLAG_FRAME0_FLIPPED (4) +#define MVE_BUFFER_PARAM_FRAME_PACKING_FLAG_FIELD_VIEWS (8) +#define MVE_BUFFER_PARAM_FRAME_PACKING_FLAG_CURRENT_FRAME_IS_FRAME0 (16) + + uint8_t frame_packing_arrangement_type; + uint8_t content_interpretation_type; + + uint8_t frame0_grid_position_x; + uint8_t frame0_grid_position_y; + uint8_t frame1_grid_position_x; + uint8_t frame1_grid_position_y; + + uint8_t reserved[2]; +}; + +struct mve_buffer_param_rectangle { + uint16_t x_left; /* pixel x left edge (inclusive) */ + uint16_t x_right; /* pixel x right edge (exclusive) */ + uint16_t y_top; /* pixel y top edge (inclusive) */ + uint16_t y_bottom; /* pixel y bottom edge (exclusive) */ +}; + +/* input for encoder, + * indicate which parts of the source picture has changed. + * The encoder can (optionally) use this information to + * reduce memory bandwidth. + * + * n_rectangles=0 indicates the source picture is unchanged. + * + * This parameter only applies to the picture that immediately + * follows (and not to subsequent ones). + */ +struct mve_buffer_param_change_rectangles { + uint8_t n_rectangles; /* Number of rectangles */ + uint8_t reserved[3]; +#define MVE_MAX_FRAME_CHANGE_RECTANGLES 2 + struct mve_buffer_param_rectangle + rectangles[MVE_MAX_FRAME_CHANGE_RECTANGLES]; +}; + +/* input for VP9 encoder, + * specify the qp deltas for each segment map index. + * These are intended to be used with block configs only. + */ +struct mve_buffer_param_vp9_segmap { +#define VP9SPEC_MAX_SEGMENTS 8 + int8_t qp_delta + [VP9SPEC_MAX_SEGMENTS]; /* Qp delta to use for each segment map region */ + int8_t num_segments; /* Number of active segments (to set coding probability) */ +}; + +struct t_mve_buffer_param_osd_cfg { + uint8_t osd_inside_enable; + uint8_t osd_inside_alpha_enable; + uint8_t osd_inside_convert_color_enable; + uint8_t osd_inside_alpha_value; /* as alpha range [0~16], use u8 */ + uint8_t osd_inside_convert_color_threshold; + /* threshold range [0~255], if input is 10bit, th * 4 */ + uint8_t osd_inside_rgb2yuv_mode; /* 0-601L, 1-601F, 2-709_L, 3-709_F */ + uint16_t osd_inside_start_x; /* pixel x left edge (inclusive) */ + uint16_t osd_inside_start_y; /* pixel y top edge (inclusive) */ + uint16_t reserved[3]; +}; + +struct mve_buffer_param_osd_rectangles { + #define MVE_MAX_FRAME_OSD_REGION 2 + struct t_mve_buffer_param_osd_cfg osd_single_cfg[MVE_MAX_FRAME_OSD_REGION]; +}; + +/* Parameters that are sent in the same communication channels + * as the buffers. A parameter applies to all subsequent buffers. + * Some types are only valid for decode, and some only for encode. + */ +struct mve_buffer_param { + uint32_t type; /* Extra data: */ +#define MVE_BUFFER_PARAM_TYPE_QP (2) /* qp */ +#define MVE_BUFFER_PARAM_TYPE_REGIONS (3) /* regions */ +#define MVE_BUFFER_PARAM_TYPE_DISPLAY_SIZE (5) /* display_size */ +#define MVE_BUFFER_PARAM_TYPE_RANGE_MAP (6) /* range_map */ +#define MVE_BUFFER_PARAM_TYPE_FRAME_RATE \ + (9) + /* arg, in frames per second, as a fixed point Q16 value, + * for example 0x001e0000 == 30.0 fps + */ +#define MVE_BUFFER_PARAM_TYPE_RATE_CONTROL (10) /* rate_control */ +#define MVE_BUFFER_PARAM_TYPE_QP_I \ + (12) /* qp for I frames, when no rate control */ +#define MVE_BUFFER_PARAM_TYPE_QP_P \ + (13) /* qp for P frames, when no rate control */ +#define MVE_BUFFER_PARAM_TYPE_QP_B \ + (14) /* qp for B frames, when no rate control */ +#define MVE_BUFFER_PARAM_TYPE_COLOUR_DESCRIPTION (15) /* colour_description */ +#define MVE_BUFFER_PARAM_TYPE_FRAME_PACKING (16) /* frame_packing */ +#define MVE_BUFFER_PARAM_TYPE_FRAME_FIELD_INFO (17) /* frame_field_info */ +#define MVE_BUFFER_PARAM_TYPE_GOP_RESET (18) /* no extra data */ +#define MVE_BUFFER_PARAM_TYPE_DPB_HELD_FRAMES \ + (19) + /* arg, number of output buffers that are complete and held by firmware + * in the DPB for reordering purposes. Valid after the next frame is output + */ +#define MVE_BUFFER_PARAM_TYPE_CHANGE_RECTANGLES (20) /* change rectangles */ +#define MVE_BUFFER_PARAM_TYPE_RATE_CONTROL_QP_RANGE \ + (21) /* rate_control_qp_range */ +#define MVE_BUFFER_PARAM_TYPE_RATE_CONTROL_HRD_BUF_SIZE (23) /* arg */ +#define MVE_BUFFER_PARAM_TYPE_VP9_SEGMAP (24) /* VP9 segment map settings */ +#define MVE_BUFFER_PARAM_TYPE_RATE_CONTROL_QP_RANGE_I \ + (25) /* special range for I frames, rate_control_qp_range */ +#define MVE_BUFFER_PARAM_TYPE_SEI_USER_DATA_UNREGISTERED \ + (26) /* sei user_data_unregistered */ +#define MVE_BUFFER_PARAM_TYPE_GOP_RESET_DYNAMIC (27) +#define MVE_BUFFER_PARAM_TYPE_GOP_RESET_LTR_PEROID_DYNAMIC \ + (28) /* reset ltr period dynamiclly */ +#define MVE_BUFFER_PARAM_TYPE_ENC_STATS (29) /* encode stats */ +#define MVE_BUFFER_PARAM_TYPE_OSD_RECTANGLES (30) /* osd rectangles */ +#define MVE_BUFFER_PARAM_TYPE_RATE_CONTROL_CHANGE_POS (31) + + union { + uint32_t arg; /* some parameters only need a uint32_t as argument */ + struct mve_buffer_param_qp qp; + struct mve_reset_gop_dynamic reset_gop_dynamic; + struct mve_reset_ltr_peroid_dynamic reset_ltr_peroid_dynamic; + struct mve_buffer_param_regions regions; + struct mve_buffer_param_display_size display_size; + struct mve_buffer_param_range_map range_map; + struct mve_buffer_param_rate_control rate_control; + struct mve_buffer_param_rate_control_qp_range rate_control_qp_range; + struct mve_buffer_param_colour_description colour_description; + struct mve_buffer_param_frame_packing frame_packing; + struct mve_buffer_param_frame_field_info frame_field_info; + struct mve_buffer_param_change_rectangles change_rectangles; + struct mve_buffer_param_vp9_segmap vp9_segmap; + struct mve_buffer_param_sei_user_data_unregistered user_data_unregistered; + struct mve_buffer_param_enc_stats enc_stats; + struct mve_buffer_param_osd_rectangles osd_rectangles_buff; + } data; +}; + +/* output from decoder, assertive display statistics. + * buffer_ptr points to a buffer of luma quad average values for the picture + * that can be used as a thumbnail. the type of content used to generate the + * assertive display statistics is indicated by MVE_AD_STATS_PIC_FMT_INTERLACED. + * for progressive content; the arrangement is in raster format with dimensions + * thumbnail_width by thumbnail_height. the overall frame average luma and + * chroma values are returned in frame_average. + * for interlaced content; the arrangement is in raster format, top field + * followed by bottom field with each field having dimensions thumbnail_width by + * thumbnail_height. the field averages for luma and chroma values are combined + * and returned in an overall value for the frame (frame_average). + */ +struct mve_buffer_general_ad_stats { + uint32_t frame_averages; +// bitfields +#define MVE_AD_STATS_PIC_AVGS_Y (0) +#define MVE_AD_STATS_PIC_AVGS_Y_SZ (12) +#define MVE_AD_STATS_PIC_AVGS_CB (12) +#define MVE_AD_STATS_PIC_AVGS_CB_SZ (10) +#define MVE_AD_STATS_PIC_AVGS_CR (22) +#define MVE_AD_STATS_PIC_AVGS_CR_SZ (10) + uint16_t thumbnail_width; + uint16_t thumbnail_height; + uint8_t ad_stats_flags; +#define MVE_AD_STATS_PIC_FMT_PROGRESSIVE (0) +#define MVE_AD_STATS_PIC_FMT_INTERLACED (1) + uint8_t reserved[3]; +}; + +/* The general purpose buffer header stores the common fields of an + * mve_buffer_general. it contains the pointer to the data buffer that contains + * the general purpose data + */ +struct mve_buffer_general_hdr { + /* For identification of the buffer, this is not changed by the firmware. */ + uint64_t host_handle; + + /* this depends upon the type of the general purpose buffer */ + uint64_t user_data_tag; + + /* pointer to the buffer containing the general purpose data. the format + * of this data is defined by the configuration in the mve_buffer_general + */ + uint32_t buffer_ptr; + + /* size of the buffer pointed to by buffer_ptr */ + uint32_t buffer_size; + + /* selects the type of semantics to use for the general purpose buffer. it + * tags (or discriminates) the union config member in mve_buffer_general + */ + uint16_t type; /* Extra data: */ +#define MVE_BUFFER_GENERAL_TYPE_INVALID (0) /* invalid */ +#define MVE_BUFFER_GENERAL_TYPE_BLOCK_CONFIGS (1) /* block_configs */ +#define MVE_BUFFER_GENERAL_TYPE_AD_STATS (2) /* assertive display statistics */ + /* size of the mve_buffer_general config member */ + uint16_t config_size; + + /* pad to force 8-byte alignment */ + uint32_t reserved; +}; + +/* The general purpose buffer consists of a header and a configuration. The + * header contains a pointer to a buffer whose format is described by the + * configuration. The type of configuration is indicated by the type value in + * the header. N.B. In use, the size of the config part of this structure is + * defined in the header and is not necessarily equal to that returned by the + * sizeof() operator. This allows a more size efficient communication between + * the host and firmware. + */ +struct mve_buffer_general { + struct mve_buffer_general_hdr header; + + /* used to describe the configuration of the general purpose buffer data + * pointed to be buffer_ptr + */ + union { + struct mve_buffer_general_block_configs block_configs; + struct mve_buffer_general_ad_stats ad_stats; + } config; +}; + +#ifdef __cplusplus +} +#endif + +#endif /* __FW_INCLUDE__MVE_PROTOCOL_DEF_H__ */ diff --git a/drivers/media/platform/canaan/vpu/mve_protocol_def_v3.h b/drivers/media/platform/canaan/vpu/mve_protocol_def_v3.h new file mode 100644 index 0000000000000..b376fadaf5a83 --- /dev/null +++ b/drivers/media/platform/canaan/vpu/mve_protocol_def_v3.h @@ -0,0 +1,1896 @@ +/* SPDX-License-Identifier: GPL-2.0-only + * The confidential and proprietary information contained in this file may + * only be used by a person authorised under and to the extent permitted + * by a subsisting licensing agreement from Arm Technology (China) Co., Ltd. + * + * (C) COPYRIGHT 2021-2021 Arm Technology (China) Co., Ltd. + * ALL RIGHTS RESERVED + * + * This entire notice must be reproduced on all copies of this file + * and copies of this file may only be made by a person if such person is + * permitted to do so under the terms of a subsisting license agreement + * from Arm Technology (China) Co., Ltd. + * + * 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. + * + */ + +#ifndef __FW_INCLUDE__MVE_PROTOCOL_DEF_H__ +#define __FW_INCLUDE__MVE_PROTOCOL_DEF_H__ + +#ifdef __cplusplus +extern "C" { +#endif + +#ifdef __KERNEL__ +#include +#else +#include +#endif + +/***************************************************************************** + * + * Communication protocol between the host/driver and the MVE firmware, + * the 'host interface'. + * + * MVE == LINLON Video Engine + * + * Protocol version 3.3 + * + * Note: Message structs may be expanded in the future; the host should + * use the 'size' of the message to determine how many bytes to + * read from the message queue, rather than a sizeof(struct). + * + ****************************************************************************/ + +/***************************************************************************** + * + * Virtual memory regions + * + * ..._ADDR_BEGIN gives the starting virtual address of the region, + * and ..._ADDR_END the (non-inclusive) ending address, such that + * the size of the region is obtained with the subtraction + * (..._ADDR_END - ..._ADDR_BEGIN). + * + ****************************************************************************/ + +/* Memory region for first firmware instance */ +#define MVE_MEM_REGION_FW_INSTANCE0_ADDR_BEGIN (0x00000000u) +#define MVE_MEM_REGION_FW_INSTANCE0_ADDR_END (0x000FFFFFu + 1) + +/* Memory regions for other firmware instances */ +#define MVE_MEM_REGION_FW_INSTANCE1_ADDR_BEGIN (0x01000000u) +#define MVE_MEM_REGION_FW_INSTANCE1_ADDR_END \ + (MVE_MEM_REGION_FW_INSTANCE1_ADDR_BEGIN + \ + MVE_MEM_REGION_FW_INSTANCE0_ADDR_END) + +#define MVE_MEM_REGION_FW_INSTANCE2_ADDR_BEGIN (0x02000000u) +#define MVE_MEM_REGION_FW_INSTANCE2_ADDR_END \ + (MVE_MEM_REGION_FW_INSTANCE2_ADDR_BEGIN + \ + MVE_MEM_REGION_FW_INSTANCE0_ADDR_END) + +#define MVE_MEM_REGION_FW_INSTANCE3_ADDR_BEGIN (0x03000000u) +#define MVE_MEM_REGION_FW_INSTANCE3_ADDR_END \ + (MVE_MEM_REGION_FW_INSTANCE3_ADDR_BEGIN + \ + MVE_MEM_REGION_FW_INSTANCE0_ADDR_END) + +#define MVE_MEM_REGION_FW_INSTANCE4_ADDR_BEGIN (0x04000000u) +#define MVE_MEM_REGION_FW_INSTANCE4_ADDR_END \ + (MVE_MEM_REGION_FW_INSTANCE4_ADDR_BEGIN + \ + MVE_MEM_REGION_FW_INSTANCE0_ADDR_END) + +#define MVE_MEM_REGION_FW_INSTANCE5_ADDR_BEGIN (0x05000000u) +#define MVE_MEM_REGION_FW_INSTANCE5_ADDR_END \ + (MVE_MEM_REGION_FW_INSTANCE5_ADDR_BEGIN + \ + MVE_MEM_REGION_FW_INSTANCE0_ADDR_END) + +#define MVE_MEM_REGION_FW_INSTANCE6_ADDR_BEGIN (0x06000000u) +#define MVE_MEM_REGION_FW_INSTANCE6_ADDR_END \ + (MVE_MEM_REGION_FW_INSTANCE6_ADDR_BEGIN + \ + MVE_MEM_REGION_FW_INSTANCE0_ADDR_END) + +#define MVE_MEM_REGION_FW_INSTANCE7_ADDR_BEGIN (0x07000000u) +#define MVE_MEM_REGION_FW_INSTANCE7_ADDR_END \ + (MVE_MEM_REGION_FW_INSTANCE7_ADDR_BEGIN + \ + MVE_MEM_REGION_FW_INSTANCE0_ADDR_END) + +/* + * Areas for communication between host and MVE are placed in the interval + * 0x10079000 - 0x1007FFFF, see special defines further down. + */ + +/* PROTECTED virtual memory region */ +#define MVE_MEM_REGION_PROTECTED_ADDR_BEGIN (0x20000000u) +#define MVE_MEM_REGION_PROTECTED_ADDR_END (0x6FFFFFFFu + 1) + +/* FRAMEBUF virtual memory region */ +#define MVE_MEM_REGION_FRAMEBUF_ADDR_BEGIN (0x70000000u) +#define MVE_MEM_REGION_FRAMEBUF_ADDR_END (0xEFFFFFFFu + 1) + +/* 0xF0000000 - 0xFFFFFFFF is used internally in MVE */ + +/***************************************************************************** + * + * Communication queues between HOST/DRIVER and MVE + * + * Address for queue for messages in to MVE, + * one struct mve_comm_area_host located here + * + ****************************************************************************/ + +#define MVE_COMM_MSG_INQ_ADDR (0x10079000u) + +/* Address for queue for messages out from MVE, + * one struct mve_comm_area_mve located here + */ +#define MVE_COMM_MSG_OUTQ_ADDR (0x1007A000u) + +/* Address for queue for input buffers in to MVE, + * one struct mve_comm_area_host located here + */ +#define MVE_COMM_BUF_INQ_ADDR (0x1007B000u) + +/* Address for queue for input buffers returned from MVE, + * one struct mve_comm_area_mve located here + */ +#define MVE_COMM_BUF_INRQ_ADDR (0x1007C000u) + +/* Address for queue for output buffers in to MVE, + * one struct mve_comm_area_host located here + */ +#define MVE_COMM_BUF_OUTQ_ADDR (0x1007D000u) + +/* Address for queue for output buffers returned from MVE, + * one struct mve_comm_area_mve located here + */ +#define MVE_COMM_BUF_OUTRQ_ADDR (0x1007E000u) + +/* One struct mve_rpc_communication_area located here */ +#define MVE_COMM_RPC_ADDR (0x1007F000u) + +/* Address for ram_print buffer in FW */ +#define MVE_FW_PRINT_RAM_ADDR (0x10100000u) +#define MVE_FW_PRINT_RAM_SIZE (0x80000u) + +/* One page of memory (4 kB) is used for each queue, + * so maximum 1024 words, but need room for some counters as well, + * see structs mve_comm_area_mve and mve_comm_area_host below. + */ +#define MVE_COMM_QUEUE_SIZE_IN_WORDS 1020 + +/* This is the part of the message area that is written by host. */ +struct mve_comm_area_host { + uint16_t out_rpos; + uint16_t in_wpos; + uint32_t reserved[3]; + /* + * Queue of messages to MVE, each block of data prefixed with + * a mve_msg_header + */ + uint32_t in_data[MVE_COMM_QUEUE_SIZE_IN_WORDS]; +}; + +/* This is the part of the message area that is written by MVE. */ +struct mve_comm_area_mve { + uint16_t out_wpos; + uint16_t in_rpos; + uint32_t reserved[3]; + /* + * Queue of messages to host, each block of data prefixed with + * a mve_msg_header + */ + uint32_t out_data[MVE_COMM_QUEUE_SIZE_IN_WORDS]; +}; + +#define MVE_RPC_AREA_SIZE_IN_WORDS 256 +#define MVE_RPC_DATA_SIZE_IN_WORDS (MVE_RPC_AREA_SIZE_IN_WORDS - 3) +union mve_rpc_params { + uint32_t data[MVE_RPC_DATA_SIZE_IN_WORDS]; + struct { + char string[MVE_RPC_DATA_SIZE_IN_WORDS * 4]; + } debug_print; + struct { + uint32_t size; + uint32_t max_size; + uint8_t region; /* Memory region selection */ +#define MVE_MEM_REGION_PROTECTED (0) +#define MVE_MEM_REGION_OUTBUF (1) +#define MVE_MEM_REGION_FRAMEBUF (MVE_MEM_REGION_OUTBUF) + + /* The newly allocated memory must be placed + * on (at least) a 2^(log2_alignment) boundary + */ + uint8_t log2_alignment; + } mem_alloc; + struct { + uint32_t ve_pointer; + uint32_t new_size; + } mem_resize; + struct { + uint32_t ve_pointer; + } mem_free; +}; + +struct mve_rpc_communication_area { + uint32_t state; +#define MVE_RPC_STATE_FREE (0) +#define MVE_RPC_STATE_PARAM (1) +#define MVE_RPC_STATE_RETURN (2) + uint32_t call_id; +#define MVE_RPC_FUNCTION_DEBUG_PRINTF (1) +#define MVE_RPC_FUNCTION_MEM_ALLOC (2) +#define MVE_RPC_FUNCTION_MEM_RESIZE (3) +#define MVE_RPC_FUNCTION_MEM_FREE (4) + uint32_t size; + union mve_rpc_params params; +}; + +struct mve_fw_ram_print_head_aera { + uint32_t rd_cnt; + uint32_t reserved0[15]; + + uint32_t flag; + uint32_t index; + uint32_t wr_cnt; + uint32_t reserved1[13]; +}; + +/********************************************************************* + * + * Message codes + * + *********************************************************************/ + +/* Messages consist of one struct mve_msg_header, possibly followed + * by extra data. + */ +struct mve_msg_header { + uint16_t code; +/* REQUESTs are messages from the + * host/driver to the firmware: + * Code: Extra data in message: + */ +#define MVE_REQUEST_CODE_GO (1001) /* no extra data */ +#define MVE_REQUEST_CODE_STOP (1002) /* no extra data */ +#define MVE_REQUEST_CODE_INPUT_FLUSH (1003) /* no extra data */ +#define MVE_REQUEST_CODE_OUTPUT_FLUSH (1004) /* no extra data */ +#define MVE_REQUEST_CODE_SWITCH (1005) /* no extra data */ +#define MVE_REQUEST_CODE_PING (1006) /* no extra data */ +#define MVE_REQUEST_CODE_DUMP (1008) /* no extra data */ +#define MVE_REQUEST_CODE_JOB (1009) /* struct mve_request_job */ +#define MVE_REQUEST_CODE_SET_OPTION \ + (1010) /* struct mve_request_set_option (variable size) */ +#define MVE_REQUEST_CODE_RELEASE_REF_FRAME \ + (1011) /* struct mve_request_release_ref_frame */ +#define MVE_REQUEST_CODE_IDLE_ACK (1012) /* no extra data */ +#define MVE_REQUEST_CODE_DEBUG \ + (1013) /* level: 0 for disable, refer to fw_log_level */ +/* RESPONSEs are messages from the firmware to the host: */ +#define MVE_RESPONSE_CODE_SWITCHED_IN \ + (2001) /* struct mve_response_switched_in */ +#define MVE_RESPONSE_CODE_SWITCHED_OUT \ + (2002) /* struct mve_response_switched_out */ +#define MVE_RESPONSE_CODE_SET_OPTION_CONFIRM (2003) /* no extra data */ +#define MVE_RESPONSE_CODE_JOB_DEQUEUED \ + (2004) /* struct mve_response_job_dequeued */ +#define MVE_RESPONSE_CODE_INPUT \ + (2005) /* no extra data, but buffer placed in buffer queue */ +#define MVE_RESPONSE_CODE_OUTPUT \ + (2006) /* no extra data, but buffer placed in buffer queue */ +#define MVE_RESPONSE_CODE_INPUT_FLUSHED (2007) /* no extra data */ +#define MVE_RESPONSE_CODE_OUTPUT_FLUSHED (2008) /* no extra data */ +#define MVE_RESPONSE_CODE_PONG (2009) /* no extra data */ +#define MVE_RESPONSE_CODE_ERROR (2010) /* struct mve_response_error */ +#define MVE_RESPONSE_CODE_STATE_CHANGE \ + (2011) /* struct mve_response_state_change */ +#define MVE_RESPONSE_CODE_DUMP (2012) /* no extra data */ +#define MVE_RESPONSE_CODE_IDLE (2013) /* no extra data */ +#define MVE_RESPONSE_CODE_FRAME_ALLOC_PARAM \ + (2014) /* struct mve_response_frame_alloc_parameters */ +#define MVE_RESPONSE_CODE_SEQUENCE_PARAMETERS \ + (2015) /* struct mve_response_sequence_parameters */ +#define MVE_RESPONSE_CODE_EVENT \ + (2016) /* struct mve_response_event (variable size) */ +#define MVE_RESPONSE_CODE_SET_OPTION_FAIL \ + (2017) /* struct mve_response_set_option_failed */ +#define MVE_RESPONSE_CODE_REF_FRAME_UNUSED \ + (2018) /* struct mve_response_ref_frame_unused */ +#define MVE_RESPONSE_CODE_DEBUG (2019) /* no extra data */ +/* BUFFERs are sent from host to firmware, and then return at some time: */ +#define MVE_BUFFER_CODE_FRAME (3001) /* struct mve_buffer_frame */ +#define MVE_BUFFER_CODE_BITSTREAM (3002) /* struct mve_buffer_bitstream */ +#define MVE_BUFFER_CODE_PARAM (3003) /* struct mve_buffer_param */ +#define MVE_BUFFER_CODE_GENERAL (3004) /* struct mve_buffer_general */ + + uint16_t size; /* size in bytes of trailing data, 0 if none */ +}; + +enum fw_log_level { + FW_LOG_ERROR = 1, + FW_LOG_WARNING, + FW_LOG_INFO, + FW_LOG_DEBUG, + FW_LOG_VERBOSE, + FW_LOG_MAX +}; + +/********************************************************************* + * + * REQUESTs are messages from the host to the firmware + * + * Some of the MVE_REQUEST_CODE_ codes are followed by one of the + * structs below. + * + *********************************************************************/ + +struct mve_request_job { + uint16_t cores; /* >= 1, number of cores to use, must match request to HW scheduler */ + uint16_t frames; /* number of frames to process, zero means infinite */ + uint32_t flags; /* can be zero */ +#define MVE_JOB_FLAG_DISABLE_BNDMGR (0x01) +}; + +struct mve_request_set_option { + uint32_t index; +#define MVE_SET_OPT_INDEX_NALU_FORMAT (1) /* see arg, MVE_OPT_NALU_FORMAT_ */ +#define MVE_SET_OPT_INDEX_STREAM_ESCAPING \ + (2) /* arg=1 to enable (default), arg=0 to disable */ +#define MVE_SET_OPT_INDEX_PROFILE_LEVEL (3) /* data.profile_level */ +#define MVE_SET_OPT_INDEX_HOST_PROTOCOL_PRINTS \ + (4) /* arg=1 to enable, arg=0 to disable (default) */ +#define MVE_SET_OPT_INDEX_PROFILING \ + (5) /* arg=1 to enable, arg=0 to disable (default) */ +#define MVE_SET_OPT_INDEX_DISABLE_FEATURES \ + (6) /* see arg, MVE_OPT_DISABLE_FEATURE_ */ +#define MVE_SET_OPT_INDEX_IGNORE_STREAM_HEADERS \ + (7) /* decode, arg=1 to enable, arg=0 to disable (default) */ +#define MVE_SET_OPT_INDEX_FRAME_REORDERING \ + (8) /* decode, arg=1 to enable (default), arg=0 to disable */ +#define MVE_SET_OPT_INDEX_INTBUF_SIZE \ + (9) /* decode, arg = suggested limit of intermediate buffer allocation */ +#define MVE_SET_OPT_INDEX_ENC_P_FRAMES (16) /* encode, arg = nPFrames */ +#define MVE_SET_OPT_INDEX_ENC_B_FRAMES \ + (17) /* encode, arg = number of B frames */ +#define MVE_SET_OPT_INDEX_GOP_TYPE (18) /* encode, see arg */ +#define MVE_SET_OPT_INDEX_INTRA_MB_REFRESH (19) /* encode, arg */ +#define MVE_SET_OPT_INDEX_ENC_CONSTR_IPRED (20) /* encode, arg = 0 or 1 */ +#define MVE_SET_OPT_INDEX_ENC_ENTROPY_SYNC (21) /* encode, arg = 0 or 1 */ +#define MVE_SET_OPT_INDEX_ENC_TEMPORAL_MVP (22) /* encode, arg = 0 or 1 */ +#define MVE_SET_OPT_INDEX_TILES (23) /* encode, data.tiles */ +#define MVE_SET_OPT_INDEX_ENC_MIN_LUMA_CB_SIZE \ + (24) /* HEVC encode, arg = 8 or 16, for sizes 8x8 or 16x16 */ +#define MVE_SET_OPT_INDEX_ENC_MB_TYPE_ENABLE (25) /* encode, see arg */ +#define MVE_SET_OPT_INDEX_ENC_MB_TYPE_DISABLE (26) /* encode, see arg */ +#define MVE_SET_OPT_INDEX_ENC_H264_CABAC \ + (27) /* encode, arg = 0 or 1, enabled by default */ +#define MVE_SET_OPT_INDEX_ENC_SLICE_SPACING \ + (28) /* encode, arg = suggested number of CTUs/macroblocks in a slice */ +#define MVE_SET_OPT_INDEX_ENC_VP9_PROB_UPDATE (30) /* VP9 encode, see arg */ +#define MVE_SET_OPT_INDEX_RESYNC_INTERVAL \ + (31) /* JPEG encode, arg = nRestartInterval = nResynchMarkerSpacing */ +#define MVE_SET_OPT_INDEX_HUFFMAN_TABLE \ + (32) /* JPEG encode, data.huffman_table */ +#define MVE_SET_OPT_INDEX_QUANT_TABLE (33) /* JPEG encode, data.quant_table */ +#define MVE_SET_OPT_INDEX_ENC_EXPOSE_REF_FRAMES \ + (34) /* encode debug, arg = 0 or 1, disabled by default */ +#define MVE_SET_OPT_INDEX_MBINFO_OUTPUT \ + (35) /* encode, arg=1 to enable, arg=0 to disable (default) */ +#define MVE_SET_OPT_INDEX_MV_SEARCH_RANGE \ + (36) /* encode, data,motion_vector_search_range */ +#define MVE_SET_OPT_INDEX_ENC_STREAM_BITDEPTH \ + (38) + /* encode, data.bitdepth, to set other bitdepth of encoded stream than of input frames */ +#define MVE_SET_OPT_INDEX_ENC_STREAM_CHROMA_FORMAT \ + (39) /* encode, arg, to set other chroma format of encoded stream than of input frames */ +#define MVE_SET_OPT_INDEX_ENC_RGB_TO_YUV_MODE \ + (40) /* encode, arg, select which way RGB is converted to YUV before encoding */ +#define MVE_SET_OPT_INDEX_ENC_BANDWIDTH_LIMIT \ + (41) /* encode, arg, the maximum bandwidth limit defined by host */ +#define MVE_SET_OPT_INDEX_WATCHDOG_TIMEOUT \ + (42) /* arg=timeout, arg=0 to disable */ +#define MVE_SET_OPT_INDEX_ENC_CABAC_INIT_IDC \ + (43) /* encode, arg; 0,1,2 for H264; 0,1 for HEVC */ +#define MVE_SET_OPT_INDEX_ENC_ADPTIVE_QUANTISATION \ + (44) /* encode (h264 and hevc) */ +#define MVE_SET_OPT_INDEX_QP_DELTA_I_P (45) +#define MVE_SET_OPT_INDEX_QP_DELTA_I_B_REF (46) +#define MVE_SET_OPT_INDEX_QP_DELTA_I_B_NONREF (47) +#define MVE_SET_OPT_INDEX_CB_QP_OFFSET (48) +#define MVE_SET_OPT_INDEX_CR_QP_OFFSET (49) +#define MVE_SET_OPT_INDEX_LAMBDA_SCALE (50) /* encode, data.lambda_scale */ +#define MVE_SET_OPT_INDEX_ENC_MAX_NUM_CORES (51) /* maximum number of cores */ +#define MVE_SET_OPT_INDEX_ENC_FIXED_QP (56) +/* ARBITRARY_DOWNSCALE */ +#define MVE_SET_OPT_INDEX_DEC_DOWNSCALE \ + (57) /* decode, set downscaled width and height */ +/* SAO_EVAL */ +#define MVE_SET_OPT_INDEX_ENC_SAO_PENALTY (58) +#define MVE_SET_OPT_INDEX_ENC_SAO_EN (59) /* do not use now */ +#define MVE_SET_OPT_INDEX_ENC_SAO_LUMA_EN (60) +#define MVE_SET_OPT_INDEX_ENC_SAO_CHROMA_EN (61) +/* MVE_ENCODE_CROP_FEATURE */ +#define MVE_SET_OPT_INDEX_ENC_CROP_RARAM_LEFT (62) +#define MVE_SET_OPT_INDEX_ENC_CROP_RARAM_RIGHT (63) +#define MVE_SET_OPT_INDEX_ENC_CROP_RARAM_TOP (64) +#define MVE_SET_OPT_INDEX_ENC_CROP_RARAM_BOTTOM (65) +/* LONG_TERM_REFERENCE */ +#define MVE_SET_OPT_INDEX_ENC_LTR_MODE (66) +#define MVE_SET_OPT_INDEX_ENC_LTR_PERIOD (67) +#define MVE_SET_OPT_INDEX_DEC_DOWNSCALE_POS_MODE (69) +#define MVE_SET_OPT_INDEX_MINI_FRAME_HEIGHT_PIX (70) /* max cnt of mini frames*/ +/* Encode Data Statistics */ +#define MVE_SET_OPT_INDEX_ENC_STATS_MODE (71) +#define MVE_SET_OPT_INDEX_ENC_MULTI_SPS_PPS (73) +#define MVE_SET_OPT_INDEX_ENC_INIT_QPI (74) +#define MVE_SET_OPT_INDEX_ENC_INIT_QPP (75) +#define MVE_SET_OPT_INDEX_ENC_INIT_QPB (76) + +#define MVE_SET_OPT_INDEX_ENC_RC_CLIP_TOP (80) +#define MVE_SET_OPT_INDEX_ENC_RC_CLIP_BOTTOM (81) +#define MVE_SET_OPT_INDEX_ENC_QPMAP_CLIP_TOP (82) +#define MVE_SET_OPT_INDEX_ENC_QPMAP_CLIP_BOTTOM (83) + +#define MVE_SET_OPT_INDEX_ENC_REF_RING_BUFFER (84) +#define MVE_SET_OPT_INDEX_ENC_JPEG_RC (85) //MVE_ENC_RC_JPEG +#define MVE_SET_OPT_INDEX_ENC_RC_I_BIT_RATIO (86) /* RC_I_BIT_RATIO */ +#define MVE_SET_OPT_INDEX_ENC_RC_I_BIT_MODE (87) /* RC_I_BIT_RATIO */ +#define MVE_SET_OPT_iNDEX_ENC_VISUAL_ENABLE \ + (89) //enable_visual FW CODE IS iNDEX +/* SVCT3 level-1 separate */ +#define MVE_SET_OPT_INDEX_ENC_SVCT3_LEVEL1_separate (88) +/* GDR */ +#define MVE_SET_OPT_INDEX_ENC_GDR_NUMBER (90) +#define MVE_SET_OPT_INDEX_ENC_GDR_PERIOD (91) + +#define MVE_SET_OPT_INDEX_SCD_ENABLE (93) +#define MVE_SET_OPT_INDEX_SCD_PERCENT (94) +#define MVE_SET_OPT_INDEX_SCD_THRESHOLD (95) +/* for aq, add new para */ +#define MVE_SET_OPT_INDEX_ENC_AQ_SSIM_EN (96) +#define MVE_SET_OPT_INDEX_ENC_AQ_NEG_RATIO (97) +#define MVE_SET_OPT_INDEX_ENC_AQ_POS_RATIO (98) +#define MVE_SET_OPT_INDEX_ENC_AQ_QPDELTA_LMT (99) +#define MVE_SET_OPT_INDEX_ENC_AQ_INIT_FRM_AVG_SVAR (100) +#define MVE_SET_OPT_INDEX_SCD_ADAPTIVE_I (101) +#define MVE_SET_OPT_INDEX_DEC_YUV2RGB_PARAMS (103) +#define MVE_SET_OPT_INDEX_ENC_FORCED_UV_VAL (104) +#define MVE_SET_OPT_INDEX_DEC_DSL_INTERP_MODE (105) + +#define MVE_SET_OPT_INDEX_ENC_SRC_CROPPING (106) +#define MVE_SET_OPT_INDEX_DEC_DST_CROPPING (107) //ENABLE_DST_CROP + union { + uint32_t arg; /* Most options only need a uint32_t as argument */ +/* For option MVE_SET_OPT_INDEX_NALU_FORMAT, arg should be one of these: */ +#define MVE_OPT_NALU_FORMAT_START_CODES (1) +#define MVE_OPT_NALU_FORMAT_ONE_NALU_PER_BUFFER (2) +#define MVE_OPT_NALU_FORMAT_ONE_BYTE_LENGTH_FIELD (4) +#define MVE_OPT_NALU_FORMAT_TWO_BYTE_LENGTH_FIELD (8) +#define MVE_OPT_NALU_FORMAT_FOUR_BYTE_LENGTH_FIELD (16) +#define MVE_OPT_NALU_FORMAT_MBINFO (32) /* only used for debugging */ +/* For option MVE_SET_OPT_INDEX_GOP_TYPE, arg should be one of these: */ +#define MVE_OPT_GOP_TYPE_BIDIRECTIONAL (1) +#define MVE_OPT_GOP_TYPE_LOW_DELAY (2) +#define MVE_OPT_GOP_TYPE_PYRAMID (3) +#define MVE_OPT_GOP_TYPE_SVCT3 (4) +#define MVE_OPT_GOP_TYPE_GDR (5) +/* For option MVE_SET_OPT_INDEX_ENC_VP9_PROB_UPDATE, arg should be one of these: */ +#define MVE_OPT_VP9_PROB_UPDATE_DISABLED (0) +#define MVE_OPT_VP9_PROB_UPDATE_IMPLICIT (1) +#define MVE_OPT_VP9_PROB_UPDATE_EXPLICIT (2) +/* For option MVE_SET_OPT_INDEX_DISABLE_FEATURES, + * arg should be a bitmask with features to disable: + */ +#define MVE_OPT_DISABLE_FEATURE_AFBC_COMP \ + (0x00000001) /* VDMA AFBC Compression */ +#define MVE_OPT_DISABLE_FEATURE_REF_CACHE \ + (0x00000002) /* REF caching */ +#define MVE_OPT_DISABLE_FEATURE_DEBLOCK \ + (0x00000004) /* Deblocking */ +#define MVE_OPT_DISABLE_FEATURE_SAO (0x00000008) /* SAO */ +#define MVE_OPT_DISABLE_FEATURE_PIC_OUTPUT \ + (0x00000020) /* Picture Output Removal */ +#define MVE_OPT_DISABLE_FEATURE_PIPE (0x00000040) /* Pipe (i.e. parser-only) */ +#define MVE_OPT_DISABLE_FEATURE_SLEEP \ + (0x00000080) /* Clock gating (SOC_SYSCTRL.SLEEP bit) */ +#define MVE_OPT_DISABLE_FEATURE_AFBC_LEGACY_REF \ + (0x00000100) + /* Enables tiled AFBC format in reference buffers. Ignored for decode AFBC output */ +#define MVE_OPT_DISABLE_FEATURE_REF_PICS \ + (0x00000400) /* Forces use of static 16x16 reference pics */ +#define MVE_OPT_DISABLE_FEATURE_CHNG_RECT_WA \ + (0x00000800) /* Disables workaround */ +#define MVE_OPT_DISABLE_FEATURE_REFSZ_LIMIT \ + (0x00001000) /* Disable REFSZ bw limit */ +/* For options MVE_SET_OPT_INDEX_ENC_MB_TYPE_ENABLE + * and MVE_SET_OPT_INDEX_ENC_MB_TYPE_DISABLE, arg + * should be a bitmask of MVE_MBTYPEs: + */ +#define MVE_MBTYPE_4x4 (0x00000001) /* 4x4 inter */ +#define MVE_MBTYPE_4x8 (0x00000002) /* 4x8 inter */ +#define MVE_MBTYPE_8x4 (0x00000004) /* 8x4 inter */ +#define MVE_MBTYPE_8x8 (0x00000008) /* 8x8 inter */ +#define MVE_MBTYPE_8x16 (0x00000010) /* 8x16 inter */ +#define MVE_MBTYPE_16x8 (0x00000020) /* 16x8 inter */ +#define MVE_MBTYPE_16x16 (0x00000040) /* 16x16 inter */ +#define MVE_MBTYPE_PSKIP (0x00000080) /* P Skip inter */ +#define MVE_MBTYPE_I4x4 (0x00000100) /* 4x4 intra */ +#define MVE_MBTYPE_I8x8 (0x00000200) /* 8x8 intra */ +#define MVE_MBTYPE_I16x16 (0x00000400) /* 16x16 intra */ +#define MVE_MBTYPE_I32x32 (0x00000800) /* 32x32 intra */ +#define MVE_MBTYPE_16x32 (0x00001000) /* 16x32 inter */ +#define MVE_MBTYPE_32x16 (0x00002000) /* 32x16 inter */ +#define MVE_MBTYPE_32x32 (0x00004000) /* 32x32 inter */ +/* For option MVE_SET_OPT_INDEX_ENC_RGB_TO_YUV_MODE, arg should be one of these: */ +#define MVE_OPT_RGB_TO_YUV_BT601_STUDIO (0) +#define MVE_OPT_RGB_TO_YUV_BT601_FULL (1) +#define MVE_OPT_RGB_TO_YUV_BT709_STUDIO (2) +#define MVE_OPT_RGB_TO_YUV_BT709_FULL (3) +#define MVE_OPT_RGB_TO_YUV_BT2020_STUDIO (4) +#define MVE_OPT_RGB_TO_YUV_BT2020_FULL (5) + struct { + uint16_t profile; +/* AVC/H.264 profiles */ +#define MVE_OPT_PROFILE_H264_BASELINE (1) +#define MVE_OPT_PROFILE_H264_MAIN (2) +#define MVE_OPT_PROFILE_H264_HIGH (3) +#define MVE_OPT_PROFILE_H264_HIGH_10 (4) +/* HEVC/H.265 profiles */ +#define MVE_OPT_PROFILE_H265_MAIN (1) +#define MVE_OPT_PROFILE_H265_MAIN_STILL (2) +#define MVE_OPT_PROFILE_H265_MAIN_INTRA (3) +#define MVE_OPT_PROFILE_H265_MAIN_10 (4) +/* VC-1 profiles */ +#define MVE_OPT_PROFILE_VC1_SIMPLE (1) +#define MVE_OPT_PROFILE_VC1_MAIN (2) +#define MVE_OPT_PROFILE_VC1_ADVANCED (3) +/* VP8 profiles */ +#define MVE_OPT_PROFILE_VP8_MAIN (1) + uint16_t level; +/* AVC/H.264 levels */ +#define MVE_OPT_LEVEL_H264_1 (1) +#define MVE_OPT_LEVEL_H264_1b (2) +#define MVE_OPT_LEVEL_H264_11 (3) +#define MVE_OPT_LEVEL_H264_12 (4) +#define MVE_OPT_LEVEL_H264_13 (5) +#define MVE_OPT_LEVEL_H264_2 (6) +#define MVE_OPT_LEVEL_H264_21 (7) +#define MVE_OPT_LEVEL_H264_22 (8) +#define MVE_OPT_LEVEL_H264_3 (9) +#define MVE_OPT_LEVEL_H264_31 (10) +#define MVE_OPT_LEVEL_H264_32 (11) +#define MVE_OPT_LEVEL_H264_4 (12) +#define MVE_OPT_LEVEL_H264_41 (13) +#define MVE_OPT_LEVEL_H264_42 (14) +#define MVE_OPT_LEVEL_H264_5 (15) +#define MVE_OPT_LEVEL_H264_51 (16) +#define MVE_OPT_LEVEL_H264_52 (17) +#define MVE_OPT_LEVEL_H264_6 (18) +#define MVE_OPT_LEVEL_H264_61 (19) +#define MVE_OPT_LEVEL_H264_62 (20) +#define MVE_OPT_LEVEL_H264_USER_SUPPLIED_BASE (32) +/* The value (MVE_OPT_LEVEL_H264_USER_SUPPLIED_BASE + level_idc) encodes a user + * supplied level_idc value in the range 0 to 255 inclusive. If the host supplies a level_idc + * value by this method then the encoder will encode this level_idc value in the bitstream + * without checking the validity of the level_idc value + */ +#define MVE_OPT_LEVEL_H264_USER_SUPPLIED_MAX \ + (MVE_OPT_LEVEL_H264_USER_SUPPLIED_BASE + 255) +/* HEVC/H.265 levels */ +#define MVE_OPT_LEVEL_H265_MAIN_TIER_1 (1) +#define MVE_OPT_LEVEL_H265_HIGH_TIER_1 (2) +#define MVE_OPT_LEVEL_H265_MAIN_TIER_2 (3) +#define MVE_OPT_LEVEL_H265_HIGH_TIER_2 (4) +#define MVE_OPT_LEVEL_H265_MAIN_TIER_21 (5) +#define MVE_OPT_LEVEL_H265_HIGH_TIER_21 (6) +#define MVE_OPT_LEVEL_H265_MAIN_TIER_3 (7) +#define MVE_OPT_LEVEL_H265_HIGH_TIER_3 (8) +#define MVE_OPT_LEVEL_H265_MAIN_TIER_31 (9) +#define MVE_OPT_LEVEL_H265_HIGH_TIER_31 (10) +#define MVE_OPT_LEVEL_H265_MAIN_TIER_4 (11) +#define MVE_OPT_LEVEL_H265_HIGH_TIER_4 (12) +#define MVE_OPT_LEVEL_H265_MAIN_TIER_41 (13) +#define MVE_OPT_LEVEL_H265_HIGH_TIER_41 (14) +#define MVE_OPT_LEVEL_H265_MAIN_TIER_5 (15) +#define MVE_OPT_LEVEL_H265_HIGH_TIER_5 (16) +#define MVE_OPT_LEVEL_H265_MAIN_TIER_51 (17) +#define MVE_OPT_LEVEL_H265_HIGH_TIER_51 (18) +#define MVE_OPT_LEVEL_H265_MAIN_TIER_52 (19) +#define MVE_OPT_LEVEL_H265_HIGH_TIER_52 (20) +#define MVE_OPT_LEVEL_H265_MAIN_TIER_6 (21) +#define MVE_OPT_LEVEL_H265_HIGH_TIER_6 (22) +#define MVE_OPT_LEVEL_H265_MAIN_TIER_61 (23) +#define MVE_OPT_LEVEL_H265_HIGH_TIER_61 (24) +#define MVE_OPT_LEVEL_H265_MAIN_TIER_62 (25) +#define MVE_OPT_LEVEL_H265_HIGH_TIER_62 (26) + } profile_level; + struct { + int32_t mv_search_range_x; + int32_t mv_search_range_y; + } motion_vector_search_range; + struct { + uint32_t type; +#define MVE_OPT_HUFFMAN_TABLE_DC_LUMA (1) +#define MVE_OPT_HUFFMAN_TABLE_AC_LUMA (2) +#define MVE_OPT_HUFFMAN_TABLE_DC_CHROMA (3) +#define MVE_OPT_HUFFMAN_TABLE_AC_CHROMA (4) + uint8_t number_of_huffman_of_code_length[16]; + uint8_t table[162]; /* 12 are used for DC, 162 for AC */ + } huffman_table; + struct { + uint32_t type; +#define MVE_OPT_QUANT_TABLE_LUMA (1) +#define MVE_OPT_QUANT_TABLE_CHROMA (2) + uint8_t matrix[64]; + } quant_table; + struct { + uint32_t qscale; + uint32_t qscale_luma; + uint32_t qscale_chroma; + uint32_t fps; + uint32_t change_pos; + } jpeg_rate_control; //MVE_ENC_RC_JPEG + struct { + /* For HEVC, tile_cols must be zero. + * For VP9, tile_rows and tile_cols must be powers of 2. + */ + uint16_t tile_rows; + uint16_t tile_cols; + } tiles; + struct { + uint16_t luma_bitdepth; + uint16_t chroma_bitdepth; + } bitdepth; + struct { + /* Scale factors, and their square roots, for the lambda + * coefficients used by the encoder, in unsigned Q8 fixed-point + * format. Default (no scaling) is 1.0 (so 0x0100 in hex). + */ + uint16_t lambda_scale_i_q8; + uint16_t lambda_scale_sqrt_i_q8; + uint16_t lambda_scale_p_q8; + uint16_t lambda_scale_sqrt_p_q8; + uint16_t lambda_scale_b_ref_q8; + uint16_t lambda_scale_sqrt_b_ref_q8; + uint16_t lambda_scale_b_nonref_q8; + uint16_t lambda_scale_sqrt_b_nonref_q8; + } lambda_scale; + /* ARBITRARY_DOWNSCALE */ + struct { + uint16_t width; + uint16_t height; + } downscaled_frame; + struct { + uint32_t mode; + } dsl_pos; + struct { + int16_t coef[3][3]; //coef[Y|U|V][R|G|B] + uint16_t offset[3]; + } yuv2rgb_params; + struct { + uint8_t rgb2yuv_mode; + int16_t coef[3 * 3]; //coef[Y|U|V][R|G|B] + uint8_t luma_range[2]; + uint8_t chroma_range[2]; + uint8_t rgb_range[2]; + } rgb2yuv_params; + struct { + uint16_t value; + } gray_uv_value; + struct { + uint16_t mode; + } interp_mode; + struct { + uint8_t crop_en; + /* left start x of luma in original image */ + uint16_t x; //included + /* top start y of luma in original image */ + uint16_t y; //included + /* cropped width of luma in original image */ + uint16_t width; + /* cropped height of luma in original image */ + uint16_t height; + } enc_src_crop; + + struct { + uint8_t crop_en; + /* left start x of luma in original image */ + uint16_t x; //included + /* top start y of luma in original image */ + uint16_t y; //included + /* cropped width of luma in original image */ + uint16_t width; + /* cropped height of luma in original image */ + uint16_t height; + } dec_dst_crop; //ENABLE_DST_CROP + } data; +}; + +struct mve_request_release_ref_frame { + /* Decode only: For a frame buffer that MVE has returned + * marked as _REF_FRAME, the host can send this message + * to ask the MVE to release the buffer as soon as it is + * no longer used as reference anymore. (Otherwise, in + * normal operation, the host would re-enqueue the buffer + * to the MVE when it has been displayed and can be over- + * written with a new frame.) + * + * Note: When a frame is no longer used as reference depends + * on the stream being decoded, and there is no way to + * guarantee a short response time, the response may not + * come until the end of the stream. + */ + uint32_t buffer_address; +}; + +/********************************************************************* + * + * RESPONSEs are messages from the host to the firmware + * + * Some of the MVE_RESPONSE_CODE_ codes are followed by one of the + * structs below. + * + *********************************************************************/ + +/* Sent when firmware has booted. + */ +struct mve_response_switched_in { + uint32_t core; +}; + +/* Sent when last core in a session has switched out. + */ +struct mve_response_switched_out { + uint32_t core; + uint32_t reason; + uint32_t sub_reason; +}; + +/* Response confirming state transition after either GO or STOP + * command from host. + */ +struct mve_response_state_change { + uint32_t new_state; +#define MVE_STATE_STOPPED (0) +#define MVE_STATE_RUNNING (2) +}; + +/* Message sent when the all cores in the session have dequeued a + * job from the firmware job queue. + */ +struct mve_response_job_dequeued { + uint32_t valid_job; +}; + +/* Fatal error message from firmware, if sent then no further + * operation is possible. + */ +struct mve_response_error { + uint32_t error_code; +#define MVE_ERROR_ABORT (1) +#define MVE_ERROR_OUT_OF_MEMORY (2) +#define MVE_ERROR_ASSERT (3) +#define MVE_ERROR_UNSUPPORTED (4) +#define MVE_ERROR_INVALID_BUFFER (6) +#define MVE_ERROR_INVALID_STATE (8) +#define MVE_ERROR_WATCHDOG (9) + +#define MVE_MAX_ERROR_MESSAGE_SIZE (128) + char message[MVE_MAX_ERROR_MESSAGE_SIZE]; +}; + +/* When a set-option succeeds, a confirmation message is + * sent, including the index-code for that particular option. + */ +struct mve_response_set_option_confirm { + uint32_t index; /* Same as 'index' in struct mve_request_set_option */ +}; + +/* If a set-option request fails, this message is returned. + * This is not a fatal error. The set-option had no effect, + * and the session is still alive. + * For example, trying to set an option with a too large + * or small parameter would result in this message. + * The included text string is meant for development and + * debugging purposes only. + * (When a set-option succeeds the set-option-confirm + * message code is sent instead.) + */ +struct mve_response_set_option_fail { + uint32_t index; /* Same as 'index' in struct mve_request_set_option */ + char message[MVE_MAX_ERROR_MESSAGE_SIZE]; +}; + +/* Decode only: This message is sent from MVE to the host so that it can + * allocate large enough output buffers. Output buffers that are to small + * will be returned to the host marked as 'rejected'. + */ +struct mve_response_frame_alloc_parameters { + /* Please note that the below information is a hint + * for what buffers to allocate, it does not say + * what actual resolution an output picture has. + */ + + /* To use if allocating PLANAR YUV output buffers: */ + uint16_t planar_alloc_frame_width; + uint16_t planar_alloc_frame_height; + + /* To use if allocating AFBC output buffers + * (if interlace, each field needs this size): + */ + uint32_t afbc_alloc_bytes; + + /* For situations where downscaled AFBC is supported, + * this number of bytes is needed for the downscaled frame. + */ + uint32_t afbc_alloc_bytes_downscaled; + + /* When the host allocates an AFBC frame buffer, it should normally set + * the afbc_width_in_superblocks to be at least this recommended value. + * Buffers with smaller values are likely to be returned rejected by the MVE. + * See also comments above for afbc_alloc_bytes and + * afbc_alloc_bytes_downscaled, they describe the situations where the + * different values are used. + */ + uint16_t afbc_width_in_superblocks; + uint16_t afbc_width_in_superblocks_downscaled; + + /* For PLANAR YUV output, every plane's address need to be adjusted to get + * optimal AXI bursts when the pixel data is written, the values below may + * be used to calculate address offsets. + */ + uint16_t cropx; + uint16_t cropy; + + uint32_t mbinfo_alloc_bytes; /* Only for debugging */ + + /* downscaled frame width/height for decode */ + /* ARBITRARY_DOWNSCALE */ + uint16_t dsl_frame_width; + uint16_t dsl_frame_height; + uint16_t dsl_pos_mode; + uint8_t ctu_size; /* EXPORT_SEQ_INFO */ + /* ENABLE_DST_CROP*/ + uint16_t dst_crop_x; + uint16_t dst_crop_y; + uint16_t dst_crop_width; + uint16_t dst_crop_height; +}; + +/* Decode only: This message is sent from MVE to the host so that it can + * allocate suitable output buffers. The needed size of the buffer is sent + * in a separate message (above). + * When MVE sends the message below, it enters a waiting-state and will not + * make any progress until the host sends an output-flush command, upon + * which MVE will return all output buffers, followed by a message saying + * that the output has been flushed. Only then should the host start + * enqueueing new output buffers. + */ +struct mve_response_sequence_parameters { + /* Other stream parameters affecting buffer allocation, + * any change in these values will trigger a flush. + */ + uint8_t interlace; /* 0 or 1 */ + uint8_t chroma_format; +#define MVE_CHROMA_FORMAT_MONO (0x0) +#define MVE_CHROMA_FORMAT_420 (0x1) +#define MVE_CHROMA_FORMAT_422 (0x2) +#define MVE_CHROMA_FORMAT_440 (0x3) +#define MVE_CHROMA_FORMAT_ARGB (0x4) +#define MVE_CHROMA_FORMAT_RGB (0x5) +#define MVE_CHROMA_FORMAT_444 (0x6) +#define MVE_CHROMA_FORMAT_OSD_ARGB (0x7) + + uint8_t bitdepth_luma; /* 8, 9 or 10 */ + uint8_t bitdepth_chroma; /* 8, 9 or 10 */ + uint8_t num_buffers_planar; /* number of planar buffers needed */ + uint8_t num_buffers_afbc; + /* number of AFBC buffers needed, for + * AFBC output more buffers are needed + * (for planar output, the firmware + * will allocate extra memory via RPC) + */ + uint8_t range_mapping_enabled; + /* VC-1 AP specific feature, if enabled + * then AFBC buffers may need special + * filtering before they can be + * displayed correctly. If the host is + * not able to do that, then planar output + * should be used, for which MVE + * automatically performs the filtering. + */ + uint8_t reserved0; +}; + +struct mve_response_ref_frame_unused { + /* Decode only: If requested by the host with the message + * MVE_REQUEST_CODE_RELEASE_REF_FRAME, the MVE will respond + * with this message when (if ever) the buffer is no longer + * used. + */ + uint32_t unused_buffer_address; +}; + +/* This message is only for debugging and performance profiling. + * Is sent by the firmware if the corresponding options is enabled. + */ +struct mve_event_processed { + uint8_t pic_format; + uint8_t qp; + uint8_t pad0; + uint8_t pad1; + uint32_t parse_start_time; /* Timestamp, absolute time */ + uint32_t parse_end_time; /* Timestamp, absolute time */ + uint32_t parse_idle_time; + /* Definition of idle here is waiting for in/out buffers or available RAM */ + + uint32_t pipe_start_time; /* Timestamp */ + uint32_t pipe_end_time; + /* Timestamp, end-start = process time. Idle time while in a frame is not measured. */ + uint32_t pipe_idle_time; /* Always 0 in decode, */ + + uint32_t parser_coreid; /* Core used to parse this frame */ + uint32_t pipe_coreid; /* Core used to pipe this frame */ + + uint32_t bitstream_bits; /* Number of bitstream bits used for this frame. */ + + uint32_t intermediate_buffer_size; + /* Size of intermediate (mbinfo/residuals) buffer after this frame was parsed. */ + uint32_t total_memory_allocated; + /* after the frame was parsed. Including reference frames. */ + + uint32_t bus_read_bytes; /* bus read bytes */ + uint32_t bus_write_bytes; /* bus written bytes */ + + uint32_t afbc_bytes; /* afbc data transferred */ + + uint32_t slice0_end_time; /* Timestamp, absolute time */ + uint32_t stream_start_time; /* Timestamp, absolute stream start time */ + uint32_t stream_open_time; /* Timestamp, absolute stream open time */ +}; + +/* This message is only for debugging, is sent by the + * firmware if the corresponding option is enabled. + */ +struct mve_event_ref_frame { + uint32_t ref_addr; /* MVE virtual address of AFBC reference frame */ + uint32_t ref_width; /* Width of display area in luma pixels */ + uint32_t ref_height; /* Height of display area in luma pixels */ + uint32_t ref_mb_width; /* Width in macroblocks */ + uint32_t ref_mb_height; /* Height in macroblocks */ + uint32_t ref_left_crop; /* Left crop in luma pixels */ + uint32_t ref_top_crop; /* Top crop in luma pixels */ + uint32_t ref_frame_size; /* Total AFBC frame size in bytes */ + uint32_t ref_display_order; + uint16_t bit_width; /* bit width of the YUV either 8 or 10 */ + uint16_t tiled_headers; /* AFBC format is tiled */ +}; + +/* This message is only for debugging, is sent by the firmware if event tracing + * is enabled. + */ +struct mve_event_trace_buffers { + uint16_t reserved; + uint8_t num_cores; + uint8_t rasc_mask; +#define MVE_MAX_TRACE_BUFFERS 40 + /* this array will contain one buffer per rasc in rasc_mask per num_core */ + struct { + uint32_t rasc_addr; /* rasc address of the buffer */ + uint32_t size; /* size of the buffer in bytes */ + } buffers[MVE_MAX_TRACE_BUFFERS]; +}; + +/* 'Events' are informative messages, the host is not required to react in + * any particular way. + */ +struct mve_response_event { + uint32_t event_code; +#define MVE_EVENT_ERROR_STREAM_CORRUPT (1) /* message, text string */ +#define MVE_EVENT_ERROR_STREAM_NOT_SUPPORTED (2) /* message, text string */ +#define MVE_EVENT_PROCESSED (3) /* struct mve_event_processed */ +#define MVE_EVENT_REF_FRAME (4) /* struct mve_event_ref_frame */ +#define MVE_EVENT_TRACE_BUFFERS (5) /* struct mve_event_trace_buffers */ + union { + struct mve_event_processed event_processed; + struct mve_event_ref_frame event_ref_frame; + struct mve_event_trace_buffers event_trace_buffers; + char message[MVE_MAX_ERROR_MESSAGE_SIZE]; + } event_data; +} __packed; + +/********************************************************************* + * + * BUFFERs are sent both ways, from host to firmware and back again + * + * Each MVE_BUFFER_CODE_ code is followed by one of the structs + * below. + * + *********************************************************************/ + +/* Flags in mve_buffer_frame::frame_flags: + * Set by whom? Meaning: + * DECODE: ENCODE: + * MVE_BUFFER_FRAME_FLAG_INTERLACE host - Buffer is interlaced (both top and + * bottom fields are allocated) + * MVE_BUFFER_FRAME_FLAG_BOT_FIRST fw - Bottom field should be displayed + * first (only if interlaced) + * MVE_BUFFER_FRAME_FLAG_TOP_PRESENT fw host Top field present (or full frame if + * not interlaced) + * MVE_BUFFER_FRAME_FLAG_BOT_PRESENT fw - Bottom present (only if interlaced) + * + * MVE_BUFFER_FRAME_FLAG_ROTATION_* host host Decode: MVE will rotate the output frame + * according to this setting. + * Encode: MVE will rotate the input frame + * according to this setting before + * encoding them. + * MVE_BUFFER_FRAME_FLAG_SCALING_MASK host - Output pictures should be downscaled + * + * MVE_BUFFER_FRAME_FLAG_MIRROR_* - host Input frame should be mirrored + * before encoding + * + * MVE_BUFFER_FRAME_FLAG_REJECTED fw - Buffer was too small, + * host should re-allocate + * + * MVE_BUFFER_FRAME_FLAG_CORRUPT fw - Frame contains visual corruption + * + * MVE_BUFFER_FRAME_FLAG_DECODE_ONLY fw - Frame should not be displayed + * + * MVE_BUFFER_FRAME_FLAG_REF_FRAME fw - Frame is used by MVE as reference, + * host must not change, + * just re-enqueue when displayed + * MVE_BUFFER_FRAME_FLAG_EOS fw host This is the last frame in the stream. + */ + +/* mve_buffer_frame_planar stores uncompressed YUV pictures. + * ________________________________________ + * | ^ | | ^ + * |<-:--visible_frame_width---->| | : + * | : | | : + * | : | | : + * | visible_frame_height | | max_frame_height + * | : | | : + * | : | | : + * |__v__________________________| | : + * | | : + * |<-------------max_frame_width---------->| : + * |________________________________________| v + * + */ +struct mve_buffer_frame_planar { + /* Y,Cb,Cr top field */ + uint32_t plane_top[3]; + + /* Y,Cb,Cr bottom field (interlace only) */ + uint32_t plane_bot[3]; + + /* Stride between rows, in bytes */ + int32_t stride[3]; + + /* Size of largest frame allowed to put in this buffer */ + uint16_t max_frame_width; + uint16_t max_frame_height; +}; + +/* mve_buffer_frame_afbc stores AFBC compressed content that is also used + * as the reference frame. Out of loop processing (crop, rotation, + * range reduction) must be supported by the user of this buffer and + * the parameters are signaled within the buffer descriptor below. + * ________________________________________ + * | ^ | + * | cropy | + * | v_____________________________ | + * |<-cropx->| ^ || + * | |<-:--visible_frame_width---->|| + * | | : || + * | | : || + * | | visible_frame_height || + * | | : || + * | | : || + * | |__v__________________________|| + * |________________________________________| + * + * <----- superblock_width ---------------> + * * afbc_width_in_superblocks + * + * Note that the sizes and cropping values need not be multiples of 16. + * + * For interlaced streams, the values refer to a full frame, + * while the output is actually separated into fields. Thus for fields, + * cropy and visible_frame_height should be divided by two. + * + * For dual-downscaled AFBC output (not supported for interlace), + * then the cropx, cropy, visible_frame_width and visible_frame_height + * should be divided by two for the downscaled plane. + */ +struct mve_buffer_frame_afbc { + uint32_t plane[2]; + /* Addresses for up to two AFBC planes: Top and bottom fields for interlace, + * or standard and optional downscaled output. + */ + uint32_t alloc_bytes[2]; /* Size of allocation for each plane */ + uint16_t cropx; /* Luma x crop */ + uint16_t cropy; /* Luma y crop */ + uint16_t afbc_width_in_superblocks[2]; + /* Width of AFBC frame buffer, in units + * of superblock width (32 or 16). + * If dual-downscaled output is chosen, + * this width can be different for the + * two planes. + * For first plane: + * (cropx + frame_width) + * <= superblock_width * afbc_width... + */ + uint32_t afbc_params; /* AFBC parameters */ +#define MVE_BUFFER_FRAME_AFBC_TILED_BODY \ + (0x00000001) /* Output body blocks should be tiled */ +#define MVE_BUFFER_FRAME_AFBC_TILED_HEADER \ + (0x00000002) /* Output headers should be tiled */ +#define MVE_BUFFER_FRAME_AFBC_32X8_SUPERBLOCK \ + (0x00000004) + /* Super block is 32x8, default is 16x16, (only supported as input for encode) */ +#define MVE_BUFFER_FRAME_AFBC_DN_FORCE_8BIT \ + (0x00000008) + /* For downscaled AFBC plane: It shall be 8-bit, even if full-scale is 10-bit */ +#define MVE_BUFFER_FRAME_AFBC_DN_FORCE_420 \ + (0x00000010) + /* For downscaled AFBC plane: It shall be 4:2:0, even if full-scale is 4:2:2 */ +#define MVE_BUFFER_FRAME_AFBC_STRIDE_SET_BY_MVE \ + (0x00000020) + /* Decode only: By default, the host should + * set the afbc_width_in_superblocks. If the + * value is zero, or if this bit is set, then + * the MVE sets an appropriate value. + */ +}; + +/* output from encoder, encoder statistics. + * buffer parameter to a buffer of this encoder statistics + * this struct indicates each size of statistics. + */ + +struct mve_buffer_param_enc_stats { + uint32_t mms_buffer_size; + uint32_t bitcost_buffer_size; + uint32_t qp_buffer_size; + uint32_t flags; + //ENC_STATS_FLAGS +#define MVE_BUFFER_ENC_STATS_FLAG_MMS (1 << 0) +#define MVE_BUFFER_ENC_STATS_FLAG_BITCOST (1 << 1) +#define MVE_BUFFER_ENC_STATS_FLAG_QP (1 << 2) +#define MVE_BUFFER_ENC_STATS_FLAG_DROP (1 << 3) + uint16_t stats_mb_width; + uint16_t stats_mb_height; +}; + +/* + * The FRAME buffer stores the common information for PLANAR and AFBC buffers, + * and a union of PLANAR and AFBC specific information. + */ +struct mve_buffer_frame { + /* For identification of the buffer, this is not changed by + * the firmware. + */ + uint64_t host_handle; + + /* For matching input buffer with output buffers, the firmware + * copies these values between frame buffers and bitstream buffers. + */ + uint64_t user_data_tag; + + /* Frame buffer flags, see commentary above */ + uint32_t frame_flags; +#define MVE_BUFFER_FRAME_FLAG_INTERLACE (0x00000001) +#define MVE_BUFFER_FRAME_FLAG_BOT_FIRST (0x00000002) +#define MVE_BUFFER_FRAME_FLAG_TOP_PRESENT (0x00000004) +#define MVE_BUFFER_FRAME_FLAG_BOT_PRESENT (0x00000008) +#define MVE_BUFFER_FRAME_FLAG_ROTATION_90 (0x00000010) +#define MVE_BUFFER_FRAME_FLAG_ROTATION_180 (0x00000020) +#define MVE_BUFFER_FRAME_FLAG_ROTATION_270 (0x00000030) +#define MVE_BUFFER_FRAME_FLAG_SCALING_MASK (0x000000C0) +#define MVE_BUFFER_FRAME_FLAG_MIRROR_HORI (0x00000100) +#define MVE_BUFFER_FRAME_FLAG_MIRROR_VERT (0x00000200) +#define MVE_BUFFER_FRAME_FLAG_FORCE_IDR (0x00000400) +#define MVE_BUFFER_FRAME_FLAG_RESET_GOP (0x00000800) +#define MVE_BUFFER_FRAME_FLAG_REJECTED (0x00001000) +#define MVE_BUFFER_FRAME_FLAG_CORRUPT (0x00002000) +#define MVE_BUFFER_FRAME_FLAG_DECODE_ONLY (0x00004000) +#define MVE_BUFFER_FRAME_FLAG_REF_FRAME (0x00008000) +#define MVE_BUFFER_FRAME_FLAG_EOS (0x00010000) +#define MVE_BUFFER_FRAME_FLAG_RESET_LTR_separate (0x00020000) +/*ARBITRARY_DOWNSCALE*/ +#define MVE_BUFFER_FRAME_FLAG_SCALING_MASKX (0xFF000000) //8bit +#define MVE_BUFFER_FRAME_FLAG_SCALING_MASKY (0x00FE0000) //7bit + + /* Height (in luma samples) of visible part of frame, + * may be smaller than allocated frame size. + */ + uint16_t visible_frame_height; + + /* Width (in luma samples) of visible part of frame, + * may be smaller than allocated frame size. + */ + uint16_t visible_frame_width; + + /* Color format of buffer */ + uint16_t format; +/* format bitfield: */ +#define MVE_FORMAT_BF_C (0) /* 3 bits, chroma subsampling */ +#define MVE_FORMAT_BF_B (4) /* 4 bits, max bitdepth minus 8 */ +#define MVE_FORMAT_BF_N (8) /* 2 bits, number of planes */ +#define MVE_FORMAT_BF_V (12) /* 2 bits, format variant */ +#define MVE_FORMAT_BF_A (15) /* 1 bit, AFBC bit */ +/* formats: */ +#define MVE_FORMAT_YUV420_AFBC_8 \ + ((MVE_CHROMA_FORMAT_420 << MVE_FORMAT_BF_C) | \ + ((8 - 8) << MVE_FORMAT_BF_B) | (1 << MVE_FORMAT_BF_A)) + +#define MVE_FORMAT_YUV420_AFBC_10 \ + ((MVE_CHROMA_FORMAT_420 << MVE_FORMAT_BF_C) | \ + ((10 - 8) << MVE_FORMAT_BF_B) | (1 << MVE_FORMAT_BF_A)) + +#define MVE_FORMAT_YUV422_AFBC_8 \ + ((MVE_CHROMA_FORMAT_422 << MVE_FORMAT_BF_C) | \ + ((8 - 8) << MVE_FORMAT_BF_B) | (1 << MVE_FORMAT_BF_A)) + +#define MVE_FORMAT_YUV422_AFBC_10 \ + ((MVE_CHROMA_FORMAT_422 << MVE_FORMAT_BF_C) | \ + ((10 - 8) << MVE_FORMAT_BF_B) | (1 << MVE_FORMAT_BF_A)) + +#define MVE_FORMAT_YUV420_I420 \ + ((MVE_CHROMA_FORMAT_420 << MVE_FORMAT_BF_C) | \ + ((8 - 8) << MVE_FORMAT_BF_B) | (3 << MVE_FORMAT_BF_N) | \ + (0 << MVE_FORMAT_BF_V)) + +#define MVE_FORMAT_YUV420_I420_10 \ + ((MVE_CHROMA_FORMAT_420 << MVE_FORMAT_BF_C) | \ + ((10 - 8) << MVE_FORMAT_BF_B) | (3 << MVE_FORMAT_BF_N) | \ + (0 << MVE_FORMAT_BF_V)) + +#define MVE_FORMAT_YUV420_NV12 \ + ((MVE_CHROMA_FORMAT_420 << MVE_FORMAT_BF_C) | \ + ((8 - 8) << MVE_FORMAT_BF_B) | (2 << MVE_FORMAT_BF_N) | \ + (0 << MVE_FORMAT_BF_V)) + +#define MVE_FORMAT_YUV420_NV21 \ + ((MVE_CHROMA_FORMAT_420 << MVE_FORMAT_BF_C) | \ + ((8 - 8) << MVE_FORMAT_BF_B) | (2 << MVE_FORMAT_BF_N) | \ + (1 << MVE_FORMAT_BF_V)) + +#define MVE_FORMAT_YUV420_P010 \ + ((MVE_CHROMA_FORMAT_420 << MVE_FORMAT_BF_C) | \ + ((16 - 8) << MVE_FORMAT_BF_B) | (2 << MVE_FORMAT_BF_N) | \ + (0 << MVE_FORMAT_BF_V)) + +#define MVE_FORMAT_YUV420_2P_10 \ + ((MVE_CHROMA_FORMAT_420 << MVE_FORMAT_BF_C) | \ + ((10 - 8) << MVE_FORMAT_BF_B) | (2 << MVE_FORMAT_BF_N) | \ + (0 << MVE_FORMAT_BF_V)) + +#define MVE_FORMAT_YUV420_Y0L2 \ + ((MVE_CHROMA_FORMAT_420 << MVE_FORMAT_BF_C) | \ + ((10 - 8) << MVE_FORMAT_BF_B) | (1 << MVE_FORMAT_BF_N) | \ + (0 << MVE_FORMAT_BF_V)) + +#define MVE_FORMAT_YUV420_AQB1 \ + ((MVE_CHROMA_FORMAT_420 << MVE_FORMAT_BF_C) | \ + ((10 - 8) << MVE_FORMAT_BF_B) | (1 << MVE_FORMAT_BF_N) | \ + (1 << MVE_FORMAT_BF_V)) + +#define MVE_FORMAT_YUV422_YUY2 \ + ((MVE_CHROMA_FORMAT_422 << MVE_FORMAT_BF_C) | \ + ((8 - 8) << MVE_FORMAT_BF_B) | (1 << MVE_FORMAT_BF_N) | \ + (0 << MVE_FORMAT_BF_V)) + +#define MVE_FORMAT_YUV422_UYVY \ + ((MVE_CHROMA_FORMAT_422 << MVE_FORMAT_BF_C) | \ + ((8 - 8) << MVE_FORMAT_BF_B) | (1 << MVE_FORMAT_BF_N) | \ + (1 << MVE_FORMAT_BF_V)) + +#define MVE_FORMAT_YUV422_Y210 \ + ((MVE_CHROMA_FORMAT_422 << MVE_FORMAT_BF_C) | \ + ((16 - 8) << MVE_FORMAT_BF_B) | (1 << MVE_FORMAT_BF_N) | \ + (0 << MVE_FORMAT_BF_V)) + +#define MVE_FORMAT_YUV422_1P_10 \ + ((MVE_CHROMA_FORMAT_422 << MVE_FORMAT_BF_C) | \ + ((10 - 8) << MVE_FORMAT_BF_B) | (1 << MVE_FORMAT_BF_N) | \ + (0 << MVE_FORMAT_BF_V)) + +#define MVE_FORMAT_RGBA_8888 \ + ((MVE_CHROMA_FORMAT_ARGB << MVE_FORMAT_BF_C) | \ + ((8 - 8) << MVE_FORMAT_BF_B) | (1 << MVE_FORMAT_BF_N) | \ + (0 << MVE_FORMAT_BF_V)) + +#define MVE_FORMAT_BGRA_8888 \ + ((MVE_CHROMA_FORMAT_ARGB << MVE_FORMAT_BF_C) | \ + ((8 - 8) << MVE_FORMAT_BF_B) | (1 << MVE_FORMAT_BF_N) | \ + (1 << MVE_FORMAT_BF_V)) + +#define MVE_FORMAT_ARGB_8888 \ + ((MVE_CHROMA_FORMAT_ARGB << MVE_FORMAT_BF_C) | \ + ((8 - 8) << MVE_FORMAT_BF_B) | (1 << MVE_FORMAT_BF_N) | \ + (2 << MVE_FORMAT_BF_V)) + +#define MVE_FORMAT_ABGR_8888 \ + ((MVE_CHROMA_FORMAT_ARGB << MVE_FORMAT_BF_C) | \ + ((8 - 8) << MVE_FORMAT_BF_B) | (1 << MVE_FORMAT_BF_N) | \ + (3 << MVE_FORMAT_BF_V)) +#define MVE_FORMAT_Y \ + ((MVE_CHROMA_FORMAT_MONO << MVE_FORMAT_BF_C) | \ + ((8 - 8) << MVE_FORMAT_BF_B) | (1 << MVE_FORMAT_BF_N) | \ + (0 << MVE_FORMAT_BF_V)) +#define MVE_FORMAT_Y_10 \ + ((MVE_CHROMA_FORMAT_MONO << MVE_FORMAT_BF_C) | \ + ((10 - 8) << MVE_FORMAT_BF_B) | (1 << MVE_FORMAT_BF_N) | \ + (0 << MVE_FORMAT_BF_V)) + +#define MVE_FORMAT_RGB_888 \ + ((MVE_CHROMA_FORMAT_RGB << MVE_FORMAT_BF_C) | \ + ((8 - 8) << MVE_FORMAT_BF_B) | (1 << MVE_FORMAT_BF_N) | \ + (0 << MVE_FORMAT_BF_V)) + +#define MVE_FORMAT_BGR_888 \ + ((MVE_CHROMA_FORMAT_RGB << MVE_FORMAT_BF_C) | \ + ((8 - 8) << MVE_FORMAT_BF_B) | (1 << MVE_FORMAT_BF_N) | \ + (1 << MVE_FORMAT_BF_V)) + +#define MVE_FORMAT_RGB_3P \ + ((MVE_CHROMA_FORMAT_RGB << MVE_FORMAT_BF_C) | \ + ((8 - 8) << MVE_FORMAT_BF_B) | (3 << MVE_FORMAT_BF_N) | \ + (0 << MVE_FORMAT_BF_V)) +#define MVE_FORMAT_YUV444 \ + ((MVE_CHROMA_FORMAT_444 << MVE_FORMAT_BF_C) | \ + ((8 - 8) << MVE_FORMAT_BF_B) | (3 << MVE_FORMAT_BF_N) | \ + (0 << MVE_FORMAT_BF_V)) +#define MVE_FORMAT_YUV444_10 \ + ((MVE_CHROMA_FORMAT_444 << MVE_FORMAT_BF_C) | \ + ((10 - 8) << MVE_FORMAT_BF_B) | (3 << MVE_FORMAT_BF_N) | \ + (0 << MVE_FORMAT_BF_V)) +#define MVE_FORMAT_ARGB_1555 \ + ((MVE_CHROMA_FORMAT_OSD_ARGB << MVE_FORMAT_BF_C) | \ + ((8 - 8) << MVE_FORMAT_BF_B) | (1 << MVE_FORMAT_BF_N) | \ + (0 << MVE_FORMAT_BF_V)) +#define MVE_FORMAT_ARGB_4444 \ + ((MVE_CHROMA_FORMAT_OSD_ARGB << MVE_FORMAT_BF_C) | \ + ((8 - 8) << MVE_FORMAT_BF_B) | (1 << MVE_FORMAT_BF_N) | \ + (1 << MVE_FORMAT_BF_V)) +#define MVE_FORMAT_RGB_565 \ + ((MVE_CHROMA_FORMAT_OSD_ARGB << MVE_FORMAT_BF_C) | \ + ((8 - 8) << MVE_FORMAT_BF_B) | (1 << MVE_FORMAT_BF_N) | \ + (2 << MVE_FORMAT_BF_V)) + +#define MVE_FORMAT_MBINFO (0x0001) /* only used for debugging */ + +#define MVE_FORMAT_UNUSED (0x0000) + + //uint16_t reserved0; /* force 'data' to be 4-byte aligned */ + uint8_t frame_type; /* ADD_FRAME_TYPE_TO_PIC_JOB */ + uint8_t frame_flags_ext; /* add osd buffer tag to separate osd & source */ +#define OSD1_TAG 0x80 /* use bit7 stand for osd_1 */ +#define OSD0_TAG 0x40 /* use bit6 stand for osd_1 */ + + union { + struct mve_buffer_frame_planar planar; + struct mve_buffer_frame_afbc afbc; + } data; + + //uint32_t reserved1; /* force size to be multiple of 8 bytes */ + uint16_t mini_frame_y_start; + uint16_t mini_frame_y_end; +}; + +/* The bitstream buffer stores a number of bitstream bytes */ +struct mve_buffer_bitstream { + /* For identification of the buffer, this is not changed by + * the firmware. + */ + uint64_t host_handle; + + /* For matching input buffer with output buffers, the firmware + * copies these values between frame buffers and bitstream buffers. + */ + uint64_t user_data_tag; + + /* BufferFlags */ + uint32_t bitstream_flags; +#define MVE_BUFFER_BITSTREAM_FLAG_EOS (0x00000001) +#define MVE_BUFFER_BITSTREAM_FLAG_ENDOFFRAME (0x00000010) +#define MVE_BUFFER_BITSTREAM_FLAG_SYNCFRAME (0x00000020) +#define MVE_BUFFER_BITSTREAM_FLAG_CODECCONFIG (0x00000080) +#define MVE_BUFFER_BITSTREAM_FLAG_ENDOFSUBFRAME (0x00000400) +#define MVE_BUFFER_BITSTREAM_FLAG_ENC_STATS (0x00010000) +#define MVE_BUFFER_BITSTREAM_FLAG_BSEOF (0x00100000) + + /* Length of allocated buffer */ + uint32_t bitstream_alloc_bytes; + + /* Byte offset from start to first byte */ + uint32_t bitstream_offset; + + /* Number of bytes in the buffer */ + uint32_t bitstream_filled_len; + + /* Pointer to buffer start */ + uint32_t bitstream_buf_addr; + + /* frame_type. 0:I, 1:p, 2:B, 3:b */ + uint8_t frame_type; +#define MVE_FRAME_TYPE_I 0 +#define MVE_FRAME_TYPE_P 1 +#define MVE_FRAME_TYPE_B 2 // B frame +#define MVE_FRAME_TYPE_LOWER_B 3 // b frame +#define MVE_FRAME_TYPE_P_KEY 4 +#define MVE_FRAME_TYPE_NO_REF_P 5 // only svct3 +#define MVE_FRAME_TYPE_GDR 6 // GDR + + uint8_t src_transform; +#define MVE_SRC_TRANSFORM_NONE (0) // none src transform +#define MVE_SRC_TRANSFORM_R90 (1) // rotate 90 degrees +#define MVE_SRC_TRANSFORM_R180 (2) // rotate 180 degrees +#define MVE_SRC_TRANSFORM_R270 (3) // rotate 270 degrees +#define MVE_SRC_TRANSFORM_VFLIP (4) // vertical flip (no rotation) +#define MVE_SRC_TRANSFORM_R90_VFLIP (5) // rotate 90 degrees and vertical flip +#define MVE_SRC_TRANSFORM_R180_VFLIP (6) // rotate 180 degrees and vertical flip +#define MVE_SRC_TRANSFORM_R270_VFLIP (7) // rotate 270 degrees and vertical flip + + /* Pad to force 8-byte alignment */ + //uint32_t reserved; + uint16_t bitstream_remaining_kb; // remaining kbytes of bitstream not returned to host. +}; + +/* + * Define a region in 16x16 units + * + * The region is macroblock positions (x,y) in the range + * mbx_left <= x < mbx_right + * mby_top <= y < mby_bottom + */ +struct mve_buffer_param_region { + uint16_t mbx_left; /* macroblock x left edge (inclusive) */ + uint16_t mbx_right; /* macroblock x right edge (exclusive) */ + uint16_t mby_top; /* macroblock y top edge (inclusive) */ + uint16_t mby_bottom; /* macroblock y bottom edge (exclusive) */ + int16_t qp_delta; + /* QP delta value for this region, this + * delta applies to QP values in the ranges: + * H264: 0-51 + * HEVC: 0-51 + * VP9: 0-255 + */ + uint8_t prio; /* the priority of this region */ + uint8_t force_intra; + /* force intra to this ROI region, refer to macro: FEATURE_SUPPORT_ROI_MISC */ +}; + +/* input for encoder, + * the mve_buffer_param_regions buffer stores the information for FRAME buffers, + * and the information for regions of interest. + */ +struct mve_buffer_param_regions { + uint8_t n_regions; /* Number of regions */ + uint8_t reserved[3]; +#define MVE_MAX_FRAME_REGIONS 16 + struct mve_buffer_param_region region[MVE_MAX_FRAME_REGIONS]; +}; + +/* the block parameter record specifies the various properties of a quad */ +struct mve_block_param_record { + uint32_t qp_delta; /* Bitset of four 4-bit QP delta values for a quad */ +#define MVE_BLOCK_PARAM_RECORD_QP_DELTA_TOP_LEFT_16X16 (0) +#define MVE_BLOCK_PARAM_RECORD_QP_DELTA_TOP_LEFT_16X16_SZ (6) +#define MVE_BLOCK_PARAM_RECORD_QP_DELTA_TOP_RIGHT_16X16 (6) +#define MVE_BLOCK_PARAM_RECORD_QP_DELTA_TOP_RIGHT_16X16_SZ (6) +#define MVE_BLOCK_PARAM_RECORD_QP_DELTA_BOT_LEFT_16X16 (12) +#define MVE_BLOCK_PARAM_RECORD_QP_DELTA_BOT_LEFT_16X16_SZ (6) +#define MVE_BLOCK_PARAM_RECORD_QP_DELTA_BOT_RIGHT_16X16 (18) +#define MVE_BLOCK_PARAM_RECORD_QP_DELTA_BOT_RIGHT_16X16_SZ (6) +#define MVE_BLOCK_PARAM_RECORD_QP_FORCE_FIELD (24) +#define MVE_BLOCK_PARAM_RECORD_QP_FORCE_FIELD_SZ (5) +#define MVE_BLOCK_PARAM_RECORD_QUAD_FORCE_INTRA (29) +#define MVE_BLOCK_PARAM_RECORD_QUAD_FORCE_INTRA_SZ (1) +#define MVE_BLOCK_PARAM_RECORD_QP_ABSOLUTE (30) +#define MVE_BLOCK_PARAM_RECORD_QP_ABSOLUTE_SZ (1) +#define MVE_BLOCK_PARAM_RECORD_QP_QUAD_SKIP (31) +#define MVE_BLOCK_PARAM_RECORD_QP_QUAD_SKIP_SZ (1) + +#define MVE_BLOCK_PARAM_RECORD_FORCE_NONE (0x00) +#define MVE_BLOCK_PARAM_RECORD_FORCE_QP (0x01) + uint32_t min_qp; +#define MVE_BLOCK_PARAM_RECORD_MIN_QP_TOP_LEFT_16X16 (0) +#define MVE_BLOCK_PARAM_RECORD_MIN_QP_TOP_LEFT_16X16_SZ (6) +#define MVE_BLOCK_PARAM_RECORD_MIN_QP_TOP_RIGHT_16X16 (6) +#define MVE_BLOCK_PARAM_RECORD_MIN_QP_TOP_RIGHT_16X16_SZ (6) +#define MVE_BLOCK_PARAM_RECORD_MIN_QP_BOT_LEFT_16X16 (12) +#define MVE_BLOCK_PARAM_RECORD_MIN_QP_BOT_LEFT_16X16_SZ (6) +#define MVE_BLOCK_PARAM_RECORD_MIN_QP_BOT_RIGHT_16X16 (18) +#define MVE_BLOCK_PARAM_RECORD_MIN_QP_BOT_RIGHT_16X16_SZ (6) +#define MVE_BLOCK_PARAM_RECORD_QUAD_SELECT_QP_DELTA (24) +#define MVE_BLOCK_PARAM_RECORD_QUAD_SELECT_QP_DELTA_SZ (1) +}; + +/* block configuration uncompressed rows header. this configures the size of the + * uncompressed body. + */ +struct mve_buffer_general_rows_uncomp_hdr { + uint8_t n_cols_minus1; /* number of quad cols in picture minus 1 */ + uint8_t n_rows_minus1; /* number of quad rows in picture minus 1 */ + uint8_t reserved[2]; +}; + +/* block configuration uncompressed rows body. this structure contains an array + * of block parameter records whose length is (n_cols_minus1 + 1) * (n_rows_minus1 + 1) + * elements. therefore the allocation of this structure needs to be dynamic and + * a pointer to the allocated memory should then be assigned to the general + * purpose buffer data pointer + */ +struct mve_buffer_general_rows_uncomp_body { + /* the size of this array is variable and not necessarily equal to 1. + * therefore the sizeof operator should not be used + */ + struct mve_block_param_record bpr[2]; +}; + +/* input for encoder, block level configurations. + * the row based block configurations can be defined in different formats. they + * are stored in the blk_cfgs union and identified by the blk_cfg_type member. + * these definitions consist of a header and body pair. the header part contains + * configuration information for the body. the body part describes the actual + * layout of the data buffer pointed to by the mve_buffer_general_hdr buffer_ptr. + */ +struct mve_buffer_general_block_configs { + uint8_t blk_cfg_type; +#define MVE_BLOCK_CONFIGS_TYPE_NONE (0x00) +#define MVE_BLOCK_CONFIGS_TYPE_ROW_UNCOMP (0xff) + uint8_t reserved[3]; + union { + struct mve_buffer_general_rows_uncomp_hdr rows_uncomp; + } blk_cfgs; +}; + +/* input for encoder */ +struct mve_buffer_param_qp { + /* QP (quantization parameter) for encode. + * + * When used to set fixed QP for encode, with rate control + * disabled, then the valid ranges are: + * H264: 0-51 + * HEVC: 0-51 + * VP8: 0-63 + * VP9: 0-63 + * Note: The QP must be set separately for I, P and B frames. + * + * But when this message is used with the regions-feature, + * then the valid ranges are the internal bitstream ranges: + * H264: 0-51 + * HEVC: 0-51 + * VP8: 0-127 + * VP9: 0-255 + */ + int32_t qp; + int32_t epr_iframe_enable; +}; + +struct mve_reset_gop_dynamic { + uint32_t reset_gop_pframes; +}; + +struct mve_reset_ltr_separate_dynamic { + uint32_t reset_ltr_separate_pframes; +}; + +/* output from decoder */ +struct mve_buffer_param_display_size { + uint16_t display_width; + uint16_t display_height; +}; + +/* output from decoder, colour information needed for hdr */ +struct mve_buffer_param_colour_description { + uint32_t flags; +#define MVE_BUFFER_PARAM_COLOUR_FLAG_MASTERING_DISPLAY_DATA_VALID (1) +#define MVE_BUFFER_PARAM_COLOUR_FLAG_CONTENT_LIGHT_DATA_VALID (2) + + uint8_t range; /* Unspecified=0, Limited=1, Full=2 */ +#define MVE_BUFFER_PARAM_COLOUR_RANGE_UNSPECIFIED (0) +#define MVE_BUFFER_PARAM_COLOUR_RANGE_LIMITED (1) +#define MVE_BUFFER_PARAM_COLOUR_RANGE_FULL (2) + + uint8_t colour_primaries; /* see hevc spec. E.3.1 */ + uint8_t transfer_characteristics; /* see hevc spec. E.3.1 */ + uint8_t matrix_coeff; /* see hevc spec. E.3.1 */ + + uint16_t mastering_display_primaries_x[3]; /* see hevc spec. D.3.27 */ + uint16_t mastering_display_primaries_y[3]; /* see hevc spec. D.3.27 */ + uint16_t mastering_white_point_x; /* see hevc spec. D.3.27 */ + uint16_t mastering_white_point_y; /* see hevc spec. D.3.27 */ + uint32_t max_display_mastering_luminance; /* see hevc spec. D.3.27 */ + uint32_t min_display_mastering_luminance; /* see hevc spec. D.3.27 */ + + uint32_t max_content_light_level; /* see hevc spec. D.3.35 */ + uint32_t avg_content_light_level; /* see hevc spec. D.3.35 */ + + uint8_t video_format_present_flag; + uint8_t video_format; + uint8_t aspect_ratio_info_present_flag; + uint8_t aspect_ratio_idc; + uint8_t timing_flag_info_present_flag; + uint16_t sar_width; + uint16_t sar_height; + uint32_t num_units_in_tick; + uint32_t time_scale; + + uint8_t pad[7]; // pad for 8-byte alignment +}; + +struct mve_buffer_param_sei_user_data_unregistered { + uint8_t flags; +#define MVE_BUFFER_PARAM_USER_DATA_UNREGISTERED_VALID (1) + uint8_t uuid[16]; + char user_data[256 - 35]; + uint8_t user_data_len; + + uint8_t reserved[5]; +}; + +/* output from decoder see hevc spec. D.3.3 */ +struct mve_buffer_param_frame_field_info { + uint8_t pic_struct; + uint8_t source_scan_type; + uint8_t duplicate_flag; + uint8_t reserved; +}; + +/* output from decoder, VC-1 specific feature only relevant + * if using AFBC output + */ +struct mve_buffer_param_range_map { + uint8_t luma_map_enabled; + uint8_t luma_map_value; + uint8_t chroma_map_enabled; + uint8_t chroma_map_value; +}; + +/* input for encoder */ +struct mve_buffer_param_rate_control { + uint32_t rate_control_mode; +#define MVE_OPT_RATE_CONTROL_MODE_OFF (0) +#define MVE_OPT_RATE_CONTROL_MODE_STANDARD (1) +#define MVE_OPT_RATE_CONTROL_MODE_VARIABLE (2) +#define MVE_OPT_RATE_CONTROL_MODE_CONSTANT (3) +#define MVE_OPT_RATE_CONTROL_MODE_C_VARIABLE (4) + uint32_t target_bitrate; /* in bits per second */ + uint32_t maximum_bitrate; /* in bits per second */ +}; + +/* input for encoder */ +struct mve_buffer_param_rate_control_qp_range { + int32_t qp_min; + int32_t qp_max; +}; + +/* input for encoder, see hevc spec. D.3.16 */ +struct mve_buffer_param_frame_packing { + uint32_t flags; +#define MVE_BUFFER_PARAM_FRAME_PACKING_FLAG_QUINCUNX_SAMPLING (1) +#define MVE_BUFFER_PARAM_FRAME_PACKING_FLAG_SPATIAL_FLIPPING (2) +#define MVE_BUFFER_PARAM_FRAME_PACKING_FLAG_FRAME0_FLIPPED (4) +#define MVE_BUFFER_PARAM_FRAME_PACKING_FLAG_FIELD_VIEWS (8) +#define MVE_BUFFER_PARAM_FRAME_PACKING_FLAG_CURRENT_FRAME_IS_FRAME0 (16) + + uint8_t frame_packing_arrangement_type; + uint8_t content_interpretation_type; + + uint8_t frame0_grid_position_x; + uint8_t frame0_grid_position_y; + uint8_t frame1_grid_position_x; + uint8_t frame1_grid_position_y; + + uint8_t reserved[2]; +}; + +struct mve_buffer_param_rectangle { + uint16_t x_left; /* pixel x left edge (inclusive) */ + uint16_t x_right; /* pixel x right edge (exclusive) */ + uint16_t y_top; /* pixel y top edge (inclusive) */ + uint16_t y_bottom; /* pixel y bottom edge (exclusive) */ +}; + +/* input for encoder, + * indicate which parts of the source picture has changed. + * The encoder can (optionally) use this information to + * reduce memory bandwidth. + * + * n_rectangles=0 indicates the source picture is unchanged. + * + * This parameter only applies to the picture that immediately + * follows (and not to subsequent ones). + */ +struct mve_buffer_param_change_rectangles { + uint8_t n_rectangles; /* Number of rectangles */ + uint8_t reserved[3]; +#define MVE_MAX_FRAME_CHANGE_RECTANGLES 2 + struct mve_buffer_param_rectangle + rectangles[MVE_MAX_FRAME_CHANGE_RECTANGLES]; +}; + +struct t_mve_buffer_param_osd_cfg { + uint8_t osd_inside_enable; + uint8_t osd_inside_alpha_enable; + uint8_t osd_inside_convert_color_enable; + uint8_t osd_inside_alpha_value; /* as alpha range [0~16], use u8 */ + uint8_t osd_inside_convert_color_threshold; + /* threshold range [0~255], if input is 10bit, th * 4 */ + uint8_t osd_inside_rgb2yuv_mode; /* 0-601L, 1-601F, 2-709_L, 3-709_F */ + uint16_t osd_inside_start_x; /* pixel x left edge (inclusive) */ + uint16_t osd_inside_start_y; /* pixel y top edge (inclusive) */ + uint16_t reserved[3]; +}; + +struct mve_buffer_param_osd_rectangles { + #define MVE_MAX_FRAME_OSD_REGION 2 + struct t_mve_buffer_param_osd_cfg osd_single_cfg[MVE_MAX_FRAME_OSD_REGION]; +}; + +/* Parameters that are sent in the same communication channels + * as the buffers. A parameter applies to all subsequent buffers. + * Some types are only valid for decode, and some only for encode. + */ +struct mve_buffer_param { + uint32_t type; /* Extra data: */ +#define MVE_BUFFER_PARAM_TYPE_QP (2) /* qp */ +#define MVE_BUFFER_PARAM_TYPE_REGIONS (3) /* regions */ +#define MVE_BUFFER_PARAM_TYPE_DISPLAY_SIZE (5) /* display_size */ +#define MVE_BUFFER_PARAM_TYPE_RANGE_MAP (6) /* range_map */ +#define MVE_BUFFER_PARAM_TYPE_FRAME_RATE \ + (9) + /* arg, in frames per second, as a fixed point Q16 value, + * for example 0x001e0000 == 30.0 fps + */ +#define MVE_BUFFER_PARAM_TYPE_RATE_CONTROL (10) /* rate_control */ +#define MVE_BUFFER_PARAM_TYPE_QP_I \ + (12) /* qp for I frames, when no rate control */ +#define MVE_BUFFER_PARAM_TYPE_QP_P \ + (13) /* qp for P frames, when no rate control */ +#define MVE_BUFFER_PARAM_TYPE_QP_B \ + (14) /* qp for B frames, when no rate control */ +#define MVE_BUFFER_PARAM_TYPE_COLOUR_DESCRIPTION (15) /* colour_description */ +#define MVE_BUFFER_PARAM_TYPE_FRAME_PACKING (16) /* frame_packing */ +#define MVE_BUFFER_PARAM_TYPE_FRAME_FIELD_INFO (17) /* frame_field_info */ +#define MVE_BUFFER_PARAM_TYPE_GOP_RESET (18) /* no extra data */ +#define MVE_BUFFER_PARAM_TYPE_DPB_HELD_FRAMES \ + (19) + /* arg, number of output buffers that are complete and held by firmware + * in the DPB for reordering purposes. Valid after the next frame is output + */ +#define MVE_BUFFER_PARAM_TYPE_CHANGE_RECTANGLES (20) /* change rectangles */ +#define MVE_BUFFER_PARAM_TYPE_RATE_CONTROL_QP_RANGE \ + (21) /* rate_control_qp_range */ +#define MVE_BUFFER_PARAM_TYPE_RATE_CONTROL_HRD_BUF_SIZE (23) /* arg */ +#define MVE_BUFFER_PARAM_TYPE_RATE_CONTROL_QP_RANGE_I \ + (25) /* special range for I frames, ate_control_qp_range */ +#define MVE_BUFFER_PARAM_TYPE_SEI_USER_DATA_UNREGISTERED \ + (26) /* sei user_data_unregistered */ +#define MVE_BUFFER_PARAM_TYPE_GOP_RESET_DYNAMIC (27) +#define MVE_BUFFER_PARAM_TYPE_GOP_RESET_LTR_separate_DYNAMIC \ + (28) /* reset ltr separate dynamiclly */ +#define MVE_BUFFER_PARAM_TYPE_ENC_STATS (29) /* encode stats */ +#define MVE_BUFFER_PARAM_TYPE_OSD_RECTANGLES (30) /* osd rectangles */ +#define MVE_BUFFER_PARAM_TYPE_RATE_CONTROL_CHANGE_POS (31) + + union { + uint32_t arg; /* some parameters only need a uint32_t as argument */ + struct mve_buffer_param_qp qp; + struct mve_reset_gop_dynamic reset_gop_dynamic; + struct mve_reset_ltr_separate_dynamic reset_ltr_separate_dynamic; + struct mve_buffer_param_regions regions; + struct mve_buffer_param_display_size display_size; + struct mve_buffer_param_range_map range_map; + struct mve_buffer_param_rate_control rate_control; + struct mve_buffer_param_rate_control_qp_range + rate_control_qp_range; + struct mve_buffer_param_colour_description colour_description; + struct mve_buffer_param_frame_packing frame_packing; + struct mve_buffer_param_frame_field_info frame_field_info; + struct mve_buffer_param_change_rectangles change_rectangles; + struct mve_buffer_param_sei_user_data_unregistered + user_data_unregistered; + struct mve_buffer_param_enc_stats enc_stats; + struct mve_buffer_param_osd_rectangles osd_rectangles_buff; + } data; +}; + +/* output from decoder, assertive display statistics. + * buffer_ptr points to a buffer of luma quad average values for the picture + * that can be used as a thumbnail. the type of content used to generate the + * assertive display statistics is indicated by MVE_AD_STATS_PIC_FMT_INTERLACED. + * for progressive content; the arrangement is in raster format with dimensions + * thumbnail_width by thumbnail_height. the overall frame average luma and + * chroma values are returned in frame_average. + * for interlaced content; the arrangement is in raster format, top field + * followed by bottom field with each field having dimensions thumbnail_width by + * thumbnail_height. the field averages for luma and chroma values are combined + * and returned in an overall value for the frame (frame_average). + */ +struct mve_buffer_general_ad_stats { + uint32_t frame_averages; +// bitfields +#define MVE_AD_STATS_PIC_AVGS_Y (0) +#define MVE_AD_STATS_PIC_AVGS_Y_SZ (12) +#define MVE_AD_STATS_PIC_AVGS_CB (12) +#define MVE_AD_STATS_PIC_AVGS_CB_SZ (10) +#define MVE_AD_STATS_PIC_AVGS_CR (22) +#define MVE_AD_STATS_PIC_AVGS_CR_SZ (10) + uint16_t thumbnail_width; + uint16_t thumbnail_height; + uint8_t ad_stats_flags; +#define MVE_AD_STATS_PIC_FMT_PROGRESSIVE (0) +#define MVE_AD_STATS_PIC_FMT_INTERLACED (1) + uint8_t reserved[3]; +}; + +/* The general purpose buffer header stores the common fields of an + * mve_buffer_general. it contains the pointer to the data buffer that contains + * the general purpose data + */ +struct mve_buffer_general_hdr { + /* For identification of the buffer, this is not changed by the firmware. */ + uint64_t host_handle; + + /* this depends upon the type of the general purpose buffer */ + uint64_t user_data_tag; + + /* pointer to the buffer containing the general purpose data. the format + * of this data is defined by the configuration in the mve_buffer_general + */ + uint32_t buffer_ptr; + + /* size of the buffer pointed to by buffer_ptr */ + uint32_t buffer_size; + + /* selects the type of semantics to use for the general purpose buffer. it + * tags (or discriminates) the union config member in mve_buffer_general + */ + uint16_t type; /* Extra data: */ +#define MVE_BUFFER_GENERAL_TYPE_INVALID (0) /* invalid */ +#define MVE_BUFFER_GENERAL_TYPE_BLOCK_CONFIGS (1) /* block_configs */ +#define MVE_BUFFER_GENERAL_TYPE_AD_STATS (2) /* assertive display statistics */ + /* size of the mve_buffer_general config member */ + uint16_t config_size; + + /* pad to force 8-byte alignment */ + uint32_t reserved; +}; + +/* The general purpose buffer consists of a header and a configuration. The + * header contains a pointer to a buffer whose format is described by the + * configuration. The type of configuration is indicated by the type value in + * the header. N.B. In use, the size of the config part of this structure is + * defined in the header and is not necessarily equal to that returned by the + * sizeof() operator. This allows a more size efficient communication between + * the host and firmware. + */ +struct mve_buffer_general { + struct mve_buffer_general_hdr header; + + /* used to describe the configuration of the general purpose buffer data + * pointed to be buffer_ptr + */ + union { + struct mve_buffer_general_block_configs block_configs; + struct mve_buffer_general_ad_stats ad_stats; + } config; +}; + +#ifdef __cplusplus +} +#endif + +#endif /* __FW_INCLUDE__MVE_PROTOCOL_DEF_H__ */ diff --git a/drivers/media/platform/canaan/vpu/mvx-v4l2-controls.h b/drivers/media/platform/canaan/vpu/mvx-v4l2-controls.h new file mode 100644 index 0000000000000..402bd5a045e65 --- /dev/null +++ b/drivers/media/platform/canaan/vpu/mvx-v4l2-controls.h @@ -0,0 +1,709 @@ +/* SPDX-License-Identifier: GPL-2.0-only + * The confidential and proprietary information contained in this file may + * only be used by a person authorised under and to the extent permitted + * by a subsisting licensing agreement from Arm Technology (China) Co., Ltd. + * + * (C) COPYRIGHT 2021-2021 Arm Technology (China) Co., Ltd. + * ALL RIGHTS RESERVED + * + * This entire notice must be reproduced on all copies of this file + * and copies of this file may only be made by a person if such person is + * permitted to do so under the terms of a subsisting license agreement + * from Arm Technology (China) Co., Ltd. + * + * 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. + * + */ + +#ifndef _MVX_V4L2_CONTROLS_H_ +#define _MVX_V4L2_CONTROLS_H_ + +/**************************************************************************** + * Includes + ****************************************************************************/ + +#include +#include +#include +#include + +/**************************************************************************** + * Pixel formats + ****************************************************************************/ + +#define V4L2_PIX_FMT_YUV420_AFBC_8 v4l2_fourcc('Y', '0', 'A', '8') +#define V4L2_PIX_FMT_YUV420_AFBC_10 v4l2_fourcc('Y', '0', 'A', 'A') +#define V4L2_PIX_FMT_YUV422_AFBC_8 v4l2_fourcc('Y', '2', 'A', '8') +#define V4L2_PIX_FMT_YUV422_AFBC_10 v4l2_fourcc('Y', '2', 'A', 'A') +#define V4L2_PIX_FMT_AQB1 v4l2_fourcc('Y', '0', 'A', 'B') +#define V4L2_PIX_FMT_Y210 v4l2_fourcc('Y', '2', '1', '0') +#define V4L2_PIX_FMT_Y0L2 v4l2_fourcc('Y', '0', 'Y', 'L') +#define V4L2_PIX_FMT_RGB_3P v4l2_fourcc('R', 'G', 'B', 'M') + +#define V4L2_PIX_FMT_Y10_LE v4l2_fourcc('Y', '1', '0', 'L') +#define V4L2_PIX_FMT_YUV444_10 v4l2_fourcc('Y', '4', 'P', '3') +#define V4L2_PIX_FMT_YUV422_1P_10 v4l2_fourcc('Y', '2', 'P', '1') +#define V4L2_PIX_FMT_YUV420_2P_10 v4l2_fourcc('Y', '0', 'P', '2') +#define V4L2_PIX_FMT_YUV420_I420_10 v4l2_fourcc('Y', '0', 'P', '3') + +#define V4L2_PIX_FMT_RV v4l2_fourcc('R', 'V', '0', '0') + +#ifndef V4L2_PIX_FMT_HEVC +#define V4L2_PIX_FMT_HEVC v4l2_fourcc('H', 'E', 'V', 'C') +#endif + +#ifndef V4L2_PIX_FMT_VP9 +#define V4L2_PIX_FMT_VP9 v4l2_fourcc('V', 'P', '9', '0') +#endif + +#ifndef V4L2_PIX_FMT_AV1 +#define V4L2_PIX_FMT_AV1 v4l2_fourcc('A', 'V', '1', '0') +#endif + +#define V4L2_PIX_FMT_AVS v4l2_fourcc('A', 'V', 'S', '1') +#define V4L2_PIX_FMT_AVS2 v4l2_fourcc('A', 'V', 'S', '2') + +#ifndef V4L2_CID_MPEG_VIDEO_HEVC_MIN_QP +#define V4L2_CID_MPEG_VIDEO_HEVC_MIN_QP (V4L2_CID_MPEG_BASE + 600) +#endif +#ifndef V4L2_CID_MPEG_VIDEO_HEVC_MAX_QP +#define V4L2_CID_MPEG_VIDEO_HEVC_MAX_QP (V4L2_CID_MPEG_BASE + 601) +#endif +#ifndef V4L2_CID_MPEG_VIDEO_HEVC_I_FRAME_QP +#define V4L2_CID_MPEG_VIDEO_HEVC_I_FRAME_QP (V4L2_CID_MPEG_BASE + 602) +#endif +#ifndef V4L2_CID_MPEG_VIDEO_HEVC_P_FRAME_QP +#define V4L2_CID_MPEG_VIDEO_HEVC_P_FRAME_QP (V4L2_CID_MPEG_BASE + 603) +#endif +#ifndef V4L2_CID_MPEG_VIDEO_HEVC_B_FRAME_QP +#define V4L2_CID_MPEG_VIDEO_HEVC_B_FRAME_QP (V4L2_CID_MPEG_BASE + 604) +#endif +/**************************************************************************** + * Buffers + * @see v4l2_buffer + ****************************************************************************/ + +/* + * Extended buffer flags. + */ + +// #define V4L2_BUF_FLAG_MVX_DECODE_ONLY 0x01000000 +// #define V4L2_BUF_FLAG_MVX_CODEC_CONFIG 0x02000000 +// #define V4L2_BUF_FLAG_MVX_AFBC_TILED_HEADERS 0x10000000 +// #define V4L2_BUF_FLAG_MVX_AFBC_TILED_BODY 0x20000000 +// #define V4L2_BUF_FLAG_MVX_AFBC_32X8_SUPERBLOCK 0x40000000 +// #define V4L2_BUF_FLAG_MVX_MASK 0xff000000 +// #define V4L2_BUF_FLAG_END_OF_SUB_FRAME 0x04000000 +// #define V4L2_BUF_FLAG_MVX_BUFFER_FRAME_PRESENT 0x08000000 +// #define V4L2_BUF_FLAG_MVX_BUFFER_NEED_REALLOC 0x07000000 + + +// #define V4L2_BUF_FRAME_FLAG_ROTATION_90 0x81000000 +// #define V4L2_BUF_FRAME_FLAG_ROTATION_180 0x82000000 +// #define V4L2_BUF_FRAME_FLAG_ROTATION_270 0x83000000 +// #define V4L2_BUF_FRAME_FLAG_ROTATION_MASK 0x83000000 +// #define V4L2_BUF_FRAME_FLAG_MIRROR_HORI 0x90000000 +// #define V4L2_BUF_FRAME_FLAG_MIRROR_VERT 0xA0000000 +// #define V4L2_BUF_FRAME_FLAG_MIRROR_MASK 0xB0000000 +// #define V4L2_BUF_FRAME_FLAG_SCALING_2 0x84000000 +// #define V4L2_BUF_FRAME_FLAG_SCALING_4 0x88000000 +// #define V4L2_BUF_FRAME_FLAG_SCALING_MASK 0x8C000000 + +// #define V4L2_BUF_FLAG_MVX_BUFFER_EPR 0xC0000000 +// #define V4L2_BUF_FLAG_MVX_BUFFER_ROI 0x70000000 + +//redefine these flags +/*use encode/decode frame/bitstream to update these flags*/ + +#define V4L2_BUF_FLAG_MVX_MASK 0xfff00000 + +//for decode frame flag +#define V4L2_BUF_FRAME_FLAG_ROTATION_90 \ + 0x01000000 /* Frame is rotated 90 degrees */ +#define V4L2_BUF_FRAME_FLAG_ROTATION_180 \ + 0x02000000 /* Frame is rotated 180 degrees */ +#define V4L2_BUF_FRAME_FLAG_ROTATION_270 \ + 0x03000000 /* Frame is rotated 270 degrees */ +#define V4L2_BUF_FRAME_FLAG_ROTATION_MASK 0x03000000 +#define V4L2_BUF_FRAME_FLAG_SCALING_2 0x04000000 /* Frame is scaled by half */ +#define V4L2_BUF_FRAME_FLAG_SCALING_4 \ + 0x08000000 /* Frame is scaled by quarter */ +#define V4L2_BUF_FRAME_FLAG_SCALING_MASK 0x0C000000 +#define V4L2_BUF_FLAG_MVX_BUFFER_FRAME_PRESENT 0x10000000 +#define V4L2_BUF_FLAG_MVX_BUFFER_NEED_REALLOC 0x20000000 + +//for decode bitstream flag +#define V4L2_BUF_FLAG_MVX_CODEC_CONFIG 0xC1000000 +#define V4L2_BUF_FLAG_END_OF_SUB_FRAME 0xC2000000 +#define V4L2_BUF_FLAG_MVX_DECODE_ONLY 0xC4000000 + +//for encode frame flag +#define V4L2_BUF_FRAME_FLAG_MIRROR_HORI 0x01000000 +#define V4L2_BUF_FRAME_FLAG_MIRROR_VERT 0x02000000 +#define V4L2_BUF_FRAME_FLAG_MIRROR_MASK 0x03000000 +#define V4L2_BUF_ENCODE_FLAG_ROTATION_90 \ + 0x10000000 /* Frame is rotated 90 degrees */ +#define V4L2_BUF_ENCODE_FLAG_ROTATION_180 \ + 0x20000000 /* Frame is rotated 180 degrees */ +#define V4L2_BUF_ENCODE_FLAG_ROTATION_270 \ + 0x30000000 /* Frame is rotated 270 degrees */ +#define V4L2_BUF_ENCODE_FLAG_ROTATION_MASK 0x30000000 + +#define V4L2_BUF_FLAG_MVX_BUFFER_ROI \ + 0x04000000 /* this buffer has a roi region */ +#define V4L2_BUF_FLAG_MVX_BUFFER_EPR 0x08000000 /* EPR buffer flag */ +#define V4L2_BUF_FLAG_MVX_BUFFER_GENERAL 0x08000000 +#define V4L2_BUF_FLAG_MVX_BUFFER_CHR 0x40000000 +#define V4L2_BUF_FLAG_MVX_BUFFER_GOP_RESET 0x80000000 /* reset GOP */ +#define V4L2_BUF_FLAG_MVX_BUFFER_LTR_RESET 0x00200000 /* reset GOP */ +#define V4L2_BUF_FLAG_MVX_BUFFER_ENC_STATS 0x00400000 /* reset LTR */ + +//afbc flag +#define V4L2_BUF_FLAG_MVX_AFBC_TILED_HEADERS 0x01000000 +#define V4L2_BUF_FLAG_MVX_AFBC_TILED_BODY 0x02000000 +#define V4L2_BUF_FLAG_MVX_AFBC_32X8_SUPERBLOCK 0x04000000 + +//for customeized flag, set to v4l2_buffer.reserved2 +#define V4L2_BUF_FLAG_MVX_MINIFRAME 0x00000001 +#define V4L2_BUF_FLAG_MVX_OSD_1 0x00000002 +#define V4L2_BUF_FLAG_MVX_OSD_2 0x00000004 +#define V4L2_BUF_FLAG_MVX_OSD_MASK 0x00000006 +#define V4L2_BUF_FLAG_MVX_AD_STATS 0x00000008 + +/**************************************************************************** + * HDR color description. + ****************************************************************************/ + +#define V4L2_EVENT_MVX_COLOR_DESC V4L2_EVENT_PRIVATE_START +#define V4L2_MVX_MAX_FRAME_REGIONS 16 +#define V4L2_MAX_FRAME_OSD_REGION 2 +enum v4l2_mvx_range { + V4L2_MVX_RANGE_UNSPECIFIED, + V4L2_MVX_RANGE_FULL, + V4L2_MVX_RANGE_LIMITED +}; + +enum v4l2_mvx_primaries { + V4L2_MVX_PRIMARIES_UNSPECIFIED, + V4L2_MVX_PRIMARIES_BT709, /* Rec.ITU-R BT.709 */ + V4L2_MVX_PRIMARIES_BT470M, /* Rec.ITU-R BT.470 System M */ + V4L2_MVX_PRIMARIES_BT601_625, /* Rec.ITU-R BT.601 625 */ + V4L2_MVX_PRIMARIES_BT601_525, /* Rec.ITU-R BT.601 525 */ + V4L2_MVX_PRIMARIES_GENERIC_FILM, /* Generic Film */ + V4L2_MVX_PRIMARIES_BT2020 /* Rec.ITU-R BT.2020 */ +}; + +enum v4l2_mvx_transfer { + V4L2_MVX_TRANSFER_UNSPECIFIED, + V4L2_MVX_TRANSFER_LINEAR, /* Linear transfer characteristics */ + V4L2_MVX_TRANSFER_SRGB, /* sRGB */ + V4L2_MVX_TRANSFER_SMPTE170M, /* SMPTE 170M */ + V4L2_MVX_TRANSFER_GAMMA22, /* Assumed display gamma 2.2 */ + V4L2_MVX_TRANSFER_GAMMA28, /* Assumed display gamma 2.8 */ + V4L2_MVX_TRANSFER_ST2084, /* SMPTE ST 2084 */ + V4L2_MVX_TRANSFER_HLG, /* ARIB STD-B67 hybrid-log-gamma */ + V4L2_MVX_TRANSFER_SMPTE240M, /* SMPTE 240M */ + V4L2_MVX_TRANSFER_XVYCC, /* IEC 61966-2-4 */ + V4L2_MVX_TRANSFER_BT1361, /* Rec.ITU-R BT.1361 extended gamut */ + V4L2_MVX_TRANSFER_ST428 /* SMPTE ST 428-1 */ +}; + +enum v4l2_mvx_matrix { + V4L2_MVX_MATRIX_UNSPECIFIED, + V4L2_MVX_MATRIX_BT709, /* Rec.ITU-R BT.709 */ + V4L2_MVX_MATRIX_BT470M, /* KR=0.30, KB=0.11 */ + V4L2_MVX_MATRIX_BT601, /* Rec.ITU-R BT.601 625 */ + V4L2_MVX_MATRIX_SMPTE240M, /* SMPTE 240M or equivalent */ + V4L2_MVX_MATRIX_BT2020, /* Rec.ITU-R BT.2020 non-const lum */ + V4L2_MVX_MATRIX_BT2020Constant /* Rec.ITU-R BT.2020 constant lum */ +}; + +enum v4l2_nalu_format { + V4L2_OPT_NALU_FORMAT_START_CODES, + V4L2_OPT_NALU_FORMAT_ONE_NALU_PER_BUFFER, + V4L2_OPT_NALU_FORMAT_ONE_BYTE_LENGTH_FIELD, + V4L2_OPT_NALU_FORMAT_TWO_BYTE_LENGTH_FIELD, + V4L2_OPT_NALU_FORMAT_FOUR_BYTE_LENGTH_FIELD, + V4L2_OPT_NALU_FORMAT_ONE_FRAME_PER_BUFFER +}; + +struct v4l2_mvx_primary { + unsigned short x; + unsigned short y; +}; + +/** + * struct v4l2_mvx_color_desc - HDR color description. + * @flags: Flags which fields that are valid. + * @range: enum v4l2_mvx_range. + * @primaries: enum v4l2_mvx_primaries. + * @transfer: enum v4l2_mvx_transfer. + * @matrix: enum v4l2_mvx_matrix. + * @display.r: Red point. + * @display.g: Green point. + * @display.b: Blue point. + * @display.w: White point. + * @display.luminance_min: Minimum display luminance. + * @display.luminance_max: Maximum display luminance. + * @content.luminance_max: Maximum content luminance. + * @content.luminance_average: Average content luminance. + * + * Color- and white point primaries are given in increments of 0.00002 + * and in the range of 0 to 50'000. + * + * Luminance is given in increments of 0.0001 candelas per m3. + */ +struct v4l2_mvx_color_desc { + unsigned int flags; +#define V4L2_BUFFER_PARAM_COLOUR_FLAG_MASTERING_DISPLAY_DATA_VALID (1) +#define V4L2_BUFFER_PARAM_COLOUR_FLAG_CONTENT_LIGHT_DATA_VALID (2) + unsigned char range; + unsigned char primaries; + unsigned char transfer; + unsigned char matrix; + struct { + struct v4l2_mvx_primary r; + struct v4l2_mvx_primary g; + struct v4l2_mvx_primary b; + struct v4l2_mvx_primary w; + unsigned short luminance_min; + unsigned short luminance_max; + } display; + struct { + unsigned short luminance_max; + unsigned short luminance_average; + } content; + + unsigned char video_format; + unsigned char aspect_ratio_idc; + unsigned short sar_width; + unsigned short sar_height; + unsigned int num_units_in_tick; + unsigned int time_scale; +} __packed; + +struct v4l2_buffer_param_region { + unsigned short mbx_left; /**< X coordinate of the left most macroblock */ + unsigned short mbx_right; /**< X coordinate of the right most macroblock */ + unsigned short mby_top; /**< Y coordinate of the top most macroblock */ + unsigned short mby_bottom; /**< Y coordinate of the bottom most macroblock */ + short qp_delta; + /* < QP delta value. This region will be encoded + * with qp = qp_default + qp_delta. + */ + unsigned short prio; + unsigned short force_intra; +}; + +struct v4l2_mvx_roi_regions { + unsigned int pic_index; + unsigned char qp_present; + unsigned char qp; + unsigned char roi_present; + unsigned char num_roi; + struct v4l2_buffer_param_region roi[V4L2_MVX_MAX_FRAME_REGIONS]; +}; + +struct v4l2_sei_user_data { + unsigned char flags; +#define V4L2_BUFFER_PARAM_USER_DATA_UNREGISTERED_VALID (1) + unsigned char uuid[16]; + char user_data[256 - 35]; + unsigned char user_data_len; +}; + +struct v4l2_rate_control { + unsigned int rc_type; +#define V4L2_OPT_RATE_CONTROL_MODE_OFF (0) +#define V4L2_OPT_RATE_CONTROL_MODE_STANDARD (1) +#define V4L2_OPT_RATE_CONTROL_MODE_VARIABLE (2) +#define V4L2_OPT_RATE_CONTROL_MODE_CONSTANT (3) +#define V4L2_OPT_RATE_CONTROL_MODE_C_VARIABLE (4) + unsigned int target_bitrate; + unsigned int maximum_bitrate; +}; + +struct v4l2_mvx_dsl_frame { + unsigned int width; + unsigned int height; +}; + +struct v4l2_mvx_dsl_ratio { + unsigned int hor; + unsigned int ver; +}; + +struct v4l2_mvx_long_term_ref { + unsigned int mode; + unsigned int period; +}; + +struct v4l2_buffer_param_rectangle { + unsigned short x_left; /* pixel x left edge (inclusive) */ + unsigned short x_right; /* pixel x right edge (exclusive) */ + unsigned short y_top; /* pixel y top edge (inclusive) */ + unsigned short y_bottom; /* pixel y bottom edge (exclusive) */ +}; + +/* input for encoder, + * indicate which parts of the source picture has changed. + * The encoder can (optionally) use this information to + * reduce memory bandwidth. + * + * n_rectangles=0 indicates the source picture is unchanged. + * + * This parameter only applies to the picture that immediately + * follows (and not to subsequent ones). + */ +struct v4l2_mvx_chr_config { + unsigned int pic_index; + unsigned int num_chr; +#define V4L2_MAX_FRAME_CHANGE_RECTANGLES 2 + struct v4l2_buffer_param_rectangle + rectangle[V4L2_MAX_FRAME_CHANGE_RECTANGLES]; +}; + +struct v4l2_mvx_osd_cfg { + uint8_t osd_inside_enable; + uint8_t osd_inside_alpha_enable; + uint8_t osd_inside_convert_color_enable; + uint8_t osd_inside_alpha_value; /* as alpha range [0~16], use u8 */ + uint8_t osd_inside_convert_color_threshold; + /* threshold range [0~255], if input is 10bit, th * 4 */ + uint8_t osd_inside_rgb2yuv_mode; /* 0-601L, 1-601F, 2-709_L, 3-709_F */ + uint16_t osd_inside_start_x; /* pixel x left edge (inclusive) */ + uint16_t osd_inside_start_y; /* pixel y top edge (inclusive) */ + uint16_t reserved[3]; +}; + +struct v4l2_osd_config { + unsigned int pic_index; + unsigned int num_osd; + struct v4l2_mvx_osd_cfg osd_single_cfg + [V4L2_MAX_FRAME_OSD_REGION]; /* include single osd region config and index */ +}; + +struct v4l2_osd_info { + uint32_t width_osd[V4L2_MAX_FRAME_OSD_REGION]; + uint32_t height_osd[V4L2_MAX_FRAME_OSD_REGION]; + uint32_t inputFormat_osd[V4L2_MAX_FRAME_OSD_REGION]; +}; + +#define V4L2_MVX_COLOR_DESC_DISPLAY_VALID 0x1 +#define V4L2_MVX_COLOR_DESC_CONTENT_VALID 0x2 + +/**************************************************************************** + * Custom IOCTL + ****************************************************************************/ + +#define VIDIOC_G_MVX_COLORDESC \ + _IOWR('V', BASE_VIDIOC_PRIVATE, struct v4l2_mvx_color_desc) +#define VIDIOC_S_MVX_ROI_REGIONS \ + _IOWR('V', BASE_VIDIOC_PRIVATE + 1, struct v4l2_mvx_roi_regions) +#define VIDIOC_S_MVX_QP_EPR \ + _IOWR('V', BASE_VIDIOC_PRIVATE + 2, struct v4l2_buffer_param_qp) +#define VIDIOC_S_MVX_COLORDESC \ + _IOWR('V', BASE_VIDIOC_PRIVATE + 3, struct v4l2_mvx_color_desc) +#define VIDIOC_S_MVX_SEI_USERDATA \ + _IOWR('V', BASE_VIDIOC_PRIVATE + 4, struct v4l2_sei_user_data) +#define VIDIOC_S_MVX_RATE_CONTROL \ + _IOWR('V', BASE_VIDIOC_PRIVATE + 5, struct v4l2_rate_control) +#define VIDIOC_S_MVX_DSL_FRAME \ + _IOWR('V', BASE_VIDIOC_PRIVATE + 6, struct v4l2_mvx_dsl_frame) +#define VIDIOC_S_MVX_DSL_RATIO \ + _IOWR('V', BASE_VIDIOC_PRIVATE + 7, struct v4l2_mvx_dsl_ratio) +#define VIDIOC_S_MVX_LONG_TERM_REF \ + _IOWR('V', BASE_VIDIOC_PRIVATE + 8, struct v4l2_mvx_long_term_ref) +#define VIDIOC_S_MVX_DSL_MODE _IOWR('V', BASE_VIDIOC_PRIVATE + 9, int) +#define VIDIOC_S_MVX_MINI_FRAME_HEIGHT _IOWR('V', BASE_VIDIOC_PRIVATE + 10, int) +#define VIDIOC_S_MVX_STATS_MODE \ + _IOWR('V', BASE_VIDIOC_PRIVATE + 11, struct v4l2_buffer_param_enc_stats) +#define VIDIOC_S_MVX_CHR_CFG \ + _IOWR('V', BASE_VIDIOC_PRIVATE + 12, struct v4l2_mvx_chr_config) +#define VIDIOC_S_MVX_HUFF_TABLE \ + _IOWR('V', BASE_VIDIOC_PRIVATE + 13, struct v4l2_mvx_huff_table) +#define VIDIOC_S_MVX_SEAMLESS_TARGET \ + _IOWR('V', BASE_VIDIOC_PRIVATE + 14, struct v4l2_mvx_seamless_target) +#define VIDIOC_S_MVX_COLOR_CONV_COEF \ + _IOWR('V', BASE_VIDIOC_PRIVATE + 15, struct v4l2_mvx_color_conv_coef) +#define VIDIOC_S_MVX_ENC_SRC_CROP \ + _IOWR('V', BASE_VIDIOC_PRIVATE + 16, struct v4l2_mvx_crop_cfg) +#define VIDIOC_S_MVX_DEC_DST_CROP \ + _IOWR('V', BASE_VIDIOC_PRIVATE + 17, struct v4l2_mvx_crop_cfg) +#define VIDIOC_S_MVX_RGB2YUV_COLOR_CONV_COEF \ + _IOWR('V', BASE_VIDIOC_PRIVATE + 18, \ + struct v4l2_mvx_rgb2yuv_color_conv_coef) +#define VIDIOC_S_MVX_OSD_CONFIG \ + _IOWR('V', BASE_VIDIOC_PRIVATE + 19, struct v4l2_osd_config) +#define VIDIOC_S_MVX_OSD_INFO \ + _IOWR('V', BASE_VIDIOC_PRIVATE + 20, struct v4l2_osd_info) +/**************************************************************************** + * Custom controls + ****************************************************************************/ + +/* + * Video for Linux 2 custom controls. + */ +enum v4l2_cid_mve_video { + V4L2_CID_MVE_VIDEO_FRAME_RATE = V4L2_CTRL_CLASS_CODEC + 0x2000, + V4L2_CID_MVE_VIDEO_NALU_FORMAT, + V4L2_CID_MVE_VIDEO_STREAM_ESCAPING, + V4L2_CID_MVE_VIDEO_H265_PROFILE, + V4L2_CID_MVE_VIDEO_VC1_PROFILE, + V4L2_CID_MVE_VIDEO_H265_LEVEL, + V4L2_CID_MVE_VIDEO_IGNORE_STREAM_HEADERS, + V4L2_CID_MVE_VIDEO_FRAME_REORDERING, + V4L2_CID_MVE_VIDEO_INTBUF_SIZE, + V4L2_CID_MVE_VIDEO_P_FRAMES, + V4L2_CID_MVE_VIDEO_GOP_TYPE, + V4L2_CID_MVE_VIDEO_CONSTR_IPRED, + V4L2_CID_MVE_VIDEO_ENTROPY_SYNC, + V4L2_CID_MVE_VIDEO_TEMPORAL_MVP, + V4L2_CID_MVE_VIDEO_TILE_ROWS, + V4L2_CID_MVE_VIDEO_TILE_COLS, + V4L2_CID_MVE_VIDEO_MIN_LUMA_CB_SIZE, + V4L2_CID_MVE_VIDEO_MB_MASK, + V4L2_CID_MVE_VIDEO_VP9_PROB_UPDATE, + V4L2_CID_MVE_VIDEO_BITDEPTH_CHROMA, + V4L2_CID_MVE_VIDEO_BITDEPTH_LUMA, + V4L2_CID_MVE_VIDEO_FORCE_CHROMA_FORMAT, + V4L2_CID_MVE_VIDEO_RGB_TO_YUV_MODE, + V4L2_CID_MVE_VIDEO_BANDWIDTH_LIMIT, + V4L2_CID_MVE_VIDEO_CABAC_INIT_IDC, + V4L2_CID_MVE_VIDEO_VPX_B_FRAME_QP, + V4L2_CID_MVE_VIDEO_SECURE_VIDEO, + V4L2_CID_MVE_VIDEO_CROP_LEFT, + V4L2_CID_MVE_VIDEO_CROP_RIGHT, + V4L2_CID_MVE_VIDEO_CROP_TOP, + V4L2_CID_MVE_VIDEO_CROP_BOTTOM, + V4L2_CID_MVE_VIDEO_HRD_BUFFER_SIZE, + V4L2_CID_MVE_VIDEO_INIT_QP_I, + V4L2_CID_MVE_VIDEO_INIT_QP_P, + V4L2_CID_MVE_VIDEO_SAO_LUMA, + V4L2_CID_MVE_VIDEO_SAO_CHROMA, + V4L2_CID_MVE_VIDEO_QP_DELTA_I_P, + V4L2_CID_MVE_VIDEO_QP_REF_RB_EN, + V4L2_CID_MVE_VIDEO_RC_CLIP_TOP, + V4L2_CID_MVE_VIDEO_RC_CLIP_BOT, + V4L2_CID_MVE_VIDEO_QP_MAP_CLIP_TOP, + V4L2_CID_MVE_VIDEO_QP_MAP_CLIP_BOT, + V4L2_CID_MVE_VIDEO_MAX_QP_I, + V4L2_CID_MVE_VIDEO_MIN_QP_I, + V4L2_CID_MVE_VIDEO_FW_PROFILING, + V4L2_CID_MVE_VIDEO_VISIBLE_WIDTH, + V4L2_CID_MVE_VIDEO_VISIBLE_HEIGHT, + V4L2_CID_MVE_VIDEO_JPEG_QUALITY_LUMA, + V4L2_CID_MVE_VIDEO_JPEG_QUALITY_CHROMA, + V4L2_CID_MVE_VIDEO_RC_I_MODE, + V4L2_CID_MVE_VIDEO_RC_I_RATIO, + V4L2_CID_MVE_VIDEO_INTER_MED_BUF_SIZE, + V4L2_CID_MVE_VIDEO_SVCT3_LEVEL1_PERIOD, + V4L2_CID_MVE_VIDEO_GOP_RESET_PFRAMES, + V4L2_CID_MVE_VIDEO_LTR_RESET_PERIOD, + V4L2_CID_MVE_VIDEO_QP_FIXED, + V4L2_CID_MVE_VIDEO_GDR_NUMBER, + V4L2_CID_MVE_VIDEO_GDR_PERIOD, + V4L2_CID_MVE_VIDEO_MULTI_SPS_PPS, + V4L2_CID_MVE_VIDEO_ENABLE_VISUAL, + V4L2_CID_MVE_VIDEO_SCD_ENABLE, + V4L2_CID_MVE_VIDEO_SCD_PERCENT, + V4L2_CID_MVE_VIDEO_SCD_THRESHOLD, + V4L2_CID_MVE_VIDEO_AQ_SSIM_EN, + V4L2_CID_MVE_VIDEO_AQ_NEG_RATIO, + V4L2_CID_MVE_VIDEO_AQ_POS_RATIO, + V4L2_CID_MVE_VIDEO_AQ_QPDELTA_LMT, + V4L2_CID_MVE_VIDEO_AQ_INIT_FRM_AVG_SVAR, + V4L2_CID_MVE_VIDEO_COLOR_CONVERSION, + V4L2_CID_MVE_VIDEO_RGB2YUV_COLOR_CONV_COEF, + V4L2_CID_MVE_VIDEO_FORCED_UV_VALUE, + V4L2_CID_MVE_VIDEO_DSL_INTERP_MODE, + V4L2_CID_MVE_VIDEO_DISABLED_FEATURES, + V4L2_CID_MVE_VIDEO_ENABLE_ADAPTIVE_INTRA_BLOCK, + V4L2_CID_MVE_VIDEO_CHANGE_POS, +}; + +struct v4l2_buffer_param_enc_stats { + unsigned int mms_buffer_size; + unsigned int bitcost_buffer_size; + unsigned int qp_buffer_size; + unsigned int flags; + //ENC_STATS_FLAGS +#define V4L2_BUFFER_ENC_STATS_FLAG_MMS (1 << 0) +#define V4L2_BUFFER_ENC_STATS_FLAG_BITCOST (1 << 1) +#define V4L2_BUFFER_ENC_STATS_FLAG_QP (1 << 2) +#define V4L2_BUFFER_ENC_STATS_FLAG_DROP (1 << 3) + unsigned int pic_index_or_mb_size; +}; + +/* block configuration uncompressed rows header. + * this configures the size of the uncompressed body. + */ +struct v4l2_buffer_general_rows_uncomp_hdr { + unsigned char n_cols_minus1; /* number of quad cols in picture minus 1 */ + unsigned char n_rows_minus1; /* number of quad rows in picture minus 1 */ + unsigned char reserved[2]; +}; + +struct v4l2_buffer_general_block_configs { + unsigned char blk_cfg_type; +#define V4L2_BLOCK_CONFIGS_TYPE_NONE (0x00) +#define V4L2_BLOCK_CONFIGS_TYPE_ROW_UNCOMP (0xff) + unsigned char reserved[3]; + union { + struct v4l2_buffer_general_rows_uncomp_hdr rows_uncomp; + } blk_cfgs; +}; + +struct v4l2_buffer_general_ad_stats { + unsigned int frame_averages; +// bitfields +#define v4l2_AD_STATS_PIC_AVGS_Y (0) +#define v4l2_AD_STATS_PIC_AVGS_Y_SZ (12) +#define v4l2_AD_STATS_PIC_AVGS_CB (12) +#define v4l2_AD_STATS_PIC_AVGS_CB_SZ (10) +#define v4l2_AD_STATS_PIC_AVGS_CR (22) +#define v4l2_AD_STATS_PIC_AVGS_CR_SZ (10) + unsigned short thumbnail_width; + unsigned short thumbnail_height; + unsigned char ad_stats_flags; +#define v4l2_AD_STATS_PIC_FMT_PROGRESSIVE (0) +#define v4l2_AD_STATS_PIC_FMT_INTERLACED (1) + unsigned char reserved[3]; +}; + +/* input for encoder */ +struct v4l2_buffer_param_qp { + /* QP (quantization parameter) for encode. + * + * When used to set fixed QP for encode, with rate control + * disabled, then the valid ranges are: + * H264: 0-51 + * HEVC: 0-51 + * VP8: 0-63 + * VP9: 0-63 + * Note: The QP must be set separately for I, P and B frames. + * + * But when this message is used with the regions-feature, + * then the valid ranges are the internal bitstream ranges: + * H264: 0-51 + * HEVC: 0-51 + * VP8: 0-127 + * VP9: 0-255 + */ + int qp; + int epr_iframe_enable; +}; + +/* the block parameter record specifies the various properties of a quad */ +struct v4l2_block_param_record { + unsigned int qp_delta; +/* Bitset of four 4-bit QP delta values for a quad. + * For H.264 and HEVC these are qp delta values in the range -8 to +7. + * For Vp9 these are segment map values in the range 0 to 7. + */ +#define V4L2_BLOCK_PARAM_RECORD_QP_DELTA_TOP_LEFT_16X16 (0) +#define V4L2_BLOCK_PARAM_RECORD_QP_DELTA_TOP_LEFT_16X16_SZ (6) +#define V4L2_BLOCK_PARAM_RECORD_QP_DELTA_TOP_RIGHT_16X16 (6) +#define V4L2_BLOCK_PARAM_RECORD_QP_DELTA_TOP_RIGHT_16X16_SZ (6) +#define V4L2_BLOCK_PARAM_RECORD_QP_DELTA_BOT_LEFT_16X16 (12) +#define V4L2_BLOCK_PARAM_RECORD_QP_DELTA_BOT_LEFT_16X16_SZ (6) +#define V4L2_BLOCK_PARAM_RECORD_QP_DELTA_BOT_RIGHT_16X16 (18) +#define V4L2_BLOCK_PARAM_RECORD_QP_DELTA_BOT_RIGHT_16X16_SZ (6) + +#define V4L2_BLOCK_PARAM_RECORD_QP_FORCE_FIELD (24) +#define V4L2_BLOCK_PARAM_RECORD_QP_FORCE_FIELD_SZ (5) +#define V4L2_BLOCK_PARAM_RECORD_QUAD_FORCE_INTRA (29) +#define V4L2_BLOCK_PARAM_RECORD_QUAD_FORCE_INTRA_SZ (1) +#define V4L2_BLOCK_PARAM_RECORD_QP_ABSOLUTE (30) +#define V4L2_BLOCK_PARAM_RECORD_QP_ABSOLUTE_SZ (1) +#define V4L2_BLOCK_PARAM_RECORD_QP_QUAD_SKIP (31) +#define V4L2_BLOCK_PARAM_RECORD_QP_QUAD_SKIP_SZ (1) + +#define V4L2_BLOCK_PARAM_RECORD_FORCE_NONE (0x00) +#define V4L2_BLOCK_PARAM_RECORD_FORCE_QP (0x01) + unsigned int min_qp; +#define V4L2_BLOCK_PARAM_RECORD_MIN_QP_TOP_LEFT_16X16 (0) +#define V4L2_BLOCK_PARAM_RECORD_MIN_QP_TOP_LEFT_16X16_SZ (6) +#define V4L2_BLOCK_PARAM_RECORD_MIN_QP_TOP_RIGHT_16X16 (6) +#define V4L2_BLOCK_PARAM_RECORD_MIN_QP_TOP_RIGHT_16X16_SZ (6) +#define V4L2_BLOCK_PARAM_RECORD_MIN_QP_BOT_LEFT_16X16 (12) +#define V4L2_BLOCK_PARAM_RECORD_MIN_QP_BOT_LEFT_16X16_SZ (6) +#define V4L2_BLOCK_PARAM_RECORD_MIN_QP_BOT_RIGHT_16X16 (18) +#define V4L2_BLOCK_PARAM_RECORD_MIN_QP_BOT_RIGHT_16X16_SZ (6) +#define V4L2_BLOCK_PARAM_RECORD_QUAD_SELECT_QP_DELTA (24) +#define V4L2_BLOCK_PARAM_RECORD_QUAD_SELECT_QP_DELTA_SZ (1) +}; + +struct v4l2_buffer_general_rows_uncomp_body { + /* the size of this array is variable and not necessarily equal to 1. + * therefore the sizeof operator should not be used + */ + struct v4l2_block_param_record bpr[2]; +}; + +struct v4l2_core_buffer_header_general { + //uint64_t user_data_tag; // User supplied tracking identifier + //uint64_t app_handle; // Host buffer handle number + unsigned short type; // type of config, value is one of V4L2_BUFFER_GENERAL_TYPE_X + +#define V4L2_BUFFER_GENERAL_TYPE_INVALID (0) /* invalid */ +#define V4L2_BUFFER_GENERAL_TYPE_BLOCK_CONFIGS (1) /* block_configs */ +#define V4L2_BUFFER_GENERAL_TYPE_AD_STATS (2) /* assertive display statistics */ + unsigned short config_size; // size of the configuration + unsigned int buffer_size; + union { + struct v4l2_buffer_general_block_configs config; + struct v4l2_buffer_general_ad_stats ad_stats; + } config; +}; + +struct v4l2_mvx_huff_table { + unsigned int type; +#define V4L2_OPT_HUFFMAN_TABLE_DC_LUMA (1) +#define V4L2_OPT_HUFFMAN_TABLE_AC_LUMA (2) +#define V4L2_OPT_HUFFMAN_TABLE_DC_CHROMA (4) +#define V4L2_OPT_HUFFMAN_TABLE_AC_CHROMA (8) + unsigned char dc_luma_code_lenght[16]; + unsigned char ac_luma_code_lenght[16]; + unsigned char dc_chroma_code_lenght[16]; + unsigned char ac_chroma_code_lenght[16]; + unsigned char dc_luma_table[162]; + unsigned char ac_luma_table[162]; + unsigned char dc_chroma_table[162]; + unsigned char ac_chroma_table[162]; +}; +struct v4l2_mvx_seamless_target { + unsigned int seamless_mode; + unsigned int target_width; + unsigned int target_height; + unsigned int target_stride[3]; + unsigned int target_size[3]; +}; +struct v4l2_mvx_color_conv_coef { + short coef[3][3]; + unsigned short offset[3]; +}; + +struct v4l2_mvx_rgb2yuv_color_conv_coef { + short coef[3 * 3]; //coef[Y|U|V][R|G|B] + unsigned char luma_range[2]; + unsigned char chroma_range[2]; + unsigned char rgb_range[2]; +}; + +struct v4l2_mvx_crop_cfg { + unsigned char crop_en; + unsigned short x; + unsigned short y; + unsigned short width; + unsigned short height; +}; +#endif /* _MVX_V4L2_CONTROLS_H_ */ diff --git a/drivers/media/platform/canaan/vpu/mvx_bitops.h b/drivers/media/platform/canaan/vpu/mvx_bitops.h new file mode 100644 index 0000000000000..eed21a71387c9 --- /dev/null +++ b/drivers/media/platform/canaan/vpu/mvx_bitops.h @@ -0,0 +1,79 @@ +/* SPDX-License-Identifier: GPL-2.0-only + * The confidential and proprietary information contained in this file may + * only be used by a person authorised under and to the extent permitted + * by a subsisting licensing agreement from Arm Technology (China) Co., Ltd. + * + * (C) COPYRIGHT 2021-2021 Arm Technology (China) Co., Ltd. + * ALL RIGHTS RESERVED + * + * This entire notice must be reproduced on all copies of this file + * and copies of this file may only be made by a person if such person is + * permitted to do so under the terms of a subsisting license agreement + * from Arm Technology (China) Co., Ltd. + * + * 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. + * + */ + +#ifndef _MVX_BITOPS_H_ +#define _MVX_BITOPS_H_ + +/**************************************************************************** + * Includes + ****************************************************************************/ + +#include +#include + +/**************************************************************************** + * Static functions + ****************************************************************************/ + +/** + * mvx_set_bit() - Set a bit in the bitmask. + * @bit: Bit to be set. + * @addr: Pointer to bitmask. + * + * Works similar to set_bit but uses no locks, is not atomic and protects + * agains overflow. + */ +static inline void mvx_set_bit(unsigned int bit, uint64_t *addr) +{ + *addr |= 1ull << bit; +} + +/** + * mvx_clear_bit() - Clear a bit in the bitmask. + * @bit: Bit to be cleared. + * @addr: Pointer to bitmask. + * + * Works similar to clear_bit but uses no locks, is not atomic and protects + * agains overflow. + */ +static inline void mvx_clear_bit(unsigned int bit, uint64_t *addr) +{ + *addr &= ~(1ull << bit); +} + +/** + * mvx_test_bit() - Test a bit in the bitmask. + * @bit: Bit to be tested. + * @addr: Pointer to bitmask. + * + * Works similar to test_bit but uses no locks, is not atomic and protects + * agains overflow. + */ +static inline bool mvx_test_bit(unsigned int bit, uint64_t *addr) +{ + return 0 != (*addr & (1ull << bit)); +} + +#endif /* _MVX_BITOPS_H_ */ diff --git a/drivers/media/platform/canaan/vpu/mvx_buffer.c b/drivers/media/platform/canaan/vpu/mvx_buffer.c new file mode 100644 index 0000000000000..4f184f97f7738 --- /dev/null +++ b/drivers/media/platform/canaan/vpu/mvx_buffer.c @@ -0,0 +1,548 @@ +// SPDX-License-Identifier: GPL-2.0-only +/* + * The confidential and proprietary information contained in this file may + * only be used by a person authorised under and to the extent permitted + * by a subsisting licensing agreement from Arm Technology (China) Co., Ltd. + * + * (C) COPYRIGHT 2021-2021 Arm Technology (China) Co., Ltd. + * ALL RIGHTS RESERVED + * + * This entire notice must be reproduced on all copies of this file + * and copies of this file may only be made by a person if such person is + * permitted to do so under the terms of a subsisting license agreement + * from Arm Technology (China) Co., Ltd. + * + * 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. + * + */ + +/**************************************************************************** + * Includes + ****************************************************************************/ + +#include +#include "mvx_buffer.h" +#include "mvx_seq.h" +#include "mvx_log_group.h" + +/**************************************************************************** + * Defines + ****************************************************************************/ + +/** + * Each 2x2 pixel square is subsampled. How many samples that are taken depends + * on the color format, but typically the luma channel (Y) gets 4 samples and + * the luma channels (UV) get 2 or 4 samples. + */ +#define SUBSAMPLE_PIXELS 2 + +/**************************************************************************** + * Static functions + ****************************************************************************/ + +/** + * get_stride() - Get 3 plane stride for 2x2 pixels square. + * @format: MVX frame format. + * @stride: [plane 0, plane 1, plane 2][x, y] stride. + * + * Calculate the stride in bytes for each plane for a subsampled (2x2) pixels + * square. + * + * Return: 0 on success, else error code. + */ +static int get_stride(enum mvx_format format, uint8_t *nplanes, + unsigned int stride[MVX_BUFFER_NPLANES][2]) +{ + switch (format) { + case MVX_FORMAT_YUV420_I420: + *nplanes = 3; + stride[0][0] = 2; + stride[0][1] = 2; + stride[1][0] = 1; + stride[1][1] = 1; + stride[2][0] = 1; + stride[2][1] = 1; + break; + case MVX_FORMAT_YUV420_NV12: + case MVX_FORMAT_YUV420_NV21: + *nplanes = 2; + stride[0][0] = 2; + stride[0][1] = 2; + stride[1][0] = 2; + stride[1][1] = 1; + stride[2][0] = 0; + stride[2][1] = 0; + break; + case MVX_FORMAT_YUV420_P010: + case MVX_FORMAT_YUV420_2P_10: + *nplanes = 2; + stride[0][0] = 4; + stride[0][1] = 2; + stride[1][0] = 4; + stride[1][1] = 1; + stride[2][0] = 0; + stride[2][1] = 0; + break; + case MVX_FORMAT_YUV420_Y0L2: + case MVX_FORMAT_YUV420_AQB1: + *nplanes = 1; + stride[0][0] = 8; + stride[0][1] = 1; + stride[1][0] = 0; + stride[1][1] = 0; + stride[2][0] = 0; + stride[2][1] = 0; + break; + case MVX_FORMAT_YUV422_YUY2: + case MVX_FORMAT_YUV422_UYVY: + *nplanes = 1; + stride[0][0] = 4; + stride[0][1] = 2; + stride[1][0] = 0; + stride[1][1] = 0; + stride[2][0] = 0; + stride[2][1] = 0; + break; + case MVX_FORMAT_YUV422_Y210: + case MVX_FORMAT_YUV422_1P_10: + case MVX_FORMAT_RGBA_8888: + case MVX_FORMAT_BGRA_8888: + case MVX_FORMAT_ARGB_8888: + case MVX_FORMAT_ABGR_8888: + *nplanes = 1; + stride[0][0] = 8; + stride[0][1] = 2; + stride[1][0] = 0; + stride[1][1] = 0; + stride[2][0] = 0; + stride[2][1] = 0; + break; + case MVX_FORMAT_RGB_888: + case MVX_FORMAT_BGR_888: + *nplanes = 1; + stride[0][0] = 6; + stride[0][1] = 2; + stride[1][0] = 0; + stride[1][1] = 0; + stride[2][0] = 0; + stride[2][1] = 0; + break; + case MVX_FORMAT_RGB_888_3P: + case MVX_FORMAT_YUV444: + *nplanes = 3; + stride[0][0] = 2; + stride[0][1] = 2; + stride[1][0] = 2; + stride[1][1] = 2; + stride[2][0] = 2; + stride[2][1] = 2; + break; + case MVX_FORMAT_Y: + *nplanes = 1; + stride[0][0] = 2; + stride[0][1] = 2; + stride[1][0] = 0; + stride[1][1] = 0; + stride[2][0] = 0; + stride[2][1] = 0; + break; + case MVX_FORMAT_Y_10: + *nplanes = 1; + stride[0][0] = 4; + stride[0][1] = 2; + stride[1][0] = 0; + stride[1][1] = 0; + stride[2][0] = 0; + stride[2][1] = 0; + break; + case MVX_FORMAT_YUV444_10: + *nplanes = 3; + stride[0][0] = 4; + stride[0][1] = 2; + stride[1][0] = 4; + stride[1][1] = 2; + stride[2][0] = 4; + stride[2][1] = 2; + break; + case MVX_FORMAT_YUV420_I420_10: + *nplanes = 3; + stride[0][0] = 4; + stride[0][1] = 2; + stride[1][0] = 2; + stride[1][1] = 1; + stride[2][0] = 2; + stride[2][1] = 1; + break; + default: + return -EINVAL; + } + + return 0; +} + +static int map_plane(struct mvx_buffer *buf, mvx_mmu_va begin, mvx_mmu_va end, + unsigned int plane) +{ + while (begin < end) { + struct mvx_buffer_plane *p = &buf->planes[plane]; + int ret; + + ret = mvx_mmu_map_pages(buf->mmu, begin, p->pages, + MVX_ATTR_SHARED_RW, + MVX_ACCESS_READ_WRITE); + if (ret == 0) { + MVX_LOG_PRINT( + &mvx_log_if, MVX_LOG_INFO, + "Memory map buffer. buf=%p, plane=%u, va=0x%x, size=%zu.", + buf, plane, p->pages->va, + mvx_buffer_size(buf, plane)); + return 0; + } + + if (ret != -EAGAIN) + return ret; + + begin += 1 * 1024 * 1024; /* 1 MB. */ + } + + return -ENOMEM; +} + +/**************************************************************************** + * External functions + ****************************************************************************/ + +void mvx_buffer_show(struct mvx_buffer *buf, struct seq_file *s) +{ + int i; + int ind = 0; + + mvx_seq_printf(s, "mvx_buffer", ind, "%p\n", buf); + + ind++; + mvx_seq_printf(s, "format", ind, "0x%x\n", buf->format); + mvx_seq_printf(s, "dir", ind, "%u\n", buf->dir); + mvx_seq_printf(s, "flags", ind, "0x%0x\n", buf->flags); + mvx_seq_printf(s, "width", ind, "%u\n", buf->width); + mvx_seq_printf(s, "height", ind, "%u\n", buf->height); + mvx_seq_printf(s, "nplanes", ind, "%u\n", buf->nplanes); + mvx_seq_printf(s, "planes", ind, "\n"); + ind++; + for (i = 0; i < buf->nplanes; ++i) { + char tag[10]; + struct mvx_buffer_plane *plane = &buf->planes[i]; + + scnprintf(tag, sizeof(tag), "#%d", i); + mvx_seq_printf( + s, tag, ind, + "va: 0x%08x, size: %10zu, stride: %5u, filled: %10u\n", + mvx_buffer_va(buf, i), mvx_buffer_size(buf, i), + plane->stride, plane->filled); + } + + ind--; +} + +int mvx_buffer_construct(struct mvx_buffer *buf, struct device *dev, + struct mvx_mmu *mmu, enum mvx_direction dir, + unsigned int nplanes, struct sg_table **sgt) +{ + int i; + + if (nplanes > MVX_BUFFER_NPLANES) { + MVX_LOG_PRINT( + &mvx_log_if, MVX_LOG_WARNING, + "Failed to construct buffer. Too many planes. nplanes=%u.", + nplanes); + return -EINVAL; + } + + memset(buf, 0, sizeof(*buf)); + + buf->dev = dev; + buf->mmu = mmu; + buf->dir = dir; + buf->nplanes = nplanes; + + for (i = 0; i < buf->nplanes; ++i) { + struct mvx_buffer_plane *plane = &buf->planes[i]; + + if (sgt[i] == NULL) + break; + + plane->pages = mvx_mmu_alloc_pages_sg(dev, sgt[i], 0); + if (IS_ERR(plane->pages)) + goto free_pages; + } + + return 0; + +free_pages: + while (i--) + mvx_mmu_free_pages(buf->planes[i].pages); + + return -ENOMEM; +} + +void mvx_buffer_destruct(struct mvx_buffer *buf) +{ + int i; + + mvx_buffer_unmap(buf); + + for (i = 0; i < buf->nplanes; i++) + if (buf->planes[i].pages != NULL) + mvx_mmu_free_pages(buf->planes[i].pages); +} + +int mvx_buffer_map(struct mvx_buffer *buf, mvx_mmu_va begin, mvx_mmu_va end) +{ + int i; + int ret = 0; + + for (i = 0; i < buf->nplanes; i++) { + struct mvx_buffer_plane *plane = &buf->planes[i]; + + if (plane->pages != NULL) { + ret = map_plane(buf, begin, end, i); + if (ret != 0) { + mvx_buffer_unmap(buf); + break; + } + } + } + + return ret; +} + +void mvx_buffer_unmap(struct mvx_buffer *buf) +{ + int i; + + for (i = 0; i < buf->nplanes; i++) { + struct mvx_buffer_plane *plane = &buf->planes[i]; + + if ((plane->pages != NULL) && (plane->pages->va != 0)) + mvx_mmu_unmap_pages(plane->pages); + } +} + +bool mvx_buffer_is_mapped(struct mvx_buffer *buf) +{ + return (buf->planes[0].pages != NULL) && + (buf->planes[0].pages->va != 0); +} + +int mvx_buffer_synch(struct mvx_buffer *buf, enum dma_data_direction dir) +{ + int i; + int ret; + + for (i = 0; i < buf->nplanes; i++) { + struct mvx_buffer_plane *plane = &buf->planes[i]; + + if (plane->pages != NULL) { + ret = mvx_mmu_synch_pages(plane->pages, dir); + if (ret != 0) + return ret; + } + } + + return 0; +} + +void mvx_buffer_clear(struct mvx_buffer *buf) +{ + unsigned int i; + + buf->flags = 0; + + for (i = 0; i < buf->nplanes; i++) + buf->planes[i].filled = 0; +} + +int mvx_buffer_filled_set(struct mvx_buffer *buf, unsigned int plane, + unsigned int filled, unsigned int offset) +{ + struct mvx_buffer_plane *p = &buf->planes[plane]; + size_t size = mvx_buffer_size(buf, plane); + + if (plane > buf->nplanes) + return -EINVAL; + + if (size < (filled + offset)) { + MVX_LOG_PRINT( + &mvx_log_if, MVX_LOG_WARNING, + "Buffer plane too small. plane=%d, size=%zu, filled=%u, offset=%u.", + plane, size, filled, offset); + buf->flags |= MVX_BUFFER_FRAME_NEED_REALLOC; + return -ENOMEM; + } + + p->filled = filled; + p->offset = offset; + + return 0; +} + +size_t mvx_buffer_size(struct mvx_buffer *buf, unsigned int plane) +{ + struct mvx_buffer_plane *p = &buf->planes[plane]; + + if (plane >= buf->nplanes || p->pages == NULL) + return 0; + + return mvx_mmu_size_pages(p->pages); +} + +mvx_mmu_va mvx_buffer_va(struct mvx_buffer *buf, unsigned int plane) +{ + struct mvx_buffer_plane *p = &buf->planes[plane]; + + if (plane >= buf->nplanes || p->pages == NULL) + return 0; + + return p->pages->va + p->pages->offset; +} + +int mvx_buffer_frame_dim(enum mvx_format format, unsigned int width, + unsigned int height, uint8_t *nplanes, + unsigned int *stride, unsigned int *size, + unsigned int *setting_stride) +{ + unsigned int s[MVX_BUFFER_NPLANES][2]; + unsigned int __nplanes = *nplanes; + int i; + int ret; + + memset(s, 0, sizeof(s)); + ret = get_stride(format, nplanes, s); + if (ret != 0) + return ret; + + for (i = 0; i < *nplanes; i++) { + const unsigned int stride_align = 1; + unsigned int tmp = + DIV_ROUND_UP(width * s[i][0], SUBSAMPLE_PIXELS); + /* Use optimal stride if no special stride was requested. */ + if (i >= __nplanes || stride[i] == 0) { + if (setting_stride[i]) { + stride[i] = max(stride[i], + round_up(tmp, stride_align)); + } else { + stride[i] = round_up(tmp, stride_align); + } + } else { + /* Else make sure to round up to minimum stride. */ + stride[i] = max(stride[i], tmp); + } + size[i] = DIV_ROUND_UP(height * s[i][1], SUBSAMPLE_PIXELS) * + stride[i]; + } + /* a workaround patch for nv12/nv21/p010 odd height/width output*/ + if (*nplanes == 2 && (width % 2 != 0 || height % 2 != 0)) { + unsigned int tmp = + DIV_ROUND_UP(width, SUBSAMPLE_PIXELS) * s[1][0]; + stride[1] = max(stride[1], tmp); + size[1] = DIV_ROUND_UP(height * s[1][1], SUBSAMPLE_PIXELS) * + stride[1]; + } + return 0; +} + +int mvx_buffer_frame_set(struct mvx_buffer *buf, enum mvx_format format, + unsigned int width, unsigned int height, + unsigned int *stride, unsigned int *size, + bool interlaced) +{ + int i; + + buf->format = format; + buf->width = width; + buf->height = height; + + for (i = 0; i < buf->nplanes; i++) { + struct mvx_buffer_plane *plane = &buf->planes[i]; + + plane->stride = stride[i]; + plane->offset = 0; + + if (buf->dir == MVX_DIR_OUTPUT) { + int ret; + + ret = mvx_buffer_filled_set(buf, i, size[i], 0); + if (ret != 0) + return ret; + } + + /* Verify that plane has correct length. */ + if (plane->filled > 0 && plane->filled != size[i]) { + MVX_LOG_PRINT( + &mvx_log_if, MVX_LOG_INFO, + "Buffer filled length does not match plane size. plane=%i, filled=%zu, size=%u.", + i, plane->filled, size[i]); + //return -ENOMEM; + } + + /* Verify that there is no buffer overflow. */ + if ((plane->filled + plane->offset) > mvx_buffer_size(buf, i)) { + MVX_LOG_PRINT( + &mvx_log_if, MVX_LOG_WARNING, + "Buffer plane size is too small. plane=%i, size=%zu, size=%u.", + i, size[i], mvx_buffer_size(buf, i)); + return -ENOMEM; + } + } + + if (interlaced != false) + buf->flags |= MVX_BUFFER_INTERLACE; + else + buf->flags &= ~MVX_BUFFER_INTERLACE; + + return 0; +} + +int mvx_buffer_afbc_set(struct mvx_buffer *buf, enum mvx_format format, + unsigned int width, unsigned int height, + unsigned int afbc_width, unsigned int size, + bool interlaced) +{ + int ret; + + buf->format = format; + buf->width = width; + buf->height = height; + buf->planes[0].offset = 0; + buf->planes[0].afbc_width = afbc_width; + + if (buf->dir == MVX_DIR_INPUT) { + buf->crop_left = 0; + buf->crop_top = 0; + } + + if (buf->dir == MVX_DIR_OUTPUT) { + ret = mvx_buffer_filled_set(buf, 0, size, 0); + if (ret != 0) + return ret; + } + + if (size > mvx_buffer_size(buf, 0)) { + MVX_LOG_PRINT(&mvx_log_if, MVX_LOG_WARNING, + "AFBC buffer too small. buf_size=%zu, size=%u.", + size, mvx_buffer_size(buf, 0)); + return -ENOMEM; + } + + if (interlaced != false) + buf->flags |= MVX_BUFFER_INTERLACE; + + return 0; +} diff --git a/drivers/media/platform/canaan/vpu/mvx_buffer.h b/drivers/media/platform/canaan/vpu/mvx_buffer.h new file mode 100644 index 0000000000000..d2b9e7518c10f --- /dev/null +++ b/drivers/media/platform/canaan/vpu/mvx_buffer.h @@ -0,0 +1,409 @@ +/* SPDX-License-Identifier: GPL-2.0-only + * The confidential and proprietary information contained in this file may + * only be used by a person authorised under and to the extent permitted + * by a subsisting licensing agreement from Arm Technology (China) Co., Ltd. + * + * (C) COPYRIGHT 2021-2021 Arm Technology (China) Co., Ltd. + * ALL RIGHTS RESERVED + * + * This entire notice must be reproduced on all copies of this file + * and copies of this file may only be made by a person if such person is + * permitted to do so under the terms of a subsisting license agreement + * from Arm Technology (China) Co., Ltd. + * + * 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. + * + */ + +#ifndef _MVX_BUFFER_H_ +#define _MVX_BUFFER_H_ + +/**************************************************************************** + * Includes + ****************************************************************************/ + +#include +#include +#include "mvx_if.h" +#include "mvx_mmu.h" +/**************************************************************************** + * Defines + ****************************************************************************/ + +#define MVX_BUFFER_NPLANES 3 +#define MVX_ROI_QP_NUMS 10 + +/**************************************************************************** + * Types + ****************************************************************************/ + +struct device; + +/** + * struct mvx_buffer_plane - Plane information. + * @pages: MMU pages object. + * @stride: Horizontal stride in bytes. + * @filled: Number of bytes written to this plane. For a frame buffer this + * value should always match the size of the plane. + * @offset: Offset in bytes from begin of buffer to first bitstream data. + * @afbc_width: AFBC width in superblocks. + */ +struct mvx_buffer_plane { + struct mvx_mmu_pages *pages; + unsigned int stride; + unsigned int filled; + unsigned int offset; + unsigned int afbc_width; +}; + +struct mvx_buffer_general_encoder_stats { + uint32_t mms_buffer_size; + uint32_t bitcost_buffer_size; + uint32_t qp_buffer_size; + uint32_t flags; + //ENC_STATS_FLAGS +#define MVX_BUFFER_ENC_STATS_FLAG_MMS (1 << 0) +#define MVX_BUFFER_ENC_STATS_FLAG_BITCOST (1 << 1) +#define MVX_BUFFER_ENC_STATS_FLAG_QP (1 << 2) +#define MVX_BUFFER_ENC_STATS_FLAG_DROP (1 << 3) + uint32_t reserved; +}; + +struct mvx_buffer_general_rows_uncomp_hdr { + uint8_t n_cols_minus1; /* number of quad cols in picture minus 1 */ + uint8_t n_rows_minus1; /* number of quad rows in picture minus 1 */ + uint8_t reserved[2]; +}; + +struct mvx_buffer_general_block_configs { + uint8_t blk_cfg_type; +#define MVX_BLOCK_CONFIGS_TYPE_NONE (0x00) +#define MVX_BLOCK_CONFIGS_TYPE_ROW_UNCOMP (0xff) + uint8_t reserved[3]; + union { + struct mvx_buffer_general_rows_uncomp_hdr rows_uncomp; + } blk_cfgs; +}; + +struct mvx_buffer_general_ad_stats { + uint32_t frame_averages; +// bitfields +#define MVX_AD_STATS_PIC_AVGS_Y (0) +#define MVX_AD_STATS_PIC_AVGS_Y_SZ (12) +#define MVX_AD_STATS_PIC_AVGS_CB (12) +#define MVX_AD_STATS_PIC_AVGS_CB_SZ (10) +#define MVX_AD_STATS_PIC_AVGS_CR (22) +#define MVX_AD_STATS_PIC_AVGS_CR_SZ (10) + uint16_t thumbnail_width; + uint16_t thumbnail_height; + uint8_t ad_stats_flags; +#define MVX_AD_STATS_PIC_FMT_PROGRESSIVE (0) +#define MVX_AD_STATS_PIC_FMT_INTERLACED (1) + uint8_t reserved[3]; +}; + +struct mvx_buffer_general_hdr { + /* For identification of the buffer, this is not changed by the firmware. */ + uint64_t host_handle; + + /* this depends upon the type of the general purpose buffer */ + uint64_t user_data_tag; + + /* pointer to the buffer containing the general purpose data. the format + * of this data is defined by the configuration in the mve_buffer_general + */ + uint32_t buffer_ptr; + + /* size of the buffer pointed to by buffer_ptr */ + uint32_t buffer_size; + + /* selects the type of semantics to use for the general purpose buffer. it + * tags (or discriminates) the union config member in mve_buffer_general + */ + uint16_t type; /* Extra data: */ + +#define MVX_BUFFER_GENERAL_TYPE_INVALID (0) /* invalid */ +#define MVX_BUFFER_GENERAL_TYPE_BLOCK_CONFIGS (1) /* block_configs */ +#define MVX_BUFFER_GENERAL_TYPE_AD_STATS (2) /* assertive display statistics */ + + /* size of the mve_buffer_general config member */ + uint16_t config_size; + + /* pad to force 8-byte alignment */ + uint32_t reserved; +}; + +struct mvx_buffer_general { + struct mvx_buffer_general_hdr header; + + /* used to describe the configuration of the general purpose buffer data + * pointed to be buffer_ptr + */ + union { + struct mvx_buffer_general_block_configs block_configs; + struct mvx_buffer_general_ad_stats ad_stats; + } config; +}; + +struct mvx_enc_stats { + uint32_t mms_buffer_size; + uint32_t bitcost_buffer_size; + uint32_t qp_buffer_size; + uint32_t flags; + //ENC_STATS_FLAGS +#define MVX_BUFFER_ENC_STATS_FLAG_MMS (1 << 0) +#define MVX_BUFFER_ENC_STATS_FLAG_BITCOST (1 << 1) +#define MVX_BUFFER_ENC_STATS_FLAG_QP (1 << 2) +#define MVX_BUFFER_ENC_STATS_FLAG_DROP (1 << 3) + uint32_t pic_index; +}; + +/** + * struct mvx_buffer - Buffer descriptor. + * @dev: Pointer to device. + * @mmu: Pointer to MMU. + * @head: List head used to add buffer to various queues. + * @format: Bitstream or frame format. + * @dir: Direction the buffer was allocated for. + * @user_data: User data copied from input- to output buffer. + * @flags: Buffer flags. + * @width: Frame width in pixels. + * @height: Frame height in pixels. + * @crop_left: Left crop in pixels. + * @crop_top: Top crop in pixels. + * @nplanes: Number of planes. + * @planes: Array or planes. + */ +struct mvx_buffer { + struct device *dev; + struct mvx_mmu *mmu; + struct list_head head; + enum mvx_format format; + enum mvx_direction dir; + uint64_t user_data; + unsigned int flags; + unsigned int width; + unsigned int height; + unsigned int crop_left; + unsigned int crop_top; + unsigned int nplanes; + uint32_t offset; + struct mvx_buffer_plane planes[MVX_BUFFER_NPLANES]; + struct mvx_buffer_general general; + uint8_t frame_type; + uint8_t src_transform; + uint16_t bitstream_remaining_kb; +}; + +#define MVX_BUFFER_EOS 0x00000001 +#define MVX_BUFFER_EOF 0x00000002 +#define MVX_BUFFER_CORRUPT 0x00000004 +#define MVX_BUFFER_REJECTED 0x00000008 +#define MVX_BUFFER_DECODE_ONLY 0x00000010 +#define MVX_BUFFER_CODEC_CONFIG 0x00000020 +#define MVX_BUFFER_AFBC_TILED_HEADERS 0x00000040 +#define MVX_BUFFER_AFBC_TILED_BODY 0x00000080 +#define MVX_BUFFER_AFBC_32X8_SUPERBLOCK 0x00000100 +#define MVX_BUFFER_INTERLACE 0x00000200 +#define MVX_BUFFER_END_OF_SUB_FRAME 0x00000400 +#define MVX_BUFFER_FRAME_PRESENT 0x00000800 + +#define MVX_BUFFER_FRAME_FLAG_ROTATION_90 \ + 0x00001000 /* Frame is rotated 90 degrees */ +#define MVX_BUFFER_FRAME_FLAG_ROTATION_180 \ + 0x00002000 /* Frame is rotated 180 degrees */ +#define MVX_BUFFER_FRAME_FLAG_ROTATION_270 \ + 0x00003000 /* Frame is rotated 270 degrees */ +#define MVX_BUFFER_FRAME_FLAG_ROTATION_MASK 0x00003000 + +#define MVX_BUFFER_FRAME_FLAG_MIRROR_HORI 0x00010000 +#define MVX_BUFFER_FRAME_FLAG_MIRROR_VERT 0x00020000 +#define MVX_BUFFER_FRAME_FLAG_MIRROR_MASK 0x00030000 + +#define MVX_BUFFER_FRAME_FLAG_SCALING_2 0x00004000 /* Frame is scaled by half */ +#define MVX_BUFFER_FRAME_FLAG_SCALING_4 \ + 0x00008000 /* Frame is scaled by quarter */ +#define MVX_BUFFER_FRAME_FLAG_SCALING_MASK 0x0000C000 + +#define MVX_BUFFER_FRAME_FLAG_GENERAL 0x00040000 /* Frame is a general buffer */ +#define MVX_BUFFER_FRAME_FLAG_ROI 0x00080000 /* This buffer has a roi region */ +#define MVX_BUFFER_FRAME_FLAG_CHR 0x01000000 + +#define MVX_BUFFER_FRAME_NEED_REALLOC 0x00100000 /* This buffer needs realloc */ +#define MVX_BUFFER_FRAME_FLAG_GOP_REST \ + 0x00200000 /* This buffer needs gop reset */ +#define MVX_BUFFER_FRAME_FLAG_LTR_REST 0x00400000 +#define MVX_BUFFER_FRAME_FLAG_FORCE_IDR (0x00800000) +#define MVX_BUFFER_ENC_STATS 0x02000000 + +#define MVX_BUFFER_FRAME_FLAG_OSD_1 0x04000000 +#define MVX_BUFFER_FRAME_FLAG_OSD_2 0x08000000 +#define MVX_BUFFER_FRAME_FLAG_OSD_MASK 0x0C000000 + +/**************************************************************************** + * External functions + ****************************************************************************/ + +/** + * mvx_buffer_construct() - Construct the buffer object. + * @buf: Pointer to buffer. + * @dev: Pointer to device. + * @mmu: Pointer to MMU. + * @dir: Which direction the buffer was allocated for. + * @nplanes: Number of planes. + * @sgt: Array with SG tables. Each table contains a list of memory + * pages for corresponding plane. + * + * Return: 0 on success, else error code. + */ +int mvx_buffer_construct(struct mvx_buffer *buf, struct device *dev, + struct mvx_mmu *mmu, enum mvx_direction dir, + unsigned int nplanes, struct sg_table **sgt); + +/** + * mvx_buffer_construct() - Destruct the buffer object. + * @buf: Pointer to buffer. + */ +void mvx_buffer_destruct(struct mvx_buffer *buf); + +/** + * mvx_buffer_map() - Map the buffer to the MVE virtual address space. + * @buf: Pointer to buffer. + * @begin: MVE virtual begin address. + * @end: MVE virtual end address. + * + * Try to MMU map the buffer anywhere between the begin and end addresses. + * + * Return: 0 on success, else error code. + */ +int mvx_buffer_map(struct mvx_buffer *buf, mvx_mmu_va begin, mvx_mmu_va end); + +/** + * mvx_buffer_unmap() - Unmap the buffer from the MVE virtual address space. + * @buf: Pointer to buffer. + */ +void mvx_buffer_unmap(struct mvx_buffer *buf); + +/** + * mvx_buffer_is_mapped() - Return if buffer has been mapped. + * @buf: Pointer to buffer. + * + * Return: True if mapped, else false. + */ +bool mvx_buffer_is_mapped(struct mvx_buffer *buf); + +/** + * mvx_buffer_synch() - Synch the data caches. + * @buf: Pointer to buffer. + * @dir: Data direction. + * + * Return: 0 on success, else error code. + */ +int mvx_buffer_synch(struct mvx_buffer *buf, enum dma_data_direction dir); + +/** + * mvx_buffer_clear() - Clear and empty the buffer. + * @buf: Pointer to buffer. + */ +void mvx_buffer_clear(struct mvx_buffer *buf); + +/** + * mvx_buffer_filled_set() - Set filled bytes for each plane. + * @buf: Pointer to buffer. + * @plane: Plane index. + * @filled: Number of bytes filled. + * @offset: Number of bytes offset. + * + * Return: 0 on success, else error code. + */ +int mvx_buffer_filled_set(struct mvx_buffer *buf, unsigned int plane, + unsigned int filled, unsigned int offset); + +/** + * mvx_buffer_size() - Get size in bytes for a plane. + * @buf: Pointer to buffer. + * @plane: Which plane to get size for. + * + * Return: Size of plane. + */ +size_t mvx_buffer_size(struct mvx_buffer *buf, unsigned int plane); + +/** + * mvx_buffer_va() - Get VA for a plane. + * @buf: Pointer to buffer. + * @plane: Plane index. + * + * Return: VA address of plane, 0 if unmapped. + */ +mvx_mmu_va mvx_buffer_va(struct mvx_buffer *buf, unsigned int plane); + +/** + * mvx_buffer_frame_dim() - Get frame buffer dimensions. + * @format: Bitstream or frame format. + * @width: Width in pixels. + * @height: Height in pixels. + * @nplanes: Number of planes for this format. + * @stride: Horizontal stride in bytes. + * @size: Size in bytes for each plane. + * + * If *nplanes is larger than 0 then the stride is used as input to tell this + * function which stride that is desired, but it might be modified if the + * stride is too short or not optimal for the MVE hardware. + * + * Return: 0 on success, else error code. + */ +int mvx_buffer_frame_dim(enum mvx_format format, unsigned int width, + unsigned int height, uint8_t *nplanes, + unsigned int *stride, unsigned int *size, + unsigned int *setting_stride); + +/** + * mvx_buffer_frame_set() - Set frame dimensions. + * @buf: Pointer to buffer. + * @format: Bitstream or frame format. + * @width: Width in pixels. + * @height: Height in pixels. + * @stride: Horizontal stride in bytes. + * @size: Size in bytes for each plane. + * @interlaced: Defines if the buffer is interlaced. + * + * Return: 0 on success, else error code. + */ +int mvx_buffer_frame_set(struct mvx_buffer *buf, enum mvx_format format, + unsigned int width, unsigned int height, + unsigned int *stride, unsigned int *size, + bool interlaced); + +/** + * mvx_buffer_afbc_set() - Set AFBC dimensions. + * @buf: Pointer to buffer. + * @format: Bitstream or frame format. + * @width: Width in pixels. + * @height: Height in pixels. + * @afbc_width: AFBC width in superblocks. + * @size: Size in bytes for AFBC plane. + * @interlaced: Defines if the buffer is interlaced. + * + * Return: 0 on success, else error code. + */ +int mvx_buffer_afbc_set(struct mvx_buffer *buf, enum mvx_format format, + unsigned int width, unsigned int height, + unsigned int afbc_width, unsigned int size, + bool interlaced); + +/** + * mvx_buffer_show() - Print debug information into seq-file. + * @buf: Pointer to buffer. + * @s: Seq-file to print to. + */ +void mvx_buffer_show(struct mvx_buffer *buf, struct seq_file *s); + +#endif /* _MVX_BUFFER_H_ */ diff --git a/drivers/media/platform/canaan/vpu/mvx_dev.c b/drivers/media/platform/canaan/vpu/mvx_dev.c new file mode 100644 index 0000000000000..5fad451e6e9ba --- /dev/null +++ b/drivers/media/platform/canaan/vpu/mvx_dev.c @@ -0,0 +1,669 @@ +// SPDX-License-Identifier: GPL-2.0-only +/* + * The confidential and proprietary information contained in this file may + * only be used by a person authorised under and to the extent permitted + * by a subsisting licensing agreement from Arm Technology (China) Co., Ltd. + * + * (C) COPYRIGHT 2021-2021 Arm Technology (China) Co., Ltd. + * ALL RIGHTS RESERVED + * + * This entire notice must be reproduced on all copies of this file + * and copies of this file may only be made by a person if such person is + * permitted to do so under the terms of a subsisting license agreement + * from Arm Technology (China) Co., Ltd. + * + * 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. + * + */ + +/**************************************************************************** + * Includes + ****************************************************************************/ + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "mvx_bitops.h" +#include "mvx_dev.h" +#include "mvx_hwreg.h" +#include "mvx_if.h" +#include "mvx_scheduler.h" +#include "mvx_session.h" +#include "mvx_log_group.h" +#include "mvx_pm_runtime.h" + +/**************************************************************************** + * Defines + ****************************************************************************/ + +/** + * Name of the MVx dev device. + */ +#define MVX_DEV_NAME "amvx_dev" + +#define MVX_PCI_VENDOR 0x13b5 +#define MVX_PCI_DEVICE 0x0001 + +/**************************************************************************** + * Types + ****************************************************************************/ + +/** + * struct mvx_dev_ctx - Private context for the MVx dev device. + */ +struct mvx_dev_ctx { + struct device *dev; + struct clk *clk; + struct mvx_if_ops *if_ops; + struct mvx_client_ops client_ops; + struct mvx_hwreg hwreg; + struct mvx_sched scheduler; + unsigned int irq; + struct workqueue_struct *work_queue; + struct work_struct work; + unsigned long irqve; + struct dentry *dentry; +}; + +/** + * struct mvx_client_session - Device session. + * + * When the if module registers a session this structure is returned. + */ +struct mvx_client_session { + struct mvx_dev_ctx *ctx; + struct mvx_sched_session session; +}; + +/**************************************************************************** + * Static variables and functions + ****************************************************************************/ + +static struct mvx_dev_ctx *client_ops_to_ctx(struct mvx_client_ops *client) +{ + return container_of(client, struct mvx_dev_ctx, client_ops); +} + +static void get_hw_ver(struct mvx_client_ops *client, struct mvx_hw_ver *hw_ver) +{ + struct mvx_dev_ctx *ctx = client_ops_to_ctx(client); + + int ret = 0; + + ret = mvx_pm_runtime_get_sync(ctx->dev); + if (ret < 0) { + hw_ver->id = MVE_Unknown; + return; + } + + hw_ver->id = mvx_hwreg_get_hw_id(&ctx->hwreg, &hw_ver->revision, + &hw_ver->patch); + + ret = mvx_pm_runtime_put_sync(ctx->dev); + if (ret < 0) + hw_ver->id = MVE_Unknown; +} + +static void get_formats(struct mvx_client_ops *client, + enum mvx_direction direction, uint64_t *formats) +{ + struct mvx_dev_ctx *ctx = client_ops_to_ctx(client); + uint32_t fuses; + + int ret = 0; + + *formats = 0; + + ret = mvx_pm_runtime_get_sync(ctx->dev); + if (ret < 0) + return; + + ctx->hwreg.ops.get_formats(direction, formats); + + /* Remove formats based on fuses. */ + fuses = mvx_hwreg_read(&ctx->hwreg, MVX_HWREG_FUSE); + + if (fuses & MVX_HWREG_FUSE_DISABLE_AFBC) { + mvx_clear_bit(MVX_FORMAT_YUV420_AFBC_8, formats); + mvx_clear_bit(MVX_FORMAT_YUV420_AFBC_10, formats); + mvx_clear_bit(MVX_FORMAT_YUV422_AFBC_8, formats); + mvx_clear_bit(MVX_FORMAT_YUV422_AFBC_10, formats); + } + + if (fuses & MVX_HWREG_FUSE_DISABLE_REAL) + mvx_clear_bit(MVX_FORMAT_RV, formats); + + if (fuses & MVX_HWREG_FUSE_DISABLE_VPX) { + mvx_clear_bit(MVX_FORMAT_VP8, formats); + mvx_clear_bit(MVX_FORMAT_VP9, formats); + } + + if (fuses & MVX_HWREG_FUSE_DISABLE_HEVC) + mvx_clear_bit(MVX_FORMAT_HEVC, formats); + + ret = mvx_pm_runtime_put_sync(ctx->dev); + if (ret < 0) + *formats = 0; +} + +static unsigned int get_ncores(struct mvx_client_ops *client) +{ + struct mvx_dev_ctx *ctx = client_ops_to_ctx(client); + uint32_t ncores; + + int ret = 0; + + ret = mvx_pm_runtime_get_sync(ctx->dev); + if (ret < 0) + return 0; + + ncores = mvx_hwreg_read(&ctx->hwreg, MVX_HWREG_NCORES); + + ret = mvx_pm_runtime_put_sync(ctx->dev); + if (ret < 0) + return 0; + + return ncores; +} + +static struct mvx_client_session * +register_session(struct mvx_client_ops *client, struct mvx_if_session *isession) +{ + struct mvx_dev_ctx *ctx = client_ops_to_ctx(client); + struct mvx_client_session *csession; + int ret; + + csession = devm_kzalloc(ctx->dev, sizeof(*csession), GFP_KERNEL); + if (csession == NULL) + return ERR_PTR(-ENOMEM); + + csession->ctx = ctx; + + ret = mvx_pm_runtime_get_sync(ctx->dev); + if (ret < 0) + goto free_session; + + ret = mvx_sched_session_construct(&csession->session, isession); + if (ret != 0) + goto runtime_put; + + MVX_LOG_PRINT(&mvx_log_dev, MVX_LOG_INFO, + "Register client session. csession=0x%p, isession=0x%p.", + csession, isession); + + return csession; + +runtime_put: + mvx_pm_runtime_put_sync(csession->ctx->dev); +free_session: + devm_kfree(ctx->dev, csession); + + return ERR_PTR(ret); +} + +static void unregister_session(struct mvx_client_session *csession) +{ + MVX_LOG_PRINT(&mvx_log_dev, MVX_LOG_INFO, + "%p Unregister client session. csession=0x%p.", + mvx_if_session_to_session(csession->session.isession), + csession); + + mvx_sched_terminate(&csession->ctx->scheduler, &csession->session); + mvx_sched_session_destruct(&csession->session); + + mvx_pm_runtime_put_sync(csession->ctx->dev); + + devm_kfree(csession->ctx->dev, csession); +} + +static int switch_in(struct mvx_client_session *csession) +{ + struct mvx_dev_ctx *ctx = csession->ctx; + int ret; + + ret = mvx_sched_switch_in(&ctx->scheduler, &csession->session); + + return ret; +} + +static int send_irq(struct mvx_client_session *csession) +{ + struct mvx_dev_ctx *ctx = csession->ctx; + int ret; + + ret = mvx_sched_send_irq(&ctx->scheduler, &csession->session); + + return ret; +} + +static int flush_mmu(struct mvx_client_session *csession) +{ + struct mvx_dev_ctx *ctx = csession->ctx; + int ret; + + ret = mvx_sched_flush_mmu(&ctx->scheduler, &csession->session); + + return ret; +} + +static void print_debug(struct mvx_client_session *csession) +{ + struct mvx_dev_ctx *ctx = csession->ctx; + + mvx_sched_print_debug(&ctx->scheduler, &csession->session); +} + +static struct mvx_dev_ctx *work_to_ctx(struct work_struct *work) +{ + return container_of(work, struct mvx_dev_ctx, work); +} + +/** + * irq_bottom() - Handle IRQ bottom. + * @work: Work struct that is part of the context structure. + * + * This function is called from a work queue and id doing the actual work of + * handling the interrupt. + */ +static void irq_bottom(struct work_struct *work) +{ + struct mvx_dev_ctx *ctx = work_to_ctx(work); + uint32_t nlsid; + uint32_t i; + + nlsid = mvx_hwreg_read(&ctx->hwreg, MVX_HWREG_NLSID); + for (i = 0; i < nlsid; i++) + if (test_and_clear_bit(i, &ctx->irqve)) + mvx_sched_handle_irq(&ctx->scheduler, i); +} + +/** + * irq_top() - Handle IRQ top. + * @irq: IRQ number. + * @dev_id: Pointer to context. + * + * This function is called in interrupt context. It should be short and must not + * block. + * + * Return: IRQ status if the IRQ was handled or not. + */ +static irqreturn_t irq_top(int irq, void *dev_id) +{ + struct mvx_dev_ctx *ctx = dev_id; + uint32_t nlsid; + uint32_t irqve; + int ret = IRQ_NONE; + + nlsid = mvx_hwreg_read(&ctx->hwreg, MVX_HWREG_NLSID); + irqve = mvx_hwreg_read(&ctx->hwreg, MVX_HWREG_IRQVE); + while (nlsid-- > 0) + if ((irqve >> nlsid) & 0x1) { + mvx_hwreg_write_lsid(&ctx->hwreg, nlsid, + MVX_HWREG_LIRQVE, 0); + set_bit(nlsid, &ctx->irqve); + ret = IRQ_HANDLED; + } + + queue_work(ctx->work_queue, &ctx->work); + + return ret; +} + +static int mvx_dev_probe(struct device *dev, struct resource *iores, + struct resource *irqres) +{ + struct mvx_dev_ctx *ctx; + int ret; + + /* Create device context and store pointer in device private data. */ + ctx = devm_kzalloc(dev, sizeof(*ctx), GFP_KERNEL); + if (ctx == NULL) + return -EINVAL; + + ctx->dev = dev; + + dev_set_drvdata(dev, ctx); + + ret = mvx_pm_runtime_get_sync(ctx->dev); + if (ret < 0) + goto free_ctx; + +#ifdef ENABLE_PM_CLK + ctx->clk = devm_clk_get(dev, "vpu"); + clk_prepare_enable(ctx->clk); +#endif + + /* Setup client ops callbacks. */ + ctx->client_ops.get_hw_ver = get_hw_ver; + ctx->client_ops.get_formats = get_formats; + ctx->client_ops.get_ncores = get_ncores; + ctx->client_ops.register_session = register_session; + ctx->client_ops.unregister_session = unregister_session; + ctx->client_ops.switch_in = switch_in; + ctx->client_ops.send_irq = send_irq; + ctx->client_ops.flush_mmu = flush_mmu; + ctx->client_ops.print_debug = print_debug; + + /* Create if context. */ + ctx->if_ops = mvx_if_create(dev, &ctx->client_ops, ctx); + if (IS_ERR(ctx->if_ops)) + goto runtime_put; + + /* Create debugfs entry */ + if (IS_ENABLED(CONFIG_DEBUG_FS)) { + char name[20]; + + scnprintf(name, sizeof(name), "%s%u", MVX_DEV_NAME, dev->id); + ctx->dentry = debugfs_create_dir(name, NULL); + if (IS_ERR_OR_NULL(ctx->dentry)) { + ret = -EINVAL; + goto destroy_if; + } + } + + /* Construct hw register context. */ + ret = mvx_hwreg_construct(&ctx->hwreg, dev, iores, ctx->dentry); + if (ret != 0) + goto destruct_dentry; + + ret = mvx_sched_construct(&ctx->scheduler, dev, ctx->if_ops, + &ctx->hwreg, ctx->dentry); + if (ret != 0) + goto destruct_hwreg; + + /* Create work queue for IRQ handler. */ + ctx->work_queue = alloc_workqueue(dev_name(dev), WQ_UNBOUND, 1); + if (ctx->work_queue == NULL) { + MVX_LOG_PRINT(&mvx_log_dev, MVX_LOG_ERROR, + "Failed to create work queue."); + ret = -EINVAL; + goto destruct_sched; + } + + INIT_WORK(&ctx->work, irq_bottom); + + /* Request IRQ handler. */ + ctx->irq = irqres->start; + ret = request_irq(ctx->irq, irq_top, + IRQF_SHARED | (irqres->flags & IRQF_TRIGGER_MASK), + dev_name(dev), ctx); + if (ret != 0) { + MVX_LOG_PRINT(&mvx_log_dev, MVX_LOG_ERROR, + "Failed to request IRQ. irq=%u, ret=%d.", + ctx->irq, ret); + goto workqueue_destroy; + } + + MVX_LOG_PRINT(&mvx_log_dev, MVX_LOG_WARNING, + "Linlon v%x identified. cores=%u, nlsid=%u, id=%u.", + mvx_hwreg_get_hw_id(&ctx->hwreg, NULL, NULL), + mvx_hwreg_read(&ctx->hwreg, MVX_HWREG_NCORES), + mvx_hwreg_read(&ctx->hwreg, MVX_HWREG_NLSID), dev->id); + + ret = mvx_pm_runtime_put_sync(ctx->dev); + if (ret < 0) + goto irq_free; + + return 0; + +irq_free: + free_irq(ctx->irq, ctx); + +workqueue_destroy: + destroy_workqueue(ctx->work_queue); + +destruct_sched: + mvx_sched_destruct(&ctx->scheduler); + +destruct_hwreg: + mvx_hwreg_destruct(&ctx->hwreg); + +destruct_dentry: + if (IS_ENABLED(CONFIG_DEBUG_FS)) + debugfs_remove_recursive(ctx->dentry); + +destroy_if: + mvx_if_destroy(ctx->if_ops); + +runtime_put: + pm_runtime_put_sync(ctx->dev); + +free_ctx: + devm_kfree(dev, ctx); + + return ret; +} + +static int mvx_dev_remove(struct mvx_dev_ctx *ctx) +{ + MVX_LOG_PRINT(&mvx_log_dev, MVX_LOG_INFO, "remove"); + + mvx_if_destroy(ctx->if_ops); + free_irq(ctx->irq, ctx); + destroy_workqueue(ctx->work_queue); + mvx_sched_destruct(&ctx->scheduler); + mvx_hwreg_destruct(&ctx->hwreg); + dev_set_drvdata(ctx->dev, NULL); + + if (IS_ENABLED(CONFIG_DEBUG_FS)) + debugfs_remove_recursive(ctx->dentry); +#ifdef ENABLE_PM_CLK + clk_disable_unprepare(ctx->clk); +#endif + devm_kfree(ctx->dev, ctx); + + return 0; +} + +/**************************************************************************** + * Platform driver + ****************************************************************************/ + +static int mvx_pdev_probe(struct platform_device *pdev) +{ + struct resource iores; + struct resource irqres; + unsigned int irq; + int ret; + + MVX_LOG_PRINT(&mvx_log_dev, MVX_LOG_INFO, "probe"); + + /* Get resource. */ + ret = of_address_to_resource(pdev->dev.of_node, 0, &iores); + if (ret != 0) { + MVX_LOG_PRINT(&mvx_log_dev, MVX_LOG_ERROR, + "Failed to get address of resource. ret=%d.", + ret); + return ret; + } + + /* Get IRQ resource. */ + irq = of_irq_to_resource(pdev->dev.of_node, 0, &irqres); + if (irq == 0) { + MVX_LOG_PRINT(&mvx_log_dev, MVX_LOG_ERROR, + "Failed to get IRQ resource."); + return -EINVAL; + } + +#ifdef ENABLE_PM_CLK + pm_runtime_enable(&pdev->dev); +#endif + + ret = mvx_dev_probe(&pdev->dev, &iores, &irqres); + +#ifdef ENABLE_PM_CLK + if (ret != 0) + pm_runtime_disable(&pdev->dev); +#endif + return ret; +} + +static int mvx_pdev_remove(struct platform_device *pdev) +{ + struct mvx_dev_ctx *ctx = platform_get_drvdata(pdev); + int ret; + + MVX_LOG_PRINT(&mvx_log_dev, MVX_LOG_INFO, "pdev remove"); + + ret = mvx_dev_remove(ctx); + +#ifdef ENABLE_PM_CLK + pm_runtime_disable(&pdev->dev); +#endif + return ret; +} + +#ifdef CONFIG_PM + +static int mvx_pm_suspend(struct device *dev) +{ + MVX_LOG_PRINT(&mvx_log_dev, MVX_LOG_INFO, "mvx_pm_suspend"); + return 0; +} + +static int mvx_pm_resume(struct device *dev) +{ + MVX_LOG_PRINT(&mvx_log_dev, MVX_LOG_INFO, "mvx_pm_resume"); + return 0; +} + +static int mvx_pm_runtime_suspend(struct device *dev) +{ + MVX_LOG_PRINT(&mvx_log_dev, MVX_LOG_INFO, "mvx_pm_runtime_suspend"); + return 0; +} + +static int mvx_pm_runtime_resume(struct device *dev) +{ + MVX_LOG_PRINT(&mvx_log_dev, MVX_LOG_INFO, "mvx_pm_runtime_resume"); + return 0; +} + +static int mvx_pm_runtime_idle(struct device *dev) +{ + MVX_LOG_PRINT(&mvx_log_dev, MVX_LOG_INFO, "mvx_pm_runtime_idle"); + return 0; +} + +static const struct dev_pm_ops mvx_dev_pm_ops = { + .suspend = mvx_pm_suspend, + .resume = mvx_pm_resume, + .runtime_suspend = mvx_pm_runtime_suspend, + .runtime_resume = mvx_pm_runtime_resume, + .runtime_idle = mvx_pm_runtime_idle, +}; +#endif /* CONFIG_PM */ + +static const struct of_device_id mvx_dev_match_table[] = { + { .compatible = "canaan,vpu" }, + { .compatible = "canaan,linlon-v5" }, + { .compatible = "canaan,linlon-v6" }, + { .compatible = "canaan,linlon-v7" }, + { .compatible = "canaan,linlon-v8" }, + { { 0 } } +}; + +static struct platform_driver mvx_dev_driver = { + .probe = mvx_pdev_probe, + .remove = mvx_pdev_remove, + .driver = { .name = MVX_DEV_NAME, + .owner = THIS_MODULE, + .of_match_table = mvx_dev_match_table, +#ifdef CONFIG_PM + .pm = &mvx_dev_pm_ops +#endif /* CONFIG_PM */ + } +}; + +/**************************************************************************** + * PCI driver + ****************************************************************************/ + +/* LCOV_EXCL_START */ +static int mvx_pci_probe(struct pci_dev *pdev, const struct pci_device_id *id) +{ + static unsigned int dev_id; + struct resource irqres = { .start = pdev->irq, + .end = pdev->irq, + .flags = 0 }; + pdev->dev.id = dev_id++; + return mvx_dev_probe(&pdev->dev, &pdev->resource[1], &irqres); +} + +static void mvx_pci_remove(struct pci_dev *pdev) +{ + struct mvx_dev_ctx *ctx = pci_get_drvdata(pdev); + + mvx_dev_remove(ctx); +} + +static struct pci_device_id mvx_pci_device_id[] = { + { PCI_DEVICE(MVX_PCI_VENDOR, MVX_PCI_DEVICE) }, + { + 0, + } +}; + +MODULE_DEVICE_TABLE(pci, mvx_pci_device_id); + +static struct pci_driver mvx_pci_driver = { .name = MVX_DEV_NAME, + .id_table = mvx_pci_device_id, + .probe = mvx_pci_probe, + .remove = mvx_pci_remove }; +/* LCOV_EXCL_STOP */ + +/**************************************************************************** + * Exported variables and functions + ****************************************************************************/ + +int mvx_dev_init(void) +{ + int ret; + + ret = platform_driver_register(&mvx_dev_driver); + if (ret != 0) { + pr_err("mvx_dev: Failed to register driver.\n"); + return ret; + } + + /* LCOV_EXCL_START */ + ret = pci_register_driver(&mvx_pci_driver); + if (ret != 0) { + pr_err("mvx_dev: Failed to register PCI driver.\n"); + goto unregister_driver; + } + + /* LCOV_EXCL_STOP */ + + return 0; + +unregister_driver: + platform_driver_unregister(&mvx_dev_driver); /* LCOV_EXCL_LINE */ + + return ret; +} + +void mvx_dev_exit(void) +{ + pci_unregister_driver(&mvx_pci_driver); /* LCOV_EXCL_LINE */ + platform_driver_unregister(&mvx_dev_driver); +} diff --git a/drivers/media/platform/canaan/vpu/mvx_dev.h b/drivers/media/platform/canaan/vpu/mvx_dev.h new file mode 100644 index 0000000000000..4ac823d75f6c5 --- /dev/null +++ b/drivers/media/platform/canaan/vpu/mvx_dev.h @@ -0,0 +1,43 @@ +/* SPDX-License-Identifier: GPL-2.0-only + * The confidential and proprietary information contained in this file may + * only be used by a person authorised under and to the extent permitted + * by a subsisting licensing agreement from Arm Technology (China) Co., Ltd. + * + * (C) COPYRIGHT 2021-2021 Arm Technology (China) Co., Ltd. + * ALL RIGHTS RESERVED + * + * This entire notice must be reproduced on all copies of this file + * and copies of this file may only be made by a person if such person is + * permitted to do so under the terms of a subsisting license agreement + * from Arm Technology (China) Co., Ltd. + * + * 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. + * + */ + +#ifndef _MVX_DEV_H_ +#define _MVX_DEV_H_ + +/**************************************************************************** + * Exported functions + ****************************************************************************/ + +/** + * mvx_dev_init() - Initialize the dev device. + */ +int mvx_dev_init(void); + +/** + * mvx_dev_exit() - Remove and exit the dev device. + */ +void mvx_dev_exit(void); + +#endif /* _MVX_DEV_H_ */ diff --git a/drivers/media/platform/canaan/vpu/mvx_driver.c b/drivers/media/platform/canaan/vpu/mvx_driver.c new file mode 100644 index 0000000000000..71c4de039ee8e --- /dev/null +++ b/drivers/media/platform/canaan/vpu/mvx_driver.c @@ -0,0 +1,65 @@ +// SPDX-License-Identifier: GPL-2.0-only +/* + * The confidential and proprietary information contained in this file may + * only be used by a person authorised under and to the extent permitted + * by a subsisting licensing agreement from Arm Technology (China) Co., Ltd. + * + * (C) COPYRIGHT 2021-2021 Arm Technology (China) Co., Ltd. + * ALL RIGHTS RESERVED + * + * This entire notice must be reproduced on all copies of this file + * and copies of this file may only be made by a person if such person is + * permitted to do so under the terms of a subsisting license agreement + * from Arm Technology (China) Co., Ltd. + * + * 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. + * + */ + +#include +#include +#include +#include "mvx_if.h" +#include "mvx_dev.h" +#include "mvx_log_group.h" + +MODULE_LICENSE("GPL"); +MODULE_AUTHOR("ARMChina"); +MODULE_DESCRIPTION("Tiube VPU Driver."); + +static int __init mvx_init(void) +{ + int ret; + + ret = mvx_log_group_init("amvx"); + if (ret != 0) { + pr_err("Failed to create MVx driver logging.\n"); + return ret; + } + + ret = mvx_dev_init(); + if (ret != 0) { + pr_err("Failed to register MVx dev driver.\n"); + mvx_log_group_deinit(); + return ret; + } + + return 0; +} + +static void __exit mvx_exit(void) +{ + mvx_dev_exit(); + mvx_log_group_deinit(); +} + +module_init(mvx_init); +module_exit(mvx_exit); diff --git a/drivers/media/platform/canaan/vpu/mvx_ext_if.h b/drivers/media/platform/canaan/vpu/mvx_ext_if.h new file mode 100644 index 0000000000000..e52ea8b476f21 --- /dev/null +++ b/drivers/media/platform/canaan/vpu/mvx_ext_if.h @@ -0,0 +1,80 @@ +/* SPDX-License-Identifier: GPL-2.0-only + * The confidential and proprietary information contained in this file may + * only be used by a person authorised under and to the extent permitted + * by a subsisting licensing agreement from Arm Technology (China) Co., Ltd. + * + * (C) COPYRIGHT 2021-2021 Arm Technology (China) Co., Ltd. + * ALL RIGHTS RESERVED + * + * This entire notice must be reproduced on all copies of this file + * and copies of this file may only be made by a person if such person is + * permitted to do so under the terms of a subsisting license agreement + * from Arm Technology (China) Co., Ltd. + * + * 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. + * + */ + +#ifndef _MVX_EXT_H_ +#define _MVX_EXT_H_ + +/**************************************************************************** + * Includes + ****************************************************************************/ + +#include +#include +#include + +/**************************************************************************** + * Types + ****************************************************************************/ + +struct device; +struct mvx_csched; +struct mvx_fw_cache; + +struct mvx_ext_if { + struct mutex lock; + struct device *dev; + struct mvx_fw_cache *cache; + struct mvx_client_ops *client_ops; + struct video_device vdev; + struct v4l2_device v4l2_dev; + struct dentry *dsessions; +}; + +/**************************************************************************** + * Exported functions + ****************************************************************************/ + +/** + * mvx_ext_if_construct() - Construct the external interface object. + * @ext: Pointer to interface object. + * @dev: Pointer to device struct. + * @cache: Pointer to firmware cache. + * @client_ops: Pointer to client client_ops. + * @parent: Parent debugfs directory entry. + * + * Return: 0 on success, else error code. + */ +int mvx_ext_if_construct(struct mvx_ext_if *ext, struct device *dev, + struct mvx_fw_cache *cache, + struct mvx_client_ops *client_ops, + struct dentry *parent); + +/** + * mvx_ext_if_destruct() - Destroy external interface instance. + * @ext: Pointer to interface object. + */ +void mvx_ext_if_destruct(struct mvx_ext_if *ext); + +#endif /* _MVX_EXT_H_ */ diff --git a/drivers/media/platform/canaan/vpu/mvx_ext_v4l2.c b/drivers/media/platform/canaan/vpu/mvx_ext_v4l2.c new file mode 100644 index 0000000000000..5f218a29a32fb --- /dev/null +++ b/drivers/media/platform/canaan/vpu/mvx_ext_v4l2.c @@ -0,0 +1,169 @@ +// SPDX-License-Identifier: GPL-2.0-only +/* + * The confidential and proprietary information contained in this file may + * only be used by a person authorised under and to the extent permitted + * by a subsisting licensing agreement from Arm Technology (China) Co., Ltd. + * + * (C) COPYRIGHT 2021-2021 Arm Technology (China) Co., Ltd. + * ALL RIGHTS RESERVED + * + * This entire notice must be reproduced on all copies of this file + * and copies of this file may only be made by a person if such person is + * permitted to do so under the terms of a subsisting license agreement + * from Arm Technology (China) Co., Ltd. + * + * 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. + * + */ + +/**************************************************************************** + * Includes + ****************************************************************************/ + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "mvx_bitops.h" +#include "mvx_buffer.h" +#include "mvx_ext_if.h" +#include "mvx_firmware.h" +#include "mvx_if.h" +#include "mvx_mmu.h" +#include "mvx_session.h" + +#include "mvx_v4l2_buffer.h" +#include "mvx_v4l2_session.h" +#include "mvx_v4l2_vidioc.h" +#include "mvx_v4l2_fops.h" +#include "mvx_log_group.h" + +static const struct v4l2_file_operations mvx_v4l2_fops = { + .owner = THIS_MODULE, + .open = mvx_v4l2_open, + .release = mvx_v4l2_release, + .poll = mvx_v4l2_poll, + .unlocked_ioctl = video_ioctl2, + .mmap = mvx_v4l2_mmap +}; + +static const struct v4l2_ioctl_ops mvx_v4l2_ioctl_ops = { + .vidioc_querycap = mvx_v4l2_vidioc_querycap, + .vidioc_enum_fmt_vid_cap = mvx_v4l2_vidioc_enum_fmt_vid_cap, + .vidioc_enum_fmt_vid_out = mvx_v4l2_vidioc_enum_fmt_vid_out, + .vidioc_enum_framesizes = mvx_v4l2_vidioc_enum_framesizes, + .vidioc_g_fmt_vid_cap = mvx_v4l2_vidioc_g_fmt_vid_cap, + .vidioc_g_fmt_vid_cap_mplane = mvx_v4l2_vidioc_g_fmt_vid_cap, + .vidioc_g_fmt_vid_out = mvx_v4l2_vidioc_g_fmt_vid_out, + .vidioc_g_fmt_vid_out_mplane = mvx_v4l2_vidioc_g_fmt_vid_out, + .vidioc_s_fmt_vid_cap = mvx_v4l2_vidioc_s_fmt_vid_cap, + .vidioc_s_fmt_vid_cap_mplane = mvx_v4l2_vidioc_s_fmt_vid_cap, + .vidioc_s_fmt_vid_out = mvx_v4l2_vidioc_s_fmt_vid_out, + .vidioc_s_fmt_vid_out_mplane = mvx_v4l2_vidioc_s_fmt_vid_out, + .vidioc_try_fmt_vid_cap = mvx_v4l2_vidioc_try_fmt_vid_cap, + .vidioc_try_fmt_vid_cap_mplane = mvx_v4l2_vidioc_try_fmt_vid_cap, + .vidioc_try_fmt_vid_out = mvx_v4l2_vidioc_try_fmt_vid_out, + .vidioc_try_fmt_vid_out_mplane = mvx_v4l2_vidioc_try_fmt_vid_out, + .vidioc_g_selection = mvx_v4l2_vidioc_g_selection, + .vidioc_streamon = mvx_v4l2_vidioc_streamon, + .vidioc_streamoff = mvx_v4l2_vidioc_streamoff, + .vidioc_encoder_cmd = mvx_v4l2_vidioc_encoder_cmd, + .vidioc_try_encoder_cmd = mvx_v4l2_vidioc_try_encoder_cmd, + .vidioc_decoder_cmd = mvx_v4l2_vidioc_decoder_cmd, + .vidioc_try_decoder_cmd = mvx_v4l2_vidioc_try_decoder_cmd, + .vidioc_reqbufs = mvx_v4l2_vidioc_reqbufs, + .vidioc_create_bufs = mvx_v4l2_vidioc_create_bufs, + .vidioc_querybuf = mvx_v4l2_vidioc_querybuf, + .vidioc_qbuf = mvx_v4l2_vidioc_qbuf, + .vidioc_dqbuf = mvx_v4l2_vidioc_dqbuf, + .vidioc_subscribe_event = mvx_v4l2_vidioc_subscribe_event, + .vidioc_unsubscribe_event = v4l2_event_unsubscribe, + .vidioc_default = mvx_v4l2_vidioc_default +}; + +/**************************************************************************** + * Exported functions and variables + ****************************************************************************/ + +int mvx_ext_if_construct(struct mvx_ext_if *ext, struct device *dev, + struct mvx_fw_cache *cache, + struct mvx_client_ops *client_ops, + struct dentry *parent) +{ + int ret; + char name[] = "mvx"; + + ext->dev = dev; + ext->cache = cache; + ext->client_ops = client_ops; + mutex_init(&ext->lock); + + if (IS_ENABLED(CONFIG_DEBUG_FS)) { + ext->dsessions = debugfs_create_dir("session", parent); + if (IS_ERR_OR_NULL(ext->dsessions)) + return -ENOMEM; + } + + ret = v4l2_device_register(dev, &ext->v4l2_dev); + + if (ret != 0) { + MVX_LOG_PRINT(&mvx_log_if, MVX_LOG_ERROR, + "Failed to register V4L2 device. ret=%d.", ret); + goto delete_dentry; + } + + /* Video device. */ + ext->vdev.fops = &mvx_v4l2_fops; + ext->vdev.ioctl_ops = &mvx_v4l2_ioctl_ops; + ext->vdev.release = video_device_release_empty; + ext->vdev.vfl_dir = VFL_DIR_M2M; + ext->vdev.v4l2_dev = &ext->v4l2_dev; + ext->vdev.device_caps = V4L2_CAP_VIDEO_M2M | V4L2_CAP_VIDEO_M2M_MPLANE | + V4L2_CAP_EXT_PIX_FORMAT | V4L2_CAP_STREAMING; + + strscpy(ext->vdev.name, name, sizeof(ext->vdev.name)); + + video_set_drvdata(&ext->vdev, ext); + + ret = video_register_device(&ext->vdev, + /*VFL_TYPE_SUBDEV*/ VFL_TYPE_VIDEO, -1); + + if (ret != 0) { + MVX_LOG_PRINT(&mvx_log_if, MVX_LOG_ERROR, + "Failed to register video device. ret=%d.", ret); + goto unregister_device; + } + + return 0; + +unregister_device: + v4l2_device_unregister(&ext->v4l2_dev); + +delete_dentry: + if (IS_ENABLED(CONFIG_DEBUG_FS)) + debugfs_remove_recursive(ext->dsessions); + + return ret; +} + +void mvx_ext_if_destruct(struct mvx_ext_if *ext) +{ + video_unregister_device(&ext->vdev); + v4l2_device_unregister(&ext->v4l2_dev); + + if (IS_ENABLED(CONFIG_DEBUG_FS)) + debugfs_remove_recursive(ext->dsessions); +} diff --git a/drivers/media/platform/canaan/vpu/mvx_firmware.c b/drivers/media/platform/canaan/vpu/mvx_firmware.c new file mode 100644 index 0000000000000..882a352358232 --- /dev/null +++ b/drivers/media/platform/canaan/vpu/mvx_firmware.c @@ -0,0 +1,562 @@ +// SPDX-License-Identifier: GPL-2.0-only +/* + * The confidential and proprietary information contained in this file may + * only be used by a person authorised under and to the extent permitted + * by a subsisting licensing agreement from Arm Technology (China) Co., Ltd. + * + * (C) COPYRIGHT 2021-2021 Arm Technology (China) Co., Ltd. + * ALL RIGHTS RESERVED + * + * This entire notice must be reproduced on all copies of this file + * and copies of this file may only be made by a person if such person is + * permitted to do so under the terms of a subsisting license agreement + * from Arm Technology (China) Co., Ltd. + * + * 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. + * + */ + +/**************************************************************************** + * Includes + ****************************************************************************/ + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "mvx_if.h" +#include "mvx_log_group.h" +#include "mvx_firmware_cache.h" +#include "mvx_firmware_priv.h" +#include "mvx_mmu.h" +#include "mvx_secure.h" +#include "mvx_seq.h" + +/**************************************************************************** + * Defines + ****************************************************************************/ + +#define FW_TEXT_BASE_ADDR 0x1000u + +/**************************************************************************** + * Private functions + ****************************************************************************/ + +/** + * test_bit_32() - 32 bit version Linux test_bit. + * + * Test if bit is set in bitmap array. + */ +static bool test_bit_32(int bit, const uint32_t *addr) +{ + return 0 != (addr[bit >> 5] & (1 << (bit & 0x1f))); +} + +/** + * get_major_version() - Get firmware major version. + * + * Return: Major version. + */ +static unsigned int get_major_version(const struct mvx_fw_bin *fw_bin) +{ + if (fw_bin->securevideo != false) + return fw_bin->secure.securefw->protocol.major; + else + return fw_bin->nonsecure.header->protocol_major; +} + +/** + * get_minor_version() - Get firmware minor version. + * + * Return: Minor version. + */ +static unsigned int get_minor_version(const struct mvx_fw_bin *fw_bin) +{ + if (fw_bin->securevideo != false) + return fw_bin->secure.securefw->protocol.minor; + else + return fw_bin->nonsecure.header->protocol_minor; +} + +/** + * fw_unmap() - Remove MMU mappings and release allocated memory. + */ +static void fw_unmap(struct mvx_fw *fw) +{ + unsigned int i; + uint32_t begin; + uint32_t end; + int ret; + + if (fw->fw_bin->securevideo == false) { + /* Unmap a region of 4 MB for each core. */ + for (i = 0; i < fw->ncores; i++) { + ret = fw->ops.get_region(MVX_FW_REGION_CORE_0 + i, + &begin, &end); + if (ret == 0) + mvx_mmu_unmap_va(fw->mmu, begin, + 4 * 1024 * 1024); + } + + if (!IS_ERR_OR_NULL(fw->text)) + mvx_mmu_free_pages(fw->text); + + if (!IS_ERR_OR_NULL(fw->bss)) + mvx_mmu_free_pages(fw->bss); + + if (!IS_ERR_OR_NULL(fw->bss_shared)) + mvx_mmu_free_pages(fw->bss_shared); + } + + fw->ops.unmap_protocol(fw); +} + +/** + * fw_map_core() - Map pages for the text and BSS segments for one core. + * + * This function assumes that the fw instance has been correctly allocated + * and instansiated and will therefor not make any NULL pointer checks. It + * assumes that all pointers - for example to the mmu or firmware binary - have + * been correctly set up. + */ +static int fw_map_core(struct mvx_fw *fw, unsigned int core) +{ + int ret; + const struct mvx_fw_header *header = fw->fw_bin->nonsecure.header; + mvx_mmu_va fw_base; + mvx_mmu_va end; + mvx_mmu_va va; + unsigned int i; + unsigned int bss_cnt = core * fw->fw_bin->nonsecure.bss_cnt; + unsigned int bss_scnt = 0; + + /* + * Get the base address where the pages for this cores should be + * mapped. + */ + ret = fw->ops.get_region(MVX_FW_REGION_CORE_0 + core, &fw_base, &end); + if (ret != 0) + return ret; + + /* Map text segment. */ + ret = mvx_mmu_map_pages(fw->mmu, fw_base + FW_TEXT_BASE_ADDR, fw->text, + MVX_ATTR_PRIVATE, MVX_ACCESS_EXECUTABLE); + if (ret != 0) + return ret; + + /* Map bss shared and private pages. */ + va = header->bss_start_address; + for (i = 0; i < header->bss_bitmap_size; i++) { + if (va >= header->master_rw_start_address && + va < (header->master_rw_start_address + + header->master_rw_size)) + ret = mvx_mmu_map_pa(fw->mmu, fw_base + va, + fw->bss_shared->pages[bss_scnt++], + MVE_PAGE_SIZE, MVX_ATTR_PRIVATE, + MVX_ACCESS_READ_WRITE); + else if (test_bit_32(i, header->bss_bitmap)) + ret = mvx_mmu_map_pa(fw->mmu, fw_base + va, + fw->bss->pages[bss_cnt++], + MVE_PAGE_SIZE, MVX_ATTR_PRIVATE, + MVX_ACCESS_READ_WRITE); + + if (ret != 0) + return ret; + + va += MVE_PAGE_SIZE; + } + + return 0; +} + +/** + * fw_map() - Map up MMU tables. + */ +static int fw_map(struct mvx_fw *fw) +{ + int ret; + unsigned int i; + + if (fw->fw_bin->securevideo != false) { + /* Map MMU tables for each core. */ + for (i = 0; i < fw->ncores; i++) { + mvx_mmu_va fw_base; + mvx_mmu_va end; + phys_addr_t l2 = fw->fw_bin->secure.securefw->l2pages + + i * MVE_PAGE_SIZE; + + ret = fw->ops.get_region(MVX_FW_REGION_CORE_0 + i, + &fw_base, &end); + if (ret != 0) + return ret; + + ret = mvx_mmu_map_l2(fw->mmu, fw_base, l2); + if (ret != 0) + goto unmap_fw; + } + } else { + const struct mvx_fw_bin *fw_bin = fw->fw_bin; + const struct mvx_fw_header *header = fw_bin->nonsecure.header; + + /* Allocate memory for text segment. */ + fw->text = mvx_mmu_alloc_pages(fw->dev, + fw_bin->nonsecure.text_cnt, 0); + if (IS_ERR(fw->text)) + return PTR_ERR(fw->text); + + /* Allocate memory for BSS segment. */ + fw->bss = mvx_mmu_alloc_pages( + fw->dev, fw_bin->nonsecure.bss_cnt * fw->ncores, 0); + if (IS_ERR(fw->bss)) { + ret = PTR_ERR(fw->bss); + goto unmap_fw; + } + + /* Allocate memory for BSS shared segment. */ + fw->bss_shared = mvx_mmu_alloc_pages( + fw->dev, fw_bin->nonsecure.sbss_cnt, 0); + if (IS_ERR(fw->bss_shared)) { + ret = PTR_ERR(fw->bss_shared); + goto unmap_fw; + } + + /* Map MMU tables for each core. */ + for (i = 0; i < fw->ncores; i++) { + ret = fw_map_core(fw, i); + if (ret != 0) + goto unmap_fw; + } + + /* Copy firmware binary. */ + ret = mvx_mmu_write(fw->mmu, FW_TEXT_BASE_ADDR, + fw_bin->nonsecure.fw->data, + header->text_length); + if (ret != 0) + goto unmap_fw; + } + + /* Map MMU tables for the message queues. */ + ret = fw->ops.map_protocol(fw); + if (ret != 0) + goto unmap_fw; + + return 0; + +unmap_fw: + fw_unmap(fw); + + return ret; +} + +/** + * Callbacks and handlers for FW stats. + */ +static int fw_stat_show(struct seq_file *s, void *v) +{ + struct mvx_fw *fw = (struct mvx_fw *)s->private; + const struct mvx_fw_bin *fw_bin = fw->fw_bin; + + mvx_seq_printf(s, "mvx_fw", 0, "%p\n", fw); + seq_puts(s, "\n"); + + mvx_seq_printf(s, "mmu", 0, "%p\n", fw->mmu); + + if (fw_bin->securevideo == false) { + mvx_seq_printf(s, "text", 0, "%p\n", fw->text); + mvx_seq_printf(s, "bss", 0, "%p\n", fw->bss); + mvx_seq_printf(s, "bss_shared", 0, "%p\n", fw->bss_shared); + } + + seq_puts(s, "\n"); + + mvx_seq_printf(s, "msg_host", 0, "%p\n", fw->msg_host); + mvx_seq_printf(s, "msg_mve", 0, "%p\n", fw->msg_mve); + mvx_seq_printf(s, "buf_in_host", 0, "%p\n", fw->buf_in_host); + mvx_seq_printf(s, "buf_in_mve", 0, "%p\n", fw->buf_in_mve); + mvx_seq_printf(s, "buf_out_host", 0, "%p\n", fw->buf_out_host); + mvx_seq_printf(s, "buf_out_mve", 0, "%p\n", fw->buf_out_mve); + seq_puts(s, "\n"); + + fw->ops.print_stat(fw, 0, s); + seq_puts(s, "\n"); + + mvx_seq_printf(s, "rpc", 0, "%p\n", fw->rpc); + mvx_seq_printf(s, "ncores", 0, "%u\n", fw->ncores); + mvx_seq_printf(s, "msg_pending", 0, "%u\n", fw->msg_pending); + seq_puts(s, "\n"); + + mvx_seq_printf(s, "ops.map_protocol", 0, "%ps\n", fw->ops.map_protocol); + mvx_seq_printf(s, "ops.unmap_protocol", 0, "%ps\n", + fw->ops.unmap_protocol); + mvx_seq_printf(s, "ops.get_region", 0, "%ps\n", fw->ops.get_region); + mvx_seq_printf(s, "ops.get_message", 0, "%ps\n", fw->ops.get_message); + mvx_seq_printf(s, "ops.put_message", 0, "%ps\n", fw->ops.put_message); + mvx_seq_printf(s, "ops.handle_rpc", 0, "%ps\n", fw->ops.handle_rpc); + seq_puts(s, "\n"); + + mvx_seq_printf(s, "fw_bin", 0, "%p\n", fw_bin); + mvx_seq_printf(s, "fw_bin.cache", 0, "%p\n", fw_bin->cache); + mvx_seq_printf(s, "fw_bin.filename", 0, "%s\n", fw_bin->filename); + mvx_seq_printf(s, "fw_bin.format", 0, "%u\n", fw_bin->format); + mvx_seq_printf(s, "fw_bin.dir", 0, "%s\n", + (fw_bin->dir == MVX_DIR_INPUT) ? + "in" : + (fw_bin->dir == MVX_DIR_OUTPUT) ? "out" : + "invalid"); + + if (fw_bin->securevideo == false) { + mvx_seq_printf(s, "fw_bin.text_cnt", 0, "%u\n", + fw_bin->nonsecure.text_cnt); + mvx_seq_printf(s, "fw_bin.bss_cnt", 0, "%u\n", + fw_bin->nonsecure.bss_cnt); + mvx_seq_printf(s, "fw_bin.sbss_cnt", 0, "%u\n", + fw_bin->nonsecure.sbss_cnt); + } + + return 0; +} + +static int fw_stat_open(struct inode *inode, struct file *file) +{ + return single_open(file, fw_stat_show, inode->i_private); +} + +static const struct file_operations fw_stat_fops = { .open = fw_stat_open, + .read = seq_read, + .llseek = seq_lseek, + .release = + single_release }; + +static void *rpcmem_seq_start(struct seq_file *s, loff_t *pos) +{ + struct mvx_fw *fw = s->private; + int ret; + + ret = mutex_lock_interruptible(&fw->rpcmem_mutex); + if (ret != 0) + return ERR_PTR(-EINVAL); + + return mvx_seq_hash_start(fw->dev, fw->rpc_mem, HASH_SIZE(fw->rpc_mem), + *pos); +} + +static void *rpcmem_seq_next(struct seq_file *s, void *v, loff_t *pos) +{ + struct mvx_fw *fw = s->private; + + return mvx_seq_hash_next(v, fw->rpc_mem, HASH_SIZE(fw->rpc_mem), pos); +} + +static void rpcmem_seq_stop(struct seq_file *s, void *v) +{ + struct mvx_fw *fw = s->private; + + mutex_unlock(&fw->rpcmem_mutex); + mvx_seq_hash_stop(v); +} + +static int rpcmem_seq_show(struct seq_file *s, void *v) +{ + struct mvx_seq_hash_it *it = v; + struct mvx_mmu_pages *pages = + hlist_entry(it->node, struct mvx_mmu_pages, node); + + if (pages == NULL) + return 0; + + seq_printf(s, "va = %08x, cap = %08zu, count = %08zu\n", pages->va, + pages->capacity, pages->count); + + return 0; +} + +static const struct seq_operations rpcmem_seq_ops = { .start = rpcmem_seq_start, + .next = rpcmem_seq_next, + .stop = rpcmem_seq_stop, + .show = rpcmem_seq_show }; + +static int rpcmem_open(struct inode *inode, struct file *file) +{ + int ret; + struct seq_file *s; + struct mvx_fw *fw = inode->i_private; + + ret = seq_open(file, &rpcmem_seq_ops); + if (ret != 0) + return ret; + + s = file->private_data; + s->private = fw; + + return 0; +} + +static const struct file_operations rpcmem_fops = { .open = rpcmem_open, + .read = seq_read, + .llseek = seq_lseek, + .release = seq_release }; + +/** + * fw_debugfs_init() - Create debugfs entries for mvx_fw. + */ +static int fw_debugfs_init(struct mvx_fw *fw, struct dentry *parent) +{ + int ret; + struct dentry *dentry; + + fw->dentry = debugfs_create_dir("fw", parent); + if (IS_ERR_OR_NULL(fw->dentry)) + return -ENOMEM; + + dentry = debugfs_create_file("stat", 0400, fw->dentry, fw, + &fw_stat_fops); + if (IS_ERR_OR_NULL(dentry)) { + ret = -ENOMEM; + goto remove_dentry; + } + + if (fw->fw_bin->securevideo == false) { + ret = mvx_mmu_pages_debugfs_init(fw->text, "text", fw->dentry); + if (ret != 0) + goto remove_dentry; + + ret = mvx_mmu_pages_debugfs_init(fw->bss, "bss", fw->dentry); + if (ret != 0) + goto remove_dentry; + + ret = mvx_mmu_pages_debugfs_init(fw->bss_shared, "bss_shared", + fw->dentry); + if (ret != 0) + goto remove_dentry; + + dentry = debugfs_create_file("rpc_mem", 0400, fw->dentry, fw, + &rpcmem_fops); + if (IS_ERR_OR_NULL(dentry)) { + ret = -ENOMEM; + goto remove_dentry; + } + } + + return 0; + +remove_dentry: + debugfs_remove_recursive(fw->dentry); + return ret; +} + +/**************************************************************************** + * Exported functions + ****************************************************************************/ + +int mvx_fw_factory(struct mvx_fw *fw, struct mvx_fw_bin *fw_bin, + struct mvx_mmu *mmu, struct mvx_session *session, + struct mvx_client_ops *client_ops, + struct mvx_client_session *csession, unsigned int ncores, + struct dentry *parent) +{ + unsigned int major; + unsigned int minor; + int ret; + + /* Verifty that firmware loading was successful. */ + if ((fw_bin->securevideo == false && + IS_ERR_OR_NULL(fw_bin->nonsecure.fw)) || + (fw_bin->securevideo != false && + IS_ERR_OR_NULL(fw_bin->secure.securefw))) { + MVX_LOG_PRINT(&mvx_log_if, MVX_LOG_WARNING, + "Firmware binary was loaded with error."); + return -EINVAL; + } + + if (fw_bin->securevideo != false && + ncores > fw_bin->secure.securefw->ncores) { + MVX_LOG_PRINT( + &mvx_log_if, MVX_LOG_WARNING, + "Too few secure cores setup. max_ncores=%u, ncores=%u.", + fw_bin->secure.securefw->ncores, ncores); + return -EINVAL; + } + + major = get_major_version(fw_bin); + minor = get_minor_version(fw_bin); + + /* Call constructor for derived class based on protocol version. */ + switch (major) { + case 2: + ret = mvx_fw_construct_v2(fw, fw_bin, mmu, session, client_ops, + csession, ncores, major, minor); + if (ret != 0) + return ret; + + break; + case 3: + ret = mvx_fw_construct_v3(fw, fw_bin, mmu, session, client_ops, + csession, ncores, major, minor); + if (ret != 0) + return ret; + + break; + default: + MVX_LOG_PRINT( + &mvx_log_if, MVX_LOG_WARNING, + "Unsupported firmware interface revision. major=%u, minor=%u.", + major, minor); + return -EINVAL; + } + + /* Map up the MMU tables. */ + ret = fw_map(fw); + if (ret != 0) + return ret; + + if (IS_ENABLED(CONFIG_DEBUG_FS)) + ret = fw_debugfs_init(fw, parent); + + return ret; +} + +int mvx_fw_construct(struct mvx_fw *fw, struct mvx_fw_bin *fw_bin, + struct mvx_mmu *mmu, struct mvx_session *session, + struct mvx_client_ops *client_ops, + struct mvx_client_session *csession, unsigned int ncores) +{ + memset(fw, 0, sizeof(*fw)); + + fw->dev = fw_bin->dev; + fw->mmu = mmu; + fw->session = session; + fw->client_ops = client_ops; + fw->csession = csession; + fw->ncores = ncores; + fw->fw_bin = fw_bin; + mutex_init(&fw->rpcmem_mutex); + + return 0; +} + +void mvx_fw_destruct(struct mvx_fw *fw) +{ + if (IS_ENABLED(CONFIG_DEBUG_FS)) + debugfs_remove_recursive(fw->dentry); + + /* Release and unmap allocates pages. */ + fw_unmap(fw); +} diff --git a/drivers/media/platform/canaan/vpu/mvx_firmware.h b/drivers/media/platform/canaan/vpu/mvx_firmware.h new file mode 100644 index 0000000000000..0682667097ce0 --- /dev/null +++ b/drivers/media/platform/canaan/vpu/mvx_firmware.h @@ -0,0 +1,1091 @@ +/* SPDX-License-Identifier: GPL-2.0-only + * The confidential and proprietary information contained in this file may + * only be used by a person authorised under and to the extent permitted + * by a subsisting licensing agreement from Arm Technology (China) Co., Ltd. + * + * (C) COPYRIGHT 2021-2021 Arm Technology (China) Co., Ltd. + * ALL RIGHTS RESERVED + * + * This entire notice must be reproduced on all copies of this file + * and copies of this file may only be made by a person if such person is + * permitted to do so under the terms of a subsisting license agreement + * from Arm Technology (China) Co., Ltd. + * + * 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. + * + */ + +#ifndef _MVX_FIRMWARE_H_ +#define _MVX_FIRMWARE_H_ + +/**************************************************************************** + * Includes + ****************************************************************************/ + +#include +#include +#include +#include +#include +#include "mvx_if.h" +#include "mvx_buffer.h" + +/**************************************************************************** + * Defines + ****************************************************************************/ + +#define MVX_FW_HTABLE_BITS 3 +#define MVX_FW_QUANT_LEN 64 + +/**************************************************************************** + * Firmware communication types + ****************************************************************************/ + +/** + * enum mvx_fw_state - Firmware state. + */ +enum mvx_fw_state { MVX_FW_STATE_STOPPED, MVX_FW_STATE_RUNNING }; + +/** + * struct mvx_fw_job - Job request. + * @cores: Number for cores to use. + * @frames: Number of frames to process before job is switched out. + */ +struct mvx_fw_job { + unsigned int cores; + unsigned int frames; +}; + +/** + * struct mvx_fw_qp_range - QP range. + */ +struct mvx_fw_qp_range { + int min; + int max; +}; + +/** + * struct mvx_fw_profile_level - Profile and level. + */ +struct mvx_fw_profile_level { + unsigned int profile; + unsigned int level; +}; + +/** + * struct mvx_fw_tile - Tile size. + */ +struct mvx_fw_tile { + unsigned int rows; + unsigned int cols; +}; + +/** + * struct mvx_fw_mv - Motion vector search range. + */ +struct mvx_fw_mv { + unsigned int x; + unsigned int y; +}; + +/** + * struct mvx_fw_bitdepth - Bit depth. + */ +struct mvx_fw_bitdepth { + unsigned int chroma; + unsigned int luma; +}; + +struct mvx_buffer_param_region { + uint16_t mbx_left; /**< X coordinate of the left most macroblock */ + uint16_t mbx_right; /**< X coordinate of the right most macroblock */ + uint16_t mby_top; /**< Y coordinate of the top most macroblock */ + uint16_t mby_bottom; /**< Y coordinate of the bottom most macroblock */ + int16_t qp_delta; + /**< QP delta value. This region will be encoded with qp = qp_default + qp_delta. */ + uint8_t prio; /* the priority of this region */ + uint8_t force_intra; +}; + +struct mvx_roi_config { + unsigned int pic_index; + unsigned char qp_present; + unsigned char qp; + unsigned char roi_present; + unsigned char num_roi; +#define MVX_MAX_FRAME_REGIONS 16 + struct mvx_buffer_param_region roi[MVX_MAX_FRAME_REGIONS]; +}; + +struct mvx_buffer_param_rectangle { + uint16_t x_left; /* pixel x left edge (inclusive) */ + uint16_t x_right; /* pixel x right edge (exclusive) */ + uint16_t y_top; /* pixel y top edge (inclusive) */ + uint16_t y_bottom; /* pixel y bottom edge (exclusive) */ +}; + +struct mvx_chr_cfg { + unsigned int pic_index; + unsigned int num_chr; +#define MVX_MAX_FRAME_CHANGE_RECTANGLES 2 + struct mvx_buffer_param_rectangle + rectangle[MVX_MAX_FRAME_CHANGE_RECTANGLES]; +}; + +struct mvx_huff_table { + uint32_t type; +#define MVX_OPT_HUFFMAN_TABLE_DC_LUMA (1) +#define MVX_OPT_HUFFMAN_TABLE_AC_LUMA (2) +#define MVX_OPT_HUFFMAN_TABLE_DC_CHROMA (4) +#define MVX_OPT_HUFFMAN_TABLE_AC_CHROMA (8) + uint8_t dc_luma_code_lenght[16]; + uint8_t ac_luma_code_lenght[16]; + uint8_t dc_chroma_code_lenght[16]; + uint8_t ac_chroma_code_lenght[16]; + uint8_t dc_luma_table[162]; + uint8_t ac_luma_table[162]; + uint8_t dc_chroma_table[162]; + uint8_t ac_chroma_table[162]; +}; + +struct mvx_buffer_param_rate_control { + uint32_t rate_control_mode; +#define MVX_OPT_RATE_CONTROL_MODE_OFF (0) +#define MVX_OPT_RATE_CONTROL_MODE_STANDARD (1) +#define MVX_OPT_RATE_CONTROL_MODE_VARIABLE (2) +#define MVX_OPT_RATE_CONTROL_MODE_CONSTANT (3) +#define MVX_OPT_RATE_CONTROL_MODE_C_VARIABLE (4) + uint32_t target_bitrate; /* in bits per second */ + uint32_t maximum_bitrate; /* in bits per second */ +}; + +struct mvx_buffer_option_jpeg_rate_control { + uint32_t qscale; + uint32_t qscale_luma; + uint32_t qscale_chroma; + uint32_t fps; + uint32_t change_pos; +}; + +struct mvx_dsl_frame { + uint32_t width; + uint32_t height; +}; + +struct mvx_dsl_ratio { + uint32_t hor; + uint32_t ver; +}; + +struct mvx_long_term_ref { + uint32_t mode; + uint32_t period; +}; + +struct mvx_color_conv_coef { + int16_t coef[3][3]; + uint16_t offset[3]; +}; + +struct mvx_rgb2yuv_color_conv_coef { + int16_t coef[3 * 3]; + uint8_t luma_range[2]; + uint8_t chroma_range[2]; + uint8_t rgb_range[2]; +}; + +struct mvx_crop_cfg { + uint8_t crop_en; + /* left start x of luma in original image */ + uint16_t x; //included + /* top start y of luma in original image */ + uint16_t y; //included + /* cropped width of luma in original image */ + uint16_t width; + /* cropped height of luma in original image */ + uint16_t height; +}; + +struct mvx_seamless_target { + uint32_t seamless_mode; + uint32_t target_width; + uint32_t target_height; + uint32_t target_stride[MVX_BUFFER_NPLANES]; + uint32_t target_size[MVX_BUFFER_NPLANES]; +}; + +struct mvx_param_osd_cfg { + uint8_t osd_inside_enable; + uint8_t osd_inside_alpha_enable; + uint8_t osd_inside_convert_color_enable; + uint8_t osd_inside_alpha_value; /* as alpha range [0~16], use u8 */ + uint8_t osd_inside_convert_color_threshold; + /* threshold range [0~255], if input is 10bit, th * 4 */ + uint8_t osd_inside_rgb2yuv_mode; /* 0-601L, 1-601F, 2-709_L, 3-709_F */ + uint16_t osd_inside_start_x; /* pixel x left edge (inclusive) */ + uint16_t osd_inside_start_y; /* pixel y top edge (inclusive) */ + uint16_t reserved[3]; +}; + +struct mvx_osd_config { + unsigned int pic_index; + unsigned int num_osd; +#define MVX_MAX_FRAME_OSD_REGION 2 + struct mvx_param_osd_cfg osd_single_cfg + [MVX_MAX_FRAME_OSD_REGION]; /* include single osd region config and index */ +}; + +struct mvx_osd_info { + uint16_t width_osd[MVX_MAX_FRAME_OSD_REGION]; + uint16_t height_osd[MVX_MAX_FRAME_OSD_REGION]; + enum mvx_format inputFormat_osd[MVX_MAX_FRAME_OSD_REGION]; +}; + +/** + * struct mvx_fw_error - Firmware error message. + * @error_code: What kind of error that was reported. + * @message: Error message string. + */ +struct mvx_fw_error { + enum { MVX_FW_ERROR_ABORT, + MVX_FW_ERROR_OUT_OF_MEMORY, + MVX_FW_ERROR_ASSERT, + MVX_FW_ERROR_UNSUPPORTED, + MVX_FW_ERROR_INVALID_BUFFER, + MVX_FW_ERROR_INVALID_STATE, + MVX_FW_ERROR_WATCHDOG } error_code; + char message[128]; +}; + +/** + * struct mvx_fw_flush - Flush firmware buffers. + * @dir: Which port to flush. + */ +struct mvx_fw_flush { + enum mvx_direction dir; +}; + +/** + * struct mvx_fw_alloc_param - Allocation parameters. + * @width: Width in pixels. + * @height: Height in pixels. + * @afbc_alloc_bytes: AFBC buffer size. + * @afbc_width: AFBC width in superblocks. + * + * Dimensions of a decoded frame buffer. + */ +struct mvx_fw_alloc_param { + unsigned int width; + unsigned int height; + unsigned int afbc_alloc_bytes; + unsigned int afbc_width; +}; + +/** + * struct mvx_fw_seq_param - Sequence parameters. + * @planar.buffers_min: Minimum number of planar buffers required. + * @afbc.buffers_min: Minimum number of AFBC buffers required. + */ +struct mvx_fw_seq_param { + struct { + unsigned int buffers_min; + } planar; + struct { + unsigned int buffers_min; + } afbc; +}; + +enum mvx_fw_range { + MVX_FW_RANGE_UNSPECIFIED, + MVX_FW_RANGE_FULL, + MVX_FW_RANGE_LIMITED +}; + +enum mvx_fw_primaries { + MVX_FW_PRIMARIES_UNSPECIFIED, + MVX_FW_PRIMARIES_BT709, /* Rec.ITU-R BT.709 */ + MVX_FW_PRIMARIES_BT470M, /* Rec.ITU-R BT.470 System M */ + MVX_FW_PRIMARIES_BT601_625, /* Rec.ITU-R BT.601 625 */ + MVX_FW_PRIMARIES_BT601_525, /* Rec.ITU-R BT.601 525 */ + MVX_FW_PRIMARIES_GENERIC_FILM, /* Generic Film */ + MVX_FW_PRIMARIES_BT2020 /* Rec.ITU-R BT.2020 */ +}; + +enum mvx_fw_transfer { + MVX_FW_TRANSFER_UNSPECIFIED, + MVX_FW_TRANSFER_LINEAR, /* Linear transfer characteristics */ + MVX_FW_TRANSFER_SRGB, /* sRGB or equivalent */ + MVX_FW_TRANSFER_SMPTE170M, /* SMPTE 170M */ + MVX_FW_TRANSFER_GAMMA22, /* Assumed display gamma 2.2 */ + MVX_FW_TRANSFER_GAMMA28, /* Assumed display gamma 2.8 */ + MVX_FW_TRANSFER_ST2084, /* SMPTE ST 2084 */ + MVX_FW_TRANSFER_HLG, /* ARIB STD-B67 hybrid-log-gamma */ + MVX_FW_TRANSFER_SMPTE240M, /* SMPTE 240M */ + MVX_FW_TRANSFER_XVYCC, /* IEC 61966-2-4 */ + MVX_FW_TRANSFER_BT1361, /* Rec.ITU-R BT.1361 extended gamut */ + MVX_FW_TRANSFER_ST428 /* SMPTE ST 428-1 */ +}; + +enum mvx_fw_matrix { + MVX_FW_MATRIX_UNSPECIFIED, + MVX_FW_MATRIX_BT709, /* Rec.ITU-R BT.709 */ + MVX_FW_MATRIX_BT470M, /* KR=0.30, KB=0.11 */ + MVX_FW_MATRIX_BT601, /* Rec.ITU-R BT.601 625 */ + MVX_FW_MATRIX_SMPTE240M, /* SMPTE 240M or equivalent */ + MVX_FW_MATRIX_BT2020, /* Rec.ITU-R BT.2020 non-const lum */ + MVX_FW_MATRIX_BT2020Constant /* Rec.ITU-R BT.2020 const lum */ +}; + +struct mvx_fw_primary { + unsigned int x; + unsigned int y; +}; + +/** + * struct mvx_fw_color_desc - HDR color description. + */ +struct mvx_fw_color_desc { + unsigned int flags; + enum mvx_fw_range range; + enum mvx_fw_primaries primaries; + enum mvx_fw_transfer transfer; + enum mvx_fw_matrix matrix; + struct { + struct mvx_fw_primary r; + struct mvx_fw_primary g; + struct mvx_fw_primary b; + struct mvx_fw_primary w; + unsigned int luminance_min; + unsigned int luminance_max; + } display; + struct { + unsigned int luminance_max; + unsigned int luminance_average; + } content; + + uint8_t video_format; + uint8_t aspect_ratio_idc; + uint16_t sar_width; + uint16_t sar_height; + uint32_t num_units_in_tick; + uint32_t time_scale; +}; + +struct mvx_fw_display_size { + uint16_t display_width; + uint16_t display_height; +}; + +struct mvx_sei_userdata { + uint8_t flags; +#define MVX_BUFFER_PARAM_USER_DATA_UNREGISTERED_VALID (1) + uint8_t uuid[16]; + char user_data[256 - 35]; + uint8_t user_data_len; +}; + +struct mvx_buffer_param_qp { + int32_t qp; + int32_t epr_iframe_enable; +}; +/** + * struct mvx_fw_set_option - Set firmware options. + */ +struct mvx_fw_set_option { + enum { + /** + * Frame rate. + * Extra data: frame_date. + */ + MVX_FW_SET_FRAME_RATE, + + /** + * Bitrate. + * Extra data: target_bitrate. + * + * When target_bitrate is other than zero, rate control + * in HW is enabled, otherwise rate control is disabled. + */ + MVX_FW_SET_TARGET_BITRATE, + + /** + * QP range. + * Extra data: qp_range. + * + * QP range when rate controller is enabled. + */ + MVX_FW_SET_QP_RANGE, + + /** + * NALU format. + * Extra data: nalu_format. + */ + MVX_FW_SET_NALU_FORMAT, + + /** + * Defines if stream escaping is enabled. + * Extra data: stream_escaping. + */ + MVX_FW_SET_STREAM_ESCAPING, + + /** + * Defines profile and level for encoder. + * Extra data: profile_level. + */ + MVX_FW_SET_PROFILE_LEVEL, + + /** + * Ignore stream headers. + * Extra data: ignore_stream_headers. + */ + MVX_FW_SET_IGNORE_STREAM_HEADERS, + + /** + * Enable frame reordering for decoder. + * Extra data: frame_reordering. + */ + MVX_FW_SET_FRAME_REORDERING, + + /** + * Suggested internal buffer size. + * Extra data: intbuf_size. + */ + MVX_FW_SET_INTBUF_SIZE, + + /** + * Number of P frames for encoder. + * Extra data: pb_frames. + */ + MVX_FW_SET_P_FRAMES, + + /** + * Number of B frames for encoder. + * Extra data: pb_frames. + */ + MVX_FW_SET_B_FRAMES, + + /** + * GOP type for encoder. + * Extra data: gop_type. + */ + MVX_FW_SET_GOP_TYPE, + + /** + * Intra MB refresh. + * Extra data: intra_mb_refresh. + */ + MVX_FW_SET_INTRA_MB_REFRESH, + + /** + * Constrained intra prediction. + * Extra data: constr_ipred. + */ + MVX_FW_SET_CONSTR_IPRED, + + /** + * Enable entropy synchronization. + * Extra data: entropy_sync. + */ + MVX_FW_SET_ENTROPY_SYNC, + + /** + * Enable temporal motion vector prediction. + * Extra data: temporal_mvp. + */ + MVX_FW_SET_TEMPORAL_MVP, + + /** + * Tiles size. + * Extra data: tile. + */ + MVX_FW_SET_TILES, + + /** + * Minimum luma coding block size. + * Extra data: min_luma_cb_size. + */ + MVX_FW_SET_MIN_LUMA_CB_SIZE, + + /** + * Entropy mode. + * Extra data: entropy_mode. + */ + MVX_FW_SET_ENTROPY_MODE, + + /** + * Suggested number of CTUs in a slice. + * Extra data: slice_spacing_mb. + */ + MVX_FW_SET_SLICE_SPACING_MB, + + /** + * Probability update method. + * Extra data: vp9_prob_update. + */ + MVX_FW_SET_VP9_PROB_UPDATE, + + /** + * Search range for motion vectors. + * Extra data: mv. + */ + MVX_FW_SET_MV_SEARCH_RANGE, + + /** + * Bitdepth. + * Extra data: bitdepth. + */ + MVX_FW_SET_BITDEPTH, + + /** + * Chroma format. + * Extra data: chroma_format. + */ + MVX_FW_SET_CHROMA_FORMAT, + + /** + * RGB to YUV conversion mode. + * Extra data: rgb_to_yuv_mode. + */ + MVX_FW_SET_RGB_TO_YUV_MODE, + + /** + * Maximum bandwidth limit. + * Extra data: band_limit. + */ + MVX_FW_SET_BAND_LIMIT, + + /** + * CABAC initialization table. + * Extra data: cabac_init_idc. + */ + MVX_FW_SET_CABAC_INIT_IDC, + + /** + * QP for I frames when rate control is disabled. + * Extra data: qp + */ + MVX_FW_SET_QP_I, + + /** + * QP for P frames when rate control is disabled. + * Extra data: qp + */ + MVX_FW_SET_QP_P, + + /** + * QP for B frames when rate control is disabled. + * Extra data: qp + */ + MVX_FW_SET_QP_B, + + /** + * JPEG resync interval. + * Extra data: resync_interval + */ + MVX_FW_SET_RESYNC_INTERVAL, + + /** + * JPEG quantization table. + * Extra data: quant_tbl. + */ + MVX_FW_SET_QUANT_TABLE, + + /** + * Set watchdog timeout. 0 to disable. + */ + MVX_FW_SET_WATCHDOG_TIMEOUT, + + /** + * QP for encode frame. + * Extra data: qp + */ + MVX_FW_SET_QP_REGION, + + /** + * ROI for encode frame. + * Extra data: ROI + */ + MVX_FW_SET_ROI_REGIONS, + + /** + * Rate Control for encode frame. + * Extra data: rate control + */ + MVX_FW_SET_RATE_CONTROL, + /** + * Crop left for encode frame. + * Extra data: crop left + */ + MVX_FW_SET_CROP_LEFT, + /** + * Crop right for encode frame. + * Extra data: crop right + */ + MVX_FW_SET_CROP_RIGHT, + /** + * Crop top for encode frame. + * Extra data: crop top + */ + MVX_FW_SET_CROP_TOP, + /** + * Crop bottom for encode frame. + * Extra data: crop bottom + */ + MVX_FW_SET_CROP_BOTTOM, + + MVX_FW_SET_COLOUR_DESC, + + MVX_FW_SET_SEI_USERDATA, + + MVX_FW_SET_HRD_BUF_SIZE, + + MVX_FW_SET_DSL_FRAME, + + MVX_FW_SET_LONG_TERM_REF, + + MVX_FW_SET_DSL_MODE, + + MVX_FW_SET_MINI_FRAME_HEIGHT, + + MVX_FW_SET_STATS_MODE, + + MVX_FW_SET_CHR_CFG, + + MVX_FW_SET_INIT_QP_I, + MVX_FW_SET_INIT_QP_P, + MVX_FW_SET_SAO_LUMA, + MVX_FW_SET_SAO_CHROMA, + MVX_FW_SET_QP_DELTA_I_P, + MVX_FW_SET_QP_REF_RB_EN, + MVX_FW_SET_RC_CLIP_TOP, + MVX_FW_SET_RC_CLIP_BOT, + MVX_FW_SET_QP_MAP_CLIP_TOP, + MVX_FW_SET_QP_MAP_CLIP_BOT, + MVX_FW_SET_QP_RANGE_I, + MVX_FW_SET_PROFILING, + MVX_FW_SET_HUFF_TABLE, + MVX_FW_SET_RC_BIT_I_MODE, + MVX_FW_SET_RC_BIT_I_RATIO, + MVX_FW_SET_INTER_MED_BUF_SIZE, + MVX_FW_SET_SVCT3_LEVEL1_PERIOD, + MVX_FW_SET_GOP_PFRAMES, + MVX_FW_SET_RATE_CONTROL_JPEG, + MVX_FW_SET_LTR_PERIOD, + MVX_FW_SET_FIXED_QP, + MVX_FW_SET_GDR_NUMBER, + MVX_FW_SET_GDR_PERIOD, + MVX_FW_SET_MULTI_SPS_PPS, + MVX_FW_SET_VISUAL_ENABLE, + MVX_FW_SET_ADPTIVE_QUANTISATION, + MVX_FW_SET_EPR_QP, + MVX_FW_SET_DISABLE_FEATURES, + MVX_FW_SET_SCD_ENABLE, + MVX_FW_SET_SCD_PERCENT, + MVX_FW_SET_SCD_THRESHOLD, + MVX_FW_SET_AQ_SSIM_EN, + MVX_FW_SET_AQ_NEG_RATIO, + MVX_FW_SET_AQ_POS_RATIO, + MVX_FW_SET_AQ_QPDELTA_LMT, + MVX_FW_SET_AQ_INIT_FRM_AVG_SVAR, + MVX_FW_SET_DEC_YUV2RGB_PARAMS, + MVX_FW_SET_ENC_FORCED_UV_VAL, + MVX_FW_SET_DSL_INTERP_MODE, + MVX_FW_SET_ENC_SRC_CROPPING, + MVX_FW_SET_DEC_DST_CROPPING, + MVX_FW_SET_VISUAL_ENABLE_ADAPTIVE_INTRA_BLOCK, + MVX_FW_SET_OSD_CONFIG, + MVX_FW_SET_RATE_CONTROL_CHANGE_POS, + } code; + + /** + * Extra data for an option. + */ + union { + unsigned int frame_rate; + unsigned int target_bitrate; + struct mvx_fw_qp_range qp_range; + enum mvx_nalu_format nalu_format; + bool stream_escaping; + struct mvx_fw_profile_level profile_level; + bool ignore_stream_headers; + bool frame_reordering; + unsigned int intbuf_size; + unsigned int pb_frames; + enum mvx_gop_type gop_type; + unsigned int intra_mb_refresh; + bool constr_ipred; + bool entropy_sync; + bool temporal_mvp; + struct mvx_fw_tile tile; + unsigned int min_luma_cb_size; + enum mvx_entropy_mode entropy_mode; + unsigned int slice_spacing_mb; + enum mvx_vp9_prob_update vp9_prob_update; + struct mvx_fw_mv mv; + struct mvx_fw_bitdepth bitdepth; + unsigned int chroma_format; + enum mvx_rgb_to_yuv_mode rgb_to_yuv_mode; + unsigned int band_limit; + unsigned int cabac_init_idc; + int qp; + int resync_interval; + struct { + uint8_t *chroma; + uint8_t *luma; + } quant_tbl; + int watchdog_timeout; + struct mvx_roi_config roi_config; + struct mvx_buffer_param_rate_control rate_control; + unsigned int crop_left; + unsigned int crop_right; + unsigned int crop_top; + unsigned int crop_bottom; + struct mvx_fw_color_desc colour_desc; + struct mvx_sei_userdata userdata; + unsigned int nHRDBufsize; + struct mvx_dsl_frame dsl_frame; + struct mvx_long_term_ref ltr; + int dsl_pos_mode; + uint32_t mini_frame_height; + struct mvx_enc_stats enc_stats; + struct mvx_chr_cfg chr_cfg; + uint32_t init_qpi; + uint32_t init_qpp; + uint32_t sao_luma; + uint32_t sao_chroma; + uint32_t qp_delta_i_p; + uint32_t ref_rb_en; + uint32_t qpmap_qp_clip_top; + uint32_t qpmap_qp_clip_bot; + uint32_t rc_qp_clip_top; + uint32_t rc_qp_clip_bot; + uint32_t profiling; + struct mvx_huff_table huff_table; + uint32_t rc_bit_i_mode; + uint32_t rc_bit_i_ratio; + uint32_t inter_med_buf_size; + uint32_t svct3_level1_period; + uint32_t reset_gop_pframes; + struct mvx_buffer_option_jpeg_rate_control jpeg_rc; + uint32_t reset_ltr_period; + uint32_t fixedqp; + uint32_t gdr_number; + uint32_t gdr_period; + uint32_t multi_sps_pps; + uint32_t enable_visual; + uint32_t adapt_qnt; + struct mvx_buffer_param_qp epr_qp; + uint32_t disabled_features; + uint32_t scd_enable; + uint32_t scd_percent; + uint32_t scd_threshold; + uint32_t aq_ssim_en; + uint32_t aq_neg_ratio; + uint32_t aq_pos_ratio; + uint32_t aq_qpdelta_lmt; + uint32_t aq_init_frm_avg_svar; + struct mvx_color_conv_coef yuv2rbg_csc_coef; + struct mvx_rgb2yuv_color_conv_coef rgb2yuv_params; + uint32_t forced_uv_value; + uint32_t dsl_interp_mode; + struct mvx_crop_cfg enc_src_crop; + struct mvx_crop_cfg dec_dst_crop; + uint32_t adaptive_intra_block; + struct mvx_osd_config osd_config; + uint32_t change_pos; + }; +}; +#define MVX_FW_COLOR_DESC_DISPLAY_VALID 0x1 +#define MVX_FW_COLOR_DESC_CONTENT_VALID 0x2 + +/** + * enum mvx_fw_code - Codes for messages sent between driver and firmware. + */ +enum mvx_fw_code { + MVX_FW_CODE_ALLOC_PARAM, /* Driver <- Firmware. */ + MVX_FW_CODE_BUFFER, /* Driver <-> Firmware. */ + MVX_FW_CODE_ERROR, /* Driver <- Firmware. */ + MVX_FW_CODE_IDLE, /* Driver <- Firmware. */ + MVX_FW_CODE_FLUSH, /* Driver <-> Firmware. */ + MVX_FW_CODE_JOB, /* Driver -> Firmware. */ + MVX_FW_CODE_PING, /* Driver -> Firmware. */ + MVX_FW_CODE_PONG, /* Driver <- Firmware. */ + MVX_FW_CODE_SEQ_PARAM, /* Driver <- Firmware. */ + MVX_FW_CODE_SET_OPTION, /* Driver <-> Firmware. */ + MVX_FW_CODE_STATE_CHANGE, /* Driver <-> Firmware. */ + MVX_FW_CODE_SWITCH_IN, /* Driver <- Firmware. */ + MVX_FW_CODE_SWITCH_OUT, /* Driver <-> Firmware. */ + MVX_FW_CODE_IDLE_ACK, /* Driver -> Firmware. */ + MVX_FW_CODE_EOS, /* Driver <-> Firmware. */ + MVX_FW_CODE_COLOR_DESC, /* Driver <- Firmware. */ + MVX_FW_CODE_DUMP, /* Driver <-> Firmware. */ + MVX_FW_CODE_DEBUG, /* Driver <-> Firmware. */ + MVX_FW_CODE_BUFFER_GENERAL, /* Driver <-> Firmware. */ + MVX_FW_CODE_DISPLAY_SIZE, /* Driver <- Firmware. */ + MVX_FW_CODE_UNKNOWN, /* Driver <- Firmware. */ + MVX_FW_CODE_MAX +}; + +/** + * struct mvx_fw_msg - Union of all message types. + */ +struct mvx_fw_msg { + enum mvx_fw_code code; + union { + enum mvx_fw_state state; + struct mvx_fw_job job; + struct mvx_fw_error error; + struct mvx_fw_set_option set_option; + struct mvx_fw_flush flush; + struct mvx_fw_alloc_param alloc_param; + struct mvx_fw_seq_param seq_param; + struct mvx_fw_color_desc color_desc; + struct mvx_buffer *buf; + struct mvx_fw_display_size disp_size; + uint32_t arg; + bool eos_is_frame; + }; +}; + +/**************************************************************************** + * Types + ****************************************************************************/ + +struct device; +struct mvx_fw_bin; +struct mvx_mmu; +struct mvx_mmu_pages; +struct mvx_session; + +/** + * enum mvx_fw_region - Firmware memory regions. + */ +enum mvx_fw_region { + MVX_FW_REGION_CORE_0, + MVX_FW_REGION_CORE_1, + MVX_FW_REGION_CORE_2, + MVX_FW_REGION_CORE_3, + MVX_FW_REGION_CORE_4, + MVX_FW_REGION_CORE_5, + MVX_FW_REGION_CORE_6, + MVX_FW_REGION_CORE_7, + MVX_FW_REGION_PROTECTED, + MVX_FW_REGION_FRAMEBUF, + MVX_FW_REGION_MSG_HOST, + MVX_FW_REGION_MSG_MVE, + MVX_FW_REGION_BUF_IN_HOST, + MVX_FW_REGION_BUF_IN_MVE, + MVX_FW_REGION_BUF_OUT_HOST, + MVX_FW_REGION_BUF_OUT_MVE, + MVX_FW_REGION_RPC, + MVX_FW_REGION_PRINT_RAM +}; + +/** + * struct mvx_fw - Firmware class. + * @dev: Pointer to device. + * @fw_bin: Pointer to firmware binary. + * @mmu: Pointer to MMU object. + * @session: Pointer to session. + * @client_ops: Client operations. + * @csession: Client session this firmware instance is connected to. + * @text: Pages allocated for the text segment. + * @bss: Pages allocated for the bss segment. + * @bss_shared: Pages allocated for the shared bss segment. + * @dentry: Debugfs entry for the "fw" directory. + * @msg_host: Host message queue. + * @msg_mve: MVE message queue. + * @buf_in_host: Input buffer queue. Host enqueue filled buffers. + * @buf_in_mve: Input buffer queue. MVE return empty buffers. + * @buf_out_host: Output buffer queue. Host enqueue empty buffers. + * @buf_out_mve: Out buffer queue. MVE return filled buffers. + * @rpc: RPC communication area. + * @ncores: Number of cores the firmware has been mapped for. + * @rpc_mem: Keeps track of RPC allocated memory. Maps MVE virtual + * address to 'struct mvx_mmu_pages' object. + * @msg_pending: A subset of the messages that we are waiting for a + * response to. + * @ops: Public firmware interface. + * @ops_priv: Private firmware interface. + * + * There is one firmware instance per active session. The function pointers + * below are not reentrant and should be protected by the session mutex. + */ +struct mvx_fw { + struct device *dev; + const struct mvx_fw_bin *fw_bin; + struct mvx_mmu *mmu; + struct mvx_session *session; + struct mvx_client_ops *client_ops; + struct mvx_client_session *csession; + struct mvx_mmu_pages *text; + struct mvx_mmu_pages *bss; + struct mvx_mmu_pages *bss_shared; + struct dentry *dentry; + void *msg_host; + void *msg_mve; + void *buf_in_host; + void *buf_in_mve; + void *buf_out_host; + void *buf_out_mve; + void *rpc; + void *fw_print_ram; + unsigned int ncores; + DECLARE_HASHTABLE(rpc_mem, MVX_FW_HTABLE_BITS); + struct mutex rpcmem_mutex; + unsigned int msg_pending; + uint32_t latest_used_region_protected_pages; + uint32_t latest_used_region_outbuf_pages; + + struct { + /** + * map_protocol() - MMU map firmware. + * @fw: Pointer to firmware object. + */ + int (*map_protocol)(struct mvx_fw *fw); + + /** + * unmap_protocol() - MMU unmap firmware. + * @fw: Pointer to firmware object. + */ + void (*unmap_protocol)(struct mvx_fw *fw); + + /** + * get_region() - Get begin and end address for memory region. + * @region: Which memory region to get addresses for. + * @begin: MVE virtual begin address. + * @end: MVE virtual end address. + * + * Return: 0 on success, else error code. + */ + int (*get_region)(enum mvx_fw_region region, uint32_t *begin, + uint32_t *end); + + /** + * get_message() - Read message from firmware message queue. + * @fw: Pointer to firmware object. + * @msg: Firmware message. + * + * Return: 1 if message was received, 0 if no message was + * received, else error code. + */ + int (*get_message)(struct mvx_fw *fw, struct mvx_fw_msg *msg); + + /** + * put_message() - Write message to firmware message queue. + * @fw: Pointer to firmware object. + * @msg: Firmware message. + * + * Return: 0 on success, else error code. + */ + int (*put_message)(struct mvx_fw *fw, struct mvx_fw_msg *msg); + + /** + * handle_rpc() - Handle RPC message. + * @fw: Pointer to firmware object. + * + * Return: 1 RPC message handled, 0 no RPC message, + * else error code. + */ + int (*handle_rpc)(struct mvx_fw *fw); + + /** + * handle_fw_ram_print() - Print firmware log from share ram. + * @fw: Pointer to firmware object. + * + * Return: 1 FW ram log printed, 0 no FW ram log printed, + * else error code. + */ + int (*handle_fw_ram_print)(struct mvx_fw *fw); + + /** + * print_stat() - Print debug stats to seq-file. + * @fw: Pointer to firmware object. + * @ind: Indentation level. + * s: Pointer to seq-file. + * + * Return: 0 on success, else error code. + */ + int (*print_stat)(struct mvx_fw *fw, int ind, + struct seq_file *s); + + /** + * print_debug() - Print debug information. + * @fw: Pointer to firmware object. + */ + void (*print_debug)(struct mvx_fw *fw); + } ops; + + struct { + /** + * send_idle_ack() - Send IDLE ACK message. + * @fw: Pointer to firmware object. + * + * IDLE ACK message will be sent to the firmware if it is + * supported by a host protocol, otherwise the call will be + * ignored. + * + * Return: 0 on success, else error code. + */ + int (*send_idle_ack)(struct mvx_fw *fw); + + /** + * to_mve_profile() - Convert MVX profile to MVE value. + * @mvx_profile: MVX profile. + * @mvx_profile: MVE profile. + * + * Return: 0 on success, else error code. + */ + int (*to_mve_profile)(unsigned int mvx_profile, + uint16_t *mve_profile); + + /** + * to_mve_level() - Convert MVX level to MVE value. + * @mvx_level: MVX level. + * @mvx_level: MVE level. + * + * Return: 0 on success, else error code. + */ + int (*to_mve_level)(unsigned int mvx_level, + uint16_t *mve_level); + } ops_priv; +}; + +/**************************************************************************** + * Exported functions + ****************************************************************************/ + +/** + * mvx_fw_factory() - Construct a firmware object. + * @fw: Pointer to fw. + * @fw:_bin Pointer for firmware binary. + * @mmu: Pointer to MMU instance. + * @session: Pointer to session. + * @client_ops: Pointer to client operations. + * @csession: Client session this firmware instance is registered to. + * @ncores: Number of cores to configure. + * @parent: Debugfs entry for parent debugfs directory entry. + * + * Return: 0 on success, else error code. + */ +int mvx_fw_factory(struct mvx_fw *fw, struct mvx_fw_bin *fw_bin, + struct mvx_mmu *mmu, struct mvx_session *session, + struct mvx_client_ops *client_ops, + struct mvx_client_session *csession, unsigned int ncores, + struct dentry *parent); + +/** + * mvx_fw_destruct() - Destroy firmware interface instance. + * @fw: Pointer to fw. + */ +void mvx_fw_destruct(struct mvx_fw *fw); + +#endif /* _MVX_FIRMWARE_H_ */ diff --git a/drivers/media/platform/canaan/vpu/mvx_firmware_cache.c b/drivers/media/platform/canaan/vpu/mvx_firmware_cache.c new file mode 100644 index 0000000000000..6b37cb7f29982 --- /dev/null +++ b/drivers/media/platform/canaan/vpu/mvx_firmware_cache.c @@ -0,0 +1,662 @@ +// SPDX-License-Identifier: GPL-2.0-only +/* + * The confidential and proprietary information contained in this file may + * only be used by a person authorised under and to the extent permitted + * by a subsisting licensing agreement from Arm Technology (China) Co., Ltd. + * + * (C) COPYRIGHT 2021-2021 Arm Technology (China) Co., Ltd. + * ALL RIGHTS RESERVED + * + * This entire notice must be reproduced on all copies of this file + * and copies of this file may only be made by a person if such person is + * permitted to do so under the terms of a subsisting license agreement + * from Arm Technology (China) Co., Ltd. + * + * 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. + * + */ + +/**************************************************************************** + * Includes + ****************************************************************************/ + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "mvx_log_group.h" +#include "mvx_firmware_cache.h" +#include "mvx_log_ram.h" +#include "mvx_mmu.h" +#include "mvx_secure.h" +#include "mvx_seq.h" + +/**************************************************************************** + * Defines + ****************************************************************************/ + +#define CACHE_CLEANUP_INTERVAL_MS 5000 + +#define MVX_SECURE_NUMCORES 8 + +/**************************************************************************** + * Private functions + ****************************************************************************/ + +/** + * test_bit_32() - 32 bit version Linux test_bit. + * + * Test if bit is set in bitmap array. + */ +static bool test_bit_32(int bit, uint32_t *addr) +{ + return 0 != (addr[bit >> 5] & (1 << (bit & 0x1f))); +} + +/** + * hw_id_to_name() - Convert HW id to string + */ +static const char *hw_id_to_string(enum mvx_hw_id id) +{ + switch (id) { + case MVE_v500: + return "v500"; + case MVE_v550: + return "v550"; + case MVE_v61: + return "v61"; + case MVE_v52_v76: + return "v52_v76"; + default: + return "unknown"; + } +} + +static struct mvx_fw_bin *kobj_to_fw_bin(struct kobject *kobj) +{ + return container_of(kobj, struct mvx_fw_bin, kobj); +} + +/** + * fw_bin_destroy() - Destroy instance of firmware binary. + */ +static void fw_bin_destroy(struct kobject *kobj) +{ + struct mvx_fw_bin *fw_bin = kobj_to_fw_bin(kobj); + + MVX_LOG_PRINT(&mvx_log_if, MVX_LOG_INFO, + "Releasing firmware binary. bin=0x%p.", fw_bin); + + if (fw_bin->securevideo == false && + IS_ERR_OR_NULL(fw_bin->nonsecure.fw) == false) + kfree(fw_bin->nonsecure.fw); + + if (fw_bin->securevideo != false && + IS_ERR_OR_NULL(fw_bin->secure.securefw) == false) + mvx_secure_release_firmware(fw_bin->secure.securefw); + + list_del(&fw_bin->cache_head); + devm_kfree(fw_bin->dev, fw_bin); +} + +static int fw_bin_validate(const struct firmware *fw, struct device *dev) +{ + struct mvx_fw_header *header = (struct mvx_fw_header *)fw->data; + + if (fw->size < sizeof(*header)) { + MVX_LOG_PRINT( + &mvx_log_if, MVX_LOG_WARNING, + "Firmware binary size smaller than firmware header. size=%zu.", + fw->size); + return -EFAULT; + } + + if (header->text_length > fw->size) { + MVX_LOG_PRINT( + &mvx_log_if, MVX_LOG_WARNING, + "Firmware text length larger than firmware binary size. text_length=%u, size=%zu.", + header->text_length, fw->size); + return -EFAULT; + } + + return 0; +} + +/** + * fw_bin_callback() - Call firmware ready callback. + */ +static void fw_bin_callback(struct mvx_fw_bin *fw_bin) +{ + struct mvx_fw_event *event; + struct mvx_fw_event *tmp; + int ret; + + /* + * Continue even if lock fails, or else any waiting session will + * be blocked forever. + */ + ret = mutex_lock_interruptible(&fw_bin->mutex); + + /* + * Inform all clients that the firmware has been loaded. This must be + * done even if the firmware load fails, or else the clients will hung + * waiting for a firmware load the will never happen. + */ + list_for_each_entry_safe(event, tmp, &fw_bin->event_list, head) { + list_del(&event->head); + event->fw_bin_ready(fw_bin, event->arg, false); + } + + if (ret == 0) + mutex_unlock(&fw_bin->mutex); +} + +static void request_firmware_done(const struct firmware *fw, void *arg) +{ + struct mvx_fw_bin *fw_bin = arg; + struct mvx_fw_header *header; + mvx_mmu_va va; + int ret; + uint32_t i; + + if (fw == NULL) { + MVX_LOG_PRINT(&mvx_log_if, MVX_LOG_WARNING, + "Failed to load firmware binary. filename=%s.", + fw_bin->filename); + fw = ERR_PTR(-EINVAL); + goto fw_ready_callback; + } + + ret = fw_bin_validate(fw, fw_bin->dev); + if (ret != 0) { + release_firmware(fw); + fw = ERR_PTR(ret); + goto fw_ready_callback; + } + + header = (struct mvx_fw_header *)fw->data; + fw_bin->nonsecure.header = header; + + /* Calculate number of pages needed for the text segment. */ + fw_bin->nonsecure.text_cnt = + (header->text_length + MVE_PAGE_SIZE - 1) >> MVE_PAGE_SHIFT; + + /* Calculate number of pages needed for the BSS segments. */ + va = header->bss_start_address; + for (i = 0; i < header->bss_bitmap_size; i++) { + if (va >= header->master_rw_start_address && + va < (header->master_rw_start_address + + header->master_rw_size)) + fw_bin->nonsecure.sbss_cnt++; + else if (test_bit_32(i, header->bss_bitmap)) + fw_bin->nonsecure.bss_cnt++; + + va += MVE_PAGE_SIZE; + } + + MVX_LOG_PRINT( + &mvx_log_if, MVX_LOG_INFO, + "Loaded firmware binary. bin=0x%p, major=%u, minor=%u, info=\"%s\", jump=0x%x, pages={text=%u, bss=%u, shared=%u}, text_length=%u, bss=0x%x.", + fw_bin, header->protocol_major, header->protocol_minor, + header->info_string, header->rasc_jmp, + fw_bin->nonsecure.text_cnt, fw_bin->nonsecure.bss_cnt, + fw_bin->nonsecure.sbss_cnt, header->text_length, + header->bss_start_address); + +fw_ready_callback: + fw_bin->nonsecure.fw = fw; + + fw_bin_callback(fw_bin); +} + +static void secure_request_firmware_done(struct mvx_secure_firmware *securefw, + void *arg) +{ + struct mvx_fw_bin *fw_bin = arg; + + if (securefw == NULL) { + MVX_LOG_PRINT( + &mvx_log_if, MVX_LOG_WARNING, + "Failed to load secure firmware binary. filename=%s.", + fw_bin->filename); + securefw = ERR_PTR(-EINVAL); + goto fw_bin_callback; + } + +fw_bin_callback: + fw_bin->secure.securefw = securefw; + + fw_bin_callback(fw_bin); +} + +/** + * hwvercmp() - Compare two hardware versions. + * + * Semantic of this function equivalent to strcmp(). + */ +static int hwvercmp(struct mvx_hw_ver *v1, struct mvx_hw_ver *v2) +{ + if (v1->id != v2->id) + return v1->id - v2->id; + + if (v1->revision != v2->revision) + return v1->revision - v2->revision; + + if (v1->patch != v2->patch) + return v1->patch - v2->patch; + + return 0; +} + +static ssize_t path_show(struct kobject *kobj, struct kobj_attribute *attr, + char *buf) +{ + struct mvx_fw_bin *fw_bin = kobj_to_fw_bin(kobj); + + return scnprintf(buf, PAGE_SIZE, "%s\n", fw_bin->filename); +} + +static ssize_t hw_ver_show(struct kobject *kobj, struct kobj_attribute *attr, + char *buf) +{ + struct mvx_fw_bin *fw_bin = kobj_to_fw_bin(kobj); + struct mvx_hw_ver *hw_ver = &fw_bin->hw_ver; + + return scnprintf(buf, PAGE_SIZE, "%s-%u-%u\n", + hw_id_to_string(hw_ver->id), hw_ver->revision, + hw_ver->patch); +} + +static ssize_t count_show(struct kobject *kobj, struct kobj_attribute *attr, + char *buf) +{ + return scnprintf(buf, PAGE_SIZE, "%d\n", kref_read(&kobj->kref) - 1); +} + +static ssize_t dirty_show(struct kobject *kobj, struct kobj_attribute *attr, + char *buf) +{ + struct mvx_fw_bin *fw_bin = kobj_to_fw_bin(kobj); + int dirty = 0; + + if (atomic_read(&fw_bin->flush_cnt) != + atomic_read(&fw_bin->cache->flush_cnt)) + dirty = 1; + + return scnprintf(buf, PAGE_SIZE, "%d\n", dirty); +} + +static struct kobj_attribute path_attr = __ATTR_RO(path); +static struct kobj_attribute count_attr = __ATTR_RO(count); +static struct kobj_attribute hw_ver = __ATTR_RO(hw_ver); +static struct kobj_attribute dirty_attr = __ATTR_RO(dirty); + +static struct attribute *fw_bin_attrs[] = { &path_attr.attr, &count_attr.attr, + &hw_ver.attr, &dirty_attr.attr, + NULL }; + +static const struct kobj_type fw_bin_ktype = { + .release = fw_bin_destroy, + .sysfs_ops = &kobj_sysfs_ops, + // .default_attrs = fw_bin_attrs +}; + +/** + * fw_bin_create() - Create a new firmware binary instance. + */ +static struct mvx_fw_bin *fw_bin_create(struct mvx_fw_cache *cache, + enum mvx_format format, + enum mvx_direction dir, + struct mvx_hw_ver *hw_ver, + bool securevideo) +{ + struct mvx_fw_bin *fw_bin; + int ret; + struct firmware *fw; + + /* Allocate object and initialize members. */ + fw_bin = devm_kzalloc(cache->dev, sizeof(*fw_bin), GFP_KERNEL); + if (fw_bin == NULL) + return ERR_PTR(-ENOMEM); + + fw_bin->dev = cache->dev; + fw_bin->cache = cache; + fw_bin->format = format; + fw_bin->dir = dir; + fw_bin->hw_ver = *hw_ver; + atomic_set(&fw_bin->flush_cnt, atomic_read(&cache->flush_cnt)); + mutex_init(&fw_bin->mutex); + INIT_LIST_HEAD(&fw_bin->cache_head); + INIT_LIST_HEAD(&fw_bin->event_list); + + fw_bin->securevideo = securevideo; + if (securevideo != false) + fw_bin->secure.secure = cache->secure; + + ret = kobject_init_and_add(&fw_bin->kobj, &fw_bin_ktype, &cache->kobj, + "%p", fw_bin); + if (ret != 0) + goto free_fw_bin; + + fw = kzalloc(sizeof(struct firmware), GFP_KERNEL); + + switch (format) { + case MVX_FORMAT_H264: + if (dir == MVX_DIR_INPUT) + fw->size = get_fw_h264dec((unsigned char **)&fw->data); + else + fw->size = get_fw_h264enc((unsigned char **)&fw->data); + + break; + case MVX_FORMAT_HEVC: + if (dir == MVX_DIR_INPUT) + fw->size = get_fw_hevcdec((unsigned char **)&fw->data); + else + fw->size = get_fw_hevcenc((unsigned char **)&fw->data); + + break; + case MVX_FORMAT_JPEG: + if (dir == MVX_DIR_INPUT) + fw->size = get_fw_jpegdec((unsigned char **)&fw->data); + else + fw->size = get_fw_jpegenc((unsigned char **)&fw->data); + + break; + default: + MVX_LOG_PRINT(&mvx_log_if, MVX_LOG_ERROR, "wrong format %d.", + format); + break; + } + + kobject_get(&fw_bin->kobj); + + request_firmware_done(fw, fw_bin); + + return fw_bin; + +free_fw_bin: + kobject_put(&fw_bin->kobj); + + return ERR_PTR(ret); +} + +/** + * fw_bin_get() - Get reference to firmware binary. + * + * If firmware binary has already been loaded the reference count is increased, + * else the function tries to create a new descriptor and load the firmware + * into memory. + */ +static struct mvx_fw_bin * +fw_bin_get(struct mvx_fw_cache *cache, enum mvx_format format, + enum mvx_direction dir, struct mvx_hw_ver *hw_ver, bool securevideo) +{ + struct mvx_fw_bin *fw_bin = NULL; + struct mvx_fw_bin *tmp; + int ret; + + ret = mutex_lock_interruptible(&cache->mutex); + if (ret != 0) + return ERR_PTR(ret); + + /* Search if firmware binary has already been loaded. */ + list_for_each_entry(tmp, &cache->fw_bin_list, cache_head) { + if (tmp->format == format && tmp->dir == dir && + hwvercmp(&tmp->hw_ver, hw_ver) == 0 && + tmp->securevideo == securevideo && + atomic_read(&tmp->flush_cnt) == + atomic_read(&cache->flush_cnt)) { + fw_bin = tmp; + break; + } + } + + /* If firmware was not found, then try to request firmware. */ + if (fw_bin == NULL) { + fw_bin = fw_bin_create(cache, format, dir, hw_ver, securevideo); + if (!IS_ERR(fw_bin)) + list_add(&fw_bin->cache_head, &cache->fw_bin_list); + } else { + kobject_get(&fw_bin->kobj); + } + + mutex_unlock(&cache->mutex); + + return fw_bin; +} + +/**************************************************************************** + * Private functions + ****************************************************************************/ + +static struct mvx_fw_cache *kobj_to_fw_cache(struct kobject *kobj) +{ + return container_of(kobj, struct mvx_fw_cache, kobj); +} + +/** + * cache_flush_show() - FW cache flush status is always 0. + */ +static ssize_t cache_flush_show(struct kobject *kobj, + struct kobj_attribute *attr, char *buf) +{ + return scnprintf(buf, PAGE_SIZE, "0\n"); +} + +/** + * cache_flush_store() - Trigger FW cache flush. + */ +static ssize_t cache_flush_store(struct kobject *kobj, + struct kobj_attribute *attr, const char *buf, + size_t size) +{ + struct mvx_fw_cache *cache = kobj_to_fw_cache(kobj); + + atomic_inc(&cache->flush_cnt); + return size; +} + +/** + * Sysfs attribute which triggers FW cache flush. + */ +static struct kobj_attribute cache_flush = + __ATTR(flush, 0600, cache_flush_show, cache_flush_store); + +static struct attribute *cache_attrs[] = { &cache_flush.attr, NULL }; + +static void cache_release(struct kobject *kobj) +{ + struct mvx_fw_cache *cache = kobj_to_fw_cache(kobj); + + kthread_stop(cache->cache_thread); + kobject_put(cache->kobj_parent); +} + +static const struct kobj_type cache_ktype = { + .release = cache_release, + .sysfs_ops = &kobj_sysfs_ops, + // .default_attrs = cache_attrs +}; + +static void cache_update(struct mvx_fw_cache *cache) +{ + struct mvx_fw_bin *fw_bin; + struct mvx_fw_bin *tmp; + int ret; + + ret = mutex_lock_interruptible(&cache->mutex); + if (ret != 0) + return; + + list_for_each_entry_safe(fw_bin, tmp, &cache->fw_bin_list, + cache_head) { + int ref; + + ref = kref_read(&fw_bin->kobj.kref); + if (ref == 1) + kobject_put(&fw_bin->kobj); + } + + mutex_unlock(&cache->mutex); +} + +static int cache_thread(void *v) +{ + struct mvx_fw_cache *cache = (struct mvx_fw_cache *)v; + + while (!kthread_should_stop()) { + cache_update(cache); + msleep_interruptible(CACHE_CLEANUP_INTERVAL_MS); + } + + return 0; +} + +/**************************************************************************** + * Exported functions + ****************************************************************************/ + +int mvx_fw_cache_construct(struct mvx_fw_cache *cache, struct device *dev, + struct mvx_secure *secure, + struct kobject *kobj_parent) +{ + int ret; + + cache->dev = dev; + cache->secure = secure; + cache->kobj_parent = kobject_get(kobj_parent); + atomic_set(&cache->flush_cnt, 0); + mutex_init(&cache->mutex); + INIT_LIST_HEAD(&cache->fw_bin_list); + + ret = kobject_init_and_add(&cache->kobj, &cache_ktype, kobj_parent, + "fw_cache"); + if (ret != 0) + goto kobj_put; + + cache->cache_thread = kthread_run(cache_thread, cache, "fw_cache"); + if (IS_ERR(cache->cache_thread)) + goto kobj_put; + + return 0; + +kobj_put: + kobject_put(&cache->kobj); + kobject_put(cache->kobj_parent); + return -EFAULT; +} + +void mvx_fw_cache_destruct(struct mvx_fw_cache *cache) +{ + kobject_put(&cache->kobj); +} + +int mvx_fw_cache_get(struct mvx_fw_cache *cache, enum mvx_format format, + enum mvx_direction dir, struct mvx_fw_event *event, + struct mvx_hw_ver *hw_ver, bool securevideo) +{ + int ret; + struct mvx_fw_bin *fw_bin; + + /* Allocate a new firmware binary or get handle to existing object. */ + fw_bin = fw_bin_get(cache, format, dir, hw_ver, securevideo); + if (IS_ERR(fw_bin)) + return PTR_ERR(fw_bin); + + ret = mutex_lock_interruptible(&fw_bin->mutex); + if (ret != 0) { + mvx_fw_cache_put(cache, fw_bin); + return ret; + } + + /* + * If the firmware binary has already been loaded, then the callback + * routine can be called right away. + * Else the callback and argument is enqueued to the firmware + * notification list. + */ + if ((fw_bin->securevideo != false && + IS_ERR_OR_NULL(fw_bin->secure.securefw) == false)) { + mutex_unlock(&fw_bin->mutex); + event->fw_bin_ready(fw_bin, event->arg, true); + } else if (fw_bin->securevideo == false && + IS_ERR_OR_NULL(fw_bin->nonsecure.fw) == false) { + mutex_unlock(&fw_bin->mutex); + event->fw_bin_ready(fw_bin, event->arg, true); + } else { + list_add(&event->head, &fw_bin->event_list); + mutex_unlock(&fw_bin->mutex); + } + + return 0; +} + +void mvx_fw_cache_put(struct mvx_fw_cache *cache, struct mvx_fw_bin *fw_bin) +{ + int ret; + + ret = mutex_lock_interruptible(&cache->mutex); + + kobject_put(&fw_bin->kobj); + + if (ret == 0) + mutex_unlock(&cache->mutex); +} + +void mvx_fw_cache_log(struct mvx_fw_bin *fw_bin, + struct mvx_client_session *csession) +{ + struct mvx_log_header header; + struct mvx_log_fw_binary fw_binary; + struct timespec64 timespec; + struct iovec vec[3]; + + if (fw_bin->securevideo != false) + return; + + ktime_get_real_ts64(×pec); + + header.magic = MVX_LOG_MAGIC; + header.length = sizeof(fw_binary) + sizeof(*fw_bin->nonsecure.header); + header.type = MVX_LOG_TYPE_FW_BINARY; + header.severity = MVX_LOG_INFO; + header.timestamp.sec = timespec.tv_sec; + header.timestamp.nsec = timespec.tv_nsec; + + fw_binary.session = (uintptr_t)csession; + + vec[0].iov_base = &header; + vec[0].iov_len = sizeof(header); + + vec[1].iov_base = &fw_binary; + vec[1].iov_len = sizeof(fw_binary); + + vec[2].iov_base = (void *)fw_bin->nonsecure.header; + vec[2].iov_len = sizeof(*fw_bin->nonsecure.header); + + MVX_LOG_DATA(&mvx_log_fwif_if, MVX_LOG_INFO, vec, 3); +} + +void mvx_fw_cache_get_formats(struct mvx_fw_cache *cache, + enum mvx_direction direction, uint64_t *formats) +{ + /* Support all formats by default. */ + *formats = (1ull << MVX_FORMAT_MAX) - 1ull; + + /* TODO remove formats we can't find any firmware for. */ +} diff --git a/drivers/media/platform/canaan/vpu/mvx_firmware_cache.h b/drivers/media/platform/canaan/vpu/mvx_firmware_cache.h new file mode 100644 index 0000000000000..030607c464435 --- /dev/null +++ b/drivers/media/platform/canaan/vpu/mvx_firmware_cache.h @@ -0,0 +1,239 @@ +/* SPDX-License-Identifier: GPL-2.0-only + * The confidential and proprietary information contained in this file may + * only be used by a person authorised under and to the extent permitted + * by a subsisting licensing agreement from Arm Technology (China) Co., Ltd. + * + * (C) COPYRIGHT 2021-2021 Arm Technology (China) Co., Ltd. + * ALL RIGHTS RESERVED + * + * This entire notice must be reproduced on all copies of this file + * and copies of this file may only be made by a person if such person is + * permitted to do so under the terms of a subsisting license agreement + * from Arm Technology (China) Co., Ltd. + * + * 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. + * + */ + +#ifndef _MVX_FIRMWARE_CACHE_H_ +#define _MVX_FIRMWARE_CACHE_H_ + +/**************************************************************************** + * Includes + ****************************************************************************/ + +#include +#include +#include +#include +#include "mvx_if.h" + +/**************************************************************************** + * Types + ****************************************************************************/ + +struct device; +struct firmware; +struct mvx_client_session; +struct mvx_secure; +struct mvx_secure_firmware; + +/** + * struct mvx_fw_cache - Firmware cache. + * + * There is exactly one firmware context per device. It keeps track of the + * firmware binaries. + */ +struct mvx_fw_cache { + struct device *dev; + struct mvx_secure *secure; + struct mutex mutex; + struct list_head fw_bin_list; + struct kobject kobj; + struct kobject *kobj_parent; + atomic_t flush_cnt; + struct task_struct *cache_thread; +}; + +/** + * struct mvx_fw_header - Firmware binary header. + * @rasc_jmp: Start address. + * @protocol_minor: Host internface protocol minor version. + * @protocol_major: Host internface protocol major version. + * @reserved: Reserved for future use. Always 0. + * @info_string: Human readable codec information. + * @part_number: Part number. + * @svn_revision: SVN revision. + * @version_string: Firmware version. + * @text_length: Length in bytes of the read-only part of the firmware. + * @bss_start_address: Start address for BSS segment. This is always + * page-aligned. + * @bss_bitmap_size: The number of bits used in 'bss_bitmap'. + * @bss_bitmap: Bitmap which pages that shall be allocated and MMU + * mapped. If bit N is set, then a page shall be allocated + * and MMU mapped to VA address + * FW_BASE + bss_start_address + N * MVE_PAGE_SIZE. + * @master_rw_start_address: Defines a region of shared pages. + * @master_rw_size: Defines a region of shared pages. + */ +struct mvx_fw_header { + uint32_t rasc_jmp; + uint8_t protocol_minor; + uint8_t protocol_major; + uint8_t reserved[2]; + uint8_t info_string[56]; + uint8_t part_number[8]; + uint8_t svn_revision[8]; + uint8_t version_string[16]; + uint32_t text_length; + uint32_t bss_start_address; + uint32_t bss_bitmap_size; + uint32_t bss_bitmap[16]; + uint32_t master_rw_start_address; + uint32_t master_rw_size; +}; + +/** + * struct mvx_fw_bin - Structure describing a loaded firmware binary. + * + * Multiple sessions may share the same firmware binary. + */ +struct mvx_fw_bin { + struct device *dev; + struct mvx_fw_cache *cache; + struct mutex mutex; + struct kobject kobj; + struct list_head cache_head; + struct list_head event_list; + char filename[128]; + enum mvx_format format; + enum mvx_direction dir; + struct mvx_hw_ver hw_ver; + atomic_t flush_cnt; + bool securevideo; + struct { + const struct firmware *fw; + const struct mvx_fw_header *header; + unsigned int text_cnt; + unsigned int bss_cnt; + unsigned int sbss_cnt; + } nonsecure; + struct { + struct mvx_secure *secure; + struct mvx_secure_firmware *securefw; + } secure; +}; + +/** + * struct mvx_fw_event - Firmware load event notification. + * @head: Used by the firmware loader. Should not be used + * by the client. + * @fw_bin_ready: Callback routine invoked after the firmware binary has + * finished loading. Will be called both on success and + * failure. + * @arg: Argument passed to fw_bin_ready. Client may set this + * pointer to any value. + * + * Structure used to keep track of clients that have subscribed to event + * notification after the firmware binary has been loaded. + */ +struct mvx_fw_event { + struct list_head head; + void (*fw_bin_ready)(struct mvx_fw_bin *fw_bin, void *arg, + bool same_thread); + void *arg; +}; + +/**************************************************************************** + * Exported functions + ****************************************************************************/ + +/** + * mvx_fw_cache_construct() - Construct the firmware object. + * @cache: Pointer to firmware cache. + * @dev: Pointer to device. + * @secure: Pointer to secure video. + * @kobj: Pointer to parent kobj. + * + * When FW cache is constructed, corresponding sysfs entry will be created + * and attached as a child to kobj. + * + * Return: 0 on success, else error code. + */ +int mvx_fw_cache_construct(struct mvx_fw_cache *cache, struct device *dev, + struct mvx_secure *secure, struct kobject *kobj); + +/** + * mvx_fw_cache_destruct() - Destroy the firmware object. + * @cache: Pointer to firmware cache. + */ +void mvx_fw_cache_destruct(struct mvx_fw_cache *cache); + +/** + * mvx_fw_cache_get() - Get a reference to a firmware binary. + * @cache: Pointer for firmware cache. + * @format: Format used on the bitstream port. + * @dir: Which port that is configured as bitstream port. + * @event: Callback routine and argument that will be invoded after + * the firmware binary has been loaded. + * @hw_ver: MVE hardware version. + * @securevideo:Secure video enabled. + * + * Loading a firmware binary is an asynchronous operation. The client will be + * informed through a callback routine when the binary is ready. + * + * If the firmware binary is already in the cache, then the callback routine + * will be called directly from mvx_fw_cache_get(). The client must take care + * not to reaquire any mutexes already held. + * + * If the firmware binary was not found in the cache, then the callback routine + * will be called from a separete thread context. The client must make sure + * its data is protected by a mutex. + * + * Return: 0 on success, else error code. + */ +int mvx_fw_cache_get(struct mvx_fw_cache *cache, enum mvx_format format, + enum mvx_direction dir, struct mvx_fw_event *event, + struct mvx_hw_ver *hw_ver, bool securevideo); + +/** + * mvx_fw_cache_put() - Return firmware binary to cache and decrement the + * reference count. + * @cache: Pointer to firmware cache. + * @fw:_bin Pointer to firmware binary. + */ +void mvx_fw_cache_put(struct mvx_fw_cache *cache, struct mvx_fw_bin *fw_bin); + +/** + * mvx_fw_cache_log() - Log firmware binary to ram log. + * @fw_bin: Pointer to firmware binary. + * @csession: Pointer to client session. + */ +void mvx_fw_cache_log(struct mvx_fw_bin *fw_bin, + struct mvx_client_session *csession); + +/** + * mvx_fw_cache_get_formats() - Get supported formats. + * @cache: Pointer to firmware cache. + * @direction: Input or output port. + * @formats: Pointer to bitmask listing supported formats. + */ +void mvx_fw_cache_get_formats(struct mvx_fw_cache *cache, + enum mvx_direction direction, uint64_t *formats); + +int get_fw_h264dec(unsigned char **data); +int get_fw_h264enc(unsigned char **data); +int get_fw_jpegdec(unsigned char **data); +int get_fw_jpegenc(unsigned char **data); +int get_fw_hevcdec(unsigned char **data); +int get_fw_hevcenc(unsigned char **data); + +#endif /* _MVX_FIRMWARE_CACHE_H_ */ diff --git a/drivers/media/platform/canaan/vpu/mvx_firmware_priv.h b/drivers/media/platform/canaan/vpu/mvx_firmware_priv.h new file mode 100644 index 0000000000000..47a7ddeff05de --- /dev/null +++ b/drivers/media/platform/canaan/vpu/mvx_firmware_priv.h @@ -0,0 +1,146 @@ +/* SPDX-License-Identifier: GPL-2.0-only + * The confidential and proprietary information contained in this file may + * only be used by a person authorised under and to the extent permitted + * by a subsisting licensing agreement from Arm Technology (China) Co., Ltd. + * + * (C) COPYRIGHT 2021-2021 Arm Technology (China) Co., Ltd. + * ALL RIGHTS RESERVED + * + * This entire notice must be reproduced on all copies of this file + * and copies of this file may only be made by a person if such person is + * permitted to do so under the terms of a subsisting license agreement + * from Arm Technology (China) Co., Ltd. + * + * 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. + * + */ + +#ifndef _MVX_FIRMWARE_PRIV_H_ +#define _MVX_FIRMWARE_PRIV_H_ + +/**************************************************************************** + * Includes + ****************************************************************************/ + +#include "mvx_firmware.h" + +/**************************************************************************** + * Defines + ****************************************************************************/ + +#if !defined(MVE_REQUEST_CODE_IDLE_ACK) +#define MVE_REQUEST_CODE_IDLE_ACK (1012) +#endif + +/**************************************************************************** + * Firmware + ****************************************************************************/ + +struct mvx_client_ops; +struct mvx_client_session; +struct mvx_fw_bin; +struct mvx_mmu; +struct mvx_session; + +/** + * mvx_firmware_construct() - Firmware constructor. + * @fw: Pointer to firmware object. + * @fw_bin: Pointer to firmware binary. + * @mmu: Pointer to MMU. + * @session: Pointer to session. + * @client_ops: Pointer to client operations. + * @csession: Pointer to client session. + * ncores: Number of cores. + * + * Return: 0 on success, else error code. + */ +int mvx_fw_construct(struct mvx_fw *fw, struct mvx_fw_bin *fw_bin, + struct mvx_mmu *mmu, struct mvx_session *session, + struct mvx_client_ops *client_ops, + struct mvx_client_session *csession, unsigned int ncores); + +/**************************************************************************** + * Firmware v2 + ****************************************************************************/ + +/** + * mvx_fw_construct_v2() - Construct the object for the firmware v2 interface. + * @fw: Pointer to firmware object. + * @fw_bin: Pointer to firmware binary. + * @mmu: Pointer to MMU. + * @session: Pointer to session. + * @client_ops: Pointer to client operations. + * @csession: Pointer to client session. + * ncores: Number of cores. + * @major: Major firmware version. + * @minor: Minor firmware version. + * + * Return: 0 on success, else error code. + */ +int mvx_fw_construct_v2(struct mvx_fw *fw, struct mvx_fw_bin *fw_bin, + struct mvx_mmu *mmu, struct mvx_session *session, + struct mvx_client_ops *client_ops, + struct mvx_client_session *csession, + unsigned int ncores, unsigned char major, + unsigned char minor); + +/** + * mvx_fw_send_idle_ack_v2() - Send idle ack. + * @fw: Pointer to firmware object. + * + * Return: 0 on success, else error code. + */ +int mvx_fw_send_idle_ack_v2(struct mvx_fw *fw); + +/** + * mvx_fw_to_mve_profile_v2() - Convert MVX to MVE profile. + * @mvx_profile: Input profile. + * @mve_profile: Output profile. + * + * Return: 0 on success, else error code. + */ +int mvx_fw_to_mve_profile_v2(unsigned int mvx_profile, uint16_t *mve_profile); + +/** + * mvx_fw_to_mve_level_v2() - Convert MVX to MVE level. + * @mvx_level: Input level. + * @mve_level: Output level. + * + * Return: 0 on success, else error code. + */ +int mvx_fw_to_mve_level_v2(unsigned int mvx_level, uint16_t *mve_level); + +/**************************************************************************** + * Firmware v3 + ****************************************************************************/ + +/** + * mvx_fw_construct_v3() - Construct the object for the firmware v3 interface. + * @fw: Pointer to firmware object. + * @fw_bin: Pointer to firmware binary. + * @mmu: Pointer to MMU. + * @session: Pointer to session. + * @client_ops: Pointer to client operations. + * @csession: Pointer to client session. + * ncores: Number of cores. + * @major: Major firmware version. + * @minor: Minor firmware version. + * + * Return: 0 on success, else error code. + */ +int mvx_fw_construct_v3(struct mvx_fw *fw, struct mvx_fw_bin *fw_bin, + struct mvx_mmu *mmu, struct mvx_session *session, + struct mvx_client_ops *client_ops, + struct mvx_client_session *csession, + unsigned int ncores, unsigned char major, + unsigned char minor); + +#endif diff --git a/drivers/media/platform/canaan/vpu/mvx_firmware_v2.c b/drivers/media/platform/canaan/vpu/mvx_firmware_v2.c new file mode 100644 index 0000000000000..f14f7e4a627b3 --- /dev/null +++ b/drivers/media/platform/canaan/vpu/mvx_firmware_v2.c @@ -0,0 +1,3841 @@ +// SPDX-License-Identifier: GPL-2.0-only +/* + * The confidential and proprietary information contained in this file may + * only be used by a person authorised under and to the extent permitted + * by a subsisting licensing agreement from Arm Technology (China) Co., Ltd. + * + * (C) COPYRIGHT 2021-2021 Arm Technology (China) Co., Ltd. + * ALL RIGHTS RESERVED + * + * This entire notice must be reproduced on all copies of this file + * and copies of this file may only be made by a person if such person is + * permitted to do so under the terms of a subsisting license agreement + * from Arm Technology (China) Co., Ltd. + * + * 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. + * + */ + +/**************************************************************************** + * Includes + ****************************************************************************/ + +#include +#include +#include +#include +#include "mve_protocol_def_v2.h" +#include "mvx_firmware_cache.h" +#include "mvx_firmware_priv.h" +#include "mvx_log_group.h" +#include "mvx_log_ram.h" +#include "mvx_mmu.h" +#include "mvx_secure.h" +#include "mvx_seq.h" +#include "mvx_session.h" + +/**************************************************************************** + * Static functions + ****************************************************************************/ + +/** + * is_afbc() - Detect if format is AFBC. + * @format: Color format. + * + * Return: True if AFBC, else false. + */ +static bool is_afbc(unsigned int format) +{ + return (format & (1 << MVE_FORMAT_BF_A)) != 0; +} + +/** + * log_message() - Log a message. + * @session: Pointer to session. + * @channel: The type of the firmware interface message; + * message, input buffer, output buffer or RPC + * @direction: The type of the firmware interface message; + * host->firmware or firware->host. + * @msg_header: The header of the message. + * @data: Pointer to the message data. + */ +static void log_message(struct mvx_session *session, + enum mvx_log_fwif_channel channel, + enum mvx_log_fwif_direction direction, + struct mve_msg_header *msg_header, void *data) +{ + struct mvx_log_header header; + struct mvx_log_fwif fwif; + struct iovec vec[4]; + struct timespec64 timespec; + + ktime_get_real_ts64(×pec); + + header.magic = MVX_LOG_MAGIC; + header.length = sizeof(fwif) + sizeof(*msg_header) + msg_header->size; + header.type = MVX_LOG_TYPE_FWIF; + header.severity = MVX_LOG_INFO; + header.timestamp.sec = timespec.tv_sec; + header.timestamp.nsec = timespec.tv_nsec; + + fwif.version_major = 2; + fwif.version_minor = 0; + fwif.channel = channel; + fwif.direction = direction; + fwif.session = (uintptr_t)session; + + vec[0].iov_base = &header; + vec[0].iov_len = sizeof(header); + + vec[1].iov_base = &fwif; + vec[1].iov_len = sizeof(fwif); + + vec[2].iov_base = msg_header; + vec[2].iov_len = sizeof(*msg_header); + + vec[3].iov_base = data; + vec[3].iov_len = msg_header->size; + + MVX_LOG_DATA(&mvx_log_fwif_if, MVX_LOG_INFO, vec, 4); +} + +/** + * log_rpc() - Log a RPC message. + * @session: Pointer to session. + * @direction: The type of the firmware interface message; + * host->firmware or firware->host. + * @rpc: RPC message. + */ +static void log_rpc(struct mvx_session *session, + enum mvx_log_fwif_direction direction, + struct mve_rpc_communication_area *rpc) +{ + struct mvx_log_header header; + struct mvx_log_fwif fwif; + size_t rpc_size; + struct iovec vec[3]; + struct timespec64 timespec; + + rpc_size = offsetof(typeof(*rpc), params) + rpc->size; + + if (rpc_size > sizeof(*rpc)) + MVX_LOG_PRINT(&mvx_log_if, MVX_LOG_WARNING, + "RPC message size is too large. size=%u.", + rpc->size); + + ktime_get_real_ts64(×pec); + + header.magic = MVX_LOG_MAGIC; + header.length = sizeof(fwif) + rpc_size; + header.type = MVX_LOG_TYPE_FWIF; + header.severity = MVX_LOG_INFO; + header.timestamp.sec = timespec.tv_sec; + header.timestamp.nsec = timespec.tv_nsec; + + fwif.version_major = 2; + fwif.version_minor = 0; + fwif.channel = MVX_LOG_FWIF_CHANNEL_RPC; + fwif.direction = direction; + fwif.session = (uintptr_t)session; + + vec[0].iov_base = &header; + vec[0].iov_len = sizeof(header); + + vec[1].iov_base = &fwif; + vec[1].iov_len = sizeof(fwif); + + vec[2].iov_base = rpc; + vec[2].iov_len = rpc_size; + + MVX_LOG_DATA(&mvx_log_fwif_if, MVX_LOG_INFO, vec, 3); +} + +static int get_stride90(enum mvx_format format, uint8_t *nplanes, + unsigned int stride[MVX_BUFFER_NPLANES][2]) +{ + switch (format) { + case MVX_FORMAT_YUV420_I420: + *nplanes = 3; + stride[0][0] = 2; + stride[0][1] = 2; + stride[1][0] = 1; + stride[1][1] = 1; + stride[2][0] = 1; + stride[2][1] = 1; + break; + case MVX_FORMAT_YUV420_NV12: + case MVX_FORMAT_YUV420_NV21: + *nplanes = 2; + stride[0][0] = 2; + stride[0][1] = 2; + stride[1][0] = 2; + stride[1][1] = 1; + stride[2][0] = 0; + stride[2][1] = 0; + break; + case MVX_FORMAT_YUV420_P010: + case MVX_FORMAT_YUV420_2P_10: + *nplanes = 2; + stride[0][0] = 4; + stride[0][1] = 2; + stride[1][0] = 4; + stride[1][1] = 1; + stride[2][0] = 0; + stride[2][1] = 0; + break; + case MVX_FORMAT_YUV420_Y0L2: + case MVX_FORMAT_YUV420_AQB1: + *nplanes = 1; + stride[0][0] = 8; + stride[0][1] = 1; + stride[1][0] = 0; + stride[1][1] = 0; + stride[2][0] = 0; + stride[2][1] = 0; + break; + case MVX_FORMAT_YUV422_YUY2: + case MVX_FORMAT_YUV422_UYVY: + *nplanes = 1; + stride[0][0] = 4; + stride[0][1] = 2; + stride[1][0] = 0; + stride[1][1] = 0; + stride[2][0] = 0; + stride[2][1] = 0; + break; + case MVX_FORMAT_YUV422_Y210: + case MVX_FORMAT_YUV422_1P_10: + case MVX_FORMAT_RGBA_8888: + case MVX_FORMAT_BGRA_8888: + case MVX_FORMAT_ARGB_8888: + case MVX_FORMAT_ABGR_8888: + *nplanes = 1; + stride[0][0] = 8; + stride[0][1] = 2; + stride[1][0] = 0; + stride[1][1] = 0; + stride[2][0] = 0; + stride[2][1] = 0; + break; + case MVX_FORMAT_RGB_888: + case MVX_FORMAT_BGR_888: + *nplanes = 1; + stride[0][0] = 6; + stride[0][1] = 2; + stride[1][0] = 0; + stride[1][1] = 0; + stride[2][0] = 0; + stride[2][1] = 0; + break; + case MVX_FORMAT_RGB_888_3P: + case MVX_FORMAT_YUV444: + *nplanes = 3; + stride[0][0] = 2; + stride[0][1] = 2; + stride[1][0] = 2; + stride[1][1] = 2; + stride[2][0] = 2; + stride[2][1] = 2; + break; + case MVX_FORMAT_Y: + *nplanes = 1; + stride[0][0] = 2; + stride[0][1] = 2; + stride[1][0] = 0; + stride[1][1] = 0; + stride[2][0] = 0; + stride[2][1] = 0; + break; + case MVX_FORMAT_Y_10: + *nplanes = 1; + stride[0][0] = 4; + stride[0][1] = 2; + stride[1][0] = 0; + stride[1][1] = 0; + stride[2][0] = 0; + stride[2][1] = 0; + break; + case MVX_FORMAT_YUV444_10: + *nplanes = 3; + stride[0][0] = 4; + stride[0][1] = 2; + stride[1][0] = 4; + stride[1][1] = 2; + stride[2][0] = 4; + stride[2][1] = 2; + break; + case MVX_FORMAT_YUV420_I420_10: + *nplanes = 3; + stride[0][0] = 4; + stride[0][1] = 2; + stride[1][0] = 2; + stride[1][1] = 1; + stride[2][0] = 2; + stride[2][1] = 1; + break; + default: + return -EINVAL; + } + + return 0; +} + +/** + * read32n() - Read a number of bytes from 'src' to 'dst'. + * @src: Pointer to circular buffer of source data. + * @offset: Current offset in the circular buffer. + * @dst: Pointer to destination buffer. + * @size: Size in bytes. + * + * Return: New offset in the circular buffer. + */ +static unsigned int read32n(uint32_t *src, unsigned int offset, + uint32_t *dst, size_t size) +{ + for (; size >= sizeof(uint32_t); size -= sizeof(uint32_t)) { + *dst++ = src[offset]; + offset = (offset + 1) % MVE_COMM_QUEUE_SIZE_IN_WORDS; + } + + if (size != 0) { + memcpy(dst, (void *)&src[offset], size); + offset = (offset + 1) % MVE_COMM_QUEUE_SIZE_IN_WORDS; + } + + return offset; +} + +/** + * read_message() - Read message from firmware message queue. + * @fw: Pointer to firmware object. + * @host: Host communication area. + * @mve: MVE communication area. + * @code: Pointer to where the message code shall be placed. + * @data: Pointer to where message data shall be placed. + * @size: Input: the size of the data. Output: The size of the message. + * @channel: Firmware interface message type to log. + * + * Return: 1 if a message was read, 0 if no message was read, else error code. + */ +static int read_message(struct mvx_fw *fw, struct mve_comm_area_host *host, + struct mve_comm_area_mve *mve, unsigned int *code, + void *data, size_t *size, + enum mvx_log_fwif_channel channel) +{ + struct mve_msg_header header; + unsigned int rpos; + ssize_t capacity; + + dma_sync_single_for_cpu(fw->dev, virt_to_phys(mve), MVE_PAGE_SIZE, + DMA_FROM_DEVICE); + + rpos = host->out_rpos; + + /* Calculate how much data that is available in the buffer. */ + capacity = mve->out_wpos - rpos; + if (capacity < 0) + capacity += MVE_COMM_QUEUE_SIZE_IN_WORDS; + + if (capacity <= 0) + return 0; + + /* Read the header. */ + rpos = read32n(mve->out_data, rpos, (uint32_t *)&header, + sizeof(header)); + + /* Make sure there is enough space for both header and message. */ + capacity -= + DIV_ROUND_UP(sizeof(header) + header.size, sizeof(uint32_t)); + if (capacity < 0) { + MVX_LOG_PRINT( + &mvx_log_if, MVX_LOG_WARNING, + "Firmware v2 msg larger than capacity. code=%u, size=%u, wpos=%u, rpos=%u.", + header.code, header.size, mve->out_wpos, + host->out_rpos); + return -EFAULT; + } + + if (header.size > *size) { + MVX_LOG_PRINT( + &mvx_log_if, MVX_LOG_WARNING, + "Firmware v2 message does not fit in buffer. code=%u, msg_size=%u, size=%zu.", + header.code, header.size, *size); + return -ENOMEM; + } + + /* Read message body. */ + rpos = read32n(mve->out_data, rpos, data, header.size); + host->out_rpos = rpos; + + /* + * Make sure the read pointer has been written before the cache is + * flushed. + */ + wmb(); + dma_sync_single_for_device(fw->dev, virt_to_phys(&host->out_rpos), + sizeof(host->out_rpos), DMA_TO_DEVICE); + + *code = header.code; + *size = header.size; + + /* Log firmware message. */ + MVX_LOG_EXECUTE(&mvx_log_fwif_if, MVX_LOG_INFO, + log_message(fw->session, channel, + MVX_LOG_FWIF_DIRECTION_FIRMWARE_TO_HOST, + &header, data)); + + return 1; +} + +/** + * write32n() - Write a number of bytes to 'dst' from 'src'. + * @dst: Pointer to circular buffer of destination data. + * @offset: Current offset in the circular buffer. + * @src: Pointer to source buffer. + * @size: Size in bytes. + * + * Return: New offset in the circular buffer. + */ +static unsigned int write32n(uint32_t *dst, unsigned int offset, + uint32_t *src, size_t size) +{ + for (; size >= sizeof(uint32_t); size -= sizeof(uint32_t)) { + dst[offset] = *src++; + offset = (offset + 1) % MVE_COMM_QUEUE_SIZE_IN_WORDS; + } + + if (size != 0) { + memcpy((void *)&dst[offset], src, size); + offset = (offset + 1) % MVE_COMM_QUEUE_SIZE_IN_WORDS; + } + + return offset; +} + +/** + * write_message() - Write message to firmware message queue. + * @fw: Pointer to firmware object. + * @host: Host communication area. + * @mve: MVE communication area. + * @code: Message code. + * @data: Pointer to message data. May be NULL if size if 0. + * @size: Size in bytes of data. + * @channel: Firmware interface message type to log. + * + * Return: 0 on success, else error code. + */ +static int write_message(struct mvx_fw *fw, struct mve_comm_area_host *host, + struct mve_comm_area_mve *mve, unsigned int code, + void *data, size_t size, + enum mvx_log_fwif_channel channel) +{ + struct mve_msg_header header = { code = code, .size = size }; + ssize_t capacity; + unsigned int wpos; + + dma_sync_single_for_cpu(fw->dev, virt_to_phys(&mve->in_rpos), + sizeof(mve->in_rpos), DMA_FROM_DEVICE); + + wpos = host->in_wpos; + + /* Calculate how much space that is available in the buffer. */ + capacity = mve->in_rpos - wpos; + if (capacity <= 0) + capacity += MVE_COMM_QUEUE_SIZE_IN_WORDS; + + /* Make sure there is enough space for both header and message. */ + capacity -= DIV_ROUND_UP(sizeof(header) + size, sizeof(uint32_t)); + if (capacity < 0) + return -ENOMEM; + + /* Write header. */ + wpos = write32n(host->in_data, wpos, (uint32_t *)&header, + sizeof(header)); + + /* Write message. */ + wpos = write32n(host->in_data, wpos, data, size); + + /* + * Make sure all message data has been written before the cache is + * flushed. + */ + wmb(); + dma_sync_single_for_device(fw->dev, virt_to_phys(host), MVE_PAGE_SIZE, + DMA_TO_DEVICE); + + host->in_wpos = wpos; + + /* + * Make sure the write pointer has been written before the cache is + * flushed. + */ + wmb(); + dma_sync_single_for_device(fw->dev, virt_to_phys(&host->in_wpos), + sizeof(host->in_wpos), DMA_TO_DEVICE); + + /* Log firmware message. */ + MVX_LOG_EXECUTE(&mvx_log_fwif_if, MVX_LOG_INFO, + log_message(fw->session, channel, + MVX_LOG_FWIF_DIRECTION_HOST_TO_FIRMWARE, + &header, data)); + + return 0; +} + +static int get_region_v2(enum mvx_fw_region region, uint32_t *begin, + uint32_t *end) +{ + switch (region) { + case MVX_FW_REGION_CORE_0: + *begin = MVE_MEM_REGION_FW_INSTANCE0_ADDR_BEGIN; + *end = MVE_MEM_REGION_FW_INSTANCE0_ADDR_END; + break; + case MVX_FW_REGION_CORE_1: + *begin = MVE_MEM_REGION_FW_INSTANCE1_ADDR_BEGIN; + *end = MVE_MEM_REGION_FW_INSTANCE1_ADDR_END; + break; + case MVX_FW_REGION_CORE_2: + *begin = MVE_MEM_REGION_FW_INSTANCE2_ADDR_BEGIN; + *end = MVE_MEM_REGION_FW_INSTANCE2_ADDR_END; + break; + case MVX_FW_REGION_CORE_3: + *begin = MVE_MEM_REGION_FW_INSTANCE3_ADDR_BEGIN; + *end = MVE_MEM_REGION_FW_INSTANCE3_ADDR_END; + break; + case MVX_FW_REGION_CORE_4: + *begin = MVE_MEM_REGION_FW_INSTANCE4_ADDR_BEGIN; + *end = MVE_MEM_REGION_FW_INSTANCE4_ADDR_END; + break; + case MVX_FW_REGION_CORE_5: + *begin = MVE_MEM_REGION_FW_INSTANCE5_ADDR_BEGIN; + *end = MVE_MEM_REGION_FW_INSTANCE5_ADDR_END; + break; + case MVX_FW_REGION_CORE_6: + *begin = MVE_MEM_REGION_FW_INSTANCE6_ADDR_BEGIN; + *end = MVE_MEM_REGION_FW_INSTANCE6_ADDR_END; + break; + case MVX_FW_REGION_CORE_7: + *begin = MVE_MEM_REGION_FW_INSTANCE7_ADDR_BEGIN; + *end = MVE_MEM_REGION_FW_INSTANCE7_ADDR_END; + break; + case MVX_FW_REGION_PROTECTED: + *begin = MVE_MEM_REGION_PROTECTED_ADDR_BEGIN; + *end = MVE_MEM_REGION_PROTECTED_ADDR_END; + break; + case MVX_FW_REGION_FRAMEBUF: + *begin = MVE_MEM_REGION_FRAMEBUF_ADDR_BEGIN; + *end = MVE_MEM_REGION_FRAMEBUF_ADDR_END; + break; + case MVX_FW_REGION_MSG_HOST: + *begin = MVE_COMM_MSG_INQ_ADDR; + *end = MVE_COMM_MSG_INQ_ADDR + MVE_PAGE_SIZE; + break; + case MVX_FW_REGION_MSG_MVE: + *begin = MVE_COMM_MSG_OUTQ_ADDR; + *end = MVE_COMM_MSG_OUTQ_ADDR + MVE_PAGE_SIZE; + break; + case MVX_FW_REGION_BUF_IN_HOST: + *begin = MVE_COMM_BUF_INQ_ADDR; + *end = MVE_COMM_BUF_INQ_ADDR + MVE_PAGE_SIZE; + break; + case MVX_FW_REGION_BUF_IN_MVE: + *begin = MVE_COMM_BUF_INRQ_ADDR; + *end = MVE_COMM_BUF_INRQ_ADDR + MVE_PAGE_SIZE; + break; + case MVX_FW_REGION_BUF_OUT_HOST: + *begin = MVE_COMM_BUF_OUTQ_ADDR; + *end = MVE_COMM_BUF_OUTQ_ADDR + MVE_PAGE_SIZE; + break; + case MVX_FW_REGION_BUF_OUT_MVE: + *begin = MVE_COMM_BUF_OUTRQ_ADDR; + *end = MVE_COMM_BUF_OUTRQ_ADDR + MVE_PAGE_SIZE; + break; + case MVX_FW_REGION_RPC: + *begin = MVE_COMM_RPC_ADDR; + *end = MVE_COMM_RPC_ADDR + MVE_PAGE_SIZE; + break; + case MVX_FW_REGION_PRINT_RAM: + *begin = MVE_FW_PRINT_RAM_ADDR; + *end = MVE_FW_PRINT_RAM_ADDR + MVE_FW_PRINT_RAM_SIZE; + break; + default: + return -EINVAL; + } + + return 0; +} + +static void convert_buffer_general(struct mvx_fw *fw, enum mvx_direction dir, + struct mvx_fw_msg *msg, + struct mve_buffer_general *g) +{ + struct mvx_buffer *buf = (struct mvx_buffer *)g->header.host_handle; + + if (g->header.host_handle == MVX_FW_CODE_EOS) + return; + + WARN_ON(buf->dir != dir); + + msg->code = MVX_FW_CODE_BUFFER_GENERAL; + msg->buf = buf; + if (buf->dir == MVX_DIR_OUTPUT && mvx_is_frame(buf->format)) { + buf->general.header.buffer_size = g->header.buffer_size; + buf->general.header.config_size = g->header.config_size; + buf->general.header.type = g->header.type; + if (buf->general.header.type == + MVX_BUFFER_GENERAL_TYPE_AD_STATS && + g->header.config_size == sizeof(g->config.ad_stats)) { + buf->general.config.ad_stats.frame_averages = + g->config.ad_stats.frame_averages; + buf->general.config.ad_stats.thumbnail_width = + g->config.ad_stats.thumbnail_width; + buf->general.config.ad_stats.thumbnail_height = + g->config.ad_stats.thumbnail_height; + buf->general.config.ad_stats.ad_stats_flags = + g->config.ad_stats.ad_stats_flags; + } + } +} + +static void convert_buffer_frame(struct mvx_fw *fw, enum mvx_direction dir, + struct mvx_fw_msg *msg, + struct mve_buffer_frame *f) +{ + struct mvx_buffer *buf = (struct mvx_buffer *)f->host_handle; + + if (f->host_handle == MVX_FW_CODE_EOS) + return; + + WARN_ON(buf->dir != dir); + + msg->code = MVX_FW_CODE_BUFFER; + msg->buf = buf; + + if (dir == MVX_DIR_OUTPUT) { + unsigned int i; + + buf->width = f->visible_frame_width; + buf->height = f->visible_frame_height; + if (buf->width == 0 || buf->height == 0 || + (f->frame_flags & (MVE_BUFFER_FRAME_FLAG_TOP_PRESENT | + MVE_BUFFER_FRAME_FLAG_BOT_PRESENT)) == 0) + for (i = 0; i < buf->nplanes; i++) + (void)mvx_buffer_filled_set(buf, i, 0, 0); + + if (is_afbc(f->format) != false) { + struct mve_buffer_frame_afbc *afbc = &f->data.afbc; + + buf->crop_left = afbc->cropx; + buf->crop_top = afbc->cropy; + } + + if (f->frame_flags & MVE_BUFFER_FRAME_FLAG_ROTATION_90 || + f->frame_flags & MVE_BUFFER_FRAME_FLAG_ROTATION_270) { + struct mve_buffer_frame_planar *planar = + &f->data.planar; + struct mvx_buffer_plane *plane; + + for (i = 0; i < buf->nplanes; i++) { + plane = &buf->planes[i]; + plane->stride = planar->stride[i]; + } + } + } + + buf->user_data = f->user_data_tag; + buf->flags = 0; + if (f->frame_flags & MVE_BUFFER_FRAME_FLAG_EOS) + buf->flags |= MVX_BUFFER_EOS; + + if (f->frame_flags & MVE_BUFFER_FRAME_FLAG_REJECTED) + buf->flags |= MVX_BUFFER_REJECTED; + + if (f->frame_flags & MVE_BUFFER_FRAME_FLAG_CORRUPT) + buf->flags |= MVX_BUFFER_CORRUPT; + + if (f->frame_flags & MVE_BUFFER_FRAME_FLAG_DECODE_ONLY) + buf->flags |= MVX_BUFFER_DECODE_ONLY; + + if (f->frame_flags & (MVE_BUFFER_FRAME_FLAG_TOP_PRESENT | + MVE_BUFFER_FRAME_FLAG_BOT_PRESENT)) { + buf->flags |= MVX_BUFFER_FRAME_PRESENT; + } + + if (is_afbc(f->format) != false) { + struct mve_buffer_frame_afbc *afbc = &f->data.afbc; + + if (afbc->afbc_params & MVE_BUFFER_FRAME_AFBC_TILED_HEADER) + buf->flags |= MVX_BUFFER_AFBC_TILED_HEADERS; + + if (afbc->afbc_params & MVE_BUFFER_FRAME_AFBC_TILED_BODY) + buf->flags |= MVX_BUFFER_AFBC_TILED_BODY; + + if (afbc->afbc_params & MVE_BUFFER_FRAME_AFBC_32X8_SUPERBLOCK) + buf->flags |= MVX_BUFFER_AFBC_32X8_SUPERBLOCK; + } +} + +static void convert_buffer_bitstream(struct mvx_fw *fw, enum mvx_direction dir, + struct mvx_fw_msg *msg, + struct mve_buffer_bitstream *b) +{ + struct mvx_buffer *buf = (struct mvx_buffer *)b->host_handle; + + if (b->host_handle == MVX_FW_CODE_EOS) + return; + + WARN_ON(buf->dir != dir); + + msg->code = MVX_FW_CODE_BUFFER; + msg->buf = buf; + + if (dir == MVX_DIR_OUTPUT) + mvx_buffer_filled_set(buf, 0, b->bitstream_filled_len, + b->bitstream_offset); + + buf->user_data = b->user_data_tag; + buf->flags = 0; + + if (b->bitstream_flags & MVE_BUFFER_BITSTREAM_FLAG_EOS) + buf->flags |= MVX_BUFFER_EOS; + + if (b->bitstream_flags & MVE_BUFFER_BITSTREAM_FLAG_ENDOFFRAME || + b->bitstream_flags & MVE_BUFFER_BITSTREAM_FLAG_BSEOF) + buf->flags |= MVX_BUFFER_EOF; + + if (b->bitstream_flags & MVE_BUFFER_BITSTREAM_FLAG_CODECCONFIG) + buf->flags |= MVX_BUFFER_CODEC_CONFIG; + + if (b->bitstream_flags & MVE_BUFFER_BITSTREAM_FLAG_ENC_STATS) + buf->flags |= MVX_BUFFER_ENC_STATS; + + buf->frame_type = b->frame_type; + buf->src_transform = b->src_transform; + buf->bitstream_remaining_kb = b->bitstream_remaining_kb; +} + +static int convert_buffer_param(struct mvx_fw *fw, struct mvx_fw_msg *msg, + struct mve_buffer_param *p) +{ + switch (p->type) { + case MVE_BUFFER_PARAM_TYPE_DISPLAY_SIZE: { + struct mve_buffer_param_display_size *size = + &p->data.display_size; + struct mvx_fw_display_size *d = &msg->disp_size; + + msg->code = MVX_FW_CODE_DISPLAY_SIZE; + d->display_height = size->display_height; + d->display_width = size->display_width; + break; + } + case MVE_BUFFER_PARAM_TYPE_COLOUR_DESCRIPTION: { + struct mve_buffer_param_colour_description *c = + &p->data.colour_description; + struct mvx_fw_color_desc *d = &msg->color_desc; + + d->flags = 0; + + switch (c->range) { + case MVE_BUFFER_PARAM_COLOUR_RANGE_UNSPECIFIED: + d->range = MVX_FW_RANGE_UNSPECIFIED; + break; + case MVE_BUFFER_PARAM_COLOUR_RANGE_LIMITED: + d->range = MVX_FW_RANGE_LIMITED; + break; + case MVE_BUFFER_PARAM_COLOUR_RANGE_FULL: + d->range = MVX_FW_RANGE_FULL; + break; + default: + MVX_LOG_PRINT( + &mvx_log_if, MVX_LOG_WARNING, + "Unknown fw buffer param color desc range. range=%u.", + c->range); + return -EINVAL; + } + + /* Color primaries according to HEVC E.3.1. */ + switch (c->colour_primaries) { + case 1: + d->primaries = MVX_FW_PRIMARIES_BT709; + break; + case 4: + d->primaries = MVX_FW_PRIMARIES_BT470M; + break; + case 5: + d->primaries = MVX_FW_PRIMARIES_BT601_625; + break; + case 6: + d->primaries = MVX_FW_PRIMARIES_BT601_525; + break; + case 8: + d->primaries = MVX_FW_PRIMARIES_GENERIC_FILM; + break; + case 9: + d->primaries = MVX_FW_PRIMARIES_BT2020; + break; + default: + d->primaries = MVX_FW_PRIMARIES_UNSPECIFIED; + break; + } + + /* Transfer characteristics according to HEVC E.3.1. */ + switch (c->transfer_characteristics) { + case 1: + d->transfer = MVX_FW_TRANSFER_BT1361; + break; + case 4: + d->transfer = MVX_FW_TRANSFER_GAMMA22; + break; + case 5: + d->transfer = MVX_FW_TRANSFER_GAMMA28; + break; + case 6: + case 14: + case 15: + d->transfer = MVX_FW_TRANSFER_SMPTE170M; + break; + case 7: + d->transfer = MVX_FW_TRANSFER_SMPTE240M; + break; + case 8: + d->transfer = MVX_FW_TRANSFER_LINEAR; + break; + case 9: + case 10: + case 18: + d->transfer = MVX_FW_TRANSFER_HLG; + break; + case 11: + d->transfer = MVX_FW_TRANSFER_XVYCC; + break; + case 13: + d->transfer = MVX_FW_TRANSFER_SRGB; + break; + case 16: + d->transfer = MVX_FW_TRANSFER_ST2084; + break; + case 17: + d->transfer = MVX_FW_TRANSFER_ST428; + break; + default: + d->transfer = MVX_FW_TRANSFER_UNSPECIFIED; + break; + } + + /* Matrix coefficient according to HEVC E.3.1. */ + switch (c->matrix_coeff) { + case 1: + d->matrix = MVX_FW_MATRIX_BT709; + break; + case 5: + d->matrix = MVX_FW_MATRIX_BT470M; + break; + case 6: + d->matrix = MVX_FW_MATRIX_BT709; + break; + case 7: + d->matrix = MVX_FW_MATRIX_SMPTE240M; + break; + case 9: + d->matrix = MVX_FW_MATRIX_BT2020; + break; + case 10: + d->matrix = MVX_FW_MATRIX_BT2020Constant; + break; + default: + d->matrix = MVX_FW_MATRIX_UNSPECIFIED; + break; + } + + if (c->flags & + MVE_BUFFER_PARAM_COLOUR_FLAG_MASTERING_DISPLAY_DATA_VALID) { + d->flags |= MVX_FW_COLOR_DESC_DISPLAY_VALID; + + d->display.r.x = c->mastering_display_primaries_x[0]; + d->display.r.y = c->mastering_display_primaries_y[0]; + d->display.g.x = c->mastering_display_primaries_x[1]; + d->display.g.y = c->mastering_display_primaries_y[1]; + d->display.b.x = c->mastering_display_primaries_x[2]; + d->display.b.y = c->mastering_display_primaries_y[2]; + d->display.w.x = c->mastering_white_point_x; + d->display.w.y = c->mastering_white_point_y; + + d->display.luminance_min = + c->min_display_mastering_luminance; + d->display.luminance_max = + c->max_display_mastering_luminance; + } + + if (c->flags & + MVE_BUFFER_PARAM_COLOUR_FLAG_CONTENT_LIGHT_DATA_VALID) { + d->flags |= MVX_FW_COLOR_DESC_CONTENT_VALID; + + d->content.luminance_max = c->max_content_light_level; + d->content.luminance_average = + c->avg_content_light_level; + } + + msg->code = MVX_FW_CODE_COLOR_DESC; + break; + } + default: + MVX_LOG_PRINT(&mvx_log_if, MVX_LOG_INFO, + "Default buffer param. type=%d", p->type); + break; + } + + return 1; +} + +static int get_buffer(struct mvx_fw *fw, struct mve_comm_area_host *host, + struct mve_comm_area_mve *mve, enum mvx_direction dir, + struct mvx_fw_msg *msg, enum mvx_log_fwif_channel channel) +{ + unsigned int code; + union { + struct mve_buffer_frame frame; + struct mve_buffer_bitstream bitstream; + struct mve_buffer_param param; + struct mve_buffer_general general; + } fw_msg; + size_t size = sizeof(fw_msg); + int ret; + + ret = read_message(fw, host, mve, &code, &fw_msg, &size, channel); + if (ret <= 0) + return ret; + + switch (code) { + case MVE_BUFFER_CODE_FRAME: + convert_buffer_frame(fw, dir, msg, &fw_msg.frame); + break; + case MVE_BUFFER_CODE_BITSTREAM: + convert_buffer_bitstream(fw, dir, msg, &fw_msg.bitstream); + break; + case MVE_BUFFER_CODE_PARAM: + convert_buffer_param(fw, msg, &fw_msg.param); + break; + case MVE_BUFFER_CODE_GENERAL: + convert_buffer_general(fw, dir, msg, &fw_msg.general); + break; + default: + MVX_LOG_PRINT(&mvx_log_if, MVX_LOG_WARNING, + "Unknown fw buffer code. code=%u.", code); + break; + } + + return 1; +} + +static int get_message_v2(struct mvx_fw *fw, struct mvx_fw_msg *msg) +{ + unsigned int code; + union { + struct mve_request_job job; + struct mve_response_state_change state_change; + struct mve_response_error error; + struct mve_response_frame_alloc_parameters alloc_param; + struct mve_response_sequence_parameters seq_param; + struct mve_response_set_option_fail set_option_fail; + struct mve_buffer_param buffer_param; + struct mve_response_event event; + } fw_msg; + size_t size = sizeof(fw_msg); + int ret; + struct mvx_session *session = fw->session; + + ret = read_message(fw, fw->msg_host, fw->msg_mve, &code, &fw_msg, &size, + MVX_LOG_FWIF_CHANNEL_MESSAGE); + if (ret <= 0) + return ret; + + msg->code = MVX_FW_CODE_MAX; + + switch (code) { + case MVE_RESPONSE_CODE_SWITCHED_IN: + msg->code = MVX_FW_CODE_SWITCH_IN; + break; + case MVE_RESPONSE_CODE_SWITCHED_OUT: + msg->code = MVX_FW_CODE_SWITCH_OUT; + break; + case MVE_RESPONSE_CODE_SET_OPTION_CONFIRM: + msg->code = MVX_FW_CODE_SET_OPTION; + fw->msg_pending--; + break; + case MVE_RESPONSE_CODE_SET_OPTION_FAIL: { + MVX_LOG_PRINT(&mvx_log_if, MVX_LOG_WARNING, + "Firmware set option failed. index=%u, msg=%s.", + fw_msg.set_option_fail.index, + fw_msg.set_option_fail.message); + msg->code = MVX_FW_CODE_SET_OPTION; + fw->msg_pending--; + break; + } + case MVE_RESPONSE_CODE_JOB_DEQUEUED: + msg->code = MVX_FW_CODE_JOB; + break; + case MVE_RESPONSE_CODE_INPUT: + ret = get_buffer(fw, fw->buf_in_host, fw->buf_in_mve, + MVX_DIR_INPUT, msg, + MVX_LOG_FWIF_CHANNEL_INPUT_BUFFER); + break; + case MVE_RESPONSE_CODE_OUTPUT: + ret = get_buffer(fw, fw->buf_out_host, fw->buf_out_mve, + MVX_DIR_OUTPUT, msg, + MVX_LOG_FWIF_CHANNEL_OUTPUT_BUFFER); + break; + case MVE_BUFFER_CODE_PARAM: + ret = convert_buffer_param(fw, msg, &fw_msg.buffer_param); + break; + case MVE_RESPONSE_CODE_INPUT_FLUSHED: + msg->code = MVX_FW_CODE_FLUSH; + msg->flush.dir = MVX_DIR_INPUT; + fw->msg_pending--; + break; + case MVE_RESPONSE_CODE_OUTPUT_FLUSHED: + msg->code = MVX_FW_CODE_FLUSH; + msg->flush.dir = MVX_DIR_OUTPUT; + fw->msg_pending--; + break; + case MVE_RESPONSE_CODE_PONG: + msg->code = MVX_FW_CODE_PONG; + break; + case MVE_RESPONSE_CODE_ERROR: { + msg->code = MVX_FW_CODE_ERROR; + + switch (fw_msg.error.error_code) { + case MVE_ERROR_ABORT: + msg->error.error_code = MVX_FW_ERROR_ABORT; + break; + case MVE_ERROR_OUT_OF_MEMORY: + msg->error.error_code = MVX_FW_ERROR_OUT_OF_MEMORY; + break; + case MVE_ERROR_ASSERT: + msg->error.error_code = MVX_FW_ERROR_ASSERT; + break; + case MVE_ERROR_UNSUPPORTED: + msg->error.error_code = MVX_FW_ERROR_UNSUPPORTED; + break; + case MVE_ERROR_INVALID_BUFFER: + msg->error.error_code = MVX_FW_ERROR_INVALID_BUFFER; + break; + case MVE_ERROR_INVALID_STATE: + msg->error.error_code = MVX_FW_ERROR_INVALID_STATE; + break; + case MVE_ERROR_WATCHDOG: + msg->error.error_code = MVX_FW_ERROR_WATCHDOG; + break; + default: + MVX_LOG_PRINT(&mvx_log_if, MVX_LOG_WARNING, + "Unsupported fw error code. code=%u.", + fw_msg.error.error_code); + break; + } + + strscpy(msg->error.message, fw_msg.error.message, + min(sizeof(msg->error.message), + sizeof(fw_msg.error.message))); + + break; + } + case MVE_RESPONSE_CODE_STATE_CHANGE: { + msg->code = MVX_FW_CODE_STATE_CHANGE; + + if (fw_msg.state_change.new_state == MVE_STATE_STOPPED) + msg->state = MVX_FW_STATE_STOPPED; + else + msg->state = MVX_FW_STATE_RUNNING; + + fw->msg_pending--; + break; + } + case MVE_RESPONSE_CODE_DUMP: + msg->code = MVX_FW_CODE_DUMP; + fw->msg_pending--; + break; + case MVE_RESPONSE_CODE_DEBUG: + msg->code = MVX_FW_CODE_DEBUG; + fw->msg_pending--; + break; + case MVE_RESPONSE_CODE_IDLE: + msg->code = MVX_FW_CODE_IDLE; + break; + case MVE_RESPONSE_CODE_FRAME_ALLOC_PARAM: + msg->code = MVX_FW_CODE_ALLOC_PARAM; + msg->alloc_param.width = + fw_msg.alloc_param.planar_alloc_frame_width; + msg->alloc_param.height = + fw_msg.alloc_param.planar_alloc_frame_height; + msg->alloc_param.afbc_alloc_bytes = + fw_msg.alloc_param.afbc_alloc_bytes; + msg->alloc_param.afbc_width = + fw_msg.alloc_param.afbc_width_in_superblocks; + + break; + case MVE_RESPONSE_CODE_SEQUENCE_PARAMETERS: + msg->code = MVX_FW_CODE_SEQ_PARAM; + msg->seq_param.planar.buffers_min = + fw_msg.seq_param.num_buffers_planar; + msg->seq_param.afbc.buffers_min = + fw_msg.seq_param.num_buffers_afbc; + session->port[MVX_DIR_OUTPUT].interlaced = + fw_msg.seq_param.interlace; + break; + case MVE_RESPONSE_CODE_EVENT: + MVX_LOG_PRINT(&mvx_log_if, MVX_LOG_INFO, "EVENT code=%d. %s", + fw_msg.event.event_code, + (MVE_EVENT_ERROR_STREAM_CORRUPT == + fw_msg.event.event_code || + MVE_EVENT_ERROR_STREAM_NOT_SUPPORTED == + fw_msg.event.event_code) ? + fw_msg.event.event_data.message : + ""); + break; + case MVE_RESPONSE_CODE_REF_FRAME_UNUSED: + break; + default: + MVX_LOG_PRINT(&mvx_log_if, MVX_LOG_WARNING, + "Unknown fw message code. code=%u, size=%u.", + code, size); + msg->code = MVX_FW_CODE_UNKNOWN; + break; + } + + return ret; +} + +static int put_buffer_general(struct mvx_fw *fw, + struct mve_comm_area_host *host, + struct mve_comm_area_mve *mve, + struct mvx_fw_msg *msg, + enum mvx_log_fwif_channel channel) +{ + int ret = 0; + struct mve_buffer_general g = { 0 }; + struct mvx_buffer *buf = msg->buf; + + g.header.host_handle = (ptrdiff_t)buf; + g.header.user_data_tag = buf->user_data; + g.header.buffer_ptr = mvx_buffer_va(buf, 0); + g.header.buffer_size = buf->general.header.buffer_size; + g.header.config_size = buf->general.header.config_size; + g.header.type = buf->general.header.type; + + if ((g.header.type == MVE_BUFFER_GENERAL_TYPE_BLOCK_CONFIGS && + g.header.config_size == sizeof(g.config.block_configs)) || + (g.header.type == MVE_BUFFER_GENERAL_TYPE_AD_STATS && + g.header.config_size == sizeof(g.config.ad_stats))) { + memcpy(&g.config, &buf->general.config, g.header.config_size); + ret = write_message(fw, host, mve, MVE_BUFFER_CODE_GENERAL, &g, + sizeof(struct mve_buffer_general_hdr) + + g.header.config_size, + channel); + } + + return ret; +} + +static int put_buffer_frame(struct mvx_fw *fw, struct mve_comm_area_host *host, + struct mve_comm_area_mve *mve, + struct mvx_fw_msg *msg, + enum mvx_log_fwif_channel channel) +{ + struct mve_buffer_frame f = { 0 }; + struct mvx_buffer *buf = msg->buf; + struct mvx_session *session = fw->session; + int ret; + int stride_shift = 0, stride = 0; + unsigned int strideRot[MVX_BUFFER_NPLANES]; + int max_height; + uint32_t scaling_shift = 0; + uint32_t rotation = + (buf->flags & MVX_BUFFER_FRAME_FLAG_ROTATION_MASK) >> 12; + scaling_shift = (buf->flags & MVX_BUFFER_FRAME_FLAG_SCALING_MASK) >> 14; + f.host_handle = (ptrdiff_t)buf; + f.user_data_tag = buf->user_data; + memset(strideRot, 0, sizeof(strideRot)); + if (buf->dir == MVX_DIR_INPUT) { + f.visible_frame_width = + (session->visible_width > 0) && + (session->visible_width <= buf->width) ? + session->visible_width : + buf->width; + f.visible_frame_height = + (session->visible_height > + 0) && (session->visible_height <= buf->height) ? + session->visible_height : + buf->height; + + if (buf->flags & MVX_BUFFER_EOS) + f.frame_flags |= MVE_BUFFER_FRAME_FLAG_EOS; + + if (buf->planes[0].filled != 0) + f.frame_flags |= MVE_BUFFER_FRAME_FLAG_TOP_PRESENT; + + if (buf->flags & MVX_BUFFER_FRAME_FLAG_FORCE_IDR) + f.frame_flags |= MVE_BUFFER_FRAME_FLAG_FORCE_IDR; + } + + if (buf->dir == MVX_DIR_OUTPUT && + (session->dsl_ratio.hor != 1 || session->dsl_ratio.ver != 1)) { + f.frame_flags |= ((session->dsl_ratio.hor - 1) << 24 | + (session->dsl_ratio.ver - 1) << 17); + } + if (buf->flags & MVX_BUFFER_INTERLACE) + f.frame_flags |= MVE_BUFFER_FRAME_FLAG_INTERLACE; + + f.frame_flags |= (buf->flags & MVX_BUFFER_FRAME_FLAG_ROTATION_MASK) >> + 8; + f.frame_flags |= (buf->flags & MVX_BUFFER_FRAME_FLAG_MIRROR_MASK) >> 8; + f.frame_flags |= (buf->flags & MVX_BUFFER_FRAME_FLAG_SCALING_MASK) >> 8; + f.frame_flags |= (buf->flags & MVX_BUFFER_FRAME_FLAG_GOP_REST) ? + MVE_BUFFER_FRAME_FLAG_RESET_GOP : + 0; + f.frame_flags |= (buf->flags & MVX_BUFFER_FRAME_FLAG_LTR_REST) ? + MVE_BUFFER_FRAME_FLAG_RESET_LTR_PEROID : + 0; + if (buf->dir == MVX_DIR_OUTPUT && (rotation == 1 || rotation == 3)) { + uint8_t nplanes = 0; + unsigned int stride90[MVX_BUFFER_NPLANES][2]; + int i; + + memset(strideRot, 0, sizeof(strideRot)); + get_stride90(buf->format, &nplanes, stride90); + for (i = 0; i < buf->nplanes; i++) { + const unsigned int stride_align = 1; + unsigned int tmp = + DIV_ROUND_UP(buf->height * stride90[i][0], 2); + strideRot[i] = round_up(tmp, stride_align); + } + } + + switch (buf->format) { + case MVX_FORMAT_YUV420_AFBC_8: + f.format = MVE_FORMAT_YUV420_AFBC_8; + break; + case MVX_FORMAT_YUV420_AFBC_10: + f.format = MVE_FORMAT_YUV420_AFBC_10; + break; + case MVX_FORMAT_YUV422_AFBC_8: + f.format = MVE_FORMAT_YUV422_AFBC_8; + break; + case MVX_FORMAT_YUV422_AFBC_10: + f.format = MVE_FORMAT_YUV422_AFBC_10; + break; + case MVX_FORMAT_YUV420_I420: + f.format = MVE_FORMAT_YUV420_I420; + break; + case MVX_FORMAT_YUV420_NV12: + f.format = MVE_FORMAT_YUV420_NV12; + break; + case MVX_FORMAT_YUV420_NV21: + f.format = MVE_FORMAT_YUV420_NV21; + break; + case MVX_FORMAT_YUV420_P010: + f.format = MVE_FORMAT_YUV420_P010; + break; + case MVX_FORMAT_YUV420_Y0L2: + f.format = MVE_FORMAT_YUV420_Y0L2; + break; + case MVX_FORMAT_YUV420_AQB1: + f.format = MVE_FORMAT_YUV420_AQB1; + break; + case MVX_FORMAT_YUV422_YUY2: + f.format = MVE_FORMAT_YUV422_YUY2; + break; + case MVX_FORMAT_YUV422_UYVY: + f.format = MVE_FORMAT_YUV422_UYVY; + break; + case MVX_FORMAT_YUV422_Y210: + f.format = MVE_FORMAT_YUV422_Y210; + break; + case MVX_FORMAT_RGBA_8888: + f.format = MVE_FORMAT_RGBA_8888; + break; + case MVX_FORMAT_BGRA_8888: + f.format = MVE_FORMAT_BGRA_8888; + break; + case MVX_FORMAT_ARGB_8888: + f.format = MVE_FORMAT_ARGB_8888; + break; + case MVX_FORMAT_ABGR_8888: + f.format = MVE_FORMAT_ABGR_8888; + break; + case MVX_FORMAT_RGB_888: + f.format = MVE_FORMAT_RGB_888; + break; + case MVX_FORMAT_BGR_888: + f.format = MVE_FORMAT_BGR_888; + break; + case MVX_FORMAT_RGB_888_3P: + f.format = MVE_FORMAT_RGB_3P; + break; + case MVX_FORMAT_ARGB_1555: + f.format = MVE_FORMAT_ARGB_1555; + break; + case MVX_FORMAT_ARGB_4444: + f.format = MVE_FORMAT_ARGB_4444; + break; + case MVX_FORMAT_RGB_565: + f.format = MVE_FORMAT_RGB_565; + break; + case MVX_FORMAT_Y: + f.format = MVE_FORMAT_Y; + break; + case MVX_FORMAT_Y_10: + f.format = MVE_FORMAT_Y_10; + break; + case MVX_FORMAT_YUV444: + f.format = MVE_FORMAT_YUV444; + break; + case MVX_FORMAT_YUV444_10: + f.format = MVE_FORMAT_YUV444_10; + break; + case MVX_FORMAT_YUV420_2P_10: + f.format = MVE_FORMAT_YUV420_2P_10; + break; + case MVX_FORMAT_YUV422_1P_10: + f.format = MVE_FORMAT_YUV422_1P_10; + break; + case MVX_FORMAT_YUV420_I420_10: + f.format = MVE_FORMAT_YUV420_I420_10; + break; + default: + MVX_LOG_PRINT(&mvx_log_if, MVX_LOG_WARNING, + "Unsupported frame format. format=%u.", + buf->format); + return -EINVAL; + } + + if (is_afbc(f.format) == false) { + struct mve_buffer_frame_planar *planar = &f.data.planar; + int i; + + if (f.frame_flags & MVE_BUFFER_FRAME_FLAG_INTERLACE) { + max_height = buf->width; + stride_shift = 1; + max_height >>= 1; + } + + for (i = 0; i < buf->nplanes; i++) { + struct mvx_buffer_plane *plane = &buf->planes[i]; + + if (plane->stride > 0) + planar->plane_top[i] = mvx_buffer_va(buf, i); + + if (f.frame_flags & MVE_BUFFER_FRAME_FLAG_INTERLACE) { + // interlace mode + stride = plane->stride; + //stride_shift = 1; + if (stride_shift) { + stride = round_up(stride, 2) + << stride_shift; + } + planar->stride[i] = stride; + planar->plane_bot[i] = + planar->plane_top[i] + + (round_up(stride, 2) >> stride_shift); + if (buf->dir == MVX_DIR_OUTPUT && + (rotation == 1 || rotation == 3)) { + planar->stride[i] = strideRot[i]; + } + } else { + // frame mode + if (buf->dir == MVX_DIR_OUTPUT && + (rotation == 1 || rotation == 3)) { + planar->stride[i] = strideRot[i]; + } else { + planar->stride[i] = plane->stride; + } + planar->plane_bot[i] = 0; + } + } + + if (buf->dir == MVX_DIR_OUTPUT && + (rotation == 1 || rotation == 3)) { + planar->max_frame_width = buf->height; + planar->max_frame_height = buf->width; + } else { + planar->max_frame_width = buf->width; + planar->max_frame_height = buf->height; + } + f.mini_frame_y_start = (uint16_t)(buf->offset >> 16); + f.mini_frame_y_end = (uint16_t)(buf->offset & 0xFFFF); + } else { + struct mve_buffer_frame_afbc *afbc = &f.data.afbc; + + afbc->afbc_width_in_superblocks[0] = buf->planes[0].afbc_width; + afbc->plane[0] = mvx_buffer_va(buf, 0); + + if (f.frame_flags & MVE_BUFFER_FRAME_FLAG_INTERLACE) { + afbc->alloc_bytes[0] = + ALIGN((buf->planes[0].filled / 2), 32); + afbc->alloc_bytes[1] = + buf->planes[0].filled - afbc->alloc_bytes[0]; + afbc->plane[1] = afbc->plane[0] + afbc->alloc_bytes[0]; + afbc->afbc_width_in_superblocks[1] = + afbc->afbc_width_in_superblocks[0]; + } else { + afbc->alloc_bytes[0] = buf->planes[0].filled; + } + + afbc->afbc_params = 0; + if (buf->flags & MVX_BUFFER_AFBC_TILED_HEADERS) + afbc->afbc_params |= MVE_BUFFER_FRAME_AFBC_TILED_HEADER; + + if (buf->flags & MVX_BUFFER_AFBC_TILED_BODY) + afbc->afbc_params |= MVE_BUFFER_FRAME_AFBC_TILED_BODY; + + if (buf->flags & MVX_BUFFER_AFBC_32X8_SUPERBLOCK) + afbc->afbc_params |= + MVE_BUFFER_FRAME_AFBC_32X8_SUPERBLOCK; + } + + if (buf->flags & MVX_BUFFER_FRAME_FLAG_OSD_1) { + f.visible_frame_width = f.data.planar.max_frame_width = + session->osd_info.width_osd[0]; + f.visible_frame_height = f.data.planar.max_frame_height = + session->osd_info.height_osd[0]; + f.data.planar.stride[0] = session->osd_info.width_osd[0] * 2; + f.data.planar.stride[1] = f.data.planar.stride[2] = 0; + f.data.planar.plane_top[1] = f.data.planar.plane_top[2] = 0; + f.frame_flags_ext |= OSD0_TAG; + switch (session->osd_info.inputFormat_osd[0]) { + case MVX_FORMAT_ARGB_1555: + f.format = MVE_FORMAT_ARGB_1555; + break; + case MVX_FORMAT_ARGB_4444: + f.format = MVE_FORMAT_ARGB_4444; + break; + case MVX_FORMAT_RGB_565: + f.format = MVE_FORMAT_RGB_565; + break; + default: + f.format = MVE_FORMAT_ARGB_1555; + break; + } + } else if (buf->flags & MVX_BUFFER_FRAME_FLAG_OSD_2) { + f.visible_frame_width = f.data.planar.max_frame_width = + session->osd_info.width_osd[1]; + f.visible_frame_height = f.data.planar.max_frame_height = + session->osd_info.height_osd[1]; + f.data.planar.stride[0] = session->osd_info.width_osd[1] * 2; + f.data.planar.stride[1] = f.data.planar.stride[2] = 0; + f.data.planar.plane_top[1] = f.data.planar.plane_top[2] = 0; + f.frame_flags_ext |= OSD1_TAG; + switch (session->osd_info.inputFormat_osd[1]) { + case MVX_FORMAT_ARGB_1555: + f.format = MVE_FORMAT_ARGB_1555; + break; + case MVX_FORMAT_ARGB_4444: + f.format = MVE_FORMAT_ARGB_4444; + break; + case MVX_FORMAT_RGB_565: + f.format = MVE_FORMAT_RGB_565; + break; + default: + f.format = MVE_FORMAT_ARGB_1555; + break; + } + } + + ret = write_message(fw, host, mve, MVE_BUFFER_CODE_FRAME, &f, sizeof(f), + channel); + + return ret; +} + +static int put_buffer_bitstream(struct mvx_fw *fw, + struct mve_comm_area_host *host, + struct mve_comm_area_mve *mve, + struct mvx_fw_msg *msg, + enum mvx_log_fwif_channel channel) +{ + struct mve_buffer_bitstream b = { 0 }; + struct mvx_buffer *buf = msg->buf; + int ret; + + if (buf->dir == MVX_DIR_INPUT) + b.bitstream_filled_len = buf->planes[0].filled; + + b.host_handle = (ptrdiff_t)buf; + b.user_data_tag = buf->user_data; + b.bitstream_alloc_bytes = mvx_buffer_size(buf, 0); + b.bitstream_buf_addr = mvx_buffer_va(buf, 0); + + if (buf->flags & MVX_BUFFER_EOS) + b.bitstream_flags |= MVE_BUFFER_BITSTREAM_FLAG_EOS; + + if (buf->flags & MVX_BUFFER_EOF) { + b.bitstream_flags |= MVE_BUFFER_BITSTREAM_FLAG_ENDOFFRAME; + b.bitstream_flags |= MVE_BUFFER_BITSTREAM_FLAG_BSEOF; + } + if (buf->flags & MVX_BUFFER_END_OF_SUB_FRAME) + b.bitstream_flags |= MVE_BUFFER_BITSTREAM_FLAG_ENDOFSUBFRAME; + + if (buf->flags & MVX_BUFFER_CODEC_CONFIG) { + b.bitstream_flags |= MVE_BUFFER_BITSTREAM_FLAG_CODECCONFIG; + b.bitstream_flags |= MVE_BUFFER_BITSTREAM_FLAG_ENDOFSUBFRAME; + } + + ret = write_message(fw, host, mve, MVE_BUFFER_CODE_BITSTREAM, &b, + sizeof(b), channel); + + return ret; +} + +static int to_mve_nalu_format(enum mvx_nalu_format fmt, int *mve_val) +{ + switch (fmt) { + case MVX_NALU_FORMAT_START_CODES: + *mve_val = MVE_OPT_NALU_FORMAT_START_CODES; + break; + case MVX_NALU_FORMAT_ONE_NALU_PER_BUFFER: + *mve_val = MVE_OPT_NALU_FORMAT_ONE_NALU_PER_BUFFER; + break; + case MVX_NALU_FORMAT_ONE_BYTE_LENGTH_FIELD: + *mve_val = MVE_OPT_NALU_FORMAT_ONE_BYTE_LENGTH_FIELD; + break; + case MVX_NALU_FORMAT_TWO_BYTE_LENGTH_FIELD: + *mve_val = MVE_OPT_NALU_FORMAT_TWO_BYTE_LENGTH_FIELD; + break; + case MVX_NALU_FORMAT_FOUR_BYTE_LENGTH_FIELD: + *mve_val = MVE_OPT_NALU_FORMAT_FOUR_BYTE_LENGTH_FIELD; + break; + default: + return -EINVAL; + } + + return 0; +} + +int mvx_fw_to_mve_profile_v2(unsigned int mvx_profile, uint16_t *mve_profile) +{ + switch (mvx_profile) { + case MVX_PROFILE_H264_BASELINE: + *mve_profile = MVE_OPT_PROFILE_H264_BASELINE; + break; + case MVX_PROFILE_H264_MAIN: + *mve_profile = MVE_OPT_PROFILE_H264_MAIN; + break; + case MVX_PROFILE_H264_HIGH: + *mve_profile = MVE_OPT_PROFILE_H264_HIGH; + break; + case MVX_PROFILE_H265_MAIN: + *mve_profile = MVE_OPT_PROFILE_H265_MAIN; + break; + case MVX_PROFILE_H265_MAIN_STILL: + *mve_profile = MVE_OPT_PROFILE_H265_MAIN_STILL; + break; + case MVX_PROFILE_H265_MAIN_INTRA: + *mve_profile = MVE_OPT_PROFILE_H265_MAIN_INTRA; + break; + case MVX_PROFILE_H265_MAIN_10: + *mve_profile = MVE_OPT_PROFILE_H265_MAIN_10; + break; + case MVX_PROFILE_VC1_SIMPLE: + *mve_profile = MVE_OPT_PROFILE_VC1_SIMPLE; + break; + case MVX_PROFILE_VC1_MAIN: + *mve_profile = MVE_OPT_PROFILE_VC1_MAIN; + break; + case MVX_PROFILE_VC1_ADVANCED: + *mve_profile = MVE_OPT_PROFILE_VC1_ADVANCED; + break; + case MVX_PROFILE_VP8_MAIN: + *mve_profile = MVE_OPT_PROFILE_VP8_MAIN; + break; + default: + return -EINVAL; + } + + return 0; +} + +int mvx_fw_to_mve_level_v2(unsigned int mvx_level, uint16_t *mve_level) +{ + switch (mvx_level) { + case MVX_LEVEL_NONE: + *mve_level = 0; + break; + case MVX_LEVEL_H264_1: + *mve_level = MVE_OPT_LEVEL_H264_1; + break; + case MVX_LEVEL_H264_1b: + *mve_level = MVE_OPT_LEVEL_H264_1b; + break; + case MVX_LEVEL_H264_11: + *mve_level = MVE_OPT_LEVEL_H264_11; + break; + case MVX_LEVEL_H264_12: + *mve_level = MVE_OPT_LEVEL_H264_12; + break; + case MVX_LEVEL_H264_13: + *mve_level = MVE_OPT_LEVEL_H264_13; + break; + case MVX_LEVEL_H264_2: + *mve_level = MVE_OPT_LEVEL_H264_2; + break; + case MVX_LEVEL_H264_21: + *mve_level = MVE_OPT_LEVEL_H264_21; + break; + case MVX_LEVEL_H264_22: + *mve_level = MVE_OPT_LEVEL_H264_22; + break; + case MVX_LEVEL_H264_3: + *mve_level = MVE_OPT_LEVEL_H264_3; + break; + case MVX_LEVEL_H264_31: + *mve_level = MVE_OPT_LEVEL_H264_31; + break; + case MVX_LEVEL_H264_32: + *mve_level = MVE_OPT_LEVEL_H264_32; + break; + case MVX_LEVEL_H264_4: + *mve_level = MVE_OPT_LEVEL_H264_4; + break; + case MVX_LEVEL_H264_41: + *mve_level = MVE_OPT_LEVEL_H264_41; + break; + case MVX_LEVEL_H264_42: + *mve_level = MVE_OPT_LEVEL_H264_42; + break; + case MVX_LEVEL_H264_5: + *mve_level = MVE_OPT_LEVEL_H264_5; + break; + case MVX_LEVEL_H264_51: + *mve_level = MVE_OPT_LEVEL_H264_51; + break; + + /** + * Levels supported by the HW but not by V4L2 controls API. + * + * case MVX_LEVEL_H264_52: + * mve_level = MVE_OPT_LEVEL_H264_52; + * break; + * case MVX_LEVEL_H264_6: + * mve_level = MVE_OPT_LEVEL_H264_6; + * break; + * case MVX_LEVEL_H264_61: + * mve_level = MVE_OPT_LEVEL_H264_61; + * break; + * case MVX_LEVEL_H264_62: + * mve_level = MVE_OPT_LEVEL_H264_62; + * break; + */ + case MVX_LEVEL_H265_MAIN_1: + *mve_level = MVE_OPT_LEVEL_H265_MAIN_TIER_1; + break; + case MVX_LEVEL_H265_HIGH_1: + *mve_level = MVE_OPT_LEVEL_H265_HIGH_TIER_1; + break; + case MVX_LEVEL_H265_MAIN_2: + *mve_level = MVE_OPT_LEVEL_H265_MAIN_TIER_2; + break; + case MVX_LEVEL_H265_HIGH_2: + *mve_level = MVE_OPT_LEVEL_H265_HIGH_TIER_2; + break; + case MVX_LEVEL_H265_MAIN_21: + *mve_level = MVE_OPT_LEVEL_H265_MAIN_TIER_21; + break; + case MVX_LEVEL_H265_HIGH_21: + *mve_level = MVE_OPT_LEVEL_H265_HIGH_TIER_21; + break; + case MVX_LEVEL_H265_MAIN_3: + *mve_level = MVE_OPT_LEVEL_H265_MAIN_TIER_3; + break; + case MVX_LEVEL_H265_HIGH_3: + *mve_level = MVE_OPT_LEVEL_H265_HIGH_TIER_3; + break; + case MVX_LEVEL_H265_MAIN_31: + *mve_level = MVE_OPT_LEVEL_H265_MAIN_TIER_31; + break; + case MVX_LEVEL_H265_HIGH_31: + *mve_level = MVE_OPT_LEVEL_H265_HIGH_TIER_31; + break; + case MVX_LEVEL_H265_MAIN_4: + *mve_level = MVE_OPT_LEVEL_H265_MAIN_TIER_4; + break; + case MVX_LEVEL_H265_HIGH_4: + *mve_level = MVE_OPT_LEVEL_H265_HIGH_TIER_4; + break; + case MVX_LEVEL_H265_MAIN_41: + *mve_level = MVE_OPT_LEVEL_H265_MAIN_TIER_41; + break; + case MVX_LEVEL_H265_HIGH_41: + *mve_level = MVE_OPT_LEVEL_H265_HIGH_TIER_41; + break; + case MVX_LEVEL_H265_MAIN_5: + *mve_level = MVE_OPT_LEVEL_H265_MAIN_TIER_5; + break; + case MVX_LEVEL_H265_HIGH_5: + *mve_level = MVE_OPT_LEVEL_H265_HIGH_TIER_5; + break; + case MVX_LEVEL_H265_MAIN_51: + *mve_level = MVE_OPT_LEVEL_H265_MAIN_TIER_51; + break; + case MVX_LEVEL_H265_HIGH_51: + *mve_level = MVE_OPT_LEVEL_H265_HIGH_TIER_51; + break; + case MVX_LEVEL_H265_MAIN_52: + *mve_level = MVE_OPT_LEVEL_H265_MAIN_TIER_52; + break; + case MVX_LEVEL_H265_HIGH_52: + *mve_level = MVE_OPT_LEVEL_H265_HIGH_TIER_52; + break; + case MVX_LEVEL_H265_MAIN_6: + *mve_level = MVE_OPT_LEVEL_H265_MAIN_TIER_6; + break; + case MVX_LEVEL_H265_HIGH_6: + *mve_level = MVE_OPT_LEVEL_H265_HIGH_TIER_6; + break; + case MVX_LEVEL_H265_MAIN_61: + *mve_level = MVE_OPT_LEVEL_H265_MAIN_TIER_61; + break; + case MVX_LEVEL_H265_HIGH_61: + *mve_level = MVE_OPT_LEVEL_H265_HIGH_TIER_61; + break; + case MVX_LEVEL_H265_MAIN_62: + *mve_level = MVE_OPT_LEVEL_H265_MAIN_TIER_62; + break; + case MVX_LEVEL_H265_HIGH_62: + *mve_level = MVE_OPT_LEVEL_H265_HIGH_TIER_62; + break; + default: + return -EINVAL; + } + + return 0; +} + +static int to_mve_gop_type(enum mvx_gop_type gop, unsigned int *mve_arg) +{ + switch (gop) { + case MVX_GOP_TYPE_BIDIRECTIONAL: + *mve_arg = MVE_OPT_GOP_TYPE_BIDIRECTIONAL; + break; + case MVX_GOP_TYPE_LOW_DELAY: + *mve_arg = MVE_OPT_GOP_TYPE_LOW_DELAY; + break; + case MVX_GOP_TYPE_PYRAMID: + *mve_arg = MVE_OPT_GOP_TYPE_PYRAMID; + break; + case MVX_GOP_TYPE_SVCT3: + *mve_arg = MVE_OPT_GOP_TYPE_SVCT3; + break; + case MVX_GOP_TYPE_GDR: + *mve_arg = MVE_OPT_GOP_TYPE_GDR; + break; + default: + return -EINVAL; + } + + return 0; +} + +static int to_mve_h264_cabac(enum mvx_entropy_mode entropy_mode, + unsigned int *mve_arg) +{ + switch (entropy_mode) { + case MVX_ENTROPY_MODE_CABAC: + *mve_arg = 1; + break; + case MVX_ENTROPY_MODE_CAVLC: + *mve_arg = 0; + break; + default: + return -EINVAL; + } + + return 0; +} + +static int to_mve_vp9_prob_update(enum mvx_vp9_prob_update prob_update, + unsigned int *mve_arg) +{ + switch (prob_update) { + case MVX_VP9_PROB_UPDATE_DISABLED: + *mve_arg = MVE_OPT_VP9_PROB_UPDATE_DISABLED; + break; + case MVX_VP9_PROB_UPDATE_IMPLICIT: + *mve_arg = MVE_OPT_VP9_PROB_UPDATE_IMPLICIT; + break; + case MVX_VP9_PROB_UPDATE_EXPLICIT: + *mve_arg = MVE_OPT_VP9_PROB_UPDATE_EXPLICIT; + break; + default: + return -EINVAL; + } + + return 0; +} + +static int put_fw_opt(struct mvx_fw *fw, struct mve_request_set_option *opt, + size_t size) +{ + int ret; + + ret = write_message(fw, fw->msg_host, fw->msg_mve, + MVE_REQUEST_CODE_SET_OPTION, opt, + offsetof(typeof(*opt), data) + size, + MVX_LOG_FWIF_CHANNEL_MESSAGE); + + if (ret == 0) + fw->msg_pending++; + + return ret; +} + +static int put_fw_buf_param(struct mvx_fw *fw, struct mve_buffer_param *param, + size_t size) +{ + return write_message(fw, fw->buf_in_host, fw->buf_in_mve, + MVE_BUFFER_CODE_PARAM, param, + offsetof(typeof(*param), data) + size, + MVX_LOG_FWIF_CHANNEL_MESSAGE); +} + +static int put_message_v2(struct mvx_fw *fw, struct mvx_fw_msg *msg) +{ + int ret = 0; + struct mve_request_set_option opt; + struct mve_buffer_param param; + struct mve_request_job job; + + memset(¶m, 0, sizeof(struct mve_buffer_param)); + memset(&opt, 0, sizeof(struct mve_request_set_option)); + memset(&job, 0, sizeof(struct mve_request_job)); + + switch (msg->code) { + case MVX_FW_CODE_STATE_CHANGE: { + unsigned int code = msg->state == MVX_FW_STATE_STOPPED ? + MVE_REQUEST_CODE_STOP : + MVE_REQUEST_CODE_GO; + + ret = write_message(fw, fw->msg_host, fw->msg_mve, code, NULL, + 0, MVX_LOG_FWIF_CHANNEL_MESSAGE); + if (ret == 0) + fw->msg_pending++; + + break; + } + case MVX_FW_CODE_JOB: { + job.cores = msg->job.cores; + job.frames = msg->job.frames; + job.flags = 0; + + ret = write_message(fw, fw->msg_host, fw->msg_mve, + MVE_REQUEST_CODE_JOB, &job, sizeof(job), + MVX_LOG_FWIF_CHANNEL_MESSAGE); + break; + } + case MVX_FW_CODE_SWITCH_OUT: { + ret = write_message(fw, fw->msg_host, fw->msg_mve, + MVE_REQUEST_CODE_SWITCH, NULL, 0, + MVX_LOG_FWIF_CHANNEL_MESSAGE); + break; + } + case MVX_FW_CODE_PING: { + ret = write_message(fw, fw->msg_host, fw->msg_mve, + MVE_REQUEST_CODE_PING, NULL, 0, + MVX_LOG_FWIF_CHANNEL_MESSAGE); + break; + } + case MVX_FW_CODE_SET_OPTION: { + switch (msg->set_option.code) { + case MVX_FW_SET_FRAME_RATE: { + param.type = MVE_BUFFER_PARAM_TYPE_FRAME_RATE; + param.data.arg = msg->set_option.frame_rate; + ret = put_fw_buf_param(fw, ¶m, + sizeof(param.data.arg)); + break; + } + case MVX_FW_SET_TARGET_BITRATE: { + param.type = MVE_BUFFER_PARAM_TYPE_RATE_CONTROL; + if (msg->set_option.target_bitrate == 0) { + param.data.rate_control.rate_control_mode = + MVE_OPT_RATE_CONTROL_MODE_OFF; + param.data.rate_control.target_bitrate = 0; + } else { + param.data.rate_control.rate_control_mode = + MVE_OPT_RATE_CONTROL_MODE_STANDARD; + param.data.rate_control.target_bitrate = + msg->set_option.target_bitrate; + } + + ret = put_fw_buf_param(fw, ¶m, + sizeof(param.data.rate_control)); + break; + } + case MVX_FW_SET_RATE_CONTROL_CHANGE_POS: { + param.type = + MVE_BUFFER_PARAM_TYPE_RATE_CONTROL_CHANGE_POS; + param.data.arg = msg->set_option.change_pos; + ret = put_fw_buf_param(fw, ¶m, + sizeof(param.data.arg)); + + break; + } + case MVX_FW_SET_RATE_CONTROL_JPEG: { + opt.index = MVE_SET_OPT_INDEX_ENC_JPEG_RC; + + opt.data.jpeg_rate_control.fps = + msg->set_option.jpeg_rc.fps; + opt.data.jpeg_rate_control.qscale = + msg->set_option.jpeg_rc.qscale; + opt.data.jpeg_rate_control.qscale_luma = + msg->set_option.jpeg_rc.qscale_luma; + opt.data.jpeg_rate_control.qscale_chroma = + msg->set_option.jpeg_rc.qscale_chroma; + opt.data.jpeg_rate_control.change_pos = + msg->set_option.jpeg_rc.change_pos; + ret = put_fw_opt(fw, &opt, + sizeof(opt.data.jpeg_rate_control)); + break; + } + case MVX_FW_SET_RATE_CONTROL: { + param.type = MVE_BUFFER_PARAM_TYPE_RATE_CONTROL; + if (msg->set_option.rate_control.target_bitrate == 0) { + param.data.rate_control.rate_control_mode = + MVE_OPT_RATE_CONTROL_MODE_OFF; + param.data.rate_control.target_bitrate = 0; + } else { + param.data.rate_control.rate_control_mode = + msg->set_option.rate_control + .rate_control_mode; + param.data.rate_control.target_bitrate = + msg->set_option.rate_control + .target_bitrate; + if (msg->set_option.rate_control + .rate_control_mode == + MVX_OPT_RATE_CONTROL_MODE_C_VARIABLE) { + param.data.rate_control.maximum_bitrate = + msg->set_option.rate_control + .maximum_bitrate; + } + } + + ret = put_fw_buf_param(fw, ¶m, + sizeof(param.data.rate_control)); + break; + } + case MVX_FW_SET_CROP_LEFT: { + opt.index = MVE_SET_OPT_INDEX_ENC_CROP_RARAM_LEFT; + opt.data.arg = msg->set_option.crop_left; + + ret = put_fw_opt(fw, &opt, sizeof(opt.data.arg)); + break; + } + case MVX_FW_SET_CROP_RIGHT: { + opt.index = MVE_SET_OPT_INDEX_ENC_CROP_RARAM_RIGHT; + opt.data.arg = msg->set_option.crop_right; + + ret = put_fw_opt(fw, &opt, sizeof(opt.data.arg)); + break; + } + case MVX_FW_SET_CROP_TOP: { + opt.index = MVE_SET_OPT_INDEX_ENC_CROP_RARAM_TOP; + opt.data.arg = msg->set_option.crop_top; + + ret = put_fw_opt(fw, &opt, sizeof(opt.data.arg)); + + break; + } + case MVX_FW_SET_CROP_BOTTOM: { + opt.index = MVE_SET_OPT_INDEX_ENC_CROP_RARAM_BOTTOM; + opt.data.arg = msg->set_option.crop_bottom; + + ret = put_fw_opt(fw, &opt, sizeof(opt.data.arg)); + + break; + } + case MVX_FW_SET_RC_BIT_I_MODE: { + opt.index = MVE_SET_OPT_INDEX_ENC_RC_I_BIT_MODE; + opt.data.arg = msg->set_option.rc_bit_i_mode; + + ret = put_fw_opt(fw, &opt, sizeof(opt.data.arg)); + break; + } + case MVX_FW_SET_RC_BIT_I_RATIO: { + opt.index = MVE_SET_OPT_INDEX_ENC_RC_I_BIT_RATIO; + opt.data.arg = msg->set_option.rc_bit_i_ratio; + + ret = put_fw_opt(fw, &opt, sizeof(opt.data.arg)); + + break; + } + case MVX_FW_SET_HRD_BUF_SIZE: { + param.type = + MVE_BUFFER_PARAM_TYPE_RATE_CONTROL_HRD_BUF_SIZE; + param.data.arg = msg->set_option.nHRDBufsize; + ret = put_fw_buf_param(fw, ¶m, + sizeof(param.data.arg)); + break; + } + case MVX_FW_SET_COLOUR_DESC: { + param.type = MVE_BUFFER_PARAM_TYPE_COLOUR_DESCRIPTION; + param.data.colour_description.flags = + msg->set_option.colour_desc.flags; + switch (msg->set_option.colour_desc.range) { + case MVX_FW_RANGE_UNSPECIFIED: + param.data.colour_description.range = + MVE_BUFFER_PARAM_COLOUR_RANGE_UNSPECIFIED; + break; + case MVX_FW_RANGE_LIMITED: + param.data.colour_description.range = + MVE_BUFFER_PARAM_COLOUR_RANGE_LIMITED; + break; + case MVX_FW_RANGE_FULL: + param.data.colour_description.range = + MVE_BUFFER_PARAM_COLOUR_RANGE_FULL; + break; + default: + MVX_LOG_PRINT( + &mvx_log_if, MVX_LOG_WARNING, + "Unknown fw buffer param color desc range. range=%u.", + msg->set_option.colour_desc.range); + return -EINVAL; + } + /* Color primaries according to HEVC E.3.1. */ + switch (msg->set_option.colour_desc.primaries) { + case MVX_FW_PRIMARIES_BT709: + param.data.colour_description.colour_primaries = + 1; + break; + case MVX_FW_PRIMARIES_BT470M: + param.data.colour_description.colour_primaries = + 4; + break; + case MVX_FW_PRIMARIES_BT601_625: + param.data.colour_description.colour_primaries = + 5; + break; + case MVX_FW_PRIMARIES_BT601_525: + param.data.colour_description.colour_primaries = + 6; + break; + case MVX_FW_PRIMARIES_GENERIC_FILM: + param.data.colour_description.colour_primaries = + 8; + break; + case MVX_FW_PRIMARIES_BT2020: + param.data.colour_description.colour_primaries = + 9; + break; + default: + param.data.colour_description.colour_primaries = + 2; + break; + } + /* Transfer characteristics according to HEVC E.3.1. */ + switch (msg->set_option.colour_desc.transfer) { + case MVX_FW_TRANSFER_BT1361: + param.data.colour_description + .transfer_characteristics = 1; + break; + case MVX_FW_TRANSFER_GAMMA22: + param.data.colour_description + .transfer_characteristics = 4; + break; + case MVX_FW_TRANSFER_GAMMA28: + param.data.colour_description + .transfer_characteristics = 5; + break; + case MVX_FW_TRANSFER_SMPTE170M: + param.data.colour_description + .transfer_characteristics = 6; + break; + case MVX_FW_TRANSFER_SMPTE240M: + param.data.colour_description + .transfer_characteristics = 7; + break; + case MVX_FW_TRANSFER_LINEAR: + param.data.colour_description + .transfer_characteristics = 8; + break; + case MVX_FW_TRANSFER_HLG: + param.data.colour_description + .transfer_characteristics = 9; + break; + case MVX_FW_TRANSFER_XVYCC: + param.data.colour_description + .transfer_characteristics = 11; + break; + case MVX_FW_TRANSFER_SRGB: + param.data.colour_description + .transfer_characteristics = 13; + break; + case MVX_FW_TRANSFER_ST2084: + param.data.colour_description + .transfer_characteristics = 16; + break; + case MVX_FW_TRANSFER_ST428: + param.data.colour_description + .transfer_characteristics = 17; + break; + default: + param.data.colour_description + .transfer_characteristics = 2; + break; + } + /* Matrix coefficient according to HEVC E.3.1. */ + switch (msg->set_option.colour_desc.matrix) { + case MVX_FW_MATRIX_BT709: + param.data.colour_description.matrix_coeff = 1; + break; + case MVX_FW_MATRIX_BT470M: + param.data.colour_description.matrix_coeff = 5; + break; + case MVX_FW_MATRIX_BT601: + param.data.colour_description.matrix_coeff = 6; + break; + case MVX_FW_MATRIX_SMPTE240M: + param.data.colour_description.matrix_coeff = 7; + break; + case MVX_FW_MATRIX_BT2020: + param.data.colour_description.matrix_coeff = 9; + break; + case MVX_FW_MATRIX_BT2020Constant: + param.data.colour_description.matrix_coeff = 10; + break; + default: + param.data.colour_description.matrix_coeff = 2; + break; + } + param.data.colour_description.sar_height = + msg->set_option.colour_desc.sar_height; + param.data.colour_description.sar_width = + msg->set_option.colour_desc.sar_width; + if (msg->set_option.colour_desc.aspect_ratio_idc != 0) { + param.data.colour_description.aspect_ratio_idc = + msg->set_option.colour_desc + .aspect_ratio_idc; + param.data.colour_description + .aspect_ratio_info_present_flag = 1; + } + if (msg->set_option.colour_desc.video_format != 0) { + param.data.colour_description.video_format = + msg->set_option.colour_desc.video_format; + param.data.colour_description + .video_format_present_flag = 1; + } + if (msg->set_option.colour_desc.time_scale != 0 || + msg->set_option.colour_desc.num_units_in_tick != + 0) { + param.data.colour_description.time_scale = + msg->set_option.colour_desc.time_scale; + param.data.colour_description.num_units_in_tick = + msg->set_option.colour_desc + .num_units_in_tick; + param.data.colour_description + .timing_flag_info_present_flag = 1; + } + if (msg->set_option.colour_desc.flags & + MVX_FW_COLOR_DESC_CONTENT_VALID) { + param.data.colour_description + .avg_content_light_level = + msg->set_option.colour_desc.content + .luminance_average; + param.data.colour_description + .max_content_light_level = + msg->set_option.colour_desc.content + .luminance_max; + } + if (msg->set_option.colour_desc.flags & + MVX_FW_COLOR_DESC_DISPLAY_VALID) { + param.data.colour_description + .mastering_display_primaries_x[0] = + msg->set_option.colour_desc.display.r.x; + param.data.colour_description + .mastering_display_primaries_x[1] = + msg->set_option.colour_desc.display.g.x; + param.data.colour_description + .mastering_display_primaries_x[2] = + msg->set_option.colour_desc.display.b.x; + param.data.colour_description + .mastering_display_primaries_y[0] = + msg->set_option.colour_desc.display.r.y; + param.data.colour_description + .mastering_display_primaries_y[1] = + msg->set_option.colour_desc.display.g.y; + param.data.colour_description + .mastering_display_primaries_y[2] = + msg->set_option.colour_desc.display.b.y; + param.data.colour_description + .mastering_white_point_x = + msg->set_option.colour_desc.display.w.x; + param.data.colour_description + .mastering_white_point_y = + msg->set_option.colour_desc.display.w.y; + param.data.colour_description + .max_display_mastering_luminance = + msg->set_option.colour_desc.display + .luminance_min; + param.data.colour_description + .min_display_mastering_luminance = + msg->set_option.colour_desc.display + .luminance_max; + } + ret = put_fw_buf_param( + fw, ¶m, + sizeof(param.data.colour_description)); + + break; + } + case MVX_FW_SET_OSD_CONFIG: { + param.type = MVE_BUFFER_PARAM_TYPE_OSD_RECTANGLES; + memcpy(¶m.data.osd_rectangles_buff, + &msg->set_option.osd_config.osd_single_cfg, + sizeof(param.data.osd_rectangles_buff)); + ret = put_fw_buf_param( + fw, ¶m, + sizeof(param.data.osd_rectangles_buff)); + break; + } + case MVX_FW_SET_SEI_USERDATA: { + param.type = + MVE_BUFFER_PARAM_TYPE_SEI_USER_DATA_UNREGISTERED; + param.data.user_data_unregistered.user_data_len = + msg->set_option.userdata.user_data_len; + param.data.user_data_unregistered.flags = + msg->set_option.userdata.flags; + memcpy(¶m.data.user_data_unregistered.uuid, + &msg->set_option.userdata.uuid, + sizeof(param.data.user_data_unregistered.uuid)); + memcpy(¶m.data.user_data_unregistered.user_data, + &msg->set_option.userdata.user_data, + sizeof(param.data.user_data_unregistered + .user_data)); + ret = put_fw_buf_param( + fw, ¶m, + sizeof(param.data.user_data_unregistered)); + break; + } + case MVX_FW_SET_NALU_FORMAT: { + opt.index = MVE_SET_OPT_INDEX_NALU_FORMAT; + ret = to_mve_nalu_format(msg->set_option.nalu_format, + &opt.data.arg); + + if (ret == 0) + ret = put_fw_opt(fw, &opt, + sizeof(opt.data.arg)); + break; + } + case MVX_FW_SET_STREAM_ESCAPING: { + opt.index = MVE_SET_OPT_INDEX_STREAM_ESCAPING; + opt.data.arg = msg->set_option.stream_escaping ? 1 : 0; + + ret = put_fw_opt(fw, &opt, sizeof(opt.data.arg)); + break; + } + case MVX_FW_SET_PROFILE_LEVEL: { + opt.index = MVE_SET_OPT_INDEX_PROFILE_LEVEL; + ret = fw->ops_priv.to_mve_profile( + msg->set_option.profile_level.profile, + &opt.data.profile_level.profile); + if (ret != 0) + return ret; + + ret = fw->ops_priv.to_mve_level( + msg->set_option.profile_level.level, + &opt.data.profile_level.level); + if (ret != 0) + return ret; + + ret = put_fw_opt(fw, &opt, + sizeof(opt.data.profile_level)); + + break; + } + case MVX_FW_SET_IGNORE_STREAM_HEADERS: { + opt.index = MVE_SET_OPT_INDEX_IGNORE_STREAM_HEADERS; + opt.data.arg = + msg->set_option.ignore_stream_headers ? 1 : 0; + ret = put_fw_opt(fw, &opt, sizeof(opt.data.arg)); + break; + } + case MVX_FW_SET_FRAME_REORDERING: { + opt.index = MVE_SET_OPT_INDEX_FRAME_REORDERING; + opt.data.arg = msg->set_option.frame_reordering ? 1 : 0; + ret = put_fw_opt(fw, &opt, sizeof(opt.data.arg)); + break; + } + case MVX_FW_SET_INTBUF_SIZE: { + opt.index = MVE_SET_OPT_INDEX_INTBUF_SIZE; + opt.data.arg = msg->set_option.intbuf_size; + ret = put_fw_opt(fw, &opt, sizeof(opt.data.arg)); + break; + } + case MVX_FW_SET_P_FRAMES: { + opt.index = MVE_SET_OPT_INDEX_ENC_P_FRAMES; + opt.data.arg = msg->set_option.pb_frames; + ret = put_fw_opt(fw, &opt, sizeof(opt.data.arg)); + break; + } + case MVX_FW_SET_PROFILING: { + opt.index = MVE_SET_OPT_INDEX_PROFILING; + opt.data.arg = msg->set_option.profiling; + ret = put_fw_opt(fw, &opt, sizeof(opt.data.arg)); + break; + } + case MVX_FW_SET_B_FRAMES: { + opt.index = MVE_SET_OPT_INDEX_ENC_B_FRAMES; + opt.data.arg = msg->set_option.pb_frames; + ret = put_fw_opt(fw, &opt, sizeof(opt.data.arg)); + break; + } + case MVX_FW_SET_GOP_TYPE: { + opt.index = MVE_SET_OPT_INDEX_GOP_TYPE; + ret = to_mve_gop_type(msg->set_option.gop_type, + &opt.data.arg); + if (ret == 0) + ret = put_fw_opt(fw, &opt, + sizeof(opt.data.arg)); + + break; + } + case MVX_FW_SET_SVCT3_LEVEL1_PERIOD: { + opt.index = MVE_SET_OPT_INDEX_ENC_SVCT3_LEVEL1_PEROID; + opt.data.arg = msg->set_option.svct3_level1_period; + if (ret == 0) + ret = put_fw_opt(fw, &opt, + sizeof(opt.data.arg)); + break; + } + case MVX_FW_SET_INTER_MED_BUF_SIZE: { + opt.index = MVE_SET_OPT_INDEX_INTBUF_SIZE; + opt.data.arg = msg->set_option.inter_med_buf_size; + + if (ret == 0) + ret = put_fw_opt(fw, &opt, + sizeof(opt.data.arg)); + break; + } + case MVX_FW_SET_GOP_PFRAMES: { + param.type = MVE_BUFFER_PARAM_TYPE_GOP_RESET_DYNAMIC; + param.data.reset_gop_dynamic.reset_gop_pframes = + msg->set_option.reset_gop_pframes; + ret = put_fw_buf_param( + fw, ¶m, + sizeof(param.data.reset_gop_dynamic)); + break; + } + case MVX_FW_SET_LTR_PERIOD: { + param.type = MVE_BUFFER_PARAM_TYPE_GOP_RESET_LTR_PEROID_DYNAMIC; + param.data.reset_ltr_peroid_dynamic.reset_ltr_peroid_pframes = + msg->set_option.reset_ltr_period; + ret = put_fw_buf_param(fw, ¶m, + sizeof(param.data.reset_ltr_peroid_dynamic)); + break; + } + case MVX_FW_SET_INTRA_MB_REFRESH: { + opt.index = MVE_SET_OPT_INDEX_INTRA_MB_REFRESH; + opt.data.arg = msg->set_option.intra_mb_refresh; + ret = put_fw_opt(fw, &opt, sizeof(opt.data.arg)); + break; + } + case MVX_FW_SET_CONSTR_IPRED: { + opt.index = MVE_SET_OPT_INDEX_ENC_CONSTR_IPRED; + opt.data.arg = msg->set_option.constr_ipred ? 1 : 0; + ret = put_fw_opt(fw, &opt, sizeof(opt.data.arg)); + break; + } + case MVX_FW_SET_ENTROPY_SYNC: { + opt.index = MVE_SET_OPT_INDEX_ENC_ENTROPY_SYNC; + opt.data.arg = msg->set_option.entropy_sync ? 1 : 0; + ret = put_fw_opt(fw, &opt, sizeof(opt.data.arg)); + break; + } + case MVX_FW_SET_TEMPORAL_MVP: { + opt.index = MVE_SET_OPT_INDEX_ENC_TEMPORAL_MVP; + opt.data.arg = msg->set_option.temporal_mvp ? 1 : 0; + ret = put_fw_opt(fw, &opt, sizeof(opt.data.arg)); + break; + } + case MVX_FW_SET_TILES: { + opt.index = MVE_SET_OPT_INDEX_TILES; + opt.data.tiles.tile_rows = msg->set_option.tile.rows; + opt.data.tiles.tile_cols = msg->set_option.tile.cols; + ret = put_fw_opt(fw, &opt, sizeof(opt.data.tiles)); + break; + } + case MVX_FW_SET_MIN_LUMA_CB_SIZE: { + opt.index = MVE_SET_OPT_INDEX_ENC_MIN_LUMA_CB_SIZE; + opt.data.arg = msg->set_option.min_luma_cb_size; + ret = put_fw_opt(fw, &opt, sizeof(opt.data.arg)); + break; + } + case MVX_FW_SET_QP_RANGE: { + param.type = + MVE_BUFFER_PARAM_TYPE_RATE_CONTROL_QP_RANGE; + param.data.rate_control_qp_range.qp_min = + msg->set_option.qp_range.min; + param.data.rate_control_qp_range.qp_max = + msg->set_option.qp_range.max; + ret = put_fw_buf_param( + fw, ¶m, + sizeof(param.data.rate_control_qp_range)); + break; + } + case MVX_FW_SET_QP_RANGE_I: { + param.type = + MVE_BUFFER_PARAM_TYPE_RATE_CONTROL_QP_RANGE_I; + param.data.rate_control_qp_range.qp_min = + msg->set_option.qp_range.min; + param.data.rate_control_qp_range.qp_max = + msg->set_option.qp_range.max; + ret = put_fw_buf_param( + fw, ¶m, + sizeof(param.data.rate_control_qp_range)); + break; + } + case MVX_FW_SET_ENTROPY_MODE: { + opt.index = MVE_SET_OPT_INDEX_ENC_H264_CABAC; + ret = to_mve_h264_cabac(msg->set_option.entropy_mode, + &opt.data.arg); + if (ret == 0) + ret = put_fw_opt(fw, &opt, + sizeof(opt.data.arg)); + + break; + } + case MVX_FW_SET_SLICE_SPACING_MB: { + opt.index = MVE_SET_OPT_INDEX_ENC_SLICE_SPACING; + opt.data.arg = msg->set_option.slice_spacing_mb; + ret = put_fw_opt(fw, &opt, sizeof(opt.data.arg)); + break; + } + case MVX_FW_SET_VP9_PROB_UPDATE: { + opt.index = MVE_SET_OPT_INDEX_ENC_VP9_PROB_UPDATE; + ret = to_mve_vp9_prob_update( + msg->set_option.vp9_prob_update, &opt.data.arg); + if (ret == 0) + ret = put_fw_opt(fw, &opt, + sizeof(opt.data.arg)); + + break; + } + case MVX_FW_SET_MV_SEARCH_RANGE: { + opt.index = MVE_SET_OPT_INDEX_MV_SEARCH_RANGE; + opt.data.motion_vector_search_range.mv_search_range_x = + msg->set_option.mv.x; + opt.data.motion_vector_search_range.mv_search_range_y = + msg->set_option.mv.y; + ret = put_fw_opt( + fw, &opt, + sizeof(opt.data.motion_vector_search_range)); + break; + } + case MVX_FW_SET_BITDEPTH: { + opt.index = MVE_SET_OPT_INDEX_ENC_STREAM_BITDEPTH; + opt.data.bitdepth.luma_bitdepth = + msg->set_option.bitdepth.luma; + opt.data.bitdepth.chroma_bitdepth = + msg->set_option.bitdepth.chroma; + ret = put_fw_opt(fw, &opt, sizeof(opt.data.bitdepth)); + break; + } + case MVX_FW_SET_CHROMA_FORMAT: { + opt.index = MVE_SET_OPT_INDEX_ENC_STREAM_CHROMA_FORMAT; + opt.data.arg = msg->set_option.chroma_format; + ret = put_fw_opt(fw, &opt, sizeof(opt.data.arg)); + break; + } + case MVX_FW_SET_RGB_TO_YUV_MODE: { + int i = 0; + + opt.index = MVE_SET_OPT_INDEX_ENC_RGB_TO_YUV_MODE; + opt.data.rgb2yuv_params.rgb2yuv_mode = 0; // no use + for (; i < 9; i++) { + opt.data.rgb2yuv_params.coef[i] = + msg->set_option.rgb2yuv_params.coef[i]; + } + + opt.data.rgb2yuv_params.luma_range[0] = + msg->set_option.rgb2yuv_params.luma_range[0]; + opt.data.rgb2yuv_params.luma_range[1] = + msg->set_option.rgb2yuv_params.luma_range[1]; + opt.data.rgb2yuv_params.chroma_range[0] = + msg->set_option.rgb2yuv_params.chroma_range[0]; + opt.data.rgb2yuv_params.chroma_range[1] = + msg->set_option.rgb2yuv_params.chroma_range[1]; + opt.data.rgb2yuv_params.rgb_range[0] = + msg->set_option.rgb2yuv_params.rgb_range[0]; + opt.data.rgb2yuv_params.rgb_range[1] = + msg->set_option.rgb2yuv_params.rgb_range[1]; + ret = put_fw_opt( + fw, &opt, + sizeof(opt.index) + + sizeof(opt.data.rgb2yuv_params)); + break; + } + case MVX_FW_SET_BAND_LIMIT: { + opt.index = MVE_SET_OPT_INDEX_ENC_BANDWIDTH_LIMIT; + opt.data.arg = msg->set_option.band_limit; + ret = put_fw_opt(fw, &opt, sizeof(opt.data.arg)); + break; + } + case MVX_FW_SET_CABAC_INIT_IDC: { + opt.index = MVE_SET_OPT_INDEX_ENC_CABAC_INIT_IDC; + opt.data.arg = msg->set_option.cabac_init_idc; + ret = put_fw_opt(fw, &opt, sizeof(opt.data.arg)); + break; + } + case MVX_FW_SET_QP_I: { + param.type = MVE_BUFFER_PARAM_TYPE_QP_I; + param.data.qp.qp = msg->set_option.qp; + ret = put_fw_buf_param(fw, ¶m, + sizeof(param.data.qp)); + break; + } + case MVX_FW_SET_QP_P: { + param.type = MVE_BUFFER_PARAM_TYPE_QP_P; + param.data.qp.qp = msg->set_option.qp; + ret = put_fw_buf_param(fw, ¶m, + sizeof(param.data.qp)); + break; + } + case MVX_FW_SET_QP_B: { + param.type = MVE_BUFFER_PARAM_TYPE_QP_B; + param.data.qp.qp = msg->set_option.qp; + ret = put_fw_buf_param(fw, ¶m, + sizeof(param.data.qp)); + break; + } + case MVX_FW_SET_FIXED_QP: { + opt.index = MVE_SET_OPT_INDEX_ENC_FIXED_QP; + opt.data.arg = msg->set_option.fixedqp; + ret = put_fw_opt(fw, &opt, sizeof(opt.data.arg)); + break; + } + case MVX_FW_SET_INIT_QP_I: { + opt.index = MVE_SET_OPT_INDEX_ENC_INIT_QPI; + opt.data.arg = msg->set_option.init_qpi; + ret = put_fw_opt(fw, &opt, sizeof(opt.data.arg)); + break; + } + case MVX_FW_SET_INIT_QP_P: { + opt.index = MVE_SET_OPT_INDEX_ENC_INIT_QPP; + opt.data.arg = msg->set_option.init_qpp; + ret = put_fw_opt(fw, &opt, sizeof(opt.data.arg)); + break; + } + case MVX_FW_SET_SAO_LUMA: { + opt.index = MVE_SET_OPT_INDEX_ENC_SAO_LUMA_EN; + opt.data.arg = msg->set_option.sao_luma; + ret = put_fw_opt(fw, &opt, sizeof(opt.data.arg)); + break; + } + case MVX_FW_SET_SAO_CHROMA: { + opt.index = MVE_SET_OPT_INDEX_ENC_SAO_CHROMA_EN; + opt.data.arg = msg->set_option.sao_chroma; + ret = put_fw_opt(fw, &opt, sizeof(opt.data.arg)); + break; + } + case MVX_FW_SET_QP_DELTA_I_P: { + opt.index = MVE_SET_OPT_INDEX_QP_DELTA_I_P; + opt.data.arg = msg->set_option.qp_delta_i_p; + ret = put_fw_opt(fw, &opt, sizeof(opt.data.arg)); + break; + } + case MVX_FW_SET_QP_REF_RB_EN: { + opt.index = MVE_SET_OPT_INDEX_ENC_REF_RING_BUFFER; + opt.data.arg = msg->set_option.ref_rb_en; + ret = put_fw_opt(fw, &opt, sizeof(opt.data.arg)); + break; + } + case MVX_FW_SET_RC_CLIP_TOP: { + opt.index = MVE_SET_OPT_INDEX_ENC_RC_CLIP_TOP; + opt.data.arg = msg->set_option.rc_qp_clip_top; + ret = put_fw_opt(fw, &opt, sizeof(opt.data.arg)); + break; + } + case MVX_FW_SET_RC_CLIP_BOT: { + opt.index = MVE_SET_OPT_INDEX_ENC_RC_CLIP_BOTTOM; + opt.data.arg = msg->set_option.rc_qp_clip_bot; + ret = put_fw_opt(fw, &opt, sizeof(opt.data.arg)); + break; + } + case MVX_FW_SET_QP_MAP_CLIP_TOP: { + opt.index = MVE_SET_OPT_INDEX_ENC_QPMAP_CLIP_TOP; + opt.data.arg = msg->set_option.qpmap_qp_clip_top; + ret = put_fw_opt(fw, &opt, sizeof(opt.data.arg)); + break; + } + case MVX_FW_SET_QP_MAP_CLIP_BOT: { + opt.index = MVE_SET_OPT_INDEX_ENC_QPMAP_CLIP_BOTTOM; + opt.data.arg = msg->set_option.qpmap_qp_clip_bot; + ret = put_fw_opt(fw, &opt, sizeof(opt.data.arg)); + break; + } + case MVX_FW_SET_RESYNC_INTERVAL: { + opt.index = MVE_SET_OPT_INDEX_RESYNC_INTERVAL; + opt.data.arg = msg->set_option.resync_interval; + ret = put_fw_opt(fw, &opt, sizeof(opt.data.arg)); + break; + } + case MVX_FW_SET_QUANT_TABLE: { + opt.index = MVE_SET_OPT_INDEX_QUANT_TABLE; + + opt.data.quant_table.type = MVE_OPT_QUANT_TABLE_LUMA; + memcpy(opt.data.quant_table.matrix, + msg->set_option.quant_tbl.luma, + sizeof(opt.data.quant_table.matrix)); + ret = put_fw_opt(fw, &opt, + sizeof(opt.data.quant_table)); + if (ret != 0) + break; + + opt.data.quant_table.type = MVE_OPT_QUANT_TABLE_CHROMA; + memcpy(opt.data.quant_table.matrix, + msg->set_option.quant_tbl.chroma, + sizeof(opt.data.quant_table.matrix)); + ret = put_fw_opt(fw, &opt, + sizeof(opt.data.quant_table)); + break; + } + case MVX_FW_SET_HUFF_TABLE: { + opt.index = MVE_SET_OPT_INDEX_HUFFMAN_TABLE; + if (msg->set_option.huff_table.type & + MVX_OPT_HUFFMAN_TABLE_DC_LUMA) { + opt.data.huffman_table.type = + MVE_OPT_HUFFMAN_TABLE_DC_LUMA; + memcpy(opt.data.huffman_table + .number_of_huffman_of_code_length, + msg->set_option.huff_table + .dc_luma_code_lenght, + sizeof(msg->set_option.huff_table + .dc_luma_code_lenght)); + memcpy(opt.data.huffman_table.table, + msg->set_option.huff_table.dc_luma_table, + sizeof(msg->set_option.huff_table + .dc_luma_table)); + ret = put_fw_opt( + fw, &opt, + sizeof(opt.index) + + sizeof(opt.data.huffman_table + .type) + + sizeof(opt.data.huffman_table + .number_of_huffman_of_code_length) + + 12); + } + if (msg->set_option.huff_table.type & + MVX_OPT_HUFFMAN_TABLE_AC_LUMA) { + opt.data.huffman_table.type = + MVE_OPT_HUFFMAN_TABLE_AC_LUMA; + memcpy(opt.data.huffman_table + .number_of_huffman_of_code_length, + msg->set_option.huff_table + .ac_luma_code_lenght, + sizeof(msg->set_option.huff_table + .ac_luma_code_lenght)); + memcpy(opt.data.huffman_table.table, + msg->set_option.huff_table.ac_luma_table, + sizeof(msg->set_option.huff_table + .ac_luma_table)); + ret = put_fw_opt( + fw, &opt, + sizeof(opt.index) + + sizeof(opt.data.huffman_table + .type) + + sizeof(opt.data.huffman_table + .number_of_huffman_of_code_length) + + 162); + } + if (msg->set_option.huff_table.type & + MVX_OPT_HUFFMAN_TABLE_DC_CHROMA) { + opt.data.huffman_table.type = + MVE_OPT_HUFFMAN_TABLE_DC_CHROMA; + memcpy(opt.data.huffman_table + .number_of_huffman_of_code_length, + msg->set_option.huff_table + .dc_chroma_code_lenght, + sizeof(msg->set_option.huff_table + .dc_chroma_code_lenght)); + memcpy(opt.data.huffman_table.table, + msg->set_option.huff_table + .dc_chroma_table, + sizeof(msg->set_option.huff_table + .dc_chroma_table)); + ret = put_fw_opt( + fw, &opt, + sizeof(opt.index) + + sizeof(opt.data.huffman_table + .type) + + sizeof(opt.data.huffman_table + .number_of_huffman_of_code_length) + + 12); + } + if (msg->set_option.huff_table.type & + MVX_OPT_HUFFMAN_TABLE_AC_CHROMA) { + opt.data.huffman_table.type = + MVE_OPT_HUFFMAN_TABLE_AC_CHROMA; + memcpy(opt.data.huffman_table + .number_of_huffman_of_code_length, + msg->set_option.huff_table + .ac_chroma_code_lenght, + sizeof(msg->set_option.huff_table + .ac_chroma_code_lenght)); + memcpy(opt.data.huffman_table.table, + msg->set_option.huff_table + .ac_chroma_table, + sizeof(msg->set_option.huff_table + .ac_chroma_table)); + ret = put_fw_opt( + fw, &opt, + sizeof(opt.index) + + sizeof(opt.data.huffman_table + .type) + + sizeof(opt.data.huffman_table + .number_of_huffman_of_code_length) + + 162); + } + + break; + } + case MVX_FW_SET_WATCHDOG_TIMEOUT: { + opt.index = MVE_SET_OPT_INDEX_WATCHDOG_TIMEOUT; + opt.data.arg = msg->set_option.watchdog_timeout; + + ret = put_fw_opt(fw, &opt, sizeof(opt.data.arg)); + + opt.index = MVE_SET_OPT_INDEX_HOST_PROTOCOL_PRINTS; + opt.data.arg = 1; + ret = put_fw_opt(fw, &opt, sizeof(opt.data.arg)); + break; + } + case MVX_FW_SET_ROI_REGIONS: { + int i = 0; + + param.type = MVE_BUFFER_PARAM_TYPE_REGIONS; + param.data.regions.n_regions = + msg->set_option.roi_config.num_roi; + for (; i < msg->set_option.roi_config.num_roi; i++) { + param.data.regions.region[i].mbx_left = + msg->set_option.roi_config.roi[i] + .mbx_left; + param.data.regions.region[i].mbx_right = + msg->set_option.roi_config.roi[i] + .mbx_right; + param.data.regions.region[i].mby_top = + msg->set_option.roi_config.roi[i] + .mby_top; + param.data.regions.region[i].mby_bottom = + msg->set_option.roi_config.roi[i] + .mby_bottom; + param.data.regions.region[i].qp_delta = + msg->set_option.roi_config.roi[i] + .qp_delta; + param.data.regions.region[i].prio = + msg->set_option.roi_config.roi[i].prio; + param.data.regions.region[i].force_intra = + msg->set_option.roi_config.roi[i] + .force_intra; + } + ret = put_fw_buf_param(fw, ¶m, + sizeof(param.data.regions)); + break; + } + case MVX_FW_SET_QP_REGION: { + param.type = MVE_BUFFER_PARAM_TYPE_QP; + param.data.qp.qp = msg->set_option.qp; + param.data.qp.epr_iframe_enable = 0; + ret = put_fw_buf_param(fw, ¶m, + sizeof(param.data.qp)); + break; + } + case MVX_FW_SET_EPR_QP: { + param.type = MVE_BUFFER_PARAM_TYPE_QP; + param.data.qp.qp = msg->set_option.qp; + param.data.qp.epr_iframe_enable = + msg->set_option.epr_qp.epr_iframe_enable; + ret = put_fw_buf_param(fw, ¶m, + sizeof(param.data.qp)); + break; + } + case MVX_FW_SET_CHR_CFG: { + param.type = MVE_BUFFER_PARAM_TYPE_CHANGE_RECTANGLES; + param.data.change_rectangles.n_rectangles = + msg->set_option.chr_cfg.num_chr; + memcpy(param.data.change_rectangles.rectangles, + msg->set_option.chr_cfg.rectangle, + sizeof(msg->set_option.chr_cfg.rectangle)); + ret = put_fw_buf_param(fw, ¶m, + sizeof(param.data.regions)); + break; + } + case MVX_FW_SET_DSL_FRAME: { + opt.index = MVE_SET_OPT_INDEX_DEC_DOWNSCALE; + opt.data.downscaled_frame.width = + msg->set_option.dsl_frame.width; + opt.data.downscaled_frame.height = + msg->set_option.dsl_frame.height; + ret = put_fw_opt( + fw, &opt, + sizeof(opt.index) + + sizeof(opt.data.downscaled_frame)); + break; + } + case MVX_FW_SET_LONG_TERM_REF: { + if (msg->set_option.ltr.mode >= 1 && + msg->set_option.ltr.mode <= 8) { + opt.index = MVE_SET_OPT_INDEX_ENC_LTR_MODE; + opt.data.arg = msg->set_option.ltr.mode; + ret = put_fw_opt(fw, &opt, + sizeof(opt.data.arg)); + } + if (msg->set_option.ltr.period >= 1 && + msg->set_option.ltr.period <= 255) { + opt.index = MVE_SET_OPT_INDEX_ENC_LTR_PERIOD; + opt.data.arg = msg->set_option.ltr.period; + ret = put_fw_opt(fw, &opt, + sizeof(opt.data.arg)); + } + break; + } + case MVX_FW_SET_DSL_MODE: { + opt.index = MVE_SET_OPT_INDEX_DEC_DOWNSCALE_POS_MODE; + opt.data.dsl_pos.mode = msg->set_option.dsl_pos_mode; + ret = put_fw_opt(fw, &opt, + sizeof(opt.index) + + sizeof(opt.data.dsl_pos)); + break; + } + case MVX_FW_SET_DSL_INTERP_MODE: { + opt.index = MVE_SET_OPT_INDEX_DEC_DSL_INTERP_MODE; + opt.data.interp_mode.mode = + msg->set_option.dsl_interp_mode; + ret = put_fw_opt(fw, &opt, + sizeof(opt.index) + + sizeof(opt.data.interp_mode)); + break; + } + case MVX_FW_SET_MINI_FRAME_HEIGHT: { + opt.index = MVE_SET_OPT_INDEX_MINI_FRAME_HEIGHT_PIX; + opt.data.arg = msg->set_option.mini_frame_height; + ret = put_fw_opt(fw, &opt, sizeof(opt.data.arg)); + break; + } + case MVX_FW_SET_STATS_MODE: { + param.type = MVE_BUFFER_PARAM_TYPE_ENC_STATS; + param.data.enc_stats.mms_buffer_size = + msg->set_option.enc_stats.mms_buffer_size; + param.data.enc_stats.bitcost_buffer_size = + msg->set_option.enc_stats.bitcost_buffer_size; + param.data.enc_stats.qp_buffer_size = + msg->set_option.enc_stats.qp_buffer_size; + param.data.enc_stats.flags = + msg->set_option.enc_stats.flags; + ret = put_fw_buf_param(fw, ¶m, + sizeof(param.data.enc_stats)); + + break; + } + case MVX_FW_SET_GDR_NUMBER: { + opt.index = MVE_SET_OPT_INDEX_ENC_GDR_NUMBER; + opt.data.arg = msg->set_option.gdr_number; + ret = put_fw_opt(fw, &opt, sizeof(opt.data.arg)); + break; + } + case MVX_FW_SET_GDR_PERIOD: { + opt.index = MVE_SET_OPT_INDEX_ENC_GDR_PERIOD; + opt.data.arg = msg->set_option.gdr_period; + ret = put_fw_opt(fw, &opt, sizeof(opt.data.arg)); + break; + } + case MVX_FW_SET_MULTI_SPS_PPS: { + opt.index = MVE_SET_OPT_INDEX_ENC_MULTI_SPS_PPS; + opt.data.arg = msg->set_option.multi_sps_pps; + ret = put_fw_opt(fw, &opt, sizeof(opt.data.arg)); + break; + } + case MVX_FW_SET_VISUAL_ENABLE: { + opt.index = MVE_SET_OPT_iNDEX_ENC_VISUAL_ENABLE; + opt.data.arg = msg->set_option.enable_visual; + ret = put_fw_opt(fw, &opt, sizeof(opt.data.arg)); + break; + } + case MVX_FW_SET_VISUAL_ENABLE_ADAPTIVE_INTRA_BLOCK: { + opt.index = MVE_SET_OPT_INDEX_SCD_ADAPTIVE_I; + opt.data.arg = msg->set_option.adaptive_intra_block; + ret = put_fw_opt(fw, &opt, sizeof(opt.data.arg)); + break; + } + case MVX_FW_SET_ADPTIVE_QUANTISATION: { + opt.index = MVE_SET_OPT_INDEX_ENC_ADPTIVE_QUANTISATION; + opt.data.arg = msg->set_option.adapt_qnt; + ret = put_fw_opt(fw, &opt, sizeof(opt.data.arg)); + break; + } + case MVX_FW_SET_DISABLE_FEATURES: { + opt.index = MVE_SET_OPT_INDEX_DISABLE_FEATURES; + opt.data.arg = msg->set_option.disabled_features; + ret = put_fw_opt(fw, &opt, sizeof(opt.data.arg)); + break; + } + case MVX_FW_SET_SCD_ENABLE: { + opt.index = MVE_SET_OPT_INDEX_SCD_ENABLE; + opt.data.arg = msg->set_option.scd_enable; + ret = put_fw_opt(fw, &opt, sizeof(opt.data.arg)); + break; + } + case MVX_FW_SET_SCD_PERCENT: { + opt.index = MVE_SET_OPT_INDEX_SCD_PERCENT; + opt.data.arg = msg->set_option.scd_percent; + ret = put_fw_opt(fw, &opt, sizeof(opt.data.arg)); + break; + } + case MVX_FW_SET_SCD_THRESHOLD: { + opt.index = MVE_SET_OPT_INDEX_SCD_THRESHOLD; + opt.data.arg = msg->set_option.scd_threshold; + ret = put_fw_opt(fw, &opt, sizeof(opt.data.arg)); + break; + } + case MVX_FW_SET_AQ_SSIM_EN: { + opt.index = MVE_SET_OPT_INDEX_ENC_AQ_SSIM_EN; + opt.data.arg = msg->set_option.aq_ssim_en; + ret = put_fw_opt(fw, &opt, sizeof(opt.data.arg)); + break; + } + case MVX_FW_SET_AQ_NEG_RATIO: { + opt.index = MVE_SET_OPT_INDEX_ENC_AQ_NEG_RATIO; + opt.data.arg = msg->set_option.aq_neg_ratio; + ret = put_fw_opt(fw, &opt, sizeof(opt.data.arg)); + break; + } + case MVX_FW_SET_AQ_POS_RATIO: { + opt.index = MVE_SET_OPT_INDEX_ENC_AQ_POS_RATIO; + opt.data.arg = msg->set_option.aq_pos_ratio; + ret = put_fw_opt(fw, &opt, sizeof(opt.data.arg)); + break; + } + case MVX_FW_SET_AQ_QPDELTA_LMT: { + opt.index = MVE_SET_OPT_INDEX_ENC_AQ_QPDELTA_LMT; + opt.data.arg = msg->set_option.aq_qpdelta_lmt; + ret = put_fw_opt(fw, &opt, sizeof(opt.data.arg)); + break; + } + case MVX_FW_SET_AQ_INIT_FRM_AVG_SVAR: { + opt.index = MVE_SET_OPT_INDEX_ENC_AQ_INIT_FRM_AVG_SVAR; + opt.data.arg = msg->set_option.aq_init_frm_avg_svar; + ret = put_fw_opt(fw, &opt, sizeof(opt.data.arg)); + break; + } + case MVX_FW_SET_DEC_YUV2RGB_PARAMS: { + opt.index = MVE_SET_OPT_INDEX_DEC_YUV2RGB_PARAMS; + memcpy(&opt.data.yuv2rgb_params, + &msg->set_option.yuv2rbg_csc_coef, + sizeof(struct mvx_color_conv_coef)); + ret = put_fw_opt( + fw, &opt, + sizeof(opt.index) + + sizeof(opt.data.yuv2rgb_params)); + break; + } + case MVX_FW_SET_ENC_FORCED_UV_VAL: { + opt.index = MVE_SET_OPT_INDEX_ENC_FORCED_UV_VAL; + opt.data.gray_uv_value.value = + msg->set_option.forced_uv_value; + ret = put_fw_opt( + fw, &opt, + sizeof(opt.index) + + sizeof(opt.data.gray_uv_value)); + break; + } + case MVX_FW_SET_ENC_SRC_CROPPING: { + opt.index = MVE_SET_OPT_INDEX_ENC_SRC_CROPPING; + memcpy(&opt.data.enc_src_crop, + &msg->set_option.enc_src_crop, + sizeof(struct mvx_crop_cfg)); + ret = put_fw_opt(fw, &opt, + sizeof(opt.index) + + sizeof(opt.data.enc_src_crop)); + break; + } + case MVX_FW_SET_DEC_DST_CROPPING: { + opt.index = MVE_SET_OPT_INDEX_DEC_DST_CROPPING; + memcpy(&opt.data.dec_dst_crop, + &msg->set_option.dec_dst_crop, + sizeof(struct mvx_crop_cfg)); + ret = put_fw_opt(fw, &opt, + sizeof(opt.index) + + sizeof(opt.data.dec_dst_crop)); + break; + } + default: + ret = -EINVAL; + } + + break; + } + case MVX_FW_CODE_FLUSH: { + switch (msg->flush.dir) { + case MVX_DIR_INPUT: + ret = write_message(fw, fw->msg_host, fw->msg_mve, + MVE_REQUEST_CODE_INPUT_FLUSH, NULL, + 0, MVX_LOG_FWIF_CHANNEL_MESSAGE); + break; + case MVX_DIR_OUTPUT: + ret = write_message(fw, fw->msg_host, fw->msg_mve, + MVE_REQUEST_CODE_OUTPUT_FLUSH, NULL, + 0, MVX_LOG_FWIF_CHANNEL_MESSAGE); + break; + default: + MVX_LOG_PRINT(&mvx_log_if, MVX_LOG_WARNING, + "Invalid flush direction. dir=%d.", + msg->flush.dir); + return -EINVAL; + } + + if (ret == 0) + fw->msg_pending++; + + break; + } + case MVX_FW_CODE_BUFFER: { + struct mve_comm_area_host *host; + struct mve_comm_area_mve *mve; + enum mvx_log_fwif_channel channel; + + if (msg->buf->dir == MVX_DIR_INPUT) { + host = fw->buf_in_host; + mve = fw->buf_in_mve; + channel = MVX_LOG_FWIF_CHANNEL_INPUT_BUFFER; + } else { + host = fw->buf_out_host; + mve = fw->buf_out_mve; + channel = MVX_LOG_FWIF_CHANNEL_OUTPUT_BUFFER; + } + + if (mvx_is_frame(msg->buf->format)) { + if (msg->buf->dir == MVX_DIR_OUTPUT) { + if ((msg->buf->flags & + MVX_BUFFER_FRAME_FLAG_GENERAL) == + MVX_BUFFER_FRAME_FLAG_GENERAL) { + ret = put_buffer_general(fw, host, mve, + msg, channel); + ret = put_buffer_frame(fw, host, mve, + msg, channel); + } else { + ret = put_buffer_frame(fw, host, mve, + msg, channel); + } + } else { + if ((msg->buf->flags & + MVX_BUFFER_FRAME_FLAG_GENERAL) == + MVX_BUFFER_FRAME_FLAG_GENERAL) { + ret = put_buffer_general(fw, host, mve, + msg, channel); + } else { + ret = put_buffer_frame(fw, host, mve, + msg, channel); + } + } + } else { + ret = put_buffer_bitstream(fw, host, mve, msg, channel); + } + break; + } + case MVX_FW_CODE_IDLE_ACK: { + if (fw->ops_priv.send_idle_ack != NULL) + ret = fw->ops_priv.send_idle_ack(fw); + + break; + } + case MVX_FW_CODE_EOS: { + struct mve_comm_area_host *host; + struct mve_comm_area_mve *mve; + enum mvx_log_fwif_channel channel; + + /* The message is on the MVX_DIR_INPUT side. */ + host = fw->buf_in_host; + mve = fw->buf_in_mve; + channel = MVX_LOG_FWIF_CHANNEL_INPUT_BUFFER; + + if (msg->eos_is_frame != false) { + struct mve_buffer_frame f = { + .host_handle = MVX_FW_CODE_EOS, + .frame_flags = MVE_BUFFER_FRAME_FLAG_EOS, + .format = MVE_FORMAT_YUV420_NV12 + }; + + ret = write_message(fw, host, mve, + MVE_BUFFER_CODE_FRAME, &f, + sizeof(f), channel); + } else { + struct mve_buffer_bitstream b = { + .host_handle = MVX_FW_CODE_EOS, + .bitstream_buf_addr = + MVE_MEM_REGION_PROTECTED_ADDR_BEGIN, + .bitstream_flags = MVE_BUFFER_BITSTREAM_FLAG_EOS + }; + + ret = write_message(fw, host, mve, + MVE_BUFFER_CODE_BITSTREAM, &b, + sizeof(b), channel); + } + + break; + } + case MVX_FW_CODE_DUMP: { + ret = write_message(fw, fw->msg_host, fw->msg_mve, + MVE_REQUEST_CODE_DUMP, NULL, 0, + MVX_LOG_FWIF_CHANNEL_MESSAGE); + fw->msg_pending++; + break; + } + case MVX_FW_CODE_DEBUG: { + ret = write_message(fw, fw->msg_host, fw->msg_mve, + MVE_REQUEST_CODE_DEBUG, &msg->arg, + sizeof(msg->arg), + MVX_LOG_FWIF_CHANNEL_MESSAGE); + fw->msg_pending++; + break; + } + default: { + ret = -EINVAL; + break; + } + } + + if (ret != 0) + MVX_LOG_PRINT(&mvx_log_if, MVX_LOG_WARNING, + "Firmware put message failed. ret=%d.", ret); + + return ret; +} + +/** + * find_pages() - Find a page allocate in the map. + * @fw: Pointer to firmware object. + * @va: MVE virtual address. + * + * Return: Pointer to pages, NULL if not found. + */ +static struct mvx_mmu_pages *find_pages(struct mvx_fw *fw, mvx_mmu_va va) +{ + struct mvx_mmu_pages *pages; + + hash_for_each_possible(fw->rpc_mem, pages, node, va) { + if (pages->va == va) + return pages; + } + + return NULL; +} + +static void rpc_mem_alloc(struct mvx_fw *fw, + struct mve_rpc_communication_area *rpc_area) +{ + union mve_rpc_params *p = &rpc_area->params; + enum mvx_fw_region region; + struct mvx_mmu_pages *pages; + size_t npages; + size_t max_pages; + mvx_mmu_va va = 0; + mvx_mmu_va va0, va_next; + mvx_mmu_va end; + int ret; + uint8_t log2_alignment; + uint32_t alignment_pages; + uint32_t alignment_bytes; + uint32_t total_used_pages = 0; + + if (IS_ENABLED(CONFIG_DEBUG_FS)) { + ret = mutex_lock_interruptible(&fw->rpcmem_mutex); + if (ret != 0) { + MVX_LOG_PRINT(&mvx_log_if, MVX_LOG_ERROR, + "Cannot protect RPC alloc list."); + goto out; + } + } + + switch (p->mem_alloc.region) { + case MVE_MEM_REGION_PROTECTED: + region = MVX_FW_REGION_PROTECTED; + total_used_pages = fw->latest_used_region_protected_pages; + break; + case MVE_MEM_REGION_OUTBUF: + region = MVX_FW_REGION_FRAMEBUF; + total_used_pages = fw->latest_used_region_outbuf_pages; + break; + default: + MVX_LOG_PRINT(&mvx_log_if, MVX_LOG_WARNING, + "Unsupported RPC mem alloc region. region=%u.", + p->mem_alloc.region); + goto unlock_mutex; + } + + ret = fw->ops.get_region(region, &va, &end); + if (ret != 0) + goto unlock_mutex; + + va0 = va; + + npages = DIV_ROUND_UP(p->mem_alloc.size, MVE_PAGE_SIZE); + max_pages = DIV_ROUND_UP(p->mem_alloc.max_size, MVE_PAGE_SIZE); + + if (fw->fw_bin->securevideo != false) { + struct dma_buf *dmabuf; + + dmabuf = mvx_secure_mem_alloc(fw->fw_bin->secure.secure, + p->mem_alloc.size); + if (IS_ERR(dmabuf)) + goto unlock_mutex; + + pages = mvx_mmu_alloc_pages_dma_buf(fw->dev, dmabuf, max_pages); + if (IS_ERR(pages)) { + dma_buf_put(dmabuf); + goto unlock_mutex; + } + } else { + pages = mvx_mmu_alloc_pages(fw->dev, npages, max_pages); + if (IS_ERR(pages)) + goto unlock_mutex; + } + + va += (total_used_pages << MVE_PAGE_SHIFT); + log2_alignment = p->mem_alloc.log2_alignment <= MVE_PAGE_SHIFT ? + MVE_PAGE_SHIFT : + p->mem_alloc.log2_alignment; + alignment_bytes = 1 << log2_alignment; + alignment_pages = alignment_bytes >> MVE_PAGE_SHIFT; + ret = -EINVAL; + while (va < end) { + va = (va + alignment_bytes - 1) & ~(alignment_bytes - 1); + ret = mvx_mmu_map_pages(fw->mmu, va, pages, MVX_ATTR_SHARED_RW, + MVX_ACCESS_READ_WRITE); + if (ret == 0) { + va_next = va + MVE_PAGE_SIZE * pages->capacity; + total_used_pages = (va_next - va0) >> MVE_PAGE_SHIFT; + break; + } + + //va += 16 * 1024 * 1024; /* 16MB */ + va += alignment_bytes; + } + + if (ret != 0) { + MVX_LOG_PRINT(&mvx_log_if, MVX_LOG_WARNING, + "Failed to find memory region for RPC alloc."); + mvx_mmu_free_pages(pages); + va = 0; + goto unlock_mutex; + } + + switch (p->mem_alloc.region) { + case MVE_MEM_REGION_PROTECTED: + fw->latest_used_region_protected_pages = total_used_pages; + break; + case MVE_MEM_REGION_OUTBUF: + fw->latest_used_region_outbuf_pages = total_used_pages; + break; + default: + break; + } + + hash_add(fw->rpc_mem, &pages->node, pages->va); + + MVX_LOG_PRINT( + &mvx_log_if, MVX_LOG_INFO, + "RPC alloc memory. size=%u, max_size=%u, region=%u, npages=%zu, va=0x%x.", + p->mem_alloc.size, p->mem_alloc.max_size, p->mem_alloc.region, + npages, va); + +unlock_mutex: + if (IS_ENABLED(CONFIG_DEBUG_FS)) + mutex_unlock(&fw->rpcmem_mutex); + +out: + rpc_area->size = sizeof(uint32_t); + p->data[0] = va; +} + +static void rpc_mem_resize(struct mvx_fw *fw, + struct mve_rpc_communication_area *rpc_area) +{ + union mve_rpc_params *p = &rpc_area->params; + struct mvx_mmu_pages *pages; + mvx_mmu_va va = 0; + int ret; + + if (IS_ENABLED(CONFIG_DEBUG_FS)) { + ret = mutex_lock_interruptible(&fw->rpcmem_mutex); + if (ret != 0) { + MVX_LOG_PRINT(&mvx_log_if, MVX_LOG_ERROR, + "Cannot protect RPC alloc list."); + goto out; + } + } + + pages = find_pages(fw, p->mem_resize.ve_pointer); + if (pages != 0) { + size_t size; + size_t npages; + int ret; + + if (fw->fw_bin->securevideo != false) { + size = mvx_mmu_size_pages(pages); + + /* The size of RPC memory is only increased. */ + if (size < p->mem_resize.new_size) { + struct dma_buf *dmabuf; + + size = p->mem_resize.new_size - size; + + /* Allocate a new secure DMA buffer. */ + dmabuf = mvx_secure_mem_alloc( + fw->fw_bin->secure.secure, size); + if (IS_ERR(dmabuf)) + goto unlock_mutex; + + ret = mvx_mmu_pages_append_dma_buf(pages, + dmabuf); + if (ret != 0) { + dma_buf_put(dmabuf); + goto unlock_mutex; + } + } + } else { + /* Resize the allocated pages. */ + npages = DIV_ROUND_UP(p->mem_resize.new_size, + MVE_PAGE_SIZE); + ret = mvx_mmu_resize_pages(pages, npages); + if (ret != 0) { + MVX_LOG_PRINT( + &mvx_log_if, MVX_LOG_WARNING, + "Failed to resize RPC mapped pages. ret=%d.", + ret); + goto unlock_mutex; + } + } + + va = pages->va; + } else { + MVX_LOG_PRINT(&mvx_log_if, MVX_LOG_WARNING, + "Could not find pages for RPC resize. va=0x%x.", + p->mem_resize.ve_pointer); + } + + fw->client_ops->flush_mmu(fw->csession); + + MVX_LOG_PRINT(&mvx_log_if, MVX_LOG_INFO, + "RPC resize memory. va=0x%x, new_size=%u.", + p->mem_resize.ve_pointer, p->mem_resize.new_size); + +unlock_mutex: + if (IS_ENABLED(CONFIG_DEBUG_FS)) + mutex_unlock(&fw->rpcmem_mutex); + +out: + rpc_area->size = sizeof(uint32_t); + p->data[0] = va; +} + +static void rpc_mem_free(struct mvx_fw *fw, + struct mve_rpc_communication_area *rpc_area) +{ + union mve_rpc_params *p = &rpc_area->params; + struct mvx_mmu_pages *pages; + int ret; + + if (IS_ENABLED(CONFIG_DEBUG_FS)) { + ret = mutex_lock_interruptible(&fw->rpcmem_mutex); + if (ret != 0) { + MVX_LOG_PRINT(&mvx_log_if, MVX_LOG_ERROR, + "Cannot protect RPC alloc list."); + return; + } + } + + pages = find_pages(fw, p->mem_free.ve_pointer); + if (pages != NULL) { + hash_del(&pages->node); + if (MVE_MEM_REGION_PROTECTED_ADDR_BEGIN <= + p->mem_free.ve_pointer && + p->mem_free.ve_pointer < + MVE_MEM_REGION_PROTECTED_ADDR_END) { + fw->latest_used_region_protected_pages = + fw->latest_used_region_protected_pages > + pages->capacity ? + fw->latest_used_region_protected_pages - + pages->capacity : + 0; + } else if (MVE_MEM_REGION_FRAMEBUF_ADDR_BEGIN <= + p->mem_free.ve_pointer && + p->mem_free.ve_pointer < + MVE_MEM_REGION_FRAMEBUF_ADDR_END) { + fw->latest_used_region_outbuf_pages = + fw->latest_used_region_outbuf_pages > + pages->capacity ? + fw->latest_used_region_outbuf_pages - + pages->capacity : + 0; + } + mvx_mmu_free_pages(pages); + } else { + MVX_LOG_PRINT(&mvx_log_if, MVX_LOG_WARNING, + "Could not find pages for RPC free. va=0x%x.", + p->mem_free.ve_pointer); + } + + fw->client_ops->flush_mmu(fw->csession); + + MVX_LOG_PRINT(&mvx_log_if, MVX_LOG_INFO, "RPC free memory. va=0x%x.", + p->mem_free.ve_pointer); + + rpc_area->size = 0; + if (IS_ENABLED(CONFIG_DEBUG_FS)) + mutex_unlock(&fw->rpcmem_mutex); +} + +/** + * rstrip() - Remove trailing chars from string. + * @s: String to be stripped. + * @t: String containing chars to be stripped. + * + * Return: Pointer to stripped string. + */ +static char *rstrip(char *str, char *trim) +{ + size_t l = strlen(str); + + while (l-- > 0) { + char *t; + + for (t = trim; *t != '\0'; t++) + if (str[l] == *t) { + str[l] = '\0'; + break; + } + + if (*t == '\0') + break; + } + + return str; +} + +static int handle_rpc_v2(struct mvx_fw *fw) +{ + struct mve_rpc_communication_area *rpc_area = fw->rpc; + int ret = 0; + + dma_sync_single_for_cpu(fw->dev, virt_to_phys(rpc_area), + sizeof(*rpc_area), DMA_FROM_DEVICE); + + if (rpc_area->state == MVE_RPC_STATE_PARAM) { + ret = 1; + + /* Log RPC request. */ + MVX_LOG_EXECUTE(&mvx_log_fwif_if, MVX_LOG_INFO, + log_rpc(fw->session, + MVX_LOG_FWIF_DIRECTION_FIRMWARE_TO_HOST, + rpc_area)); + + switch (rpc_area->call_id) { + case MVE_RPC_FUNCTION_DEBUG_PRINTF: { + MVX_LOG_PRINT( + &mvx_log_if, MVX_LOG_INFO, "RPC_PRINT=%s", + rstrip(rpc_area->params.debug_print.string, + "\n\r")); + break; + } + case MVE_RPC_FUNCTION_MEM_ALLOC: { + rpc_mem_alloc(fw, rpc_area); + break; + } + case MVE_RPC_FUNCTION_MEM_RESIZE: { + rpc_mem_resize(fw, rpc_area); + break; + } + case MVE_RPC_FUNCTION_MEM_FREE: { + rpc_mem_free(fw, rpc_area); + break; + } + default: + MVX_LOG_PRINT(&mvx_log_if, MVX_LOG_INFO, + "Unsupported RPC request. call_id=%u.", + rpc_area->call_id); + ret = -EINVAL; + break; + } + + /* + * Make sure the whole RPC message body has been written before + * the RPC message area is returned to the firmware. + */ + wmb(); + rpc_area->state = MVE_RPC_STATE_RETURN; + + /* Make sure state is written before memory is flushed. */ + wmb(); + dma_sync_single_for_device(fw->dev, virt_to_phys(rpc_area), + sizeof(*rpc_area), DMA_TO_DEVICE); + + /* Log RPC response. */ + MVX_LOG_EXECUTE(&mvx_log_fwif_if, MVX_LOG_INFO, + log_rpc(fw->session, + MVX_LOG_FWIF_DIRECTION_HOST_TO_FIRMWARE, + rpc_area)); + + fw->client_ops->send_irq(fw->csession); + } + + return ret; +} + +#define RAM_PRINTBUF_SIZE MVE_FW_PRINT_RAM_SIZE +#define RAM_PRINT_MAX_LEN (128) +#define RAM_PRINT_BUF_CNT ((RAM_PRINTBUF_SIZE / RAM_PRINT_MAX_LEN) - 1) +#define RAM_PRINT_FLAG (0x11223356) +static int handle_fw_ram_print_v2(struct mvx_fw *fw) +{ + struct mve_fw_ram_print_head_aera *rpt_area = fw->fw_print_ram; + int ret = 0; + uint32_t wr_cnt; + uint32_t rd_cnt = 0; + uint32_t cnt; + uint32_t rd_idx; + char *print_buf = NULL; + + dma_sync_single_for_cpu(fw->dev, virt_to_phys(rpt_area), + sizeof(*rpt_area), DMA_FROM_DEVICE); + + wr_cnt = rpt_area->wr_cnt; + rd_cnt = rpt_area->rd_cnt; + cnt = (rd_cnt <= wr_cnt) ? wr_cnt - rd_cnt : + wr_cnt - rd_cnt + (uint32_t)~0u; + + if (RAM_PRINT_FLAG == rpt_area->flag && RAM_PRINT_BUF_CNT > rpt_area->index && cnt) { + while (cnt--) { + rd_idx = rd_cnt % RAM_PRINT_BUF_CNT; + print_buf = (fw->fw_print_ram + RAM_PRINT_MAX_LEN) + + rd_idx * RAM_PRINT_MAX_LEN; + MVX_LOG_PRINT(&mvx_log_if, MVX_LOG_WARNING, + "FW-%u: %s\n", rd_cnt, print_buf); + rd_cnt++; + } + + rpt_area->rd_cnt = rd_cnt; + /* Make sure rpt_area->rd_cnt is written before memory is flushed. */ + wmb(); + dma_sync_single_for_device(fw->dev, + virt_to_phys(&rpt_area->rd_cnt), + sizeof(rpt_area->rd_cnt), + DMA_TO_DEVICE); + + ret = 1; + } + + return ret; +} + +static void unmap_msq(struct mvx_fw *fw, void **data, enum mvx_fw_region region) +{ + int ret; + mvx_mmu_va begin; + mvx_mmu_va end; + + if (*data == NULL) + return; + + ret = fw->ops.get_region(region, &begin, &end); + if (ret == 0) + mvx_mmu_unmap_va(fw->mmu, begin, MVE_PAGE_SIZE); + + mvx_mmu_free_page(fw->dev, virt_to_phys(*data)); + + *data = NULL; +} + +static int map_msq(struct mvx_fw *fw, void **data, enum mvx_fw_region region) +{ + phys_addr_t page; + mvx_mmu_va begin; + mvx_mmu_va end; + int ret; + + /* Get virtual address where the message queue is to be mapped. */ + ret = fw->ops.get_region(region, &begin, &end); + if (ret != 0) + return ret; + + /* Allocate page and store Linux logical address in 'data'. */ + page = mvx_mmu_alloc_page(fw->dev); + if (page == 0) + return -ENOMEM; + + /* Memory map region. */ + ret = mvx_mmu_map_pa(fw->mmu, begin, page, MVE_PAGE_SIZE, + MVX_ATTR_SHARED_RW, MVX_ACCESS_READ_WRITE); + if (ret != 0) { + mvx_mmu_free_page(fw->dev, page); + return ret; + } + + *data = phys_to_virt(page); + + return 0; +} + +static void unmap_fw_print_ram(struct mvx_fw *fw, void **data, + enum mvx_fw_region region) +{ + int ret; + mvx_mmu_va begin; + mvx_mmu_va end; + + if (*data == NULL) + return; + + ret = fw->ops.get_region(region, &begin, &end); + if (ret == 0) + mvx_mmu_unmap_va(fw->mmu, begin, MVE_FW_PRINT_RAM_SIZE); + + mvx_mmu_free_contiguous_pages(fw->dev, virt_to_phys(*data), + MVE_FW_PRINT_RAM_SIZE >> PAGE_SHIFT); + + *data = NULL; +} + +static int map_fw_print_ram(struct mvx_fw *fw, void **data, + enum mvx_fw_region region) +{ + phys_addr_t page; + mvx_mmu_va begin; + mvx_mmu_va end; + int ret; + + /* Get virtual address where the message queue is to be mapped. */ + ret = fw->ops.get_region(region, &begin, &end); + if (ret != 0) + return ret; + + /* Allocate pages and store Linux logical address in 'data'. */ + page = mvx_mmu_alloc_contiguous_pages(fw->dev, MVE_FW_PRINT_RAM_SIZE >> + PAGE_SHIFT); + if (page == 0) + return -ENOMEM; + + /* Memory map region. */ + ret = mvx_mmu_map_pa(fw->mmu, begin, page, MVE_FW_PRINT_RAM_SIZE, + MVX_ATTR_SHARED_RW, MVX_ACCESS_READ_WRITE); + if (ret != 0) { + mvx_mmu_free_contiguous_pages( + fw->dev, page, MVE_FW_PRINT_RAM_SIZE >> PAGE_SHIFT); + return ret; + } + + *data = phys_to_virt(page); + + return 0; +} + +static void unmap_protocol_v2(struct mvx_fw *fw) +{ + struct mvx_mmu_pages *pages; + struct hlist_node *tmp; + int bkt; + + unmap_msq(fw, &fw->msg_host, MVX_FW_REGION_MSG_HOST); + unmap_msq(fw, &fw->msg_mve, MVX_FW_REGION_MSG_MVE); + unmap_msq(fw, &fw->buf_in_host, MVX_FW_REGION_BUF_IN_HOST); + unmap_msq(fw, &fw->buf_in_mve, MVX_FW_REGION_BUF_IN_MVE); + unmap_msq(fw, &fw->buf_out_host, MVX_FW_REGION_BUF_OUT_HOST); + unmap_msq(fw, &fw->buf_out_mve, MVX_FW_REGION_BUF_OUT_MVE); + unmap_msq(fw, &fw->rpc, MVX_FW_REGION_RPC); + unmap_fw_print_ram(fw, &fw->fw_print_ram, MVX_FW_REGION_PRINT_RAM); + + fw->latest_used_region_protected_pages = 0; + fw->latest_used_region_outbuf_pages = 0; + + hash_for_each_safe(fw->rpc_mem, bkt, tmp, pages, node) { + hash_del(&pages->node); + mvx_mmu_free_pages(pages); + } +} + +static int map_protocol_v2(struct mvx_fw *fw) +{ + int ret; + + ret = map_msq(fw, &fw->msg_host, MVX_FW_REGION_MSG_HOST); + if (ret != 0) + goto unmap_fw; + + ret = map_msq(fw, &fw->msg_mve, MVX_FW_REGION_MSG_MVE); + if (ret != 0) + goto unmap_fw; + + ret = map_msq(fw, &fw->buf_in_host, MVX_FW_REGION_BUF_IN_HOST); + if (ret != 0) + goto unmap_fw; + + ret = map_msq(fw, &fw->buf_in_mve, MVX_FW_REGION_BUF_IN_MVE); + if (ret != 0) + goto unmap_fw; + + ret = map_msq(fw, &fw->buf_out_host, MVX_FW_REGION_BUF_OUT_HOST); + if (ret != 0) + goto unmap_fw; + + ret = map_msq(fw, &fw->buf_out_mve, MVX_FW_REGION_BUF_OUT_MVE); + if (ret != 0) + goto unmap_fw; + + ret = map_msq(fw, &fw->rpc, MVX_FW_REGION_RPC); + if (ret != 0) + goto unmap_fw; + + ret = map_fw_print_ram(fw, &fw->fw_print_ram, MVX_FW_REGION_PRINT_RAM); + if (ret != 0) + goto unmap_fw; + + return 0; + +unmap_fw: + unmap_protocol_v2(fw); + + return ret; +} + +static void print_pair(char *name_in, char *name_out, struct device *device, + struct mve_comm_area_host *host, + struct mve_comm_area_mve *mve, int ind, + struct seq_file *s) +{ + dma_sync_single_for_cpu(device, virt_to_phys(mve), MVE_PAGE_SIZE, + DMA_FROM_DEVICE); + mvx_seq_printf(s, name_in, ind, "wr=%10d, rd=%10d, avail=%10d\n", + host->in_wpos, mve->in_rpos, + (uint16_t)(host->in_wpos - mve->in_rpos)); + mvx_seq_printf(s, name_out, ind, "wr=%10d, rd=%10d, avail=%10d\n", + mve->out_wpos, host->out_rpos, + (uint16_t)(mve->out_wpos - host->out_rpos)); +} + +static int print_stat_v2(struct mvx_fw *fw, int ind, struct seq_file *s) +{ + print_pair("Msg host->mve", "Msg host<-mve", fw->dev, fw->msg_host, + fw->msg_mve, ind, s); + print_pair("Inbuf host->mve", "Inbuf host<-mve", fw->dev, + fw->buf_in_host, fw->buf_in_mve, ind, s); + print_pair("Outbuf host->mve", "Outbuf host<-mve", fw->dev, + fw->buf_out_host, fw->buf_out_mve, ind, s); + + return 0; +} + +static ssize_t get_capacity(int rpos, int wpos) +{ + ssize_t capacity; + + capacity = wpos - rpos; + if (capacity < 0) + capacity += MVE_COMM_QUEUE_SIZE_IN_WORDS; + + return capacity * sizeof(uint32_t); +} + +static void print_debug_v2(struct mvx_fw *fw) +{ + struct mve_comm_area_host *msg_host = fw->msg_host; + struct mve_comm_area_mve *msg_mve = fw->msg_mve; + unsigned int rpos, wpos; + ssize_t capacity; + struct mve_msg_header header; + + dma_sync_single_for_cpu(fw->dev, virt_to_phys(msg_mve), MVE_PAGE_SIZE, + DMA_FROM_DEVICE); + + MVX_LOG_PRINT_SESSION( + &mvx_log_session_if, MVX_LOG_WARNING, fw->session, + "Dump message queue. msg={host={out_rpos=%u, in_wpos=%u}, mve={out_wpos=%u, in_rpos=%u}}", + msg_host->out_rpos, msg_host->in_wpos, msg_mve->out_wpos, + msg_mve->in_rpos); + + rpos = msg_host->out_rpos; + wpos = msg_mve->out_wpos; + + while ((capacity = get_capacity(rpos, wpos)) >= sizeof(header)) { + unsigned int pos; + + pos = read32n(msg_mve->out_data, rpos, (uint32_t *)&header, + sizeof(header)); + + MVX_LOG_PRINT_SESSION( + &mvx_log_session_if, MVX_LOG_WARNING, fw->session, + "queue={rpos=%u, wpos=%u, capacity=%u}, msg={code=%u, size=%u}", + rpos, wpos, capacity, header.code, header.size); + + capacity = get_capacity(pos, wpos); + if (header.size > capacity) { + MVX_LOG_PRINT_SESSION( + &mvx_log_session_if, MVX_LOG_WARNING, + fw->session, + "Size is larger than capacity. capacity=%zd, size=%u.", + capacity, header.size); + return; + } + + rpos = (pos + DIV_ROUND_UP(header.size, sizeof(uint32_t))) % + MVE_COMM_QUEUE_SIZE_IN_WORDS; + } +} + +int mvx_fw_send_idle_ack_v2(struct mvx_fw *fw) +{ + int ret = 0; + + ret = write_message(fw, fw->msg_host, fw->msg_mve, + MVE_REQUEST_CODE_IDLE_ACK, NULL, 0, + MVX_LOG_FWIF_CHANNEL_MESSAGE); + + return ret; +} + +/**************************************************************************** + * Exported functions + ****************************************************************************/ + +int mvx_fw_construct_v2(struct mvx_fw *fw, struct mvx_fw_bin *fw_bin, + struct mvx_mmu *mmu, struct mvx_session *session, + struct mvx_client_ops *client_ops, + struct mvx_client_session *csession, + unsigned int ncores, unsigned char major, + unsigned char minor) +{ + int ret; + + ret = mvx_fw_construct(fw, fw_bin, mmu, session, client_ops, csession, + ncores); + if (ret != 0) + return ret; + + fw->ops.map_protocol = map_protocol_v2; + fw->ops.unmap_protocol = unmap_protocol_v2; + fw->ops.get_region = get_region_v2; + fw->ops.get_message = get_message_v2; + fw->ops.put_message = put_message_v2; + fw->ops.handle_rpc = handle_rpc_v2; + fw->ops.handle_fw_ram_print = handle_fw_ram_print_v2; + fw->ops.print_stat = print_stat_v2; + fw->ops.print_debug = print_debug_v2; + fw->ops_priv.send_idle_ack = NULL; + fw->ops_priv.to_mve_profile = mvx_fw_to_mve_profile_v2; + fw->ops_priv.to_mve_level = mvx_fw_to_mve_level_v2; + + if (major == 2 && minor >= 4) + fw->ops_priv.send_idle_ack = mvx_fw_send_idle_ack_v2; + + return 0; +} diff --git a/drivers/media/platform/canaan/vpu/mvx_firmware_v3.c b/drivers/media/platform/canaan/vpu/mvx_firmware_v3.c new file mode 100644 index 0000000000000..f441ee9880faf --- /dev/null +++ b/drivers/media/platform/canaan/vpu/mvx_firmware_v3.c @@ -0,0 +1,162 @@ +// SPDX-License-Identifier: GPL-2.0-only +/* + * The confidential and proprietary information contained in this file may + * only be used by a person authorised under and to the extent permitted + * by a subsisting licensing agreement from Arm Technology (China) Co., Ltd. + * + * (C) COPYRIGHT 2021-2021 Arm Technology (China) Co., Ltd. + * ALL RIGHTS RESERVED + * + * This entire notice must be reproduced on all copies of this file + * and copies of this file may only be made by a person if such person is + * permitted to do so under the terms of a subsisting license agreement + * from Arm Technology (China) Co., Ltd. + * + * 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. + * + */ + +/**************************************************************************** + * Includes + ****************************************************************************/ + +#include "mvx_firmware_priv.h" +#include "mve_protocol_def_v3.h" + +/**************************************************************************** + * Static functions + ****************************************************************************/ + +static int get_region_v3(enum mvx_fw_region region, uint32_t *begin, + uint32_t *end) +{ + switch (region) { + case MVX_FW_REGION_CORE_0: + *begin = MVE_MEM_REGION_FW_INSTANCE0_ADDR_BEGIN; + *end = MVE_MEM_REGION_FW_INSTANCE0_ADDR_END; + break; + case MVX_FW_REGION_CORE_1: + *begin = MVE_MEM_REGION_FW_INSTANCE1_ADDR_BEGIN; + *end = MVE_MEM_REGION_FW_INSTANCE1_ADDR_END; + break; + case MVX_FW_REGION_CORE_2: + *begin = MVE_MEM_REGION_FW_INSTANCE2_ADDR_BEGIN; + *end = MVE_MEM_REGION_FW_INSTANCE2_ADDR_END; + break; + case MVX_FW_REGION_CORE_3: + *begin = MVE_MEM_REGION_FW_INSTANCE3_ADDR_BEGIN; + *end = MVE_MEM_REGION_FW_INSTANCE3_ADDR_END; + break; + case MVX_FW_REGION_CORE_4: + *begin = MVE_MEM_REGION_FW_INSTANCE4_ADDR_BEGIN; + *end = MVE_MEM_REGION_FW_INSTANCE4_ADDR_END; + break; + case MVX_FW_REGION_CORE_5: + *begin = MVE_MEM_REGION_FW_INSTANCE5_ADDR_BEGIN; + *end = MVE_MEM_REGION_FW_INSTANCE5_ADDR_END; + break; + case MVX_FW_REGION_CORE_6: + *begin = MVE_MEM_REGION_FW_INSTANCE6_ADDR_BEGIN; + *end = MVE_MEM_REGION_FW_INSTANCE6_ADDR_END; + break; + case MVX_FW_REGION_CORE_7: + *begin = MVE_MEM_REGION_FW_INSTANCE7_ADDR_BEGIN; + *end = MVE_MEM_REGION_FW_INSTANCE7_ADDR_END; + break; + case MVX_FW_REGION_PROTECTED: + *begin = MVE_MEM_REGION_PROTECTED_ADDR_BEGIN; + *end = MVE_MEM_REGION_PROTECTED_ADDR_END; + break; + case MVX_FW_REGION_FRAMEBUF: + *begin = MVE_MEM_REGION_FRAMEBUF_ADDR_BEGIN; + *end = MVE_MEM_REGION_FRAMEBUF_ADDR_END; + break; + case MVX_FW_REGION_MSG_HOST: + *begin = MVE_COMM_MSG_INQ_ADDR; + *end = MVE_COMM_MSG_INQ_ADDR + MVE_PAGE_SIZE; + break; + case MVX_FW_REGION_MSG_MVE: + *begin = MVE_COMM_MSG_OUTQ_ADDR; + *end = MVE_COMM_MSG_OUTQ_ADDR + MVE_PAGE_SIZE; + break; + case MVX_FW_REGION_BUF_IN_HOST: + *begin = MVE_COMM_BUF_INQ_ADDR; + *end = MVE_COMM_BUF_INQ_ADDR + MVE_PAGE_SIZE; + break; + case MVX_FW_REGION_BUF_IN_MVE: + *begin = MVE_COMM_BUF_INRQ_ADDR; + *end = MVE_COMM_BUF_INRQ_ADDR + MVE_PAGE_SIZE; + break; + case MVX_FW_REGION_BUF_OUT_HOST: + *begin = MVE_COMM_BUF_OUTQ_ADDR; + *end = MVE_COMM_BUF_OUTQ_ADDR + MVE_PAGE_SIZE; + break; + case MVX_FW_REGION_BUF_OUT_MVE: + *begin = MVE_COMM_BUF_OUTRQ_ADDR; + *end = MVE_COMM_BUF_OUTRQ_ADDR + MVE_PAGE_SIZE; + break; + case MVX_FW_REGION_RPC: + *begin = MVE_COMM_RPC_ADDR; + *end = MVE_COMM_RPC_ADDR + MVE_PAGE_SIZE; + break; + case MVX_FW_REGION_PRINT_RAM: + *begin = MVE_FW_PRINT_RAM_ADDR; + *end = MVE_FW_PRINT_RAM_ADDR + MVE_FW_PRINT_RAM_SIZE; + break; + default: + return -EINVAL; + } + + return 0; +} + +static int to_mve_profile_v3(unsigned int mvx_profile, uint16_t *mve_profile) +{ + int ret = 0; + + switch (mvx_profile) { + case MVX_PROFILE_H264_HIGH_10: + *mve_profile = + MVE_OPT_PROFILE_H264_HIGH; //MVE_OPT_PROFILE_H264_HIGH_10 + break; + default: + ret = mvx_fw_to_mve_profile_v2(mvx_profile, mve_profile); + } + + return ret; +} + +/**************************************************************************** + * Exported functions + ****************************************************************************/ + +int mvx_fw_construct_v3(struct mvx_fw *fw, struct mvx_fw_bin *fw_bin, + struct mvx_mmu *mmu, struct mvx_session *session, + struct mvx_client_ops *client_ops, + struct mvx_client_session *csession, + unsigned int ncores, unsigned char major, + unsigned char minor) +{ + int ret; + + ret = mvx_fw_construct_v2(fw, fw_bin, mmu, session, client_ops, + csession, ncores, major, minor); + if (ret != 0) + return ret; + + fw->ops.get_region = get_region_v3; + fw->ops_priv.to_mve_profile = to_mve_profile_v3; + + if (major == 3 && minor >= 1) + fw->ops_priv.send_idle_ack = mvx_fw_send_idle_ack_v2; + + return 0; +} diff --git a/drivers/media/platform/canaan/vpu/mvx_hwreg.c b/drivers/media/platform/canaan/vpu/mvx_hwreg.c new file mode 100644 index 0000000000000..a4f0647823177 --- /dev/null +++ b/drivers/media/platform/canaan/vpu/mvx_hwreg.c @@ -0,0 +1,437 @@ +// SPDX-License-Identifier: GPL-2.0-only +/* + * The confidential and proprietary information contained in this file may + * only be used by a person authorised under and to the extent permitted + * by a subsisting licensing agreement from Arm Technology (China) Co., Ltd. + * + * (C) COPYRIGHT 2021-2021 Arm Technology (China) Co., Ltd. + * ALL RIGHTS RESERVED + * + * This entire notice must be reproduced on all copies of this file + * and copies of this file may only be made by a person if such person is + * permitted to do so under the terms of a subsisting license agreement + * from Arm Technology (China) Co., Ltd. + * + * 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. + * + */ + +/**************************************************************************** + * Includes + ****************************************************************************/ + +#include +#include +#include "mvx_log_group.h" +#include "mvx_hwreg.h" +#include "mvx_hwreg_v500.h" +#include "mvx_hwreg_v550.h" +#include "mvx_hwreg_v61.h" +#include "mvx_hwreg_v52_v76.h" +#include "mvx_pm_runtime.h" + +/**************************************************************************** + * Static functions + ****************************************************************************/ + +static unsigned int get_offset(enum mvx_hwreg_what what) +{ + switch (what) { + case MVX_HWREG_HARDWARE_ID: + return 0x0; + case MVX_HWREG_ENABLE: + return 0x4; + case MVX_HWREG_NCORES: + return 0x8; + case MVX_HWREG_NLSID: + return 0xc; + case MVX_HWREG_CORELSID: + return 0x10; + case MVX_HWREG_JOBQUEUE: + return 0x14; + case MVX_HWREG_IRQVE: + return 0x18; + case MVX_HWREG_CLKFORCE: + return 0x24; + case MVX_HWREG_FUSE: + return 0x34; + case MVX_HWREG_PROTCTRL: + return 0x40; + case MVX_HWREG_RESET: + return 0x50; + default: + return 0; + } +} + +static unsigned int get_lsid_offset(unsigned int lsid, enum mvx_hwreg_lsid what) +{ + unsigned int offset = 0x0200 + 0x40 * lsid; + + switch (what) { + case MVX_HWREG_CTRL: + offset += 0x0; + break; + case MVX_HWREG_MMU_CTRL: + offset += 0x4; + break; + case MVX_HWREG_NPROT: + offset += 0x8; + break; + case MVX_HWREG_ALLOC: + offset += 0xc; + break; + case MVX_HWREG_FLUSH_ALL: + offset += 0x10; + break; + case MVX_HWREG_SCHED: + offset += 0x14; + break; + case MVX_HWREG_TERMINATE: + offset += 0x18; + break; + case MVX_HWREG_LIRQVE: + offset += 0x1c; + break; + case MVX_HWREG_IRQHOST: + offset += 0x20; + break; + case MVX_HWREG_INTSIG: + offset += 0x24; + break; + case MVX_HWREG_STREAMID: + offset += 0x2c; + break; + case MVX_HWREG_BUSATTR_0: + offset += 0x30; + break; + case MVX_HWREG_BUSATTR_1: + offset += 0x34; + break; + case MVX_HWREG_BUSATTR_2: + offset += 0x38; + break; + case MVX_HWREG_BUSATTR_3: + offset += 0x3c; + break; + default: + return 0; + } + + return offset; +} + +static enum mvx_hw_id get_hw_id(void *registers, uint32_t *revision, + uint32_t *patch) +{ + uint32_t value; + + value = readl(registers); + + if (revision != NULL) + *revision = (value >> 8) & 0xff; + + if (patch != NULL) + *patch = value & 0xff; + + switch (value >> 16) { + case 0x5650: + return MVE_v500; + case 0x5655: + return MVE_v550; + case 0x5660: + case 0x5661: + return MVE_v61; + case 0x5662: + case 0x5663: + case 0x5664: + return MVE_v52_v76; + default: + MVX_LOG_PRINT(&mvx_log_dev, MVX_LOG_ERROR, + "Unknown hardware version. version=0x%08x.", + value); + break; + } + + return MVE_Unknown; +} + +static int regs_show(struct seq_file *s, void *v) +{ + struct mvx_hwreg *hwreg = (struct mvx_hwreg *)s->private; + int ret; + + ret = mvx_pm_runtime_get_sync(hwreg->dev); + if (ret < 0) + return 0; + + seq_printf(s, "HARDWARE_ID = 0x%08x\n", + mvx_hwreg_read(hwreg, MVX_HWREG_HARDWARE_ID)); + seq_printf(s, "ENABLE = 0x%08x\n", + mvx_hwreg_read(hwreg, MVX_HWREG_ENABLE)); + seq_printf(s, "NCORES = 0x%08x\n", + mvx_hwreg_read(hwreg, MVX_HWREG_NCORES)); + seq_printf(s, "NLSID = 0x%08x\n", + mvx_hwreg_read(hwreg, MVX_HWREG_NLSID)); + seq_printf(s, "CORELSID = 0x%08x\n", + mvx_hwreg_read(hwreg, MVX_HWREG_CORELSID)); + seq_printf(s, "JOBQUEUE = 0x%08x\n", + mvx_hwreg_read(hwreg, MVX_HWREG_JOBQUEUE)); + seq_printf(s, "IRQVE = 0x%08x\n", + mvx_hwreg_read(hwreg, MVX_HWREG_IRQVE)); + seq_printf(s, "CLKFORCE = 0x%08x\n", + mvx_hwreg_read(hwreg, MVX_HWREG_CLKFORCE)); + seq_printf(s, "FUSE = 0x%08x\n", mvx_hwreg_read(hwreg, MVX_HWREG_FUSE)); + seq_printf(s, "PROTCTRL = 0x%08x\n", + mvx_hwreg_read(hwreg, MVX_HWREG_PROTCTRL)); + seq_printf(s, "RESET = 0x%08x\n", + mvx_hwreg_read(hwreg, MVX_HWREG_RESET)); + seq_puts(s, "\n"); + + mvx_pm_runtime_put_sync(hwreg->dev); + + return 0; +} + +static int regs_open(struct inode *inode, struct file *file) +{ + return single_open(file, regs_show, inode->i_private); +} + +static const struct file_operations regs_fops = { .open = regs_open, + .read = seq_read, + .llseek = seq_lseek, + .release = single_release }; + +static int regs_debugfs_init(struct mvx_hwreg *hwreg, struct dentry *parent) +{ + struct dentry *dentry; + + dentry = debugfs_create_file("regs", 0400, parent, hwreg, ®s_fops); + if (IS_ERR_OR_NULL(dentry)) + return -ENOMEM; + + return 0; +} + +static int lsid_regs_show(struct seq_file *s, void *v) +{ + struct mvx_lsid_hwreg *lsid_hwreg = (struct mvx_lsid_hwreg *)s->private; + struct mvx_hwreg *hwreg = lsid_hwreg->hwreg; + int lsid = lsid_hwreg->lsid; + int ret; + + ret = mvx_pm_runtime_get_sync(hwreg->dev); + if (ret < 0) + return 0; + + seq_printf(s, "CTRL = 0x%08x\n", + mvx_hwreg_read_lsid(hwreg, lsid, MVX_HWREG_CTRL)); + seq_printf(s, "MMU_CTRL = 0x%08x\n", + mvx_hwreg_read_lsid(hwreg, lsid, MVX_HWREG_MMU_CTRL)); + seq_printf(s, "NPROT = 0x%08x\n", + mvx_hwreg_read_lsid(hwreg, lsid, MVX_HWREG_NPROT)); + seq_printf(s, "ALLOC = 0x%08x\n", + mvx_hwreg_read_lsid(hwreg, lsid, MVX_HWREG_ALLOC)); + seq_printf(s, "FLUSH_ALL = 0x%08x\n", + mvx_hwreg_read_lsid(hwreg, lsid, MVX_HWREG_FLUSH_ALL)); + seq_printf(s, "SCHED = 0x%08x\n", + mvx_hwreg_read_lsid(hwreg, lsid, MVX_HWREG_SCHED)); + seq_printf(s, "TERMINATE = 0x%08x\n", + mvx_hwreg_read_lsid(hwreg, lsid, MVX_HWREG_TERMINATE)); + seq_printf(s, "LIRQVE = 0x%08x\n", + mvx_hwreg_read_lsid(hwreg, lsid, MVX_HWREG_LIRQVE)); + seq_printf(s, "IRQHOST = 0x%08x\n", + mvx_hwreg_read_lsid(hwreg, lsid, MVX_HWREG_IRQHOST)); + seq_printf(s, "INTSIG = 0x%08x\n", + mvx_hwreg_read_lsid(hwreg, lsid, MVX_HWREG_INTSIG)); + seq_printf(s, "STREAMID = 0x%08x\n", + mvx_hwreg_read_lsid(hwreg, lsid, MVX_HWREG_STREAMID)); + seq_printf(s, "BUSATTR_0 = 0x%08x\n", + mvx_hwreg_read_lsid(hwreg, lsid, MVX_HWREG_BUSATTR_0)); + seq_printf(s, "BUSATTR_1 = 0x%08x\n", + mvx_hwreg_read_lsid(hwreg, lsid, MVX_HWREG_BUSATTR_1)); + seq_printf(s, "BUSATTR_2 = 0x%08x\n", + mvx_hwreg_read_lsid(hwreg, lsid, MVX_HWREG_BUSATTR_2)); + seq_printf(s, "BUSATTR_3 = 0x%08x\n", + mvx_hwreg_read_lsid(hwreg, lsid, MVX_HWREG_BUSATTR_3)); + seq_puts(s, "\n"); + + mvx_pm_runtime_put_sync(hwreg->dev); + + return 0; +} + +static int lsid_regs_open(struct inode *inode, struct file *file) +{ + return single_open(file, lsid_regs_show, inode->i_private); +} + +static const struct file_operations lsid_regs_fops = { .open = lsid_regs_open, + .read = seq_read, + .llseek = seq_lseek, + .release = + single_release }; + +static int lsid_regs_debugfs_init(struct mvx_lsid_hwreg *lsid_hwreg, + struct dentry *parent) +{ + struct dentry *dentry; + char name[20]; + + scnprintf(name, sizeof(name), "lsid%u_regs", lsid_hwreg->lsid); + + dentry = debugfs_create_file(name, 0400, parent, lsid_hwreg, + &lsid_regs_fops); + if (IS_ERR_OR_NULL(dentry)) + return -ENOMEM; + + return 0; +} + +int debugfs_init(struct mvx_hwreg *hwreg, struct dentry *parent) +{ + int ret; + + if (IS_ENABLED(CONFIG_DEBUG_FS)) { + int lsid; + + ret = regs_debugfs_init(hwreg, parent); + if (ret != 0) + return ret; + + for (lsid = 0; lsid < MVX_LSID_MAX; ++lsid) { + ret = lsid_regs_debugfs_init(&hwreg->lsid_hwreg[lsid], + parent); + if (ret != 0) + return ret; + } + } + + return 0; +} + +/**************************************************************************** + * Exported functions + ****************************************************************************/ + +int mvx_hwreg_construct(struct mvx_hwreg *hwreg, struct device *dev, + struct resource *res, struct dentry *parent) +{ + char const *name = dev_name(dev); + enum mvx_hw_id hw_id; + int ret; + int lsid; + + hwreg->dev = dev; + + hwreg->res = request_mem_region(res->start, resource_size(res), name); + if (hwreg->res == NULL) { + MVX_LOG_PRINT( + &mvx_log_dev, MVX_LOG_ERROR, + "Failed to request mem region. start=0x%llx, size=0x%llx.", + res->start, resource_size(res)); + return -EINVAL; + } + + hwreg->registers = ioremap(res->start, resource_size(res)); + if (hwreg->registers == NULL) { + MVX_LOG_PRINT( + &mvx_log_dev, MVX_LOG_ERROR, + "Failed to iomap region. start=0x%llx, size=0x%llx.", + res->start, resource_size(res)); + ret = -ENOMEM; + goto release_mem; + } + + hw_id = get_hw_id(hwreg->registers, NULL, NULL); + switch (hw_id) { + case MVE_v500: + hwreg->ops.get_formats = mvx_hwreg_get_formats_v500; + break; + case MVE_v550: + hwreg->ops.get_formats = mvx_hwreg_get_formats_v550; + break; + case MVE_v61: + hwreg->ops.get_formats = mvx_hwreg_get_formats_v61; + break; + case MVE_v52_v76: + hwreg->ops.get_formats = mvx_hwreg_get_formats_v52_v76; + break; + default: + ret = -EINVAL; + goto unmap_io; + } + + for (lsid = 0; lsid < MVX_LSID_MAX; ++lsid) { + hwreg->lsid_hwreg[lsid].hwreg = hwreg; + hwreg->lsid_hwreg[lsid].lsid = lsid; + } + + if (IS_ENABLED(CONFIG_DEBUG_FS)) { + ret = debugfs_init(hwreg, parent); + if (ret != 0) + goto unmap_io; + } + + return 0; + +unmap_io: + iounmap(hwreg->registers); + +release_mem: + release_mem_region(res->start, resource_size(res)); + + return ret; +} + +void mvx_hwreg_destruct(struct mvx_hwreg *hwreg) +{ + iounmap(hwreg->registers); + release_mem_region(hwreg->res->start, resource_size(hwreg->res)); +} + +uint32_t mvx_hwreg_read(struct mvx_hwreg *hwreg, enum mvx_hwreg_what what) +{ + unsigned int offset = get_offset(what); + + return readl(hwreg->registers + offset); +} + +void mvx_hwreg_write(struct mvx_hwreg *hwreg, enum mvx_hwreg_what what, + uint32_t value) +{ + unsigned int offset = get_offset(what); + + writel(value, hwreg->registers + offset); +} + +uint32_t mvx_hwreg_read_lsid(struct mvx_hwreg *hwreg, unsigned int lsid, + enum mvx_hwreg_lsid what) +{ + unsigned int offset = get_lsid_offset(lsid, what); + + return readl(hwreg->registers + offset); +} + +void mvx_hwreg_write_lsid(struct mvx_hwreg *hwreg, unsigned int lsid, + enum mvx_hwreg_lsid what, uint32_t value) +{ + unsigned int offset = get_lsid_offset(lsid, what); + + writel(value, hwreg->registers + offset); +} + +enum mvx_hw_id mvx_hwreg_get_hw_id(struct mvx_hwreg *hwreg, uint32_t *revision, + uint32_t *patch) +{ + return get_hw_id(hwreg->registers, revision, patch); +} diff --git a/drivers/media/platform/canaan/vpu/mvx_hwreg.h b/drivers/media/platform/canaan/vpu/mvx_hwreg.h new file mode 100644 index 0000000000000..f840473473755 --- /dev/null +++ b/drivers/media/platform/canaan/vpu/mvx_hwreg.h @@ -0,0 +1,215 @@ +/* SPDX-License-Identifier: GPL-2.0-only + * The confidential and proprietary information contained in this file may + * only be used by a person authorised under and to the extent permitted + * by a subsisting licensing agreement from Arm Technology (China) Co., Ltd. + * + * (C) COPYRIGHT 2021-2021 Arm Technology (China) Co., Ltd. + * ALL RIGHTS RESERVED + * + * This entire notice must be reproduced on all copies of this file + * and copies of this file may only be made by a person if such person is + * permitted to do so under the terms of a subsisting license agreement + * from Arm Technology (China) Co., Ltd. + * + * 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. + * + */ + +#ifndef _MVX_HW_REG_ +#define _MVX_HW_REG_ + +/**************************************************************************** + * Includes + ****************************************************************************/ + +#include +#include +#include +#include "mvx_if.h" +#include "mvx_lsid.h" + +/**************************************************************************** + * Defines + ****************************************************************************/ + +#define MVX_HWREG_FUSE_DISABLE_AFBC (1 << 0) +#define MVX_HWREG_FUSE_DISABLE_REAL (1 << 1) +#define MVX_HWREG_FUSE_DISABLE_VPX (1 << 2) +#define MVX_HWREG_FUSE_DISABLE_HEVC (1 << 3) + +#define MVE_JOBQUEUE_JOB_BITS 8 +#define MVE_JOBQUEUE_JOB_MASK ((1 << MVE_JOBQUEUE_JOB_BITS) - 1) +#define MVE_JOBQUEUE_JOB_INVALID 0xf +#define MVE_JOBQUEUE_NJOBS 4 +#define MVE_JOBQUEUE_LSID_SHIFT 0 +#define MVE_JOBQUEUE_LSID_BITS 4 +#define MVE_JOBQUEUE_LSID_MASK ((1 << MVE_JOBQUEUE_LSID_BITS) - 1) +#define MVE_JOBQUEUE_NCORES_SHIFT 4 +#define MVE_JOBQUEUE_NCORES_BITS 4 + +#define MVE_CORELSID_LSID_BITS 4 +#define MVX_CORELSID_LSID_MASK ((1 << MVE_CORELSID_LSID_BITS) - 1) + +#define MVE_CTRL_DISALLOW_SHIFT 0 +#define MVE_CTRL_DISALLOW_BITS 8 +#define MVE_CTRL_DISALLOW_MASK ((1 << MVE_CTRL_DISALLOW_BITS) - 1) +#define MVE_CTRL_MAXCORES_SHIFT 8 +#define MVE_CTRL_MAXCORES_BITS 4 +#define MVE_CTRL_MAXCORES_MASK ((1 << MVE_CTRL_MAXCORES_BITS) - 1) + +#define MVE_ALLOC_FREE 0 +#define MVE_ALLOC_NON_PROTECTED 1 +#define MVE_ALLOC_PROTECTED 2 + +/**************************************************************************** + * Types + ****************************************************************************/ + +struct device; + +/** + * enum mvx_hwreg_what - Hardware registers that can be read or written. + */ +enum mvx_hwreg_what { + MVX_HWREG_HARDWARE_ID, + MVX_HWREG_ENABLE, + MVX_HWREG_NCORES, + MVX_HWREG_NLSID, + MVX_HWREG_CORELSID, + MVX_HWREG_JOBQUEUE, + MVX_HWREG_IRQVE, + MVX_HWREG_CLKFORCE, + MVX_HWREG_FUSE, + MVX_HWREG_PROTCTRL, + MVX_HWREG_RESET, + MVX_HWREG_WHAT_MAX +}; + +/** + * enum mvx_hwreg_lsid - Hardware registers per LSID. + */ +enum mvx_hwreg_lsid { + MVX_HWREG_CTRL, + MVX_HWREG_MMU_CTRL, + MVX_HWREG_NPROT, + MVX_HWREG_ALLOC, + MVX_HWREG_FLUSH_ALL, + MVX_HWREG_SCHED, + MVX_HWREG_TERMINATE, + MVX_HWREG_LIRQVE, + MVX_HWREG_IRQHOST, + MVX_HWREG_INTSIG, + MVX_HWREG_STREAMID, + MVX_HWREG_BUSATTR_0, + MVX_HWREG_BUSATTR_1, + MVX_HWREG_BUSATTR_2, + MVX_HWREG_BUSATTR_3, + MVX_HWREG_LSID_MAX +}; + +struct mvx_hwreg; + +/** + * struct mvx_lsid_hwreg - Helper struct used for debugfs reading of lsid + * dependent registers. + */ +struct mvx_lsid_hwreg { + struct mvx_hwreg *hwreg; + unsigned int lsid; +}; + +/** + * struct mvx_hwreg - Context class for the hardware register interface. + */ +struct mvx_hwreg { + struct device *dev; + struct resource *res; + void *registers; + struct mvx_lsid_hwreg lsid_hwreg[MVX_LSID_MAX]; + struct { + void (*get_formats)(enum mvx_direction direction, + uint64_t *formats); + } ops; +}; + +/**************************************************************************** + * Exported functions + ****************************************************************************/ + +/** + * mvx_hwreg_construct() - Construct the hardware register object. + * @hwreg: Pointer to hwreg object. + * @dev: Pointer to device struct. + * @res: Memory resource. + * @parent: Parent debugfs directory entry. + * + * Return: 0 on success, else error code. + */ +int mvx_hwreg_construct(struct mvx_hwreg *hwreg, struct device *dev, + struct resource *res, struct dentry *parent); + +/** + * mvx_hwreg_destruct() - Destroy the hardware register object. + * @hwreg: Pointer to hwreg object. + */ +void mvx_hwreg_destruct(struct mvx_hwreg *hwreg); + +/** + * mvx_hwreg_read() - Read hardware register. + * @hwreg: Pointer to hwreg object. + * @what: Which register to read. + * + * Return: Value of register. + */ +uint32_t mvx_hwreg_read(struct mvx_hwreg *hwreg, enum mvx_hwreg_what what); + +/** + * mvx_hwreg_write() - Write hardware register. + * @hwreg: Pointer to hwreg object. + * @what: Which register to write. + * @value: Value to write. + */ +void mvx_hwreg_write(struct mvx_hwreg *hwreg, enum mvx_hwreg_what what, + uint32_t value); + +/** + * mvx_hwreg_read_lsid() - Read LSID hardware register. + * @hwreg: Pointer to hwreg object. + * @lsid: LSID register index. + * @what: Which register to read. + * + * Return: Value of register. + */ +uint32_t mvx_hwreg_read_lsid(struct mvx_hwreg *hwreg, unsigned int lsid, + enum mvx_hwreg_lsid what); + +/** + * mvx_hwreg_write_lsid() - Write LSID hardware register. + * @hwreg: Pointer to hwreg object. + * @lsid: LSID register index. + * @what: Which register to write. + * @value: Value to write. + */ +void mvx_hwreg_write_lsid(struct mvx_hwreg *hwreg, unsigned int lsid, + enum mvx_hwreg_lsid what, uint32_t value); + +/** + * mvx_hwreg_get_hw_id() - Get hardware id. + * @hwreg: Pointer to hwreg object. + * @revision: Hardware revision. + * @patch: Hardware patch revision. + * + * Return: Hardware id. + */ +enum mvx_hw_id mvx_hwreg_get_hw_id(struct mvx_hwreg *hwreg, uint32_t *revision, + uint32_t *patch); + +#endif /* _MVX_HW_REG_ */ diff --git a/drivers/media/platform/canaan/vpu/mvx_hwreg_v500.c b/drivers/media/platform/canaan/vpu/mvx_hwreg_v500.c new file mode 100644 index 0000000000000..d71131ee9a5a3 --- /dev/null +++ b/drivers/media/platform/canaan/vpu/mvx_hwreg_v500.c @@ -0,0 +1,59 @@ +// SPDX-License-Identifier: GPL-2.0-only +/* + * The confidential and proprietary information contained in this file may + * only be used by a person authorised under and to the extent permitted + * by a subsisting licensing agreement from Arm Technology (China) Co., Ltd. + * + * (C) COPYRIGHT 2021-2021 Arm Technology (China) Co., Ltd. + * ALL RIGHTS RESERVED + * + * This entire notice must be reproduced on all copies of this file + * and copies of this file may only be made by a person if such person is + * permitted to do so under the terms of a subsisting license agreement + * from Arm Technology (China) Co., Ltd. + * + * 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. + * + */ + +/**************************************************************************** + * Includes + ****************************************************************************/ + +#include "mvx_bitops.h" +#include "mvx_hwreg_v500.h" + +/**************************************************************************** + * Exported functions + ****************************************************************************/ + +void mvx_hwreg_get_formats_v500(enum mvx_direction direction, uint64_t *formats) +{ + if (direction == MVX_DIR_INPUT) { + mvx_set_bit(MVX_FORMAT_H263, formats); + mvx_set_bit(MVX_FORMAT_H264, formats); + mvx_set_bit(MVX_FORMAT_MPEG2, formats); + mvx_set_bit(MVX_FORMAT_MPEG4, formats); + mvx_set_bit(MVX_FORMAT_RV, formats); + mvx_set_bit(MVX_FORMAT_VC1, formats); + mvx_set_bit(MVX_FORMAT_VP8, formats); + mvx_set_bit(MVX_FORMAT_YUV420_I420, formats); + mvx_set_bit(MVX_FORMAT_YUV420_NV12, formats); + } else { + mvx_set_bit(MVX_FORMAT_H264, formats); + mvx_set_bit(MVX_FORMAT_HEVC, formats); + mvx_set_bit(MVX_FORMAT_VP8, formats); + mvx_set_bit(MVX_FORMAT_YUV420_AFBC_8, formats); + mvx_set_bit(MVX_FORMAT_YUV422_AFBC_8, formats); + mvx_set_bit(MVX_FORMAT_YUV420_I420, formats); + mvx_set_bit(MVX_FORMAT_YUV420_NV12, formats); + } +} diff --git a/drivers/media/platform/canaan/vpu/mvx_hwreg_v500.h b/drivers/media/platform/canaan/vpu/mvx_hwreg_v500.h new file mode 100644 index 0000000000000..907cfb3bf569c --- /dev/null +++ b/drivers/media/platform/canaan/vpu/mvx_hwreg_v500.h @@ -0,0 +1,42 @@ +/* SPDX-License-Identifier: GPL-2.0-only + * The confidential and proprietary information contained in this file may + * only be used by a person authorised under and to the extent permitted + * by a subsisting licensing agreement from Arm Technology (China) Co., Ltd. + * + * (C) COPYRIGHT 2021-2021 Arm Technology (China) Co., Ltd. + * ALL RIGHTS RESERVED + * + * This entire notice must be reproduced on all copies of this file + * and copies of this file may only be made by a person if such person is + * permitted to do so under the terms of a subsisting license agreement + * from Arm Technology (China) Co., Ltd. + * + * 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. + * + */ + +#ifndef _MVX_HWREG_V500_H_ +#define _MVX_HWREG_V500_H_ + +/**************************************************************************** + * Includes + ****************************************************************************/ + +#include "mvx_if.h" + +/**************************************************************************** + * Exported functions + ****************************************************************************/ + +void mvx_hwreg_get_formats_v500(enum mvx_direction direction, + uint64_t *formats); + +#endif /* _MVX_HWREG_V500_H_ */ diff --git a/drivers/media/platform/canaan/vpu/mvx_hwreg_v52_v76.c b/drivers/media/platform/canaan/vpu/mvx_hwreg_v52_v76.c new file mode 100644 index 0000000000000..9625c6bf29cb9 --- /dev/null +++ b/drivers/media/platform/canaan/vpu/mvx_hwreg_v52_v76.c @@ -0,0 +1,112 @@ +// SPDX-License-Identifier: GPL-2.0-only +/* + * The confidential and proprietary information contained in this file may + * only be used by a person authorised under and to the extent permitted + * by a subsisting licensing agreement from Arm Technology (China) Co., Ltd. + * + * (C) COPYRIGHT 2021-2021 Arm Technology (China) Co., Ltd. + * ALL RIGHTS RESERVED + * + * This entire notice must be reproduced on all copies of this file + * and copies of this file may only be made by a person if such person is + * permitted to do so under the terms of a subsisting license agreement + * from Arm Technology (China) Co., Ltd. + * + * 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. + * + */ + +/**************************************************************************** + * Includes + ****************************************************************************/ + +#include +#include "mvx_bitops.h" +#include "mvx_hwreg_v52_v76.h" + +/**************************************************************************** + * Exported functions + ****************************************************************************/ + +void mvx_hwreg_get_formats_v52_v76(enum mvx_direction direction, + uint64_t *formats) +{ + if (direction == MVX_DIR_INPUT) { + mvx_set_bit(MVX_FORMAT_AVS, formats); + mvx_set_bit(MVX_FORMAT_AVS2, formats); + mvx_set_bit(MVX_FORMAT_H263, formats); + mvx_set_bit(MVX_FORMAT_H264, formats); + mvx_set_bit(MVX_FORMAT_HEVC, formats); + mvx_set_bit(MVX_FORMAT_JPEG, formats); + mvx_set_bit(MVX_FORMAT_MPEG2, formats); + mvx_set_bit(MVX_FORMAT_MPEG4, formats); + mvx_set_bit(MVX_FORMAT_RV, formats); + mvx_set_bit(MVX_FORMAT_VC1, formats); + mvx_set_bit(MVX_FORMAT_VP8, formats); + mvx_set_bit(MVX_FORMAT_VP9, formats); + mvx_set_bit(MVX_FORMAT_AV1, formats); + mvx_set_bit(MVX_FORMAT_YUV420_AFBC_8, formats); + mvx_set_bit(MVX_FORMAT_YUV420_AFBC_10, formats); + mvx_set_bit(MVX_FORMAT_YUV422_AFBC_8, formats); + mvx_set_bit(MVX_FORMAT_YUV422_AFBC_10, formats); + mvx_set_bit(MVX_FORMAT_YUV420_I420, formats); + mvx_set_bit(MVX_FORMAT_YUV420_NV12, formats); + mvx_set_bit(MVX_FORMAT_YUV420_NV21, formats); + mvx_set_bit(MVX_FORMAT_YUV420_P010, formats); + mvx_set_bit(MVX_FORMAT_YUV420_Y0L2, formats); + mvx_set_bit(MVX_FORMAT_YUV420_AQB1, formats); + mvx_set_bit(MVX_FORMAT_YUV422_YUY2, formats); + mvx_set_bit(MVX_FORMAT_YUV422_UYVY, formats); + mvx_set_bit(MVX_FORMAT_YUV422_Y210, formats); + mvx_set_bit(MVX_FORMAT_RGBA_8888, formats); + mvx_set_bit(MVX_FORMAT_BGRA_8888, formats); + mvx_set_bit(MVX_FORMAT_ARGB_8888, formats); + mvx_set_bit(MVX_FORMAT_ABGR_8888, formats); + + mvx_set_bit(MVX_FORMAT_RGB_888_3P, formats); + mvx_set_bit(MVX_FORMAT_Y, formats); + mvx_set_bit(MVX_FORMAT_YUV444, formats); + mvx_set_bit(MVX_FORMAT_YUV420_I420_10, formats); + mvx_set_bit(MVX_FORMAT_YUV420_2P_10, formats); + mvx_set_bit(MVX_FORMAT_YUV422_1P_10, formats); + mvx_set_bit(MVX_FORMAT_Y_10, formats); + mvx_set_bit(MVX_FORMAT_YUV444_10, formats); + + } else { + mvx_set_bit(MVX_FORMAT_H264, formats); + mvx_set_bit(MVX_FORMAT_HEVC, formats); + mvx_set_bit(MVX_FORMAT_JPEG, formats); + mvx_set_bit(MVX_FORMAT_VP8, formats); + mvx_set_bit(MVX_FORMAT_VP9, formats); + mvx_set_bit(MVX_FORMAT_YUV420_AFBC_8, formats); + mvx_set_bit(MVX_FORMAT_YUV420_AFBC_10, formats); + mvx_set_bit(MVX_FORMAT_YUV422_AFBC_8, formats); + mvx_set_bit(MVX_FORMAT_YUV422_AFBC_10, formats); + mvx_set_bit(MVX_FORMAT_YUV420_I420, formats); + mvx_set_bit(MVX_FORMAT_YUV420_NV12, formats); + mvx_set_bit(MVX_FORMAT_YUV420_NV21, formats); + mvx_set_bit(MVX_FORMAT_YUV420_P010, formats); + mvx_set_bit(MVX_FORMAT_YUV420_Y0L2, formats); + mvx_set_bit(MVX_FORMAT_YUV420_AQB1, formats); + mvx_set_bit(MVX_FORMAT_YUV422_YUY2, formats); + mvx_set_bit(MVX_FORMAT_YUV422_UYVY, formats); + mvx_set_bit(MVX_FORMAT_YUV422_Y210, formats); + mvx_set_bit(MVX_FORMAT_RGB_888, formats); + mvx_set_bit(MVX_FORMAT_BGR_888, formats); + mvx_set_bit(MVX_FORMAT_RGB_888_3P, formats); + mvx_set_bit(MVX_FORMAT_Y, formats); + mvx_set_bit(MVX_FORMAT_Y_10, formats); + mvx_set_bit(MVX_FORMAT_YUV444, formats); + mvx_set_bit(MVX_FORMAT_YUV444_10, formats); + mvx_set_bit(MVX_FORMAT_YUV420_2P_10, formats); + mvx_set_bit(MVX_FORMAT_YUV422_1P_10, formats); + } +} diff --git a/drivers/media/platform/canaan/vpu/mvx_hwreg_v52_v76.h b/drivers/media/platform/canaan/vpu/mvx_hwreg_v52_v76.h new file mode 100644 index 0000000000000..bcdc8f455f6ae --- /dev/null +++ b/drivers/media/platform/canaan/vpu/mvx_hwreg_v52_v76.h @@ -0,0 +1,43 @@ +/* SPDX-License-Identifier: GPL-2.0-only + * The confidential and proprietary information contained in this file may + * only be used by a person authorised under and to the extent permitted + * by a subsisting licensing agreement from Arm Technology (China) Co., Ltd. + * + * (C) COPYRIGHT 2021-2021 Arm Technology (China) Co., Ltd. + * ALL RIGHTS RESERVED + * + * This entire notice must be reproduced on all copies of this file + * and copies of this file may only be made by a person if such person is + * permitted to do so under the terms of a subsisting license agreement + * from Arm Technology (China) Co., Ltd. + * + * 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. + * + */ + +#ifndef _MVX_HWREG_V52_V76_H_ +#define _MVX_HWREG_V52_V76_H_ + +/**************************************************************************** + * Includes + ****************************************************************************/ + +#include "mvx_hwreg.h" +#include "mvx_if.h" + +/**************************************************************************** + * Exported functions + ****************************************************************************/ + +void mvx_hwreg_get_formats_v52_v76(enum mvx_direction direction, + uint64_t *formats); + +#endif /* _MVX_HWREG_V52_V76_H_ */ diff --git a/drivers/media/platform/canaan/vpu/mvx_hwreg_v550.c b/drivers/media/platform/canaan/vpu/mvx_hwreg_v550.c new file mode 100644 index 0000000000000..fbbea6ef7cffb --- /dev/null +++ b/drivers/media/platform/canaan/vpu/mvx_hwreg_v550.c @@ -0,0 +1,76 @@ +// SPDX-License-Identifier: GPL-2.0-only +/* + * The confidential and proprietary information contained in this file may + * only be used by a person authorised under and to the extent permitted + * by a subsisting licensing agreement from Arm Technology (China) Co., Ltd. + * + * (C) COPYRIGHT 2021-2021 Arm Technology (China) Co., Ltd. + * ALL RIGHTS RESERVED + * + * This entire notice must be reproduced on all copies of this file + * and copies of this file may only be made by a person if such person is + * permitted to do so under the terms of a subsisting license agreement + * from Arm Technology (China) Co., Ltd. + * + * 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. + * + */ + +/**************************************************************************** + * Includes + ****************************************************************************/ + +#include "mvx_bitops.h" +#include "mvx_hwreg_v550.h" + +/**************************************************************************** + * Exported functions + ****************************************************************************/ + +void mvx_hwreg_get_formats_v550(enum mvx_direction direction, uint64_t *formats) +{ + if (direction == MVX_DIR_INPUT) { + mvx_set_bit(MVX_FORMAT_H263, formats); + mvx_set_bit(MVX_FORMAT_H264, formats); + mvx_set_bit(MVX_FORMAT_HEVC, formats); + mvx_set_bit(MVX_FORMAT_JPEG, formats); + mvx_set_bit(MVX_FORMAT_MPEG2, formats); + mvx_set_bit(MVX_FORMAT_MPEG4, formats); + mvx_set_bit(MVX_FORMAT_RV, formats); + mvx_set_bit(MVX_FORMAT_VC1, formats); + mvx_set_bit(MVX_FORMAT_VP8, formats); + mvx_set_bit(MVX_FORMAT_YUV420_I420, formats); + mvx_set_bit(MVX_FORMAT_YUV420_NV12, formats); + mvx_set_bit(MVX_FORMAT_YUV420_NV21, formats); + mvx_set_bit(MVX_FORMAT_YUV420_P010, formats); + mvx_set_bit(MVX_FORMAT_YUV420_Y0L2, formats); + mvx_set_bit(MVX_FORMAT_YUV420_AQB1, formats); + mvx_set_bit(MVX_FORMAT_YUV422_YUY2, formats); + mvx_set_bit(MVX_FORMAT_YUV422_UYVY, formats); + mvx_set_bit(MVX_FORMAT_YUV422_Y210, formats); + } else { + mvx_set_bit(MVX_FORMAT_H264, formats); + mvx_set_bit(MVX_FORMAT_VP8, formats); + mvx_set_bit(MVX_FORMAT_YUV420_AFBC_8, formats); + mvx_set_bit(MVX_FORMAT_YUV420_AFBC_10, formats); + mvx_set_bit(MVX_FORMAT_YUV422_AFBC_8, formats); + mvx_set_bit(MVX_FORMAT_YUV422_AFBC_10, formats); + mvx_set_bit(MVX_FORMAT_YUV420_I420, formats); + mvx_set_bit(MVX_FORMAT_YUV420_NV12, formats); + mvx_set_bit(MVX_FORMAT_YUV420_NV21, formats); + mvx_set_bit(MVX_FORMAT_YUV420_P010, formats); + mvx_set_bit(MVX_FORMAT_YUV420_Y0L2, formats); + mvx_set_bit(MVX_FORMAT_YUV420_AQB1, formats); + mvx_set_bit(MVX_FORMAT_YUV422_YUY2, formats); + mvx_set_bit(MVX_FORMAT_YUV422_UYVY, formats); + mvx_set_bit(MVX_FORMAT_YUV422_Y210, formats); + } +} diff --git a/drivers/media/platform/canaan/vpu/mvx_hwreg_v550.h b/drivers/media/platform/canaan/vpu/mvx_hwreg_v550.h new file mode 100644 index 0000000000000..21a07eca0782d --- /dev/null +++ b/drivers/media/platform/canaan/vpu/mvx_hwreg_v550.h @@ -0,0 +1,42 @@ +/* SPDX-License-Identifier: GPL-2.0-only + * The confidential and proprietary information contained in this file may + * only be used by a person authorised under and to the extent permitted + * by a subsisting licensing agreement from Arm Technology (China) Co., Ltd. + * + * (C) COPYRIGHT 2021-2021 Arm Technology (China) Co., Ltd. + * ALL RIGHTS RESERVED + * + * This entire notice must be reproduced on all copies of this file + * and copies of this file may only be made by a person if such person is + * permitted to do so under the terms of a subsisting license agreement + * from Arm Technology (China) Co., Ltd. + * + * 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. + * + */ + +#ifndef _MVX_HWREG_V550_H_ +#define _MVX_HWREG_V550_H_ + +/**************************************************************************** + * Includes + ****************************************************************************/ + +#include "mvx_if.h" + +/**************************************************************************** + * Exported functions + ****************************************************************************/ + +void mvx_hwreg_get_formats_v550(enum mvx_direction direction, + uint64_t *formats); + +#endif /* _MVX_HWREG_V550_H_ */ diff --git a/drivers/media/platform/canaan/vpu/mvx_hwreg_v61.c b/drivers/media/platform/canaan/vpu/mvx_hwreg_v61.c new file mode 100644 index 0000000000000..1aa8d04cdf1b9 --- /dev/null +++ b/drivers/media/platform/canaan/vpu/mvx_hwreg_v61.c @@ -0,0 +1,89 @@ +// SPDX-License-Identifier: GPL-2.0-only +/* + * The confidential and proprietary information contained in this file may + * only be used by a person authorised under and to the extent permitted + * by a subsisting licensing agreement from Arm Technology (China) Co., Ltd. + * + * (C) COPYRIGHT 2021-2021 Arm Technology (China) Co., Ltd. + * ALL RIGHTS RESERVED + * + * This entire notice must be reproduced on all copies of this file + * and copies of this file may only be made by a person if such person is + * permitted to do so under the terms of a subsisting license agreement + * from Arm Technology (China) Co., Ltd. + * + * 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. + * + */ + +/**************************************************************************** + * Includes + ****************************************************************************/ + +#include +#include "mvx_bitops.h" +#include "mvx_hwreg_v61.h" + +/**************************************************************************** + * Exported functions + ****************************************************************************/ + +void mvx_hwreg_get_formats_v61(enum mvx_direction direction, uint64_t *formats) +{ + if (direction == MVX_DIR_INPUT) { + mvx_set_bit(MVX_FORMAT_H263, formats); + mvx_set_bit(MVX_FORMAT_H264, formats); + mvx_set_bit(MVX_FORMAT_HEVC, formats); + mvx_set_bit(MVX_FORMAT_JPEG, formats); + mvx_set_bit(MVX_FORMAT_MPEG2, formats); + mvx_set_bit(MVX_FORMAT_MPEG4, formats); + mvx_set_bit(MVX_FORMAT_RV, formats); + mvx_set_bit(MVX_FORMAT_VC1, formats); + mvx_set_bit(MVX_FORMAT_VP8, formats); + mvx_set_bit(MVX_FORMAT_VP9, formats); + mvx_set_bit(MVX_FORMAT_YUV420_AFBC_8, formats); + mvx_set_bit(MVX_FORMAT_YUV420_AFBC_10, formats); + mvx_set_bit(MVX_FORMAT_YUV422_AFBC_8, formats); + mvx_set_bit(MVX_FORMAT_YUV422_AFBC_10, formats); + mvx_set_bit(MVX_FORMAT_YUV420_I420, formats); + mvx_set_bit(MVX_FORMAT_YUV420_NV12, formats); + mvx_set_bit(MVX_FORMAT_YUV420_NV21, formats); + mvx_set_bit(MVX_FORMAT_YUV420_P010, formats); + mvx_set_bit(MVX_FORMAT_YUV420_Y0L2, formats); + mvx_set_bit(MVX_FORMAT_YUV420_AQB1, formats); + mvx_set_bit(MVX_FORMAT_YUV422_YUY2, formats); + mvx_set_bit(MVX_FORMAT_YUV422_UYVY, formats); + mvx_set_bit(MVX_FORMAT_YUV422_Y210, formats); + mvx_set_bit(MVX_FORMAT_RGBA_8888, formats); + mvx_set_bit(MVX_FORMAT_BGRA_8888, formats); + mvx_set_bit(MVX_FORMAT_ARGB_8888, formats); + mvx_set_bit(MVX_FORMAT_ABGR_8888, formats); + } else { + mvx_set_bit(MVX_FORMAT_H264, formats); + mvx_set_bit(MVX_FORMAT_HEVC, formats); + mvx_set_bit(MVX_FORMAT_JPEG, formats); + mvx_set_bit(MVX_FORMAT_VP8, formats); + mvx_set_bit(MVX_FORMAT_VP9, formats); + mvx_set_bit(MVX_FORMAT_YUV420_AFBC_8, formats); + mvx_set_bit(MVX_FORMAT_YUV420_AFBC_10, formats); + mvx_set_bit(MVX_FORMAT_YUV422_AFBC_8, formats); + mvx_set_bit(MVX_FORMAT_YUV422_AFBC_10, formats); + mvx_set_bit(MVX_FORMAT_YUV420_I420, formats); + mvx_set_bit(MVX_FORMAT_YUV420_NV12, formats); + mvx_set_bit(MVX_FORMAT_YUV420_NV21, formats); + mvx_set_bit(MVX_FORMAT_YUV420_P010, formats); + mvx_set_bit(MVX_FORMAT_YUV420_Y0L2, formats); + mvx_set_bit(MVX_FORMAT_YUV420_AQB1, formats); + mvx_set_bit(MVX_FORMAT_YUV422_YUY2, formats); + mvx_set_bit(MVX_FORMAT_YUV422_UYVY, formats); + mvx_set_bit(MVX_FORMAT_YUV422_Y210, formats); + } +} diff --git a/drivers/media/platform/canaan/vpu/mvx_hwreg_v61.h b/drivers/media/platform/canaan/vpu/mvx_hwreg_v61.h new file mode 100644 index 0000000000000..4d0ad13e76263 --- /dev/null +++ b/drivers/media/platform/canaan/vpu/mvx_hwreg_v61.h @@ -0,0 +1,42 @@ +/* SPDX-License-Identifier: GPL-2.0-only + * The confidential and proprietary information contained in this file may + * only be used by a person authorised under and to the extent permitted + * by a subsisting licensing agreement from Arm Technology (China) Co., Ltd. + * + * (C) COPYRIGHT 2021-2021 Arm Technology (China) Co., Ltd. + * ALL RIGHTS RESERVED + * + * This entire notice must be reproduced on all copies of this file + * and copies of this file may only be made by a person if such person is + * permitted to do so under the terms of a subsisting license agreement + * from Arm Technology (China) Co., Ltd. + * + * 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. + * + */ + +#ifndef _MVX_HWREG_V61_H_ +#define _MVX_HWREG_V61_H_ + +/**************************************************************************** + * Includes + ****************************************************************************/ + +#include "mvx_hwreg.h" +#include "mvx_if.h" + +/**************************************************************************** + * Exported functions + ****************************************************************************/ + +void mvx_hwreg_get_formats_v61(enum mvx_direction direction, uint64_t *formats); + +#endif /* _MVX_HWREG_V61_H_ */ diff --git a/drivers/media/platform/canaan/vpu/mvx_if.c b/drivers/media/platform/canaan/vpu/mvx_if.c new file mode 100644 index 0000000000000..3c4193ea86688 --- /dev/null +++ b/drivers/media/platform/canaan/vpu/mvx_if.c @@ -0,0 +1,230 @@ +// SPDX-License-Identifier: GPL-2.0-only +/* + * The confidential and proprietary information contained in this file may + * only be used by a person authorised under and to the extent permitted + * by a subsisting licensing agreement from Arm Technology (China) Co., Ltd. + * + * (C) COPYRIGHT 2021-2021 Arm Technology (China) Co., Ltd. + * ALL RIGHTS RESERVED + * + * This entire notice must be reproduced on all copies of this file + * and copies of this file may only be made by a person if such person is + * permitted to do so under the terms of a subsisting license agreement + * from Arm Technology (China) Co., Ltd. + * + * 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. + * + */ + +/**************************************************************************** + * Includes + ****************************************************************************/ + +#include +#include +#include +#include +#include +#include +#include +#include "mvx_ext_if.h" +#include "mvx_if.h" +#include "mvx_log_group.h" +#include "mvx_firmware.h" +#include "mvx_firmware_cache.h" +#include "mvx_secure.h" +#include "mvx_session.h" + +/**************************************************************************** + * Types + ****************************************************************************/ + +/** + * struct mvx_if_ctx - Device context. + * + * There is one instance of this structure for each device. + */ +struct mvx_if_ctx { + struct device *dev; + struct mvx_ext_if ext; + struct mvx_fw_cache firmware; + struct mvx_client_ops *client_ops; + struct mvx_if_ops if_ops; + struct mvx_secure secure; + struct kobject kobj; + struct completion kobj_unregister; + struct dentry *dentry; +}; + +/**************************************************************************** + * Static variables and functions + ****************************************************************************/ + +/* Physical hardware can handle 40 physical bits. */ +static uint64_t mvx_if_dma_mask = DMA_BIT_MASK(40); + +static struct mvx_if_ctx *if_ops_to_if_ctx(struct mvx_if_ops *ops) +{ + return container_of(ops, struct mvx_if_ctx, if_ops); +} + +static void if_release(struct kobject *kobj) +{ + struct mvx_if_ctx *ctx = container_of(kobj, struct mvx_if_ctx, kobj); + + complete(&ctx->kobj_unregister); +} + +static const struct kobj_type if_ktype = { .release = if_release, + .sysfs_ops = &kobj_sysfs_ops }; + +/**************************************************************************** + * Exported variables and functions + ****************************************************************************/ + +struct mvx_if_ops *mvx_if_create(struct device *dev, + struct mvx_client_ops *client_ops, void *priv) +{ + struct mvx_if_ctx *ctx; + int ret; + + MVX_LOG_PRINT(&mvx_log_if, MVX_LOG_INFO, "probe"); + + dev->dma_mask = &mvx_if_dma_mask; + dev->coherent_dma_mask = mvx_if_dma_mask; + + /* + * This parameter is indirectly used by DMA-API to limit a lookup + * through a hash table with allocated DMA regions. If the value is + * not high enough, a lookup will be terminated too early and a false + * negative warning will be generated for every DMA operation. + * + * To prevent this behavior vb2-dma-contig allocator keeps this value + * set to the maximum requested buffer size. Unfortunately this is not + * done for vb2-dma-sg which we are using, so we have to implement the + * same logic. + * + * In this change I set a value permanently to 2Gb, but in the next + * commit a functionality similar to vb2-dma-contig will be added. + * + * Mentioned structure also has one more member: segment_boundary_mask. + * It has to be investigated if any value should be assigned to it. + * + * See the following kernel commit for the reference: + * 3f03396918962b2f8b888d02b23cd1e0c88bf5e5 + */ + dev->dma_parms = devm_kzalloc(dev, sizeof(*dev->dma_parms), GFP_KERNEL); + if (dev->dma_parms == NULL) + return ERR_PTR(-ENOMEM); + + dma_set_max_seg_size(dev, SZ_2G); + +#if IS_ENABLED(CONFIG_OF) + of_dma_configure(dev, dev->of_node, true); +#endif + + /* Create device context and store pointer in device private data. */ + ctx = devm_kzalloc(dev, sizeof(*ctx), GFP_KERNEL); + if (ctx == NULL) { + ret = -ENOMEM; + goto free_dma_parms; + } + + if (IS_ENABLED(CONFIG_DEBUG_FS)) { + char name[20]; + + scnprintf(name, sizeof(name), "%s%u", MVX_IF_NAME, dev->id); + ctx->dentry = debugfs_create_dir(name, NULL); + if (IS_ERR_OR_NULL(ctx->dentry)) { + ret = -EINVAL; + goto free_ctx; + } + } + + /* Store context in device private data. */ + ctx->dev = dev; + ctx->client_ops = client_ops; + + /* Initialize if ops. */ + ctx->if_ops.irq = mvx_session_irq; + + init_completion(&ctx->kobj_unregister); + + /* Create sysfs entry for the device */ + ret = kobject_init_and_add(&ctx->kobj, &if_ktype, kernel_kobj, "amvx%u", + dev->id); + if (ret != 0) { + kobject_put(&ctx->kobj); + goto remove_debugfs; + } + + /* Initialize secure video. */ + ret = mvx_secure_construct(&ctx->secure, dev); + if (ret != 0) + goto delete_kobject; + + /* Initialize firmware cache. */ + ret = mvx_fw_cache_construct(&ctx->firmware, dev, &ctx->secure, + &ctx->kobj); + if (ret != 0) + goto destroy_secure; + + /* Create the external device interface. */ + ret = mvx_ext_if_construct(&ctx->ext, dev, &ctx->firmware, + ctx->client_ops, ctx->dentry); + if (ret != 0) + goto destroy_fw_cache; + + return &ctx->if_ops; + +destroy_fw_cache: + mvx_fw_cache_destruct(&ctx->firmware); + +destroy_secure: + mvx_secure_destruct(&ctx->secure); + +delete_kobject: + kobject_put(&ctx->kobj); + +remove_debugfs: + if (IS_ENABLED(CONFIG_DEBUG_FS)) + debugfs_remove_recursive(ctx->dentry); + +free_ctx: + devm_kfree(dev, ctx); + +free_dma_parms: + devm_kfree(dev, dev->dma_parms); + + return ERR_PTR(ret); +} + +void mvx_if_destroy(struct mvx_if_ops *if_ops) +{ + struct mvx_if_ctx *ctx = if_ops_to_if_ctx(if_ops); + struct device *dev = ctx->dev; + + MVX_LOG_PRINT(&mvx_log_if, MVX_LOG_INFO, "remove"); + + mvx_ext_if_destruct(&ctx->ext); + mvx_fw_cache_destruct(&ctx->firmware); + mvx_secure_destruct(&ctx->secure); + kobject_put(&ctx->kobj); + wait_for_completion(&ctx->kobj_unregister); + if (IS_ENABLED(CONFIG_DEBUG_FS)) + debugfs_remove_recursive(ctx->dentry); + + devm_kfree(dev, dev->dma_parms); + devm_kfree(dev, ctx); + + dev->dma_mask = NULL; + dev->coherent_dma_mask = 0; +} diff --git a/drivers/media/platform/canaan/vpu/mvx_if.h b/drivers/media/platform/canaan/vpu/mvx_if.h new file mode 100644 index 0000000000000..caa243c66413f --- /dev/null +++ b/drivers/media/platform/canaan/vpu/mvx_if.h @@ -0,0 +1,506 @@ +/* SPDX-License-Identifier: GPL-2.0-only + * The confidential and proprietary information contained in this file may + * only be used by a person authorised under and to the extent permitted + * by a subsisting licensing agreement from Arm Technology (China) Co., Ltd. + * + * (C) COPYRIGHT 2021-2021 Arm Technology (China) Co., Ltd. + * ALL RIGHTS RESERVED + * + * This entire notice must be reproduced on all copies of this file + * and copies of this file may only be made by a person if such person is + * permitted to do so under the terms of a subsisting license agreement + * from Arm Technology (China) Co., Ltd. + * + * 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. + * + */ + +#ifndef _MVX_IF_H_ +#define _MVX_IF_H_ + +/**************************************************************************** + * Includes + ****************************************************************************/ + +#include +#include +#include "mvx_mmu.h" + +/**************************************************************************** + * Defines + ****************************************************************************/ + +/** + * The name of the device driver. + */ +#define MVX_IF_NAME "amvx_if" +/**************************************************************************** + * Types + ****************************************************************************/ + +struct device; +struct mvx_client_ops; +struct mvx_client_session; +struct mvx_if_ctx; +struct platform_device; + +/** + * enum mvx_direction - Direction from the point of view of the hardware block. + */ +enum mvx_direction { MVX_DIR_INPUT, MVX_DIR_OUTPUT, MVX_DIR_MAX }; + +/** + * enum mvx_tristate - Tristate boolean variable. + */ +enum mvx_tristate { MVX_TRI_UNSET = -1, MVX_TRI_TRUE = 0, MVX_TRI_FALSE = 1 }; + +/** + * enum mvx_format - List of compressed formats and frame formats. + * + * Enumeration of formats that are supported by all know hardware revisions. + * + * The enumeration should start at 0 and should not contain any gaps. + */ +enum mvx_format { + /* Compressed formats. */ + MVX_FORMAT_BITSTREAM_FIRST, + MVX_FORMAT_AVS = MVX_FORMAT_BITSTREAM_FIRST, + MVX_FORMAT_AVS2, + MVX_FORMAT_H263, + MVX_FORMAT_H264, + MVX_FORMAT_HEVC, + MVX_FORMAT_JPEG, + MVX_FORMAT_MPEG2, + MVX_FORMAT_MPEG4, + MVX_FORMAT_RV, + MVX_FORMAT_VC1, + MVX_FORMAT_VP8, + MVX_FORMAT_VP9, + MVX_FORMAT_AV1, + MVX_FORMAT_BITSTREAM_LAST = MVX_FORMAT_AV1, + + /* Uncompressed formats. */ + MVX_FORMAT_FRAME_FIRST, + MVX_FORMAT_YUV420_AFBC_8 = MVX_FORMAT_FRAME_FIRST, + MVX_FORMAT_YUV420_AFBC_10, + MVX_FORMAT_YUV422_AFBC_8, + MVX_FORMAT_YUV422_AFBC_10, + MVX_FORMAT_YUV420_I420, + MVX_FORMAT_YUV420_NV12, + MVX_FORMAT_YUV420_NV21, + MVX_FORMAT_YUV420_P010, + MVX_FORMAT_YUV420_Y0L2, + MVX_FORMAT_YUV420_AQB1, + MVX_FORMAT_YUV422_YUY2, + MVX_FORMAT_YUV422_UYVY, + MVX_FORMAT_YUV422_Y210, + MVX_FORMAT_RGBA_8888, + MVX_FORMAT_BGRA_8888, + MVX_FORMAT_ARGB_8888, + MVX_FORMAT_ABGR_8888, + MVX_FORMAT_RGB_888, + MVX_FORMAT_BGR_888, + MVX_FORMAT_RGB_888_3P, + MVX_FORMAT_ARGB_1555, + MVX_FORMAT_ARGB_4444, + MVX_FORMAT_RGB_565, + MVX_FORMAT_Y, + MVX_FORMAT_Y_10, + MVX_FORMAT_YUV444, + MVX_FORMAT_YUV444_10, + MVX_FORMAT_YUV420_2P_10, + MVX_FORMAT_YUV422_1P_10, + MVX_FORMAT_YUV420_I420_10, + MVX_FORMAT_FRAME_LAST = MVX_FORMAT_YUV420_I420_10, + + MVX_FORMAT_MAX +}; + +/** + * enum mvx_hw_id - Enumeration of known hardware revisions. + */ +enum mvx_hw_id { + MVE_Unknown = 0x0, + MVE_v500 = 0x500, + MVE_v550 = 0x550, + MVE_v61 = 0x61, + MVE_v52_v76 = 0x5276 +}; + +/** + * struct mvx_hw_ver - Hardware version. + */ +struct mvx_hw_ver { + enum mvx_hw_id id; + uint32_t revision; + uint32_t patch; +}; + +/** + * enum mvx_nalu_format - NALU format. + */ +enum mvx_nalu_format { + MVX_NALU_FORMAT_UNDEFINED, + MVX_NALU_FORMAT_START_CODES, + MVX_NALU_FORMAT_ONE_NALU_PER_BUFFER, + MVX_NALU_FORMAT_ONE_BYTE_LENGTH_FIELD, + MVX_NALU_FORMAT_TWO_BYTE_LENGTH_FIELD, + MVX_NALU_FORMAT_FOUR_BYTE_LENGTH_FIELD +}; + +/** + * enum mvx_profile - Profile for encoder. + */ +enum mvx_profile { + MVX_PROFILE_NONE, + + MVX_PROFILE_H264_BASELINE, + MVX_PROFILE_H264_MAIN, + MVX_PROFILE_H264_HIGH, + MVX_PROFILE_H264_HIGH_10, + + MVX_PROFILE_H265_MAIN, + MVX_PROFILE_H265_MAIN_STILL, + MVX_PROFILE_H265_MAIN_INTRA, + MVX_PROFILE_H265_MAIN_10, + + MVX_PROFILE_VC1_SIMPLE, + MVX_PROFILE_VC1_MAIN, + MVX_PROFILE_VC1_ADVANCED, + + MVX_PROFILE_VP8_MAIN +}; + +/** + * enum mvx_level - Level for encoder. + */ +enum mvx_level { + MVX_LEVEL_NONE, + + MVX_LEVEL_H264_1, + MVX_LEVEL_H264_1b, + MVX_LEVEL_H264_11, + MVX_LEVEL_H264_12, + MVX_LEVEL_H264_13, + MVX_LEVEL_H264_2, + MVX_LEVEL_H264_21, + MVX_LEVEL_H264_22, + MVX_LEVEL_H264_3, + MVX_LEVEL_H264_31, + MVX_LEVEL_H264_32, + MVX_LEVEL_H264_4, + MVX_LEVEL_H264_41, + MVX_LEVEL_H264_42, + MVX_LEVEL_H264_5, + MVX_LEVEL_H264_51, + MVX_LEVEL_H264_52, + MVX_LEVEL_H264_6, + MVX_LEVEL_H264_61, + MVX_LEVEL_H264_62, + + MVX_LEVEL_H265_MAIN_1, + MVX_LEVEL_H265_HIGH_1, + MVX_LEVEL_H265_MAIN_2, + MVX_LEVEL_H265_HIGH_2, + MVX_LEVEL_H265_MAIN_21, + MVX_LEVEL_H265_HIGH_21, + MVX_LEVEL_H265_MAIN_3, + MVX_LEVEL_H265_HIGH_3, + MVX_LEVEL_H265_MAIN_31, + MVX_LEVEL_H265_HIGH_31, + MVX_LEVEL_H265_MAIN_4, + MVX_LEVEL_H265_HIGH_4, + MVX_LEVEL_H265_MAIN_41, + MVX_LEVEL_H265_HIGH_41, + MVX_LEVEL_H265_MAIN_5, + MVX_LEVEL_H265_HIGH_5, + MVX_LEVEL_H265_MAIN_51, + MVX_LEVEL_H265_HIGH_51, + MVX_LEVEL_H265_MAIN_52, + MVX_LEVEL_H265_HIGH_52, + MVX_LEVEL_H265_MAIN_6, + MVX_LEVEL_H265_HIGH_6, + MVX_LEVEL_H265_MAIN_61, + MVX_LEVEL_H265_HIGH_61, + MVX_LEVEL_H265_MAIN_62, + MVX_LEVEL_H265_HIGH_62 +}; + +/** + * enum mvx_gop_type - GOP type for encoder. + */ +enum mvx_gop_type { + MVX_GOP_TYPE_NONE, + MVX_GOP_TYPE_BIDIRECTIONAL, + MVX_GOP_TYPE_LOW_DELAY, + MVX_GOP_TYPE_PYRAMID, + MVX_GOP_TYPE_SVCT3, + MVX_GOP_TYPE_GDR +}; + +/** + * enum mvx_entropy_mode - Entropy mode for encoder. + */ +enum mvx_entropy_mode { + MVX_ENTROPY_MODE_NONE, + MVX_ENTROPY_MODE_CAVLC, + MVX_ENTROPY_MODE_CABAC +}; + +/** + * enum mvx_multi_slice_mode - Multi slice mode. + */ +enum mvx_multi_slice_mode { + MVX_MULTI_SLICE_MODE_SINGLE, + MVX_MULTI_SLICE_MODE_MAX_MB +}; + +/** + * enum mvx_vp9_prob_update - Probability update method. + */ +enum mvx_vp9_prob_update { + MVX_VP9_PROB_UPDATE_DISABLED, + MVX_VP9_PROB_UPDATE_IMPLICIT, + MVX_VP9_PROB_UPDATE_EXPLICIT +}; + +/** + * enum mvx_rgb_to_yuv_mode - RGB to YUV conversion mode. + */ +enum mvx_rgb_to_yuv_mode { + MVX_RGB_TO_YUV_MODE_BT601_STUDIO, + MVX_RGB_TO_YUV_MODE_BT601_FULL, + MVX_RGB_TO_YUV_MODE_BT709_STUDIO, + MVX_RGB_TO_YUV_MODE_BT709_FULL, + MVX_RGB_TO_YUV_MODE_BT2020_STUDIO, + MVX_RGB_TO_YUV_MODE_BT2020_FULL, + MVX_RGB_TO_YUV_MODE_MAX +}; + +/** + * enum mvx_yuv_to_rgb_mode - YUV to RGB conversion mode. + */ +enum mvx_yuv_to_rgb_mode { + MVX_YUV_TO_RGB_MODE_BT601_LIMT, + MVX_YUV_TO_RGB_MODE_BT601_FULL, + MVX_YUV_TO_RGB_MODE_BT709_LIMT, + MVX_YUV_TO_RGB_MODE_BT709_FULL, + MVX_YUV_TO_RGB_MODE_BT2020_LIMT, + MVX_YUV_TO_RGB_MODE_BT2020_FULL, + MVX_YUV_TO_RGB_MODE_MAX +}; + +/** + * enum use_cust_yuv_to_rgb_mode - YUV to RGB conversion mode. + */ +enum use_cust_yuv_to_rgb_mode { + MVX_CUST_YUV2RGB_MODE_UNSET, + MVX_CUST_YUV2RGB_MODE_STANDARD, + MVX_CUST_YUV2RGB_MODE_CUSTOMIZED +}; + +/** + * struct mvx_if_session - Structure holding members needed to map a session to + * a hardware device. + * @kref: Reference counter for the session object. + * @release: Function pointer that shall be passed to kref_put. If the + * reference count reaches 0 this function will be called to + * destruct and deallocate the object. + * @ncores: Number of cores this session has been mapped to. + * @l0_pte: Level 0 page table entry. This value is written to the hardware + * MMU CTRL register to point out the location of the L1 page table + * and to set access permissions and bus attributes. + * @securevideo:Secure video enabled. + */ +struct mvx_if_session { + struct kref kref; + struct mutex *mutex; + void (*release)(struct kref *kref); + unsigned int ncores; + mvx_mmu_pte l0_pte; + bool securevideo; +}; + +/** + * struct mvx_if_ops - Functions pointers the registered device may use to call + * the if device. + */ +struct mvx_if_ops { + /** + * irq() - Handle IRQ sent from firmware to driver. + */ + void (*irq)(struct mvx_if_session *session); +}; + +/** + * struct mvx_client_ops - Functions pointers the if device may use to call + * the registered device. + */ +struct mvx_client_ops { + struct list_head list; + + /** + * get_hw_ver() - Get MVE hardware version + */ + void (*get_hw_ver)(struct mvx_client_ops *client, + struct mvx_hw_ver *version); + + /** + * get_formats() - Get list of supported formats. + * + * Return: 0 on success, else error code. + */ + void (*get_formats)(struct mvx_client_ops *client, + enum mvx_direction direction, uint64_t *formats); + + /** + * get_ncores() - Get number of cores. + * + * Return: Number of cores on success, else error code. + */ + unsigned int (*get_ncores)(struct mvx_client_ops *client); + + /* + * SESSION. + */ + + /** + * register_session() - Register if session with client. + * + * Return: Client session handle on success, else ERR_PTR. + */ + struct mvx_client_session *(*register_session)( + struct mvx_client_ops *client, struct mvx_if_session *session); + + /** + * unregister_session() - Unregister session. + * + * Return: 0 on success, else error code. + */ + void (*unregister_session)(struct mvx_client_session *session); + + /** + * switch_in() - Switch in session. + * + * After a session has been switched in it must wait for a 'switched + * out' event before it is allowed to requested to be switched in again. + * Switching in a already switched in session is regarded as an error. + * + * Return: 0 on success, else error code. + */ + int (*switch_in)(struct mvx_client_session *session); + + /** + * send_irq() - Send IRQ from driver to firmware. + * + * Return: 0 on success, else error code. + */ + int (*send_irq)(struct mvx_client_session *session); + + /** + * flush_mmu() - Flush MMU tables. + * + * Flushing MMU tables is only required if pages have been removed + * from the page tables. + * + * Return: 0 on success, else error code. + */ + int (*flush_mmu)(struct mvx_client_session *session); + + /** + * print_debug() - Print debug information. + * + * Return: 0 on success, else error code. + */ + void (*print_debug)(struct mvx_client_session *session); +}; + +/**************************************************************************** + * Static functions + ****************************************************************************/ + +/** + * mvx_is_bitstream(): Detect if format is of type bitstream. + * @format: Format. + * + * Return: True if format is bitstream, else false. + */ +static inline bool mvx_is_bitstream(enum mvx_format format) +{ + return (format >= MVX_FORMAT_BITSTREAM_FIRST) && + (format <= MVX_FORMAT_BITSTREAM_LAST); +} + +/** + * mvx_is_frame(): Detect if format is of type frame. + * @format: Format. + * + * Return: True if format is frame, else false. + */ +static inline bool mvx_is_frame(enum mvx_format format) +{ + return (format >= MVX_FORMAT_FRAME_FIRST) && + (format <= MVX_FORMAT_FRAME_LAST); +} + +/** + * mvx_is_rgb(): Detect if format is of type RGB. + * @format: Format. + * + * Return: True if format is RGB, else false. + */ +static inline bool mvx_is_rgb(enum mvx_format format) +{ + return (format >= MVX_FORMAT_RGBA_8888) && + (format <= MVX_FORMAT_ABGR_8888); +} + +/** + * mvx_is_rgb24(): Detect if format is of type RGB24. + * @format: Format. + * + * Return: True if format is RGB24, else false. + */ + +static inline bool mvx_is_rgb24(enum mvx_format format) +{ + return (format >= MVX_FORMAT_RGB_888) && + (format <= MVX_FORMAT_RGB_888_3P); +} + +/** + * mvx_is_afbc(): Detect if format is of type AFBC. + * @format: Format. + * + * Return: True if format is AFBC, else false. + */ +static inline bool mvx_is_afbc(enum mvx_format format) +{ + return (format >= MVX_FORMAT_YUV420_AFBC_8) && + (format <= MVX_FORMAT_YUV422_AFBC_10); +} + +/**************************************************************************** + * Exported functions + ****************************************************************************/ + +/** + * mvx_if_create() - Create IF device. + */ +struct mvx_if_ops *mvx_if_create(struct device *dev, + struct mvx_client_ops *client_ops, void *priv); + +/** + * mvx_if_destroy() - Destroy IF device. + */ +void mvx_if_destroy(struct mvx_if_ops *if_ops); + +#endif /* _MVX_IF_H_ */ diff --git a/drivers/media/platform/canaan/vpu/mvx_log.c b/drivers/media/platform/canaan/vpu/mvx_log.c new file mode 100644 index 0000000000000..30fcf0cdd0e19 --- /dev/null +++ b/drivers/media/platform/canaan/vpu/mvx_log.c @@ -0,0 +1,867 @@ +// SPDX-License-Identifier: GPL-2.0-only +/* + * The confidential and proprietary information contained in this file may + * only be used by a person authorised under and to the extent permitted + * by a subsisting licensing agreement from Arm Technology (China) Co., Ltd. + * + * (C) COPYRIGHT 2021-2021 Arm Technology (China) Co., Ltd. + * ALL RIGHTS RESERVED + * + * This entire notice must be reproduced on all copies of this file + * and copies of this file may only be made by a person if such person is + * permitted to do so under the terms of a subsisting license agreement + * from Arm Technology (China) Co., Ltd. + * + * 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. + * + */ + +/****************************************************************************** + * Includes + ******************************************************************************/ + +#include "mvx_log.h" +#include "mvx_log_ram.h" + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +/****************************************************************************** + * Defines + ******************************************************************************/ + +/****************************************************************************** + * Types + ******************************************************************************/ + +/****************************************************************************** + * Variables + ******************************************************************************/ + +#ifdef MVX_LOG_FTRACE_ENABLE + +/** + * Map severity to string. + */ +static const char *const severity_to_name[] = { "Panic", "Error", "Warning", + "Info", "Debug", "Verbose" }; +#endif /* MVX_LOG_FTRACE_ENABLE */ + +/** + * Map severity to kernel log level. + */ +static const char *const severity_to_kern_level[] = { + KERN_EMERG, KERN_ERR, KERN_WARNING, KERN_NOTICE, KERN_INFO, KERN_DEBUG +}; + +/****************************************************************************** + * Static functions + ******************************************************************************/ + +/****************************************************************************** + * Log + * + * Directory i_node->i_private + * -------------------------------------------------------- + * mvx struct mvx_log * + * +-- group + * | +-- struct mvx_log_group * + * | +-- severity + * | +-- drain + * +-- drain + * +-- struct mvx_log_drain * + * + ******************************************************************************/ + +/** + * trim() - Trim of trailing new line. + * @str: Pointer to string. + */ +static void trim(char *str) +{ + size_t len = strlen(str); + + while (len-- > 0) { + if (str[len] != '\n') + break; + + str[len] = '\0'; + } +} + +/** + * lookup() - Search for child dentry with matching name. + * @parent: Pointer to parent dentry. + * @name: Name of dentry to look for. + * + * Return: Pointer to dentry, NULL if not found. + */ +static struct dentry *lookup(struct dentry *parent, const char *name) +{ + struct dentry *child; + + /* Loop over directory entries in mvx/drain/. */ + list_for_each_entry(child, &parent->d_subdirs, d_child) { + if (strcmp(name, child->d_name.name) == 0) + return child; + } + + return NULL; +} + +/** + * get_inode_private() - Get inode private member of parent directory. + * @file: File pointer. + * @parent: Number of parent directories. + * + * Return: Inode private member, or NULL on error. + */ +static void *get_inode_private(struct file *file, int parent) +{ + struct dentry *d = file->f_path.dentry; + + while (d != NULL && parent-- > 0) + d = d->d_parent; + + if (d == NULL || d->d_inode == NULL) + return NULL; + + return d->d_inode->i_private; +} + +/** + * readme_read() - Read handle function for mvx/group//drain. The + * function returns the usage instruction message. + * @file: File pointer. + * @user_buffer: The user space buffer that is read to. + * @count: The maximum number of bytes to read. + * @position: The current position in the buffer. + */ +static ssize_t readme_read(struct file *file, char __user *user_buffer, + size_t count, loff_t *position) +{ + static const char msg[] = + "LOG GROUPS\n" + "\n" + "The available log groups can be found under 'group'.\n" + "$ ls group\n" + "\n" + "SEVERITY LEVELS\n" + " 0 - Panic\n" + " 1 - Error\n" + " 2 - Warning\n" + " 3 - Info\n" + " 4 - Debug\n" + " 5 - Verbose\n" + "\n" + "The severity level for a log group can be read and set at runtime.\n" + "$ cat group/general/severity\n" + "$ echo 3 > group/general/severity\n"; + + return simple_read_from_buffer(user_buffer, count, position, msg, + sizeof(msg)); +} + +/** + * group_drain_read() - Read handle function for mvx/group//drain. The + * function returns the name of the currently configured + * drain. + * @file: File pointer. + * @user_buffer: The user space buffer that is read to. + * @count: The maximum number of bytes to read. + * @position: The current position in the buffer. + */ +static ssize_t group_drain_read(struct file *file, char __user *user_buffer, + size_t count, loff_t *position) +{ + /* File path mvx/group//drain. */ + struct mvx_log_group *group = get_inode_private(file, 1); + struct mvx_log_drain *drain = group->drain; + char name[100]; + size_t len; + + if (drain == NULL || drain->dentry == NULL) { + pr_err("MVX: No drain assigned to log group.\n"); + return -EINVAL; + } + + len = scnprintf(name, sizeof(name), "%s\n", drain->dentry->d_name.name); + + return simple_read_from_buffer(user_buffer, count, position, name, len); +} + +/** + * group_drain_write() - Write handle function for mvx/group//drain. The + * function sets the drain for the group. If the drain + * does not match any registered drain, then error is + * returned to user space. + * @file: File pointer. + * @user_buffer: The user space buffer that is written to. + * @count: The maximum number of bytes to write. + * @position: The current position in the buffer. + */ +static ssize_t group_drain_write(struct file *file, + const char __user *user_buffer, size_t count, + loff_t *position) +{ + /* File path mvx/group//drain. */ + struct mvx_log_group *group = get_inode_private(file, 1); + struct mvx_log *log = get_inode_private(file, 3); + struct dentry *dentry; + char drain_str[100]; + ssize_t size; + + /* Check that input is not larger that path buffer. */ + if (count > (sizeof(drain_str) - 1)) { + pr_err("MVX: Input overflow.\n"); + + return -EINVAL; + } + + /* Append input to path. */ + size = simple_write_to_buffer(drain_str, sizeof(drain_str) - 1, + position, user_buffer, count); + drain_str[count] = '\0'; + trim(drain_str); + + dentry = lookup(log->drain_dir, drain_str); + + if (IS_ERR_OR_NULL(dentry)) { + pr_warn("MVX: No drain matching '%s'.\n", drain_str); + return -EINVAL; + } + + /* Assign drain to log group. */ + group->drain = dentry->d_inode->i_private; + + return size; +} + +/** + * drain_ram_read() - Read the RAM buffer. + * @drain: The RAM buffer drain. + * @user_buffer: The user space buffer that is read to. + * @count: The maximum number of bytes to read. + * @position: The current position in the buffer. + * @pos: The last used position of the drain buffer + */ +static ssize_t drain_ram_read(struct mvx_log_drain_ram *drain, + char __user *user_buffer, size_t count, + loff_t *position, size_t pos) +{ + ssize_t n = 0; + + /* Make sure position is not beyond end of file. */ + if (*position > pos) + return -EINVAL; + + /* If position is more than BUFFER_SIZE bytes behind, then fast forward + * to current position minus BUFFER_SIZE. + */ + if ((pos - *position) > drain->buffer_size) + *position = pos - drain->buffer_size; + + /* Copy data to user space. */ + while ((n < count) && (*position < pos)) { + size_t offset; + size_t length; + + /* Offset in circular buffer. */ + offset = *position & (drain->buffer_size - 1); + + /* Available number of bytes. */ + length = min((size_t)(pos - *position), count - n); + + /* Make sure length does not go beyond end of circular buffer. */ + length = min(length, drain->buffer_size - offset); + + /* Copy data from kernel- to user space. */ + length -= copy_to_user(&user_buffer[n], &drain->buf[offset], + length); + + /* No bytes were copied. Return error. */ + if (length == 0) + return -EINVAL; + + *position += length; + n += length; + } + + return n; +} + +/** + * drain_ram_read_msg() - Read of the RAM file. + * @file: File pointer. + * @user_buffer: The user space buffer that is read to. + * @count: The maximum number of bytes to read. + * @position: The current position in the buffer. + */ +static ssize_t drain_ram_read_msg(struct file *file, char __user *user_buffer, + size_t count, loff_t *position) +{ + struct mvx_log_drain_ram *drain = get_inode_private(file, 1); + + while (*position == drain->write_pos) { + int ret; + + if (file->f_flags & O_NONBLOCK) + return -EAGAIN; + + /* Block until there is data available. */ + ret = wait_event_interruptible(drain->queue, + *position < drain->write_pos); + if (ret != 0) + return -EINTR; + } + + return drain_ram_read(drain, user_buffer, count, position, + drain->write_pos); +} + +/** + * drain_ram_msg_poll() - Handle poll. + * @file: File pointer. + * @wait: The poll table to which the wait queue is added. + */ +static unsigned int drain_ram_msg_poll(struct file *file, poll_table *wait) +{ + unsigned int mask = 0; + struct mvx_log_drain_ram *drain = get_inode_private(file, 1); + + poll_wait(file, &drain->queue, wait); + + if (file->f_pos < drain->write_pos) + mask |= POLLIN | POLLRDNORM; + else if (file->f_pos > drain->write_pos) + mask |= POLLERR; + + return mask; +} + +/** + * drain_ram_ioctl() - Handle IOCTL. + * @file: File pointer. + * @cmd: The value of the command to be handled. + * @arg: Extra argument. + */ +static long drain_ram_ioctl(struct file *file, unsigned int cmd, + unsigned long arg) +{ + struct mvx_log_drain_ram *drain_ram = get_inode_private(file, 1); + + switch (cmd) { + case MVX_LOG_IOCTL_CLEAR: + drain_ram->read_pos = drain_ram->write_pos; + break; + default: + return -EINVAL; + } + + return 0; +} + +/** + * drain_ram_open() - Open file handle function. + * @inode: The inode associated with the file. + * @file: Pointer to the opened file. + * + * Return: 0 Always succeeds. + */ +static int drain_ram_open(struct inode *inode, struct file *file) +{ + struct mvx_log_drain_ram *drain_ram = get_inode_private(file, 1); + + file->f_pos = drain_ram->read_pos; + + return 0; +} + +/****************************************************************************** + * External interface + ******************************************************************************/ + +int mvx_log_construct(struct mvx_log *log, const char *entry_name) +{ + int ret; + static const struct file_operations readme_fops = { + .read = readme_read + }; + struct dentry *dentry; + + if (!IS_ENABLED(CONFIG_DEBUG_FS)) { + pr_info("MVX: Debugfs is not enabled. '%s' dir is not created.\n", + entry_name); + return 0; + } + + log->mvx_dir = debugfs_create_dir(entry_name, NULL); + if (IS_ERR_OR_NULL(log->mvx_dir)) { + pr_err("MVX: Failed to create '%s' dir.\n", entry_name); + return -ENOMEM; + } + + log->log_dir = debugfs_create_dir("log", log->mvx_dir); + if (IS_ERR_OR_NULL(log->log_dir)) { + pr_err("MVX: Failed to create 'log' dir.\n"); + ret = -ENOMEM; + goto error; + } + + log->log_dir->d_inode->i_private = log; + + log->drain_dir = debugfs_create_dir("drain", log->log_dir); + if (IS_ERR_OR_NULL(log->drain_dir)) { + pr_err("MVX: Failed to create 'drain' dir.\n"); + ret = -ENOMEM; + goto error; + } + + log->group_dir = debugfs_create_dir("group", log->log_dir); + if (IS_ERR_OR_NULL(log->group_dir)) { + pr_err("MVX: Failed to create 'group' dir.\n"); + ret = -ENOMEM; + goto error; + } + + /* Create /drain. */ + dentry = debugfs_create_file("README", 0400, log->log_dir, NULL, + &readme_fops); + if (IS_ERR_OR_NULL(dentry)) { + pr_err("MVX: Failed to create 'README'.\n"); + ret = -ENOMEM; + goto error; + } + + return 0; + +error: + debugfs_remove_recursive(log->mvx_dir); + return ret; +} + +void mvx_log_destruct(struct mvx_log *log) +{ + if (IS_ENABLED(CONFIG_DEBUG_FS)) + debugfs_remove_recursive(log->mvx_dir); +} + +/****************************************************************************** + * Log Drain + ******************************************************************************/ + +static int drain_construct(struct mvx_log_drain *drain, mvx_print_fptr print, + mvx_data_fptr data) +{ + drain->print = print; + drain->data = data; + + return 0; +} + +static void drain_destruct(struct mvx_log_drain *drain) +{ + +} + +static void drain_dmesg_print(struct mvx_log_drain *drain, + enum mvx_log_severity severity, const char *tag, + const char *msg, const unsigned int n_args, ...) +{ + va_list args; + char fmt[500]; + + severity = min_t(int, severity, MVX_LOG_VERBOSE); + + snprintf(fmt, sizeof(fmt), "%s%s: %s\n", + severity_to_kern_level[severity], tag, msg); + fmt[sizeof(fmt) - 1] = '\0'; + + va_start(args, n_args); + vprintk(fmt, args); + va_end(args); +} + +static void drain_dmesg_data(struct mvx_log_drain *drain, + enum mvx_log_severity severity, struct iovec *vec, + size_t count) +{ + size_t i; + + pr_info("count=%zu\n", count); + + for (i = 0; i < count; ++i) { + const char *p = vec[i].iov_base; + size_t length = vec[i].iov_len; + + pr_info(" length=%zu\n", length); + + while (length > 0) { + size_t j = min_t(size_t, length, 32); + char *buf; + size_t n = 0; + + buf = vmalloc(3 + j * 3 + 1); + + length -= j; + + n += scnprintf(&buf[n], sizeof(buf) - n, " "); + + while (j-- > 0) + n += scnprintf(&buf[n], sizeof(buf) - n, + " %02x", *p++); + + pr_info("%s\n", buf); + } + } +} + +int mvx_log_drain_dmesg_construct(struct mvx_log_drain *drain) +{ + return drain_construct(drain, drain_dmesg_print, drain_dmesg_data); +} + +void mvx_log_drain_dmesg_destruct(struct mvx_log_drain *drain) +{ + drain_destruct(drain); +} + +int mvx_log_drain_add(struct mvx_log *log, const char *name, + struct mvx_log_drain *drain) +{ + if (!IS_ENABLED(CONFIG_DEBUG_FS)) { + pr_info("MVX: Debugfs is not enabled. '%s' dir is not created.\n", + name); + return 0; + } + + /* Create directory. */ + drain->dentry = debugfs_create_dir(name, log->drain_dir); + if (IS_ERR_OR_NULL(drain->dentry)) { + pr_err("MVX: Failed to create '%s' dir.\n", name); + return -ENOMEM; + } + + /* Store pointer to drain object in inode private data. */ + drain->dentry->d_inode->i_private = drain; + + return 0; +} + +static void drain_ram_data(struct mvx_log_drain *drain, + enum mvx_log_severity severity, struct iovec *vec, + size_t count) +{ + struct mvx_log_drain_ram *drain_ram = (struct mvx_log_drain_ram *)drain; + size_t i; + size_t length; + size_t pos; + int sem_taken; + + if (!IS_ENABLED(CONFIG_DEBUG_FS)) + return; + + /* Calculate the total length of the output. */ + for (i = 0, length = 0; i < count; ++i) + length += vec[i].iov_len; + + /* Round up to next 32-bit boundary. */ + length = (length + 3) & ~3; + + if (length > drain_ram->buffer_size) { + pr_err("MVX: Logged data larger than output buffer. length=%zu, buffer_length=%zu.\n", + length, (size_t)drain_ram->buffer_size); + return; + } + + sem_taken = down_interruptible(&drain_ram->sem); + + pos = drain_ram->write_pos & (drain_ram->buffer_size - 1); + + /* Loop over scatter input. */ + for (i = 0; i < count; ++i) { + const char *buf = vec[i].iov_base; + size_t len = vec[i].iov_len; + + /* Copy log message to output buffer. */ + while (len > 0) { + size_t n = min(len, drain_ram->buffer_size - pos); + + memcpy(&drain_ram->buf[pos], buf, n); + + len -= n; + buf += n; + pos = (pos + n) & (drain_ram->buffer_size - 1); + } + } + + /* Update write_pos. Length has already been 4 byte aligned */ + drain_ram->write_pos += length; + + if (sem_taken == 0) + up(&drain_ram->sem); + + wake_up_interruptible(&drain_ram->queue); +} + +static void drain_ram_print(struct mvx_log_drain *drain, + enum mvx_log_severity severity, const char *tag, + const char *msg, const unsigned int n_args, ...) +{ + char buf[500]; + va_list args; + size_t n = 0; + struct mvx_log_header header; + struct iovec vec[2]; + struct timespec64 timespec; + + if (!IS_ENABLED(CONFIG_DEBUG_FS)) + return; + + /* Write the log message. */ + va_start(args, n_args); + n += vscnprintf(buf, sizeof(buf), msg, args); + va_end(args); + + ktime_get_real_ts64(×pec); + + header.magic = MVX_LOG_MAGIC; + header.length = n; + header.type = MVX_LOG_TYPE_TEXT; + header.severity = severity; + header.timestamp.sec = timespec.tv_sec; + header.timestamp.nsec = timespec.tv_nsec; + + vec[0].iov_base = &header; + vec[0].iov_len = sizeof(header); + + vec[1].iov_base = buf; + vec[1].iov_len = n; + + drain_ram_data(drain, severity, vec, 2); +} + +int mvx_log_drain_ram_construct(struct mvx_log_drain_ram *drain, + size_t buffer_size) +{ + int ret; + + ret = drain_construct(&drain->base, drain_ram_print, drain_ram_data); + if (ret != 0) + return ret; + + if (!IS_ENABLED(CONFIG_DEBUG_FS)) { + pr_info("MVX: No Debugfs no RAM drain.\n"); + return 0; + } + + drain->buf = vmalloc(buffer_size); + if (drain->buf == NULL) + return -ENOMEM; + + *(size_t *)&drain->buffer_size = buffer_size; + drain->read_pos = 0; + drain->write_pos = 0; + init_waitqueue_head(&drain->queue); + sema_init(&drain->sem, 1); + + return 0; +} + +void mvx_log_drain_ram_destruct(struct mvx_log_drain_ram *drain) +{ + if (IS_ENABLED(CONFIG_DEBUG_FS)) + vfree(drain->buf); + + drain_destruct(&drain->base); +} + +int mvx_log_drain_ram_add(struct mvx_log *log, const char *name, + struct mvx_log_drain_ram *drain) +{ + static const struct file_operations drain_ram_msg = { + .read = drain_ram_read_msg, + .poll = drain_ram_msg_poll, + .open = drain_ram_open, + .unlocked_ioctl = drain_ram_ioctl + }; + struct dentry *dentry; + int ret; + + if (!IS_ENABLED(CONFIG_DEBUG_FS)) { + pr_info("MVX: Debugfs is not enabled. RAM drain dirs are not created.\n"); + return 0; + } + + ret = mvx_log_drain_add(log, name, &drain->base); + if (ret != 0) + return ret; + + /* Create dentry. */ + dentry = debugfs_create_file("msg", 0600, drain->base.dentry, NULL, + &drain_ram_msg); + if (IS_ERR_OR_NULL(dentry)) { + pr_err("MVX: Failed to create '%s/msg.\n", name); + ret = -ENOMEM; + goto error; + } + + return 0; + +error: + debugfs_remove_recursive(drain->base.dentry); + + return ret; +} + +#ifdef MVX_LOG_FTRACE_ENABLE +static void drain_ftrace_print(struct mvx_log_drain *drain, + enum mvx_log_severity severity, const char *tag, + const char *msg, const unsigned int n_args, ...) +{ + va_list args; + char fmt[500]; + + severity = min_t(int, severity, MVX_LOG_VERBOSE); + + snprintf(fmt, sizeof(fmt), "%s %s: %s\n", severity_to_name[severity], + tag, msg); + fmt[sizeof(fmt) - 1] = '\0'; + + va_start(args, n_args); + //ftrace_vprintk(fmt, args); + va_end(args); +} + +static void drain_ftrace_data(struct mvx_log_drain *drain, + enum mvx_log_severity severity, struct iovec *vec, + size_t count) +{ + size_t i; + + //trace_printk("count=%zu\n", count); + + for (i = 0; i < count; ++i) { + const char *p = vec[i].iov_base; + size_t length = vec[i].iov_len; + + //trace_printk(" length=%zu\n", length); + + while (length > 0) { + size_t j = min_t(size_t, length, 32); + char buf[3 + j * 3 + 1]; + size_t n = 0; + + length -= j; + + n += scnprintf(&buf[n], sizeof(buf) - n, " "); + + while (j-- > 0) + n += scnprintf(&buf[n], sizeof(buf) - n, + " %02x", *p++); + + //trace_printk("%s\n", buf); + } + } +} + +int mvx_log_drain_ftrace_construct(struct mvx_log_drain *drain) +{ + return drain_construct(drain, drain_ftrace_print, drain_ftrace_data); +} + +void mvx_log_drain_ftrace_destruct(struct mvx_log_drain *drain) +{ + drain_destruct(drain); +} + +#endif /* MVX_LOG_FTRACE_ENABLE */ + +/****************************************************************************** + * Log Group + ******************************************************************************/ + +void mvx_log_group_construct(struct mvx_log_group *group, const char *tag, + const enum mvx_log_severity severity, + struct mvx_log_drain *drain) +{ + group->tag = tag; + group->severity = severity; + group->drain = drain; +} + +int mvx_log_group_add(struct mvx_log *log, const char *name, + struct mvx_log_group *group) +{ + static const struct file_operations group_drain_fops = { + .read = group_drain_read, .write = group_drain_write + }; + struct dentry *dentry; + int ret; + + if (!IS_ENABLED(CONFIG_DEBUG_FS)) { + pr_info("MVX: Debugfs is not enabled. '%s' dir is not created.\n", + name); + return 0; + } + + /* Create directory. */ + group->dentry = debugfs_create_dir(name, log->group_dir); + if (IS_ERR_OR_NULL(group->dentry)) { + pr_err("MVX: Failed to create '%s' dir.\n", name); + ret = -ENOMEM; + goto error; + } + + /* Store reference to group object in inode private data. */ + group->dentry->d_inode->i_private = group; + + /* Create /severity. */ + debugfs_create_u32("severity", 0600, group->dentry, &group->severity); + + /* Create /drain. */ + dentry = debugfs_create_file("drain", 0600, group->dentry, NULL, + &group_drain_fops); + if (IS_ERR_OR_NULL(dentry)) { + pr_err("MVX: Failed to create '%s/severity' value.\n", name); + ret = -ENOMEM; + goto error; + } + + return 0; + +error: + mvx_log_group_destruct(group); + return ret; +} + +void mvx_log_group_destruct(struct mvx_log_group *group) +{ + +} + +const char *mvx_log_strrchr(const char *s) +{ + const char *p = strrchr(s, '/'); + + return (p == NULL) ? s : p + 1; +} diff --git a/drivers/media/platform/canaan/vpu/mvx_log.h b/drivers/media/platform/canaan/vpu/mvx_log.h new file mode 100644 index 0000000000000..2ec4dfc42c0d7 --- /dev/null +++ b/drivers/media/platform/canaan/vpu/mvx_log.h @@ -0,0 +1,369 @@ +/* SPDX-License-Identifier: GPL-2.0-only + * The confidential and proprietary information contained in this file may + * only be used by a person authorised under and to the extent permitted + * by a subsisting licensing agreement from Arm Technology (China) Co., Ltd. + * + * (C) COPYRIGHT 2021-2021 Arm Technology (China) Co., Ltd. + * ALL RIGHTS RESERVED + * + * This entire notice must be reproduced on all copies of this file + * and copies of this file may only be made by a person if such person is + * permitted to do so under the terms of a subsisting license agreement + * from Arm Technology (China) Co., Ltd. + * + * 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. + * + */ + +#ifndef MVX_LOG_H +#define MVX_LOG_H + +/****************************************************************************** + * Includes + ******************************************************************************/ + +#include +#include +#include +#include +#include + +/****************************************************************************** + * Defines + ******************************************************************************/ +#define ENABLE_PM_CLK 1 + +/** + * Print a log message. + * + * @_lg: Pointer to log group. + * @_severity: Severity. + * @_fmt: Format string. + */ +#define MVX_LOG_PRINT(_lg, _severity, _fmt, ...) \ + do { \ + if ((_severity) <= (_lg)->severity) { \ + __MVX_LOG_PRINT(_lg, _severity, _fmt, ##__VA_ARGS__); \ + } \ + } while (0) + +/** + * Print a log message for a session. + * + * @_lg: Pointer to log group. + * @_severity: Severity. + * @_session: Pointer to session. + * @_fmt: Format string. + */ +#define MVX_LOG_PRINT_SESSION(_lg, _severity, _session, _fmt, ...) \ + do { \ + if ((_severity) <= (_lg)->severity) { \ + __MVX_LOG_PRINT(_lg, _severity, "%p " _fmt, _session, \ + ##__VA_ARGS__); \ + } \ + } while (0) + +/** + * Print binary data. + * + * @_lg: Pointer to log group. + * @_severity: Severity. + * @_vec: Scatter input vector data. + * @_count: _vec array size. + */ +#define MVX_LOG_DATA(_lg, _severity, _vec, _count) \ + do { \ + if ((_severity) <= (_lg)->severity) { \ + (_lg)->drain->data((_lg)->drain, _severity, _vec, \ + _count); \ + } \ + } while (0) + +/** + * Check if severity level for log group is enabled. + * + * @_lg: Pointer to log group. + * @_severity: Severity. + */ +#define MVX_LOG_ENABLED(_lg, _severity) ((_severity) <= (_lg)->severity) + +/** + * Execute function if log group is enabled. + * + * @_lg: Pointer to log group. + * @_severity: Severity. + * @_exec: The function to be executed. + */ +#define MVX_LOG_EXECUTE(_lg, _severity, _exec) \ + do { \ + if (MVX_LOG_ENABLED(_lg, _severity)) { \ + _exec; \ + } \ + } while (0) + +#ifdef MVX_LOG_PRINT_FILE_ENABLE +#define __MVX_LOG_PRINT(_lg, _severity, _fmt, ...) \ + ((_lg)->drain->print((_lg)->drain, _severity, (_lg)->tag, \ + _fmt " (%s:%d)", __MVX_LOG_N_ARGS(__VA_ARGS__), \ + ##__VA_ARGS__, mvx_log_strrchr(__FILE__), \ + __LINE__)) +#else +#define __MVX_LOG_PRINT(_lg, _severity, _fmt, ...) \ + ((_lg)->drain->print((_lg)->drain, _severity, (_lg)->tag, _fmt, \ + __MVX_LOG_N_ARGS(__VA_ARGS__), ##__VA_ARGS__)) +#endif /* MVX_LOG_PRINT_FILE_ENABLE */ + +#define __MVX_LOG_N_ARGS(...) \ + __MVX_LOG_COUNT(dummy, ##__VA_ARGS__, 8, 7, 6, 5, 4, 3, 2, 1, 0) + +#define __MVX_LOG_COUNT(_0, _1, _2, _3, _4, _5, _6, _7, _8, N, ...) N + +/****************************************************************************** + * Types + ******************************************************************************/ + +/** + * enum mvx_log_severity - Severity levels. + */ +enum mvx_log_severity { + MVX_LOG_PANIC, + MVX_LOG_ERROR, + MVX_LOG_WARNING, + MVX_LOG_INFO, + MVX_LOG_DEBUG, + MVX_LOG_VERBOSE, + MVX_LOG_MAX +}; + +struct mvx_log_drain; + +/** + * mvx_print_fptr() - Function pointer to output text messages. + * + * @drain: Pointer to drain. + * @severity: Severity level. + * @tag: Log group tag. + * @fmt: Format string. + * @n_args: Number of arguments to format string. + */ +typedef void (*mvx_print_fptr)(struct mvx_log_drain *drain, + enum mvx_log_severity severity, const char *tag, + const char *fmt, const unsigned int n_args, ...); + +/** + * mvx_data_fptr() - Function pointer to output binary data. + * + * @drain: Pointer to drain. + * @severity: Severity level. + * @vec: Pointer to the buffers that are copied. + * @count: The number of vec buffers. + */ +typedef void (*mvx_data_fptr)(struct mvx_log_drain *drain, + enum mvx_log_severity severity, struct iovec *vec, + size_t count); + +/** + * struct mvx_log_drain - Structure with information about the drain. The drain + * handles the formatting and redirection of the log + * messages. + * @print: Print function pointer. + * @data: Data function pointer. + * @dentry: Debugfs dentry. + */ +struct mvx_log_drain { + mvx_print_fptr print; + mvx_data_fptr data; + struct dentry *dentry; +}; + +/** + * struct mvx_log_drain_ram - Structure describing a specialized RAM drain. + * @base: Base class. + * @buf: Pointer to output buffer. + * @buffer_size: Size of the buffer. Must be power of 2. + * @read_pos: Read position when a new file handle is opened. Is + * updated when the buffer is cleared. + * @write_pos: Current write position in RAM buffer. + * @queue: Wait queue for blocking IO. + * @sem: Semaphore to prevent concurrent writes. + */ +struct mvx_log_drain_ram { + struct mvx_log_drain base; + char *buf; + const size_t buffer_size; + size_t read_pos; + size_t write_pos; + wait_queue_head_t queue; + struct semaphore sem; +}; + +/** + * struct mvx_log_group - Structure describing log group. The log group filters + * which log messages that shall be forwarded to the + * drain. + * @tag: Name of log group. + * @severity: Severity level. + * @drain: Drain. + * @dentry: Debugfs dentry. + */ +struct mvx_log_group { + const char *tag; + enum mvx_log_severity severity; + struct mvx_log_drain *drain; + struct dentry *dentry; +}; + +/** + * struct mvx_log - Log class that keeps track of registered groups and drains. + */ +struct mvx_log { + struct dentry *mvx_dir; + struct dentry *log_dir; + struct dentry *drain_dir; + struct dentry *group_dir; +}; + +/**************************************************************************** + * Log + ****************************************************************************/ + +/** + * mvx_log_construct() - Log constructor. + * @log: Pointer to log. + * @entry_name: The name of the directory + * + * Return: 0 on success, else error code. + */ +int mvx_log_construct(struct mvx_log *log, const char *entry_name); + +/** + * mvx_log_destruct() - Log destructor. + * @log: Pointer to log. + */ +void mvx_log_destruct(struct mvx_log *log); + +/**************************************************************************** + * Drain + ****************************************************************************/ + +/** + * mvx_log_drain_dmesg_construct() - Dmesg drain constructor. + * @drain: Pointer to drain. + * + * Return: 0 on success, else error code. + */ +int mvx_log_drain_dmesg_construct(struct mvx_log_drain *drain); + +/** + * mvx_log_drain_dmesg_destruct() - Dmesg drain destructor. + * @drain: Pointer to drain. + */ +void mvx_log_drain_dmesg_destruct(struct mvx_log_drain *drain); + +/** + * mvx_log_drain_add() - Add drain to log. + * @log: Pointer to log. + * @name: Name of drain. + * @drain: Pointer to drain. + * + * Return: 0 on success, else error code. + */ +int mvx_log_drain_add(struct mvx_log *log, const char *name, + struct mvx_log_drain *drain); + +/** + * mvx_log_drain_ram_construct() - RAM drain constructor. + * @drain: Pointer to drain. + * @print: Print function pointer. + * @data: Data function pointer. + * @buffer_size: The size of the RAM drain buffer. + * + * Return: 0 on success, else error code. + */ +int mvx_log_drain_ram_construct(struct mvx_log_drain_ram *drain, + size_t buffer_size); + +/** + * mvx_log_drain_ram_destruct() - RAM drain destructor. + * @drain: Pointer to drain. + */ +void mvx_log_drain_ram_destruct(struct mvx_log_drain_ram *drain); + +/** + * mvx_log_drain_ram_add() - Derived function to add RAM drain to log. + * @log: Pointer to log. + * @name: Name of drain. + * @drain: Pointer to drain. + * + * Return: 0 on success, else error code. + */ +int mvx_log_drain_ram_add(struct mvx_log *log, const char *name, + struct mvx_log_drain_ram *drain); + +#ifdef MVX_LOG_FTRACE_ENABLE + +/** + * mvx_log_drain_ftrace_construct() - Ftrace drain constructor. + * @drain: Pointer to drain. + * + * Return: 0 on success, else error code. + */ +int mvx_log_drain_ftrace_construct(struct mvx_log_drain *drain); + +/** + * mvx_log_drain_ftrace_destruct() - Ftrace drain destructor. + * @drain: Pointer to drain. + */ +void mvx_log_drain_ftrace_destruct(struct mvx_log_drain *drain); + +#endif /* MVX_LOG_FTRACE_ENABLE */ + +/**************************************************************************** + * Group + ****************************************************************************/ + +/** + * mvx_log_group_construct() - Group constructor. + * @group: Pointer to group. + * @tag: Name of the group, to be used in log messages. + * @severity: Minimum severity to output log message. + * @drain: Pointer to drain. + */ +void mvx_log_group_construct(struct mvx_log_group *group, const char *tag, + const enum mvx_log_severity severity, + struct mvx_log_drain *drain); + +/** + * mvx_log_group_add() - Add a group with given name to log. + * @log: Pointer to log. + * @name: Name of group. + * @group: Pointer to group. + * + * Return: 0 on success, else error code. + */ +int mvx_log_group_add(struct mvx_log *log, const char *name, + struct mvx_log_group *group); + +/** + * mvx_log_group_destruct() - Group destructor. + * @group: Pointer to group. + */ +void mvx_log_group_destruct(struct mvx_log_group *group); + +/** + * mvx_log_strrchr() - Find last occurrence of '/' in string. + * @s: Pointer to string. + * + * Return: Pointer to '/'+1, or pointer to begin of string. + */ +const char *mvx_log_strrchr(const char *s); + +#endif /* MVX_LOG_H */ diff --git a/drivers/media/platform/canaan/vpu/mvx_log_group.c b/drivers/media/platform/canaan/vpu/mvx_log_group.c new file mode 100644 index 0000000000000..b2095540a20cf --- /dev/null +++ b/drivers/media/platform/canaan/vpu/mvx_log_group.c @@ -0,0 +1,160 @@ +// SPDX-License-Identifier: GPL-2.0-only +/* + * The confidential and proprietary information contained in this file may + * only be used by a person authorised under and to the extent permitted + * by a subsisting licensing agreement from Arm Technology (China) Co., Ltd. + * + * (C) COPYRIGHT 2021-2021 Arm Technology (China) Co., Ltd. + * ALL RIGHTS RESERVED + * + * This entire notice must be reproduced on all copies of this file + * and copies of this file may only be made by a person if such person is + * permitted to do so under the terms of a subsisting license agreement + * from Arm Technology (China) Co., Ltd. + * + * 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. + * + */ + +/****************************************************************************** + * Includes + ******************************************************************************/ + +#include "mvx_log.h" + +/****************************************************************************** + * Private variables + ******************************************************************************/ + +static struct mvx_log log; + +static struct mvx_log_drain drain_dmesg_if; +static struct mvx_log_drain_ram drain_ram0_if; + +#ifdef MVX_LOG_FTRACE_ENABLE +static struct mvx_log_drain drain_ftrace_if; +#endif /* MVX_LOG_FTRACE_ENABLE */ + +struct mvx_log_group mvx_log_if; +struct mvx_log_group mvx_log_fwif_if; +struct mvx_log_group mvx_log_session_if; +struct mvx_log_group mvx_log_dev; + +/****************************************************************************** + * External interface + ******************************************************************************/ + +int mvx_log_group_init(const char *entry_name) +{ + int ret; + struct mvx_log_drain *drain_default = &drain_dmesg_if; + struct mvx_log_drain *drain_ram = &drain_ram0_if.base; + +#ifdef MVX_LOG_FTRACE_ENABLE + drain_default = &drain_ftrace_if; +#endif /* MVX_LOG_FTRACE_ENABLE */ + + /* Construct log object. */ + ret = mvx_log_construct(&log, entry_name); + if (ret != 0) + return ret; + + /* Construct drain objects and add them to log. */ + mvx_log_drain_dmesg_construct(&drain_dmesg_if); + ret = mvx_log_drain_add(&log, "dmesg", &drain_dmesg_if); + if (ret != 0) + goto delete_log_entry; + + mvx_log_drain_ram_construct(&drain_ram0_if, 64 * 1024); + ret = mvx_log_drain_ram_add(&log, "ram0", &drain_ram0_if); + if (ret != 0) + goto delete_dmesg_drain; + +#ifdef MVX_LOG_FTRACE_ENABLE + mvx_log_drain_ftrace_construct(&drain_ftrace_if); + mvx_log_drain_add(&log, "ftrace", &drain_ftrace_if); + if (ret != 0) + goto delete_ram_drain; + +#endif /* MVX_LOG_FTRACE_ENABLE */ + + /* Construct group objects. */ + mvx_log_group_construct(&mvx_log_if, "MVX if", MVX_LOG_WARNING, + drain_default); + ret = mvx_log_group_add(&log, "generic", &mvx_log_if); + if (ret != 0) + goto delete_ftrace_drain; + + mvx_log_group_construct(&mvx_log_fwif_if, "MVX fwif", MVX_LOG_INFO, + drain_ram); + ret = mvx_log_group_add(&log, "firmware_interface", &mvx_log_fwif_if); + if (ret != 0) + goto delete_generic_group; + + mvx_log_group_construct(&mvx_log_session_if, "MVX session", + MVX_LOG_WARNING, drain_default); + ret = mvx_log_group_add(&log, "session", &mvx_log_session_if); + if (ret != 0) + goto delete_fwif_group; + + mvx_log_group_construct(&mvx_log_dev, "MVX dev", MVX_LOG_WARNING, + drain_default); + ret = mvx_log_group_add(&log, "dev", &mvx_log_dev); + if (ret != 0) + goto delete_session_group; + + return 0; + +delete_session_group: + mvx_log_group_destruct(&mvx_log_session_if); + +delete_fwif_group: + mvx_log_group_destruct(&mvx_log_fwif_if); + +delete_generic_group: + mvx_log_group_destruct(&mvx_log_if); + +delete_ftrace_drain: + +#ifdef MVX_LOG_FTRACE_ENABLE + mvx_log_drain_ftrace_destruct(&drain_ftrace_if); + +delete_ram_drain: +#endif /* MVX_LOG_FTRACE_ENABLE */ + + mvx_log_drain_ram_destruct(&drain_ram0_if); + +delete_dmesg_drain: + mvx_log_drain_dmesg_destruct(&drain_dmesg_if); + +delete_log_entry: + mvx_log_destruct(&log); + + return ret; +} + +void mvx_log_group_deinit(void) +{ + /* Destroy objects in reverse order. */ + mvx_log_group_destruct(&mvx_log_dev); + mvx_log_group_destruct(&mvx_log_session_if); + mvx_log_group_destruct(&mvx_log_fwif_if); + mvx_log_group_destruct(&mvx_log_if); + +#ifdef MVX_LOG_FTRACE_ENABLE + mvx_log_drain_ftrace_destruct(&drain_ftrace_if); +#endif /* MVX_LOG_FTRACE_ENABLE */ + + mvx_log_drain_ram_destruct(&drain_ram0_if); + mvx_log_drain_dmesg_destruct(&drain_dmesg_if); + + mvx_log_destruct(&log); +} diff --git a/drivers/media/platform/canaan/vpu/mvx_log_group.h b/drivers/media/platform/canaan/vpu/mvx_log_group.h new file mode 100644 index 0000000000000..22e5e9a3c261d --- /dev/null +++ b/drivers/media/platform/canaan/vpu/mvx_log_group.h @@ -0,0 +1,62 @@ +/* SPDX-License-Identifier: GPL-2.0-only + * The confidential and proprietary information contained in this file may + * only be used by a person authorised under and to the extent permitted + * by a subsisting licensing agreement from Arm Technology (China) Co., Ltd. + * + * (C) COPYRIGHT 2021-2021 Arm Technology (China) Co., Ltd. + * ALL RIGHTS RESERVED + * + * This entire notice must be reproduced on all copies of this file + * and copies of this file may only be made by a person if such person is + * permitted to do so under the terms of a subsisting license agreement + * from Arm Technology (China) Co., Ltd. + * + * 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. + * + */ + +#ifndef _MVX_LOG_GROUP_H_ +#define _MVX_LOG_GROUP_H_ + +/**************************************************************************** + * Includes + ****************************************************************************/ + +#include "mvx_log.h" + +/****************************************************************************** + * Prototypes + ******************************************************************************/ + +extern struct mvx_log_group mvx_log_if; +extern struct mvx_log_group mvx_log_fwif_if; +extern struct mvx_log_group mvx_log_session_if; +extern struct mvx_log_group mvx_log_dev; + +/**************************************************************************** + * Exported functions + ****************************************************************************/ + +/** + * mvx_log_group_init() - Initialize log module. This function must be called + * before any of the log groups is used. + * @entry_name: The name of the directory + * + * Return: 0 on success, else error code. + */ +int mvx_log_group_init(const char *entry_name); + +/** + * mvx_log_group_deinit() - Destroy log module. + */ +void mvx_log_group_deinit(void); + +#endif /* _MVX_LOG_GROUP_H_ */ diff --git a/drivers/media/platform/canaan/vpu/mvx_log_ram.h b/drivers/media/platform/canaan/vpu/mvx_log_ram.h new file mode 100644 index 0000000000000..0f9c7abc9b88d --- /dev/null +++ b/drivers/media/platform/canaan/vpu/mvx_log_ram.h @@ -0,0 +1,197 @@ +/* SPDX-License-Identifier: GPL-2.0-only + * The confidential and proprietary information contained in this file may + * only be used by a person authorised under and to the extent permitted + * by a subsisting licensing agreement from Arm Technology (China) Co., Ltd. + * + * (C) COPYRIGHT 2021-2021 Arm Technology (China) Co., Ltd. + * ALL RIGHTS RESERVED + * + * This entire notice must be reproduced on all copies of this file + * and copies of this file may only be made by a person if such person is + * permitted to do so under the terms of a subsisting license agreement + * from Arm Technology (China) Co., Ltd. + * + * 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. + * + */ + +#ifndef MVX_LOG_RAM_H +#define MVX_LOG_RAM_H + +/****************************************************************************** + * Includes + ******************************************************************************/ + +#ifndef __KERNEL__ +#include +#include +#include +#else +#include +#include +#endif + +/****************************************************************************** + * Defines + ******************************************************************************/ + +/** + * Magic word "MVXL" that prefix all messages. + * + * Messages are stored in native byte order. The magic word can be used to + * detect if the log has been stored in the same byte order as the application + * unpacking the log is using. + */ +#define MVX_LOG_MAGIC 0x4d56584c + +/** + * The maximum message length. + */ +#define MVX_LOG_MESSAGE_LENGTH_MAX 4096 + +/****************************************************************************** + * Types + ******************************************************************************/ + +/** + * enum mvx_log_ioctl - IOCTL commands. + * @MVX_LOG_IOCTL_CLEAR: Clear the log. + */ +enum mvx_log_ioctl { MVX_LOG_IOCTL_CLEAR }; + +/** + * enum mvx_log_type - Message type. The definitions are assigned values that + * are not allowed to change. + */ +enum mvx_log_type { + MVX_LOG_TYPE_TEXT = 0, + MVX_LOG_TYPE_FWIF = 1, + MVX_LOG_TYPE_FW_BINARY = 2, + MVX_LOG_TYPE_MAX +}; + +/** + * struct mvx_log_timeval - Portable time value format. + * @sec: Seconds since 1970-01-01, Unix time epoch. + * @nsec: Nano seconds. + */ +struct mvx_log_timeval { + uint64_t sec; + uint64_t nsec; +} __packed; + +/** + * struct mvx_log_header - Common header for all messages stored in RAM buffer. + * @magic: Magic word. + * @length: Length of message, excluding this header. + * @type: Message type. + * @severity: Message severity. + * @timestamp: Time stamp. + */ +struct mvx_log_header { + uint32_t magic; + uint16_t length; + uint8_t type; + uint8_t severity; + struct mvx_log_timeval timestamp; +} __packed; + +/****************************************************************************** + * Text message + ******************************************************************************/ + +/** + * struct mvx_log_text - ASCII text message. + * @message[0]: ASCII text message. + * + * The message shall be header.length long and should end with a standard ASCII + * character. The parser of the log will add new line and null terminate + * the string. + */ +struct mvx_log_text { + char message[2]; +} __packed; + +/****************************************************************************** + * Firmware interface + ******************************************************************************/ + +/** + * enum mvx_log_fwif_channel - Firmware interface message types. + */ +enum mvx_log_fwif_channel { + MVX_LOG_FWIF_CHANNEL_MESSAGE, + MVX_LOG_FWIF_CHANNEL_INPUT_BUFFER, + MVX_LOG_FWIF_CHANNEL_OUTPUT_BUFFER, + MVX_LOG_FWIF_CHANNEL_RPC +}; + +/** + * enum mvx_log_fwif_direction - Firmware interface message types. + */ +enum mvx_log_fwif_direction { + MVX_LOG_FWIF_DIRECTION_HOST_TO_FIRMWARE, + MVX_LOG_FWIF_DIRECTION_FIRMWARE_TO_HOST +}; + +/** + * enum mvx_log_fwif_code - Special message codes for message types not defined + * by the firmware interface. + */ +enum mvx_log_fwif_code { MVX_LOG_FWIF_CODE_STAT = 16000 }; + +/** + * struct mvx_log_fwif - Firmware interface header type. + * @version_minor: Protocol version. + * @version_major: Protocol version. + * @channel: @see enum mvx_log_fwif_channel. + * @direction: @see enum mvx_log_fwif_direction. + * @session: Session id. + * @data[0]: Data following the firmware interface message + * header. + */ +struct mvx_log_fwif { + uint8_t version_minor; + uint8_t version_major; + uint8_t channel; + uint8_t direction; + uint64_t session; + uint8_t data[2]; +} __packed; + +/** + * struct mvx_log_fwif_stat - Firmware interface statistics. + * @handle: Buffer handle. + * @queued: Number of buffers currently queued to the firmware. + */ +struct mvx_log_fwif_stat { + uint64_t handle; + uint32_t queued; +} __packed; + +/****************************************************************************** + * Firmware binary header + ******************************************************************************/ + +/** + * struct mvx_log_fw_binary - Firmware binary header. + * @session: Session id. + * @data[0]: Firmware binary, byte 0..length. + * + * The first ~100 bytes of the firmware binary contain information describing + * the codec. + */ +struct mvx_log_fw_binary { + uint64_t session; + uint8_t data[2]; +}; + +#endif /* MVX_LOG_RAM_H */ diff --git a/drivers/media/platform/canaan/vpu/mvx_lsid.c b/drivers/media/platform/canaan/vpu/mvx_lsid.c new file mode 100644 index 0000000000000..5beb940be45a7 --- /dev/null +++ b/drivers/media/platform/canaan/vpu/mvx_lsid.c @@ -0,0 +1,322 @@ +// SPDX-License-Identifier: GPL-2.0-only +/* + * The confidential and proprietary information contained in this file may + * only be used by a person authorised under and to the extent permitted + * by a subsisting licensing agreement from Arm Technology (China) Co., Ltd. + * + * (C) COPYRIGHT 2021-2021 Arm Technology (China) Co., Ltd. + * ALL RIGHTS RESERVED + * + * This entire notice must be reproduced on all copies of this file + * and copies of this file may only be made by a person if such person is + * permitted to do so under the terms of a subsisting license agreement + * from Arm Technology (China) Co., Ltd. + * + * 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. + * + */ + +/**************************************************************************** + * Includes + ****************************************************************************/ + +#include +#include +#include "mvx_if.h" +#include "mvx_hwreg.h" +#include "mvx_lsid.h" +#include "mvx_log_group.h" +#include "mvx_session.h" + +/**************************************************************************** + * Private functions + ****************************************************************************/ + +static bool is_alloc(struct mvx_lsid *lsid) +{ + uint32_t alloc; + + alloc = mvx_hwreg_read_lsid(lsid->hwreg, lsid->lsid, MVX_HWREG_ALLOC); + + return alloc != MVE_ALLOC_FREE; +} + +static uint32_t get_core_lsid(uint32_t reg, unsigned int core) +{ + return (reg >> (MVE_CORELSID_LSID_BITS * core)) & + MVX_CORELSID_LSID_MASK; +} + +static uint32_t get_jobqueue_job(uint32_t reg, unsigned int nr) +{ + return (reg >> (MVE_JOBQUEUE_JOB_BITS * nr)) & MVE_JOBQUEUE_JOB_MASK; +} + +static uint32_t set_jobqueue_job(uint32_t reg, unsigned int nr, uint32_t job) +{ + reg &= ~(MVE_JOBQUEUE_JOB_MASK << (nr * MVE_JOBQUEUE_JOB_BITS)); + reg |= job << (MVE_JOBQUEUE_JOB_BITS * nr); + return reg; +} + +static uint32_t get_jobqueue_lsid(uint32_t reg, unsigned int nr) +{ + return (reg >> (MVE_JOBQUEUE_JOB_BITS * nr + MVE_JOBQUEUE_LSID_SHIFT)) & + MVE_JOBQUEUE_LSID_MASK; +} + +static uint32_t set_lsid_ncores(uint32_t reg, unsigned int nr, + unsigned int lsid, unsigned int ncores) +{ + reg &= ~(MVE_JOBQUEUE_JOB_MASK << (nr * MVE_JOBQUEUE_JOB_BITS)); + reg |= ((lsid << MVE_JOBQUEUE_LSID_SHIFT) | + ((ncores - 1) << MVE_JOBQUEUE_NCORES_SHIFT)) + << (nr * MVE_JOBQUEUE_JOB_BITS); + + return reg; +} + +/**************************************************************************** + * Exported functions + ****************************************************************************/ + +int mvx_lsid_construct(struct mvx_lsid *lsid, struct device *dev, + struct mvx_hwreg *hwreg, unsigned int id) +{ + lsid->dev = dev; + lsid->hwreg = hwreg; + lsid->session = NULL; + lsid->lsid = id; + + return 0; +} + +void mvx_lsid_destruct(struct mvx_lsid *lsid) +{ +} + +int mvx_lsid_map(struct mvx_lsid *lsid, struct mvx_lsid_pcb *pcb) +{ + struct mvx_hwreg *hwreg = lsid->hwreg; + uint32_t alloc; + uint32_t busattr[4]; + int ret; + + /* Check that the LSID is not already allocated. */ + if (is_alloc(lsid)) { + MVX_LOG_PRINT( + &mvx_log_dev, MVX_LOG_WARNING, + "Failed to map session to LSID. LSID already allocated. lsid=%u.", + lsid->lsid); + return -EFAULT; + } + + /* Allocate LSID. */ + alloc = pcb->nprot == 0 ? MVE_ALLOC_PROTECTED : MVE_ALLOC_NON_PROTECTED; + mvx_hwreg_write_lsid(hwreg, lsid->lsid, MVX_HWREG_ALLOC, alloc); + + mvx_hwreg_write_lsid(hwreg, lsid->lsid, MVX_HWREG_TERMINATE, 1); + do { + ret = mvx_hwreg_read_lsid(hwreg, lsid->lsid, + MVX_HWREG_TERMINATE); + } while (ret != 0); + + /* Configure number of cores to use and which to cores to disable. */ + mvx_hwreg_write_lsid(hwreg, lsid->lsid, MVX_HWREG_CTRL, pcb->ctrl); + + /* Configure MMU L0 entry and flush MMU tables. */ + mvx_hwreg_write_lsid(hwreg, lsid->lsid, MVX_HWREG_MMU_CTRL, + pcb->mmu_ctrl); + mvx_hwreg_write_lsid(hwreg, lsid->lsid, MVX_HWREG_FLUSH_ALL, 0); + + if (of_property_read_u32_array(lsid->dev->of_node, "busattr", busattr, + ARRAY_SIZE(busattr))) { + MVX_LOG_PRINT(&mvx_log_dev, MVX_LOG_INFO, + "busattr in of_node is not available."); + + /* We apply default values in this case. */ + busattr[0] = 0; + busattr[1] = 0; + busattr[2] = 0x33; + busattr[3] = 0x33; + } else { + int i; + + for (i = 0; i < ARRAY_SIZE(busattr); i++) + MVX_LOG_PRINT(&mvx_log_dev, MVX_LOG_VERBOSE, + "busattr[%d] = 0x%x.", i, busattr[i]); + } + + mvx_hwreg_write_lsid(hwreg, lsid->lsid, MVX_HWREG_BUSATTR_0, + busattr[0]); + mvx_hwreg_write_lsid(hwreg, lsid->lsid, MVX_HWREG_BUSATTR_1, + busattr[1]); + mvx_hwreg_write_lsid(hwreg, lsid->lsid, MVX_HWREG_BUSATTR_2, + busattr[2]); + mvx_hwreg_write_lsid(hwreg, lsid->lsid, MVX_HWREG_BUSATTR_3, + busattr[3]); + + /* Restore interrupt registers. */ + mvx_hwreg_write_lsid(hwreg, lsid->lsid, MVX_HWREG_IRQVE, 0); + mvx_hwreg_write_lsid(hwreg, lsid->lsid, MVX_HWREG_IRQHOST, + pcb->irqhost); + + /* + * Make sure all register writes have completed before scheduling is + * enabled. + */ + wmb(); + + /* Enable scheduling. */ + mvx_hwreg_write_lsid(hwreg, lsid->lsid, MVX_HWREG_SCHED, 1); + + return 0; +} + +void mvx_lsid_unmap(struct mvx_lsid *lsid, struct mvx_lsid_pcb *pcb) +{ + struct mvx_hwreg *hwreg = lsid->hwreg; + + if (!is_alloc(lsid)) { + MVX_LOG_PRINT(&mvx_log_dev, MVX_LOG_WARNING, + "LSID was not allocated. lsid=%u.", lsid->lsid); + return; + } + + /* Disable scheduling. */ + mvx_hwreg_write_lsid(hwreg, lsid->lsid, MVX_HWREG_SCHED, 0); + + /* Store registers in process control block. */ + pcb->ctrl = mvx_hwreg_read_lsid(hwreg, lsid->lsid, MVX_HWREG_CTRL); + pcb->mmu_ctrl = + mvx_hwreg_read_lsid(hwreg, lsid->lsid, MVX_HWREG_MMU_CTRL); + pcb->irqhost = + mvx_hwreg_read_lsid(hwreg, lsid->lsid, MVX_HWREG_IRQHOST); + pcb->nprot = mvx_hwreg_read_lsid(hwreg, lsid->lsid, MVX_HWREG_NPROT); + + /* Deallocate LSID. */ + mvx_hwreg_write_lsid(hwreg, lsid->lsid, MVX_HWREG_ALLOC, + MVE_ALLOC_FREE); +} + +int mvx_lsid_jobqueue_add(struct mvx_lsid *lsid, unsigned int ncores) +{ + struct mvx_hwreg *hwreg = lsid->hwreg; + uint32_t jobqueue; + int i; + + /* Disable scheduling. */ + mvx_hwreg_write(hwreg, MVX_HWREG_ENABLE, 0); + + jobqueue = mvx_hwreg_read(hwreg, MVX_HWREG_JOBQUEUE); + + /* Search if the LSID is already in the job queue. */ + for (i = 0; i < MVE_JOBQUEUE_NJOBS; i++) + if (get_jobqueue_lsid(jobqueue, i) == lsid->lsid) + goto jobqueue_enable; + + /* Search for a free slot in the job queue. */ + for (i = 0; i < MVE_JOBQUEUE_NJOBS; i++) + if (get_jobqueue_lsid(jobqueue, i) == + MVE_JOBQUEUE_JOB_INVALID) { + jobqueue = set_lsid_ncores(jobqueue, i, lsid->lsid, + ncores); + mvx_hwreg_write(hwreg, MVX_HWREG_JOBQUEUE, jobqueue); + break; + } + +jobqueue_enable: + /* Reenable scheduling. */ + mvx_hwreg_write(hwreg, MVX_HWREG_ENABLE, 1); + + return i < MVE_JOBQUEUE_NJOBS ? 0 : -EAGAIN; +} + +void mvx_lsid_send_irq(struct mvx_lsid *lsid) +{ + struct mvx_hwreg *hwreg = lsid->hwreg; + + mvx_hwreg_write_lsid(hwreg, lsid->lsid, MVX_HWREG_IRQHOST, 1); +} + +void mvx_lsid_flush_mmu(struct mvx_lsid *lsid) +{ + struct mvx_hwreg *hwreg = lsid->hwreg; + + mvx_hwreg_write_lsid(hwreg, lsid->lsid, MVX_HWREG_FLUSH_ALL, 0); +} + +void mvx_lsid_terminate(struct mvx_lsid *lsid) +{ + struct mvx_hwreg *hwreg = lsid->hwreg; + uint32_t ret; + + mvx_hwreg_write_lsid(hwreg, lsid->lsid, MVX_HWREG_TERMINATE, 1); + + do { + ret = mvx_hwreg_read_lsid(hwreg, lsid->lsid, + MVX_HWREG_TERMINATE); + } while (ret != 0); +} + +void mvx_lsid_jobqueue_remove(struct mvx_lsid *lsid) +{ + struct mvx_hwreg *hwreg = lsid->hwreg; + uint32_t jobqueue; + int i; + int j; + + /* Disable scheduling. */ + mvx_hwreg_write(hwreg, MVX_HWREG_ENABLE, 0); + + jobqueue = mvx_hwreg_read(hwreg, MVX_HWREG_JOBQUEUE); + + /* Copy job entries that do not match the LSID to be removed. */ + for (i = 0, j = 0; i < MVE_JOBQUEUE_NJOBS; i++) + if (get_jobqueue_lsid(jobqueue, i) != lsid->lsid) + jobqueue = set_jobqueue_job( + jobqueue, j++, get_jobqueue_job(jobqueue, i)); + + /* Blank out remaining job entries. */ + for (; j < MVE_JOBQUEUE_NJOBS; j++) + jobqueue = set_lsid_ncores(jobqueue, i, + MVE_JOBQUEUE_JOB_INVALID, 0); + + mvx_hwreg_write(hwreg, MVX_HWREG_JOBQUEUE, jobqueue); + + /* Reenable scheduling. */ + mvx_hwreg_write(hwreg, MVX_HWREG_ENABLE, 1); +} + +bool mvx_lsid_idle(struct mvx_lsid *lsid) +{ + struct mvx_hwreg *hwreg = lsid->hwreg; + uint32_t jobqueue; + uint32_t corelsid; + uint32_t ncores; + uint32_t i; + + jobqueue = mvx_hwreg_read(hwreg, MVX_HWREG_JOBQUEUE); + corelsid = mvx_hwreg_read(hwreg, MVX_HWREG_CORELSID); + ncores = mvx_hwreg_read(hwreg, MVX_HWREG_NCORES); + + /* Check if LSID is found in job queue. */ + for (i = 0; i < MVE_JOBQUEUE_NJOBS; i++) + if (get_jobqueue_lsid(jobqueue, i) == lsid->lsid) + return false; + + /* Check if LSID is found in core lsid. */ + for (i = 0; i < ncores; i++) + if (get_core_lsid(corelsid, i) == lsid->lsid) + return false; + + return true; +} diff --git a/drivers/media/platform/canaan/vpu/mvx_lsid.h b/drivers/media/platform/canaan/vpu/mvx_lsid.h new file mode 100644 index 0000000000000..5afa266199156 --- /dev/null +++ b/drivers/media/platform/canaan/vpu/mvx_lsid.h @@ -0,0 +1,155 @@ +/* SPDX-License-Identifier: GPL-2.0-only + * The confidential and proprietary information contained in this file may + * only be used by a person authorised under and to the extent permitted + * by a subsisting licensing agreement from Arm Technology (China) Co., Ltd. + * + * (C) COPYRIGHT 2021-2021 Arm Technology (China) Co., Ltd. + * ALL RIGHTS RESERVED + * + * This entire notice must be reproduced on all copies of this file + * and copies of this file may only be made by a person if such person is + * permitted to do so under the terms of a subsisting license agreement + * from Arm Technology (China) Co., Ltd. + * + * 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. + * + */ + +#ifndef _MVX_LSID_H_ +#define _MVX_LSID_H_ + +/**************************************************************************** + * Includes + ****************************************************************************/ + +#include + +/**************************************************************************** + * Defines + ****************************************************************************/ + +#define MVX_LSID_MAX 4 + +/**************************************************************************** + * Types + ****************************************************************************/ + +struct device; +struct mvx_hwreg; +struct mvx_sched_session; + +/** + * struct mvx_lsid_pcb - LSID process control block. + * + * This structure is used to store the register map when a session is unmapped + * from a LSID, so it can be restored again when the session is remapped. + */ +struct mvx_lsid_pcb { + uint32_t ctrl; + uint32_t mmu_ctrl; + uint32_t irqhost; + uint32_t nprot; +}; + +/** + * struct mvx_lsid - LSID class. + */ +struct mvx_lsid { + struct device *dev; + struct mvx_hwreg *hwreg; + struct mvx_sched_session *session; + unsigned int lsid; +}; + +/**************************************************************************** + * Exported functions + ****************************************************************************/ + +/** + * mvx_lsid_construct() - Construct the LSID object. + * @lsid: Pointer to LSID object. + * @dev: Pointer to device. + * @hwreg: Pointer to hwreg object. + * @id: LSID number. + * + * Return: 0 on success, else error code. + */ +int mvx_lsid_construct(struct mvx_lsid *lsid, struct device *dev, + struct mvx_hwreg *hwreg, unsigned int id); + +/** + * mvx_lsid_destruct() - Destruct the LSID object. + * @lsid: Pointer to LSID object. + */ +void mvx_lsid_destruct(struct mvx_lsid *lsid); + +/** + * mvx_lsid_map() - Map a session to this LSID. + * @lsid: Pointer to LSID object. + * @pcb: Process control block to be restored. + * + * Return: 0 on success, else error code. + */ +int mvx_lsid_map(struct mvx_lsid *lsid, struct mvx_lsid_pcb *pcb); + +/** + * mvx_lsid_unmap() - Unmap session from LSID. + * @lsid: Pointer to LSID object. + * @pcb: Process control block where the registers are stored. + * + * A LSID must not be unmapped if it is present in the job queue or core LSID. + * It is the responsibility of the scheduler to guarantee that the LSID is idle + * before it is unmapped. + */ +void mvx_lsid_unmap(struct mvx_lsid *lsid, struct mvx_lsid_pcb *pcb); + +/** + * mvx_lsid_jobqueue_add() - Add LSID to job queue. + * @lsid: Pointer to LSID object. + * @ncores: Number of cores to request. + * + * Return: 0 on success, else error code. + */ +int mvx_lsid_jobqueue_add(struct mvx_lsid *lsid, unsigned int ncores); + +/** + * mvx_lsid_send_irq() - Send IRQ to firmware. + * @lsid: Pointer to LSID object. + */ +void mvx_lsid_send_irq(struct mvx_lsid *lsid); + +/** + * mvx_lsid_flush_mmu() - Flush MMU tables. + * @lsid: Pointer to LSID object. + */ +void mvx_lsid_flush_mmu(struct mvx_lsid *lsid); + +/** + * mvx_lsid_terminate() - Terminate the LSID. + * @lsid: Pointer to LSID object. + */ +void mvx_lsid_terminate(struct mvx_lsid *lsid); + +/** + * mvx_lsid_jobqueue_remove() - Remove LSID from job queue. + * @lsid: Pointer to LSID object. + */ +void mvx_lsid_jobqueue_remove(struct mvx_lsid *lsid); + +/** + * mvx_lsid_idle() - Check if LSID is idle. + * @lsid: Pointer to LSID object. + * + * Return: true if LSID is idle, else false. + */ +bool mvx_lsid_idle(struct mvx_lsid *lsid); + +#endif /* _MVX_LSID_H_ */ diff --git a/drivers/media/platform/canaan/vpu/mvx_mmu.c b/drivers/media/platform/canaan/vpu/mvx_mmu.c new file mode 100644 index 0000000000000..4ec7d5c8be939 --- /dev/null +++ b/drivers/media/platform/canaan/vpu/mvx_mmu.c @@ -0,0 +1,1247 @@ +// SPDX-License-Identifier: GPL-2.0-only +/* + * The confidential and proprietary information contained in this file may + * only be used by a person authorised under and to the extent permitted + * by a subsisting licensing agreement from Arm Technology (China) Co., Ltd. + * + * (C) COPYRIGHT 2021-2021 Arm Technology (China) Co., Ltd. + * ALL RIGHTS RESERVED + * + * This entire notice must be reproduced on all copies of this file + * and copies of this file may only be made by a person if such person is + * permitted to do so under the terms of a subsisting license agreement + * from Arm Technology (China) Co., Ltd. + * + * 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. + * + */ + +/**************************************************************************** + * Includes + ****************************************************************************/ + +#include +#include +#include +#include +#include +#include +#include +#include +#include "mvx_mmu.h" +#include "mvx_log_group.h" + +/**************************************************************************** + * Defines + ****************************************************************************/ + +/* Number of bits for the physical address space. */ +#define MVE_PA_BITS 40 +#define MVE_PA_MASK GENMASK_ULL(MVE_PA_BITS - 1, 0) + +/* Number of bits for the virtual address space. */ +#define MVE_VA_BITS 32 +#define MVE_VA_MASK GENMASK(MVE_VA_BITS - 1, 0) + +/* Number of bits from the VA used to index a PTE in a page. */ +#define MVE_INDEX_SHIFT 10 +#define MVE_INDEX_SIZE (1 << MVE_INDEX_SHIFT) +#define MVE_INDEX_MASK GENMASK(MVE_INDEX_SHIFT - 1, 0) + +/* Access permission defines. */ +#define MVE_PTE_AP_SHIFT 0 +#define MVE_PTE_AP_BITS 2 +#define MVE_PTE_AP_MASK ((1 << MVE_PTE_AP_BITS) - 1) + +/* Physical address defines. */ +#define MVE_PTE_PHYSADDR_SHIFT 2 +#define MVE_PTE_PHYSADDR_BITS 28 +#define MVE_PTE_PHYSADDR_MASK ((1 << MVE_PTE_PHYSADDR_BITS) - 1) + +/* Attributes defines. */ +#define MVE_PTE_ATTR_SHIFT 30 +#define MVE_PTE_ATTR_BITS 2 +#define MVE_PTE_ATTR_MASK ((1 << MVE_PTE_ATTR_BITS) - 1) + +/* Number of levels for Page Table Walk. */ +#define MVE_PTW_LEVELS 2 + +/* + * A Linux physical page can be equal in size or larger than the MVE page size. + * This define calculates how many MVE pages that fit in one Linux page. + */ +#define MVX_PAGES_PER_PAGE (PAGE_SIZE / MVE_PAGE_SIZE) + +/**************************************************************************** + * Types + ****************************************************************************/ + +/** + * struct mvx_mmu_dma_buf - MVX DMA buffer. + * + * Adds a list head to keep track of DMA buffers. + */ +struct mvx_mmu_dma_buf { + struct list_head head; + struct dma_buf *dmabuf; +}; + +/**************************************************************************** + * Static functions + ****************************************************************************/ + +/** + * get_index() - Return the PTE index for a given level. + * @va: Virtual address. + * @level: Level (L1=0, L2=1). + * + * 22 12 0 + * +-------------------+-------------------+-----------------------+ + * | Level 1 | Level 2 | Page offset | + * +-------------------+-------------------+-----------------------+ + */ +static unsigned int get_index(const mvx_mmu_va va, const unsigned int level) +{ + return (va >> (MVE_PAGE_SHIFT + + (MVE_PTW_LEVELS - level - 1) * MVE_INDEX_SHIFT)) & + MVE_INDEX_MASK; +} + +/** + * get_offset() - Return the page offset. + * @va: Virtual address. + * + * 22 12 0 + * +-------------------+-------------------+-----------------------+ + * | Level 1 | Level 2 | Page offset | + * +-------------------+-------------------+-----------------------+ + */ +static unsigned int get_offset(const mvx_mmu_va va) +{ + return va & MVE_PAGE_MASK; +} + +/** + * get_pa() - Return physical address stored in PTE. + */ +static phys_addr_t get_pa(const mvx_mmu_pte pte) +{ + return (((phys_addr_t)pte >> MVE_PTE_PHYSADDR_SHIFT) & + MVE_PTE_PHYSADDR_MASK) + << MVE_PAGE_SHIFT; +} + +/* LCOV_EXCL_START */ + +/** + * get_attr() - Return attributes stored in PTE. + */ +static enum mvx_mmu_attr get_attr(const mvx_mmu_pte pte) +{ + return (pte >> MVE_PTE_ATTR_SHIFT) & MVE_PTE_ATTR_MASK; +} + +/** + * get_ap() - Return access permissions stored in PTE. + */ +static enum mvx_mmu_access get_ap(const mvx_mmu_pte pte) +{ + return (pte >> MVE_PTE_AP_SHIFT) & MVE_PTE_AP_MASK; +} + +/* LCOV_EXCL_STOP */ + +/** + * ptw() - Perform Page Table Walk and return pointer to L2 PTE. + * @mmu: Pointer to MMU context. + * @va: Virtual address. + * @alloc: True if missing L2 page should be allocated. + * + * Return: Pointer to PTE, ERR_PTR on error. + */ +static mvx_mmu_pte *ptw(struct mvx_mmu *mmu, mvx_mmu_va va, bool alloc) +{ + phys_addr_t l2; + mvx_mmu_pte *pte = mmu->page_table; + unsigned int index; + + /* Level 1. */ + index = get_index(va, 0); + l2 = get_pa(pte[index]); + + /* We should never perform a page table walk for a protected page. */ + if (test_bit(index, mmu->l2_page_is_external) != 0) { + MVX_LOG_PRINT(&mvx_log_if, MVX_LOG_WARNING, + "PTW virtual address to secure L2 page. va=0x%x.", + va); + return ERR_PTR(-EINVAL); + } + + /* Map in L2 page if it is missing. */ + if (l2 == 0) { + if (alloc == false) { + MVX_LOG_PRINT(&mvx_log_if, MVX_LOG_WARNING, + "Missing L2 page in PTW. va=0x%x.", va); + return ERR_PTR(-EFAULT); + } + + l2 = mvx_mmu_alloc_page(mmu->dev); + if (l2 == 0) { + MVX_LOG_PRINT(&mvx_log_if, MVX_LOG_WARNING, + "Failed to allocate L2 page. va=0x%x.", + va); + return ERR_PTR(-ENOMEM); + } + + pte[index] = mvx_mmu_set_pte(MVX_ATTR_PRIVATE, l2, + MVX_ACCESS_READ_ONLY); + dma_sync_single_for_device(mmu->dev, virt_to_phys(&pte[index]), + sizeof(pte[index]), DMA_TO_DEVICE); + } + + /* Level 2. */ + index = get_index(va, 1); + pte = phys_to_virt(l2); + + return &pte[index]; +} + +/** + * map_page() - Map physical- to virtual address. + * @mmu: Pointer to MMU context. + * @va: MVE virtual address to map. + * @pa: Linux kernel physical address to map. + * @attr: MMU attributes. + * @access: MMU access permissions. + * + * Create new L1 and L2 entries if necessary. If mapping already exist, then + * error is returned. + * + * Return: 0 on success, else error code. + */ +static int map_page(struct mvx_mmu *mmu, mvx_mmu_va va, phys_addr_t pa, + enum mvx_mmu_attr attr, enum mvx_mmu_access access) +{ + mvx_mmu_pte *pte; + phys_addr_t page; + + /* Check that both VA and PA are page aligned. */ + if ((va | pa) & MVE_PAGE_MASK) { + MVX_LOG_PRINT( + &mvx_log_if, MVX_LOG_WARNING, + "VA and PA must be page aligned. va=0x%x, pa=0x%llx.", + va, pa); + return -EFAULT; + } + + /* Check that VA is within valid address range. */ + if (va & ~MVE_VA_MASK) { + MVX_LOG_PRINT(&mvx_log_if, MVX_LOG_WARNING, + "VA out of valid range. va=0x%x.", va); + return -EFAULT; + } + + /* Check that PA is within valid address range. */ + if (pa & ~MVE_PA_MASK) { + MVX_LOG_PRINT(&mvx_log_if, MVX_LOG_WARNING, + "PA out of valid range. pa=0x%llx.", pa); + return -EFAULT; + } + + pte = ptw(mmu, va, true); + if (IS_ERR(pte)) + return PTR_ERR(pte); + + /* Return error if page already exists. */ + page = get_pa(*pte); + if (page != 0) + return -EAGAIN; + + /* Map in physical address and flush data. */ + *pte = mvx_mmu_set_pte(attr, pa, access); + dma_sync_single_for_device(mmu->dev, virt_to_phys(pte), sizeof(*pte), + DMA_TO_DEVICE); + + return 0; +} + +/** + * unmap_page() - Unmap a page from the virtual address space. + * @mmu: Pointer to MMU context. + * @va: Virtual address. + */ +static void unmap_page(struct mvx_mmu *mmu, mvx_mmu_va va) +{ + mvx_mmu_pte *pte; + + pte = ptw(mmu, va, false); + if (IS_ERR(pte)) + return; + + /* Unmap virtual address and flush data. */ + *pte = 0; + dma_sync_single_for_device(mmu->dev, virt_to_phys(pte), sizeof(*pte), + DMA_TO_DEVICE); +} + +/** + * remap_page() - Remap virtual address. + * @mmu: Pointer to MMU context. + * @va: MVE virtual address to map. + * @pa: Linux kernel physical address to map. + * @attr: MMU attributes. + * @access: MMU access permissions. + * + * Return: 0 on success, else error code. + */ +static int remap_page(struct mvx_mmu *mmu, mvx_mmu_va va, phys_addr_t pa, + enum mvx_mmu_attr attr, enum mvx_mmu_access access) +{ + unmap_page(mmu, va); + return map_page(mmu, va, pa, attr, access); +} + +/** + * remap_pages() - Remap virtual address range. + * @pages: Pointer to pages object. + * @oldcount: Count before object was resized. + * + * Return: 0 on success, else error code. + */ +static int remap_pages(struct mvx_mmu_pages *pages, size_t oldcount) +{ + int ret; + + if (pages->mmu == NULL) + return 0; + + /* Remap pages to no access if new count is smaller than old count. */ + while (pages->count < oldcount) { + oldcount--; + + ret = remap_page(pages->mmu, + pages->va + oldcount * MVE_PAGE_SIZE, + MVE_PAGE_SIZE, MVX_ATTR_PRIVATE, + MVX_ACCESS_NO); + if (ret != 0) + return ret; + } + + /* Map up pages if new count is larger than old count. */ + while (pages->count > oldcount) { + ret = remap_page(pages->mmu, + pages->va + oldcount * MVE_PAGE_SIZE, + pages->pages[oldcount], pages->attr, + pages->access); + if (ret != 0) + return ret; + + oldcount++; + } + + return 0; +} + +/** + * mapped_count() - Check if level 2 table entries point to mmu mapped pages. + * @pa: Physical address of the table entry to be checked. + * + * Return: the number of mapped pages found. + */ +static int mapped_count(phys_addr_t pa) +{ + int count = 0; + + if (pa != 0) { + int j; + phys_addr_t pa2; + mvx_mmu_pte *l2 = phys_to_virt(pa); + + for (j = 0; j < MVE_INDEX_SIZE; j++) { + pa2 = get_pa(l2[j]); + if (pa2 != 0 && pa2 != MVE_PAGE_SIZE) + count++; + } + } + + return count; +} + +/** + * get_sg_table_npages() - Count number of pages in SG table. + * @sgt: Pointer to scatter gather table. + * + * Return: Number of pages. + */ +static size_t get_sg_table_npages(struct sg_table *sgt) +{ + struct sg_page_iter piter; + size_t count = 0; + + for_each_sg_page(sgt->sgl, &piter, sgt->nents, 0) { + count++; + } + + return count; +} + +/** + * append_sg_table() - Append SG table to pages object. + * @pages: Pointer to pages object. + * @sgt: Pointer to scatter gather table. + * + * Return: 0 on success, else error code. + */ +static int append_sg_table(struct mvx_mmu_pages *pages, struct sg_table *sgt) +{ + size_t count; + //struct sg_page_iter piter; + struct sg_dma_page_iter piter; + + count = get_sg_table_npages(sgt) * MVX_PAGES_PER_PAGE; + + if ((pages->count + count) > pages->capacity) { + MVX_LOG_PRINT( + &mvx_log_if, MVX_LOG_WARNING, + "Failed to append SG table. Pages capacity too small. count=%zu, capacity=%zu, append=%zu.", + pages->count, pages->capacity, count); + return -ENOMEM; + } + + for_each_sg_dma_page(sgt->sgl, &piter, sgt->nents, 0) { + + int j; + phys_addr_t base; + + base = (phys_addr_t)sg_page_iter_dma_address(&piter) & PAGE_MASK; + + for (j = 0; j < MVX_PAGES_PER_PAGE; ++j) + pages->pages[pages->count++] = base + j * MVE_PAGE_SIZE; + } + +return 0; +} + +/** + * stat_show() - Print debugfs info into seq-file. + * + * This is a callback used by debugfs subsystem. + * + * @s: Seq-file + * @v: Unused + * return: 0 on success, else error code. + */ +static int stat_show(struct seq_file *s, void *v) +{ + struct mvx_mmu_pages *pages = s->private; + + seq_printf(s, "va: %08x\n", pages->va); + seq_printf(s, "capacity: %zu\n", pages->capacity); + seq_printf(s, "count: %zu\n", pages->count); + + if (pages->mmu != NULL) { + seq_printf(s, "attr: %d\n", pages->attr); + seq_printf(s, "access: %d\n", pages->access); + } + + return 0; +} + +/** + * stat_open() - Open debugfs file. + * + * This is a callback used by debugfs subsystem. + * + * @inode: Inode + * @file: File + * return: 0 on success, else error code. + */ +static int stat_open(struct inode *inode, struct file *file) +{ + return single_open(file, stat_show, inode->i_private); +} + +/** + * File operations for debugfs entry. + */ +static const struct file_operations stat_fops = { .open = stat_open, + .read = seq_read, + .llseek = seq_lseek, + .release = single_release }; + +/** + * pages_seq_start() - Iterator over pages list. + */ +static void *pages_seq_start(struct seq_file *s, loff_t *pos) +{ + struct mvx_mmu_pages *pages = s->private; + + if (*pos >= pages->count) + return NULL; + + seq_puts( + s, + "#Page: [ va_start - va_end] -> [ pa_start - pa_end]\n"); + return pos; +} + +/** + * pages_seq_start() - Iterator over pages list. + */ +static void *pages_seq_next(struct seq_file *s, void *v, loff_t *pos) +{ + struct mvx_mmu_pages *pages = s->private; + + ++*pos; + if (*pos >= pages->count) + return NULL; + + return pos; +} + +/** + * pages_seq_start() - Iterator over pages list. + */ +static void pages_seq_stop(struct seq_file *s, void *v) +{ +} + +/** + * pages_seq_start() - Iterator over pages list. + */ +static int pages_seq_show(struct seq_file *s, void *v) +{ + struct mvx_mmu_pages *pages = s->private; + loff_t pos = *(loff_t *)v; + + mvx_mmu_va va_start = pages->va + pos * MVE_PAGE_SIZE; + mvx_mmu_va va_end = va_start + MVE_PAGE_SIZE - 1; + phys_addr_t pa_start = pages->pages[pos]; + phys_addr_t pa_end = pa_start + MVE_PAGE_SIZE - 1; + + seq_printf(s, "%5llu: [0x%08x - 0x%08x] -> [%pap - %pap]\n", pos, + va_start, va_end, &pa_start, &pa_end); + return 0; +} + +/** + * mpages_seq_ops - Callbacks used by an iterator over pages list. + */ +static const struct seq_operations pages_seq_ops = { .start = pages_seq_start, + .next = pages_seq_next, + .stop = pages_seq_stop, + .show = pages_seq_show }; + +/** + * list_open() - Callback for debugfs entry. + */ +static int list_open(struct inode *inode, struct file *file) +{ + int ret; + struct seq_file *s; + + ret = seq_open(file, &pages_seq_ops); + if (ret != 0) + return ret; + + s = (struct seq_file *)file->private_data; + s->private = inode->i_private; + + return 0; +} + +/** + * File operations for a debugfs entry. + */ +static const struct file_operations list_fops = { .open = list_open, + .read = seq_read, + .llseek = seq_lseek, + .release = seq_release }; + +/**************************************************************************** + * Exported functions + ****************************************************************************/ + +int mvx_mmu_construct(struct mvx_mmu *mmu, struct device *dev) +{ + phys_addr_t page_table; + + mmu->dev = dev; + + /* Allocate Page Table Base (the L1 table). */ + page_table = mvx_mmu_alloc_page(dev); + if (page_table == 0) + return -ENOMEM; + + mmu->page_table = phys_to_virt(page_table); + + return 0; +} + +void mvx_mmu_destruct(struct mvx_mmu *mmu) +{ + mvx_mmu_pte *pte = mmu->page_table; + phys_addr_t pa; + int i; + int count = 0; + + for (i = 0; i < MVE_INDEX_SIZE; i++) { + pa = get_pa(pte[i]); + + /* Only free pages we have allocated ourselves. */ + if (test_bit(i, mmu->l2_page_is_external) == 0) { + count += mapped_count(pa); + mvx_mmu_free_page(mmu->dev, pa); + } + } + + pa = virt_to_phys(mmu->page_table); + mvx_mmu_free_page(mmu->dev, pa); + + WARN_ON(count > 0); +} + +phys_addr_t mvx_mmu_alloc_page(struct device *dev) +{ + struct page *page; + phys_addr_t pa; + dma_addr_t dma_handle; + + page = alloc_page(GFP_KERNEL | __GFP_ZERO | __GFP_NORETRY); + if (page == NULL) + return 0; + + dma_handle = dma_map_page(dev, page, 0, PAGE_SIZE, DMA_BIDIRECTIONAL); + if (dma_mapping_error(dev, dma_handle) != 0) { + MVX_LOG_PRINT(&mvx_log_if, MVX_LOG_WARNING, + "Cannot map page to DMA address space. page=%p.", + page); + goto free_page; + } + + pa = (phys_addr_t)dma_handle; + + dma_sync_single_for_device(dev, pa, PAGE_SIZE, DMA_TO_DEVICE); + + return pa; + +free_page: + __free_page(page); + return 0; +} + +void mvx_mmu_free_contiguous_pages(struct device *dev, phys_addr_t pa, + size_t npages) +{ + struct page *page; + + if (pa == 0) + return; + + page = phys_to_page(pa); + + dma_unmap_page(dev, pa, npages << PAGE_SHIFT, DMA_BIDIRECTIONAL); + __free_pages(page, get_order(npages << PAGE_SHIFT)); +} + +phys_addr_t mvx_mmu_alloc_contiguous_pages(struct device *dev, size_t npages) +{ + struct page *page; + phys_addr_t pa; + dma_addr_t dma_handle; + size_t size = (npages << PAGE_SHIFT); + + page = alloc_pages(GFP_KERNEL | __GFP_ZERO | __GFP_NORETRY, + get_order(size)); + if (page == NULL) + return 0; + + dma_handle = dma_map_page(dev, page, 0, size, DMA_BIDIRECTIONAL); + if (dma_mapping_error(dev, dma_handle) != 0) { + MVX_LOG_PRINT(&mvx_log_if, MVX_LOG_WARNING, + "Cannot map page to DMA address space. page=%p.", + page); + goto free_pages; + } + + pa = (phys_addr_t)dma_handle; + + dma_sync_single_for_device(dev, pa, size, DMA_TO_DEVICE); + + return pa; + +free_pages: + __free_pages(page, get_order(size)); + return 0; +} + +void mvx_mmu_free_page(struct device *dev, phys_addr_t pa) +{ + struct page *page; + + if (pa == 0) + return; + + page = phys_to_page(pa); + + dma_unmap_page(dev, pa, PAGE_SIZE, DMA_BIDIRECTIONAL); + __free_page(page); +} + +struct mvx_mmu_pages *mvx_mmu_alloc_pages(struct device *dev, size_t count, + size_t capacity) +{ + struct mvx_mmu_pages *pages; + int ret; + + count = roundup(count, MVX_PAGES_PER_PAGE); + capacity = roundup(capacity, MVX_PAGES_PER_PAGE); + capacity = max(count, capacity); + + pages = devm_kzalloc(dev, + sizeof(*pages) + sizeof(phys_addr_t) * capacity, + GFP_KERNEL); + if (pages == NULL) + return ERR_PTR(-ENOMEM); + + pages->dev = dev; + pages->capacity = capacity; + INIT_LIST_HEAD(&pages->dmabuf); + + for (pages->count = 0; pages->count < count;) { + phys_addr_t page; + unsigned int i; + + /* + * Allocate a Linux page. It will typically be of the same size + * as the MVE page, but could also be larger. + */ + page = mvx_mmu_alloc_page(dev); + if (page == 0) { + ret = -ENOMEM; + goto release_pages; + } + + /* + * If the Linux page is larger than the MVE page, then + * we iterate and add physical addresses with an offset from + * the Linux page. + */ + for (i = 0; i < MVX_PAGES_PER_PAGE; i++) + pages->pages[pages->count++] = page + i * MVE_PAGE_SIZE; + } + + return pages; + +release_pages: + mvx_mmu_free_pages(pages); + + return ERR_PTR(ret); +} + +struct mvx_mmu_pages *mvx_mmu_alloc_pages_sg(struct device *dev, + struct sg_table *sgt, + size_t capacity) +{ + struct mvx_mmu_pages *pages; + size_t count; + int ret; + + count = get_sg_table_npages(sgt) * MVX_PAGES_PER_PAGE; + capacity = roundup(capacity, MVX_PAGES_PER_PAGE); + capacity = max(count, capacity); + + pages = devm_kzalloc(dev, + sizeof(*pages) + sizeof(phys_addr_t) * capacity, + GFP_KERNEL); + if (pages == NULL) + return ERR_PTR(-ENOMEM); + + pages->dev = dev; + pages->capacity = capacity; + pages->is_external = true; + pages->offset = sgt->sgl != NULL ? sgt->sgl->offset : 0; + INIT_LIST_HEAD(&pages->dmabuf); + + ret = append_sg_table(pages, sgt); + if (ret != 0) { + devm_kfree(dev, pages); + return ERR_PTR(ret); + } + + return pages; +} + +struct mvx_mmu_pages *mvx_mmu_alloc_pages_dma_buf(struct device *dev, + struct dma_buf *dmabuf, + size_t capacity) +{ + struct mvx_mmu_pages *pages; + struct dma_buf_attachment *attach; + struct sg_table *sgt; + struct mvx_mmu_dma_buf *mbuf; + + attach = dma_buf_attach(dmabuf, dev); + if (IS_ERR(attach)) { + MVX_LOG_PRINT(&mvx_log_if, MVX_LOG_WARNING, + "Failed to attach DMA buffer."); + return (struct mvx_mmu_pages *)attach; + } + + sgt = dma_buf_map_attachment(attach, DMA_BIDIRECTIONAL); + if (IS_ERR(sgt)) { + MVX_LOG_PRINT(&mvx_log_if, MVX_LOG_WARNING, + "Failed to get SG table from DMA buffer."); + pages = (struct mvx_mmu_pages *)sgt; + goto detach; + } + + pages = mvx_mmu_alloc_pages_sg(dev, sgt, capacity); + if (IS_ERR(pages)) + goto unmap; + + mbuf = devm_kzalloc(dev, sizeof(*mbuf), GFP_KERNEL); + if (mbuf == NULL) { + mvx_mmu_free_pages(pages); + pages = ERR_PTR(-ENOMEM); + goto unmap; + } + + mbuf->dmabuf = dmabuf; + list_add_tail(&mbuf->head, &pages->dmabuf); + +unmap: + dma_buf_unmap_attachment(attach, sgt, DMA_BIDIRECTIONAL); + +detach: + dma_buf_detach(dmabuf, attach); + + return pages; +} + +int mvx_mmu_pages_append_dma_buf(struct mvx_mmu_pages *pages, + struct dma_buf *dmabuf) +{ + struct dma_buf_attachment *attach; + struct sg_table *sgt; + struct mvx_mmu_dma_buf *mbuf; + size_t oldcount = pages->count; + int ret; + + if (pages->is_external == false) { + MVX_LOG_PRINT( + &mvx_log_if, MVX_LOG_WARNING, + "Can't append DMA buffer to internal pages object."); + return -EINVAL; + } + + attach = dma_buf_attach(dmabuf, pages->dev); + if (IS_ERR(attach)) { + MVX_LOG_PRINT(&mvx_log_if, MVX_LOG_WARNING, + "Failed to attach DMA buffer."); + return PTR_ERR(attach); + } + + sgt = dma_buf_map_attachment(attach, DMA_BIDIRECTIONAL); + if (IS_ERR(sgt)) { + MVX_LOG_PRINT(&mvx_log_if, MVX_LOG_WARNING, + "Failed to get SG table from DMA buffer."); + ret = PTR_ERR(sgt); + goto detach; + } + + ret = append_sg_table(pages, sgt); + if (ret != 0) + goto unmap; + + ret = remap_pages(pages, oldcount); + if (ret != 0) + goto unmap; + + mbuf = devm_kzalloc(pages->dev, sizeof(*mbuf), GFP_KERNEL); + if (mbuf == NULL) { + ret = -ENOMEM; + goto unmap; + } + + mbuf->dmabuf = dmabuf; + list_add_tail(&mbuf->head, &pages->dmabuf); + +unmap: + dma_buf_unmap_attachment(attach, sgt, DMA_BIDIRECTIONAL); + +detach: + dma_buf_detach(dmabuf, attach); + + return ret; +} + +int mvx_mmu_resize_pages(struct mvx_mmu_pages *pages, size_t npages) +{ + size_t oldcount = pages->count; + + if (pages->is_external != false) { + MVX_LOG_PRINT( + &mvx_log_if, MVX_LOG_WARNING, + "MMU with externally managed pages cannot be resized."); + return -EINVAL; + } + + npages = roundup(npages, MVX_PAGES_PER_PAGE); + + if (npages > pages->capacity) { + MVX_LOG_PRINT( + &mvx_log_if, MVX_LOG_WARNING, + "New MMU pages size is larger than capacity. npages=%zu, capacity=%zu.", + npages, pages->capacity); + return -ENOMEM; + } + + /* Free pages if npage is smaller than allocated pages. */ + while (pages->count > npages) { + pages->count--; + + if ((pages->count % MVX_PAGES_PER_PAGE) == 0) + mvx_mmu_free_page(pages->dev, + pages->pages[pages->count]); + + pages->pages[pages->count] = 0; + } + + /* Allocate pages if npage is larger than allocated pages. */ + while (pages->count < npages) { + phys_addr_t page; + unsigned int i; + + page = mvx_mmu_alloc_page(pages->dev); + if (page == 0) + return -ENOMEM; + + for (i = 0; i < MVX_PAGES_PER_PAGE; i++) + pages->pages[pages->count++] = page + i * MVE_PAGE_SIZE; + } + + return remap_pages(pages, oldcount); +} + +void mvx_mmu_free_pages(struct mvx_mmu_pages *pages) +{ + struct mvx_mmu_dma_buf *mbuf; + struct mvx_mmu_dma_buf *tmp; + unsigned int i; + + mvx_mmu_unmap_pages(pages); + + if (pages->is_external == false) + for (i = 0; i < pages->count; i += MVX_PAGES_PER_PAGE) + mvx_mmu_free_page(pages->dev, pages->pages[i]); + + list_for_each_entry_safe(mbuf, tmp, &pages->dmabuf, head) { + dma_buf_put(mbuf->dmabuf); + devm_kfree(pages->dev, mbuf); + } + + devm_kfree(pages->dev, pages); +} + +size_t mvx_mmu_size_pages(struct mvx_mmu_pages *pages) +{ + return pages->count * MVE_PAGE_SIZE; +} + +int mvx_mmu_synch_pages(struct mvx_mmu_pages *pages, + enum dma_data_direction dir) +{ + size_t i; + + if (dir == DMA_FROM_DEVICE) { + for (i = 0; i < pages->count; i += MVX_PAGES_PER_PAGE) + dma_sync_single_for_cpu(pages->dev, pages->pages[i], + PAGE_SIZE, DMA_FROM_DEVICE); + } else if (dir == DMA_TO_DEVICE) { + for (i = 0; i < pages->count; i += MVX_PAGES_PER_PAGE) + dma_sync_single_for_device(pages->dev, pages->pages[i], + PAGE_SIZE, DMA_TO_DEVICE); + } else { + MVX_LOG_PRINT(&mvx_log_if, MVX_LOG_WARNING, + "Unsupported MMU flush direction. dir=%u.", dir); + return -EINVAL; + } + + return 0; +} + +int mvx_mmu_map_pages(struct mvx_mmu *mmu, mvx_mmu_va va, + struct mvx_mmu_pages *pages, enum mvx_mmu_attr attr, + enum mvx_mmu_access access) +{ + size_t i; + int ret; + + /* Map the allocated pages. */ + for (i = 0; i < pages->count; i++) { + ret = map_page(mmu, va + i * MVE_PAGE_SIZE, pages->pages[i], + attr, access); + if (ret != 0) + goto unmap_pages; + } + + /* + * Reserve the rest of the address range. Adding a dummy page with + * physical address 'PAGE_SIZE' should not lead to memory corruption, + * because the page is marked as 'no access'. + */ + for (; i < pages->capacity; i++) { + ret = map_page(mmu, va + i * MVE_PAGE_SIZE, MVE_PAGE_SIZE, + MVX_ATTR_PRIVATE, MVX_ACCESS_NO); + if (ret != 0) + goto unmap_pages; + } + + pages->mmu = mmu; + pages->va = va; + pages->attr = attr; + pages->access = access; + + return 0; + +unmap_pages: + while (i-- > 0) + unmap_page(mmu, va + i * MVE_PAGE_SIZE); + + return ret; +} + +void mvx_mmu_unmap_pages(struct mvx_mmu_pages *pages) +{ + size_t i; + + if (pages->mmu == NULL) + return; + + for (i = 0; i < pages->capacity; i++) + unmap_page(pages->mmu, pages->va + i * MVE_PAGE_SIZE); + + pages->mmu = NULL; + pages->va = 0; +} + +int mvx_mmu_map_pa(struct mvx_mmu *mmu, mvx_mmu_va va, phys_addr_t pa, + size_t size, enum mvx_mmu_attr attr, + enum mvx_mmu_access access) +{ + int ret; + size_t offset; + + for (offset = 0; offset < size; offset += MVE_PAGE_SIZE) { + ret = map_page(mmu, va + offset, pa + offset, attr, access); + if (ret != 0) + goto unmap_pages; + } + + return 0; + +unmap_pages: + /* Unroll mapped pages. */ + while (offset > 0) { + offset -= MVE_PAGE_SIZE; + unmap_page(mmu, va + offset); + } + + return ret; +} + +int mvx_mmu_map_l2(struct mvx_mmu *mmu, mvx_mmu_va va, phys_addr_t pa) +{ + phys_addr_t l2; + mvx_mmu_pte *pte = mmu->page_table; + unsigned int index; + + /* Level 1. */ + index = get_index(va, 0); + l2 = get_pa(pte[index]); + + if (l2 != 0) { + MVX_LOG_PRINT(&mvx_log_if, MVX_LOG_ERROR, + "Failed to map L2 page. Page already exists."); + return -EINVAL; + } + + set_bit(index, mmu->l2_page_is_external); + + pte[index] = + mvx_mmu_set_pte(MVX_ATTR_PRIVATE, pa, MVX_ACCESS_READ_ONLY); + dma_sync_single_for_device(mmu->dev, virt_to_phys(&pte[index]), + sizeof(pte[index]), DMA_TO_DEVICE); + + return 0; +} + +void mvx_mmu_unmap_va(struct mvx_mmu *mmu, mvx_mmu_va va, size_t size) +{ + size_t offset; + + for (offset = 0; offset < size; offset += MVE_PAGE_SIZE) + unmap_page(mmu, va + offset); +} + +int mvx_mmu_va_to_pa(struct mvx_mmu *mmu, mvx_mmu_va va, phys_addr_t *pa) +{ + mvx_mmu_pte *pte; + phys_addr_t page; + + pte = ptw(mmu, va, false); + if (IS_ERR(pte)) + return PTR_ERR(pte); + + page = get_pa(*pte); + if (page == 0) + return -EFAULT; + + *pa = page | get_offset(va); + + return 0; +} + +/* LCOV_EXCL_START */ +int mvx_mmu_read(struct mvx_mmu *mmu, mvx_mmu_va va, void *data, size_t size) +{ + mvx_mmu_va end = va + size; + + while (va < end) { + int ret; + size_t n; + phys_addr_t pa = 0; + void *src; + + /* Calculate number of bytes to be copied. */ + n = min(end - va, MVE_PAGE_SIZE - (va & MVE_PAGE_MASK)); + + /* Translate virtual- to physical address. */ + ret = mvx_mmu_va_to_pa(mmu, va, &pa); + if (ret != 0) + return ret; + + /* Invalidate the data range. */ + dma_sync_single_for_cpu(mmu->dev, pa, n, DMA_FROM_DEVICE); + + /* Convert from physical to Linux logical address. */ + src = phys_to_virt(pa); + memcpy(data, src, n); + + va += n; + data += n; + } + + return 0; +} + +/* LCOV_EXCL_STOP */ + +int mvx_mmu_write(struct mvx_mmu *mmu, mvx_mmu_va va, const void *data, + size_t size) +{ + mvx_mmu_va end = va + size; + + while (va < end) { + int ret; + size_t n; + phys_addr_t pa = 0; + void *dst; + + /* Calculate number of bytes to be copied. */ + n = min(end - va, MVE_PAGE_SIZE - (va & MVE_PAGE_MASK)); + + /* Translate virtual- to physical address. */ + ret = mvx_mmu_va_to_pa(mmu, va, &pa); + if (ret != 0) + return ret; + + /* Convert from physical to Linux logical address. */ + dst = phys_to_virt(pa); + memcpy(dst, data, n); + + /* Flush the data to memory. */ + dma_sync_single_for_device(mmu->dev, pa, n, DMA_TO_DEVICE); + + va += n; + data += n; + } + + return 0; +} + +mvx_mmu_pte mvx_mmu_set_pte(enum mvx_mmu_attr attr, phys_addr_t pa, + enum mvx_mmu_access access) +{ + return (attr << MVE_PTE_ATTR_SHIFT) | + ((pa >> MVE_PAGE_SHIFT) << MVE_PTE_PHYSADDR_SHIFT) | + (access << MVE_PTE_AP_SHIFT); +} + +/* LCOV_EXCL_START */ +void mvx_mmu_print(struct mvx_mmu *mmu) +{ + unsigned int i; + mvx_mmu_pte *l1 = mmu->page_table; + + for (i = 0; i < MVE_INDEX_SIZE; i++) { + phys_addr_t pa = get_pa(l1[i]); + unsigned int j; + + if (pa != 0) { + mvx_mmu_pte *l2 = phys_to_virt(pa); + + MVX_LOG_PRINT(&mvx_log_if, MVX_LOG_INFO, + "%-4u: PA=0x%llx, ATTR=%u, ACC=%u", i, pa, + get_attr(l1[i]), get_ap(l1[i])); + + for (j = 0; j < MVE_INDEX_SIZE; j++) { + pa = get_pa(l2[j]); + if (pa != 0) { + mvx_mmu_va va; + + va = (i << (MVE_INDEX_SHIFT + + MVE_PAGE_SHIFT)) | + (j << MVE_PAGE_SHIFT); + MVX_LOG_PRINT( + &mvx_log_if, MVX_LOG_INFO, + "|------ %-4u: VA=0x%08x, PA=0x%llx, ATTR=%u, ACC=%u", + j, va, pa, get_attr(l2[j]), + get_ap(l2[j])); + } + } + } + } +} + +/* LCOV_EXCL_STOP */ + +int mvx_mmu_pages_debugfs_init(struct mvx_mmu_pages *pages, char *name, + struct dentry *parent) +{ + struct dentry *dpages; + struct dentry *dentry; + + dpages = debugfs_create_dir(name, parent); + if (IS_ERR_OR_NULL(dpages)) + return -ENOMEM; + + dentry = debugfs_create_file("stat", 0400, dpages, pages, &stat_fops); + if (IS_ERR_OR_NULL(dentry)) + return -ENOMEM; + + dentry = debugfs_create_file("list", 0400, dpages, pages, &list_fops); + if (IS_ERR_OR_NULL(dentry)) + return -ENOMEM; + + return 0; +} diff --git a/drivers/media/platform/canaan/vpu/mvx_mmu.h b/drivers/media/platform/canaan/vpu/mvx_mmu.h new file mode 100644 index 0000000000000..c77fa5b30657f --- /dev/null +++ b/drivers/media/platform/canaan/vpu/mvx_mmu.h @@ -0,0 +1,424 @@ +/* SPDX-License-Identifier: GPL-2.0-only + * The confidential and proprietary information contained in this file may + * only be used by a person authorised under and to the extent permitted + * by a subsisting licensing agreement from Arm Technology (China) Co., Ltd. + * + * (C) COPYRIGHT 2021-2021 Arm Technology (China) Co., Ltd. + * ALL RIGHTS RESERVED + * + * This entire notice must be reproduced on all copies of this file + * and copies of this file may only be made by a person if such person is + * permitted to do so under the terms of a subsisting license agreement + * from Arm Technology (China) Co., Ltd. + * + * 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. + * + */ + +#ifndef _MVX_MMU_H_ +#define _MVX_MMU_H_ + +/**************************************************************************** + * Includes + ****************************************************************************/ + +#include +#include +#include + +/**************************************************************************** + * Defines + ****************************************************************************/ + +/* Page size in bits. 2^12 = 4kB. */ +#define MVE_PAGE_SHIFT 12 +#define MVE_PAGE_SIZE (1 << MVE_PAGE_SHIFT) +#define MVE_PAGE_MASK (MVE_PAGE_SIZE - 1) + +/* Number of page table entries per page. */ +#define MVE_PAGE_PTE_PER_PAGE (MVE_PAGE_SIZE / sizeof(mvx_mmu_pte)) + +/**************************************************************************** + * Types + ****************************************************************************/ + +struct device; +struct dma_buf; +struct mvx_mmu; +struct page; + +/** + * typedef mvx_mmu_va - 32 bit virtual address. + * + * This is the address the firmware/MVE will use. + */ +typedef uint32_t mvx_mmu_va; + +/** + * typedef mvx_mmu_pte - Page table entry. + * + * A PTE pointer should always point at a Linux kernel virtual address. + * + * AT - Attribute. + * PA - Physical address. + * AP - Access permission. + * + * 30 2 0 + * +---+-------------------------------------------------------+---+ + * | AT| PA 39:12 | AP| + * +---+-------------------------------------------------------+---+ + */ +typedef uint32_t mvx_mmu_pte; + +enum mvx_mmu_attr { + MVX_ATTR_PRIVATE = 0, + MVX_ATTR_REFFRAME = 1, + MVX_ATTR_SHARED_RO = 2, + MVX_ATTR_SHARED_RW = 3 +}; + +enum mvx_mmu_access { + MVX_ACCESS_NO = 0, + MVX_ACCESS_READ_ONLY = 1, + MVX_ACCESS_EXECUTABLE = 2, + MVX_ACCESS_READ_WRITE = 3 +}; + +/** + * struct mvx_mmu_pages - Structure used to allocate an array of pages. + * @dev: Pointer to device. + * @node: Hash table node. Used to keep track of allocated pages objects. + * @mmu: Pointer to MMU instance. + * @va: MVE virtual address. Set to 0 if objects is unmapped. + * @offset: Offset from mapped VA to where the data begins. + * @attr: Page table attributes. + * @access: Page table access. + * @capacity: Maximum number of MVE pages this object can hold. + * @count: Current number of allocated pages. + * @is_external:If the physical pages have been externally allocated. + * @dmabuf: List of DMA buffers. + * @pages: Array of pages. + */ +struct mvx_mmu_pages { + struct device *dev; + struct hlist_node node; + struct mvx_mmu *mmu; + mvx_mmu_va va; + size_t offset; + enum mvx_mmu_attr attr; + enum mvx_mmu_access access; + size_t capacity; + size_t count; + bool is_external; + struct list_head dmabuf; + phys_addr_t pages[2]; +}; + +/** + * struct mvx_mmu - MMU context. + * @dev: Pointer to device. + * @page_table: Virtual address to L1 page. + * @l2_page_is_external: Bitmap of which L2 pages that have been mapped + * externally. + */ +struct mvx_mmu { + struct device *dev; + mvx_mmu_pte *page_table; + DECLARE_BITMAP(l2_page_is_external, MVE_PAGE_PTE_PER_PAGE); +}; + +/**************************************************************************** + * Static functions + ****************************************************************************/ + +#ifndef phys_to_page + +/** + * phys_to_page() - Convert a physical address to a pointer to a page. + * @pa: Physical address. + * + * Return: Pointer to page struct. + */ +static inline struct page *phys_to_page(unsigned long pa) +{ + return pfn_to_page(__phys_to_pfn(pa)); +} + +#endif + +/**************************************************************************** + * Exported functions + ****************************************************************************/ + +/** + * mvx_mmu_construct() - Construct the MMU object. + * @mmu: Pointer to MMU object. + * @dev: Pointer to device. + * + * Return: 0 on success, else error code. + */ +int mvx_mmu_construct(struct mvx_mmu *mmu, struct device *dev); + +/** + * mvx_mmu_destruct() - Destroy the MMU object. + * @mmu: Pointer to MMU object. + */ +void mvx_mmu_destruct(struct mvx_mmu *mmu); + +/** + * mvx_mmu_alloc_contiguous_pages() - Allocate contiguous pages. + * dev: Pointer to device. + * npages: Number of pages to allocate. + * Return: Physical page address on success, else 0. + */ +phys_addr_t mvx_mmu_alloc_contiguous_pages(struct device *dev, size_t npages); + +/* + * mvx_mmu_free_contiguous_pages() - Free contiguous pages. + * + * dev: Pointer to device. + * pa: Physical page address or 0. + * npages: Number of pages to free. + */ +void mvx_mmu_free_contiguous_pages(struct device *dev, phys_addr_t pa, + size_t npages); + +/** + * mvx_mmu_alloc_page() - Allocate one page. + * dev: Pointer to device. + * + * Return: Physical page address on success, else 0. + */ +phys_addr_t mvx_mmu_alloc_page(struct device *dev); + +/* + * mvx_mmu_free_page() - Free one page. + * + * dev: Pointer to device. + * pa: Physical page address or 0. + */ +void mvx_mmu_free_page(struct device *dev, phys_addr_t pa); + +/** + * mvx_mmu_alloc_pages() - Allocate array of pages. + * @dev: Pointer to device. + * @npages Number of pages to allocate. + * @capacity: Maximum number of pages this allocation can be resized + * to. If this value is 0 or smaller than npages, then it will be + * set to npages. + * + * Pages are not guaranteed to be physically continuous. + * + * Return: Valid pointer on success, else ERR_PTR. + */ +struct mvx_mmu_pages *mvx_mmu_alloc_pages(struct device *dev, size_t npages, + size_t capacity); + +/** + * mvx_mmu_alloc_pages_sg() - Allocate array of pages from SG table. + * @dev: Pointer to device. + * @sgt: Scatter-gatter table with pre-allocated memory pages. + * @capacity: Maximum number of pages this allocation can be resized + * to. If this value is 0 or smaller than number of pages + * in scatter gather table, then it will be rounded up to + * SG table size. + * + * Pages are not guaranteed to be physically continuous. + * + * Return: Valid pointer on success, else ERR_PTR. + */ +struct mvx_mmu_pages *mvx_mmu_alloc_pages_sg(struct device *dev, + struct sg_table *sgt, + size_t capacity); + +/** + * mvx_mmu_alloc_pages_dma_buf() - Allocate pages object from DMA buffer. + * @dev: Pointer to device. + * @dma_buf: Pointer to DMA buffer. + * @capacity: Maximum number of pages this allocation can be resized + * to. If this value is 0 or smaller than number of pages + * in DMA buffer, then it will be rounded up to DMA buffer + * size. + * + * The pages object will take ownership of the DMA buffer and call + * dma_put_buf() when the pages object is destructed. + * + * Return: Valid pointer on success, else ERR_PTR. + */ +struct mvx_mmu_pages *mvx_mmu_alloc_pages_dma_buf(struct device *dev, + struct dma_buf *dmabuf, + size_t capacity); + +/** + * mvx_mmu_pages_append_dma_buf() - Append DMA buffer to pages object. + * @pages: Pointer to pages object. + * @dma_buf: Pointer to DMA buffer. + * + * Return: 0 on success, else error code. + */ +int mvx_mmu_pages_append_dma_buf(struct mvx_mmu_pages *pages, + struct dma_buf *dmabuf); + +/** + * mvx_mmu_resize_pages() - Resize the page allocation. + * @pages: Pointer to pages object. + * @npages: Number of pages to allocate. + * + * If the number of pages is smaller, then pages will be freed. + * + * If the number of pages is larger, then additional memory will be allocated. + * The already allocates pages will keep their physical addresses. + * + * Return: 0 on success, else error code. + */ +int mvx_mmu_resize_pages(struct mvx_mmu_pages *pages, size_t npages); + +/** + * mvx_mmu_free_pages() - Free pages. + * @pages: Pointer to pages object. + */ +void mvx_mmu_free_pages(struct mvx_mmu_pages *pages); + +/** + * mvx_mmu_size_pages() - Get number of allocated bytes. + * @pages: Pointer to pages object. + * + * Return: Size in bytes of pages. + */ +size_t mvx_mmu_size_pages(struct mvx_mmu_pages *pages); + +/** + * mvx_buffer_synch() - Synch data caches. + * @pages: Pointer to pages object. + * @dir: Which direction to synch. + * + * Return: 0 on success, else error code. + */ +int mvx_mmu_synch_pages(struct mvx_mmu_pages *pages, + enum dma_data_direction dir); + +/** + * mvx_mmu_map_pages() - Map an array of pages to a virtual address. + * @mmu: Pointer to MMU object. + * @va: Virtual address. + * @pages: Pointer to pages object. + * @attr: Bus attributes. + * @access: Access permission. + * + * Return: 0 on success, else error code. + */ +int mvx_mmu_map_pages(struct mvx_mmu *mmu, mvx_mmu_va va, + struct mvx_mmu_pages *pages, enum mvx_mmu_attr attr, + enum mvx_mmu_access access); + +/** + * mvx_mmu_unmap_pages() - Unmap pages object. + * @pages: Pointer to pages object. + */ +void mvx_mmu_unmap_pages(struct mvx_mmu_pages *pages); + +/** + * mvx_mmu_map_pa() - Map a physical- to a virtual address. + * @mmu: Pointer to MMU object. + * @va: Virtual address. + * @pa: Physical address. + * @size: Size of area to map. + * @attr: Bus attributes. + * @access: Access permission. + * + * Both the VA and PA must be page aligned. + * + * Return: 0 on success, else error code. + */ +int mvx_mmu_map_pa(struct mvx_mmu *mmu, mvx_mmu_va va, phys_addr_t pa, + size_t size, enum mvx_mmu_attr attr, + enum mvx_mmu_access access); + +/** + * mvx_mmu_map_l2() - Map a L2 page. + * @mmu: Pointer to MMU object. + * @va: Virtual address. + * @pa: Physical address. + * + * Return: 0 on success, else error code. + */ +int mvx_mmu_map_l2(struct mvx_mmu *mmu, mvx_mmu_va va, phys_addr_t pa); + +/** + * mvx_mmu_unmap_va() - Unmap a virtual address range. + * @mmu: Pointer to MMU object. + * @va: Virtual address. + * @size: Size of area to unmap. + */ +void mvx_mmu_unmap_va(struct mvx_mmu *mmu, mvx_mmu_va va, size_t size); + +/** + * mvx_mmu_va_to_pa() - Map a virtual- to a physical address. + * @mmu: Pointer to MMU object. + * @va: Virtual address. + * @pa: Pointer to physical address. + * + * Return: 0 on success, else error code. + */ +int mvx_mmu_va_to_pa(struct mvx_mmu *mmu, mvx_mmu_va va, phys_addr_t *pa); + +/** + * mvx_mmu_read() - Read size bytes from virtual address. + * @mmu: Pointer to MMU object. + * @va: Source virtual address. + * @data: Pointer to destination data. + * @size: Number of bytes to copy. + * + * Return: 0 on success, else error code. + */ +int mvx_mmu_read(struct mvx_mmu *mmu, mvx_mmu_va va, void *data, size_t size); + +/** + * mvx_mmu_write() - Write size bytes to virtual address. + * @mmu: Pointer to MMU object. + * @va: Destination virtual address. + * @data: Pointer to source data. + * @size: Number of bytes to copy. + * + * Return: 0 on success, else error code. + */ +int mvx_mmu_write(struct mvx_mmu *mmu, mvx_mmu_va va, const void *data, + size_t size); + +/** + * mvx_mmu_set_pte() - Construct PTE and return PTE value. + * @attr: Bus attributes. + * @pa: Physical address. + * @access: Access permission. + * + * Return: Page table entry. + */ +mvx_mmu_pte mvx_mmu_set_pte(enum mvx_mmu_attr attr, phys_addr_t pa, + enum mvx_mmu_access access); + +/** + * mvx_mmu_print() - Print the MMU table. + * @mmu: Pointer to MMU object. + */ +void mvx_mmu_print(struct mvx_mmu *mmu); + +/** + * mvx_mmu_pages_debugfs_init() - Init debugfs entry. + * @pages: Pointer to MMU pages. + * @name: Name of debugfs entry. + * @parent: Parent debugfs entry. + * + * Return: 0 on success, else error code. + */ +int mvx_mmu_pages_debugfs_init(struct mvx_mmu_pages *pages, char *name, + struct dentry *parent); + +#endif /* _MVX_MMU_H_ */ diff --git a/drivers/media/platform/canaan/vpu/mvx_pm_runtime.c b/drivers/media/platform/canaan/vpu/mvx_pm_runtime.c new file mode 100644 index 0000000000000..4c1689f68b14d --- /dev/null +++ b/drivers/media/platform/canaan/vpu/mvx_pm_runtime.c @@ -0,0 +1,60 @@ +// SPDX-License-Identifier: GPL-2.0-only +/* + * The confidential and proprietary information contained in this file may + * only be used by a person authorised under and to the extent permitted + * by a subsisting licensing agreement from Arm Technology (China) Co., Ltd. + * + * (C) COPYRIGHT 2021-2021 Arm Technology (China) Co., Ltd. + * ALL RIGHTS RESERVED + * + * This entire notice must be reproduced on all copies of this file + * and copies of this file may only be made by a person if such person is + * permitted to do so under the terms of a subsisting license agreement + * from Arm Technology (China) Co., Ltd. + * + * 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. + * + */ + +#include +#include "mvx_log_group.h" + +int mvx_pm_runtime_get_sync(struct device *dev) +{ +#ifdef ENABLE_PM_CLK + int ret; + + ret = pm_runtime_get_sync(dev); + if (ret < 0) + MVX_LOG_PRINT(&mvx_log_dev, MVX_LOG_WARNING, + "PM runtime get sync failed! ret=%d", ret); + + return ret; +#else /* !CONFIG_PM */ + return 1; +#endif /* CONFIG_PM */ +} + +int mvx_pm_runtime_put_sync(struct device *dev) +{ +#ifdef ENABLE_PM_CLK + int ret; + + ret = pm_runtime_put_sync(dev); + if (ret < 0) + MVX_LOG_PRINT(&mvx_log_dev, MVX_LOG_WARNING, + "PM runtime put sync failed! ret=%d", ret); + + return ret; +#else /* !CONFIG_PM */ + return 0; +#endif /* CONFIG_PM */ +} diff --git a/drivers/media/platform/canaan/vpu/mvx_pm_runtime.h b/drivers/media/platform/canaan/vpu/mvx_pm_runtime.h new file mode 100644 index 0000000000000..8b83c7346915c --- /dev/null +++ b/drivers/media/platform/canaan/vpu/mvx_pm_runtime.h @@ -0,0 +1,61 @@ +/* SPDX-License-Identifier: GPL-2.0-only + * The confidential and proprietary information contained in this file may + * only be used by a person authorised under and to the extent permitted + * by a subsisting licensing agreement from Arm Technology (China) Co., Ltd. + * + * (C) COPYRIGHT 2021-2021 Arm Technology (China) Co., Ltd. + * ALL RIGHTS RESERVED + * + * This entire notice must be reproduced on all copies of this file + * and copies of this file may only be made by a person if such person is + * permitted to do so under the terms of a subsisting license agreement + * from Arm Technology (China) Co., Ltd. + * + * 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. + * + */ + +#ifndef _MVX_PM_RUNTIME_H_ +#define _MVX_PM_RUNTIME_H_ + +/**************************************************************************** + * Types + ****************************************************************************/ + +struct device; + +/**************************************************************************** + * Exported functions + ****************************************************************************/ + +/** + * mvx_pm_runtime_get_sync() - The same function as pm_runtime_get_sync(), but + * with the addon that it prints a log line when + * error happens. + * @dev: Pointer to device. + * + * Return: 0 on success, 1 if already 'active', else error code. + */ +int mvx_pm_runtime_get_sync(struct device *dev); + +/** + * mvx_pm_runtime_put_sync() - The same function as pm_runtime_put_sync(), but + * with the addon that it prints a log line when + * error happens. + * It will not return error if CONFIG_PM is + * undefined. + * @dev: Pointer to device. + * + * Return: 0 on success, 1 if already 'suspended', else error code. + */ +int mvx_pm_runtime_put_sync(struct device *dev); + +#endif /* _MVX_PM_RUNTIME_H_ */ diff --git a/drivers/media/platform/canaan/vpu/mvx_scheduler.c b/drivers/media/platform/canaan/vpu/mvx_scheduler.c new file mode 100644 index 0000000000000..9d60c6e24c165 --- /dev/null +++ b/drivers/media/platform/canaan/vpu/mvx_scheduler.c @@ -0,0 +1,706 @@ +// SPDX-License-Identifier: GPL-2.0-only +/* + * The confidential and proprietary information contained in this file may + * only be used by a person authorised under and to the extent permitted + * by a subsisting licensing agreement from Arm Technology (China) Co., Ltd. + * + * (C) COPYRIGHT 2021-2021 Arm Technology (China) Co., Ltd. + * ALL RIGHTS RESERVED + * + * This entire notice must be reproduced on all copies of this file + * and copies of this file may only be made by a person if such person is + * permitted to do so under the terms of a subsisting license agreement + * from Arm Technology (China) Co., Ltd. + * + * 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. + * + */ + +/**************************************************************************** + * Includes + ****************************************************************************/ + +#include +#include +#include +#include +#include "mvx_if.h" +#include "mvx_hwreg.h" +#include "mvx_mmu.h" +#include "mvx_scheduler.h" +#include "mvx_session.h" +#include "mvx_seq.h" +#include "mvx_pm_runtime.h" +#include "mvx_log_group.h" + +/**************************************************************************** + * Static functions + ****************************************************************************/ + +static struct mvx_lsid *find_free_lsid(struct mvx_sched *sched) +{ + unsigned int i; + + for (i = 0; i < sched->nlsid; i++) + if (sched->lsid[i].session == NULL) + return &sched->lsid[i]; + + return NULL; +} + +static struct mvx_lsid *find_idle_lsid(struct mvx_sched *sched) +{ + unsigned int i; + + for (i = 0; i < sched->nlsid; i++) { + bool idle; + + idle = mvx_lsid_idle(&sched->lsid[i]); + if (idle != false) + return &sched->lsid[i]; + } + + return NULL; +} + +static int map_session(struct mvx_sched *sched, + struct mvx_sched_session *session, struct mvx_lsid *lsid) +{ + int ret; + + MVX_LOG_PRINT(&mvx_log_dev, MVX_LOG_INFO, + "%p Map LSID. lsid=%u, jobqueue=%08x, corelsid=%08x.", + mvx_if_session_to_session(session->isession), lsid->lsid, + mvx_hwreg_read(sched->hwreg, MVX_HWREG_JOBQUEUE), + mvx_hwreg_read(sched->hwreg, MVX_HWREG_CORELSID)); + + ret = mvx_lsid_map(lsid, &session->pcb); + if (ret != 0) + return ret; + + session->lsid = lsid; + lsid->session = session; + + return 0; +} + +static void unmap_session(struct mvx_sched *sched, + struct mvx_sched_session *session) +{ + struct mvx_lsid *lsid = session->lsid; + + if (lsid == NULL) + return; + + MVX_LOG_PRINT(&mvx_log_dev, MVX_LOG_INFO, + "%p Unmap LSID. lsid=%u, jobqueue=%08x, corelsid=%08x.", + mvx_if_session_to_session(session->isession), lsid->lsid, + mvx_hwreg_read(sched->hwreg, MVX_HWREG_JOBQUEUE), + mvx_hwreg_read(sched->hwreg, MVX_HWREG_CORELSID)); + + mvx_lsid_unmap(lsid, &session->pcb); + session->lsid = NULL; + lsid->session = NULL; +} + +static struct list_head *list_find_node(struct list_head *list, + struct list_head *node) +{ + struct list_head *i; + + list_for_each(i, list) { + if (i == node) + return i; + } + + return NULL; +} + +/** + * pending list is only updated when sched is locked. + * a session can only be added once + * + * notify_list = [] + * lock_sched + * for pending in pending_list: + * if is_mapped(pending): + * jobqueue.add(pending) + * pending_list.remove(pending) + * continue + * + * l = free_lsid + * if l is Nul: + * l = idle_lsid + * if l is Nul: + * break + * if is_mapped(l): + * s = session[l] + * unmap(s) + * notify_list.add(s) + * + * map(pending) + * jobqueue.add(pending) + * pending_list.remove(pending) + * unlock_sched + * + * for s in notify_list: + * session_notify(s) + * notify_list.remove(s) + */ +static void sched_task(struct work_struct *ws) +{ + struct mvx_sched *sched = + container_of(ws, struct mvx_sched, sched_task); + struct mvx_sched_session *pending; + struct mvx_sched_session *unmapped; + struct mvx_sched_session *tmp; + LIST_HEAD(notify_list); + int ret; + + mvx_pm_runtime_get_sync(sched->dev); + ret = mutex_lock_interruptible(&sched->mutex); + if (ret != 0) { + mvx_pm_runtime_put_sync(sched->dev); + return; + } + + /* + * Try to map sessions from pending queue while possible. + */ + list_for_each_entry_safe(pending, tmp, &sched->pending, pending) { + struct mvx_lsid *lsid; + + /* + * This session is already mapped to LSID. + * Just make sure it is scheduled. + */ + if (pending->lsid != NULL) { + ret = mvx_lsid_jobqueue_add(pending->lsid, + pending->isession->ncores); + if (ret != 0) { + MVX_LOG_PRINT( + &mvx_log_dev, MVX_LOG_WARNING, + "Cannot add pending session to job queue. csession=%p, mvx_session=%p", + pending, + mvx_if_session_to_session( + pending->isession)); + continue; + } + + pending->in_pending = false; + list_del(&pending->pending); + continue; + } + + /* Find LSID to be used for the pending session. */ + lsid = find_free_lsid(sched); + if (lsid == NULL) + lsid = find_idle_lsid(sched); + + if (lsid == NULL) + break; + + /* + * This LSID was mapped to some session. We have to notify + * the session about an irq in case there are messages in + * a message queue. + * + * Notifications are done after pending list is processed. + */ + if (lsid->session != NULL) { + struct mvx_sched_session *unmapped = lsid->session; + + unmap_session(sched, unmapped); + + /* + * If the reference count is 0, then the session is + * about to be removed and should be ignored. + */ + ret = kref_get_unless_zero(&unmapped->isession->kref); + if (ret != 0) { + if (list_find_node(¬ify_list, + &unmapped->notify)) + /* + * Consider a situation when a session + * that was unmapped from LSID and added + * notify_list was also present in the + * pending_list. It is possible that + * such a session will be mapped to the + * new LSID, executed by the hardware + * and switched to idle state while + * this function is still looping + * through pending list. + * + * If it happens, then this session + * might be unmapped again in order to + * make a room for another pending + * session. As a result we will try to + * add this session to notify_list + * again. This will break notify list + * and could lead to crashes or hangs. + * + * However, it is safe just to skip + * adding the session to notify_list if + * it is already there, because it will + * be processed anyway. + */ + kref_put(&unmapped->isession->kref, + unmapped->isession->release); + else + list_add_tail(&unmapped->notify, + ¬ify_list); + } else { + MVX_LOG_PRINT(&mvx_log_dev, MVX_LOG_WARNING, + "Ref is zero. csession=%p", + unmapped); + } + } + + ret = map_session(sched, pending, lsid); + if (ret != 0) { + MVX_LOG_PRINT( + &mvx_log_dev, MVX_LOG_WARNING, + "Cannot map pending session. csession=%p, mvx_session=%p", + pending, + mvx_if_session_to_session(pending->isession)); + break; + } + + ret = mvx_lsid_jobqueue_add(lsid, pending->isession->ncores); + if (ret != 0) { + MVX_LOG_PRINT( + &mvx_log_dev, MVX_LOG_WARNING, + "Cannot add pending session to job queue. csession=%p, mvx_session=%p", + pending, + mvx_if_session_to_session(pending->isession)); + continue; + } + + pending->in_pending = false; + list_del(&pending->pending); + } + + /* + * It is important that the scheduler mutex is released before the + * callbacks to the if-module are invoked. The if-module may issue + * requests to the dev-module (for example switch_in()) that would + * otherwise deadlock. + */ + mutex_unlock(&sched->mutex); + + list_for_each_entry_safe(unmapped, tmp, ¬ify_list, notify) { + struct mvx_if_session *iunmapped = unmapped->isession; + + list_del(&unmapped->notify); + + mutex_lock(iunmapped->mutex); + sched->if_ops->irq(iunmapped); + ret = kref_put(&iunmapped->kref, iunmapped->release); + if (ret == 0) + mutex_unlock(iunmapped->mutex); + } + + mvx_pm_runtime_put_sync(sched->dev); +} + +static void sched_session_print(struct seq_file *s, + struct mvx_sched_session *session, + struct mvx_hwreg *hwreg, int ind) +{ + struct mvx_lsid *lsid; + + if (session == NULL) + return; + + mvx_seq_printf(s, "Client session", ind, "%p\n", session->isession); + mvx_seq_printf(s, "Dev session", ind, "%p\n", session); + mvx_seq_printf(s, "MVX session", ind, "%p\n", + mvx_if_session_to_session(session->isession)); + + lsid = session->lsid; + if (lsid == NULL) + return; + + mvx_seq_printf(s, "IRQ host", ind, "%d\n", + mvx_hwreg_read_lsid(hwreg, lsid->lsid, + MVX_HWREG_IRQHOST)); + mvx_seq_printf(s, "IRQ MVE", ind, "%d\n", + mvx_hwreg_read_lsid(hwreg, lsid->lsid, MVX_HWREG_IRQVE)); +} + +static int sched_show(struct seq_file *s, void *v) +{ + struct mvx_sched *sched = (struct mvx_sched *)s->private; + struct mvx_hwreg *hwreg = sched->hwreg; + struct mvx_sched_session *session; + int i; + int ret; + + ret = mvx_pm_runtime_get_sync(hwreg->dev); + if (ret < 0) + return 0; + + ret = mutex_lock_interruptible(&sched->mutex); + if (ret != 0) { + mvx_pm_runtime_put_sync(hwreg->dev); + return ret; + } + + mvx_seq_printf(s, "Core LSID", 0, "%08x\n", + mvx_hwreg_read(hwreg, MVX_HWREG_CORELSID)); + mvx_seq_printf(s, "Job queue", 0, "%08x\n", + mvx_hwreg_read(hwreg, MVX_HWREG_JOBQUEUE)); + seq_puts(s, "\n"); + + seq_puts(s, "scheduled:\n"); + for (i = 0; i < sched->nlsid; ++i) { + mvx_seq_printf(s, "LSID", 1, "%d\n", i); + session = sched->lsid[i].session; + sched_session_print(s, session, hwreg, 2); + } + + seq_puts(s, "pending:\n"); + i = 0; + list_for_each_entry(session, &sched->pending, pending) { + char tmp[10]; + + scnprintf(tmp, sizeof(tmp), "%d", i++); + mvx_seq_printf(s, tmp, 1, "\n"); + sched_session_print(s, session, hwreg, 2); + } + + mutex_unlock(&sched->mutex); + mvx_pm_runtime_put_sync(hwreg->dev); + + return 0; +} + +static int sched_open(struct inode *inode, struct file *file) +{ + return single_open(file, sched_show, inode->i_private); +} + +static const struct file_operations sched_fops = { .open = sched_open, + .read = seq_read, + .llseek = seq_lseek, + .release = single_release }; + +int sched_debugfs_init(struct mvx_sched *sched, struct dentry *parent) +{ + struct dentry *dentry; + + dentry = debugfs_create_file("sched", 0400, parent, sched, &sched_fops); + if (IS_ERR_OR_NULL(dentry)) + return -ENOMEM; + + return 0; +} + +/**************************************************************************** + * Exported functions + ****************************************************************************/ + +int mvx_sched_construct(struct mvx_sched *sched, struct device *dev, + struct mvx_if_ops *if_ops, struct mvx_hwreg *hwreg, + struct dentry *parent) +{ + unsigned int lsid; + int ret; + + sched->dev = dev; + sched->hwreg = hwreg; + sched->if_ops = if_ops; + mutex_init(&sched->mutex); + INIT_LIST_HEAD(&sched->pending); + INIT_WORK(&sched->sched_task, sched_task); + sched->sched_queue = create_singlethread_workqueue("mvx_sched"); + if (!sched->sched_queue) { + MVX_LOG_PRINT(&mvx_log_dev, MVX_LOG_WARNING, + "Cannot create work queue"); + return -EINVAL; + } + + sched->nlsid = mvx_hwreg_read(hwreg, MVX_HWREG_NLSID); + + for (lsid = 0; lsid < sched->nlsid; lsid++) { + ret = mvx_lsid_construct(&sched->lsid[lsid], dev, hwreg, lsid); + if (ret != 0) + goto destruct_lsid; + } + + if (IS_ENABLED(CONFIG_DEBUG_FS)) { + ret = sched_debugfs_init(sched, parent); + if (ret != 0) + goto destruct_lsid; + } + + mvx_hwreg_write(hwreg, MVX_HWREG_RESET, 1); + mvx_hwreg_write(hwreg, MVX_HWREG_CLKFORCE, 0); + + return 0; + +destruct_lsid: + while (lsid-- > 0) + mvx_lsid_destruct(&sched->lsid[lsid]); + + return ret; +} + +void mvx_sched_destruct(struct mvx_sched *sched) +{ + destroy_workqueue(sched->sched_queue); + + while (sched->nlsid-- > 0) + mvx_lsid_destruct(&sched->lsid[sched->nlsid]); +} + +int mvx_sched_session_construct(struct mvx_sched_session *session, + struct mvx_if_session *isession) +{ + uint32_t disallow; + uint32_t maxcores; + + session->isession = isession; + INIT_LIST_HEAD(&session->pending); + INIT_LIST_HEAD(&session->notify); + session->lsid = NULL; + session->in_pending = false; + + memset(&session->pcb, 0, sizeof(session->pcb)); + + disallow = (0xffffffff << isession->ncores) & MVE_CTRL_DISALLOW_MASK; + maxcores = isession->ncores & MVE_CTRL_MAXCORES_MASK; + session->pcb.ctrl = (disallow << MVE_CTRL_DISALLOW_SHIFT) | + (maxcores << MVE_CTRL_MAXCORES_SHIFT); + + session->pcb.mmu_ctrl = isession->l0_pte; + session->pcb.nprot = isession->securevideo == false; + + return 0; +} + +void mvx_sched_session_destruct(struct mvx_sched_session *session) +{ +} + +int mvx_sched_switch_in(struct mvx_sched *sched, + struct mvx_sched_session *session) +{ + int ret; + + MVX_LOG_PRINT(&mvx_log_dev, MVX_LOG_INFO, + "%p Switch in session. jobqueue=%08x, coreslid=%08x.", + mvx_if_session_to_session(session->isession), + mvx_hwreg_read(sched->hwreg, MVX_HWREG_JOBQUEUE), + mvx_hwreg_read(sched->hwreg, MVX_HWREG_CORELSID)); + + ret = mutex_lock_interruptible(&sched->mutex); + if (ret != 0) + return ret; + + if (session->in_pending) { + MVX_LOG_PRINT(&mvx_log_dev, MVX_LOG_VERBOSE, + "Session is already in pending state."); + goto unlock_mutex; + } + + session->in_pending = true; + list_add_tail(&session->pending, &sched->pending); + queue_work(sched->sched_queue, &sched->sched_task); + +unlock_mutex: + mutex_unlock(&sched->mutex); + return 0; +} + +int mvx_sched_send_irq(struct mvx_sched *sched, + struct mvx_sched_session *session) +{ + mutex_lock(&sched->mutex); + + MVX_LOG_PRINT(&mvx_log_dev, MVX_LOG_DEBUG, + "%p Send irq. lsid=%d, jobqueue=%08x, corelsid=%08x.", + mvx_if_session_to_session(session->isession), + session->lsid == NULL ? -1 : session->lsid->lsid, + mvx_hwreg_read(sched->hwreg, MVX_HWREG_JOBQUEUE), + mvx_hwreg_read(sched->hwreg, MVX_HWREG_CORELSID)); + + if (session->lsid == NULL) + session->pcb.irqhost = 1; + else + mvx_lsid_send_irq(session->lsid); + + mutex_unlock(&sched->mutex); + + return 0; +} + +int mvx_sched_flush_mmu(struct mvx_sched *sched, + struct mvx_sched_session *session) +{ + mutex_lock(&sched->mutex); + + if (session->lsid != NULL) + mvx_lsid_flush_mmu(session->lsid); + + mutex_unlock(&sched->mutex); + + return 0; +} + +static void print_session(struct mvx_sched *sched, + struct mvx_sched_session *session, + struct mvx_session *s) +{ + int lsid = -1; + uint32_t irqve = 0; + uint32_t irqhost = 0; + + if (session != NULL && session->lsid != NULL) { + struct mvx_hwreg *hwreg = sched->hwreg; + + lsid = session->lsid->lsid; + irqve = mvx_hwreg_read_lsid(hwreg, lsid, MVX_HWREG_LIRQVE); + irqhost = mvx_hwreg_read_lsid(hwreg, lsid, MVX_HWREG_IRQHOST); + } + + MVX_LOG_PRINT(&mvx_log_dev, MVX_LOG_WARNING, + "%p session=%p, lsid=%d, irqve=%08x, irqhost=%08x", s, + mvx_if_session_to_session(session->isession), lsid, irqve, + irqhost); +} + +void mvx_sched_print_debug(struct mvx_sched *sched, + struct mvx_sched_session *session) +{ + struct mvx_hwreg *hwreg = sched->hwreg; + struct mvx_sched_session *pending; + struct mvx_sched_session *tmp; + struct mvx_session *s = mvx_if_session_to_session(session->isession); + unsigned int i; + int ret; + + mvx_pm_runtime_get_sync(sched->dev); + + ret = mutex_lock_interruptible(&sched->mutex); + if (ret != 0) { + mvx_pm_runtime_put_sync(sched->dev); + return; + } + + MVX_LOG_PRINT(&mvx_log_dev, MVX_LOG_WARNING, "%p Current session:", s); + print_session(sched, session, s); + + MVX_LOG_PRINT(&mvx_log_dev, MVX_LOG_WARNING, "%p Pending queue:", s); + list_for_each_entry_safe(pending, tmp, &sched->pending, pending) { + print_session(sched, pending, s); + } + + MVX_LOG_PRINT(&mvx_log_dev, MVX_LOG_WARNING, "%p Print register:", s); + + MVX_LOG_PRINT( + &mvx_log_dev, MVX_LOG_WARNING, + "%p jobqueue=%08x, corelsid=%08x, irqve=%08x, irqhost=%08x", + s, mvx_hwreg_read(hwreg, MVX_HWREG_JOBQUEUE), + mvx_hwreg_read(hwreg, MVX_HWREG_CORELSID), + mvx_hwreg_read(hwreg, MVX_HWREG_IRQVE), + mvx_hwreg_read(hwreg, MVX_HWREG_IRQHOST)); + + for (i = 0; i < sched->nlsid; i++) { + struct mvx_sched_session *ss = sched->lsid[i].session; + struct mvx_session *ls = NULL; + + if (ss != NULL) + ls = mvx_if_session_to_session(ss->isession); + + MVX_LOG_PRINT( + &mvx_log_dev, MVX_LOG_WARNING, + "%p lsid=%u, session=%p, irqve=%08x, irqhost=%08x", + s, i, ls, + mvx_hwreg_read_lsid(hwreg, i, MVX_HWREG_LIRQVE), + mvx_hwreg_read_lsid(hwreg, i, MVX_HWREG_IRQHOST)); + } + + mutex_unlock(&sched->mutex); + + mvx_pm_runtime_put_sync(sched->dev); +} + +void mvx_sched_handle_irq(struct mvx_sched *sched, unsigned int lsid) +{ + struct mvx_sched_session *session; + struct mvx_if_session *isession = NULL; + int ret; + + ret = mutex_lock_interruptible(&sched->mutex); + if (ret != 0) + return; + + /* + * If a session has been terminated/unmapped just before the IRQ bottom + * handler has been executed, then the session pointer will be NULL or + * may even point at a different session. This is an unharmful + * situation. + * + * If the reference count is 0, then the session is about to be removed + * and should be ignored. + */ + session = sched->lsid[lsid].session; + if (session != NULL) { + ret = kref_get_unless_zero(&session->isession->kref); + if (ret != 0) + isession = session->isession; + } + + /* + * It is important that the scheduler mutex is released before the + * callbacks to the if-module are invoked. The if-module may issue + * requests to the dev-module (for example switch_in()) that would + * otherwise deadlock. + */ + mutex_unlock(&sched->mutex); + + /* Inform if-session that an IRQ was received. */ + if (isession != NULL) { + mutex_lock(isession->mutex); + sched->if_ops->irq(isession); + ret = kref_put(&isession->kref, isession->release); + + if (ret == 0) + mutex_unlock(isession->mutex); + } + + queue_work(sched->sched_queue, &sched->sched_task); +} + +void mvx_sched_terminate(struct mvx_sched *sched, + struct mvx_sched_session *session) +{ + struct list_head *head; + struct list_head *tmp; + + mutex_lock(&sched->mutex); + + if (session->lsid != NULL) { + mvx_lsid_jobqueue_remove(session->lsid); + mvx_lsid_terminate(session->lsid); + unmap_session(sched, session); + } + + list_for_each_safe(head, tmp, &sched->pending) { + if (head == &session->pending) { + list_del(head); + break; + } + } + + mutex_unlock(&sched->mutex); +} diff --git a/drivers/media/platform/canaan/vpu/mvx_scheduler.h b/drivers/media/platform/canaan/vpu/mvx_scheduler.h new file mode 100644 index 0000000000000..8fd84cdab9db7 --- /dev/null +++ b/drivers/media/platform/canaan/vpu/mvx_scheduler.h @@ -0,0 +1,185 @@ +/* SPDX-License-Identifier: GPL-2.0-only + * The confidential and proprietary information contained in this file may + * only be used by a person authorised under and to the extent permitted + * by a subsisting licensing agreement from Arm Technology (China) Co., Ltd. + * + * (C) COPYRIGHT 2021-2021 Arm Technology (China) Co., Ltd. + * ALL RIGHTS RESERVED + * + * This entire notice must be reproduced on all copies of this file + * and copies of this file may only be made by a person if such person is + * permitted to do so under the terms of a subsisting license agreement + * from Arm Technology (China) Co., Ltd. + * + * 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. + * + */ + +#ifndef _MVX_SCHEDULER_H_ +#define _MVX_SCHEDULER_H_ + +/**************************************************************************** + * Includes + ****************************************************************************/ + +#include +#include +#include +#include "mvx_lsid.h" + +/**************************************************************************** + * Types + ****************************************************************************/ + +struct mvx_if_ops; +struct mvx_hwreg; + +/** + * struct mvx_sched - Scheduler class. + * @dev: Pointer to device. + * @if_ops: Pointer to if module operations. + * @hwreg: Pointer to hwreg. + * @mutex: Mutex protecting the scheduler. + * @pending: List if sessions pending scheduling. + * @nlsid: Number of LSID. + * @lsid: Array of LSID instances. + */ +struct mvx_sched { + struct device *dev; + struct mvx_if_ops *if_ops; + struct mvx_hwreg *hwreg; + struct mutex mutex; + struct list_head pending; + unsigned int nlsid; + struct mvx_lsid lsid[MVX_LSID_MAX]; + struct work_struct sched_task; + struct workqueue_struct *sched_queue; +}; + +/** + * struct mvx_sched_session - Client session class. + * @isession: Pointer to if session. + * @head: List head used to insert session into scheduler pending list. + * @lsid: Pointer to LSID the session is mapped to. + * @pcb: LSID pcb. + * + * This struct is used to keep track of sessions specific information. + */ +struct mvx_sched_session { + struct mvx_if_session *isession; + struct list_head pending; + struct list_head notify; + struct mvx_lsid *lsid; + struct mvx_lsid_pcb pcb; + bool in_pending; +}; + +/**************************************************************************** + * Exported functions + ****************************************************************************/ + +/** + * mvx_sched_construct() - Construct the scheduler object. + * @sched: Pointer to scheduler object. + * @dev: Pointer to device. + * @if_ops: Pointer to if ops. + * @hwreg: Pointer to hwreg. + * @parent: Pointer to parent debugfs directory entry. + * + * Return: 0 on success, else error code. + */ +int mvx_sched_construct(struct mvx_sched *sched, struct device *dev, + struct mvx_if_ops *if_ops, struct mvx_hwreg *hwreg, + struct dentry *parent); + +/** + * mvx_sched_destruct() - Destruct the scheduler object. + * @sched: Pointer to scheduler object. + */ +void mvx_sched_destruct(struct mvx_sched *sched); + +/** + * mvx_sched_session_construct() - Construct the scheduler session object. + * @if_ops: If module operations. + * @session: Pointer to session object. + * @isession: Pointer to if session. + * + * Return: 0 on success, else error code. + */ +int mvx_sched_session_construct(struct mvx_sched_session *session, + struct mvx_if_session *isession); + +/** + * mvx_sched_session_destruct() - Destruct the scheduler session object. + * @session: Pointer to session object. + * + * The client must make sure the session is terminated before the destructor + * is called. + */ +void mvx_sched_session_destruct(struct mvx_sched_session *session); + +/** + * mvx_sched_switch_in() - Switch in a session. + * @sched: Pointer to scheduler object. + * @session: Pointer to session object. + * + * Map a session to a LSID and schedule session for execution. If no LSID + * is available the session is placed in the pending queue. + * + * Return: 0 on success, else error code. + */ +int mvx_sched_switch_in(struct mvx_sched *sched, + struct mvx_sched_session *session); + +/** + * mvx_sched_send_irq() - Send IRQ to session. + * @sched: Pointer to scheduler object. + * @session: Pointer to session object. + * + * Return: 0 on success, else error code. + */ +int mvx_sched_send_irq(struct mvx_sched *sched, + struct mvx_sched_session *session); + +/** + * mvx_sched_flush_mmu() - Flush MMU tables. + * @sched: Pointer to scheduler object. + * @session: Pointer to session object. + * + * Return: 0 on success, else error code. + */ +int mvx_sched_flush_mmu(struct mvx_sched *sched, + struct mvx_sched_session *session); + +/** + * mvx_sched_handle_irq() - Handle interrupt for a LSID. + * @sched: Pointer to scheduler object. + * @lsid: LSID number. + */ +void mvx_sched_handle_irq(struct mvx_sched *sched, unsigned int lsid); + +/** + * mvx_sched_terminate() - Terminate a session. + * @sched: Pointer to scheduler object. + * @session: Pointer to session object. + */ +void mvx_sched_terminate(struct mvx_sched *sched, + struct mvx_sched_session *session); + +/** + * mvx_sched_print_debug() - Print debug information. + * @sched: Pointer to scheduler object. + * @session: Pointer to session object. + */ +void mvx_sched_print_debug(struct mvx_sched *sched, + struct mvx_sched_session *session); + +#endif /* _MVX_SCHEDULER_H_ */ diff --git a/drivers/media/platform/canaan/vpu/mvx_secure.c b/drivers/media/platform/canaan/vpu/mvx_secure.c new file mode 100644 index 0000000000000..0690443ae8c3b --- /dev/null +++ b/drivers/media/platform/canaan/vpu/mvx_secure.c @@ -0,0 +1,379 @@ +// SPDX-License-Identifier: GPL-2.0-only +/* + * The confidential and proprietary information contained in this file may + * only be used by a person authorised under and to the extent permitted + * by a subsisting licensing agreement from Arm Technology (China) Co., Ltd. + * + * (C) COPYRIGHT 2021-2021 Arm Technology (China) Co., Ltd. + * ALL RIGHTS RESERVED + * + * This entire notice must be reproduced on all copies of this file + * and copies of this file may only be made by a person if such person is + * permitted to do so under the terms of a subsisting license agreement + * from Arm Technology (China) Co., Ltd. + * + * 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. + * + */ + +/**************************************************************************** + * Includes + ****************************************************************************/ + +#include +#include +#include +#include +#include +#include "mvx_log_group.h" +#include "mvx_secure.h" + +/**************************************************************************** + * Types + ****************************************************************************/ + +#pragma pack(push, 1) +struct secure_firmware_desc { + int32_t fd; + uint32_t l2pages; + struct { + uint32_t major; + uint32_t minor; + } protocol; +}; +#pragma pack(pop) + +struct mvx_secure_firmware_priv { + struct device *dev; + struct kobject kobj; + struct work_struct work; + wait_queue_head_t wait_queue; + struct mvx_secure_firmware fw; + mvx_secure_firmware_done done; + void *done_arg; +}; + +struct mvx_secure_mem { + struct device *dev; + struct kobject kobj; + wait_queue_head_t wait_queue; + struct dma_buf *dmabuf; +}; + +/**************************************************************************** + * Secure + ****************************************************************************/ + +int mvx_secure_construct(struct mvx_secure *secure, struct device *dev) +{ + secure->dev = dev; + secure->kset = kset_create_and_add("securevideo", NULL, &dev->kobj); + if (secure->kset == NULL) { + MVX_LOG_PRINT(&mvx_log_if, MVX_LOG_WARNING, + "Failed to create securevideo kset."); + return -EINVAL; + } + + secure->workqueue = alloc_workqueue("mvx_securevideo", + WQ_UNBOUND | WQ_MEM_RECLAIM, 1); + if (secure->workqueue == NULL) { + kset_unregister(secure->kset); + return -EINVAL; + } + + return 0; +} + +void mvx_secure_destruct(struct mvx_secure *secure) +{ + destroy_workqueue(secure->workqueue); + kset_unregister(secure->kset); +} + +/**************************************************************************** + * Secure firmware + ****************************************************************************/ + +/** + * firmware_store() - Firmware sysfs store function. + * + * Store values from firmware descriptor, get the DMA handle and wake up any + * waiting process. + */ +static ssize_t firmware_store(struct kobject *kobj, struct kobj_attribute *attr, + const char *buf, size_t size) +{ + struct mvx_secure_firmware_priv *securefw = + container_of(kobj, struct mvx_secure_firmware_priv, kobj); + const struct secure_firmware_desc *desc = (const void *)buf; + + MVX_LOG_PRINT( + &mvx_log_if, MVX_LOG_INFO, + "Loaded secure firmware. fd=%d, l2=0x%llx, major=%u, minor=%u.", + desc->fd, desc->l2pages, desc->protocol.major, + desc->protocol.minor); + + securefw->fw.l2pages = desc->l2pages; + securefw->fw.protocol.major = desc->protocol.major; + securefw->fw.protocol.minor = desc->protocol.minor; + securefw->fw.dmabuf = dma_buf_get(desc->fd); + if (IS_ERR_OR_NULL(securefw->fw.dmabuf)) + MVX_LOG_PRINT(&mvx_log_if, MVX_LOG_WARNING, + "Failed to get DMA buffer from fd. fd=%d.", + desc->fd); + + wake_up_interruptible(&securefw->wait_queue); + + return size; +} + +/** + * secure_firmware_release() - Release secure firmware. + * kobj: Pointer to kobject. + */ +static void secure_firmware_release(struct kobject *kobj) +{ + struct mvx_secure_firmware_priv *securefw = + container_of(kobj, struct mvx_secure_firmware_priv, kobj); + + if (IS_ERR_OR_NULL(securefw->fw.dmabuf) == false) + dma_buf_put(securefw->fw.dmabuf); + + devm_kfree(securefw->dev, securefw); +} + +/** + * secure_firmware_wait() - Wait for firmware load. + * @work: Pointer to work member in mvx_secure_firmware_priv. + * + * Worker thread used to wait for a secure firmware load to complete. + */ +static void secure_firmware_wait(struct work_struct *work) +{ + struct mvx_secure_firmware_priv *securefw = + container_of(work, struct mvx_secure_firmware_priv, work); + int ret; + + ret = wait_event_interruptible_timeout(securefw->wait_queue, + securefw->fw.dmabuf != NULL, + msecs_to_jiffies(10000)); + if (ret == 0) + MVX_LOG_PRINT(&mvx_log_if, MVX_LOG_WARNING, + "Firmware load timed out."); + + kobject_del(&securefw->kobj); + + if (securefw->done != NULL) + securefw->done(&securefw->fw, securefw->done_arg); +} + +/** + * secure_firmware_create() - Create a secure firmware object. + * @secure: Pointer to secure context. + * @name: Name for secure firmware binary. + * @ncores: Number of cores to setup. + * @arg: User argument to callback routine. + * @done: Firmware load callback routine. + * + * Return: Valid pointer on success, else ERR_PTR. + */ +static struct mvx_secure_firmware_priv * +secure_firmware_create(struct mvx_secure *secure, const char *name, + unsigned int ncores, void *arg, + mvx_secure_firmware_done done) +{ + static struct kobj_attribute attr = __ATTR_WO(firmware); + static struct attribute *attrs[] = { &attr.attr, NULL }; + static const struct kobj_type secure_ktype = { + .sysfs_ops = &kobj_sysfs_ops, + .release = secure_firmware_release, + // .default_attrs = attrs + }; + struct mvx_secure_firmware_priv *securefw; + char numcores_env[32]; + char fw_env[140]; + char *env[4] = { "TYPE=firmware", numcores_env, fw_env, NULL }; + size_t n; + int ret; + + n = snprintf(fw_env, sizeof(fw_env), "FIRMWARE=%s.enc", name); + if (n >= sizeof(fw_env)) + return ERR_PTR(-EINVAL); + + n = snprintf(numcores_env, sizeof(numcores_env), "NUMCORES=%u", ncores); + if (n >= sizeof(numcores_env)) + return ERR_PTR(-EINVAL); + + /* Allocate and initialize the secure firmware object. */ + securefw = devm_kzalloc(secure->dev, sizeof(*securefw), GFP_KERNEL); + if (securefw == NULL) + return ERR_PTR(-ENOMEM); + + securefw->dev = secure->dev; + securefw->kobj.kset = secure->kset; + securefw->fw.ncores = ncores; + securefw->done = done; + securefw->done_arg = arg; + init_waitqueue_head(&securefw->wait_queue); + + /* Create kobject that the user space helper can interact with. */ + ret = kobject_init_and_add(&securefw->kobj, &secure_ktype, NULL, "%p", + securefw); + if (ret != 0) + goto put_kobject; + + /* Notify user space helper about the secure firmware load. */ + ret = kobject_uevent_env(&securefw->kobj, KOBJ_ADD, env); + if (ret != 0) { + MVX_LOG_PRINT(&mvx_log_if, MVX_LOG_WARNING, + "Failed to send secure firmware uevent. ret=%d.", + ret); + goto put_kobject; + } + + return securefw; + +put_kobject: + kobject_put(&securefw->kobj); + devm_kfree(secure->dev, securefw); + + return ERR_PTR(ret); +} + +int mvx_secure_request_firmware_nowait(struct mvx_secure *secure, + const char *name, unsigned int ncores, + void *arg, mvx_secure_firmware_done done) +{ + struct mvx_secure_firmware_priv *securefw; + + MVX_LOG_PRINT(&mvx_log_if, MVX_LOG_INFO, + "Request secure firmware load nowait. firmware=%s.enc.", + name); + + securefw = secure_firmware_create(secure, name, ncores, arg, done); + if (IS_ERR(securefw)) + return PTR_ERR(securefw); + + INIT_WORK(&securefw->work, secure_firmware_wait); + queue_work(secure->workqueue, &securefw->work); + + return 0; +} + +void mvx_secure_release_firmware(struct mvx_secure_firmware *securefw) +{ + struct mvx_secure_firmware_priv *sfw = + container_of(securefw, struct mvx_secure_firmware_priv, fw); + + kobject_put(&sfw->kobj); +} + +/**************************************************************************** + * Secure memory + ****************************************************************************/ + +/** + * secure_mem_release() - Release the secure memory object. + */ +static void secure_mem_release(struct kobject *kobj) +{ + struct mvx_secure_mem *smem = + container_of(kobj, struct mvx_secure_mem, kobj); + + devm_kfree(smem->dev, smem); +} + +/** + * memory_store() - Memory sysfs store function. + * + * Store values from memory descriptor, get the DMA handle and wake up any + * waiting process. + */ +static ssize_t memory_store(struct kobject *kobj, struct kobj_attribute *attr, + const char *buf, size_t size) +{ + struct mvx_secure_mem *smem = + container_of(kobj, struct mvx_secure_mem, kobj); + const int32_t *fd = (const int32_t *)buf; + + MVX_LOG_PRINT(&mvx_log_if, MVX_LOG_INFO, + "Secure memory allocated. fd=%d.", *fd); + + smem->dmabuf = dma_buf_get(*fd); + if (IS_ERR_OR_NULL(smem->dmabuf)) + MVX_LOG_PRINT(&mvx_log_if, MVX_LOG_WARNING, + "Failed to get DMA buffer."); + + wake_up_interruptible(&smem->wait_queue); + + return size; +} + +struct dma_buf *mvx_secure_mem_alloc(struct mvx_secure *secure, size_t size) +{ + static struct kobj_attribute attr = __ATTR_WO(memory); + static struct attribute *attrs[] = { &attr.attr, NULL }; + static const struct kobj_type secure_mem_ktype = { + .release = secure_mem_release, .sysfs_ops = &kobj_sysfs_ops, + // .default_attrs = attrs + }; + struct mvx_secure_mem *smem; + char size_env[32]; + char *env[3] = { "TYPE=memory", size_env, NULL }; + struct dma_buf *dmabuf = ERR_PTR(-EINVAL); + size_t n; + int ret; + + MVX_LOG_PRINT(&mvx_log_if, MVX_LOG_INFO, + "Request secure memory. size=%zu.", size); + + n = snprintf(size_env, sizeof(size_env), "SIZE=%zu", size); + if (n >= sizeof(size_env)) + return ERR_PTR(-EINVAL); + + smem = devm_kzalloc(secure->dev, sizeof(*smem), GFP_KERNEL); + if (smem == NULL) + return ERR_PTR(-ENOMEM); + + smem->dev = secure->dev; + smem->kobj.kset = secure->kset; + init_waitqueue_head(&smem->wait_queue); + + /* Create kobject that the user space helper can interact with. */ + ret = kobject_init_and_add(&smem->kobj, &secure_mem_ktype, NULL, "%p", + &smem->kobj); + if (ret != 0) + goto put_kobject; + + /* Notify user space helper about the secure firmware load. */ + ret = kobject_uevent_env(&smem->kobj, KOBJ_ADD, env); + if (ret != 0) { + MVX_LOG_PRINT(&mvx_log_if, MVX_LOG_WARNING, + "Failed to send secure memory uevent. ret=%d.", + ret); + goto put_kobject; + } + + ret = wait_event_interruptible_timeout( + smem->wait_queue, smem->dmabuf != NULL, msecs_to_jiffies(1000)); + if (ret == 0) { + MVX_LOG_PRINT(&mvx_log_if, MVX_LOG_WARNING, + "Secure memory allocation timed out."); + goto put_kobject; + } + + dmabuf = smem->dmabuf; + +put_kobject: + kobject_put(&smem->kobj); + + return dmabuf; +} diff --git a/drivers/media/platform/canaan/vpu/mvx_secure.h b/drivers/media/platform/canaan/vpu/mvx_secure.h new file mode 100644 index 0000000000000..32d07a9c3bddc --- /dev/null +++ b/drivers/media/platform/canaan/vpu/mvx_secure.h @@ -0,0 +1,130 @@ +/* SPDX-License-Identifier: GPL-2.0-only + * The confidential and proprietary information contained in this file may + * only be used by a person authorised under and to the extent permitted + * by a subsisting licensing agreement from Arm Technology (China) Co., Ltd. + * + * (C) COPYRIGHT 2021-2021 Arm Technology (China) Co., Ltd. + * ALL RIGHTS RESERVED + * + * This entire notice must be reproduced on all copies of this file + * and copies of this file may only be made by a person if such person is + * permitted to do so under the terms of a subsisting license agreement + * from Arm Technology (China) Co., Ltd. + * + * 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. + * + */ + +#ifndef _MVX_SECURE_H_ +#define _MVX_SECURE_H_ + +/**************************************************************************** + * Includes + ****************************************************************************/ + +#include + +/**************************************************************************** + * Types + ****************************************************************************/ + +struct device; +struct dma_buf; +struct kset; +struct mvx_secure_firmware; +struct workqueue_struct; + +/** + * struct mvx_secure - Secure video. + * @dev: Pointer to device. + * @kset: Kset that allows uevents to be sent. + * @workqueue: Work queue used to wait for firmware load. + */ +struct mvx_secure { + struct device *dev; + struct kset *kset; + struct workqueue_struct *workqueue; +}; + +/** + * typedef firmware_done - Firmware load callback. + */ +typedef void (*mvx_secure_firmware_done)(struct mvx_secure_firmware *, + void *arg); + +/** + * struct mvx_secure_firmware - Secure firmware. + * @dmabuf: Pointer to DMA buffer. + * @l2pages: Array of L2 pages. One per core. + * @ncores: Maximum number of cores. + * @major: Firmware protocol major version. + * @minor: Firmware protocol minor version. + */ +struct mvx_secure_firmware { + struct dma_buf *dmabuf; + phys_addr_t l2pages; + unsigned int ncores; + struct { + unsigned int major; + unsigned int minor; + } protocol; +}; + +/**************************************************************************** + * Exported functions + ****************************************************************************/ + +/** + * mvx_secure_construct() - Construct the secure object. + * @secure: Pointer to secure object. + * @dev: Pointer to device. + * + * Return: 0 on success, else error code. + */ +int mvx_secure_construct(struct mvx_secure *secure, struct device *dev); + +/** + * mvx_secure_destruct() - Destruct the secure object. + * @secure: Pointer to secure object. + */ +void mvx_secure_destruct(struct mvx_secure *secure); + +/** + * mvx_secure_request_firmware_nowait() - Request secure firmware. + * @secure: Pointer to secure object. + * @name: Name of firmware binary. + * @ncores: Number of cores to setup. + * @arg: Callback argument. + * @done: Done callback. + * + * Return: 0 on success, else error code. + */ +int mvx_secure_request_firmware_nowait(struct mvx_secure *secure, + const char *name, unsigned int ncores, + void *arg, + mvx_secure_firmware_done done); + +/** + * mvx_secure_release_firmware() - Release secure firmware. + * @securefw: Pointer to secure firmware. + */ +void mvx_secure_release_firmware(struct mvx_secure_firmware *securefw); + +/** + * mvx_secure_mem_alloc() - Secure memory allocation. + * @secure: Pointer to secure object. + * @size: Size in bytes to allocate. + * + * Return: Valid pointer on success, else ERR_PTR. + */ +struct dma_buf *mvx_secure_mem_alloc(struct mvx_secure *secure, size_t size); + +#endif /* _MVX_SECURE_H_ */ diff --git a/drivers/media/platform/canaan/vpu/mvx_seq.c b/drivers/media/platform/canaan/vpu/mvx_seq.c new file mode 100644 index 0000000000000..c11dd246ce8e9 --- /dev/null +++ b/drivers/media/platform/canaan/vpu/mvx_seq.c @@ -0,0 +1,87 @@ +// SPDX-License-Identifier: GPL-2.0-only +/* + * The confidential and proprietary information contained in this file may + * only be used by a person authorised under and to the extent permitted + * by a subsisting licensing agreement from Arm Technology (China) Co., Ltd. + * + * (C) COPYRIGHT 2021-2021 Arm Technology (China) Co., Ltd. + * ALL RIGHTS RESERVED + * + * This entire notice must be reproduced on all copies of this file + * and copies of this file may only be made by a person if such person is + * permitted to do so under the terms of a subsisting license agreement + * from Arm Technology (China) Co., Ltd. + * + * 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. + * + */ + +#include +#include +#include "mvx_seq.h" + +struct mvx_seq_hash_it *mvx_seq_hash_start(struct device *dev, + struct hlist_head *head, size_t size, + loff_t pos) +{ + struct mvx_seq_hash_it *it; + size_t i; + + it = devm_kzalloc(dev, sizeof(*it), GFP_KERNEL); + if (it == NULL) + return ERR_PTR(-ENOMEM); + + it->dev = dev; + for (i = 0; i < size; ++i) { + it->i = i; + hlist_for_each(it->node, &head[i]) { + if (pos-- == 0) + return it; + } + } + + devm_kfree(dev, it); + return NULL; +} + +struct mvx_seq_hash_it *mvx_seq_hash_next(void *v, struct hlist_head *head, + size_t size, loff_t *pos) +{ + struct mvx_seq_hash_it *it = v; + + ++*pos; + it->node = it->node->next; + + if (it->node != NULL) + return it; + + do { + ++it->i; + } while ((it->i < size) && hlist_empty(&head[it->i])); + + if (it->i == size) { + devm_kfree(it->dev, it); + return NULL; + } + + it->node = head[it->i].first; + return it; +} + +void mvx_seq_hash_stop(void *v) +{ + struct mvx_seq_hash_it *it = v; + + if (it == NULL) + return; + + devm_kfree(it->dev, it); +} diff --git a/drivers/media/platform/canaan/vpu/mvx_seq.h b/drivers/media/platform/canaan/vpu/mvx_seq.h new file mode 100644 index 0000000000000..39a28d6a061fe --- /dev/null +++ b/drivers/media/platform/canaan/vpu/mvx_seq.h @@ -0,0 +1,85 @@ +/* SPDX-License-Identifier: GPL-2.0-only + * The confidential and proprietary information contained in this file may + * only be used by a person authorised under and to the extent permitted + * by a subsisting licensing agreement from Arm Technology (China) Co., Ltd. + * + * (C) COPYRIGHT 2021-2021 Arm Technology (China) Co., Ltd. + * ALL RIGHTS RESERVED + * + * This entire notice must be reproduced on all copies of this file + * and copies of this file may only be made by a person if such person is + * permitted to do so under the terms of a subsisting license agreement + * from Arm Technology (China) Co., Ltd. + * + * 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. + * + */ + +#ifndef _MVX_SEQ_H_ +#define _MVX_SEQ_H_ + +/**************************************************************************** + * Defines + ****************************************************************************/ + +#define mvx_seq_printf(s, tag, ind, fmt, ...) \ + seq_printf(s, "%-*s%-*s: " fmt, (3 * (ind)), "", 30 - (3 * (ind)), \ + tag, ##__VA_ARGS__) + +/**************************************************************************** + * Types + ****************************************************************************/ + +/** + * struct mvx_seq_hash_it - Iterator over hash table. + */ +struct mvx_seq_hash_it { + struct hlist_node *node; + size_t i; + struct device *dev; +}; + +/** + * mvx_seq_hash_start() - Initialize iterator. + * @dev: Pointer to device. + * @head: Pointer to a head of a hash table. + * @size: Size of a hash table. + * @pos: Position to start. + * + * Iterator created by this function should be provided to + * mvx_seq_hash_start and mvx_seq_hash_stop as the first parameter. + * + * Return: Pointer to an iterator on success or ERR_PTR(). + */ +struct mvx_seq_hash_it *mvx_seq_hash_start(struct device *dev, + struct hlist_head *head, size_t size, + loff_t pos); + +/** + * mvx_seq_hash_next() - Move iterator to the next element. + * @v: Pointer to an iterator. + * @head: Pointer to a head of a hash table. + * @size: Size of a hash table. + * @pos: Position. + * + * Return: Iterator which points to a new element or NULL when the table + * is over. + */ +struct mvx_seq_hash_it *mvx_seq_hash_next(void *v, struct hlist_head *head, + size_t size, loff_t *pos); + +/** + * mvx_seq_hash_stop() - Close an iterator. + * @v: Pointer to an iterator. + */ +void mvx_seq_hash_stop(void *v); + +#endif /* _MVX_SEQ_H_ */ diff --git a/drivers/media/platform/canaan/vpu/mvx_session.c b/drivers/media/platform/canaan/vpu/mvx_session.c new file mode 100644 index 0000000000000..110b76d959359 --- /dev/null +++ b/drivers/media/platform/canaan/vpu/mvx_session.c @@ -0,0 +1,4946 @@ +// SPDX-License-Identifier: GPL-2.0-only +/* + * The confidential and proprietary information contained in this file may + * only be used by a person authorised under and to the extent permitted + * by a subsisting licensing agreement from Arm Technology (China) Co., Ltd. + * + * (C) COPYRIGHT 2021-2021 Arm Technology (China) Co., Ltd. + * ALL RIGHTS RESERVED + * + * This entire notice must be reproduced on all copies of this file + * and copies of this file may only be made by a person if such person is + * permitted to do so under the terms of a subsisting license agreement + * from Arm Technology (China) Co., Ltd. + * + * 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. + * + */ + +/**************************************************************************** + * Includes + ****************************************************************************/ + +#include +#include +#include +#include +#include +#include +#include +#include +#include "mvx-v4l2-controls.h" +#include "mvx_bitops.h" +#include "mvx_firmware.h" +#include "mvx_firmware_cache.h" +#include "mvx_session.h" +#include "mvx_seq.h" + +/**************************************************************************** + * Private variables + ****************************************************************************/ + +static int session_watchdog_timeout = 30000; +module_param(session_watchdog_timeout, int, 0660); + +static int fw_watchdog_timeout; +module_param(fw_watchdog_timeout, int, 0660); + +/**************************************************************************** + * Private functions + ****************************************************************************/ + +static void watchdog_start(struct mvx_session *session, unsigned int timeout_ms) +{ + int ret; + + if (session->error != 0) + return; + + MVX_SESSION_DEBUG(session, "Watchdog start. timeout_ms=%u.", + timeout_ms); + + ret = mod_timer(&session->watchdog_timer, + jiffies + msecs_to_jiffies(timeout_ms)); + if (ret != 0) { + MVX_SESSION_WARN(session, "Failed to start watchdog. ret=%d", + ret); + return; + } + + session->watchdog_count = 0; + + kref_get(&session->isession.kref); +} + +static void watchdog_stop(struct mvx_session *session) +{ + int ret; + + ret = del_timer_sync(&session->watchdog_timer); + + /* ret: 0=watchdog expired, 1=watchdog still running */ + MVX_SESSION_DEBUG(session, "Watchdog stop. ret=%d", ret); + + /* Decrement the kref if the watchdog was still running. */ + if (ret != 0) + kref_put(&session->isession.kref, session->isession.release); +} + +static void watchdog_update(struct mvx_session *session, + unsigned int timeout_ms) +{ + int ret; + + ret = mod_timer_pending(&session->watchdog_timer, + jiffies + msecs_to_jiffies(timeout_ms)); + + session->watchdog_count = 0; + + /* ret: 0=no restart, 1=restarted */ + MVX_SESSION_DEBUG(session, "Watchdog update. ret=%d, timeout_ms=%u.", + ret, timeout_ms); +} + +static bool is_fw_loaded(struct mvx_session *session) +{ + return (IS_ERR_OR_NULL(session->fw_bin) == false); +} + +static void print_debug(struct mvx_session *session) +{ + MVX_SESSION_INFO(session, "Print debug."); + + if (session->csession != NULL) + session->client_ops->print_debug(session->csession); + + if (is_fw_loaded(session)) + session->fw.ops.print_debug(&session->fw); +} + +static void send_event_error(struct mvx_session *session, long error) +{ + session->error = error; + wake_up(&session->waitq); + session->event(session, MVX_SESSION_EVENT_ERROR, + (void *)session->error); +} + +static void session_unregister(struct mvx_session *session) +{ + if (!IS_ERR_OR_NULL(session->csession)) { + session->client_ops->unregister_session(session->csession); + session->csession = NULL; + } +} + +static void release_fw_bin(struct mvx_session *session) +{ + if (is_fw_loaded(session) != false) { + MVX_SESSION_INFO(session, "Release firmware binary."); + + mvx_fw_destruct(&session->fw); + mvx_fw_cache_put(session->cache, session->fw_bin); + session->fw_bin = NULL; + } + + watchdog_stop(session); + session_unregister(session); +} + +static struct mvx_session *kref_to_session(struct kref *kref) +{ + return container_of(kref, struct mvx_session, isession.kref); +} + +static void session_destructor(struct kref *kref) +{ + struct mvx_session *session = kref_to_session(kref); + + session->destructor(session); +} + +static const char *state_to_string(enum mvx_fw_state state) +{ + switch (state) { + case MVX_FW_STATE_STOPPED: + return "Stopped"; + case MVX_FW_STATE_RUNNING: + return "Running"; + default: + return "Unknown"; + } +} + +static enum mvx_direction get_bitstream_port(struct mvx_session *session) +{ + if (mvx_is_bitstream(session->port[MVX_DIR_INPUT].format) && + mvx_is_frame(session->port[MVX_DIR_OUTPUT].format)) + return MVX_DIR_INPUT; + else if (mvx_is_frame(session->port[MVX_DIR_INPUT].format) && + mvx_is_bitstream(session->port[MVX_DIR_OUTPUT].format)) + return MVX_DIR_OUTPUT; + + return MVX_DIR_MAX; +} + +static bool is_stream_on(struct mvx_session *session) +{ + return session->port[MVX_DIR_INPUT].stream_on && + session->port[MVX_DIR_OUTPUT].stream_on; +} + +/** + * wait_pending() - Wait for procedure to finish. + * + * Wait for the number of pending firmware messages to reach 0, or for an error + * to happen. + * + * Return: 0 on success, else error code. + */ +static int wait_pending(struct mvx_session *session) +{ + int ret = 0; + + while (is_fw_loaded(session) != false && session->fw.msg_pending > 0 && + session->error == 0) { + mutex_unlock(session->isession.mutex); + + ret = wait_event_timeout(session->waitq, + is_fw_loaded(session) == false || + session->fw.msg_pending == 0 || + session->error != 0, + msecs_to_jiffies(10000)); + + if (ret < 0) + goto lock_mutex; + + if (ret == 0) { + send_event_error(session, -ETIME); + ret = -ETIME; + goto lock_mutex; + } + + mutex_lock(session->isession.mutex); + } + + return session->error; + +lock_mutex: + mutex_lock(session->isession.mutex); + + if (ret < 0) + MVX_SESSION_WARN( + session, + "Wait pending returned error. ret=%d, error=%d, msg_pending=%d.", + ret, session->error, session->fw.msg_pending); + + return ret; +} + +static int send_irq(struct mvx_session *session) +{ + if (IS_ERR_OR_NULL(session->csession)) + return -EINVAL; + + return session->client_ops->send_irq(session->csession); +} + +/** + * switch_in() - Request the client device to switch in the session. + * + * Return: 0 on success, else error code. + */ +static int switch_in(struct mvx_session *session) +{ + int ret; + + session->idle_count = 0; + + if (session->switched_in != false) + return 0; + + MVX_SESSION_INFO(session, "Switch in."); + + ret = session->client_ops->switch_in(session->csession); + if (ret != 0) { + MVX_SESSION_WARN(session, "Failed to switch in session."); + send_event_error(session, ret); + return ret; + } + + session->switched_in = true; + + return 0; +} + +/** + * fw_send_msg() - Send firmware message and signal IRQ. + * + * Return: 0 on success, else error code. + */ +static int fw_send_msg(struct mvx_session *session, struct mvx_fw_msg *msg) +{ + int ret; + + if (session->error != 0) + return session->error; + + ret = session->fw.ops.put_message(&session->fw, msg); + if (ret != 0) { + MVX_SESSION_WARN(session, "Failed to queue firmware message."); + goto send_error; + } + + ret = send_irq(session); + if (ret != 0) { + MVX_SESSION_WARN(session, "Failed to send irq."); + goto send_error; + } + + return switch_in(session); + +send_error: + send_event_error(session, ret); + return ret; +} + +static int fw_send_msg_simple(struct mvx_session *session, + enum mvx_fw_code code, const char *str) +{ + struct mvx_fw_msg msg = { .code = code }; + + MVX_SESSION_INFO(session, "Firmware req: %s.", str); + + return fw_send_msg(session, &msg); +} + +static int fw_flush(struct mvx_session *session, enum mvx_direction dir) +{ + struct mvx_fw_msg msg = { .code = MVX_FW_CODE_FLUSH, .flush.dir = dir }; + int ret; + + MVX_SESSION_INFO(session, "Firmware req: Flush. dir=%d.", dir); + + ret = fw_send_msg(session, &msg); + if (ret != 0) + return ret; + + session->port[dir].is_flushing = true; + + return 0; +} + +static int fw_state_change(struct mvx_session *session, enum mvx_fw_state state) +{ + struct mvx_fw_msg msg = { .code = MVX_FW_CODE_STATE_CHANGE, + .state = state }; + int ret = 0; + + if (state != session->fw_state) { + MVX_SESSION_INFO( + session, + "Firmware req: State change. current=%d, new=%d.", + session->fw_state, state); + ret = fw_send_msg(session, &msg); + } + + return ret; +} + +static int fw_job(struct mvx_session *session, unsigned int frames) +{ + struct mvx_fw_msg msg = { .code = MVX_FW_CODE_JOB, + .job.cores = session->isession.ncores, + .job.frames = frames }; + + MVX_SESSION_INFO(session, "Firmware req: Job. frames=%u.", frames); + + return fw_send_msg(session, &msg); +} + +static int fw_switch_out(struct mvx_session *session) +{ + unsigned int idle_count = session->idle_count; + int ret; + + ret = fw_send_msg_simple(session, MVX_FW_CODE_SWITCH_OUT, "Switch out"); + + /* + * Restore idle count. Switch out is the only message where we do not + * want to reset the idle counter. + */ + session->idle_count = idle_count; + + return ret; +} + +static int fw_ping(struct mvx_session *session) +{ + return fw_send_msg_simple(session, MVX_FW_CODE_PING, "Ping"); +} + +static int fw_dump(struct mvx_session *session) +{ + return fw_send_msg_simple(session, MVX_FW_CODE_DUMP, "Dump"); +} + +static int fw_set_debug(struct mvx_session *session, uint32_t debug_level) +{ + struct mvx_fw_msg msg = { .code = MVX_FW_CODE_DEBUG, + .arg = debug_level }; + + MVX_SESSION_INFO(session, "Firmware req: Set debug. debug_level=%d.", + debug_level); + + return fw_send_msg(session, &msg); +} + +static int fw_set_option(struct mvx_session *session, + struct mvx_fw_set_option *option) +{ + struct mvx_fw_msg msg = { .code = MVX_FW_CODE_SET_OPTION, + .set_option = *option }; + + MVX_SESSION_INFO(session, "Firmware req: Set option. code=%d.", + option->code); + + return fw_send_msg(session, &msg); +} + +static bool is_encoder(struct mvx_session *session) +{ + return get_bitstream_port(session) == MVX_DIR_OUTPUT; +} + +static int fw_eos(struct mvx_session *session) +{ + struct mvx_fw_msg msg = { .code = MVX_FW_CODE_EOS, + .eos_is_frame = is_encoder(session) ? true : + false }; + int ret; + + MVX_SESSION_INFO(session, "Firmware req: Buffer EOS."); + + ret = fw_send_msg(session, &msg); + if (ret != 0) + return ret; + + session->port[MVX_DIR_INPUT].flushed = false; + + return 0; +} + +static int fw_set_epr_qp(struct mvx_session *session, int code, + struct mvx_buffer_param_qp qp) +{ + struct mvx_fw_set_option option; + int ret; + + if (qp.qp < 0) + return -EINVAL; + + if (qp.qp == 0) + return 0; + + option.code = code; + option.epr_qp = qp; + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN(session, + "Failed to set EPR QP. code=%d, ret=%d.", code, + ret); + return ret; + } + + return 0; +} +static int fw_set_qp(struct mvx_session *session, int code, int qp) +{ + struct mvx_fw_set_option option; + int ret; + + if (qp < 0) + return -EINVAL; + + if (qp == 0) + return 0; + + option.code = code; + option.qp = qp; + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN(session, "Failed to set QP. code=%d, ret=%d.", + code, ret); + return ret; + } + + return 0; +} + +static int fw_set_osd_config(struct mvx_session *session, int code, + struct mvx_osd_config *osd) +{ + struct mvx_fw_set_option option; + int ret; + + option.code = code; + option.osd_config = *osd; + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN(session, + "Failed to set OSD config. code=%d, ret=%d.", + code, ret); + return ret; + } + + return 0; +} + +static int fw_set_roi_regions(struct mvx_session *session, int code, + struct mvx_roi_config *roi) +{ + struct mvx_fw_set_option option; + int ret; + + if (roi->num_roi < 0) + return -EINVAL; + + if (roi->num_roi == 0) + return 0; + + option.code = code; + option.roi_config = *roi; + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN(session, "Failed to set ROI. code=%d, ret=%d.", + code, ret); + return ret; + } + + return 0; +} + +static int fw_set_chr_cfg(struct mvx_session *session, int code, + struct mvx_chr_cfg *chr) +{ + struct mvx_fw_set_option option; + int ret; + + if (chr->num_chr < 0) + return -EINVAL; + + if (chr->num_chr == 0) + return 0; + + option.code = code; + option.chr_cfg = *chr; + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN(session, + "Failed to set CHR CFG. code=%d, ret=%d.", + code, ret); + return ret; + } + + return 0; +} + +static int fw_set_enc_stats(struct mvx_session *session, int code, + struct mvx_enc_stats *stats) +{ + struct mvx_fw_set_option option; + int ret; + + if (stats->flags == 0) + return 0; + + option.code = code; + option.enc_stats = *stats; + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN( + session, + "Failed to set enc stats param. code=%d, ret=%d.", code, + ret); + return ret; + } + + return 0; +} + +static int fw_common_setup(struct mvx_session *session) +{ + int ret = 0; + struct mvx_fw_set_option option; + + if (session->nalu_format != MVX_NALU_FORMAT_UNDEFINED && + session->port[MVX_DIR_INPUT].format != MVX_FORMAT_AV1) { + option.code = MVX_FW_SET_NALU_FORMAT; + option.nalu_format = session->nalu_format; + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN(session, "Failed to set NALU format."); + return ret; + } + } + + if (session->stream_escaping != MVX_TRI_UNSET) { + option.code = MVX_FW_SET_STREAM_ESCAPING; + option.stream_escaping = session->stream_escaping; + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN(session, + "Failed to set stream escaping."); + return ret; + } + } + + if (session->profiling != 0) { + option.code = MVX_FW_SET_PROFILING; + option.profiling = session->profiling; + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN(session, + "Failed to enable FW profiling."); + return ret; + } + } + return ret; +} + +/* JPEG standard, Annex K */ +static const uint8_t qtbl_chroma_ref[MVX_FW_QUANT_LEN] = { + 17, 18, 24, 47, 99, 99, 99, 99, 18, 21, 26, 66, 99, 99, 99, 99, + 24, 26, 56, 99, 99, 99, 99, 99, 47, 66, 99, 99, 99, 99, 99, 99, + 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, + 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99 +}; + +static const uint8_t qtbl_luma_ref[MVX_FW_QUANT_LEN] = { + 16, 11, 10, 16, 24, 40, 51, 61, 12, 12, 14, 19, 26, 58, 60, 55, + 14, 13, 16, 24, 40, 57, 69, 56, 14, 17, 22, 29, 51, 87, 80, 62, + 18, 22, 37, 56, 68, 109, 103, 77, 24, 35, 55, 64, 81, 104, 113, 92, + 49, 64, 78, 87, 103, 121, 120, 101, 72, 92, 95, 98, 112, 100, 103, 99 +}; + +void generate_quant_tbl(int quality, const uint8_t qtbl_ref[MVX_FW_QUANT_LEN], + uint8_t qtbl[MVX_FW_QUANT_LEN]) +{ + int i; + int q; + + q = (quality < 50) ? (5000 / quality) : (200 - 2 * quality); + + for (i = 0; i < MVX_FW_QUANT_LEN; ++i) { + qtbl[i] = ((qtbl_ref[i] * q) + 50) / 100; + qtbl[i] = min_t(int, qtbl[i], 255); + qtbl[i] = max_t(int, qtbl[i], 1); + } +} + +static int +generate_standards_yuv2rgb_coef(enum mvx_yuv_to_rgb_mode mode, + struct mvx_color_conv_coef *color_conv_coef) +{ + static struct mvx_color_conv_coef color_standards[] = { + { { { 4769, 4769, 4769 }, + { 0, -1605, 8263 }, + { 6537, -3330, 0 } }, + { 16, 128, 128 } }, + { { { 4096, 4096, 4096 }, + { 0, -1410, 7258 }, + { 5743, -2925, 0 } }, + { 0, 128, 128 } }, + { { { 4769, 4769, 4769 }, + { 0, -873, 8652 }, + { 7343, -2183, 0 } }, + { 16, 128, 128 } }, + { { { 4096, 4096, 4096 }, + { 0, -767, 7601 }, + { 6450, -1917, 0 } }, + { 0, 128, 128 } }, + { { { 4769, 4769, 4769 }, + { 0, -767, 8773 }, + { 6876, -2664, 0 } }, + { 16, 128, 128 } }, + { { { 4096, 4096, 4096 }, + { 0, -674, 7706 }, + { 6040, -2340, 0 } }, + { 0, 128, 128 } }, + }; + + if (mode < MVX_YUV_TO_RGB_MODE_BT601_LIMT || + mode >= MVX_YUV_TO_RGB_MODE_MAX) { + mode = MVX_YUV_TO_RGB_MODE_BT601_LIMT; + //return -EINVAL; + } + + memcpy(color_conv_coef, &color_standards[mode], + sizeof(struct mvx_color_conv_coef)); + + MVX_LOG_PRINT( + &mvx_log_if, MVX_LOG_DEBUG, + "%s.mode indx=%d 3x3=[%d %d %d, %d %d %d,%d %d %d],offset=[%d %d %d]", __func__, + mode, color_conv_coef->coef[0][0], color_conv_coef->coef[0][1], + color_conv_coef->coef[0][2], color_conv_coef->coef[1][0], + color_conv_coef->coef[1][1], color_conv_coef->coef[1][2], + color_conv_coef->coef[2][0], color_conv_coef->coef[2][1], + color_conv_coef->coef[2][2], color_conv_coef->offset[0], + color_conv_coef->offset[1], color_conv_coef->offset[2]); + + return 0; +} + +static int generate_standards_rgb2yuv_coef( + enum mvx_rgb_to_yuv_mode mode, + struct mvx_rgb2yuv_color_conv_coef *color_conv_coef) +{ + static struct mvx_rgb2yuv_color_conv_coef color_standards[] = { + { { 1052, 2065, 401, -607, -1192, 1799, 1799, -1506, -293 }, + { 16, 235 }, + { 16, 240 }, + { 0, 255 } }, + { { 1225, 2404, 467, -691, -1357, 2048, 2048, -1715, -333 }, + { 0, 255 }, + { 0, 255 }, + { 0, 255 } }, + { { 748, 2516, 254, -412, -1387, 1799, 1799, -1634, -165 }, + { 16, 235 }, + { 16, 240 }, + { 0, 255 } }, + { { 871, 2929, 296, -469, -1579, 2048, 2048, -1860, -188 }, + { 0, 255 }, + { 0, 255 }, + { 0, 255 } }, + { { 924, 2385, 209, -502, -1297, 1799, 1799, -1654, -145 }, + { 16, 235 }, + { 16, 240 }, + { 0, 255 } }, + { { 1076, 2777, 243, -572, -1476, 2048, 2048, -1883, -165 }, + { 0, 255 }, + { 0, 255 }, + { 0, 255 } }, + }; + + if (mode < MVX_RGB_TO_YUV_MODE_BT601_STUDIO || + mode >= MVX_RGB_TO_YUV_MODE_MAX) { + mode = MVX_RGB_TO_YUV_MODE_BT601_STUDIO; + } + + memcpy(color_conv_coef, &color_standards[mode], + sizeof(struct mvx_rgb2yuv_color_conv_coef)); + + return 0; +} + +static int fw_encoder_setup(struct mvx_session *session) +{ + int ret; + enum mvx_format codec; + struct mvx_fw_set_option option; + enum mvx_direction dir; + + dir = get_bitstream_port(session); + codec = session->port[dir].format; + + MVX_SESSION_DEBUG(session, "%s>encoder settings:\n", __func__); + MVX_SESSION_DEBUG(session, "codec %d\n", codec); + MVX_SESSION_DEBUG(session, "frame_rate 0x%lx\n", session->frame_rate); + MVX_SESSION_DEBUG(session, "target_bitrate %d\n", session->target_bitrate); + MVX_SESSION_DEBUG(session, "maximum_bitrate %d\n", session->maximum_bitrate); + MVX_SESSION_DEBUG(session, "rc_enabled %d\n", session->rc_enabled); + MVX_SESSION_DEBUG(session, "rc_type %d\n", session->rc_type); + MVX_SESSION_DEBUG(session, "profile %d\n", session->profile[codec]); + MVX_SESSION_DEBUG(session, "level %d\n", session->level[codec]); + MVX_SESSION_DEBUG(session, "nalu_format %d\n", session->nalu_format); + MVX_SESSION_DEBUG(session, "stream_escaping %d\n", session->stream_escaping); + MVX_SESSION_DEBUG(session, "ignore_stream_headers %d\n", session->ignore_stream_headers); + MVX_SESSION_DEBUG(session, "frame_reordering %d\n", session->frame_reordering); + MVX_SESSION_DEBUG(session, "intbuf_size %ld\n", session->intbuf_size); + MVX_SESSION_DEBUG(session, "p_frames %d\n", session->p_frames); + MVX_SESSION_DEBUG(session, "b_frames %d\n", session->b_frames); + MVX_SESSION_DEBUG(session, "gop_type %d\n", session->gop_type); + MVX_SESSION_DEBUG(session, "cyclic_intra_refresh_mb %d\n", + session->cyclic_intra_refresh_mb); + MVX_SESSION_DEBUG(session, "constr_ipred %d\n", session->constr_ipred); + MVX_SESSION_DEBUG(session, "entropy_sync %d\n", session->entropy_sync); + MVX_SESSION_DEBUG(session, "temporal_mvp %d\n", session->temporal_mvp); + MVX_SESSION_DEBUG(session, "tile_rows %d\n", session->tile_rows); + MVX_SESSION_DEBUG(session, "tile_cols %d\n", session->tile_cols); + MVX_SESSION_DEBUG(session, "min_luma_cb_size %d\n", session->min_luma_cb_size); + MVX_SESSION_DEBUG(session, "mb_mask %d\n", session->mb_mask); + MVX_SESSION_DEBUG(session, "entropy_mode %d\n", session->entropy_mode); + MVX_SESSION_DEBUG(session, "multi_slice_mode %d\n", session->multi_slice_mode); + MVX_SESSION_DEBUG(session, "multi_slice_max_mb %d\n", session->multi_slice_max_mb); + MVX_SESSION_DEBUG(session, "vp9_prob_update %d\n", session->vp9_prob_update); + MVX_SESSION_DEBUG(session, "mv_h_search_range %d\n", session->mv_h_search_range); + MVX_SESSION_DEBUG(session, "mv_v_search_range %d\n", session->mv_v_search_range); + MVX_SESSION_DEBUG(session, "bitdepth_chroma %d\n", session->bitdepth_chroma); + MVX_SESSION_DEBUG(session, "bitdepth_luma %d\n", session->bitdepth_luma); + MVX_SESSION_DEBUG(session, "force_chroma_format %d\n", session->force_chroma_format); + MVX_SESSION_DEBUG(session, "rgb_to_yuv %d\n", session->rgb_to_yuv); + MVX_SESSION_DEBUG(session, "band_limit %d\n", session->band_limit); + MVX_SESSION_DEBUG(session, "cabac_init_idc %d\n", session->cabac_init_idc); + MVX_SESSION_DEBUG(session, "qp %d, %d, %d, %d, %d\n", session->qp[codec].i_frame, + session->qp[codec].p_frame, session->qp[codec].b_frame, + session->qp[codec].min, session->qp[codec].max); + MVX_SESSION_DEBUG(session, "resync_interval %d\n", session->resync_interval); + MVX_SESSION_DEBUG(session, "jpeg_quality %d\n", session->jpeg_quality); + MVX_SESSION_DEBUG(session, "color_desc %d, %d, %d, %d, %d, %d, %d, %d, %d, %d, %d\n", + session->color_desc.flags, session->color_desc.range, + session->color_desc.primaries, session->color_desc.transfer, + session->color_desc.matrix, + session->color_desc.video_format, + session->color_desc.aspect_ratio_idc, + session->color_desc.sar_width, + session->color_desc.sar_height, + session->color_desc.num_units_in_tick, + session->color_desc.time_scale); + MVX_SESSION_DEBUG(session, "crop_left %d\n", session->crop_left); + MVX_SESSION_DEBUG(session, "crop_right %d\n", session->crop_right); + MVX_SESSION_DEBUG(session, "crop_top %d\n", session->crop_top); + MVX_SESSION_DEBUG(session, "crop_bottom %d\n", session->crop_bottom); + MVX_SESSION_DEBUG(session, "sei_userdata %d\n", session->sei_userdata.flags); + MVX_SESSION_DEBUG(session, "nHRDBufsize %d\n", session->nHRDBufsize); + MVX_SESSION_DEBUG(session, "dsl_frame %d, %d\n", + session->dsl_frame.width, session->dsl_frame.height); + MVX_SESSION_DEBUG(session, "dsl_ratio %d, %d\n", + session->dsl_ratio.hor, session->dsl_ratio.ver); + MVX_SESSION_DEBUG(session, "mvx_ltr %d, %d\n", + session->mvx_ltr.mode, session->mvx_ltr.period); + MVX_SESSION_DEBUG(session, "dsl_pos_mode %d\n", session->dsl_pos_mode); + MVX_SESSION_DEBUG(session, "mini_frame_height %d\n", session->mini_frame_height); + MVX_SESSION_DEBUG(session, "init_qpi %d\n", session->init_qpi); + MVX_SESSION_DEBUG(session, "init_qpp %d\n", session->init_qpp); + MVX_SESSION_DEBUG(session, "sao_luma %d\n", session->sao_luma); + MVX_SESSION_DEBUG(session, "sao_chroma %d\n", session->sao_chroma); + MVX_SESSION_DEBUG(session, "qp_delta_i_p %d\n", session->qp_delta_i_p); + MVX_SESSION_DEBUG(session, "ref_rb_en %d\n", session->ref_rb_en); + MVX_SESSION_DEBUG(session, "qpmap_qp_clip_top %d\n", session->qpmap_qp_clip_top); + MVX_SESSION_DEBUG(session, "qpmap_qp_clip_bot %d\n", session->qpmap_qp_clip_bot); + MVX_SESSION_DEBUG(session, "rc_qp_clip_top %d\n", session->rc_qp_clip_top); + MVX_SESSION_DEBUG(session, "rc_qp_clip_bot %d\n", session->rc_qp_clip_bot); + MVX_SESSION_DEBUG(session, "max_qp_i %d\n", session->max_qp_i); + MVX_SESSION_DEBUG(session, "min_qp_i %d\n", session->min_qp_i); + MVX_SESSION_DEBUG(session, "profiling %d\n", session->profiling); + MVX_SESSION_DEBUG(session, "visible_width %d\n", session->visible_width); + MVX_SESSION_DEBUG(session, "visible_height %d\n", session->visible_height); + MVX_SESSION_DEBUG(session, "rc_bit_i_mode %d\n", session->rc_bit_i_mode); + MVX_SESSION_DEBUG(session, "rc_bit_i_ratio %d\n", session->rc_bit_i_ratio); + MVX_SESSION_DEBUG(session, "inter_med_buf_size %d\n", session->inter_med_buf_size); + MVX_SESSION_DEBUG(session, "svct3_level1_period %d\n", session->svct3_level1_period); + MVX_SESSION_DEBUG(session, "reset_gop_pframes %d\n", session->reset_gop_pframes); + MVX_SESSION_DEBUG(session, "reset_ltr_period %d\n", session->reset_ltr_period); + MVX_SESSION_DEBUG(session, "fixedqp %d\n", session->fixedqp); + MVX_SESSION_DEBUG(session, "gdr_number %d\n", session->gdr_number); + MVX_SESSION_DEBUG(session, "gdr_period %d\n", session->gdr_period); + MVX_SESSION_DEBUG(session, "multi_sps_pps %d\n", session->multi_sps_pps); + MVX_SESSION_DEBUG(session, "enable_visual %d\n", session->enable_visual); + MVX_SESSION_DEBUG(session, "scd_enable %d\n", session->scd_enable); + MVX_SESSION_DEBUG(session, "scd_percent %d\n", session->scd_percent); + MVX_SESSION_DEBUG(session, "scd_threshold %d\n", session->scd_threshold); + MVX_SESSION_DEBUG(session, "aq_ssim_en %d\n", session->aq_ssim_en); + MVX_SESSION_DEBUG(session, "aq_neg_ratio %d\n", session->aq_neg_ratio); + MVX_SESSION_DEBUG(session, "aq_pos_ratio %d\n", session->aq_pos_ratio); + MVX_SESSION_DEBUG(session, "aq_qpdelta_lmt %d\n", session->aq_qpdelta_lmt); + MVX_SESSION_DEBUG(session, "aq_init_frm_avg_svar %d\n", session->aq_init_frm_avg_svar); + MVX_SESSION_DEBUG(session, "adaptive_intra_block %d\n", session->adaptive_intra_block); + MVX_SESSION_DEBUG(session, "seamless_mode %d, w %d, h %d\n", + session->seamless_target.seamless_mode, + session->seamless_target.target_width, + session->seamless_target.target_height); + MVX_SESSION_DEBUG(session, "color_conv_mode %d\n", session->color_conv_mode); + MVX_SESSION_DEBUG(session, "use_cust_rgb_to_yuv_mode %d\n", + session->use_cust_rgb_to_yuv_mode); + MVX_SESSION_DEBUG(session, "use_cust_color_conv_coef %d\n", + session->use_cust_color_conv_coef); + MVX_SESSION_DEBUG(session, "forced_uv_value %d\n", session->forced_uv_value); + MVX_SESSION_DEBUG(session, "dsl_interp_mode %d\n", session->dsl_interp_mode); + MVX_SESSION_DEBUG(session, "disabled_features %d\n", session->disabled_features); + MVX_SESSION_DEBUG(session, "change_pos %d\n", session->change_pos); + MVX_SESSION_DEBUG(session, "enc_src_crop.crop_en %d\n", session->enc_src_crop.crop_en); + + if (session->profile[codec] != MVX_PROFILE_NONE) { + option.code = MVX_FW_SET_PROFILE_LEVEL; + option.profile_level.profile = session->profile[codec]; + option.profile_level.level = session->level[codec]; + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN(session, + "Failed to set profile/level."); + return ret; + } + } + + if (codec != MVX_FORMAT_JPEG) { + if (session->rc_type) { + option.code = MVX_FW_SET_RATE_CONTROL; + option.rate_control.target_bitrate = + session->rc_type ? session->target_bitrate : 0; + option.rate_control.rate_control_mode = + session->rc_type; + if (session->rc_type == + MVX_OPT_RATE_CONTROL_MODE_C_VARIABLE) { + option.rate_control.maximum_bitrate = + session->maximum_bitrate; + } + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN( + session, + "Failed to put target bitrate."); + return ret; + } + } + + option.code = MVX_FW_SET_FRAME_RATE; + option.frame_rate = session->frame_rate; + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN(session, "Failed to put frame rate."); + return ret; + } + + if (session->rc_bit_i_mode != 0) { + option.code = MVX_FW_SET_RC_BIT_I_MODE; + option.rc_bit_i_mode = session->rc_bit_i_mode; + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN( + session, + "Failed to put rc bit i mode."); + return ret; + } + } + if (session->rc_bit_i_ratio != 0) { + option.code = MVX_FW_SET_RC_BIT_I_RATIO; + option.rc_bit_i_ratio = session->rc_bit_i_ratio; + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN( + session, + "Failed to put rc bit i ratio."); + return ret; + } + } + + if (session->multi_sps_pps != 0) { + option.code = MVX_FW_SET_MULTI_SPS_PPS; + option.multi_sps_pps = session->multi_sps_pps; + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN( + session, + "Failed to support multi SPS PSS."); + return ret; + } + } + + if (session->scd_enable != 0) { + option.code = MVX_FW_SET_SCD_ENABLE; + option.scd_enable = session->scd_enable; + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN(session, + "Failed to enable SCD."); + return ret; + } + } + + if (session->scd_enable != 0 && session->scd_percent >= 0 && + session->scd_percent <= 10) { + option.code = MVX_FW_SET_SCD_PERCENT; + option.scd_percent = session->scd_percent; + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN(session, + "Failed to set SCD percent."); + return ret; + } + } + + if (session->scd_enable != 0 && session->scd_threshold >= 0 && + session->scd_threshold <= 2047) { + option.code = MVX_FW_SET_SCD_THRESHOLD; + option.scd_threshold = session->scd_threshold; + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN( + session, + "Failed to set SCD threshold."); + return ret; + } + } + + if (session->aq_ssim_en != 0 && + (codec == MVX_FORMAT_H264 || codec == MVX_FORMAT_HEVC)) { + option.code = MVX_FW_SET_AQ_SSIM_EN; + option.aq_ssim_en = session->aq_ssim_en; + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN(session, + "Failed to enable SSIM."); + return ret; + } + } + + if (session->aq_ssim_en != 0 && session->aq_neg_ratio >= 0 && + session->aq_neg_ratio <= 63 && + (codec == MVX_FORMAT_H264 || codec == MVX_FORMAT_HEVC)) { + option.code = MVX_FW_SET_AQ_NEG_RATIO; + option.aq_neg_ratio = session->aq_neg_ratio; + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN( + session, + "Failed to set AQ negative ratio."); + return ret; + } + } + + if (session->aq_ssim_en != 0 && session->aq_pos_ratio >= 0 && + session->aq_pos_ratio <= 63 && + (codec == MVX_FORMAT_H264 || codec == MVX_FORMAT_HEVC)) { + option.code = MVX_FW_SET_AQ_POS_RATIO; + option.aq_pos_ratio = session->aq_pos_ratio; + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN( + session, + "Failed to set AQ positive ratio."); + return ret; + } + } + + if (session->aq_ssim_en != 0 && session->aq_qpdelta_lmt >= 0 && + session->aq_qpdelta_lmt <= 7 && + (codec == MVX_FORMAT_H264 || codec == MVX_FORMAT_HEVC)) { + option.code = MVX_FW_SET_AQ_QPDELTA_LMT; + option.aq_qpdelta_lmt = session->aq_qpdelta_lmt; + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN( + session, + "Failed to set AQ QPDelta LMT."); + return ret; + } + } + + if (session->aq_ssim_en != 0 && + session->aq_init_frm_avg_svar >= 0 && + session->aq_init_frm_avg_svar <= 15 && + (codec == MVX_FORMAT_H264 || codec == MVX_FORMAT_HEVC)) { + option.code = MVX_FW_SET_AQ_INIT_FRM_AVG_SVAR; + option.aq_init_frm_avg_svar = + session->aq_init_frm_avg_svar; + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN( + session, + "Failed to initial frame variance."); + return ret; + } + } + + if (session->enable_visual != 0) { + option.code = MVX_FW_SET_VISUAL_ENABLE; + option.enable_visual = session->enable_visual; + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN(session, + "Failed to enable visual."); + return ret; + } + option.code = MVX_FW_SET_ADPTIVE_QUANTISATION; + option.adapt_qnt = 3; //set to 3 if enable visual + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN( + session, + "Failed to set adaptive quantisation."); + return ret; + } + } + + if (session->adaptive_intra_block != 0) { + option.code = + MVX_FW_SET_VISUAL_ENABLE_ADAPTIVE_INTRA_BLOCK; + option.adaptive_intra_block = + session->adaptive_intra_block; + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN( + session, + "Failed to enable adaptive intra block."); + return ret; + } + } + + if (session->rc_enabled != false) { + if (session->qp[codec].min < session->qp[codec].max) { + option.code = MVX_FW_SET_QP_RANGE; + option.qp_range.min = session->qp[codec].min; + option.qp_range.max = session->qp[codec].max; + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN( + session, + "Failed to set qp range."); + return ret; + } + } + } + if (session->fixedqp != 0) { + ret = fw_set_qp(session, MVX_FW_SET_FIXED_QP, + session->fixedqp); + if (ret != 0) + return ret; + } else { + if (session->qp[codec].i_frame != 0) { + ret = fw_set_qp(session, MVX_FW_SET_QP_I, + session->qp[codec].i_frame); + if (ret != 0) + return ret; + } + if (session->qp[codec].p_frame != 0) { + ret = fw_set_qp(session, MVX_FW_SET_QP_P, + session->qp[codec].p_frame); + if (ret != 0) + return ret; + } + if (session->qp[codec].b_frame != 0) { + ret = fw_set_qp(session, MVX_FW_SET_QP_B, + session->qp[codec].b_frame); + if (ret != 0) + return ret; + } + } + + if ((session->min_qp_i <= session->max_qp_i) && + (session->max_qp_i != 0)) { + option.code = MVX_FW_SET_QP_RANGE_I; + option.qp_range.min = session->min_qp_i; + option.qp_range.max = session->max_qp_i; + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN(session, + "Failed to set qp range."); + return ret; + } + } + + { + option.code = MVX_FW_SET_P_FRAMES; + option.pb_frames = session->p_frames; + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN(session, + "Failed to set P frames."); + return ret; + } + } + + if (session->b_frames != 0) { + option.code = MVX_FW_SET_B_FRAMES; + option.pb_frames = session->b_frames; + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN(session, + "Failed to set B frames."); + return ret; + } + } + + if (session->gop_type != MVX_GOP_TYPE_NONE) { + option.code = MVX_FW_SET_GOP_TYPE; + option.gop_type = session->gop_type; + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN(session, + "Failed to set GOP type."); + return ret; + } + } + + if (session->inter_med_buf_size != 0) { + option.code = MVX_FW_SET_INTER_MED_BUF_SIZE; + option.inter_med_buf_size = session->inter_med_buf_size; + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN( + session, + "Failed to set inter mediate buffer size."); + return ret; + } + } + + if (session->svct3_level1_period != 0) { + option.code = MVX_FW_SET_SVCT3_LEVEL1_PERIOD; + option.svct3_level1_period = + session->svct3_level1_period; + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN( + session, + "Failed to set svct3_level1_period."); + return ret; + } + } + + if (session->reset_ltr_period != 0) { + option.code = MVX_FW_SET_LTR_PERIOD; + option.reset_ltr_period = session->reset_ltr_period; + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN(session, + "Failed to set ltr period."); + return ret; + } + } + + if (session->reset_gop_pframes != 0) { + option.code = MVX_FW_SET_GOP_PFRAMES; + option.reset_gop_pframes = session->reset_gop_pframes; + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN(session, + "Failed to set gop pframes."); + return ret; + } + } + + if (session->cyclic_intra_refresh_mb != 0) { + option.code = MVX_FW_SET_INTRA_MB_REFRESH; + option.intra_mb_refresh = + session->cyclic_intra_refresh_mb; + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN( + session, + "Failed to set cyclic intra refresh Mb."); + return ret; + } + } + + if (session->constr_ipred != MVX_TRI_UNSET && + (codec == MVX_FORMAT_H264 || codec == MVX_FORMAT_HEVC)) { + option.code = MVX_FW_SET_CONSTR_IPRED; + option.constr_ipred = session->constr_ipred; + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN(session, + "Failed to set constr ipred."); + return ret; + } + } + if (session->change_pos != 0) { + option.code = MVX_FW_SET_RATE_CONTROL_CHANGE_POS; + option.change_pos = session->change_pos; + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN( + session, + "Failed to set change pos for jpeg rc"); + return ret; + } + } + } + + if (codec == MVX_FORMAT_HEVC) { + if (session->entropy_sync != MVX_TRI_UNSET) { + option.code = MVX_FW_SET_ENTROPY_SYNC; + option.entropy_sync = session->entropy_sync; + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN(session, + "Failed to set entropy sync."); + return ret; + } + } + + if (session->temporal_mvp != MVX_TRI_UNSET) { + option.code = MVX_FW_SET_TEMPORAL_MVP; + option.temporal_mvp = session->temporal_mvp; + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN(session, + "Failed to set temporal mvp."); + return ret; + } + } + if (session->min_luma_cb_size != 0) { + option.code = MVX_FW_SET_MIN_LUMA_CB_SIZE; + option.min_luma_cb_size = session->min_luma_cb_size; + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN( + session, + "Failed to set min luma cb size."); + return ret; + } + } + } + + if ((codec == MVX_FORMAT_HEVC || codec == MVX_FORMAT_VP9) && + (session->tile_rows != 0 || session->tile_cols != 0)) { + option.code = MVX_FW_SET_TILES; + option.tile.rows = session->tile_rows; + option.tile.cols = session->tile_cols; + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN(session, "Failed to set tile dims."); + return ret; + } + } + + if (session->entropy_mode != MVX_ENTROPY_MODE_NONE && + codec == MVX_FORMAT_H264) { + option.code = MVX_FW_SET_ENTROPY_MODE; + option.entropy_mode = session->entropy_mode; + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN(session, + "Failed to set entropy mode."); + return ret; + } + } + + if (codec == MVX_FORMAT_H264 || codec == MVX_FORMAT_HEVC) { + option.code = MVX_FW_SET_SLICE_SPACING_MB; + if (session->multi_slice_mode == MVX_MULTI_SLICE_MODE_SINGLE) + option.slice_spacing_mb = 0; + else + option.slice_spacing_mb = session->multi_slice_max_mb; + + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN(session, + "Failed to set slice spacing."); + return ret; + } + + option.code = MVX_FW_SET_CABAC_INIT_IDC; + option.cabac_init_idc = session->cabac_init_idc; + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN(session, + "Failed to set CABAC init IDC."); + return ret; + } + if (session->crop_left != 0) { + option.code = MVX_FW_SET_CROP_LEFT; + option.crop_left = session->crop_left; + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN(session, + "Failed to set crop left"); + return ret; + } + } + if (session->crop_right != 0) { + option.code = MVX_FW_SET_CROP_RIGHT; + option.crop_right = session->crop_right; + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN(session, + "Failed to set crop right"); + return ret; + } + } + if (session->crop_top != 0) { + option.code = MVX_FW_SET_CROP_TOP; + option.crop_top = session->crop_top; + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN(session, + "Failed to set crop top"); + return ret; + } + } + if (session->crop_bottom != 0) { + option.code = MVX_FW_SET_CROP_BOTTOM; + option.crop_bottom = session->crop_bottom; + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN(session, + "Failed to set crop bottom"); + return ret; + } + } + if (session->nHRDBufsize != 0) { + option.code = MVX_FW_SET_HRD_BUF_SIZE; + option.nHRDBufsize = session->nHRDBufsize; + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN( + session, + "Failed to set HRD Buffer Size"); + return ret; + } + } + if (session->color_desc.range != 0 || + session->color_desc.matrix != 0 || + session->color_desc.primaries != 0 || + session->color_desc.transfer != 0 || + session->color_desc.sar_height != 0 || + session->color_desc.sar_width != 0 || + session->color_desc.aspect_ratio_idc != 0) { + struct mvx_fw_set_option option; + + option.code = MVX_FW_SET_COLOUR_DESC; + option.colour_desc = session->color_desc; + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN( + session, + "Failed to set vui colour description"); + return ret; + } + } + + if (session->sei_userdata.flags) { + option.code = MVX_FW_SET_SEI_USERDATA; + option.userdata = session->sei_userdata; + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN(session, + "Failed to set sei userdata"); + return ret; + } + } + + if (session->mvx_ltr.mode != 0 || + session->mvx_ltr.period != 0) { + option.code = MVX_FW_SET_LONG_TERM_REF; + option.ltr.mode = session->mvx_ltr.mode; + option.ltr.period = session->mvx_ltr.period; + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN( + session, + "Failed to set ltr mode/period"); + return ret; + } + } + + if (session->gdr_number > 1 && session->gdr_period > 1) { + option.code = MVX_FW_SET_GDR_NUMBER; + option.gdr_number = session->gdr_number; + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN(session, + "Failed to set gdr number"); + return ret; + } + option.code = MVX_FW_SET_GDR_PERIOD; + option.gdr_period = session->gdr_period; + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN(session, + "Failed to set gdr period"); + return ret; + } + } + } + + if (codec == MVX_FORMAT_VP9) { + MVX_SESSION_WARN(session, "VP9 option!"); + option.code = MVX_FW_SET_VP9_PROB_UPDATE; + option.vp9_prob_update = session->vp9_prob_update; + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN(session, + "Failed to set VP9 prob update mode."); + return ret; + } + } + + if (session->mv_h_search_range != 0 && + session->mv_v_search_range != 0) { + option.code = MVX_FW_SET_MV_SEARCH_RANGE; + option.mv.x = session->mv_h_search_range; + option.mv.y = session->mv_v_search_range; + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN( + session, + "Failed to set motion vector search range."); + return ret; + } + } + + if (session->bitdepth_chroma != 0 && session->bitdepth_luma != 0) { + option.code = MVX_FW_SET_BITDEPTH; + option.bitdepth.chroma = session->bitdepth_chroma; + option.bitdepth.luma = session->bitdepth_luma; + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN(session, "Failed to set bitdepth."); + return ret; + } + } + + if (session->force_chroma_format != 0) { + option.code = MVX_FW_SET_CHROMA_FORMAT; + option.chroma_format = session->force_chroma_format; + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN(session, + "Failed to set chroma format."); + return ret; + } + } + + if (session->use_cust_rgb_to_yuv_mode == + MVX_CUST_YUV2RGB_MODE_STANDARD) { + option.code = MVX_FW_SET_RGB_TO_YUV_MODE; + generate_standards_rgb2yuv_coef(session->rgb_to_yuv, + &option.rgb2yuv_params); + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN( + session, + "Failed to set rgb2yuv color conversion mode."); + return ret; + } + } else if (session->use_cust_rgb_to_yuv_mode == + MVX_CUST_YUV2RGB_MODE_CUSTOMIZED) { + option.code = MVX_FW_SET_RGB_TO_YUV_MODE; + memcpy(&option.rgb2yuv_params, + &session->rgb2yuv_color_conv_coef, + sizeof(struct mvx_rgb2yuv_color_conv_coef)); + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN( + session, + "Failed to set rgb2yuv color conversion mode."); + return ret; + } + } + + if (session->band_limit != 0) { + option.code = MVX_FW_SET_BAND_LIMIT; + option.band_limit = session->band_limit; + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN(session, + "Failed to set bandwidth limit."); + return ret; + } + } + + if (session->init_qpi != 0) { + option.code = MVX_FW_SET_INIT_QP_I; + option.init_qpi = session->init_qpi; + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN(session, + "Failed to set init qp for I frame."); + return ret; + } + } + if (session->init_qpp != 0) { + option.code = MVX_FW_SET_INIT_QP_P; + option.init_qpp = session->init_qpp; + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN(session, + "Failed to set init qp for P frame."); + return ret; + } + } + if (session->sao_luma != 0) { + option.code = MVX_FW_SET_SAO_LUMA; + option.sao_luma = session->sao_luma; + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN(session, "Failed to set sao luma."); + return ret; + } + } + if (session->sao_chroma != 0) { + option.code = MVX_FW_SET_SAO_CHROMA; + option.sao_chroma = session->sao_chroma; + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN(session, "Failed to set sao chroma."); + return ret; + } + } + if (session->qp_delta_i_p != 0) { + option.code = MVX_FW_SET_QP_DELTA_I_P; + option.qp_delta_i_p = session->qp_delta_i_p; + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN( + session, + "Failed to set delta qp for I frame and P frame."); + return ret; + } + } + if (session->ref_rb_en != 0) { + option.code = MVX_FW_SET_QP_REF_RB_EN; + option.ref_rb_en = session->ref_rb_en; + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN(session, "Failed to set ref_rb_en."); + return ret; + } + } + if (session->rc_qp_clip_top != 0) { + option.code = MVX_FW_SET_RC_CLIP_TOP; + option.rc_qp_clip_top = session->rc_qp_clip_top; + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN(session, + "Failed to set rc_qp_clip_top."); + return ret; + } + } + if (session->rc_qp_clip_bot != 0) { + option.code = MVX_FW_SET_RC_CLIP_BOT; + option.rc_qp_clip_bot = session->rc_qp_clip_bot; + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN(session, + "Failed to set rc_qp_clip_bot."); + return ret; + } + } + if (session->qpmap_qp_clip_top != 0) { + option.code = MVX_FW_SET_QP_MAP_CLIP_TOP; + option.qpmap_qp_clip_top = session->qpmap_qp_clip_top; + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN(session, + "Failed to set qpmap_qp_clip_top."); + return ret; + } + } + if (session->qpmap_qp_clip_top != 0) { + option.code = MVX_FW_SET_QP_MAP_CLIP_BOT; + option.qpmap_qp_clip_bot = session->qpmap_qp_clip_bot; + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN(session, + "Failed to set qpmap_qp_clip_bot."); + return ret; + } + } + if (codec == MVX_FORMAT_JPEG) { + if (session->resync_interval >= 0) { + option.code = MVX_FW_SET_RESYNC_INTERVAL; + option.resync_interval = session->resync_interval; + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN( + session, + "Failed to set resync interval."); + return ret; + } + } + + if (session->jpeg_quality != 0 || + session->jpeg_quality_luma != 0 || + session->jpeg_quality_chroma != 0) { + uint8_t qtbl_chroma[MVX_FW_QUANT_LEN]; + uint8_t qtbl_luma[MVX_FW_QUANT_LEN]; + uint32_t quality_luma = + session->jpeg_quality_luma != 0 ? + session->jpeg_quality_luma : + session->jpeg_quality; + uint32_t quality_chroma = + session->jpeg_quality_chroma != 0 ? + session->jpeg_quality_chroma : + session->jpeg_quality; + option.code = MVX_FW_SET_QUANT_TABLE; + if (quality_luma) { + generate_quant_tbl(quality_luma, qtbl_luma_ref, + qtbl_luma); + option.quant_tbl.luma = qtbl_luma; + } + if (quality_chroma) { + generate_quant_tbl(quality_chroma, + qtbl_chroma_ref, + qtbl_chroma); + option.quant_tbl.chroma = qtbl_chroma; + } + + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN( + session, + "Failed to set quantization table."); + return ret; + } + } + if (session->huff_table.type != 0) { + option.code = MVX_FW_SET_HUFF_TABLE; + memcpy(&option.huff_table, &session->huff_table, + sizeof(struct mvx_huff_table)); + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN(session, + "Failed to set huff table."); + return ret; + } + } + } + + if ((session->port[MVX_DIR_INPUT].format == MVX_FORMAT_YUV444 || + session->port[MVX_DIR_INPUT].format == MVX_FORMAT_YUV444_10 || + session->port[MVX_DIR_INPUT].format == MVX_FORMAT_YUV420_I420 || + session->port[MVX_DIR_INPUT].format == MVX_FORMAT_YUV420_I420_10 || + session->port[MVX_DIR_INPUT].format == MVX_FORMAT_Y || + session->port[MVX_DIR_INPUT].format == MVX_FORMAT_Y_10) && + session->forced_uv_value >= 0 && session->forced_uv_value < 0x400) { + option.code = MVX_FW_SET_ENC_FORCED_UV_VAL; + option.forced_uv_value = session->forced_uv_value; + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN(session, + "Failed to set forced to uv value."); + return ret; + } + } + + if (session->enc_src_crop.width != 0 && + session->enc_src_crop.height != 0 && + session->enc_src_crop.crop_en != 0) { + option.code = MVX_FW_SET_ENC_SRC_CROPPING; + memcpy(&option.enc_src_crop, &session->enc_src_crop, + sizeof(struct mvx_crop_cfg)); + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN(session, + "Failed to set enc src crop."); + return ret; + } + } + + if (session->mini_frame_height >= 64) { + option.code = MVX_FW_SET_MINI_FRAME_HEIGHT; + option.mini_frame_height = session->mini_frame_height; + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN( + session, + "Failed to set mini frame buffer cnt."); + return ret; + } + } + + ret = fw_common_setup(session); + + return ret; +} + +static int fw_decoder_setup(struct mvx_session *session) +{ + int ret; + struct mvx_fw_set_option option; + + enum mvx_format codec; + enum mvx_direction dir; + + dir = get_bitstream_port(session); + codec = session->port[dir].format; + + if (codec == MVX_FORMAT_VC1 && + session->profile[codec] != MVX_PROFILE_NONE) { + option.code = MVX_FW_SET_PROFILE_LEVEL; + option.profile_level.profile = session->profile[codec]; + option.profile_level.level = session->level[codec]; + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN(session, + "Failed to set profile/level."); + return ret; + } + } + if (codec == MVX_FORMAT_AV1) { + option.code = MVX_FW_SET_DISABLE_FEATURES; + option.disabled_features = 0x100; + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN( + session, + "Failed to set disabled features AFBC_LEGACY_REF for AV1."); + return ret; + } + } + + if (session->ignore_stream_headers != MVX_TRI_UNSET) { + option.code = MVX_FW_SET_IGNORE_STREAM_HEADERS; + option.ignore_stream_headers = session->ignore_stream_headers; + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN( + session, + "Failed to set ignore stream headers."); + return ret; + } + } + + if (session->frame_reordering != MVX_TRI_UNSET) { + option.code = MVX_FW_SET_FRAME_REORDERING; + option.frame_reordering = session->frame_reordering; + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN(session, + "Failed to set frame reordering."); + return ret; + } + } + + if (session->intbuf_size != 0) { + option.code = MVX_FW_SET_INTBUF_SIZE; + option.intbuf_size = session->intbuf_size; + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN(session, + "Failed to set internal buffer size."); + return ret; + } + } + + if (session->dsl_frame.width != 0 && session->dsl_frame.height != 0) { + option.code = MVX_FW_SET_DSL_FRAME; + option.dsl_frame.width = session->dsl_frame.width; + option.dsl_frame.height = session->dsl_frame.height; + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN( + session, + "Failed to set DSL frame width/height."); + return ret; + } + } + + if (session->dsl_pos_mode >= 0 && session->dsl_pos_mode <= 2) { + option.code = MVX_FW_SET_DSL_MODE; + option.dsl_pos_mode = session->dsl_pos_mode; + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN(session, "Failed to set DSL mode."); + return ret; + } + } + + if (session->dsl_interp_mode >= 0 && session->dsl_interp_mode <= 1) { + option.code = MVX_FW_SET_DSL_INTERP_MODE; + option.dsl_interp_mode = session->dsl_interp_mode; + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN(session, + "Failed to set DSL INTERP mode."); + return ret; + } + } + + if (mvx_is_rgb24(session->port[MVX_DIR_OUTPUT].format)) { + option.code = MVX_FW_SET_DEC_YUV2RGB_PARAMS; + + if (session->use_cust_color_conv_coef) { + ret = 0; + memcpy(&option.yuv2rbg_csc_coef, + &session->color_conv_coef, + sizeof(struct mvx_color_conv_coef)); + } else { + ret = generate_standards_yuv2rgb_coef( + session->color_conv_mode, + &option.yuv2rbg_csc_coef); + } + if (ret == 0) + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN( + session, + "Failed to set yuv2rgb color conversion mode."); + return ret; + } + } + if (session->disabled_features != 0) { + option.code = MVX_FW_SET_DISABLE_FEATURES; + option.disabled_features = session->disabled_features; + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN(session, + "Failed to set disabled features."); + return ret; + } + } + + if (session->dec_dst_crop.crop_en != 0 && + session->dec_dst_crop.width > 0 && + session->dec_dst_crop.height > 0) { + option.code = MVX_FW_SET_DEC_DST_CROPPING; + memcpy(&option.dec_dst_crop, &session->dec_dst_crop, + sizeof(struct mvx_crop_cfg)); + ret = fw_set_option(session, &option); + if (ret != 0) { + MVX_SESSION_WARN(session, + "Failed to set dec dst crop."); + return ret; + } + } + + ret = fw_common_setup(session); + + return ret; +} + +static int fw_initial_setup(struct mvx_session *session) +{ + int ret; + enum mvx_direction dir; + enum mvx_format codec; + struct mvx_fw_set_option option; + + MVX_SESSION_INFO(session, "Firmware initial setup."); + + fw_set_debug(session, 5); + + option.code = MVX_FW_SET_WATCHDOG_TIMEOUT; + option.watchdog_timeout = fw_watchdog_timeout; + ret = fw_set_option(session, &option); + if (ret != 0) + return ret; + + dir = get_bitstream_port(session); + codec = session->port[dir].format; + + ret = fw_job(session, 1); + if (ret != 0) + return ret; + + if (is_encoder(session)) + ret = fw_encoder_setup(session); + else + ret = fw_decoder_setup(session); + + if (ret != 0) { + MVX_SESSION_WARN(session, "Failed to perform initial setup.\n"); + return ret; + } + + ret = fw_state_change(session, MVX_FW_STATE_RUNNING); + if (ret != 0) { + MVX_SESSION_WARN(session, "Failed to queue state change."); + return ret; + } + + ret = fw_ping(session); + if (ret != 0) { + MVX_SESSION_WARN(session, "Failed to put ping message."); + send_event_error(session, ret); + return ret; + } + + return ret; +} + +/** + * map_buffer() - Memory map buffer to MVE address space. + * + * Return 0 on success, else error code. + */ +static int map_buffer(struct mvx_session *session, enum mvx_direction dir, + struct mvx_buffer *buf) +{ + mvx_mmu_va begin; + mvx_mmu_va end; + enum mvx_fw_region region; + int ret; + + if (mvx_is_bitstream(session->port[dir].format)) + region = MVX_FW_REGION_PROTECTED; + else if (mvx_is_frame(session->port[dir].format)) + region = MVX_FW_REGION_FRAMEBUF; + else + return -EINVAL; + + ret = session->fw.ops.get_region(region, &begin, &end); + if (ret != 0) + return ret; + + ret = mvx_buffer_map(buf, begin, end); + if (ret != 0) + return ret; + + return 0; +} +static int queue_osd_config(struct mvx_session *session, + struct mvx_osd_config *osd_cfg) +{ + int ret = 0; + + ret = fw_set_osd_config(session, MVX_FW_SET_OSD_CONFIG, osd_cfg); + return ret; +} + +static int queue_roi_regions(struct mvx_session *session, + struct mvx_roi_config *roi_cfg) +{ + int ret = 0; + + if (roi_cfg->qp_present) + ret = fw_set_qp(session, MVX_FW_SET_QP_REGION, roi_cfg->qp); + + if (roi_cfg->roi_present) + ret = fw_set_roi_regions(session, MVX_FW_SET_ROI_REGIONS, roi_cfg); + + return ret; +} + +static int queue_qp_epr(struct mvx_session *session, + struct mvx_buffer_param_qp *qp) +{ + int ret = 0; + + ret = fw_set_epr_qp(session, MVX_FW_SET_EPR_QP, *qp); + + return ret; +} + +static int queue_chr_cfg(struct mvx_session *session, + struct mvx_chr_cfg *chr_cfg) +{ + int ret = 0; + + ret = fw_set_chr_cfg(session, MVX_FW_SET_CHR_CFG, chr_cfg); + return ret; +} + +static int queue_enc_stats(struct mvx_session *session, + struct mvx_enc_stats *stats) +{ + int ret = 0; + + ret = fw_set_enc_stats(session, MVX_FW_SET_STATS_MODE, stats); + return ret; +} +/** + * queue_buffer() - Put buffer to firmware queue. + * + * Return: 0 on success, else error code. + */ +static int queue_buffer(struct mvx_session *session, enum mvx_direction dir, + struct mvx_buffer *buf) +{ + struct mvx_session_port *port = &session->port[dir]; + struct mvx_fw_msg msg; + struct mvx_seamless_target *seamless = &session->seamless_target; + unsigned int width; + unsigned int height; + unsigned int stride[MVX_BUFFER_NPLANES]; + unsigned int i; + /* + * Vb2 cannot allocate buffers with bidirectional mapping, therefore + * proper direction should be set. + */ + enum dma_data_direction dma_dir = + (dir == MVX_DIR_OUTPUT) ? DMA_FROM_DEVICE : DMA_TO_DEVICE; + + int ret; + + memset(stride, 0, sizeof(stride)); + if (dir == MVX_DIR_OUTPUT) { + port->scaling_shift = + (buf->flags & MVX_BUFFER_FRAME_FLAG_SCALING_MASK) >> 14; + } + if (mvx_buffer_is_mapped(buf) == false) { + ret = map_buffer(session, dir, buf); + if (ret != 0) + return ret; + } + if (dir == MVX_DIR_OUTPUT && + port->buffer_allocated < port->buffer_min) { + buf->flags |= MVX_BUFFER_FRAME_NEED_REALLOC; + return -EAGAIN; + } + /* + * Update frame dimensions. They might have changed due to a resolution + * change. + */ + if (dir == MVX_DIR_OUTPUT && + session->port[MVX_DIR_INPUT].format <= MVX_FORMAT_BITSTREAM_LAST && + seamless->seamless_mode != 0) { + width = seamless->target_width < port->width ? + port->width : + seamless->target_width; + height = seamless->target_height < port->height ? + port->height : + seamless->target_height; + for (i = 0; i < MVX_BUFFER_NPLANES; i++) { + stride[i] = seamless->target_stride[i] < + port->stride[i] ? + port->stride[i] : + seamless->target_stride[i]; + } + } else { + width = port->width; + height = port->height; + for (i = 0; i < MVX_BUFFER_NPLANES; i++) + stride[i] = port->stride[i]; + } + if (mvx_is_afbc(port->format) != false) { + port->afbc_width = DIV_ROUND_UP( + width, 16 << (!!(buf->flags & + MVX_BUFFER_AFBC_32X8_SUPERBLOCK))); + ret = mvx_buffer_afbc_set(buf, port->format, width, height, + port->afbc_width, port->size[0], + port->interlaced); + if (ret != 0) + return ret; + } else if (mvx_is_frame(port->format) != false) { + ret = mvx_buffer_frame_set(buf, port->format, width, height, + stride, port->size, + port->interlaced); + if (ret != 0) + return ret; + } + + ret = mvx_buffer_synch(buf, dma_dir); + if (ret != 0) + return ret; + + msg.code = MVX_FW_CODE_BUFFER; + msg.buf = buf; + + MVX_SESSION_INFO( + session, + "Firmware req: Buffer. dir=%u, len=[%u, %u, %u], flags=0x%08x, eos=%u, interlace=%u", + buf->dir, buf->planes[0].filled, buf->planes[1].filled, + buf->planes[2].filled, buf->flags, + (buf->flags & MVX_BUFFER_EOS) != 0, + (buf->flags & MVX_BUFFER_INTERLACE) != 0); + + ret = session->fw.ops.put_message(&session->fw, &msg); + if (ret != 0) + goto send_error; + + port->buffer_count++; + port->flushed = false; + if (dir == MVX_DIR_OUTPUT && port->isreallocting == true) + port->isreallocting = false; + + ret = send_irq(session); + if (ret != 0) + goto send_error; + + return 0; + +send_error: + send_event_error(session, ret); + return ret; +} + +/** + * queue_pending_buffers() - Queue pending buffers. + * + * Buffer that are queued when the port is still stream off will be put in the + * pending queue. Once both input- and output ports are stream on the pending + * buffers will be forwarded to the firmware. + * + * Return: 0 on success, else error code. + */ +static int queue_pending_buffers(struct mvx_session *session, + enum mvx_direction dir) +{ + struct mvx_buffer *buf; + struct mvx_buffer *tmp; + int roi_config_num = 0; + int roi_config_index = 0; + int qp_num = 0; + int qp_index = 0; + int chr_cfg_num = 0; + int chr_cfg_index = 0; + int enc_stats_num = 0; + int enc_stats_index = 0; + int osd_cfg_index = 0; + int osd_cfg_num = 0; + int pending_buf_idx = 0; + int osd_buffer_idx = 0; + struct mvx_roi_config roi_config; + int ret = 0; + + if (dir == MVX_DIR_INPUT && session->port[dir].roi_config_num > 0) + roi_config_num = session->port[dir].roi_config_num; + + if (dir == MVX_DIR_INPUT && session->port[dir].qp_num > 0) + qp_num = session->port[dir].qp_num; + + if (dir == MVX_DIR_INPUT && session->port[dir].chr_cfg_num > 0) + chr_cfg_num = session->port[dir].chr_cfg_num; + + if (dir == MVX_DIR_INPUT && session->port[dir].enc_stats_num > 0) + enc_stats_num = session->port[dir].enc_stats_num; + + if (dir == MVX_DIR_INPUT && session->port[dir].osd_cfg_num > 0) + osd_cfg_num = session->port[dir].osd_cfg_num; + + list_for_each_entry_safe(buf, tmp, &session->port[dir].buffer_queue, + head) { + if ((buf->flags & MVX_BUFFER_FRAME_FLAG_ROI) == + MVX_BUFFER_FRAME_FLAG_ROI && + roi_config_index < roi_config_num) { + roi_config = + session->port[dir] + .roi_config_queue[roi_config_index]; + ret = queue_roi_regions(session, &roi_config); + roi_config_index++; + } + if ((buf->flags & MVX_BUFFER_FRAME_FLAG_GENERAL) == + MVX_BUFFER_FRAME_FLAG_GENERAL && + qp_index < qp_num && dir == MVX_DIR_INPUT) { + ret = queue_qp_epr( + session, + &session->port[dir].qp_queue[qp_index]); + qp_index++; + } + if ((buf->flags & MVX_BUFFER_FRAME_FLAG_CHR) == + MVX_BUFFER_FRAME_FLAG_CHR && + chr_cfg_index < chr_cfg_num) { + ret = queue_chr_cfg( + session, + &session->port[dir] + .chr_cfg_queue[chr_cfg_index]); + chr_cfg_index++; + } + if (enc_stats_index < enc_stats_num && + session->port[dir] + .enc_stats_queue[enc_stats_index] + .pic_index == pending_buf_idx) { + ret = queue_enc_stats( + session, + &session->port[dir] + .enc_stats_queue[enc_stats_index]); + enc_stats_index++; + } + if (osd_cfg_index < osd_cfg_num && + session->port[dir].osd_cfg_queue[osd_cfg_index].pic_index == + osd_buffer_idx) { + ret = queue_osd_config( + session, + &session->port[dir] + .osd_cfg_queue[osd_cfg_index]); + osd_cfg_index++; + } + ret = queue_buffer(session, dir, buf); + pending_buf_idx++; + if (!(buf->flags & MVX_BUFFER_FRAME_FLAG_OSD_MASK)) + osd_buffer_idx++; //check for yuv bffer + + if ((buf->flags & MVX_BUFFER_FRAME_NEED_REALLOC) == + MVX_BUFFER_FRAME_NEED_REALLOC) { + session->event(session, MVX_SESSION_EVENT_BUFFER, buf); + } else if (ret != 0) { + break; + } + list_del(&buf->head); + } + + session->port[dir].roi_config_num = 0; + session->port[dir].qp_num = 0; + session->port[dir].chr_cfg_num = 0; + session->port[dir].enc_stats_num = 0; + return ret; +} + +/** + * fw_bin_ready() - Complete firmware configuration. + * + * The firmware binary load has completed and the firmware configuration can + * begin. + * + * If the session is no longer 'stream on' (someone issued 'stream off' before + * the firmware load completed) the firmware binary is put back to the cache. + * + * Else the client session is registered and the firmware instance is + * constructed. + */ +static void fw_bin_ready(struct mvx_fw_bin *bin, void *arg, bool same_thread) +{ + struct mvx_session *session = arg; + int lock_failed = 1; + int ret; + + /* + * Only lock the mutex if the firmware binary was loaded by a + * background thread. + */ + if (same_thread == false) { + lock_failed = mutex_lock_interruptible(session->isession.mutex); + if (lock_failed != 0) { + send_event_error(session, lock_failed); + goto put_fw_bin; + } + } + + /* Return firmware binary if session is no longer 'stream on'. */ + if (!is_stream_on(session)) + goto put_fw_bin; + + /* Create client session. */ + session->isession.ncores = + session->client_ops->get_ncores(session->client_ops); + session->isession.l0_pte = mvx_mmu_set_pte( + MVX_ATTR_PRIVATE, virt_to_phys(session->mmu.page_table), + MVX_ACCESS_READ_WRITE); + + session->csession = session->client_ops->register_session( + session->client_ops, &session->isession); + if (IS_ERR(session->csession)) { + ret = PTR_ERR(session->csession); + send_event_error(session, ret); + goto put_fw_bin; + } + + /* Construct the firmware instance. */ + ret = mvx_fw_factory(&session->fw, bin, &session->mmu, session, + session->client_ops, session->csession, + session->isession.ncores, session->dentry); + if (ret != 0) { + send_event_error(session, ret); + goto unregister_csession; + } + + session->fw_bin = bin; + + mvx_fw_cache_log(bin, session->csession); + + ret = fw_initial_setup(session); + if (ret != 0) + goto unregister_csession; + + ret = queue_pending_buffers(session, MVX_DIR_INPUT); + if (ret != 0) + goto unregister_csession; + + ret = queue_pending_buffers(session, MVX_DIR_OUTPUT); + if (ret != 0) + goto unregister_csession; + + if (lock_failed == 0) + mutex_unlock(session->isession.mutex); + + mvx_session_put(session); + + return; + +unregister_csession: + session->client_ops->unregister_session(session->csession); + session->csession = NULL; + +put_fw_bin: + mvx_fw_cache_put(session->cache, bin); + session->fw_bin = NULL; + + if (lock_failed == 0) + mutex_unlock(session->isession.mutex); + + mvx_session_put(session); +} + +static int calc_afbc_size(struct mvx_session *session, enum mvx_format format, + unsigned int width, unsigned int height, + bool tiled_headers, bool tiled_body, bool superblock, + bool interlaced) +{ + static const unsigned int mb_header_size = 16; + unsigned int payload_align = 128; + unsigned int mb_size; + int size; + + /* Calculate width and height in super blocks. */ + if (superblock != false) { + width = DIV_ROUND_UP(width, 32); + height = DIV_ROUND_UP(height, 8) + 1; + } else { + width = DIV_ROUND_UP(width, 16); + height = DIV_ROUND_UP(height, 16) + 1; + } + + /* Round up size to 8x8 tiles. */ + if (tiled_headers != false || tiled_body != false) { + width = roundup(width, 8); + height = roundup(height, 8); + } + + switch (format) { + case MVX_FORMAT_YUV420_AFBC_8: + mb_size = 384; + break; + case MVX_FORMAT_YUV420_AFBC_10: + mb_size = 480; + break; + case MVX_FORMAT_YUV422_AFBC_8: + mb_size = 512; + break; + case MVX_FORMAT_YUV422_AFBC_10: + mb_size = 656; + break; + default: + MVX_SESSION_WARN(session, "Unsupported AFBC format. format=%u.", + format); + return -EINVAL; + } + + /* Round up tiled body to 128 byte boundary. */ + if (tiled_body != false) + mb_size = roundup(mb_size, payload_align); + + if (interlaced != false) + height = DIV_ROUND_UP(height, 2); + + /* Calculate size of AFBC makroblock headers. */ + size = roundup(width * height * mb_header_size, payload_align); + size += roundup(width * height * mb_size, payload_align); + + if (interlaced != false) + size *= 2; + + return size; +} + +static int try_format(struct mvx_session *session, enum mvx_direction dir, + enum mvx_format format, unsigned int *width, + unsigned int *height, uint8_t *nplanes, + unsigned int *stride, unsigned int *size, + bool *interlaced) +{ + int ret = 0; + + /* Limit width and height to 8k. */ + *width = min_t(unsigned int, *width, 32768); + *height = min_t(unsigned int, *height, 32768); + + /* Stream dimensions are dictated by the input port. */ + if (dir == MVX_DIR_OUTPUT) { + *width = session->port[MVX_DIR_INPUT].width >> + session->port[MVX_DIR_OUTPUT].scaling_shift; + *height = session->port[MVX_DIR_INPUT].height >> + session->port[MVX_DIR_OUTPUT].scaling_shift; + } + if (session->dsl_frame.width != 0 && session->dsl_frame.height != 0) { + *width = session->dsl_frame.width; + *height = session->dsl_frame.height; + } else if (dir == MVX_DIR_OUTPUT && (session->dsl_ratio.hor != 1 || + session->dsl_ratio.ver != 1)) { + *width = session->port[MVX_DIR_INPUT].width / + session->dsl_ratio.hor; + *height = session->port[MVX_DIR_INPUT].height / + session->dsl_ratio.ver; + *width &= ~(1); + *height &= ~(1); + } + if (dir == MVX_DIR_OUTPUT && mvx_is_frame(format)) { + if (session->dec_dst_crop.crop_en != 0 && + session->dec_dst_crop.width > 0 && + session->dec_dst_crop.height > 0 && + session->dec_dst_crop.width + session->dec_dst_crop.x <= + session->port[MVX_DIR_INPUT].width && + session->dec_dst_crop.height + session->dec_dst_crop.y <= + session->port[MVX_DIR_INPUT].height) { + *width = session->dec_dst_crop.width; + *height = session->dec_dst_crop.height; + } + } + /* Interlaced input is not supported by the firmware. */ + if (dir == MVX_DIR_INPUT) + *interlaced = false; + + if (mvx_is_afbc(format) != false) { + unsigned int afbc_alloc_bytes = + session->port[dir].afbc_alloc_bytes; + if (*nplanes <= 0) + size[0] = 0; + + if (dir == MVX_DIR_INPUT) { + /* it is basically a worst-case calcualtion based on + * a size rounded up to tile size + */ + int s1 = calc_afbc_size( + session, format, *width, *height, true, true, + false, //*height, false, false, false, + *interlaced); + int s2 = calc_afbc_size( + session, format, *width, *height, true, true, + true, //*height, false, false, false, + *interlaced); + int s = max_t(unsigned int, s1, s2); + + if (s < 0) + return s; + + size[0] = max_t(unsigned int, size[0], s); + } + + if (*interlaced != false) + afbc_alloc_bytes *= 2; + + size[0] = max_t(unsigned int, size[0], afbc_alloc_bytes); + size[0] = roundup(size[0], PAGE_SIZE); + + *nplanes = 1; + } else if (mvx_is_frame(format) != false) { + uint32_t tmp_height = session->mini_frame_height >= 64 ? + session->mini_frame_height : + *height; + ret = mvx_buffer_frame_dim(format, *width, tmp_height, nplanes, + stride, size, + session->setting_stride); + } else { + /* + * For compressed formats the size should be the maximum number + * of bytes an image is expected to become. This is calculated + * as width * height * 2 B/px / 2. Size should be at least one + * page. + */ + + stride[0] = 0; + + if (*nplanes <= 0) + size[0] = 0; + + size[0] = max_t(unsigned int, size[0], PAGE_SIZE); + size[0] = max_t(unsigned int, size[0], (*width) * (*height)); + size[0] = min_t( + unsigned int, size[0], + (8192) * (8192)); + /* for large jpeg,bit stream buffer no need to set too large, + * just clip to 8k*8k + */ + size[0] = roundup(size[0], PAGE_SIZE); + + *nplanes = 1; + } + + return ret; +} + +static void watchdog_work(struct work_struct *work) +{ + struct mvx_session *session = + container_of(work, struct mvx_session, watchdog_work); + int ret; + + mutex_lock(session->isession.mutex); + + MVX_SESSION_WARN(session, "Watchdog timeout. count=%u.", + session->watchdog_count); + + /* Print debug information. */ + print_debug(session); + + if (session->watchdog_count++ < 2) { + /* Request firmware to dump its state. */ + fw_dump(session); + + /* Restart watchdog. */ + watchdog_start(session, 3000); + } else { + send_event_error(session, -ETIME); + } + + ret = kref_put(&session->isession.kref, session->isession.release); + if (ret != 0) + return; + + mutex_unlock(session->isession.mutex); +} + +static void watchdog_timeout(struct timer_list *timer) +{ + struct mvx_session *session = + container_of(timer, struct mvx_session, watchdog_timer); + + queue_work(system_unbound_wq, &session->watchdog_work); +} + +/**************************************************************************** + * Exported functions + ****************************************************************************/ + +int mvx_session_construct(struct mvx_session *session, struct device *dev, + struct mvx_client_ops *client_ops, + struct mvx_fw_cache *cache, struct mutex *mutex, + void (*destructor)(struct mvx_session *session), + void (*event)(struct mvx_session *session, + enum mvx_session_event event, + void *arg), + struct dentry *dentry) +{ + int i; + int ret; + + if (event == NULL || destructor == NULL) + return -EINVAL; + + memset(session, 0, sizeof(*session)); + memset(session->setting_stride, 0, sizeof(session->setting_stride)); + memset(session->port[MVX_DIR_INPUT].stride, 0, + sizeof(session->port[MVX_DIR_INPUT].stride)); + memset(session->port[MVX_DIR_INPUT].size, 0, + sizeof(session->port[MVX_DIR_INPUT].size)); + memset(session->port[MVX_DIR_OUTPUT].stride, 0, + sizeof(session->port[MVX_DIR_OUTPUT].stride)); + memset(session->port[MVX_DIR_OUTPUT].size, 0, + sizeof(session->port[MVX_DIR_OUTPUT].size)); + memset(session->port[MVX_DIR_INPUT].display_size, 0, + sizeof(session->port[MVX_DIR_INPUT].display_size)); + memset(session->port[MVX_DIR_OUTPUT].display_size, 0, + sizeof(session->port[MVX_DIR_OUTPUT].display_size)); + session->dev = dev; + session->client_ops = client_ops; + session->cache = cache; + kref_init(&session->isession.kref); + session->isession.release = session_destructor; + session->isession.mutex = mutex; + session->destructor = destructor; + session->event = event; + session->fw_event.fw_bin_ready = fw_bin_ready; + session->fw_event.arg = session; + session->fw_state = MVX_FW_STATE_STOPPED; + init_waitqueue_head(&session->waitq); + session->dentry = dentry; + session->port[MVX_DIR_INPUT].buffer_min = 1; + session->port[MVX_DIR_OUTPUT].buffer_min = 1; + session->port[MVX_DIR_INPUT].buffer_allocated = 0; //1; + session->port[MVX_DIR_OUTPUT].buffer_allocated = 0; //1; + session->port[MVX_DIR_INPUT].scaling_shift = 0; + session->port[MVX_DIR_OUTPUT].scaling_shift = 0; + session->stream_escaping = MVX_TRI_UNSET; + session->ignore_stream_headers = MVX_TRI_UNSET; + session->frame_reordering = MVX_TRI_UNSET; + session->constr_ipred = MVX_TRI_UNSET; + session->entropy_sync = MVX_TRI_UNSET; + session->temporal_mvp = MVX_TRI_UNSET; + session->resync_interval = -1; + session->port[MVX_DIR_OUTPUT].roi_config_num = 0; + session->port[MVX_DIR_INPUT].roi_config_num = 0; + session->port[MVX_DIR_OUTPUT].qp_num = 0; + session->port[MVX_DIR_INPUT].qp_num = 0; + session->crop_left = 0; + session->crop_right = 0; + session->crop_top = 0; + session->crop_bottom = 0; + session->dsl_ratio.hor = 1; + session->dsl_ratio.ver = 1; + session->dsl_pos_mode = -1; //disable by default + session->profiling = 0; + session->rc_bit_i_mode = 0; + session->rc_bit_i_ratio = 0; + session->multi_sps_pps = 0; + session->enable_visual = 0; + session->forced_uv_value = 0x400; + session->dsl_interp_mode = 0xffff; + session->color_conv_mode = MVX_YUV_TO_RGB_MODE_BT601_LIMT; + session->use_cust_color_conv_coef = false; + session->use_cust_rgb_to_yuv_mode = MVX_CUST_YUV2RGB_MODE_UNSET; + memset(&session->color_conv_coef, 0, + sizeof(struct mvx_color_conv_coef)); + memset(&session->enc_src_crop, 0, sizeof(struct mvx_crop_cfg)); + memset(&session->dec_dst_crop, 0, sizeof(struct mvx_crop_cfg)); + memset(&session->seamless_target, 0, + sizeof(struct mvx_seamless_target)); + memset(&session->osd_info, 0, sizeof(session->osd_info)); + memset(&session->huff_table, 0, sizeof(session->huff_table)); + memset(&session->sei_userdata, 0, sizeof(session->sei_userdata)); + memset(&session->color_desc, 0, sizeof(session->color_desc)); + + ret = mvx_mmu_construct(&session->mmu, session->dev); + if (ret != 0) + return ret; + + for (i = 0; i < MVX_DIR_MAX; i++) + INIT_LIST_HEAD(&session->port[i].buffer_queue); + + timer_setup(&session->watchdog_timer, watchdog_timeout, 0); + + INIT_WORK(&session->watchdog_work, watchdog_work); + + return 0; +} + +void mvx_session_destruct(struct mvx_session *session) +{ + /* Destruct the session object. */ + + MVX_SESSION_INFO(session, "Destroy session."); + + release_fw_bin(session); + mvx_mmu_destruct(&session->mmu); +} + +void mvx_session_get(struct mvx_session *session) +{ + kref_get(&session->isession.kref); +} + +int mvx_session_put(struct mvx_session *session) +{ + return kref_put(&session->isession.kref, session->isession.release); +} + +void mvx_session_get_formats(struct mvx_session *session, + enum mvx_direction dir, uint64_t *formats) +{ + uint64_t fw_formats; + + session->client_ops->get_formats(session->client_ops, dir, formats); + mvx_fw_cache_get_formats(session->cache, dir, &fw_formats); + + *formats &= fw_formats; +} + +int mvx_session_try_format(struct mvx_session *session, enum mvx_direction dir, + enum mvx_format format, unsigned int *width, + unsigned int *height, uint8_t *nplanes, + unsigned int *stride, unsigned int *size, + bool *interlaced) +{ + return try_format(session, dir, format, width, height, nplanes, stride, + size, interlaced); +} + +int mvx_session_set_format(struct mvx_session *session, enum mvx_direction dir, + enum mvx_format format, unsigned int *width, + unsigned int *height, uint8_t *nplanes, + unsigned int *stride, unsigned int *size, + bool *interlaced) +{ + struct mvx_session_port *port = &session->port[dir]; + int ret; + + if (session->error != 0) + return session->error; + + if (is_stream_on(session) != false) + return -EBUSY; + + ret = try_format(session, dir, format, width, height, nplanes, stride, + size, interlaced); + if (ret != 0) + return ret; + + /* + * If the bitstream format changes, then the firmware binary must be + * released. + */ + if (mvx_is_bitstream(port->format) != false && format != port->format) { + if (IS_ERR(session->fw_bin) != false) { + MVX_SESSION_WARN( + session, + "Can't set format when firmware binary is pending. dir=%d.", + dir); + return -EINVAL; + } + + release_fw_bin(session); + } + + /* Update port settings. */ + port->format = format; + port->width = *width; + port->height = *height; + port->nplanes = *nplanes; + port->interlaced = *interlaced; + memcpy(port->stride, stride, sizeof(*stride) * MVX_BUFFER_NPLANES); + memcpy(port->size, size, sizeof(*size) * MVX_BUFFER_NPLANES); + + /* TODO AFBC width will have to be provided by user space. */ + if (dir == MVX_DIR_INPUT) + port->afbc_width = DIV_ROUND_UP(*width, 16); + + /* Input dimensions dictate output dimensions. */ + if (dir == MVX_DIR_INPUT) { + struct mvx_session_port *p = &session->port[MVX_DIR_OUTPUT]; + (void)try_format(session, MVX_DIR_OUTPUT, p->format, &p->width, + &p->height, &p->nplanes, p->stride, p->size, + &p->interlaced); + } + + return 0; +} + +int mvx_session_qbuf(struct mvx_session *session, enum mvx_direction dir, + struct mvx_buffer *buf) +{ + int ret; + + if (session->error != 0) + return session->error; + + if (is_fw_loaded(session) == false || + session->port[dir].is_flushing != false) { + list_add_tail(&buf->head, &session->port[dir].buffer_queue); + return 0; + } + + ret = queue_buffer(session, dir, buf); + if (ret != 0) + return ret; + + ret = switch_in(session); + if (ret != 0) + return ret; + + return 0; +} + +int mvx_session_send_eos(struct mvx_session *session) +{ + struct mvx_session_port *port = &session->port[MVX_DIR_OUTPUT]; + struct mvx_buffer *buf; + + if (session->error != 0) + return session->error; + + if (is_fw_loaded(session) != false) + return fw_eos(session); + + if (list_empty(&port->buffer_queue) != false) { + MVX_SESSION_WARN( + session, + "Unable to signal EOS. Output buffer queue empty."); + return 0; + } + + buf = list_first_entry(&port->buffer_queue, struct mvx_buffer, head); + list_del(&buf->head); + + mvx_buffer_clear(buf); + buf->flags |= MVX_BUFFER_EOS; + + session->event(session, MVX_SESSION_EVENT_BUFFER, buf); + + return 0; +} + +int mvx_session_streamon(struct mvx_session *session, enum mvx_direction dir) +{ + enum mvx_direction bdir; + struct mvx_hw_ver hw_ver; + enum mvx_direction i; + int ret; + + MVX_SESSION_INFO(session, "Stream on. dir=%u.", dir); + + /* Verify that we don't enable an already activated port. */ + if (session->port[dir].stream_on != false) + return 0; + + session->port[dir].stream_on = true; + + /* Check that both ports are stream on. */ + if (!is_stream_on(session)) + return 0; + + /* Verify that a firmware binary load is not in progress. */ + if (IS_ERR(session->fw_bin)) { + ret = PTR_ERR(session->fw_bin); + goto disable_port; + } + + /* If a firmware binary is already loaded, then we are done. */ + if (session->fw_bin != NULL) { + ret = wait_pending(session); + if (ret != 0) + goto disable_port; + + ret = fw_state_change(session, MVX_FW_STATE_RUNNING); + if (ret != 0) + goto disable_port; + + return 0; + } + + bdir = get_bitstream_port(session); + if (bdir >= MVX_DIR_MAX) { + MVX_SESSION_WARN( + session, + "Session only support decoding and encoding, but not transcoding. input_format=%u, output_format=%u.", + session->port[MVX_DIR_INPUT].format, + session->port[MVX_DIR_OUTPUT].format); + ret = -EINVAL; + goto disable_port; + } + + /* Verify that client can handle input and output formats. */ + for (i = MVX_DIR_INPUT; i < MVX_DIR_MAX; i++) { + uint64_t formats; + + session->client_ops->get_formats(session->client_ops, i, + &formats); + + if (!mvx_test_bit(session->port[i].format, &formats)) { + MVX_SESSION_WARN( + session, + "Client cannot support requested formats. input_format=%u, output_format=%u.", + session->port[MVX_DIR_INPUT].format, + session->port[MVX_DIR_OUTPUT].format); + ret = -ENODEV; + goto disable_port; + } + } + + /* Increment session reference count and flag fw bin as pending. */ + mvx_session_get(session); + session->fw_bin = ERR_PTR(-EINPROGRESS); + session->client_ops->get_hw_ver(session->client_ops, &hw_ver); + + /* Requesting firmware binary to be loaded. */ + ret = mvx_fw_cache_get(session->cache, session->port[bdir].format, bdir, + &session->fw_event, &hw_ver, + session->isession.securevideo); + if (ret != 0) { + session->port[dir].stream_on = false; + session->fw_bin = NULL; + mvx_session_put(session); + return ret; + } + + return 0; + +disable_port: + session->port[dir].stream_on = false; + + return ret; +} + +int mvx_session_streamoff(struct mvx_session *session, enum mvx_direction dir) +{ + struct mvx_session_port *port = &session->port[dir]; + struct mvx_buffer *buf; + struct mvx_buffer *tmp; + int ret = 0; + + MVX_SESSION_INFO(session, "Stream off. dir=%u.", dir); + + port->stream_on = false; + + if (is_fw_loaded(session) != false) { + /* + * Flush the ports if at least one buffer has been queued + * since last flush. + */ + if (port->flushed == false && port->is_flushing == false) { + ret = wait_pending(session); + if (ret != 0) + goto dequeue_buffers; + if (!(dir == MVX_DIR_OUTPUT && + port->isreallocting == true)) { + ret = fw_state_change(session, + MVX_FW_STATE_STOPPED); + if (ret != 0) + goto dequeue_buffers; + + ret = fw_flush(session, dir); + if (ret != 0) + goto dequeue_buffers; + } + ret = wait_pending(session); + if (ret != 0) + goto dequeue_buffers; + + send_irq(session); + } + } +dequeue_buffers: + if (ret != 0) + session_unregister(session); + + /* Return buffers in pending queue. */ + list_for_each_entry_safe(buf, tmp, &port->buffer_queue, head) { + list_del(&buf->head); + session->event(session, MVX_SESSION_EVENT_BUFFER, buf); + } + + return 0; +} + +static void handle_fw_message(struct mvx_session *session, + struct mvx_fw_msg *msg) +{ + switch (msg->code) { + case MVX_FW_CODE_ALLOC_PARAM: { + struct mvx_session_port *input = &session->port[MVX_DIR_INPUT]; + struct mvx_session_port *output = + &session->port[MVX_DIR_OUTPUT]; + /* Update input port. */ + input->width = msg->alloc_param.width; + input->height = msg->alloc_param.height; + + try_format(session, MVX_DIR_INPUT, input->format, &input->width, + &input->height, &input->nplanes, input->stride, + input->size, &input->interlaced); + + /* + * Update output port. Set number of valid planes to 0 to force + * stride to be recalculated. + */ + + output->nplanes = 0; + output->afbc_alloc_bytes = msg->alloc_param.afbc_alloc_bytes; + output->afbc_width = msg->alloc_param.afbc_width; + try_format(session, MVX_DIR_OUTPUT, output->format, + &output->width, &output->height, &output->nplanes, + output->stride, output->size, &output->interlaced); + + MVX_SESSION_INFO( + session, + "Firmware rsp: Alloc param. width=%u, height=%u, nplanes=%u, size=[%u, %u, %u], stride=[%u, %u, %u], interlaced=%d.", + msg->alloc_param.width, msg->alloc_param.height, + output->nplanes, output->size[0], output->size[1], + output->size[2], output->stride[0], output->stride[1], + output->stride[2], output->interlaced); + session->event(session, MVX_SESSION_EVENT_PORT_CHANGED, + (void *)MVX_DIR_OUTPUT); + break; + } + case MVX_FW_CODE_BUFFER_GENERAL: { + struct mvx_buffer *buf = msg->buf; + + if (buf->dir == MVX_DIR_INPUT) { + session->port[buf->dir].buffer_count--; + session->event(session, MVX_SESSION_EVENT_BUFFER, buf); + } else { + if (mvx_is_frame(buf->format)) { + if (buf->general.header.type == + MVX_BUFFER_GENERAL_TYPE_AD_STATS) { + MVX_SESSION_INFO( + session, + "Firmware rsp: Buffer GENERAL. dir=%u, type=%u,frame_averages =0x%x thumbnail w/h=[%u, %u], ad_stats_flags=%x", + buf->dir, + buf->general.header.type, + buf->general.config.ad_stats + .frame_averages, + buf->general.config.ad_stats + .thumbnail_width, + buf->general.config.ad_stats + .thumbnail_height, + buf->general.config.ad_stats + .ad_stats_flags); + } + } + } + break; + } + case MVX_FW_CODE_BUFFER: { + struct mvx_buffer *buf = msg->buf; + struct mvx_session_port *output = + &session->port[MVX_DIR_OUTPUT]; + + /* + * There is no point to flush or invalidate input buffer + * after it was returned from the HW. + */ + if (buf->dir == MVX_DIR_OUTPUT && mvx_is_frame(buf->format)) { + if (!(buf->flags & MVX_BUFFER_FRAME_PRESENT)) { + int i = 0; + + for (i = 0; i < buf->nplanes; i++) { + if (output->size[i] > + mvx_buffer_size(buf, i) || + session->port[buf->dir] + .buffer_allocated < + session->port[buf->dir] + .buffer_min) { + buf->flags |= + MVX_BUFFER_FRAME_NEED_REALLOC; + //output->isreallocting = true; + } + } + } + } + if (buf->dir == MVX_DIR_OUTPUT && + session->port[MVX_DIR_INPUT].format == MVX_FORMAT_AV1 && + (buf->width != output->width || + buf->height != output->height)) { + uint32_t i; + uint32_t filled[MVX_BUFFER_NPLANES]; + uint32_t stride[MVX_BUFFER_NPLANES]; + + memset(filled, 0, sizeof(filled)); + memset(stride, 0, sizeof(stride)); + output->nplanes = 0; + mvx_buffer_frame_dim(output->format, buf->width, + buf->height, &output->nplanes, + stride, filled, + session->setting_stride); + for (i = 0; i < buf->nplanes; i++) { + (void)mvx_buffer_filled_set(buf, i, filled[i], + 0); + } + + MVX_SESSION_INFO( + session, + "Firmware rsp: Buffer. dir=%u, len=[%u, %u, %u], flags=0x%08x, eos=%u", + buf->dir, filled[0], filled[1], filled[2], + buf->flags, (buf->flags & MVX_BUFFER_EOS) != 0); + } + session->port[buf->dir].buffer_count--; + + MVX_SESSION_INFO( + session, + "Firmware rsp: Buffer. dir=%u, len=[%u, %u, %u], flags=0x%08x, eos=%u", + buf->dir, buf->planes[0].filled, buf->planes[1].filled, + buf->planes[2].filled, buf->flags, + (buf->flags & MVX_BUFFER_EOS) != 0); + if (buf->dir == MVX_DIR_OUTPUT) + mvx_buffer_synch(buf, DMA_FROM_DEVICE); + + session->event(session, MVX_SESSION_EVENT_BUFFER, buf); + break; + } + case MVX_FW_CODE_DISPLAY_SIZE: { + if (session->port[MVX_DIR_INPUT].format == MVX_FORMAT_AV1) { + uint32_t stride[MVX_BUFFER_NPLANES]; + uint32_t i; + struct mvx_session_port *output = + &session->port[MVX_DIR_OUTPUT]; + + output->nplanes = 0; + memset(stride, 0, sizeof(stride)); + mvx_buffer_frame_dim(output->format, + msg->disp_size.display_width, + msg->disp_size.display_height, + &output->nplanes, stride, + output->display_size, + session->setting_stride); + for (i = 0; i < MVX_BUFFER_NPLANES; i++) { + session->setting_stride[i] = max_t( + unsigned int, + session->setting_stride[i], stride[i]); + } + MVX_SESSION_INFO( + session, + "Firmware rsp: display size. len=[%u, %u, %u]", + output->display_size[0], + output->display_size[1], + output->display_size[2]); + } + break; + } + case MVX_FW_CODE_COLOR_DESC: { + MVX_SESSION_INFO(session, "Firmware rsp: Color desc."); + session->color_desc = msg->color_desc; + session->event(session, MVX_SESSION_EVENT_COLOR_DESC, NULL); + break; + } + case MVX_FW_CODE_ERROR: { + MVX_SESSION_WARN(session, + "Firmware rsp: Error. code=%u, message=%s.", + msg->error.error_code, msg->error.message); + + /* + * Release the dev session. It will prevent a dead session from + * blocking the scheduler. + */ + watchdog_stop(session); + session_unregister(session); + send_event_error(session, -EINVAL); + break; + } + case MVX_FW_CODE_FLUSH: { + MVX_SESSION_INFO(session, "Firmware rsp: Flushed. dir=%d.", + msg->flush.dir); + session->port[msg->flush.dir].is_flushing = false; + session->port[msg->flush.dir].flushed = true; + (void)queue_pending_buffers(session, msg->flush.dir); + break; + } + case MVX_FW_CODE_IDLE: { + int ret; + struct mvx_fw_msg msg_ack; + + MVX_SESSION_INFO(session, "Firmware rsp: Idle."); + + session->idle_count++; + + if (session->idle_count == 2) + fw_switch_out(session); + + msg_ack.code = MVX_FW_CODE_IDLE_ACK; + ret = session->fw.ops.put_message(&session->fw, &msg_ack); + if (ret == 0) + ret = send_irq(session); + + if (ret != 0) + send_event_error(session, ret); + + break; + } + case MVX_FW_CODE_JOB: { + MVX_SESSION_INFO(session, "Firmware rsp: Job."); + (void)fw_job(session, 1); + break; + } + case MVX_FW_CODE_PONG: + MVX_SESSION_INFO(session, "Firmware rsp: Pong."); + break; + case MVX_FW_CODE_SEQ_PARAM: { + struct mvx_session_port *p = &session->port[MVX_DIR_OUTPUT]; + + MVX_SESSION_INFO( + session, + "Firmware rsp: Seq param. planar={buffers_min=%u}, afbc={buffers_min=%u}, interlaced=%d.", + msg->seq_param.planar.buffers_min, + msg->seq_param.afbc.buffers_min, p->interlaced); + + if (mvx_is_afbc(p->format) != false) + p->buffer_min = msg->seq_param.afbc.buffers_min; + else + p->buffer_min = msg->seq_param.planar.buffers_min; + + (void)fw_flush(session, MVX_DIR_OUTPUT); + break; + } + case MVX_FW_CODE_SET_OPTION: { + MVX_SESSION_INFO(session, "Firmware rsp: Set option."); + break; + } + case MVX_FW_CODE_STATE_CHANGE: { + MVX_SESSION_INFO(session, + "Firmware rsp: State changed. old=%s, new=%s.", + state_to_string(session->fw_state), + state_to_string(msg->state)); + session->fw_state = msg->state; + break; + } + case MVX_FW_CODE_SWITCH_IN: { + watchdog_start(session, session_watchdog_timeout); + break; + } + case MVX_FW_CODE_SWITCH_OUT: { + MVX_SESSION_INFO(session, "Firmware rsp: Switched out."); + + watchdog_stop(session); + session->switched_in = false; + + if ((session->fw_state == MVX_FW_STATE_RUNNING && + session->idle_count < 2) || + session->fw.msg_pending > 0) + switch_in(session); + + break; + } + case MVX_FW_CODE_DUMP: + break; + case MVX_FW_CODE_DEBUG: + break; + case MVX_FW_CODE_UNKNOWN: { + print_debug(session); + break; + } + case MVX_FW_CODE_MAX: + break; + default: + MVX_SESSION_WARN(session, "Unknown fw msg code. code=%u.", + msg->code); + } +} + +void mvx_session_irq(struct mvx_if_session *isession) +{ + struct mvx_session *session = mvx_if_session_to_session(isession); + int ret; + + if (is_fw_loaded(session) == false) + return; + + ret = session->fw.ops.handle_rpc(&session->fw); + if (ret < 0) { + send_event_error(session, ret); + return; + } + + do { + struct mvx_fw_msg msg; + + watchdog_update(session, session_watchdog_timeout); + + ret = session->fw.ops.get_message(&session->fw, &msg); + if (ret < 0) { + session_unregister(session); + send_event_error(session, ret); + return; + } + + if (ret > 0) + handle_fw_message(session, &msg); + } while (ret > 0 && session->error == 0); + + ret = session->fw.ops.handle_fw_ram_print(&session->fw); + if (ret < 0) { + send_event_error(session, ret); + return; + } + + wake_up(&session->waitq); +} + +void mvx_session_port_show(struct mvx_session_port *port, struct seq_file *s) +{ + mvx_seq_printf(s, "mvx_session_port", 0, "%p\n", port); + mvx_seq_printf(s, "format", 1, "%08x\n", port->format); + mvx_seq_printf(s, "width", 1, "%u\n", port->width); + mvx_seq_printf(s, "height", 1, "%u\n", port->height); + mvx_seq_printf(s, "buffer_min", 1, "%u\n", port->buffer_min); + mvx_seq_printf(s, "buffer_count", 1, "%u\n", port->buffer_count); +} + +int mvx_session_set_securevideo(struct mvx_session *session, bool securevideo) +{ + if (session->error != 0) + return session->error; + + if (is_fw_loaded(session) != false) + return -EBUSY; + + session->isession.securevideo = securevideo; + + return 0; +} + +int mvx_session_set_frame_rate(struct mvx_session *session, int64_t frame_rate) +{ + int ret; + + if (session->error != 0) + return session->error; + + if (is_fw_loaded(session) != false) { + struct mvx_fw_set_option option; + + option.code = MVX_FW_SET_FRAME_RATE; + option.frame_rate = frame_rate; + ret = fw_set_option(session, &option); + if (ret != 0) + return ret; + } + + session->frame_rate = frame_rate; + + return 0; +} + +int mvx_session_set_rate_control(struct mvx_session *session, bool enabled) +{ + if (session->error != 0) + return session->error; + + session->rc_enabled = enabled; + + return 0; +} + +int mvx_session_set_bitrate(struct mvx_session *session, int bitrate) +{ + int ret; + + if (session->error != 0) + return session->error; + + session->target_bitrate = bitrate; + + if (is_fw_loaded(session) != false && session->rc_enabled != false) { + struct mvx_fw_set_option option; + + option.code = MVX_FW_SET_RATE_CONTROL; + option.rate_control.target_bitrate = session->target_bitrate; + option.rate_control.rate_control_mode = session->rc_type; + + ret = fw_set_option(session, &option); + if (ret != 0) + return ret; + } + + return 0; +} + +int mvx_session_set_bitrate_control(struct mvx_session *session, + struct mvx_buffer_param_rate_control *rc) +{ + int ret; + + if (session->error != 0) + return session->error; + + session->rc_type = rc->rate_control_mode; + session->target_bitrate = rc->target_bitrate; + session->maximum_bitrate = rc->maximum_bitrate; + if (is_fw_loaded(session) != false && + session->port[get_bitstream_port(session)].format != + MVX_FORMAT_JPEG) { + struct mvx_fw_set_option option; + + option.code = MVX_FW_SET_RATE_CONTROL; + option.rate_control.target_bitrate = rc->target_bitrate; + option.rate_control.rate_control_mode = rc->rate_control_mode; + if (rc->rate_control_mode == + MVX_OPT_RATE_CONTROL_MODE_C_VARIABLE) { + option.rate_control.maximum_bitrate = + rc->maximum_bitrate; + } + ret = fw_set_option(session, &option); + if (ret != 0) + return ret; + } + return 0; +} + +int mvx_session_set_crop_left(struct mvx_session *session, int32_t left) +{ + if (session->error != 0) + return session->error; + + session->crop_left = left; + + if (is_fw_loaded(session) != false) + return -EBUSY; + + return 0; +} + +int mvx_session_set_crop_right(struct mvx_session *session, int32_t right) +{ + if (session->error != 0) + return session->error; + + session->crop_right = right; + + if (is_fw_loaded(session) != false) + return -EBUSY; + + return 0; +} + +int mvx_session_set_crop_top(struct mvx_session *session, int32_t top) +{ + if (session->error != 0) + return session->error; + + session->crop_top = top; + + if (is_fw_loaded(session) != false) + return -EBUSY; + + return 0; +} + +int mvx_session_set_crop_bottom(struct mvx_session *session, int32_t bottom) +{ + if (session->error != 0) + return session->error; + + session->crop_bottom = bottom; + + if (is_fw_loaded(session) != false) + return -EBUSY; + + return 0; +} + +int mvx_session_set_rc_bit_i_mode(struct mvx_session *session, int val) +{ + if (session->error != 0) + return session->error; + + session->rc_bit_i_mode = val; + + if (is_fw_loaded(session) != false) + return -EBUSY; + + return 0; +} + +int mvx_session_set_rc_bit_i_ratio(struct mvx_session *session, int val) +{ + if (session->error != 0) + return session->error; + + session->rc_bit_i_ratio = val; + + if (is_fw_loaded(session) != false) + return -EBUSY; + + return 0; +} + +int mvx_session_set_inter_med_buf_size(struct mvx_session *session, int val) +{ + if (session->error != 0) + return session->error; + + session->inter_med_buf_size = val; + + if (is_fw_loaded(session) != false) + return -EBUSY; + + return 0; +} + +int mvx_session_set_svct3_level1_period(struct mvx_session *session, int val) +{ + if (session->error != 0) + return session->error; + + session->svct3_level1_period = val; + + if (is_fw_loaded(session) != false) + return -EBUSY; + + return 0; +} + +int mvx_session_set_nalu_format(struct mvx_session *session, + enum mvx_nalu_format fmt) +{ + if (session->error != 0) + return session->error; + + if (is_fw_loaded(session) != false) + return -EBUSY; + + session->nalu_format = fmt; + + return 0; +} + +int mvx_session_set_stream_escaping(struct mvx_session *session, + enum mvx_tristate status) +{ + if (session->error != 0) + return session->error; + + if (is_fw_loaded(session) != false) + return -EBUSY; + + session->stream_escaping = status; + + return 0; +} + +int mvx_session_set_profile(struct mvx_session *session, enum mvx_format format, + enum mvx_profile profile) +{ + if (session->error != 0) + return session->error; + + if (is_fw_loaded(session) != false) + return -EBUSY; + + session->profile[format] = profile; + + return 0; +} + +int mvx_session_set_level(struct mvx_session *session, enum mvx_format format, + enum mvx_level level) +{ + if (session->error != 0) + return session->error; + + if (is_fw_loaded(session) != false) + return -EBUSY; + + session->level[format] = level; + + return 0; +} + +int mvx_session_set_ignore_stream_headers(struct mvx_session *session, + enum mvx_tristate status) +{ + if (session->error != 0) + return session->error; + + if (is_fw_loaded(session) != false) + return -EBUSY; + + session->ignore_stream_headers = status; + + return 0; +} + +int mvx_session_set_frame_reordering(struct mvx_session *session, + enum mvx_tristate status) +{ + if (session->error != 0) + return session->error; + + if (is_fw_loaded(session) != false) + return -EBUSY; + + session->frame_reordering = status; + + return 0; +} + +int mvx_session_set_intbuf_size(struct mvx_session *session, int size) +{ + if (session->error != 0) + return session->error; + + if (is_fw_loaded(session) != false) + return -EBUSY; + + session->intbuf_size = size; + + return 0; +} + +int mvx_session_set_p_frames(struct mvx_session *session, int val) +{ + if (session->error != 0) + return session->error; + + if (is_fw_loaded(session) != false) + return -EBUSY; + + session->p_frames = val; + + return 0; +} + +int mvx_session_set_b_frames(struct mvx_session *session, int val) +{ + if (session->error != 0) + return session->error; + + if (is_fw_loaded(session) != false) + return -EBUSY; + + session->b_frames = val; + + return 0; +} + +int mvx_session_set_gop_type(struct mvx_session *session, + enum mvx_gop_type gop_type) +{ + if (session->error != 0) + return session->error; + + if (is_fw_loaded(session) != false) + return -EBUSY; + + session->gop_type = gop_type; + + return 0; +} + +int mvx_session_set_cyclic_intra_refresh_mb(struct mvx_session *session, + int val) +{ + if (session->error != 0) + return session->error; + + if (is_fw_loaded(session) != false) + return -EBUSY; + + session->cyclic_intra_refresh_mb = val; + return 0; +} + +int mvx_session_set_constr_ipred(struct mvx_session *session, + enum mvx_tristate status) +{ + if (session->error != 0) + return session->error; + + if (is_fw_loaded(session) != false) + return -EBUSY; + + session->constr_ipred = status; + + return 0; +} + +int mvx_session_set_entropy_sync(struct mvx_session *session, + enum mvx_tristate status) +{ + if (session->error != 0) + return session->error; + + if (is_fw_loaded(session) != false) + return -EBUSY; + + session->entropy_sync = status; + + return 0; +} + +int mvx_session_set_temporal_mvp(struct mvx_session *session, + enum mvx_tristate status) +{ + if (session->error != 0) + return session->error; + + if (is_fw_loaded(session) != false) + return -EBUSY; + + session->temporal_mvp = status; + + return 0; +} + +int mvx_session_set_tile_rows(struct mvx_session *session, int val) +{ + if (session->error != 0) + return session->error; + + if (is_fw_loaded(session) != false) + return -EBUSY; + + session->tile_rows = val; + + return 0; +} + +int mvx_session_set_tile_cols(struct mvx_session *session, int val) +{ + if (session->error != 0) + return session->error; + + if (is_fw_loaded(session) != false) + return -EBUSY; + + session->tile_cols = val; + + return 0; +} + +int mvx_session_set_min_luma_cb_size(struct mvx_session *session, int val) +{ + if (session->error != 0) + return session->error; + + if (is_fw_loaded(session) != false) + return -EBUSY; + + if (val == 8 || val == 16) + session->min_luma_cb_size = val; + else + session->min_luma_cb_size = 0; + + return 0; +} + +int mvx_session_set_mb_mask(struct mvx_session *session, int val) +{ + /* + * This controls is not implemented. + */ + if (session->error != 0) + return session->error; + + if (is_fw_loaded(session) != false) + return -EBUSY; + + session->mb_mask = val; + + return 0; +} + +int mvx_session_set_entropy_mode(struct mvx_session *session, + enum mvx_entropy_mode mode) +{ + if (session->error != 0) + return session->error; + + if (is_fw_loaded(session) != false) + return -EBUSY; + + session->entropy_mode = mode; + + return 0; +} + +int mvx_session_set_multi_slice_mode(struct mvx_session *session, + enum mvx_multi_slice_mode mode) +{ + if (session->error != 0) + return session->error; + + if (is_fw_loaded(session) != false) + return -EBUSY; + + session->multi_slice_mode = mode; + + return 0; +} + +int mvx_session_set_multi_slice_max_mb(struct mvx_session *session, int val) +{ + if (session->error != 0) + return session->error; + + if (is_fw_loaded(session) != false) + return -EBUSY; + + session->multi_slice_max_mb = val; + + return 0; +} + +int mvx_session_set_vp9_prob_update(struct mvx_session *session, + enum mvx_vp9_prob_update mode) +{ + if (session->error != 0) + return session->error; + + if (is_fw_loaded(session) != false) + return -EBUSY; + + session->vp9_prob_update = mode; + + return 0; +} + +int mvx_session_set_mv_h_search_range(struct mvx_session *session, int val) +{ + if (session->error != 0) + return session->error; + + if (is_fw_loaded(session) != false) + return -EBUSY; + + session->mv_h_search_range = val; + + return 0; +} + +int mvx_session_set_mv_v_search_range(struct mvx_session *session, int val) +{ + if (session->error != 0) + return session->error; + + if (is_fw_loaded(session) != false) + return -EBUSY; + + session->mv_v_search_range = val; + + return 0; +} + +int mvx_session_set_bitdepth_chroma(struct mvx_session *session, int val) +{ + if (session->error != 0) + return session->error; + + if (is_fw_loaded(session) != false) + return -EBUSY; + + session->bitdepth_chroma = val; + + return 0; +} + +int mvx_session_set_bitdepth_luma(struct mvx_session *session, int val) +{ + if (session->error != 0) + return session->error; + + if (is_fw_loaded(session) != false) + return -EBUSY; + + session->bitdepth_luma = val; + + return 0; +} + +int mvx_session_set_force_chroma_format(struct mvx_session *session, int val) +{ + if (session->error != 0) + return session->error; + + if (is_fw_loaded(session) != false) + return -EBUSY; + + session->force_chroma_format = val; + + return 0; +} + +int mvx_session_set_rgb_to_yuv_mode(struct mvx_session *session, + enum mvx_rgb_to_yuv_mode mode) +{ + if (mode == MVX_RGB_TO_YUV_MODE_MAX) + return 0; + if (session->error != 0) + return session->error; + + if (is_fw_loaded(session) != false) + return -EBUSY; + + session->rgb_to_yuv = mode; + session->use_cust_rgb_to_yuv_mode = MVX_CUST_YUV2RGB_MODE_STANDARD; + + return 0; +} + +int mvx_session_set_band_limit(struct mvx_session *session, int val) +{ + if (session->error != 0) + return session->error; + + if (is_fw_loaded(session) != false) + return -EBUSY; + + session->band_limit = val; + + return 0; +} + +int mvx_session_set_cabac_init_idc(struct mvx_session *session, int val) +{ + if (session->error != 0) + return session->error; + + if (is_fw_loaded(session) != false) + return -EBUSY; + + session->cabac_init_idc = val; + + return 0; +} + +int mvx_session_set_i_frame_qp(struct mvx_session *session, enum mvx_format fmt, + int qp) +{ + int ret; + + if (session->error != 0) + return session->error; + + if (is_fw_loaded(session) != false) { + enum mvx_direction dir = get_bitstream_port(session); + + fmt = session->port[dir].format; + ret = fw_set_qp(session, MVX_FW_SET_QP_I, qp); + if (ret != 0) + return ret; + } + + session->qp[fmt].i_frame = qp; + + return 0; +} + +int mvx_session_set_p_frame_qp(struct mvx_session *session, enum mvx_format fmt, + int qp) +{ + int ret; + + if (session->error != 0) + return session->error; + + if (is_fw_loaded(session) != false) { + enum mvx_direction dir = get_bitstream_port(session); + + fmt = session->port[dir].format; + ret = fw_set_qp(session, MVX_FW_SET_QP_P, qp); + if (ret != 0) + return ret; + } + + session->qp[fmt].p_frame = qp; + + return 0; +} + +int mvx_session_set_b_frame_qp(struct mvx_session *session, enum mvx_format fmt, + int qp) +{ + int ret; + + if (session->error != 0) + return session->error; + + if (is_fw_loaded(session) != false) { + enum mvx_direction dir = get_bitstream_port(session); + + fmt = session->port[dir].format; + ret = fw_set_qp(session, MVX_FW_SET_QP_B, qp); + if (ret != 0) + return ret; + } + + session->qp[fmt].b_frame = qp; + + return 0; +} + +int mvx_session_set_min_qp(struct mvx_session *session, enum mvx_format fmt, + int qp) +{ + int ret; + + if (session->error != 0) + return session->error; + + if (is_fw_loaded(session) != false) { + struct mvx_fw_set_option option; + enum mvx_direction dir = get_bitstream_port(session); + int codec = session->port[dir].format; + + option.code = MVX_FW_SET_QP_RANGE; + option.qp_range.min = qp; + option.qp_range.max = session->qp[codec].max; + ret = fw_set_option(session, &option); + if (ret != 0) + return ret; + } + + session->qp[fmt].min = qp; + + return 0; +} + +int mvx_session_set_max_qp(struct mvx_session *session, enum mvx_format fmt, + int qp) +{ + int ret; + + if (session->error != 0) + return session->error; + + if (is_fw_loaded(session) != false) { + struct mvx_fw_set_option option; + enum mvx_direction dir = get_bitstream_port(session); + int codec = session->port[dir].format; + + option.code = MVX_FW_SET_QP_RANGE; + option.qp_range.min = session->qp[codec].min; + option.qp_range.max = qp; + ret = fw_set_option(session, &option); + if (ret != 0) + return ret; + } + + session->qp[fmt].max = qp; + + return 0; +} + +int mvx_session_set_resync_interval(struct mvx_session *session, int val) +{ + if (session->error != 0) + return session->error; + + if (is_fw_loaded(session) != false) + return -EBUSY; + + session->resync_interval = val; + + return 0; +} + +int mvx_session_set_jpeg_quality(struct mvx_session *session, int val) +{ + if (session->error != 0) + return session->error; + + if (is_fw_loaded(session) != false) + return -EBUSY; + + session->jpeg_quality = val; + + return 0; +} + +int mvx_session_set_jpeg_quality_luma(struct mvx_session *session, int val) +{ + if (session->error != 0) + return session->error; + + if (is_fw_loaded(session) != false) + return -EBUSY; + + session->jpeg_quality_luma = val; + + return 0; +} + +int mvx_session_set_jpeg_quality_chroma(struct mvx_session *session, int val) +{ + if (session->error != 0) + return session->error; + + if (is_fw_loaded(session) != false) + return -EBUSY; + + session->jpeg_quality_chroma = val; + + return 0; +} + +int mvx_session_get_color_desc(struct mvx_session *session, + struct mvx_fw_color_desc *color_desc) +{ + *color_desc = session->color_desc; + return 0; +} + +int mvx_session_set_color_desc(struct mvx_session *session, + struct mvx_fw_color_desc *color_desc) +{ + int ret = 0; + + if (session->error != 0) + return session->error; + + session->color_desc = *color_desc; + if (is_fw_loaded(session) != false) { + struct mvx_fw_set_option option; + + option.code = MVX_FW_SET_COLOUR_DESC; + option.colour_desc = *color_desc; + ret = fw_set_option(session, &option); + if (ret != 0) + return ret; + } + return 0; +} + +int mvx_session_set_osd_config(struct mvx_session *session, + struct mvx_osd_config *osd) +{ + int ret = 0; + int osd_cfg_num = 0; + + if (is_fw_loaded(session) == false || + session->port[MVX_DIR_INPUT].is_flushing != false) { + osd_cfg_num = session->port[MVX_DIR_INPUT].osd_cfg_num; + if (osd_cfg_num < MVX_ROI_QP_NUMS) { + MVX_SESSION_INFO( + session, + "fw is not ready!!!, pending osd num:%d", + osd_cfg_num); + session->port[MVX_DIR_INPUT].osd_cfg_queue[osd_cfg_num] = + *osd; + session->port[MVX_DIR_INPUT].osd_cfg_num++; + } else { + MVX_SESSION_ERR( + session, + "fw is not ready for long time, too many osd pending:%d", + osd_cfg_num); + } + return 0; + } + ret = queue_osd_config(session, osd); + return ret; +} + +int mvx_session_set_osd_info(struct mvx_session *session, + struct mvx_osd_info *osd) +{ + session->osd_info = *osd; + return 0; +}; + +int mvx_session_set_roi_regions(struct mvx_session *session, + struct mvx_roi_config *roi) +{ + int ret = 0; + int roi_config_num = 0; + + if (is_fw_loaded(session) == false || + session->port[MVX_DIR_INPUT].is_flushing != false) { + roi_config_num = session->port[MVX_DIR_INPUT].roi_config_num; + if (roi_config_num < MVX_ROI_QP_NUMS) { + MVX_SESSION_INFO( + session, + "fw is not ready!!!, pending roi num:%d", + roi_config_num); + session->port[MVX_DIR_INPUT] + .roi_config_queue[roi_config_num] = *roi; + session->port[MVX_DIR_INPUT].roi_config_num++; + } else { + MVX_SESSION_ERR( + session, + "fw is not ready for long time, too many roi pending:%d", + roi_config_num); + } + return 0; + } + ret = queue_roi_regions(session, roi); + return 0; +} + +int mvx_session_set_qp_epr(struct mvx_session *session, + struct mvx_buffer_param_qp *qp) +{ + int ret = 0; + int qp_num = 0; + + if (is_fw_loaded(session) == false || + session->port[MVX_DIR_INPUT].is_flushing != false) { + qp_num = session->port[MVX_DIR_INPUT].qp_num; + if (qp_num < MVX_ROI_QP_NUMS) { + MVX_SESSION_WARN( + session, + "fw is not ready!!!, pending qp num:%d", + qp_num); + session->port[MVX_DIR_INPUT].qp_queue[qp_num] = *qp; + session->port[MVX_DIR_INPUT].qp_num++; + } else { + MVX_SESSION_ERR( + session, + "fw is not ready for long time, too many qp pending:%d", + qp_num); + } + return 0; + } + ret = queue_qp_epr(session, qp); + return 0; +} + +int mvx_session_set_sei_userdata(struct mvx_session *session, + struct mvx_sei_userdata *userdata) +{ + int ret = 0; + + if (session->error != 0) + return session->error; + + session->sei_userdata = *userdata; + if (is_fw_loaded(session) != false) { + struct mvx_fw_set_option option; + + option.code = MVX_FW_SET_SEI_USERDATA; + option.userdata = *userdata; + ret = fw_set_option(session, &option); + if (ret != 0) + return ret; + } + return ret; +} + +int mvx_session_set_hrd_buffer_size(struct mvx_session *session, int size) +{ + int ret; + + if (session->error != 0) + return session->error; + + session->nHRDBufsize = size; + + if (is_fw_loaded(session) != false) { + struct mvx_fw_set_option option; + + option.code = MVX_FW_SET_HRD_BUF_SIZE; + option.nHRDBufsize = size; + ret = fw_set_option(session, &option); + if (ret != 0) + return ret; + } + return 0; +} + +int mvx_session_set_dsl_frame(struct mvx_session *session, + struct mvx_dsl_frame *dsl) +{ + if (session->error != 0) + return session->error; + + session->dsl_frame.width = dsl->width; + session->dsl_frame.height = dsl->height; + if (is_fw_loaded(session) != false) + return -EBUSY; + + return 0; +} + +int mvx_session_set_dsl_ratio(struct mvx_session *session, + struct mvx_dsl_ratio *dsl) +{ + if (session->error != 0) + return session->error; + + session->dsl_ratio.hor = dsl->hor; + session->dsl_ratio.ver = dsl->ver; + return 0; +} + +int mvx_session_set_long_term_ref(struct mvx_session *session, + struct mvx_long_term_ref *ltr) +{ + if (session->error != 0) + return session->error; + + if (is_fw_loaded(session) != false) + return -EBUSY; + + session->mvx_ltr.mode = ltr->mode; + session->mvx_ltr.period = ltr->period; + return 0; +} + +int mvx_session_set_dsl_mode(struct mvx_session *session, int *mode) +{ + if (session->error != 0) + return session->error; + + if (is_fw_loaded(session) != false) + return -EBUSY; + + session->dsl_pos_mode = *mode; + + return 0; +} + +int mvx_session_set_mini_frame_height(struct mvx_session *session, int *height) +{ + if (session->error != 0) + return session->error; + + if (is_fw_loaded(session) != false) + return -EBUSY; + + session->mini_frame_height = *height; + return 0; +} + +int mvx_session_set_stats_mode(struct mvx_session *session, + struct mvx_enc_stats *stats) +{ + int ret = 0; + int enc_stats_num = 0; + + if (is_fw_loaded(session) == false || + session->port[MVX_DIR_INPUT].is_flushing != false) { + enc_stats_num = session->port[MVX_DIR_INPUT].enc_stats_num; + if (enc_stats_num < MVX_ROI_QP_NUMS) { + MVX_SESSION_INFO( + session, + "fw is not ready!!!, pending enc stats num:%d", + enc_stats_num); + session->port[MVX_DIR_INPUT] + .enc_stats_queue[enc_stats_num] = *stats; + session->port[MVX_DIR_INPUT].enc_stats_num++; + } else { + MVX_SESSION_ERR( + session, + "fw is not ready for long time, too many enc stats pending:%d", + enc_stats_num); + } + return 0; + } + ret = queue_enc_stats(session, stats); + return ret; +} + +int mvx_session_set_chr_cfg(struct mvx_session *session, + struct mvx_chr_cfg *chr_cfg) +{ + int ret = 0; + int chr_cfg_num = 0; + + if (is_fw_loaded(session) == false || + session->port[MVX_DIR_INPUT].is_flushing != false) { + chr_cfg_num = session->port[MVX_DIR_INPUT].chr_cfg_num; + if (chr_cfg_num < MVX_ROI_QP_NUMS) { + MVX_SESSION_INFO( + session, + "fw is not ready!!!, pending chr cfg num:%d", + chr_cfg_num); + session->port[MVX_DIR_INPUT].chr_cfg_queue[chr_cfg_num] = + *chr_cfg; + session->port[MVX_DIR_INPUT].chr_cfg_num++; + } else { + MVX_SESSION_ERR( + session, + "fw is not ready for long time, too many chr cfg pending:%d", + chr_cfg_num); + } + return 0; + } + ret = queue_chr_cfg(session, chr_cfg); + return ret; +} + +int mvx_session_set_huff_table(struct mvx_session *session, + struct mvx_huff_table *table) +{ + if (is_fw_loaded(session) != false) + return -EBUSY; + memcpy(&session->huff_table, table, sizeof(struct mvx_huff_table)); + return 0; +} + +int mvx_session_set_seamless_target(struct mvx_session *session, + struct mvx_seamless_target *seamless) +{ + if (is_fw_loaded(session) != false) + return -EBUSY; + memcpy(&session->seamless_target, seamless, + sizeof(struct mvx_seamless_target)); + return 0; +} + +int mvx_session_set_init_qp_i(struct mvx_session *session, int val) +{ + if (session->error != 0) + return session->error; + + if (is_fw_loaded(session) != false) + return -EBUSY; + + session->init_qpi = val; + + return 0; +} + +int mvx_session_set_init_qp_p(struct mvx_session *session, int val) +{ + if (session->error != 0) + return session->error; + + if (is_fw_loaded(session) != false) + return -EBUSY; + + session->init_qpp = val; + + return 0; +} + +int mvx_session_set_sao_luma(struct mvx_session *session, int val) +{ + if (session->error != 0) + return session->error; + + if (is_fw_loaded(session) != false) + return -EBUSY; + + session->sao_luma = val; + + return 0; +} + +int mvx_session_set_sao_chroma(struct mvx_session *session, int val) +{ + if (session->error != 0) + return session->error; + + if (is_fw_loaded(session) != false) + return -EBUSY; + + session->sao_chroma = val; + + return 0; +} + +int mvx_session_set_delta_I_P(struct mvx_session *session, int val) +{ + if (session->error != 0) + return session->error; + + if (is_fw_loaded(session) != false) + return -EBUSY; + + session->qp_delta_i_p = val; + + return 0; +} + +int mvx_session_set_ref_rb_eb(struct mvx_session *session, int val) +{ + if (session->error != 0) + return session->error; + + if (is_fw_loaded(session) != false) + return -EBUSY; + + session->ref_rb_en = val; + + return 0; +} + +int mvx_session_set_rc_clip_top(struct mvx_session *session, int val) +{ + if (session->error != 0) + return session->error; + + if (is_fw_loaded(session) != false) + return -EBUSY; + + session->rc_qp_clip_top = val; + + return 0; +} + +int mvx_session_set_rc_clip_bot(struct mvx_session *session, int val) +{ + if (session->error != 0) + return session->error; + + if (is_fw_loaded(session) != false) + return -EBUSY; + + session->rc_qp_clip_bot = val; + + return 0; +} + +int mvx_session_set_qpmap_clip_top(struct mvx_session *session, int val) +{ + if (session->error != 0) + return session->error; + + if (is_fw_loaded(session) != false) + return -EBUSY; + + session->qpmap_qp_clip_top = val; + + return 0; +} + +int mvx_session_set_qpmap_clip_bot(struct mvx_session *session, int val) +{ + if (session->error != 0) + return session->error; + + if (is_fw_loaded(session) != false) + return -EBUSY; + + session->qpmap_qp_clip_bot = val; + + return 0; +} +int mvx_session_set_max_qp_i(struct mvx_session *session, int val) +{ + if (session->error != 0) + return session->error; + + if (is_fw_loaded(session) != false) { + int ret; + struct mvx_fw_set_option option; + + option.code = MVX_FW_SET_QP_RANGE_I; + option.qp_range.min = session->min_qp_i; + option.qp_range.max = val; + ret = fw_set_option(session, &option); + if (ret != 0) + return ret; + } + session->max_qp_i = val; + + return 0; +} + +int mvx_session_set_min_qp_i(struct mvx_session *session, int val) +{ + if (session->error != 0) + return session->error; + + if (is_fw_loaded(session) != false) { + int ret; + struct mvx_fw_set_option option; + + option.code = MVX_FW_SET_QP_RANGE_I; + option.qp_range.min = val; + option.qp_range.max = session->max_qp_i; + ret = fw_set_option(session, &option); + if (ret != 0) + return ret; + } + + session->min_qp_i = val; + + return 0; +} + +int mvx_session_set_fixedqp(struct mvx_session *session, int val) +{ + if (session->error != 0) + return session->error; + + if (is_fw_loaded(session) != false) + return -EBUSY; + + session->fixedqp = val; + + return 0; +} +int mvx_session_set_fw_profiling(struct mvx_session *session, int val) +{ + if (session->error != 0) + return session->error; + + if (is_fw_loaded(session) != false) + return -EBUSY; + + session->profiling = val; + + return 0; +} + +int mvx_session_set_visible_width(struct mvx_session *session, int val) +{ + if (session->error != 0) + return session->error; + + session->visible_width = val; + + return 0; +} + +int mvx_session_set_visible_height(struct mvx_session *session, int val) +{ + if (session->error != 0) + return session->error; + + session->visible_height = val; + + return 0; +} + +int mvx_session_set_gop_reset_pframes(struct mvx_session *session, int val) +{ + if (session->error != 0) + return session->error; + + if (is_fw_loaded(session) != false) { + int ret; + struct mvx_fw_set_option option; + + option.code = MVX_FW_SET_GOP_PFRAMES; + option.reset_gop_pframes = val; + ret = fw_set_option(session, &option); + if (ret != 0) + return ret; + } + + session->reset_gop_pframes = val; + return 0; +} + +int mvx_session_set_ltr_reset_period(struct mvx_session *session, int val) +{ + if (session->error != 0) + return session->error; + + if (is_fw_loaded(session) != false) { + int ret; + struct mvx_fw_set_option option; + + option.code = MVX_FW_SET_LTR_PERIOD; + option.reset_ltr_period = val; + ret = fw_set_option(session, &option); + if (ret != 0) + return ret; + } + + session->reset_ltr_period = val; + return 0; +} + +int mvx_session_set_gdr_number(struct mvx_session *session, int val) +{ + if (session->error != 0) + return session->error; + + if (is_fw_loaded(session) != false) + return -EBUSY; + + session->gdr_number = val; + + return 0; +} + +int mvx_session_set_gdr_period(struct mvx_session *session, int val) +{ + if (session->error != 0) + return session->error; + + if (is_fw_loaded(session) != false) + return -EBUSY; + + session->gdr_period = val; + + return 0; +} + +int mvx_session_set_multi_sps_pps(struct mvx_session *session, int val) +{ + if (session->error != 0) + return session->error; + + if (is_fw_loaded(session) != false) + return -EBUSY; + + session->multi_sps_pps = val; + + return 0; +} + +int mvx_session_set_enable_visual(struct mvx_session *session, int val) +{ + if (session->error != 0) + return session->error; + + if (is_fw_loaded(session) != false) + return -EBUSY; + + session->enable_visual = val; + + return 0; +} + +int mvx_session_set_adaptive_intra_block(struct mvx_session *session, int val) +{ + if (session->error != 0) + return session->error; + + if (is_fw_loaded(session) != false) + return -EBUSY; + + session->adaptive_intra_block = val; + + return 0; +} + +int mvx_session_set_scd_enable(struct mvx_session *session, int val) +{ + if (session->error != 0) + return session->error; + + if (is_fw_loaded(session) != false) + return -EBUSY; + + session->scd_enable = val; + + return 0; +} + +int mvx_session_set_scd_percent(struct mvx_session *session, int val) +{ + if (session->error != 0) + return session->error; + + if (is_fw_loaded(session) != false) + return -EBUSY; + + session->scd_percent = val; + + return 0; +} + +int mvx_session_set_scd_threshold(struct mvx_session *session, int val) +{ + if (session->error != 0) + return session->error; + + if (is_fw_loaded(session) != false) + return -EBUSY; + + session->scd_threshold = val; + + return 0; +} + +int mvx_session_set_aq_ssim_en(struct mvx_session *session, int val) +{ + if (session->error != 0) + return session->error; + + if (is_fw_loaded(session) != false) + return -EBUSY; + + session->aq_ssim_en = val; + + return 0; +} + +int mvx_session_set_aq_neg_ratio(struct mvx_session *session, int val) +{ + if (session->error != 0) + return session->error; + + if (is_fw_loaded(session) != false) + return -EBUSY; + + session->aq_neg_ratio = val; + + return 0; +} + +int mvx_session_set_aq_pos_ratio(struct mvx_session *session, int val) +{ + if (session->error != 0) + return session->error; + + if (is_fw_loaded(session) != false) + return -EBUSY; + + session->aq_pos_ratio = val; + + return 0; +} + +int mvx_session_set_aq_qpdelta_lmt(struct mvx_session *session, int val) +{ + if (session->error != 0) + return session->error; + + if (is_fw_loaded(session) != false) + return -EBUSY; + + session->aq_qpdelta_lmt = val; + + return 0; +} + +int mvx_session_set_aq_init_frm_avg_svar(struct mvx_session *session, int val) +{ + if (session->error != 0) + return session->error; + + if (is_fw_loaded(session) != false) + return -EBUSY; + + session->aq_init_frm_avg_svar = val; + + return 0; +} + +int mvx_session_set_color_conversion(struct mvx_session *session, + enum mvx_yuv_to_rgb_mode mode) +{ + if (session->error != 0) + return session->error; + + if (is_fw_loaded(session) != false) + return -EBUSY; + session->color_conv_mode = mode; + session->use_cust_color_conv_coef = false; + + return 0; +} + +int mvx_session_set_color_conversion_ceof(struct mvx_session *session, + struct mvx_color_conv_coef *conv_coef) +{ + if (session->error != 0) + return session->error; + + if (is_fw_loaded(session) != false) + return -EBUSY; + + memcpy(&session->color_conv_coef, conv_coef, + sizeof(struct mvx_color_conv_coef)); + session->use_cust_color_conv_coef = true; + + return 0; +} + +int mvx_session_set_rgb_conv_yuv_coef( + struct mvx_session *session, + struct mvx_rgb2yuv_color_conv_coef *conv_coef) +{ + if (session->error != 0) + return session->error; + if (is_fw_loaded(session) != false) + return -EBUSY; + + memcpy(&session->rgb2yuv_color_conv_coef, conv_coef, + sizeof(struct mvx_rgb2yuv_color_conv_coef)); + session->use_cust_color_conv_coef = true; + session->use_cust_rgb_to_yuv_mode = MVX_CUST_YUV2RGB_MODE_CUSTOMIZED; + + return 0; +} + +int mvx_session_set_forced_uv_value(struct mvx_session *session, int val) +{ + if (session->error != 0) + return session->error; + + if (is_fw_loaded(session) != false) + return -EBUSY; + + session->forced_uv_value = val; + + return 0; +} + +int mvx_session_set_dsl_interpolation_mode(struct mvx_session *session, + int mode) +{ + if (session->error != 0) + return session->error; + + if (is_fw_loaded(session) != false) + return -EBUSY; + + session->dsl_interp_mode = mode; + + return 0; +} + +int mvx_session_set_disabled_features(struct mvx_session *session, int val) +{ + if (session->error != 0) + return session->error; + + if (is_fw_loaded(session) != false) + return -EBUSY; + + session->disabled_features = val; + + return 0; +} + +int mvx_session_set_change_pos(struct mvx_session *session, int val) +{ + if (session->error != 0) + return session->error; + + if (is_fw_loaded(session) != false) + return -EBUSY; + + session->change_pos = val; + + return 0; +} + +int mvx_session_set_enc_src_crop(struct mvx_session *session, + struct mvx_crop_cfg *crop) +{ + if (session->error != 0) + return session->error; + + if (is_fw_loaded(session) != false) + return -EBUSY; + + memcpy(&session->enc_src_crop, crop, sizeof(struct mvx_crop_cfg)); + + return 0; +} + +int mvx_session_set_dec_dst_crop(struct mvx_session *session, + struct mvx_crop_cfg *crop) +{ + if (session->error != 0) + return session->error; + + if (is_fw_loaded(session) != false) + return -EBUSY; + + memcpy(&session->dec_dst_crop, crop, sizeof(struct mvx_crop_cfg)); + + return 0; +} diff --git a/drivers/media/platform/canaan/vpu/mvx_session.h b/drivers/media/platform/canaan/vpu/mvx_session.h new file mode 100644 index 0000000000000..cfa8fa8d40a43 --- /dev/null +++ b/drivers/media/platform/canaan/vpu/mvx_session.h @@ -0,0 +1,1216 @@ +/* SPDX-License-Identifier: GPL-2.0-only + * The confidential and proprietary information contained in this file may + * only be used by a person authorised under and to the extent permitted + * by a subsisting licensing agreement from Arm Technology (China) Co., Ltd. + * + * (C) COPYRIGHT 2021-2021 Arm Technology (China) Co., Ltd. + * ALL RIGHTS RESERVED + * + * This entire notice must be reproduced on all copies of this file + * and copies of this file may only be made by a person if such person is + * permitted to do so under the terms of a subsisting license agreement + * from Arm Technology (China) Co., Ltd. + * + * 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. + * + */ + +#ifndef _MVX_SESSION_H_ +#define _MVX_SESSION_H_ + +/**************************************************************************** + * Includes + ****************************************************************************/ + +#include +#include +#include +#include +#include +#include "mvx_buffer.h" +#include "mvx_firmware.h" +#include "mvx_firmware_cache.h" +#include "mvx_if.h" +#include "mvx_log_group.h" + +/**************************************************************************** + * Defines + ****************************************************************************/ + +#define MVX_SESSION_LOG(severity, session, msg, ...) \ + MVX_LOG_PRINT_SESSION(&mvx_log_session_if, severity, session, msg, \ + ##__VA_ARGS__) + +#define MVX_SESSION_VERBOSE(session, msg, ...) \ + MVX_SESSION_LOG(MVX_LOG_VERBOSE, session, msg, ##__VA_ARGS__) + +#define MVX_SESSION_DEBUG(session, msg, ...) \ + MVX_SESSION_LOG(MVX_LOG_DEBUG, session, msg, ##__VA_ARGS__) + +#define MVX_SESSION_INFO(session, msg, ...) \ + MVX_SESSION_LOG(MVX_LOG_INFO, session, msg, ##__VA_ARGS__) + +#define MVX_SESSION_WARN(session, msg, ...) \ + MVX_SESSION_LOG(MVX_LOG_WARNING, session, msg, ##__VA_ARGS__) + +#define MVX_SESSION_ERR(session, msg, ...) \ + MVX_SESSION_LOG(MVX_LOG_ERROR, session, msg, ##__VA_ARGS__) + +/**************************************************************************** + * Types + ****************************************************************************/ + +struct device; +struct file; +struct mvx_csched; +struct mvx_fw_cache; +struct poll_table_struct; + +/** + * enum mvx_session_event - Session events. + * @MVX_SESSION_EVENT_BUFFER: struct mvx_buffer. + * @MVX_SESSION_EVENT_PORT_CHANGED: enum mvx_direction. + * @MVX_SESSION_EVENT_COLOR_DESC: struct mvx_fw_color_desc. + * @MVX_SESSION_EVENT_ERROR: void + */ +enum mvx_session_event { + MVX_SESSION_EVENT_BUFFER, + MVX_SESSION_EVENT_PORT_CHANGED, + MVX_SESSION_EVENT_COLOR_DESC, + MVX_SESSION_EVENT_ERROR +}; + +/** + * struct mvx_session_port - Session input and output port settings. + * @format: Port format. + * @width: Width in pixels. + * @height: Height in pixels. + * @nplanes: Number for planes for current format. + * @stride: Stride per line in bytes for each plane. + * @size: Size in bytes for each plane. + * @afbc_alloc_bytes: Minimum number of bytes required for AFBC. + * @afbc_width: AFBC width in superblocks. + * @stream_on: Boolean if the port has been enabled. + * @buffer_min: Minimum number of buffers required. + * @buffer_count: Number of buffers currently queued to firmware. + * @buffer_queue: Buffers waiting to be queued to the firmware. + * @is_flushing: Set true when port is waiting for a fw flush confirm. + * @flushed: Port has been flushed an no buffers have been queued. + * @interlaced: True if frames are interlaced. + */ +struct mvx_session_port { + enum mvx_format format; + unsigned int width; + unsigned int height; + uint8_t nplanes; + unsigned int stride[MVX_BUFFER_NPLANES]; + unsigned int size[MVX_BUFFER_NPLANES]; + unsigned int afbc_alloc_bytes; + unsigned int afbc_width; + bool stream_on; + unsigned int buffer_min; + unsigned int buffer_count; + unsigned int buffer_allocated; + struct list_head buffer_queue; + bool is_flushing; + bool flushed; + bool interlaced; + unsigned int scaling_shift; + struct mvx_roi_config roi_config_queue[MVX_ROI_QP_NUMS]; + struct mvx_chr_cfg chr_cfg_queue[MVX_ROI_QP_NUMS]; + struct mvx_enc_stats enc_stats_queue[MVX_ROI_QP_NUMS]; + struct mvx_buffer_param_qp qp_queue[MVX_ROI_QP_NUMS]; + struct mvx_osd_config osd_cfg_queue[MVX_ROI_QP_NUMS]; + unsigned int roi_config_num; + unsigned int qp_num; + unsigned int chr_cfg_num; + unsigned int enc_stats_num; + unsigned int osd_cfg_num; + bool isreallocting; + unsigned int display_size[MVX_BUFFER_NPLANES]; +}; + +/** + * struct mvx_session_qp - QP settings. + * @i_frame: QP for I frame. + * @p_frame: QP for P frame. + * @b_frame: QP for B frame. + * @min: Minimum QP value. + * @max: Maximum QP value. + */ +struct mvx_session_qp { + int i_frame; + int p_frame; + int b_frame; + int min; + int max; +}; + +/** + * struct mvx_session - Session instance. + * @dev: Pointer to device. + * @cache: Pointer to firmware cache. + * @isession: This instance is used to register the session to the + * client. + * @client_ops: Client operations. + * @csession: Client session. + * @destructor: When the isession.kref reaches zero and after the + * session + * object has been destructed, this callback routine is + * invoked + * to allow the owner of the session object to clean up any + * allocated resources. + * @event: Event callback routine. + * @mutex: Mutex protecting the session objects. + * @port: Input and output port settings. + * @mmu: MMU instance. + * @fw: Firmware instance. + * @fw_bin: Pointer to firmware binary. + * @fw_event: Event handler for loading a firmware binary. + * @fw_state: Current firmware state. + * @waitq: Wait queue to signal changes to the session. + * @dentry: Debugfs directory entry for the session. + * @frame_rate: Frame rate in Q16 format. + * @target_bitrate: Bitrate. + * @rc_enabled: Defines if rate control is enabled for the session. + * @profile: Profile for encoder. + * @level: Level for encoder. + * @nalu_format: NALU format. + * @stream_escaping: Defines if stream escaping is enabled. + * @ignore_stream_headers:Defines if decoder should ignore stream headers. + * @frame_reordering: Defines if decoder should reorder frames. + * @intbuf_size: Suggested internal buffer size. + * @p_frames: Number of P-frames for encoder. + * @b_frames: Number of B-frames for encoder. + * @gop_type: GOP type. + * @cyclic_intra_refresh_mb:Intra MB refresh. + * @constr_ipred: Constrained intra prediction. + * @entropy_sync: Enabled entropy synchronization. + * @temporal_mvp: Enable temporal motion vector prediction. + * @tile_rows: Tile size. + * @tile_cols: Tile size. + * @min_luma_cb_size: Minimum luma coding block size. + * @mb_mask: MB mask. + * @entropy_mode: Entropy mode. + * @multi_slice_mode: Multi slice mode. + * @multi_slice_max_mb: Maximum number of macroblocks in a slice. + * @vp9_prob_update: Probability update method. + * @mv_h_search_range: Horizontal search range. + * @mv_v_search_range: Vertical search range. + * @bitdepth_chroma: Bitdepth for chroma. + * @bitdepth_luma: Bitdepth for luma. + * @force_chroma_format:Chroma format. + * @rgb_to_yuv: RGB to YUV conversion mode. + * @band_limit: Maximum bandwidth limit. + * @cabac_init_idc: CABAC initialization table. + * @qp: QP settings per codec. + * @resync_interval: JPEG resync interval. + * @jpeg_quality: JPEG quality level. + * @color_desc: HDR color description. + * + * There is one session for each file handle that has been opened from the + * video device. + * + * There is a separate set of QP controls for every codec. There is no + * information on which codec will be used when controls are initialized with + * their default values. That's why a set of QP-settings is maintained for + * every codec. + */ +struct mvx_session { + struct device *dev; + struct mvx_fw_cache *cache; + struct mvx_if_session isession; + struct mvx_client_ops *client_ops; + struct mvx_client_session *csession; + void (*destructor)(struct mvx_session *session); + void (*event)(struct mvx_session *session, enum mvx_session_event event, + void *arg); + struct mvx_session_port port[MVX_DIR_MAX]; + struct mvx_mmu mmu; + struct mvx_fw fw; + struct mvx_fw_bin *fw_bin; + struct mvx_fw_event fw_event; + enum mvx_fw_state fw_state; + wait_queue_head_t waitq; + struct timer_list watchdog_timer; + struct work_struct watchdog_work; + unsigned int watchdog_count; + bool switched_in; + unsigned int setting_stride[MVX_BUFFER_NPLANES]; //upstream setting stride + unsigned int idle_count; + long error; + struct dentry *dentry; + + int64_t frame_rate; + unsigned int target_bitrate; + unsigned int maximum_bitrate; + bool rc_enabled; + int rc_type; + enum mvx_profile profile[MVX_FORMAT_BITSTREAM_LAST + 1]; + enum mvx_level level[MVX_FORMAT_BITSTREAM_LAST + 1]; + enum mvx_nalu_format nalu_format; + enum mvx_tristate stream_escaping; + enum mvx_tristate ignore_stream_headers; + enum mvx_tristate frame_reordering; + int64_t intbuf_size; + int p_frames; + int b_frames; + enum mvx_gop_type gop_type; + int cyclic_intra_refresh_mb; + enum mvx_tristate constr_ipred; + enum mvx_tristate entropy_sync; + enum mvx_tristate temporal_mvp; + int tile_rows; + int tile_cols; + int min_luma_cb_size; + int mb_mask; + enum mvx_entropy_mode entropy_mode; + enum mvx_multi_slice_mode multi_slice_mode; + int multi_slice_max_mb; + enum mvx_vp9_prob_update vp9_prob_update; + int mv_h_search_range; + int mv_v_search_range; + int bitdepth_chroma; + int bitdepth_luma; + int force_chroma_format; + enum mvx_rgb_to_yuv_mode rgb_to_yuv; + int band_limit; + int cabac_init_idc; + struct mvx_session_qp qp[MVX_FORMAT_BITSTREAM_LAST + 1]; + int resync_interval; + int jpeg_quality; + int jpeg_quality_luma; + int jpeg_quality_chroma; + struct mvx_fw_color_desc color_desc; + unsigned int crop_left; + unsigned int crop_right; + unsigned int crop_top; + unsigned int crop_bottom; + struct mvx_sei_userdata sei_userdata; + unsigned int nHRDBufsize; + struct mvx_dsl_frame dsl_frame; + struct mvx_dsl_ratio dsl_ratio; + struct mvx_long_term_ref mvx_ltr; + int dsl_pos_mode; + uint32_t mini_frame_height; + uint32_t init_qpi; + uint32_t init_qpp; + uint32_t sao_luma; + uint32_t sao_chroma; + uint32_t qp_delta_i_p; + uint32_t ref_rb_en; + uint32_t qpmap_qp_clip_top; + uint32_t qpmap_qp_clip_bot; + uint32_t rc_qp_clip_top; + uint32_t rc_qp_clip_bot; + uint32_t max_qp_i; + uint32_t min_qp_i; + uint32_t profiling; + uint32_t visible_width; + uint32_t visible_height; + struct mvx_huff_table huff_table; + uint32_t rc_bit_i_mode; + uint32_t rc_bit_i_ratio; + uint32_t inter_med_buf_size; + uint32_t svct3_level1_period; + uint32_t reset_gop_pframes; + uint32_t reset_ltr_period; + uint32_t fixedqp; + uint32_t gdr_number; + uint32_t gdr_period; + uint32_t multi_sps_pps; + uint32_t enable_visual; + uint32_t scd_enable; + uint32_t scd_percent; + uint32_t scd_threshold; + uint32_t aq_ssim_en; + uint32_t aq_neg_ratio; + uint32_t aq_pos_ratio; + uint32_t aq_qpdelta_lmt; + uint32_t aq_init_frm_avg_svar; + uint32_t adaptive_intra_block; + struct mvx_seamless_target seamless_target; + enum mvx_yuv_to_rgb_mode color_conv_mode; + enum use_cust_yuv_to_rgb_mode use_cust_rgb_to_yuv_mode; + bool use_cust_color_conv_coef; + struct mvx_color_conv_coef color_conv_coef; + struct mvx_rgb2yuv_color_conv_coef rgb2yuv_color_conv_coef; + uint32_t forced_uv_value; + uint32_t dsl_interp_mode; + uint32_t disabled_features; + uint32_t change_pos; + struct mvx_crop_cfg enc_src_crop; + struct mvx_crop_cfg dec_dst_crop; + struct mvx_osd_info osd_info; +}; + +/**************************************************************************** + * Exported functions + ****************************************************************************/ + +/** + * mvx_session_construct - Construct the session object. + * @session: Pointer to session. + * @dev: Pointer to device. + * @client_ops: Pointer to client ops. + * @cache: Pointer to firmware cache. + * @mutex: Pointer to mutex protecting the session object. + * @destructor: Destructor that will be invoked after the session referece count + * has reached zero. The destructor may be NULL if the owner of the + * session object does not need to be notified. + * @event: Event notification from the session to the client. This function + * must not call session API which could take mvx_session mutex. + * @dsession: Debugfs directory entry for the session. + * + * Return: 0 on success, else error code. + */ +int mvx_session_construct(struct mvx_session *session, struct device *dev, + struct mvx_client_ops *client_ops, + struct mvx_fw_cache *cache, struct mutex *mutex, + void (*destructor)(struct mvx_session *session), + void (*event)(struct mvx_session *session, + enum mvx_session_event event, + void *arg), + struct dentry *dsession); + +/** + * mvx_session_construct - Destruct the session object. + * @session: Pointer to session. + */ +void mvx_session_destruct(struct mvx_session *session); + +/** + * mvx_session_get - Increment the session reference count. + * @session: Pointer to session. + */ +void mvx_session_get(struct mvx_session *session); + +/** + * mvx_session_put - Decrement the session reference count. + * @session: Pointer to session. + * + * If the reference count reaches 0 the session object will be destructed. + * + * Return: 1 if session was removed, else 0. + */ +int mvx_session_put(struct mvx_session *session); + +/** + * mvx_session_get_formats() - Get bitmask of supported formats. + * @session: Pointer to session. + * @dir: Which direction to get formats for. + * @formats: Pointer to bitmask listing supported formats. + */ +void mvx_session_get_formats(struct mvx_session *session, + enum mvx_direction dir, uint64_t *formats); + +/** + * mvx_session_try_format() - Validate port format. + * @session: Pointer to session. + * @dir: Which direction to get formats for. + * @format: MVX format. + * @width: Width. Only valid for frame formats. + * @height: Height. Only valid for frame formats. + * @nplanes: Number for planes. + * @stride: Horizonal stride in bytes for each plane. + * @size: Size in bytes for each plane. + * @interlace: True if frames are interlaced. + * + * Return: 0 on success, else error code. + */ +int mvx_session_try_format(struct mvx_session *session, enum mvx_direction dir, + enum mvx_format format, unsigned int *width, + unsigned int *height, uint8_t *nplanes, + unsigned int *stride, unsigned int *size, + bool *interlaced); + +/** + * mvx_session_set_format() - Validate and set port format. + * @session: Pointer to session. + * @dir: Which direction to get formats for. + * @format: MVX format. + * @width: Width. Only valid for frame formats. + * @height: Height. Only valid for frame formats. + * @nplanes: Number for planes. + * @stride: Horizonal stride in bytes for each plane. + * @size: Size in bytes for each plane. + * @interlaced: True if frames are interlaced. + * + * If *nplanes is 0, then the values of stride and size should be ignored, else + * size and stride should be used when setting the format. + * + * Return: 0 on success, else error code. + */ +int mvx_session_set_format(struct mvx_session *session, enum mvx_direction dir, + enum mvx_format format, unsigned int *width, + unsigned int *height, uint8_t *nplanes, + unsigned int *stride, unsigned int *size, + bool *interlaced); + +/** + * mvx_session_qbuf() - Queue a buffer. + * @session: Pointer to session. + * @buf: Pointer to buffer. + * + * Return: 0 on success, else error code. + */ +int mvx_session_qbuf(struct mvx_session *session, enum mvx_direction dir, + struct mvx_buffer *buf); + +/** + * mvx_session_send_eos() - Queue an empty buffer with EOS flag. + * @session: Pointer to session. + * + * If firmware is loaded an empty input buffer will be queued with the EOS flag + * set. EOS will be propagated by the firmware to the output queue. + * + * If the firmware is not loaded a buffer will be dequeued from the output + * queue, cleared and returned with the EOS flag set. + * + * Return: 0 on success, else error code. + */ +int mvx_session_send_eos(struct mvx_session *session); + +/** + * mvx_session_streamon() - Enable stream on input or output port. + * @session: Pointer to session. + * @dir: Port direction. + * + * Both input and output ports must be enabled for streaming to begin. + * + * Return: 0 on success, else error code. + */ +int mvx_session_streamon(struct mvx_session *session, enum mvx_direction dir); + +/** + * mvx_session_streamoff() - Disable stream on input or output port. + * @session: Pointer to session. + * @dir: Port direction. + * + * Return: 0 on success, else error code. + */ +int mvx_session_streamoff(struct mvx_session *session, enum mvx_direction dir); + +/** + * mvx_session_irq() - Handle IRQ event from the client. + * @isession: Pointer to if-session. + */ +void mvx_session_irq(struct mvx_if_session *isession); + +/** + * mvx_if_session_to_session() - Convert mvx_is_session to mvx_session. + * @session: Pointer to mvx_if_session object. + * + * Return: Pointer to mvx_session object. + */ +static inline struct mvx_session * +mvx_if_session_to_session(struct mvx_if_session *session) +{ + return container_of(session, struct mvx_session, isession); +} + +/** + * mvx_session_port_show() - Print debug information into seq-file. + * @port: Pointer to port. + * @s: Seq-file to print to. + */ +void mvx_session_port_show(struct mvx_session_port *port, struct seq_file *s); + +/* + * Functions bellow implement different settings for a session. + * + * Most of options could be set only when the FW is in STOPPED state or not + * loaded. In this case the value will be stored in mvx_session structure + * and applied lated in fw_initial_setup(). + * + * Some options support runtime modification. For them we issue a command + * to mvx_fw module if the FW is loaded. For others we return -EBUSY if the + * FW is loaded. + * + * ATTENTION. Currently there is no way to querry from mvx_fw API of from + * mvx_session API if the option supports runtime configuration. + */ + +/** + * mvx_session_set_securevideo() - Enabled or disable secure video. + * @session: Session. + * @securevideo:Enable or disable secure video. + * + * Return: 0 on success, else error code. + */ +int mvx_session_set_securevideo(struct mvx_session *session, bool securevideo); + +/** + * mvx_session_set_frame_rate() - Set frame rate. + * @session: Session. + * @frame_rate: Frame rate in Q16 format. + * + * This option could be set in runtime. + * + * Return: 0 in case of success, error code otherwise. + */ +int mvx_session_set_frame_rate(struct mvx_session *session, int64_t frame_rate); + +/** + * mvx_session_set_rate_control() - Enable/disable rate controller. + * @session: Session. + * @enabled: Rate controller status. + * + * This option could be set in runtime. + * + * Return: 0 in case of success, error code otherwise. + */ +int mvx_session_set_rate_control(struct mvx_session *session, bool enabled); + +/** + * mvx_session_set_bitrate() - Set bitrate rate. + * @session: Session. + * @bitrate: Bitrate in bits per second. + * + * This option could be set in runtime. + * + * Return: 0 in case of success, error code otherwise. + */ +int mvx_session_set_bitrate(struct mvx_session *session, int bitrate); + +/** + * mvx_session_set_bitrate() - Set bitrate rate control. + * @session: Session. + * @rc_type: bitrate rate control type. + * + * This option could be set in runtime. + * + * Return: 0 in case of success, error code otherwise. + */ + +int mvx_session_set_bitrate_control( + struct mvx_session *session, + struct mvx_buffer_param_rate_control *rc_type); +/** + * mvx_session_set_crop_left() - Set crop left. + * @session: Session. + * @left: encoder SPS crop param, left offset. + * + * Return: 0 in case of success, error code otherwise. + */ + +int mvx_session_set_crop_left(struct mvx_session *session, int32_t left); + +/** + * mvx_session_set_crop_right() - Set crop right. + * @session: Session. + * @right: encoder SPS crop param, right offset. + * + * Return: 0 in case of success, error code otherwise. + */ + +int mvx_session_set_crop_right(struct mvx_session *session, int32_t right); + +/** + * mvx_session_set_crop_top() - Set crop top. + * @session: Session. + * @top: encoder SPS crop param, top offset. + * + * Return: 0 in case of success, error code otherwise. + */ + +int mvx_session_set_crop_top(struct mvx_session *session, int32_t top); + +/** + * mvx_session_set_crop_bottom() - Set crop bottom. + * @session: Session. + * @top: encoder SPS crop param, bottom offset. + * + * Return: 0 in case of success, error code otherwise. + */ + +int mvx_session_set_crop_bottom(struct mvx_session *session, int32_t bottom); +/** + * mvx_session_set_nalu_format() - Set NALU format. + * @session: Session. + * @fmt: NALU format. + * + * Return: 0 in case of success, error code otherwise. + */ +int mvx_session_set_nalu_format(struct mvx_session *session, + enum mvx_nalu_format fmt); + +/** + * mvx_session_set_stream_escaping() - Enable/disable stream escaping + * @session: Session. + * @status: Status + * + * Return: 0 in case of success, error code otherwise. + */ +int mvx_session_set_stream_escaping(struct mvx_session *session, + enum mvx_tristate status); + +/** + * mvx_session_set_profile() - Set profile for encoder. + * @session: Session. + * @format: Format. + * @profile: Encoder profile. + * + * Return: 0 in case of success, error code otherwise. + */ +int mvx_session_set_profile(struct mvx_session *session, enum mvx_format format, + enum mvx_profile profile); + +/** + * mvx_session_set_level() - Set level for encoder. + * + * @session: Session. + * @format: Format. + * @level: Encoder level. + * + * Return: 0 in case of success, error code otherwise. + */ +int mvx_session_set_level(struct mvx_session *session, enum mvx_format format, + enum mvx_level level); + +/** + * mvx_session_set_ignore_stream_headers() - Enable/disable stream headers + * ignore. + * @session: Session. + * @status: Status. + * + * Return: 0 in case of success, error code otherwise. + */ +int mvx_session_set_ignore_stream_headers(struct mvx_session *session, + enum mvx_tristate status); + +/** + * mvx_session_set_frame_reordering() - Enable/disable frames reordering. + * @session: Session. + * @status: Status. + * + * Return: 0 in case of success, error code otherwise. + */ +int mvx_session_set_frame_reordering(struct mvx_session *session, + enum mvx_tristate status); + +/** + * mvx_session_set_intbuf_size() - Set internal buffer size. + * @session: Session. + * @size: Size. + * + * Return: 0 in case of success, error code otherwise. + */ +int mvx_session_set_intbuf_size(struct mvx_session *session, int size); + +/** + * mvx_session_set_p_frame() - Set number of P-frames. + * @session: Session. + * @val: Number of P-frames. + * + * Return: 0 in case of success, error code otherwise. + */ +int mvx_session_set_p_frames(struct mvx_session *session, int val); + +/** + * mvx_session_set_b_frame() - Set number of B-frames. + * @session: Session. + * @val: Number of B-frames. + * + * Return: 0 in case of success, error code otherwise. + */ +int mvx_session_set_b_frames(struct mvx_session *session, int val); + +/** + * mvx_session_set_gop_type() - Set GOP type. + * @session: Session. + * @gop_type: GOP type. + * + * Return: 0 in case of success, error code otherwise. + */ +int mvx_session_set_gop_type(struct mvx_session *session, + enum mvx_gop_type gop_type); + +/** + * mvx_session_set_cyclic_intra_refresh_mb() - Set intra MB refresh. + * @session: Session. + * @val: Value. + * + * Return: 0 in case of success, error code otherwise. + */ +int mvx_session_set_cyclic_intra_refresh_mb(struct mvx_session *session, + int val); + +/** + * mvx_session_set_constr_ipred() - Enabled/disable constrained intra + * prediction. + * @session: Session. + * @status: Status. + * + * Return: 0 in case of success, error code otherwise. + */ +int mvx_session_set_constr_ipred(struct mvx_session *session, + enum mvx_tristate status); + +/** + * mvx_session_set_entropy_sync() - Enable/disable entropy synchronization. + * @session: Session. + * @status: Status. + * + * Return: 0 in case of success, error code otherwise. + */ +int mvx_session_set_entropy_sync(struct mvx_session *session, + enum mvx_tristate status); + +/** + * mvx_session_set_temporal_mvp() - Enable/disable temporal MVP. + * @session: Session. + * @status: Status. + * + * Return: 0 in case of success, error code otherwise. + */ +int mvx_session_set_temporal_mvp(struct mvx_session *session, + enum mvx_tristate status); + +/** + * mvx_session_set_tile_rows() - Set tile size. + * @session: Session. + * @val: Value. + * + * Return: 0 in case of success, error code otherwise. + */ +int mvx_session_set_tile_rows(struct mvx_session *session, int val); + +/** + * mvx_session_set_tile_cols() - Set tile size. + * @session: Session. + * @val: Value. + * + * Return: 0 in case of success, error code otherwise. + */ +int mvx_session_set_tile_cols(struct mvx_session *session, int val); + +/** + * mvx_session_set_min_luma_cb_size() - Set minimum luma coding block size. + * @session: Session. + * @val: Value. + * + * Return: 0 in case of success, error code otherwise. + */ +int mvx_session_set_min_luma_cb_size(struct mvx_session *session, int val); + +/** + * mvx_session_set_mb_mask() - Set MB mask. + * @session: Session. + * @val: Value. + * + * Return: 0 in case of success, error code otherwise. + */ +int mvx_session_set_mb_mask(struct mvx_session *session, int val); + +/** + * mvx_session_set_entropy_mode() - Set entropy mode. + * @session: Session. + * @mode: Entropy mode. + * + * Return: 0 in case of success, error code otherwise. + */ +int mvx_session_set_entropy_mode(struct mvx_session *session, + enum mvx_entropy_mode mode); + +/** + * mvx_session_set_multi_slice_mode() - Set multi slice mode. + * @session: Session. + * @mode: Mode. + * + * Return: 0 in case of success, error code otherwise. + */ +int mvx_session_set_multi_slice_mode(struct mvx_session *session, + enum mvx_multi_slice_mode mode); + +/** + * mvx_session_set_multi_slice_max_mb() - Set suggested number of CTUs in a + * slice. + * @session: Session. + * @val: Value. + * + * Return: 0 in case of success, error code otherwise. + */ +int mvx_session_set_multi_slice_max_mb(struct mvx_session *session, int val); + +/** + * mvx_session_set_vp9_prob_update() - Set probability update mode. + * @session: Session. + * @mode: Mode. + * + * Return: 0 in case of success, error code otherwise. + */ +int mvx_session_set_vp9_prob_update(struct mvx_session *session, + enum mvx_vp9_prob_update mode); + +/** + * mvx_session_set_mv_h_search_range() - Set horizontal search range for motion + * vectors. + * @session: Session. + * @val: Value. + * + * Return: 0 in case of success, error code otherwise. + */ +int mvx_session_set_mv_h_search_range(struct mvx_session *session, int val); + +/** + * mvx_session_set_mv_v_search_range() - Set vertical search range for motion + * vectors. + * @session: Session. + * @val: Value. + * + * Return: 0 in case of success, error code otherwise. + */ +int mvx_session_set_mv_v_search_range(struct mvx_session *session, int val); + +/** + * mvx_session_set_bitdepth_chroma() - Set bitdepth. + * @session: Session. + * @val: Value. + * + * Return: 0 in case of success, error code otherwise. + */ +int mvx_session_set_bitdepth_chroma(struct mvx_session *session, int val); + +/** + * mvx_session_set_bitdepth_luma() - Set bitdepth. + * @session: Session. + * @val: Value. + * + * Return: 0 in case of success, error code otherwise. + */ +int mvx_session_set_bitdepth_luma(struct mvx_session *session, int val); + +/** + * mvx_session_set_force_chroma_format() - Set chroma format. + * @session: Session. + * @fmt: chroma format. + * + * Return: 0 in case of success, error code otherwise. + */ +int mvx_session_set_force_chroma_format(struct mvx_session *session, int fmt); + +/** + * mvx_session_set_rgb_to_yuv_mode() - Set RGB to YUV conversion mode. + * @session: Session. + * @mode: Mode. + * + * Return: 0 in case of success, error code otherwise. + */ +int mvx_session_set_rgb_to_yuv_mode(struct mvx_session *session, + enum mvx_rgb_to_yuv_mode mode); + +/** + * mvx_session_set_band_limit() - Set maximum bandwidth limit. + * @session: Session. + * @val: Value. + * + * Return: 0 in case of success, error code otherwise. + */ +int mvx_session_set_band_limit(struct mvx_session *session, int val); + +/** + * mvx_session_set_cabac_init_idc() - Set CABAC initialization table. + * @session: Session. + * @val: Value. + * + * Return: 0 in case of success, error code otherwise. + */ +int mvx_session_set_cabac_init_idc(struct mvx_session *session, int val); + +/** + * mvx_session_set_i_frame_qp() - Set QP for I frames. + * @session: Session. + * @format: Format. + * @qp: Quantization parameter. + * + * This option could be set in runtime. + * + * Return: 0 in case of success, error code otherwise. + */ +int mvx_session_set_i_frame_qp(struct mvx_session *session, + enum mvx_format format, int qp); + +/** + * mvx_session_set_p_frame_qp() - Set QP for P frames. + * @session: Session. + * @format: Format. + * @qp: Quantization parameter. + * + * This option could be set in runtime. + * + * Return: 0 in case of success, error code otherwise. + */ +int mvx_session_set_p_frame_qp(struct mvx_session *session, + enum mvx_format format, int qp); + +/** + * mvx_session_set_b_frame_qp() - Set QP for B frames. + * @session: Session. + * @format: Format. + * @qp: Quantization parameter. + * + * This option could be set in runtime. + * + * Return: 0 in case of success, error code otherwise. + */ +int mvx_session_set_b_frame_qp(struct mvx_session *session, + enum mvx_format format, int qp); + +/** + * mvx_session_set_min_qp() - Set minimum value of QP range. + * @session: Session. + * @format: Format. + * @qp: Quantization parameter. + * + * This option could be set in runtime. + * + * Return: 0 in case of success, error code otherwise. + */ +int mvx_session_set_min_qp(struct mvx_session *session, enum mvx_format format, + int qp); + +/** + * mvx_session_set_max_qp() - Set maximum value of QP range. + * @session: Session. + * @format: Format. + * @qp: Quantization parameter. + * + * This option could be set in runtime. + * + * Return: 0 in case of success, error code otherwise. + */ +int mvx_session_set_max_qp(struct mvx_session *session, enum mvx_format format, + int qp); + +/** + * mvx_session_set_resync_interval() - Set resync interval for JPEG encoder. + * @session: Session. + * @val: Resync interval. + * + * Return: 0 in case of success, error code otherwise. + */ +int mvx_session_set_resync_interval(struct mvx_session *session, int val); + +/** + * mvx_session_set_jpeg_quality() - Set JPEG quality. + * @session: Session. + * @val: Quality level (1-100). + * + * Return: 0 in case of success, error otherwise. + */ +int mvx_session_set_jpeg_quality(struct mvx_session *session, int val); + +/** + * mvx_session_set_jpeg_quality_luma() - Set JPEG quality. + * @session: Session. + * @val: Quality level (1-100). + * + * Return: 0 in case of success, error otherwise. + */ + +int mvx_session_set_jpeg_quality_luma(struct mvx_session *session, int val); +/** + * mvx_session_set_jpeg_quality_chroma() - Set JPEG quality. + * @session: Session. + * @val: Quality level (1-100). + * + * Return: 0 in case of success, error otherwise. + */ + +int mvx_session_set_jpeg_quality_chroma(struct mvx_session *session, int val); + +/** + * mvx_session_get_color_desc() - Get color description. + * @session: Pointer to session. + * @color_desc: Color description. + * + * Return: 0 on success, else error code. + */ +int mvx_session_get_color_desc(struct mvx_session *session, + struct mvx_fw_color_desc *color_desc); + +/** + * mvx_session_set_color_desc() - Set color description. + * @session: Pointer to session. + * @color_desc: Color description. + * + * Return: 0 on success, else error code. + */ +int mvx_session_set_color_desc(struct mvx_session *session, + struct mvx_fw_color_desc *color_desc); + +/** + * mvx_session_set_roi_regions() - Set ROI regions. + * @session: Pointer to session. + * @roi: ROI regions. + * + * Return: 0 on success, else error code. + */ +int mvx_session_set_roi_regions(struct mvx_session *session, + struct mvx_roi_config *roi); + +/** + * mvx_session_set_qp_epr() - Set qp for epr config. + * @session: Pointer to session. + * @qp: qp. + * + * Return: 0 on success, else error code. + */ + +int mvx_session_set_qp_epr(struct mvx_session *session, + struct mvx_buffer_param_qp *qp); + +/** + * mvx_session_set_sei_userdata() - Set SEI userdata. + * @session: Pointer to session. + * @userdata: SEI userdata. + * + * Return: 0 on success, else error code. + */ + +int mvx_session_set_sei_userdata(struct mvx_session *session, + struct mvx_sei_userdata *userdata); + +/** + * mvx_session_set_hrd_buffer_size() - Set hrd buffer size. + * @session: Pointer to session. + * @size: hrd buffer size. + * + * Return: 0 on success, else error code. + */ + +int mvx_session_set_hrd_buffer_size(struct mvx_session *session, int size); + +/** + * mvx_session_set_dsl_frame() - Set DownScale dst frame. + * @session: Pointer to session. + * @dsl: DownScale dst frame. + * + * Return: 0 on success, else error code. + */ + +int mvx_session_set_dsl_frame(struct mvx_session *session, + struct mvx_dsl_frame *dsl); + +/** + * mvx_session_set_dsl_ratio() - Set DownScale ratio. + * @session: Pointer to session. + * @dsl: DownScale ratio. + * + * Return: 0 on success, else error code. + */ + +int mvx_session_set_dsl_ratio(struct mvx_session *session, + struct mvx_dsl_ratio *dsl); + +/** + * mvx_session_set_long_term_ref() - Set long term ref. + * @session: Pointer to session. + * @ltr: long term ref. + * + * Return: 0 on success, else error code. + */ + +int mvx_session_set_long_term_ref(struct mvx_session *session, + struct mvx_long_term_ref *ltr); + +/** + * mvx_session_set_dsl_mode() - Set DownScale mode. + * @session: Pointer to session. + * @mode: DownScale mode, oly enable on high precision mode. + * + * Return: 0 on success, else error code. + */ + +int mvx_session_set_dsl_mode(struct mvx_session *session, int *mode); +/** + * mvx_session_set_dsl_mode() - Set DownScale mode. + * @session: Pointer to session. + * @cnt: Mini Frame BUffer cnt. + * + * Return: 0 on success, else error code. + */ + +int mvx_session_set_mini_frame_height(struct mvx_session *session, int *cnt); + +/** + * mvx_session_set_stats_mode() - Set Stats mode. + * @session: Pointer to session. + * @mode: Stats mode. + * + * Return: 0 on success, else error code. + */ + +int mvx_session_set_stats_mode(struct mvx_session *session, + struct mvx_enc_stats *stats); +int mvx_session_set_chr_cfg(struct mvx_session *session, + struct mvx_chr_cfg *chr_cfg); +int mvx_session_set_init_qp_i(struct mvx_session *session, int val); +int mvx_session_set_init_qp_p(struct mvx_session *session, int val); +int mvx_session_set_sao_luma(struct mvx_session *session, int val); +int mvx_session_set_sao_chroma(struct mvx_session *session, int val); +int mvx_session_set_delta_I_P(struct mvx_session *session, int val); +int mvx_session_set_ref_rb_eb(struct mvx_session *session, int val); +int mvx_session_set_rc_clip_top(struct mvx_session *session, int val); +int mvx_session_set_rc_clip_bot(struct mvx_session *session, int val); +int mvx_session_set_qpmap_clip_top(struct mvx_session *session, int val); +int mvx_session_set_qpmap_clip_bot(struct mvx_session *session, int val); +int mvx_session_set_max_qp_i(struct mvx_session *session, int val); +int mvx_session_set_min_qp_i(struct mvx_session *session, int val); +int mvx_session_set_fixedqp(struct mvx_session *session, int val); +int mvx_session_set_fw_profiling(struct mvx_session *session, int val); +int mvx_session_set_visible_width(struct mvx_session *session, int val); +int mvx_session_set_visible_height(struct mvx_session *session, int val); +int mvx_session_set_huff_table(struct mvx_session *session, + struct mvx_huff_table *table); +int mvx_session_set_rc_bit_i_mode(struct mvx_session *session, int val); +int mvx_session_set_rc_bit_i_ratio(struct mvx_session *session, int val); +int mvx_session_set_inter_med_buf_size(struct mvx_session *session, int val); +int mvx_session_set_svct3_level1_period(struct mvx_session *session, int val); +int mvx_session_set_gop_reset_pframes(struct mvx_session *session, int val); +int mvx_session_set_ltr_reset_period(struct mvx_session *session, int val); +int mvx_session_set_gdr_number(struct mvx_session *session, int val); +int mvx_session_set_gdr_period(struct mvx_session *session, int val); +int mvx_session_set_multi_sps_pps(struct mvx_session *session, int val); +int mvx_session_set_enable_visual(struct mvx_session *session, int val); +int mvx_session_set_scd_enable(struct mvx_session *session, int val); +int mvx_session_set_scd_percent(struct mvx_session *session, int val); +int mvx_session_set_scd_threshold(struct mvx_session *session, int val); +int mvx_session_set_aq_ssim_en(struct mvx_session *session, int val); +int mvx_session_set_aq_neg_ratio(struct mvx_session *session, int val); +int mvx_session_set_aq_pos_ratio(struct mvx_session *session, int val); +int mvx_session_set_aq_qpdelta_lmt(struct mvx_session *session, int val); +int mvx_session_set_aq_init_frm_avg_svar(struct mvx_session *session, int val); +int mvx_session_set_adaptive_intra_block(struct mvx_session *session, int val); +int mvx_session_set_seamless_target(struct mvx_session *session, + struct mvx_seamless_target *seamless); +int mvx_session_set_color_conversion(struct mvx_session *session, + enum mvx_yuv_to_rgb_mode mode); +int mvx_session_set_color_conversion_ceof( + struct mvx_session *session, struct mvx_color_conv_coef *conv_coef); +int mvx_session_set_rgb_conv_yuv_coef( + struct mvx_session *session, + struct mvx_rgb2yuv_color_conv_coef *conv_coef); +int mvx_session_set_forced_uv_value(struct mvx_session *session, int val); +int mvx_session_set_dsl_interpolation_mode(struct mvx_session *session, + int mode); +int mvx_session_set_disabled_features(struct mvx_session *session, int val); +int mvx_session_set_enc_src_crop(struct mvx_session *session, + struct mvx_crop_cfg *crop); +int mvx_session_set_dec_dst_crop(struct mvx_session *session, + struct mvx_crop_cfg *crop); +int mvx_session_set_osd_config(struct mvx_session *session, + struct mvx_osd_config *osd); +int mvx_session_set_osd_info(struct mvx_session *session, + struct mvx_osd_info *osd_info); +int mvx_session_set_change_pos(struct mvx_session *session, int val); +#endif /* _MVX_SESSION_H_ */ diff --git a/drivers/media/platform/canaan/vpu/mvx_v4l2_buffer.c b/drivers/media/platform/canaan/vpu/mvx_v4l2_buffer.c new file mode 100644 index 0000000000000..fdfe7a3fc1d36 --- /dev/null +++ b/drivers/media/platform/canaan/vpu/mvx_v4l2_buffer.c @@ -0,0 +1,505 @@ +// SPDX-License-Identifier: GPL-2.0-only +/* + * The confidential and proprietary information contained in this file may + * only be used by a person authorised under and to the extent permitted + * by a subsisting licensing agreement from Arm Technology (China) Co., Ltd. + * + * (C) COPYRIGHT 2021-2021 Arm Technology (China) Co., Ltd. + * ALL RIGHTS RESERVED + * + * This entire notice must be reproduced on all copies of this file + * and copies of this file may only be made by a person if such person is + * permitted to do so under the terms of a subsisting license agreement + * from Arm Technology (China) Co., Ltd. + * + * 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. + * + */ + +#include +#include +#include "mvx_ext_if.h" +#include "mvx_log_group.h" +#include "mvx_seq.h" +#include "mvx_v4l2_buffer.h" +#include "mvx-v4l2-controls.h" + +/**************************************************************************** + * Static functions and variables + ****************************************************************************/ + +static void v4l2_buffer_show(struct mvx_v4l2_buffer *buffer, struct seq_file *s) +{ + struct vb2_v4l2_buffer *v4l2 = &buffer->vb2_v4l2_buffer; + struct vb2_buffer *vb2 = &v4l2->vb2_buf; + int is_multi = V4L2_TYPE_IS_MULTIPLANAR(vb2->type); + int i; + int ind = 0; + + mvx_seq_printf(s, "mvx_v4l2_buffer", ind, "%p\n", buffer); + + ind++; + mvx_seq_printf(s, "vb2", ind, "%p\n", vb2); + + ind++; + mvx_seq_printf(s, "index", ind, "%u\n", vb2->index); + mvx_seq_printf(s, "type", ind, "%u (multi: %s)\n", vb2->type, + is_multi ? "yes" : "no"); + mvx_seq_printf(s, "flags", ind, "0x%08x\n", v4l2->flags); + mvx_seq_printf(s, "field", ind, "%u\n", v4l2->field); + + mvx_seq_printf(s, "timestamp", ind, "%llu\n", vb2->timestamp); + + mvx_seq_printf(s, "timecode", ind, "\n"); + ind++; + mvx_seq_printf(s, "type", ind, "%u\n", v4l2->timecode.type); + mvx_seq_printf(s, "flags", ind, "%u\n", v4l2->timecode.flags); + mvx_seq_printf(s, "frames", ind, "%u\n", v4l2->timecode.frames); + mvx_seq_printf(s, "seconds", ind, "%u\n", v4l2->timecode.seconds); + mvx_seq_printf(s, "minutes", ind, "%u\n", v4l2->timecode.minutes); + mvx_seq_printf(s, "hours", ind, "%u\n", v4l2->timecode.hours); + ind--; + + mvx_seq_printf(s, "sequence", ind, "%u\n", v4l2->sequence); + mvx_seq_printf(s, "memory", ind, "%u\n", vb2->memory); + + mvx_seq_printf(s, "num_planes", ind, "%u\n", vb2->num_planes); + + mvx_seq_printf(s, "planes", ind, "\n"); + ind++; + for (i = 0; i < vb2->num_planes; ++i) { + char tag[10]; + struct vb2_plane *plane = &vb2->planes[i]; + + scnprintf(tag, sizeof(tag), "#%d", i); + mvx_seq_printf( + s, tag, ind, + "bytesused: %10u, length: %10u, m.offset: %10u, m.userptr: %10lu, m.fd: %10d, data_offset: %10u\n", + plane->bytesused, plane->length, plane->m.offset, + plane->m.userptr, plane->m.fd, plane->data_offset); + } + + ind--; +} + +static int buffer_stat_show(struct seq_file *s, void *v) +{ + struct mvx_v4l2_buffer *vbuf = s->private; + + v4l2_buffer_show(vbuf, s); + seq_puts(s, "\n"); + mvx_buffer_show(&vbuf->buf, s); + + return 0; +} + +static int buffer_stat_open(struct inode *inode, struct file *file) +{ + return single_open(file, buffer_stat_show, inode->i_private); +} + +static const struct file_operations buffer_stat_fops = { + .open = buffer_stat_open, + .read = seq_read, + .llseek = seq_lseek, + .release = seq_release +}; + +static int buffer_debugfs_init(struct dentry *parent, + struct mvx_v4l2_buffer *vbuf) +{ + char name[20]; + struct dentry *dentry; + + scnprintf(name, sizeof(name), "buffer%u", to_vb2_buf(vbuf)->index); + vbuf->dentry = debugfs_create_dir(name, parent); + if (IS_ERR_OR_NULL(vbuf->dentry)) + return -ENOMEM; + + dentry = debugfs_create_file("stat", 0400, vbuf->dentry, vbuf, + &buffer_stat_fops); + if (IS_ERR_OR_NULL(dentry)) + return -ENOMEM; + + return 0; +} + +/** + * get_bytesused() - Get total number of bytes used for Vb2 buffer. + */ +static size_t get_bytesused(struct vb2_buffer *b) +{ + size_t size; + uint32_t i; + + for (i = 0, size = 0; i < b->num_planes; i++) + size += b->planes[i].bytesused; + + return size; +} + +static int clear_bytesused(struct vb2_buffer *b) +{ + uint32_t i; + + for (i = 0; i < b->num_planes; i++) + b->planes[i].bytesused = 0; + + return 0; +} + +/* Update mvx_buffer flags from vb2_buffer flags */ +static int update_mvx_flags(struct mvx_buffer *buf, struct vb2_buffer *b) +{ + struct vb2_v4l2_buffer *vb2_v4l2 = to_vb2_v4l2_buffer(b); + __u32 flags = vb2_v4l2->flags; + __u32 osd_flags = (buf->flags & MVX_BUFFER_FRAME_FLAG_OSD_MASK); + __u32 general_flags = (buf->flags & MVX_BUFFER_FRAME_FLAG_GENERAL); + + buf->flags = osd_flags; + buf->flags |= general_flags; + if (V4L2_TYPE_IS_OUTPUT(b->type) != false && get_bytesused(b) == 0) + flags |= V4L2_BUF_FLAG_LAST; + + if (flags & V4L2_BUF_FLAG_LAST) + buf->flags |= MVX_BUFFER_EOS; + + if (mvx_is_afbc(buf->format)) { + if ((flags & V4L2_BUF_FLAG_MVX_AFBC_TILED_HEADERS) == + V4L2_BUF_FLAG_MVX_AFBC_TILED_HEADERS) + buf->flags |= MVX_BUFFER_AFBC_TILED_HEADERS; + + if ((flags & V4L2_BUF_FLAG_MVX_AFBC_TILED_BODY) == + V4L2_BUF_FLAG_MVX_AFBC_TILED_BODY) + buf->flags |= MVX_BUFFER_AFBC_TILED_BODY; + + if ((flags & V4L2_BUF_FLAG_MVX_AFBC_32X8_SUPERBLOCK) == + V4L2_BUF_FLAG_MVX_AFBC_32X8_SUPERBLOCK) + buf->flags |= MVX_BUFFER_AFBC_32X8_SUPERBLOCK; + } else if (mvx_is_bitstream(buf->format)) { + if (buf->dir == MVX_DIR_INPUT) { + //decode bitstream port + if ((flags & V4L2_BUF_FLAG_END_OF_SUB_FRAME) == + V4L2_BUF_FLAG_END_OF_SUB_FRAME) { + buf->flags |= MVX_BUFFER_END_OF_SUB_FRAME; + } + if (flags & V4L2_BUF_FLAG_KEYFRAME) + buf->flags |= MVX_BUFFER_EOF; + if ((flags & V4L2_BUF_FLAG_MVX_CODEC_CONFIG) == + V4L2_BUF_FLAG_MVX_CODEC_CONFIG) + buf->flags |= MVX_BUFFER_CODEC_CONFIG; + } + } else if (mvx_is_frame(buf->format)) { + if (buf->dir == MVX_DIR_OUTPUT) { + //decode frame port + if (flags & V4L2_BUF_FRAME_FLAG_ROTATION_MASK) { + if ((flags & + V4L2_BUF_FRAME_FLAG_ROTATION_MASK) == + V4L2_BUF_FRAME_FLAG_ROTATION_90) { + buf->flags |= + MVX_BUFFER_FRAME_FLAG_ROTATION_90; + } else if ((flags & + V4L2_BUF_FRAME_FLAG_ROTATION_MASK) == + V4L2_BUF_FRAME_FLAG_ROTATION_180) { + buf->flags |= + MVX_BUFFER_FRAME_FLAG_ROTATION_180; + } else if ((flags & + V4L2_BUF_FRAME_FLAG_ROTATION_MASK) == + V4L2_BUF_FRAME_FLAG_ROTATION_270) { + buf->flags |= + MVX_BUFFER_FRAME_FLAG_ROTATION_270; + } + } + if (flags & V4L2_BUF_FRAME_FLAG_SCALING_MASK) { + if ((flags & + V4L2_BUF_FRAME_FLAG_SCALING_MASK) == + V4L2_BUF_FRAME_FLAG_SCALING_2) { + buf->flags |= + MVX_BUFFER_FRAME_FLAG_SCALING_2; + } else if ((flags & + V4L2_BUF_FRAME_FLAG_SCALING_MASK) == + V4L2_BUF_FRAME_FLAG_SCALING_4) { + buf->flags |= + MVX_BUFFER_FRAME_FLAG_SCALING_4; + } + } + } else if (buf->dir == MVX_DIR_INPUT) { + if (flags & V4L2_BUF_FLAG_KEYFRAME) { + //encode frame port for idr flag + buf->flags |= MVX_BUFFER_FRAME_FLAG_FORCE_IDR; + } + //encode frame port + if (flags & V4L2_BUF_FRAME_FLAG_MIRROR_MASK) { + if ((flags & V4L2_BUF_FRAME_FLAG_MIRROR_MASK) == + V4L2_BUF_FRAME_FLAG_MIRROR_HORI) { + buf->flags |= + MVX_BUFFER_FRAME_FLAG_MIRROR_HORI; + } else if ((flags & + V4L2_BUF_FRAME_FLAG_MIRROR_MASK) == + V4L2_BUF_FRAME_FLAG_MIRROR_VERT) { + buf->flags |= + MVX_BUFFER_FRAME_FLAG_MIRROR_VERT; + } + } + if (flags & V4L2_BUF_ENCODE_FLAG_ROTATION_MASK) { + if ((flags & + V4L2_BUF_ENCODE_FLAG_ROTATION_MASK) == + V4L2_BUF_ENCODE_FLAG_ROTATION_90) { + buf->flags |= + MVX_BUFFER_FRAME_FLAG_ROTATION_90; + } else if ((flags & + V4L2_BUF_ENCODE_FLAG_ROTATION_MASK) == + V4L2_BUF_ENCODE_FLAG_ROTATION_180) { + buf->flags |= + MVX_BUFFER_FRAME_FLAG_ROTATION_180; + } else if ((flags & + V4L2_BUF_ENCODE_FLAG_ROTATION_MASK) == + V4L2_BUF_ENCODE_FLAG_ROTATION_270) { + buf->flags |= + MVX_BUFFER_FRAME_FLAG_ROTATION_270; + } + } + if ((flags & V4L2_BUF_FLAG_MVX_BUFFER_EPR) == + V4L2_BUF_FLAG_MVX_BUFFER_EPR) { + buf->flags |= MVX_BUFFER_FRAME_FLAG_GENERAL; + } + if ((flags & V4L2_BUF_FLAG_MVX_BUFFER_ROI) == + V4L2_BUF_FLAG_MVX_BUFFER_ROI) { + buf->flags |= MVX_BUFFER_FRAME_FLAG_ROI; + } + if ((flags & V4L2_BUF_FLAG_MVX_BUFFER_CHR) == + V4L2_BUF_FLAG_MVX_BUFFER_CHR) { + buf->flags |= MVX_BUFFER_FRAME_FLAG_CHR; + } + if ((flags & V4L2_BUF_FLAG_MVX_BUFFER_GOP_RESET) == + V4L2_BUF_FLAG_MVX_BUFFER_GOP_RESET) { + buf->flags |= MVX_BUFFER_FRAME_FLAG_GOP_REST; + } + if ((flags & V4L2_BUF_FLAG_MVX_BUFFER_LTR_RESET) == + V4L2_BUF_FLAG_MVX_BUFFER_LTR_RESET) { + buf->flags |= MVX_BUFFER_FRAME_FLAG_LTR_REST; + } + } + + } else { + MVX_LOG_PRINT(&mvx_log_if, MVX_LOG_WARNING, + "unrecognized buffer format!."); + } + + return 0; +} + +/* Update mvx_buffer from mvx_v4l2_buffer */ +static int update_mvx_buffer(struct mvx_v4l2_buffer *vbuf) +{ + struct vb2_buffer *vb2 = to_vb2_buf(vbuf); + struct mvx_buffer *mvx_buf = &vbuf->buf; + int i; + int ret; + + if (vb2->num_planes != mvx_buf->nplanes) { + MVX_LOG_PRINT( + &mvx_log_if, MVX_LOG_WARNING, + "VB2 and MVX buffers have different number of planes. vb2_planes=%u, mvx_planes=%u.", + vb2->num_planes, mvx_buf->nplanes); + return -EINVAL; + } + + mvx_buf->user_data = vb2->timestamp; + + for (i = 0; i < vb2->num_planes; i++) { + unsigned int offset = vb2->planes[i].data_offset; + + /* + * For single planar mmap buffers the offset is carried by + * the lower part of the offset. + */ + if (vb2->memory == V4L2_MEMORY_MMAP) + offset += vb2->planes[i].m.offset & ~PAGE_MASK; + + ret = mvx_buffer_filled_set(mvx_buf, i, + vb2->planes[i].bytesused, offset); + if (ret != 0) + return ret; + } + + ret = update_mvx_flags(mvx_buf, to_vb2_buf(vbuf)); + if (ret != 0) + return 0; + + return 0; +} + +static int update_v4l2_bytesused(struct mvx_v4l2_buffer *vbuf) +{ + struct vb2_buffer *b = to_vb2_buf(vbuf); + struct mvx_buffer *buf = &vbuf->buf; + int i; + + if (b->num_planes != buf->nplanes) { + MVX_LOG_PRINT( + &mvx_log_if, MVX_LOG_WARNING, + "VB2 and MVX buffers have different number of planes. vb2_planes=%u, mvx_planes=%u.", + b->num_planes, buf->nplanes); + return -EINVAL; + } + + /* + * MVX filled is the number of bytes excluding the offset. The total + * length is calculated as 'filled + offset' and should be <= length. + * + * V4L2 bytesused is the total length including the offset. + * bytesused should be <= length and bytesused >= offset. + */ + + for (i = 0; i < b->num_planes; i++) { + b->planes[i].bytesused = + buf->planes[i].filled + buf->planes[i].offset; + b->planes[i].data_offset = buf->planes[i].offset; + } + + return 0; +} + +static int update_vb2_flags(struct mvx_v4l2_buffer *vbuf) +{ + struct vb2_v4l2_buffer *b = &vbuf->vb2_v4l2_buffer; + struct mvx_buffer *buf = &vbuf->buf; + + b->flags &= ~(V4L2_BUF_FLAG_ERROR | V4L2_BUF_FLAG_KEYFRAME | + V4L2_BUF_FLAG_LAST); + + if (buf->flags & MVX_BUFFER_EOS) + b->flags |= V4L2_BUF_FLAG_LAST; + + if (buf->flags & MVX_BUFFER_EOF) + b->flags |= V4L2_BUF_FLAG_KEYFRAME; + + if (buf->flags & MVX_BUFFER_CORRUPT) + b->flags |= V4L2_BUF_FLAG_ERROR; + + if (buf->flags & MVX_BUFFER_REJECTED) + clear_bytesused(&b->vb2_buf); + + if (buf->flags & MVX_BUFFER_DECODE_ONLY) + b->flags |= V4L2_BUF_FLAG_MVX_DECODE_ONLY; + + if (buf->flags & MVX_BUFFER_CODEC_CONFIG) + b->flags |= V4L2_BUF_FLAG_MVX_CODEC_CONFIG; + + if (buf->flags & MVX_BUFFER_AFBC_TILED_HEADERS) + b->flags |= V4L2_BUF_FLAG_MVX_AFBC_TILED_HEADERS; + + if (buf->flags & MVX_BUFFER_AFBC_TILED_BODY) + b->flags |= V4L2_BUF_FLAG_MVX_AFBC_TILED_BODY; + + if (buf->flags & MVX_BUFFER_AFBC_32X8_SUPERBLOCK) + b->flags |= V4L2_BUF_FLAG_MVX_AFBC_32X8_SUPERBLOCK; + + if (buf->flags & MVX_BUFFER_FRAME_PRESENT) + b->flags |= V4L2_BUF_FLAG_MVX_BUFFER_FRAME_PRESENT; + + if (buf->flags & MVX_BUFFER_FRAME_NEED_REALLOC) + b->flags |= V4L2_BUF_FLAG_MVX_BUFFER_NEED_REALLOC; + + if (buf->flags & MVX_BUFFER_ENC_STATS) + b->flags |= V4L2_BUF_FLAG_MVX_BUFFER_ENC_STATS; + + return 0; +} + +/**************************************************************************** + * Exported functions and variables + ****************************************************************************/ + +int mvx_v4l2_buffer_construct(struct mvx_v4l2_buffer *vbuf, + struct mvx_v4l2_session *vsession, + enum mvx_direction dir, unsigned int nplanes, + struct sg_table **sgt) +{ + int ret; + + ret = mvx_buffer_construct(&vbuf->buf, vsession->ext->dev, + &vsession->session.mmu, dir, nplanes, sgt); + if (ret != 0) + return ret; + + if (IS_ENABLED(CONFIG_DEBUG_FS)) { + struct mvx_v4l2_port *vport = &vsession->port[dir]; + + ret = buffer_debugfs_init(vport->dentry, vbuf); + if (ret != 0) { + MVX_SESSION_WARN( + &vsession->session, + "Failed to create buffer debugfs entry."); + goto destruct_buffer; + } + } + + return 0; + +destruct_buffer: + mvx_buffer_destruct(&vbuf->buf); + + return ret; +} + +void mvx_v4l2_buffer_destruct(struct mvx_v4l2_buffer *vbuf) +{ + mvx_buffer_destruct(&vbuf->buf); + + if (IS_ENABLED(CONFIG_DEBUG_FS)) + debugfs_remove_recursive(vbuf->dentry); +} + +struct mvx_v4l2_buffer *mvx_buffer_to_v4l2_buffer(struct mvx_buffer *buffer) +{ + return container_of(buffer, struct mvx_v4l2_buffer, buf); +} + +/* Update mvx_v4l2_buffer from vb2_buffer */ +int mvx_v4l2_buffer_set(struct mvx_v4l2_buffer *vbuf, struct vb2_buffer *b) +{ + int ret; + + ret = update_mvx_buffer(vbuf); + if (ret != 0) + return ret; + + return 0; +} + +enum vb2_buffer_state mvx_v4l2_buffer_update(struct mvx_v4l2_buffer *vbuf) +{ + struct vb2_buffer *vb2 = to_vb2_buf(vbuf); + struct mvx_buffer *mvx_buf = &vbuf->buf; + int ret; + + if (V4L2_TYPE_IS_OUTPUT(vb2->type) != false) + ret = clear_bytesused(vb2); + else + ret = update_v4l2_bytesused(vbuf); + + if (ret != 0) + goto error; + + ret = update_vb2_flags(vbuf); + if (ret != 0 || + (vbuf->vb2_v4l2_buffer.flags & V4L2_BUF_FLAG_ERROR) != 0) + goto error; + + vb2->timestamp = mvx_buf->user_data; + + return VB2_BUF_STATE_DONE; + +error: + return VB2_BUF_STATE_ERROR; +} diff --git a/drivers/media/platform/canaan/vpu/mvx_v4l2_buffer.h b/drivers/media/platform/canaan/vpu/mvx_v4l2_buffer.h new file mode 100644 index 0000000000000..a568a0f62c5db --- /dev/null +++ b/drivers/media/platform/canaan/vpu/mvx_v4l2_buffer.h @@ -0,0 +1,157 @@ +/* SPDX-License-Identifier: GPL-2.0-only + * The confidential and proprietary information contained in this file may + * only be used by a person authorised under and to the extent permitted + * by a subsisting licensing agreement from Arm Technology (China) Co., Ltd. + * + * (C) COPYRIGHT 2021-2021 Arm Technology (China) Co., Ltd. + * ALL RIGHTS RESERVED + * + * This entire notice must be reproduced on all copies of this file + * and copies of this file may only be made by a person if such person is + * permitted to do so under the terms of a subsisting license agreement + * from Arm Technology (China) Co., Ltd. + * + * 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. + * + */ + +#ifndef _MVX_V4L2_BUFFER_H_ +#define _MVX_V4L2_BUFFER_H_ + +/**************************************************************************** + * Includes + ****************************************************************************/ + +#include +#include +#include "mvx_buffer.h" +#include "mvx_if.h" +#include "mvx_v4l2_session.h" + +/**************************************************************************** + * Types + ****************************************************************************/ + +#define vb2_v4l2_to_mvx_v4l2_buffer(v4l2) \ + container_of(v4l2, struct mvx_v4l2_buffer, vb2_v4l2_buffer) + +#define vb2_to_mvx_v4l2_buffer(vb2) \ + vb2_v4l2_to_mvx_v4l2_buffer(to_vb2_v4l2_buffer(vb2)) + +#define to_vb2_buf(vbuf) (&((vbuf)->vb2_v4l2_buffer.vb2_buf)) + +/** + * struct mvx_v4l2_buffer - MVX V4L2 buffer. + * @vb2_v4l2_buffer: VB2 V4L2 buffer. + * @buf: MVX buffer. + * @dentry: Debug file system entry. + */ +struct mvx_v4l2_buffer { + struct vb2_v4l2_buffer vb2_v4l2_buffer; + struct mvx_buffer buf; + struct dentry *dentry; +}; + +/**************************************************************************** + * Exported functions + ****************************************************************************/ + +/** + * mvx_v4l2_buffer_construct() - Construct MVX V4L2 buffer object. + * @vbuf: Pointer to MVX V4L2 buffer. + * @vsession: Pointer to V4L2 session. + * @dir: Direction of the buffer. + * @nplanes: Number of planes. + * @sgt: Array of pointers to scatter-gatter lists. Each SG list + * contains memory pages for a corresponding plane. + * + * Return: 0 on success, else error code. + */ +int mvx_v4l2_buffer_construct(struct mvx_v4l2_buffer *vbuf, + struct mvx_v4l2_session *vsession, + enum mvx_direction dir, unsigned int nplanes, + struct sg_table **sgt); + +/** + * mvx_v4l2_buffer_destruct() - Destruct v4l2 buffer object. + * @vbuf: Pointer to MVX V4L2 buffer. + */ +void mvx_v4l2_buffer_destruct(struct mvx_v4l2_buffer *vbuf); + +/** + * mvx_buffer_to_v4l2_buffer() - Cast mvx_buffer to mvx_v4l2_buffer. + * @buf: Pointer MVX buffer. + * + * This function casts a pointer to struct mvx_buffer to a pointer to + * a corresponding struct mvx_v4l2_buffer. + * + * Return: Pointer to corresponding mvx_v4l2_buffer object. + */ +struct mvx_v4l2_buffer *mvx_buffer_to_v4l2_buffer(struct mvx_buffer *buf); + +/** + * mvx_v4l2_buffer_set_status() - Set status for a buffer. + * @vbuf: Pointer to MVX V4L2 buffer. + * @status: Status to set. + * + * Status is a combination of the following flags: + * V4L2_BUF_FLAG_QUEUED, + * V4L2_BUF_FLAG_DONE, + * V4L2_BUF_FLAG_PREPARED, + * V4L2_BUF_FLAG_ERROR + */ +void mvx_v4l2_buffer_set_status(struct mvx_v4l2_buffer *vbuf, uint32_t status); + +/** + * mvx_v4l2_buffer_get_status() - Get the buffer status. + * @vbuf: Pointer to MVX V4L2 buffer. + * + * Return: Buffer status. + */ +uint32_t mvx_v4l2_buffer_get_status(struct mvx_v4l2_buffer *vbuf); + +/** + * mvx_v4l2_buffer_set() - Copy Vb2 buffer to VBUF. + * @vbuf: Destination MVX V4L2 buffer. + * @b: Source Vb2 buffer. + * + * Copies and validates parameters from 'b' to 'vbuf'. + * + * Return: 0 on success, else error code. + */ +int mvx_v4l2_buffer_set(struct mvx_v4l2_buffer *vbuf, struct vb2_buffer *b); + +/** + * mvx_v4l2_buffer_get() - Copy VBUF to V4L2 buffer. + * @vbuf: Source MVX V4L2 buffer. + * @b: Destination V4L2 buffer. + * + * Copies parameters from 'vbuf' to 'b'. + */ +void mvx_v4l2_buffer_get(struct mvx_v4l2_buffer *vbuf, struct v4l2_buffer *b); + +/** + * mvx_v4l2_buffer_update() - Update the V4L2 buffer. + * @vbuf: Pointer to MVX V4L2 buffer. + * + * This function copies parameters from the MVX buffer to the V4L2 buffer. + * It also sets the time stamp and validates that the buffer length is correct. + * If an error is detectd the buffer length is cleared and the error flag + * is set. + * + * This function should be called after the MVX buffer has changed, for example + * after it has been returned by the firmware or flushed. + * + * Return: VB2_BUF_STATE_DONE on success, else VB2_BUF_STATE_ERROR. + */ +enum vb2_buffer_state mvx_v4l2_buffer_update(struct mvx_v4l2_buffer *vbuf); + +#endif /* _MVX_V4L2_BUFFER_H_ */ diff --git a/drivers/media/platform/canaan/vpu/mvx_v4l2_ctrls.c b/drivers/media/platform/canaan/vpu/mvx_v4l2_ctrls.c new file mode 100644 index 0000000000000..38c2bcf670677 --- /dev/null +++ b/drivers/media/platform/canaan/vpu/mvx_v4l2_ctrls.c @@ -0,0 +1,1420 @@ +// SPDX-License-Identifier: GPL-2.0-only +/* + * The confidential and proprietary information contained in this file may + * only be used by a person authorised under and to the extent permitted + * by a subsisting licensing agreement from Arm Technology (China) Co., Ltd. + * + * (C) COPYRIGHT 2021-2021 Arm Technology (China) Co., Ltd. + * ALL RIGHTS RESERVED + * + * This entire notice must be reproduced on all copies of this file + * and copies of this file may only be made by a person if such person is + * permitted to do so under the terms of a subsisting license agreement + * from Arm Technology (China) Co., Ltd. + * + * 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. + * + */ + +/**************************************************************************** + * Includes + ****************************************************************************/ +#include + +#include "mvx_bitops.h" +#include "mvx_v4l2_ctrls.h" +#include "mvx_v4l2_session.h" +#include "mvx-v4l2-controls.h" + +/**************************************************************************** + * Static functions and variables + ****************************************************************************/ + +/* + * V4L2_CID_MVE_VIDEO_NALU_FORMAT control defines. + */ +static const char *const nalu_format_str[] = { + "Start codes", "One nalu per buffer", "One byte length field", + "Two byte length field", "Four byte length field" +}; + +static const enum mvx_nalu_format mvx_nalu_format_list[] = { + MVX_NALU_FORMAT_START_CODES, MVX_NALU_FORMAT_ONE_NALU_PER_BUFFER, + MVX_NALU_FORMAT_ONE_BYTE_LENGTH_FIELD, + MVX_NALU_FORMAT_TWO_BYTE_LENGTH_FIELD, + MVX_NALU_FORMAT_FOUR_BYTE_LENGTH_FIELD +}; + +/* + * V4L2_CID_MVE_VIDEO_H265_PROFILE control defines. + */ +static const char *const h265_profile_str[] = { "Main", "Main still", + "Main intra", "Main10" }; + +static const int mvx_h265_profile_list[] = { + MVX_PROFILE_H265_MAIN, + MVX_PROFILE_H265_MAIN_STILL, + MVX_PROFILE_H265_MAIN_INTRA, + MVX_PROFILE_H265_MAIN_10, +}; + +/* + * V4L2_CID_MVE_VIDEO_VC1_PROFILE control defines. + */ +static const char *const vc1_profile_str[] = { "Simple", "Main", "Advanced" }; + +static const int mvx_vc1_profile_list[] = { MVX_PROFILE_VC1_SIMPLE, + MVX_PROFILE_VC1_MAIN, + MVX_PROFILE_VC1_ADVANCED }; + +/* + * V4L2_CID_MPEG_VIDEO_H264_PROFILE control defines. + */ +static const uint8_t h264_profile_list[] = { + V4L2_MPEG_VIDEO_H264_PROFILE_BASELINE, + V4L2_MPEG_VIDEO_H264_PROFILE_MAIN, V4L2_MPEG_VIDEO_H264_PROFILE_HIGH, + V4L2_MPEG_VIDEO_H264_PROFILE_HIGH_10 +}; + +static const enum mvx_profile mvx_h264_profile_list[] = { + MVX_PROFILE_H264_BASELINE, MVX_PROFILE_H264_MAIN, MVX_PROFILE_H264_HIGH, + MVX_PROFILE_H264_HIGH_10 +}; + +/* + * V4L2_CID_MPEG_VIDEO_H264_LEVEL control defines. + */ +static uint8_t h264_level_list[] = { + V4L2_MPEG_VIDEO_H264_LEVEL_1_0, V4L2_MPEG_VIDEO_H264_LEVEL_1B, + V4L2_MPEG_VIDEO_H264_LEVEL_1_1, V4L2_MPEG_VIDEO_H264_LEVEL_1_2, + V4L2_MPEG_VIDEO_H264_LEVEL_1_3, V4L2_MPEG_VIDEO_H264_LEVEL_2_0, + V4L2_MPEG_VIDEO_H264_LEVEL_2_1, V4L2_MPEG_VIDEO_H264_LEVEL_2_2, + V4L2_MPEG_VIDEO_H264_LEVEL_3_0, V4L2_MPEG_VIDEO_H264_LEVEL_3_1, + V4L2_MPEG_VIDEO_H264_LEVEL_3_2, V4L2_MPEG_VIDEO_H264_LEVEL_4_0, + V4L2_MPEG_VIDEO_H264_LEVEL_4_1, V4L2_MPEG_VIDEO_H264_LEVEL_4_2, + V4L2_MPEG_VIDEO_H264_LEVEL_5_0, V4L2_MPEG_VIDEO_H264_LEVEL_5_1 +}; + +static const int mvx_h264_level_list[] = { + MVX_LEVEL_H264_1, MVX_LEVEL_H264_1b, MVX_LEVEL_H264_11, + MVX_LEVEL_H264_12, MVX_LEVEL_H264_13, MVX_LEVEL_H264_2, + MVX_LEVEL_H264_21, MVX_LEVEL_H264_22, MVX_LEVEL_H264_3, + MVX_LEVEL_H264_31, MVX_LEVEL_H264_32, MVX_LEVEL_H264_4, + MVX_LEVEL_H264_41, MVX_LEVEL_H264_42, MVX_LEVEL_H264_5, + MVX_LEVEL_H264_51 +}; + +/* + * V4L2_CID_MVE_VIDEO_H265_LEVEL control defines. + */ +static const char *const h265_level_str[] = { + "None", + + "Main 1", "High 1", + + "Main 2", "High 2", "Main 2.1", "High 2.1", + + "Main 3", "High 3", "Main 3.1", "High 3.1", + + "Main 4", "High 4", "Main 4.1", "High 4.1", + + "Main 5", "High 5", "Main 5.1", "High 5.1", "Main 5.2", "High 5.2", + + "Main 6", "High 6", "Main 6.1", "High 6.1", "Main 6.2", "High 6.2" +}; + +static const int mvx_h265_level_list[] = { + MVX_LEVEL_NONE, + + MVX_LEVEL_H265_MAIN_1, MVX_LEVEL_H265_HIGH_1, + + MVX_LEVEL_H265_MAIN_2, MVX_LEVEL_H265_HIGH_2, MVX_LEVEL_H265_MAIN_21, + MVX_LEVEL_H265_HIGH_21, + + MVX_LEVEL_H265_MAIN_3, MVX_LEVEL_H265_HIGH_3, MVX_LEVEL_H265_MAIN_31, + MVX_LEVEL_H265_HIGH_31, + + MVX_LEVEL_H265_MAIN_4, MVX_LEVEL_H265_HIGH_4, MVX_LEVEL_H265_MAIN_41, + MVX_LEVEL_H265_HIGH_41, + + MVX_LEVEL_H265_MAIN_5, MVX_LEVEL_H265_HIGH_5, MVX_LEVEL_H265_MAIN_51, + MVX_LEVEL_H265_HIGH_51, MVX_LEVEL_H265_MAIN_52, MVX_LEVEL_H265_HIGH_52, + + MVX_LEVEL_H265_MAIN_6, MVX_LEVEL_H265_HIGH_6, MVX_LEVEL_H265_MAIN_61, + MVX_LEVEL_H265_HIGH_61, MVX_LEVEL_H265_MAIN_62, MVX_LEVEL_H265_HIGH_62 +}; + +/* + * V4L2_CID_MVE_VIDEO_GOP_TYPE control defines. + */ +static const char *const gop_type_str[] = { "None", "Bidirectional", + "Low delay", "Pyramid", + "svct3", "gdr" }; + +static const enum mvx_gop_type mvx_gop_type_list[] = { + MVX_GOP_TYPE_NONE, MVX_GOP_TYPE_BIDIRECTIONAL, + MVX_GOP_TYPE_LOW_DELAY, MVX_GOP_TYPE_PYRAMID, + MVX_GOP_TYPE_SVCT3, MVX_GOP_TYPE_GDR +}; + +/* + * V4L2_CID_MPEG_VIDEO_H264_ENTROPY_MODE control defines. + */ +#define V4L2_MPEG_VIDEO_H264_ENTROPY_MODE_NONE 2 + +static const uint8_t h264_entropy_mode_list[] = { + V4L2_MPEG_VIDEO_H264_ENTROPY_MODE_CAVLC, + V4L2_MPEG_VIDEO_H264_ENTROPY_MODE_CABAC, + V4L2_MPEG_VIDEO_H264_ENTROPY_MODE_NONE +}; + +static const enum mvx_entropy_mode mvx_h264_entropy_mode_list[] = { + MVX_ENTROPY_MODE_CAVLC, MVX_ENTROPY_MODE_CABAC, MVX_ENTROPY_MODE_NONE +}; + +static const char *const h264_entropy_mode_str[] = { "CAVLC", "CABAC", "None" }; + +/* + * V4L2_CID_MPEG_VIDEO_MULTI_SLICE_MODE controls list. + */ +static uint8_t multi_slice_mode_list[] = { + V4L2_MPEG_VIDEO_MULTI_SLICE_MODE_SINGLE, + + /* Misspelling in the header file */ + V4L2_MPEG_VIDEO_MULTI_SLICE_MODE_MAX_MB +}; + +static const enum mvx_multi_slice_mode mvx_multi_slice_mode_list[] = { + MVX_MULTI_SLICE_MODE_SINGLE, MVX_MULTI_SLICE_MODE_MAX_MB +}; + +/* + * V4L2_CID_MVE_VIDEO_VP9_PROB_UPDATE control defines. + */ +static const char *const vp9_prob_update_str[] = { "Disabled", "Implicit", + "Explicit" }; + +static const enum mvx_vp9_prob_update mvx_vp9_prob_update_list[] = { + MVX_VP9_PROB_UPDATE_DISABLED, MVX_VP9_PROB_UPDATE_IMPLICIT, + MVX_VP9_PROB_UPDATE_EXPLICIT +}; + +/* + * V4L2_CID_MVE_VIDEO_RGB_TO_YUV_MODE control defines. + */ +static const char *const rgb_to_yuv_mode_str[] = { + "BT601 studio", "BT601 full", "BT709 studio", "BT709 full", + "BT2020 studio", "BT2020 full", "rgb to yuv mode max" +}; + +static const enum mvx_rgb_to_yuv_mode mvx_rgb_to_yuv_mode_list[] = { + MVX_RGB_TO_YUV_MODE_BT601_STUDIO, + MVX_RGB_TO_YUV_MODE_BT601_FULL, + MVX_RGB_TO_YUV_MODE_BT709_STUDIO, + MVX_RGB_TO_YUV_MODE_BT709_FULL, + MVX_RGB_TO_YUV_MODE_BT2020_STUDIO, + MVX_RGB_TO_YUV_MODE_BT2020_FULL, + MVX_RGB_TO_YUV_MODE_MAX +}; + +/** + * find_idx() - Find index of a value in an array. + * @list: Pointer to an array. + * @size: Size of an array. + * @val: Value to look for. + * + * Return: Index of the first occurrence of 'val' in 'list', + * or -EINVAL when not found. + */ +static int find_idx(const uint8_t *list, size_t size, uint8_t val) +{ + while (size--) + if (list[size] == val) + return size; + + return -EINVAL; +} + +/** + * set_ctrl() - Callback used by V4L2 framework to set a control. + * @ctrl: V4L2 control. + * + * Return: 0 on success, error code otherwise. + */ +static int set_ctrl(struct v4l2_ctrl *ctrl) +{ + int ret = 0; + struct mvx_v4l2_session *vsession = + container_of(ctrl->handler, struct mvx_v4l2_session, v4l2_ctrl); + struct mvx_session *session = &vsession->session; + enum mvx_nalu_format nalu_fmt; + enum mvx_profile mvx_profile; + enum mvx_level mvx_level; + enum mvx_gop_type gop_type; + enum mvx_entropy_mode entropy_mode; + enum mvx_multi_slice_mode multi_slice_mode; + enum mvx_vp9_prob_update vp9_prob_update; + enum mvx_rgb_to_yuv_mode rgb_to_yuv_mode; + int32_t i32_val; + int64_t i64_val; + bool bool_val; + enum mvx_tristate tri_val; + struct mvx_buffer_param_rate_control rc; + + ret = mutex_lock_interruptible(&vsession->mutex); + if (ret != 0) + return ret; + switch (ctrl->id) { + case V4L2_CID_MPEG_VIDEO_GOP_SIZE: + i32_val = *ctrl->p_new.p_s32 - 1; + ret = mvx_session_set_p_frames(session, i32_val); + break; + case V4L2_CID_MVE_VIDEO_SECURE_VIDEO: + bool_val = *ctrl->p_new.p_s32 != 0; + ret = mvx_session_set_securevideo(session, bool_val); + break; + case V4L2_CID_MVE_VIDEO_FRAME_RATE: + i64_val = *ctrl->p_new.p_s64; + ret = mvx_session_set_frame_rate(session, i64_val); + break; + case V4L2_CID_MPEG_VIDEO_FRAME_RC_ENABLE: + bool_val = *ctrl->p_new.p_s32 != 0; + ret = mvx_session_set_rate_control(session, bool_val); + break; + case V4L2_CID_MPEG_VIDEO_BITRATE: + i32_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_bitrate(session, i32_val); + rc.rate_control_mode = MVX_OPT_RATE_CONTROL_MODE_CONSTANT; + rc.target_bitrate = i32_val; + rc.maximum_bitrate = rc.target_bitrate; + ret = mvx_session_set_bitrate_control(session, &rc); + break; + case V4L2_CID_MVE_VIDEO_CROP_LEFT: + i32_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_crop_left(session, i32_val); + break; + case V4L2_CID_MVE_VIDEO_CROP_RIGHT: + i32_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_crop_right(session, i32_val); + break; + case V4L2_CID_MVE_VIDEO_CROP_TOP: + i32_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_crop_top(session, i32_val); + break; + case V4L2_CID_MVE_VIDEO_CROP_BOTTOM: + i32_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_crop_bottom(session, i32_val); + break; + case V4L2_CID_MVE_VIDEO_RC_I_MODE: + i32_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_rc_bit_i_mode(session, i32_val); + break; + case V4L2_CID_MVE_VIDEO_RC_I_RATIO: + i32_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_rc_bit_i_ratio(session, i32_val); + break; + case V4L2_CID_MVE_VIDEO_INTER_MED_BUF_SIZE: + i32_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_inter_med_buf_size(session, i32_val); + break; + case V4L2_CID_MVE_VIDEO_SVCT3_LEVEL1_PERIOD: + i32_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_svct3_level1_period(session, i32_val); + break; + case V4L2_CID_MVE_VIDEO_HRD_BUFFER_SIZE: + i32_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_hrd_buffer_size(session, i32_val); + break; + case V4L2_CID_MVE_VIDEO_NALU_FORMAT: + i32_val = *ctrl->p_new.p_s32; + nalu_fmt = mvx_nalu_format_list[i32_val]; + ret = mvx_session_set_nalu_format(session, nalu_fmt); + break; + case V4L2_CID_MVE_VIDEO_STREAM_ESCAPING: + tri_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_stream_escaping(session, tri_val); + break; + case V4L2_CID_MPEG_VIDEO_H264_PROFILE: + i32_val = *ctrl->p_new.p_s32; + ret = find_idx(h264_profile_list, ARRAY_SIZE(h264_profile_list), + i32_val); + if (ret == -EINVAL) + goto unlock_mutex; + + mvx_profile = mvx_h264_profile_list[ret]; + ret = mvx_session_set_profile(session, MVX_FORMAT_H264, + mvx_profile); + break; + case V4L2_CID_MVE_VIDEO_H265_PROFILE: + i32_val = *ctrl->p_new.p_s32; + mvx_profile = mvx_h265_profile_list[i32_val]; + ret = mvx_session_set_profile(session, MVX_FORMAT_HEVC, + mvx_profile); + break; + case V4L2_CID_MVE_VIDEO_VC1_PROFILE: + i32_val = *ctrl->p_new.p_s32; + mvx_profile = mvx_vc1_profile_list[i32_val]; + ret = mvx_session_set_profile(session, MVX_FORMAT_VC1, + mvx_profile); + break; + case V4L2_CID_MPEG_VIDEO_H264_LEVEL: + i32_val = *ctrl->p_new.p_s32; + ret = find_idx(h264_level_list, ARRAY_SIZE(h264_level_list), + i32_val); + if (ret == -EINVAL) + goto unlock_mutex; + + mvx_level = mvx_h264_level_list[ret]; + ret = mvx_session_set_level(session, MVX_FORMAT_H264, + mvx_level); + break; + case V4L2_CID_MVE_VIDEO_H265_LEVEL: + i32_val = *ctrl->p_new.p_s32; + mvx_level = mvx_h265_level_list[i32_val]; + ret = mvx_session_set_level(session, MVX_FORMAT_HEVC, + mvx_level); + break; + case V4L2_CID_MVE_VIDEO_IGNORE_STREAM_HEADERS: + tri_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_ignore_stream_headers(session, tri_val); + break; + case V4L2_CID_MVE_VIDEO_FRAME_REORDERING: + tri_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_frame_reordering(session, tri_val); + break; + case V4L2_CID_MVE_VIDEO_INTBUF_SIZE: + i32_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_intbuf_size(session, i32_val); + break; + case V4L2_CID_MVE_VIDEO_P_FRAMES: + i32_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_p_frames(session, i32_val); + break; + case V4L2_CID_MPEG_VIDEO_B_FRAMES: + i32_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_b_frames(session, i32_val); + break; + case V4L2_CID_MVE_VIDEO_GOP_TYPE: + i32_val = *ctrl->p_new.p_s32; + gop_type = mvx_gop_type_list[i32_val]; + ret = mvx_session_set_gop_type(session, gop_type); + break; + case V4L2_CID_MPEG_VIDEO_CYCLIC_INTRA_REFRESH_MB: + i32_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_cyclic_intra_refresh_mb(session, i32_val); + break; + case V4L2_CID_MVE_VIDEO_CONSTR_IPRED: + tri_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_constr_ipred(session, tri_val); + break; + case V4L2_CID_MVE_VIDEO_ENTROPY_SYNC: + tri_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_entropy_sync(session, tri_val); + break; + case V4L2_CID_MVE_VIDEO_TEMPORAL_MVP: + tri_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_temporal_mvp(session, tri_val); + break; + case V4L2_CID_MVE_VIDEO_TILE_ROWS: + i32_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_tile_rows(session, i32_val); + break; + case V4L2_CID_MVE_VIDEO_TILE_COLS: + i32_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_tile_cols(session, i32_val); + break; + case V4L2_CID_MVE_VIDEO_MIN_LUMA_CB_SIZE: + i32_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_min_luma_cb_size(session, i32_val); + break; + case V4L2_CID_MVE_VIDEO_MB_MASK: + i32_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_mb_mask(session, i32_val); + break; + case V4L2_CID_MPEG_VIDEO_H264_ENTROPY_MODE: + i32_val = *ctrl->p_new.p_s32; + ret = find_idx(h264_entropy_mode_list, + ARRAY_SIZE(h264_entropy_mode_list), i32_val); + if (ret == -EINVAL) + goto unlock_mutex; + + entropy_mode = mvx_h264_entropy_mode_list[ret]; + ret = mvx_session_set_entropy_mode(session, entropy_mode); + break; + case V4L2_CID_MPEG_VIDEO_MULTI_SLICE_MODE: + i32_val = *ctrl->p_new.p_s32; + ret = find_idx(multi_slice_mode_list, + ARRAY_SIZE(multi_slice_mode_list), i32_val); + if (ret == -EINVAL) + goto unlock_mutex; + + multi_slice_mode = mvx_multi_slice_mode_list[ret]; + ret = mvx_session_set_multi_slice_mode(session, + multi_slice_mode); + break; + case V4L2_CID_MPEG_VIDEO_MULTI_SLICE_MAX_MB: + i32_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_multi_slice_max_mb(session, i32_val); + break; + case V4L2_CID_MVE_VIDEO_VP9_PROB_UPDATE: + i32_val = *ctrl->p_new.p_s32; + vp9_prob_update = mvx_vp9_prob_update_list[i32_val]; + ret = mvx_session_set_vp9_prob_update(session, vp9_prob_update); + break; + case V4L2_CID_MPEG_VIDEO_MV_H_SEARCH_RANGE: + i32_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_mv_h_search_range(session, i32_val); + break; + case V4L2_CID_MPEG_VIDEO_MV_V_SEARCH_RANGE: + i32_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_mv_v_search_range(session, i32_val); + break; + case V4L2_CID_MVE_VIDEO_BITDEPTH_CHROMA: + i32_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_bitdepth_chroma(session, i32_val); + break; + case V4L2_CID_MVE_VIDEO_BITDEPTH_LUMA: + i32_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_bitdepth_luma(session, i32_val); + break; + case V4L2_CID_MVE_VIDEO_GOP_RESET_PFRAMES: + i32_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_gop_reset_pframes(session, i32_val); + break; + case V4L2_CID_MVE_VIDEO_LTR_RESET_PERIOD: + i32_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_ltr_reset_period(session, i32_val); + break; + case V4L2_CID_MVE_VIDEO_FORCE_CHROMA_FORMAT: + i32_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_force_chroma_format(session, i32_val); + break; + case V4L2_CID_MVE_VIDEO_RGB_TO_YUV_MODE: + i32_val = *ctrl->p_new.p_s32; + rgb_to_yuv_mode = mvx_rgb_to_yuv_mode_list[i32_val]; + ret = mvx_session_set_rgb_to_yuv_mode(session, rgb_to_yuv_mode); + break; + case V4L2_CID_MVE_VIDEO_BANDWIDTH_LIMIT: + i32_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_band_limit(session, i32_val); + break; + case V4L2_CID_MVE_VIDEO_CABAC_INIT_IDC: + i32_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_cabac_init_idc(session, i32_val); + break; + case V4L2_CID_MPEG_VIDEO_H263_I_FRAME_QP: + i32_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_i_frame_qp(session, MVX_FORMAT_H263, + i32_val); + break; + case V4L2_CID_MPEG_VIDEO_H263_P_FRAME_QP: + i32_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_p_frame_qp(session, MVX_FORMAT_H263, + i32_val); + break; + case V4L2_CID_MPEG_VIDEO_H263_B_FRAME_QP: + i32_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_b_frame_qp(session, MVX_FORMAT_H263, + i32_val); + break; + case V4L2_CID_MPEG_VIDEO_H263_MIN_QP: + i32_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_min_qp(session, MVX_FORMAT_H263, i32_val); + break; + case V4L2_CID_MPEG_VIDEO_H263_MAX_QP: + i32_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_max_qp(session, MVX_FORMAT_H263, i32_val); + break; + case V4L2_CID_MPEG_VIDEO_H264_I_FRAME_QP: + i32_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_i_frame_qp(session, MVX_FORMAT_H264, + i32_val); + break; + case V4L2_CID_MPEG_VIDEO_H264_P_FRAME_QP: + i32_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_p_frame_qp(session, MVX_FORMAT_H264, + i32_val); + break; + case V4L2_CID_MPEG_VIDEO_H264_B_FRAME_QP: + i32_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_b_frame_qp(session, MVX_FORMAT_H264, + i32_val); + break; + case V4L2_CID_MPEG_VIDEO_H264_MIN_QP: + i32_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_min_qp(session, MVX_FORMAT_H264, i32_val); + break; + case V4L2_CID_MPEG_VIDEO_H264_MAX_QP: + i32_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_max_qp(session, MVX_FORMAT_H264, i32_val); + break; + case V4L2_CID_MPEG_VIDEO_HEVC_I_FRAME_QP: + i32_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_i_frame_qp(session, MVX_FORMAT_HEVC, + i32_val); + break; + case V4L2_CID_MPEG_VIDEO_HEVC_P_FRAME_QP: + i32_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_p_frame_qp(session, MVX_FORMAT_HEVC, + i32_val); + break; + case V4L2_CID_MPEG_VIDEO_HEVC_B_FRAME_QP: + i32_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_b_frame_qp(session, MVX_FORMAT_HEVC, + i32_val); + break; + case V4L2_CID_MPEG_VIDEO_HEVC_MIN_QP: + i32_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_min_qp(session, MVX_FORMAT_HEVC, i32_val); + break; + case V4L2_CID_MPEG_VIDEO_HEVC_MAX_QP: + i32_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_max_qp(session, MVX_FORMAT_HEVC, i32_val); + break; + case V4L2_CID_MPEG_VIDEO_VPX_I_FRAME_QP: + i32_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_i_frame_qp(session, MVX_FORMAT_VP9, + i32_val); + break; + case V4L2_CID_MPEG_VIDEO_VPX_P_FRAME_QP: + i32_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_p_frame_qp(session, MVX_FORMAT_VP9, + i32_val); + break; + case V4L2_CID_MVE_VIDEO_VPX_B_FRAME_QP: + i32_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_b_frame_qp(session, MVX_FORMAT_VP9, + i32_val); + break; + case V4L2_CID_MPEG_VIDEO_VPX_MIN_QP: + i32_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_min_qp(session, MVX_FORMAT_VP9, i32_val); + break; + case V4L2_CID_MPEG_VIDEO_VPX_MAX_QP: + i32_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_max_qp(session, MVX_FORMAT_VP9, i32_val); + break; + case V4L2_CID_JPEG_RESTART_INTERVAL: + i32_val = *ctrl->p_new.p_s32; + if (i32_val != -1) + ret = mvx_session_set_resync_interval(session, i32_val); + + break; + case V4L2_CID_MVE_VIDEO_INIT_QP_I: + i32_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_init_qp_i(session, i32_val); + break; + case V4L2_CID_MVE_VIDEO_INIT_QP_P: + i32_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_init_qp_p(session, i32_val); + break; + case V4L2_CID_MVE_VIDEO_SAO_LUMA: + i32_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_sao_luma(session, i32_val); + break; + case V4L2_CID_MVE_VIDEO_SAO_CHROMA: + i32_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_sao_chroma(session, i32_val); + break; + case V4L2_CID_MVE_VIDEO_QP_DELTA_I_P: + i32_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_delta_I_P(session, i32_val); + break; + case V4L2_CID_MVE_VIDEO_QP_REF_RB_EN: + i32_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_ref_rb_eb(session, i32_val); + break; + case V4L2_CID_MVE_VIDEO_RC_CLIP_TOP: + i32_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_rc_clip_top(session, i32_val); + break; + case V4L2_CID_MVE_VIDEO_RC_CLIP_BOT: + i32_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_rc_clip_bot(session, i32_val); + break; + case V4L2_CID_MVE_VIDEO_QP_MAP_CLIP_TOP: + i32_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_qpmap_clip_top(session, i32_val); + break; + case V4L2_CID_MVE_VIDEO_QP_MAP_CLIP_BOT: + i32_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_qpmap_clip_bot(session, i32_val); + break; + case V4L2_CID_MVE_VIDEO_MAX_QP_I: + i32_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_max_qp_i(session, i32_val); + break; + case V4L2_CID_MVE_VIDEO_MIN_QP_I: + i32_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_min_qp_i(session, i32_val); + break; + case V4L2_CID_MVE_VIDEO_QP_FIXED: + i32_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_fixedqp(session, i32_val); + break; + case V4L2_CID_MVE_VIDEO_FW_PROFILING: + i32_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_fw_profiling(session, i32_val); + break; + case V4L2_CID_MVE_VIDEO_VISIBLE_WIDTH: + i32_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_visible_width(session, i32_val); + break; + case V4L2_CID_MVE_VIDEO_VISIBLE_HEIGHT: + i32_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_visible_height(session, i32_val); + break; + case V4L2_CID_MVE_VIDEO_GDR_NUMBER: + i32_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_gdr_number(session, i32_val); + break; + case V4L2_CID_MVE_VIDEO_SCD_ENABLE: + i32_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_scd_enable(session, i32_val); + break; + case V4L2_CID_MVE_VIDEO_SCD_PERCENT: + i32_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_scd_percent(session, i32_val); + break; + case V4L2_CID_MVE_VIDEO_SCD_THRESHOLD: + i32_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_scd_threshold(session, i32_val); + break; + case V4L2_CID_MVE_VIDEO_AQ_SSIM_EN: + i32_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_aq_ssim_en(session, i32_val); + break; + case V4L2_CID_MVE_VIDEO_AQ_NEG_RATIO: + i32_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_aq_neg_ratio(session, i32_val); + break; + case V4L2_CID_MVE_VIDEO_AQ_POS_RATIO: + i32_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_aq_pos_ratio(session, i32_val); + break; + case V4L2_CID_MVE_VIDEO_AQ_QPDELTA_LMT: + i32_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_aq_qpdelta_lmt(session, i32_val); + break; + case V4L2_CID_MVE_VIDEO_AQ_INIT_FRM_AVG_SVAR: + i32_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_aq_init_frm_avg_svar(session, i32_val); + break; + case V4L2_CID_MVE_VIDEO_GDR_PERIOD: + i32_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_gdr_period(session, i32_val); + break; + case V4L2_CID_MVE_VIDEO_MULTI_SPS_PPS: + i32_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_multi_sps_pps(session, i32_val); + break; + case V4L2_CID_MVE_VIDEO_ENABLE_VISUAL: + i32_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_enable_visual(session, i32_val); + break; + case V4L2_CID_MVE_VIDEO_ENABLE_ADAPTIVE_INTRA_BLOCK: + i32_val = *ctrl->p_new.p_s32; + if (i32_val != 0) + ret = mvx_session_set_adaptive_intra_block(session, + i32_val); + break; + case V4L2_CID_JPEG_COMPRESSION_QUALITY: + i32_val = *ctrl->p_new.p_s32; + if (i32_val != 0) + ret = mvx_session_set_jpeg_quality(session, i32_val); + break; + case V4L2_CID_MVE_VIDEO_JPEG_QUALITY_LUMA: + i32_val = *ctrl->p_new.p_s32; + if (i32_val != 0) + ret = mvx_session_set_jpeg_quality_luma(session, + i32_val); + break; + case V4L2_CID_MVE_VIDEO_JPEG_QUALITY_CHROMA: + i32_val = *ctrl->p_new.p_s32; + if (i32_val != 0) + ret = mvx_session_set_jpeg_quality_chroma(session, + i32_val); + break; + case V4L2_CID_MVE_VIDEO_COLOR_CONVERSION: + i32_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_color_conversion(session, i32_val); + break; + case V4L2_CID_MVE_VIDEO_FORCED_UV_VALUE: + i32_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_forced_uv_value(session, i32_val); + break; + case V4L2_CID_MVE_VIDEO_DSL_INTERP_MODE: + i32_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_dsl_interpolation_mode(session, i32_val); + break; + case V4L2_CID_MVE_VIDEO_DISABLED_FEATURES: + i32_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_disabled_features(session, i32_val); + break; + case V4L2_CID_MVE_VIDEO_CHANGE_POS: + i32_val = *ctrl->p_new.p_s32; + ret = mvx_session_set_change_pos(session, i32_val); + break; + } +unlock_mutex: + mutex_unlock(&vsession->mutex); + + return ret; +} + +/** + * get_volatile_ctrl() - Get control value. + * @ctrl: V4L2 control. + * + * Return: 0 on success, else error code. + */ +static int get_volatile_ctrl(struct v4l2_ctrl *ctrl) +{ + struct mvx_v4l2_session *vsession = + container_of(ctrl->handler, struct mvx_v4l2_session, v4l2_ctrl); + + switch (ctrl->id) { + case V4L2_CID_MIN_BUFFERS_FOR_OUTPUT: + ctrl->val = vsession->session.port[MVX_DIR_INPUT].buffer_min; + break; + case V4L2_CID_MIN_BUFFERS_FOR_CAPTURE: + ctrl->val = vsession->session.port[MVX_DIR_OUTPUT].buffer_min; + break; + default: + MVX_LOG_PRINT(&mvx_log_if, MVX_LOG_WARNING, + "Unsupported get control. id=%u.", ctrl->id); + return -EINVAL; + } + + return 0; +} + +/* + * Callbacks required by V4L2 framework to implement controls support. + */ +static const struct v4l2_ctrl_ops ctrl_ops = { .g_volatile_ctrl = + get_volatile_ctrl, + .s_ctrl = set_ctrl }; + +/** + * get_skip_mask() - Calculate V4L2 menu skip mask. + * @list: Array of menu items. + * @cnt: Number of menu items. + * + * Return: V4L2 menu skip mask. + */ +static uint64_t get_skip_mask(const uint8_t *list, size_t cnt) +{ + uint64_t mask = 0; + int i; + + for (i = 0; i < cnt; ++i) + mvx_set_bit(list[i], &mask); + + return ~mask; +} + +/** + * mvx_v4l2_ctrl_new_custom_int() - Create custom V4L2 integer control. + * @hnd: V4L2 handler. + * @id: Id of a control. + * @name: Name of a control. + * @min: Minimum allowed value. + * @max: Maximum allowed value. + * @def: Default value. + * @step: Step. + * + * Return: Pointer to v4l2_ctrl structure in case of success, + * or NULL in case of failure. + */ +static struct v4l2_ctrl * +mvx_v4l2_ctrl_new_custom_int(struct v4l2_ctrl_handler *hnd, int id, + const char *name, int64_t min, int64_t max, + int64_t def, int32_t step) +{ + struct v4l2_ctrl_config cfg; + + memset(&cfg, 0, sizeof(cfg)); + + cfg.id = id; + cfg.ops = &ctrl_ops; + cfg.type = V4L2_CTRL_TYPE_INTEGER; + cfg.name = name; + cfg.min = min; + cfg.max = max; + cfg.def = def; + cfg.step = step; + + return v4l2_ctrl_new_custom(hnd, &cfg, NULL); +} + +/** + * mvx_v4l2_ctrl_new_custom_tristate() - Create custom V4L2 tristate control. + * @hnd: V4L2 handler. + * @id: Id of a control. + * @name: Name of a control. + * @def: Default value. + * + * Return: Pointer to v4l2_ctrl structure in case of success, + * or NULL in case of failure. + */ +static struct v4l2_ctrl * +mvx_v4l2_ctrl_new_custom_tristate(struct v4l2_ctrl_handler *hnd, int id, + const char *name, enum mvx_tristate def) +{ + struct v4l2_ctrl_config cfg; + + memset(&cfg, 0, sizeof(cfg)); + + cfg.id = id; + cfg.ops = &ctrl_ops; + cfg.type = V4L2_CTRL_TYPE_INTEGER; + cfg.name = name; + cfg.min = -1; + cfg.max = 1; + cfg.def = def; + cfg.step = 1; + + return v4l2_ctrl_new_custom(hnd, &cfg, NULL); +} + +/**************************************************************************** + * Exported functions + ****************************************************************************/ + +int mvx_v4l2_ctrls_init(struct v4l2_ctrl_handler *hnd) +{ + int ret; + struct v4l2_ctrl_config cfg; + struct v4l2_ctrl *ctrl; + + ret = v4l2_ctrl_handler_init(hnd, 128); + if (ret != 0) + return ret; + + ctrl = mvx_v4l2_ctrl_new_custom_int(hnd, + V4L2_CID_MVE_VIDEO_SECURE_VIDEO, + "secure video", 0, 1, 0, 1); + if (ctrl == NULL) + goto handler_free; + + ctrl = mvx_v4l2_ctrl_new_custom_int(hnd, V4L2_CID_MVE_VIDEO_FRAME_RATE, + "frame rate", 0, 0x10000000, + 30 << 16, 1); + if (ctrl == NULL) + goto handler_free; + + ctrl = mvx_v4l2_ctrl_new_custom_int(hnd, V4L2_CID_MVE_VIDEO_CROP_LEFT, + "video crop left", 0, 10000000, 0, + 1); + if (ctrl == NULL) + goto handler_free; + + ctrl = mvx_v4l2_ctrl_new_custom_int(hnd, V4L2_CID_MVE_VIDEO_CROP_RIGHT, + "video crop right", 0, 10000000, 0, + 1); + if (ctrl == NULL) + goto handler_free; + + ctrl = mvx_v4l2_ctrl_new_custom_int(hnd, V4L2_CID_MVE_VIDEO_CROP_TOP, + "video crop top", 0, 10000000, 0, + 1); + if (ctrl == NULL) + goto handler_free; + + ctrl = mvx_v4l2_ctrl_new_custom_int(hnd, V4L2_CID_MVE_VIDEO_CROP_BOTTOM, + "video crop bottom", 0, 10000000, 0, + 1); + if (ctrl == NULL) + goto handler_free; + + ctrl = mvx_v4l2_ctrl_new_custom_int(hnd, V4L2_CID_MVE_VIDEO_RC_I_MODE, + "i frame bit mode of rc", 0, 1, 0, + 1); + if (ctrl == NULL) + goto handler_free; + + ctrl = mvx_v4l2_ctrl_new_custom_int(hnd, V4L2_CID_MVE_VIDEO_RC_I_RATIO, + "i frame bit ratio of rc", 0, 100, + 0, 1); + if (ctrl == NULL) + goto handler_free; + + ctrl = mvx_v4l2_ctrl_new_custom_int( + hnd, V4L2_CID_MVE_VIDEO_INTER_MED_BUF_SIZE, + "intermediate buffer size", 0, 1073741823, 0, 1); + if (ctrl == NULL) + goto handler_free; + + ctrl = mvx_v4l2_ctrl_new_custom_int( + hnd, V4L2_CID_MVE_VIDEO_SVCT3_LEVEL1_PERIOD, + "svct3 level1 period", 0, 255, 0, 1); + if (ctrl == NULL) + goto handler_free; + + ctrl = mvx_v4l2_ctrl_new_custom_int(hnd, + V4L2_CID_MVE_VIDEO_HRD_BUFFER_SIZE, + "HRD buffer size", 0, 1073741823, 0, + 1); + if (ctrl == NULL) + goto handler_free; + + ctrl = v4l2_ctrl_new_std(hnd, &ctrl_ops, + V4L2_CID_MPEG_VIDEO_FRAME_RC_ENABLE, 0, 1, 1, + 0); + if (ctrl == NULL) + goto handler_free; + + ctrl = v4l2_ctrl_new_std(hnd, &ctrl_ops, V4L2_CID_MPEG_VIDEO_BITRATE, + 1000, 1000000000, 1, 2500000); + if (ctrl == NULL) + goto handler_free; + + ctrl = v4l2_ctrl_new_std(hnd, &ctrl_ops, V4L2_CID_MPEG_VIDEO_GOP_SIZE, + 0, 10000, 1, 29); + if (ctrl == NULL) + goto handler_free; + + memset(&cfg, 0, sizeof(cfg)); + cfg.id = V4L2_CID_MVE_VIDEO_NALU_FORMAT; + cfg.ops = &ctrl_ops; + cfg.type = V4L2_CTRL_TYPE_MENU; + cfg.name = "nalu format"; + cfg.max = ARRAY_SIZE(nalu_format_str) - 1; + cfg.def = 0; + cfg.qmenu = nalu_format_str; + ctrl = v4l2_ctrl_new_custom(hnd, &cfg, NULL); + if (ctrl == NULL) + goto handler_free; + + ctrl = mvx_v4l2_ctrl_new_custom_tristate( + hnd, V4L2_CID_MVE_VIDEO_STREAM_ESCAPING, "stream escaping", + MVX_TRI_UNSET); + if (ctrl == NULL) + goto handler_free; + + ctrl = v4l2_ctrl_new_std_menu( + hnd, &ctrl_ops, V4L2_CID_MPEG_VIDEO_H264_PROFILE, + V4L2_MPEG_VIDEO_H264_PROFILE_HIGH_10, + get_skip_mask(h264_profile_list, ARRAY_SIZE(h264_profile_list)), + V4L2_MPEG_VIDEO_H264_PROFILE_HIGH); + if (ctrl == NULL) + goto handler_free; + + memset(&cfg, 0, sizeof(cfg)); + cfg.id = V4L2_CID_MVE_VIDEO_H265_PROFILE; + cfg.ops = &ctrl_ops; + cfg.type = V4L2_CTRL_TYPE_MENU; + cfg.name = "h265 profile"; + cfg.max = ARRAY_SIZE(h265_profile_str) - 1; + cfg.def = 0; + cfg.qmenu = h265_profile_str; + ctrl = v4l2_ctrl_new_custom(hnd, &cfg, NULL); + if (ctrl == NULL) + goto handler_free; + + memset(&cfg, 0, sizeof(cfg)); + cfg.id = V4L2_CID_MVE_VIDEO_VC1_PROFILE; + cfg.ops = &ctrl_ops; + cfg.type = V4L2_CTRL_TYPE_MENU; + cfg.name = "vc1 profile"; + cfg.max = ARRAY_SIZE(vc1_profile_str) - 1; + cfg.def = 0; + cfg.qmenu = vc1_profile_str; + ctrl = v4l2_ctrl_new_custom(hnd, &cfg, NULL); + if (ctrl == NULL) + goto handler_free; + + ctrl = v4l2_ctrl_new_std_menu( + hnd, &ctrl_ops, V4L2_CID_MPEG_VIDEO_H264_LEVEL, + V4L2_MPEG_VIDEO_H264_LEVEL_5_1, + get_skip_mask(h264_level_list, ARRAY_SIZE(h264_level_list)), + V4L2_MPEG_VIDEO_H264_LEVEL_5_1); + if (ctrl == NULL) + goto handler_free; + + memset(&cfg, 0, sizeof(cfg)); + cfg.id = V4L2_CID_MVE_VIDEO_H265_LEVEL; + cfg.ops = &ctrl_ops; + cfg.type = V4L2_CTRL_TYPE_MENU; + cfg.name = "h265 level"; + cfg.max = ARRAY_SIZE(h265_level_str) - 1; + cfg.def = 17; //"Main 5.1" + cfg.qmenu = h265_level_str; + ctrl = v4l2_ctrl_new_custom(hnd, &cfg, NULL); + if (ctrl == NULL) + goto handler_free; + + ctrl = mvx_v4l2_ctrl_new_custom_tristate( + hnd, V4L2_CID_MVE_VIDEO_IGNORE_STREAM_HEADERS, + "ignore stream headers", MVX_TRI_UNSET); + if (ctrl == NULL) + goto handler_free; + + ctrl = mvx_v4l2_ctrl_new_custom_tristate( + hnd, V4L2_CID_MVE_VIDEO_FRAME_REORDERING, "frame reordering", + MVX_TRI_UNSET); + if (ctrl == NULL) + goto handler_free; + + ctrl = mvx_v4l2_ctrl_new_custom_int(hnd, V4L2_CID_MVE_VIDEO_INTBUF_SIZE, + "internal buffer size", 0, INT_MAX, + 0, 1); + if (ctrl == NULL) + goto handler_free; + + ctrl = mvx_v4l2_ctrl_new_custom_int(hnd, V4L2_CID_MVE_VIDEO_P_FRAMES, + "video P frames", 0, INT_MAX, 0, 1); + if (ctrl == NULL) + goto handler_free; + + ctrl = v4l2_ctrl_new_std(hnd, &ctrl_ops, V4L2_CID_MPEG_VIDEO_B_FRAMES, + 0, INT_MAX, 1, 0); + if (ctrl == NULL) + goto handler_free; + + memset(&cfg, 0, sizeof(cfg)); + cfg.id = V4L2_CID_MVE_VIDEO_GOP_TYPE; + cfg.ops = &ctrl_ops; + cfg.type = V4L2_CTRL_TYPE_MENU; + cfg.name = "GOP type"; + cfg.max = ARRAY_SIZE(gop_type_str) - 1; + cfg.def = 0; + cfg.qmenu = gop_type_str; + ctrl = v4l2_ctrl_new_custom(hnd, &cfg, NULL); + if (ctrl == NULL) + goto handler_free; + + ctrl = v4l2_ctrl_new_std(hnd, &ctrl_ops, + V4L2_CID_MPEG_VIDEO_CYCLIC_INTRA_REFRESH_MB, 0, + INT_MAX, 1, 0); + if (ctrl == NULL) + goto handler_free; + + ctrl = mvx_v4l2_ctrl_new_custom_tristate( + hnd, V4L2_CID_MVE_VIDEO_CONSTR_IPRED, + "constrained intra prediction", MVX_TRI_UNSET); + if (ctrl == NULL) + goto handler_free; + + ctrl = mvx_v4l2_ctrl_new_custom_tristate( + hnd, V4L2_CID_MVE_VIDEO_ENTROPY_SYNC, "entropy sync", + MVX_TRI_UNSET); + if (ctrl == NULL) + goto handler_free; + + ctrl = mvx_v4l2_ctrl_new_custom_tristate( + hnd, V4L2_CID_MVE_VIDEO_TEMPORAL_MVP, "temporal mvp", + MVX_TRI_UNSET); + if (ctrl == NULL) + goto handler_free; + + ctrl = mvx_v4l2_ctrl_new_custom_int(hnd, V4L2_CID_MVE_VIDEO_TILE_ROWS, + "tile rows", 0, 65536, 0, 1); + if (ctrl == NULL) + goto handler_free; + + ctrl = mvx_v4l2_ctrl_new_custom_int(hnd, V4L2_CID_MVE_VIDEO_TILE_COLS, + "tile columns", 0, 65536, 0, 1); + if (ctrl == NULL) + goto handler_free; + + ctrl = mvx_v4l2_ctrl_new_custom_int(hnd, + V4L2_CID_MVE_VIDEO_MIN_LUMA_CB_SIZE, + "min luma cb size", 0, 16, 0, 8); + if (ctrl == NULL) + goto handler_free; + + memset(&cfg, 0, sizeof(cfg)); + cfg.id = V4L2_CID_MVE_VIDEO_MB_MASK; + cfg.ops = &ctrl_ops; + cfg.type = V4L2_CTRL_TYPE_BITMASK; + cfg.name = "macroblocks mask"; + cfg.def = 0x7fff; + cfg.min = 0; + cfg.max = 0x7fff; + cfg.step = 0; + ctrl = v4l2_ctrl_new_custom(hnd, &cfg, NULL); + if (ctrl == NULL) + goto handler_free; + + memset(&cfg, 0, sizeof(cfg)); + cfg.id = V4L2_CID_MPEG_VIDEO_H264_ENTROPY_MODE; + cfg.ops = &ctrl_ops; + cfg.type = V4L2_CTRL_TYPE_MENU; + cfg.name = "H264 Entropy Mode"; + cfg.max = ARRAY_SIZE(h264_entropy_mode_str) - 1; + cfg.def = V4L2_MPEG_VIDEO_H264_ENTROPY_MODE_NONE; + cfg.qmenu = h264_entropy_mode_str; + ctrl = v4l2_ctrl_new_custom(hnd, &cfg, NULL); + if (ctrl == NULL) + goto handler_free; + + ctrl = v4l2_ctrl_new_std_menu( + hnd, &ctrl_ops, V4L2_CID_MPEG_VIDEO_MULTI_SLICE_MODE, + V4L2_MPEG_VIDEO_MULTI_SLICE_MODE_MAX_MB, + + get_skip_mask(multi_slice_mode_list, + ARRAY_SIZE(multi_slice_mode_list)), + V4L2_MPEG_VIDEO_MULTI_SLICE_MODE_SINGLE); + if (ctrl == NULL) + goto handler_free; + + ctrl = v4l2_ctrl_new_std(hnd, &ctrl_ops, + V4L2_CID_MPEG_VIDEO_MULTI_SLICE_MAX_MB, 0, + INT_MAX, 1, 0); + if (ctrl == NULL) + goto handler_free; + + memset(&cfg, 0, sizeof(cfg)); + cfg.id = V4L2_CID_MVE_VIDEO_VP9_PROB_UPDATE; + cfg.ops = &ctrl_ops; + cfg.type = V4L2_CTRL_TYPE_MENU; + cfg.name = "VP9 prob update"; + cfg.max = ARRAY_SIZE(vp9_prob_update_str) - 1; + cfg.def = cfg.max; + cfg.qmenu = vp9_prob_update_str; + ctrl = v4l2_ctrl_new_custom(hnd, &cfg, NULL); + if (ctrl == NULL) + goto handler_free; + + ctrl = v4l2_ctrl_new_std(hnd, &ctrl_ops, + V4L2_CID_MPEG_VIDEO_MV_H_SEARCH_RANGE, 0, + INT_MAX, 1, 0); + if (ctrl == NULL) + goto handler_free; + + ctrl = v4l2_ctrl_new_std(hnd, &ctrl_ops, + V4L2_CID_MPEG_VIDEO_MV_V_SEARCH_RANGE, 0, + INT_MAX, 1, 0); + if (ctrl == NULL) + goto handler_free; + + ctrl = mvx_v4l2_ctrl_new_custom_int(hnd, + V4L2_CID_MVE_VIDEO_BITDEPTH_CHROMA, + "bitdepth chroma", 0, 0xff, 0, 1); + if (ctrl == NULL) + goto handler_free; + + ctrl = mvx_v4l2_ctrl_new_custom_int(hnd, + V4L2_CID_MVE_VIDEO_BITDEPTH_LUMA, + "bitdepth luma", 0, 0xff, 0, 1); + if (ctrl == NULL) + goto handler_free; + + ctrl = mvx_v4l2_ctrl_new_custom_int( + hnd, V4L2_CID_MVE_VIDEO_GOP_RESET_PFRAMES, "gop reset p frames", + 0, 0xff, 0, 1); + if (ctrl == NULL) + goto handler_free; + + ctrl = mvx_v4l2_ctrl_new_custom_int(hnd, + V4L2_CID_MVE_VIDEO_LTR_RESET_PERIOD, + "ltr reset period", 0, 0xffff, 0, + 1); + if (ctrl == NULL) + goto handler_free; + + ctrl = mvx_v4l2_ctrl_new_custom_int( + hnd, V4L2_CID_MVE_VIDEO_FORCE_CHROMA_FORMAT, + "force chroma format", -1, INT_MAX, 0, 1); + if (ctrl == NULL) + goto handler_free; + + memset(&cfg, 0, sizeof(cfg)); + cfg.id = V4L2_CID_MVE_VIDEO_RGB_TO_YUV_MODE; + cfg.ops = &ctrl_ops; + cfg.type = V4L2_CTRL_TYPE_MENU; + cfg.name = "RGB to YUV conversion mode"; + cfg.max = ARRAY_SIZE(rgb_to_yuv_mode_str) - 1; + cfg.def = MVX_RGB_TO_YUV_MODE_MAX; + cfg.qmenu = rgb_to_yuv_mode_str; + ctrl = v4l2_ctrl_new_custom(hnd, &cfg, NULL); + if (ctrl == NULL) + goto handler_free; + + ctrl = mvx_v4l2_ctrl_new_custom_int(hnd, + V4L2_CID_MVE_VIDEO_BANDWIDTH_LIMIT, + "bandwidth limit", 0, INT_MAX, 0, + 1); + if (ctrl == NULL) + goto handler_free; + + ctrl = mvx_v4l2_ctrl_new_custom_int(hnd, + V4L2_CID_MVE_VIDEO_CABAC_INIT_IDC, + "CABAC init IDC", 0, 4, 0, 1); + if (ctrl == NULL) + goto handler_free; + + ctrl = v4l2_ctrl_new_std(hnd, &ctrl_ops, + V4L2_CID_MPEG_VIDEO_H263_I_FRAME_QP, 0, 31, 1, + 0); + if (ctrl == NULL) + goto handler_free; + + ctrl = v4l2_ctrl_new_std(hnd, &ctrl_ops, + V4L2_CID_MPEG_VIDEO_H263_P_FRAME_QP, 0, 31, 1, + 0); + if (ctrl == NULL) + goto handler_free; + + ctrl = v4l2_ctrl_new_std(hnd, &ctrl_ops, + V4L2_CID_MPEG_VIDEO_H263_B_FRAME_QP, 0, 31, 1, + 0); + if (ctrl == NULL) + goto handler_free; + + ctrl = v4l2_ctrl_new_std(hnd, &ctrl_ops, + V4L2_CID_MPEG_VIDEO_H263_MIN_QP, 1, 31, 1, 1); + if (ctrl == NULL) + goto handler_free; + + ctrl = v4l2_ctrl_new_std(hnd, &ctrl_ops, + V4L2_CID_MPEG_VIDEO_H263_MAX_QP, 1, 31, 1, 1); + if (ctrl == NULL) + goto handler_free; + + ctrl = v4l2_ctrl_new_std(hnd, &ctrl_ops, + V4L2_CID_MPEG_VIDEO_H264_I_FRAME_QP, 0, 51, 1, + 0); + if (ctrl == NULL) + goto handler_free; + + ctrl = v4l2_ctrl_new_std(hnd, &ctrl_ops, + V4L2_CID_MPEG_VIDEO_H264_P_FRAME_QP, 0, 51, 1, + 0); + if (ctrl == NULL) + goto handler_free; + + ctrl = v4l2_ctrl_new_std(hnd, &ctrl_ops, + V4L2_CID_MPEG_VIDEO_H264_B_FRAME_QP, 0, 51, 1, + 0); + if (ctrl == NULL) + goto handler_free; + + ctrl = v4l2_ctrl_new_std(hnd, &ctrl_ops, + V4L2_CID_MPEG_VIDEO_H264_MIN_QP, 1, 51, 1, 1); + if (ctrl == NULL) + goto handler_free; + + ctrl = v4l2_ctrl_new_std(hnd, &ctrl_ops, + V4L2_CID_MPEG_VIDEO_H264_MAX_QP, 1, 51, 1, 1); + if (ctrl == NULL) + goto handler_free; + + ctrl = v4l2_ctrl_new_std(hnd, &ctrl_ops, + V4L2_CID_MPEG_VIDEO_HEVC_I_FRAME_QP, 0, 51, 1, + 0); + if (ctrl == NULL) + goto handler_free; + else + ctrl->is_private = 0; + + ctrl = v4l2_ctrl_new_std(hnd, &ctrl_ops, + V4L2_CID_MPEG_VIDEO_HEVC_P_FRAME_QP, 0, 51, 1, + 0); + if (ctrl == NULL) + goto handler_free; + else + ctrl->is_private = 0; + + ctrl = v4l2_ctrl_new_std(hnd, &ctrl_ops, + V4L2_CID_MPEG_VIDEO_HEVC_B_FRAME_QP, 0, 51, 1, + 0); + if (ctrl == NULL) + goto handler_free; + else + ctrl->is_private = 0; + + ctrl = v4l2_ctrl_new_std(hnd, &ctrl_ops, + V4L2_CID_MPEG_VIDEO_HEVC_MIN_QP, 1, 51, 1, 1); + if (ctrl == NULL) + goto handler_free; + + ctrl = v4l2_ctrl_new_std(hnd, &ctrl_ops, + V4L2_CID_MPEG_VIDEO_HEVC_MAX_QP, 1, 51, 1, 1); + if (ctrl == NULL) + goto handler_free; + + ctrl = v4l2_ctrl_new_std(hnd, &ctrl_ops, + V4L2_CID_MPEG_VIDEO_VPX_I_FRAME_QP, 0, 51, 1, + 0); + if (ctrl == NULL) + goto handler_free; + + ctrl = v4l2_ctrl_new_std(hnd, &ctrl_ops, + V4L2_CID_MPEG_VIDEO_VPX_P_FRAME_QP, 0, 51, 1, + 0); + if (ctrl == NULL) + goto handler_free; + + ctrl = mvx_v4l2_ctrl_new_custom_int(hnd, + V4L2_CID_MVE_VIDEO_VPX_B_FRAME_QP, + "VPx B frame QP value", 0, 51, 0, + 1); + if (ctrl == NULL) + goto handler_free; + + ctrl = v4l2_ctrl_new_std(hnd, &ctrl_ops, V4L2_CID_MPEG_VIDEO_VPX_MIN_QP, + 1, 51, 1, 1); + if (ctrl == NULL) + goto handler_free; + + ctrl = v4l2_ctrl_new_std(hnd, &ctrl_ops, V4L2_CID_MPEG_VIDEO_VPX_MAX_QP, + 1, 51, 1, 1); + if (ctrl == NULL) + goto handler_free; + + ctrl = mvx_v4l2_ctrl_new_custom_int(hnd, V4L2_CID_MVE_VIDEO_QP_FIXED, + "fixed qp", 0, 51, 0, 1); + if (ctrl == NULL) + goto handler_free; + + ctrl = v4l2_ctrl_new_std(hnd, &ctrl_ops, + V4L2_CID_MIN_BUFFERS_FOR_OUTPUT, 1, 32, 1, 1); + if (ctrl == NULL) + goto handler_free; + + ctrl->flags |= V4L2_CTRL_FLAG_READ_ONLY | V4L2_CTRL_FLAG_VOLATILE; + + ctrl = v4l2_ctrl_new_std(hnd, &ctrl_ops, + V4L2_CID_MIN_BUFFERS_FOR_CAPTURE, 1, 32, 1, 1); + if (ctrl == NULL) + goto handler_free; + + ctrl->flags |= V4L2_CTRL_FLAG_READ_ONLY | V4L2_CTRL_FLAG_VOLATILE; + + ctrl = v4l2_ctrl_new_std(hnd, &ctrl_ops, V4L2_CID_JPEG_RESTART_INTERVAL, + -1, 0xffff, 1, -1); + if (ctrl == NULL) + goto handler_free; + + ctrl = v4l2_ctrl_new_std(hnd, &ctrl_ops, + V4L2_CID_JPEG_COMPRESSION_QUALITY, 0, 100, 1, + 45); + if (ctrl == NULL) + goto handler_free; + + ret = v4l2_ctrl_handler_setup(hnd); + if (ret != 0) + goto handler_free; + + return 0; + +handler_free: + v4l2_ctrl_handler_free(hnd); + return -EINVAL; +} + +void mvx_v4l2_ctrls_done(struct v4l2_ctrl_handler *hnd) +{ + v4l2_ctrl_handler_free(hnd); +} diff --git a/drivers/media/platform/canaan/vpu/mvx_v4l2_ctrls.h b/drivers/media/platform/canaan/vpu/mvx_v4l2_ctrls.h new file mode 100644 index 0000000000000..58816c57e796f --- /dev/null +++ b/drivers/media/platform/canaan/vpu/mvx_v4l2_ctrls.h @@ -0,0 +1,58 @@ +/* SPDX-License-Identifier: GPL-2.0-only + * The confidential and proprietary information contained in this file may + * only be used by a person authorised under and to the extent permitted + * by a subsisting licensing agreement from Arm Technology (China) Co., Ltd. + * + * (C) COPYRIGHT 2021-2021 Arm Technology (China) Co., Ltd. + * ALL RIGHTS RESERVED + * + * This entire notice must be reproduced on all copies of this file + * and copies of this file may only be made by a person if such person is + * permitted to do so under the terms of a subsisting license agreement + * from Arm Technology (China) Co., Ltd. + * + * 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. + * + */ + +#ifndef _MVX_V4L2_CTRLS_H_ +#define _MVX_V4L2_CTRLS_H_ + +/**************************************************************************** + * Includes + ****************************************************************************/ + +#include + +/**************************************************************************** + * Exported functions + ****************************************************************************/ + +/** + * mvx_v4l2_ctrls_init() - Initialize V4L2 control handler. + * @hnd: V4L2 control handler. + * + * This function initializes V4L2 controls for handler @hnd. + * Controls set to their default values. + * + * Return: 0 on success, error code otherwise. + */ +int mvx_v4l2_ctrls_init(struct v4l2_ctrl_handler *hnd); + +/** + * mvx_v4l2_ctrls_done() - Destroy V4L2 control handler. + * @hnd: V4L2 control handler. + * + * This function destroys V4L2 control handler. + */ +void mvx_v4l2_ctrls_done(struct v4l2_ctrl_handler *hnd); + +#endif /* _MVX_V4L2_CTRLS_H_ */ diff --git a/drivers/media/platform/canaan/vpu/mvx_v4l2_fops.c b/drivers/media/platform/canaan/vpu/mvx_v4l2_fops.c new file mode 100644 index 0000000000000..04aee48c9aaaf --- /dev/null +++ b/drivers/media/platform/canaan/vpu/mvx_v4l2_fops.c @@ -0,0 +1,201 @@ +// SPDX-License-Identifier: GPL-2.0-only +/* + * The confidential and proprietary information contained in this file may + * only be used by a person authorised under and to the extent permitted + * by a subsisting licensing agreement from Arm Technology (China) Co., Ltd. + * + * (C) COPYRIGHT 2021-2021 Arm Technology (China) Co., Ltd. + * ALL RIGHTS RESERVED + * + * This entire notice must be reproduced on all copies of this file + * and copies of this file may only be made by a person if such person is + * permitted to do so under the terms of a subsisting license agreement + * from Arm Technology (China) Co., Ltd. + * + * 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. + * + */ + +#include +#include +#include +#include "mvx_ext_if.h" +#include "mvx_v4l2_buffer.h" +#include "mvx_v4l2_ctrls.h" +#include "mvx_v4l2_fops.h" +#include "mvx_v4l2_session.h" +#include "mvx_v4l2_vidioc.h" +#include "mvx_log_group.h" + +/**************************************************************************** + * Exported functions and variables + ****************************************************************************/ + +int mvx_v4l2_open(struct file *file) +{ + struct mvx_ext_if *ctx = video_drvdata(file); + struct mvx_v4l2_session *session; + struct v4l2_format fmt = { 0 }; + int ret; + + session = devm_kzalloc(ctx->dev, sizeof(*session), GFP_KERNEL); + if (session == NULL) { + MVX_LOG_PRINT(&mvx_log_if, MVX_LOG_WARNING, + "Failed to allocate V4L2 session."); + return -ENOMEM; + } + + MVX_SESSION_INFO(&session->session, "v4l2: Open device. id=%u.", + ctx->dev->id); + + ret = mvx_v4l2_session_construct(session, ctx); + if (ret != 0) + goto free_session; + + file->private_data = &session->fh; + v4l2_fh_init(&session->fh, &ctx->vdev); + v4l2_fh_add(&session->fh); + + /* Set default port formats. */ + fmt.type = V4L2_BUF_TYPE_VIDEO_OUTPUT; + fmt.fmt.pix.pixelformat = V4L2_PIX_FMT_YUV420M; + fmt.fmt.pix.width = 2; + fmt.fmt.pix.height = 2; + (void)mvx_v4l2_vidioc_s_fmt_vid_out(file, NULL, &fmt); + + fmt.type = V4L2_BUF_TYPE_VIDEO_CAPTURE; + (void)mvx_v4l2_vidioc_s_fmt_vid_cap(file, NULL, &fmt); + + ret = mvx_v4l2_ctrls_init(&session->v4l2_ctrl); + if (ret != 0) { + MVX_SESSION_WARN( + &session->session, + "Failed to register V4L2 controls handler. ret=%x", + ret); + goto put_session; + } + + session->fh.ctrl_handler = &session->v4l2_ctrl; + + return 0; + +put_session: + + /* + * Session was completely constructed, so we have to destroy it + * gracefully using reference counting. + */ + mvx_session_put(&session->session); + return ret; + +free_session: + devm_kfree(ctx->dev, session); + + return ret; +} + +int mvx_v4l2_release(struct file *file) +{ + struct mvx_v4l2_session *vsession = file_to_session(file); + int i; + int ret; + + MVX_SESSION_INFO(&vsession->session, "v4l2: Release."); + + mutex_lock(&vsession->mutex); + + mvx_v4l2_ctrls_done(vsession->fh.ctrl_handler); + + for (i = 0; i < MVX_DIR_MAX; i++) + if (vsession->port[i].q_set != false) { + vb2_queue_release(&vsession->port[i].vb2_queue); + vsession->port[i].q_set = false; + } + + ret = mvx_session_put(&vsession->session); + if (ret == 0) + mutex_unlock(&vsession->mutex); + + file->private_data = NULL; + + MVX_SESSION_INFO(&vsession->session, "v4l2: Release exit."); + + return 0; +} + +unsigned int mvx_v4l2_poll(struct file *file, struct poll_table_struct *wait) +{ + struct mvx_v4l2_session *vsession = file_to_session(file); + unsigned long events = poll_requested_events(wait); + unsigned int revents = 0; + int ret; + + ret = mutex_lock_interruptible(&vsession->mutex); + if (ret != 0) + return POLLERR; + + if (vsession->session.error != 0) { + revents = POLLERR; + goto unlock_mutex; + } + + /* POLLPRI events are handled by Vb2 */ + revents |= + vb2_poll(&vsession->port[MVX_DIR_INPUT].vb2_queue, file, wait); + revents |= + vb2_poll(&vsession->port[MVX_DIR_OUTPUT].vb2_queue, file, wait); + + MVX_SESSION_VERBOSE( + &vsession->session, + "v4l2: Poll. events=0x%lx, revents=0x%x, nevents=%d.", events, + revents, v4l2_event_pending(&vsession->fh)); + +unlock_mutex: + mutex_unlock(&vsession->mutex); + + return revents; +} + +int mvx_v4l2_mmap(struct file *file, struct vm_area_struct *vma) +{ + struct mvx_v4l2_session *session = file_to_session(file); + unsigned long offset = vma->vm_pgoff << PAGE_SHIFT; + enum mvx_direction dir; + struct mvx_v4l2_port *vport; + struct vb2_queue *q; + int ret; + + MVX_SESSION_INFO( + &session->session, + "v4l2: Memory map. start=0x%08lx, end=0x%08lx, pgoff=0x%08lx, flags=0x%08lx.", + vma->vm_start, vma->vm_end, vma->vm_pgoff, vma->vm_flags); + + if (offset >= DST_QUEUE_OFF_BASE) { + dir = MVX_DIR_OUTPUT; + vma->vm_pgoff -= (DST_QUEUE_OFF_BASE >> PAGE_SHIFT); + } else { + dir = MVX_DIR_INPUT; + } + + vport = &session->port[dir]; + q = &vport->vb2_queue; + + ret = vb2_mmap(q, vma); + if (ret != 0) { + MVX_SESSION_WARN( + &session->session, + "Failed to memory map buffer. q=%p, pgoff=0x%08lx, dir=%d, ret=%d", + q, vma->vm_pgoff, dir, ret); + return ret; + } + + return 0; +} diff --git a/drivers/media/platform/canaan/vpu/mvx_v4l2_fops.h b/drivers/media/platform/canaan/vpu/mvx_v4l2_fops.h new file mode 100644 index 0000000000000..7c01205773d5f --- /dev/null +++ b/drivers/media/platform/canaan/vpu/mvx_v4l2_fops.h @@ -0,0 +1,56 @@ +/* SPDX-License-Identifier: GPL-2.0-only + * The confidential and proprietary information contained in this file may + * only be used by a person authorised under and to the extent permitted + * by a subsisting licensing agreement from Arm Technology (China) Co., Ltd. + * + * (C) COPYRIGHT 2021-2021 Arm Technology (China) Co., Ltd. + * ALL RIGHTS RESERVED + * + * This entire notice must be reproduced on all copies of this file + * and copies of this file may only be made by a person if such person is + * permitted to do so under the terms of a subsisting license agreement + * from Arm Technology (China) Co., Ltd. + * + * 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. + * + */ + +#ifndef _MVX_V4L2_FOPS_H_ +#define _MVX_V4L2_FOPS_H_ + +/* + * Callbacks for struct v4l2_file_operations. + * + * Prototypes declared bellow represent callbacks required by v4l2 framework. + * They are needed to implement certain syscalls. + */ + +/** + * mvx_v4l2_open() - Callback needed to implement the open() syscall. + */ +int mvx_v4l2_open(struct file *file); + +/** + * mvx_v4l2_release() - Callback needed to implement the release() syscall. + */ +int mvx_v4l2_release(struct file *file); + +/** + * mvx_v4l2_poll() - Callback needed to implement the poll() syscall. + */ +unsigned int mvx_v4l2_poll(struct file *file, struct poll_table_struct *wait); + +/** + * mvx_v4l2_mmap() - Callback needed to implement the mmap() syscall. + */ +int mvx_v4l2_mmap(struct file *file, struct vm_area_struct *vma); + +#endif /* _MVX_V4L2_FOPS_H_ */ diff --git a/drivers/media/platform/canaan/vpu/mvx_v4l2_session.c b/drivers/media/platform/canaan/vpu/mvx_v4l2_session.c new file mode 100644 index 0000000000000..4c4d735d990ff --- /dev/null +++ b/drivers/media/platform/canaan/vpu/mvx_v4l2_session.c @@ -0,0 +1,687 @@ +// SPDX-License-Identifier: GPL-2.0-only +/* + * The confidential and proprietary information contained in this file may + * only be used by a person authorised under and to the extent permitted + * by a subsisting licensing agreement from Arm Technology (China) Co., Ltd. + * + * (C) COPYRIGHT 2021-2021 Arm Technology (China) Co., Ltd. + * ALL RIGHTS RESERVED + * + * This entire notice must be reproduced on all copies of this file + * and copies of this file may only be made by a person if such person is + * permitted to do so under the terms of a subsisting license agreement + * from Arm Technology (China) Co., Ltd. + * + * 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. + * + */ + +/**************************************************************************** + * Includes + ****************************************************************************/ + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "mvx_ext_if.h" +#include "mvx_seq.h" +#include "mvx_v4l2_buffer.h" +#include "mvx_v4l2_session.h" +#include "mvx_log_group.h" +#include "mvx-v4l2-controls.h" + +extern void vb2_queue_error(struct vb2_queue *q); + +/**************************************************************************** + * Exported and static functions + ****************************************************************************/ + +static void set_format(struct v4l2_pix_format_mplane *pix_mp, + unsigned int width, unsigned int height, + unsigned int num_planes, unsigned int *sizeimage, + unsigned int *bytesperline) +{ + int i; + + pix_mp->width = width; + pix_mp->height = height; + pix_mp->num_planes = num_planes; + + for (i = 0; i < num_planes; ++i) { + pix_mp->plane_fmt[i].sizeimage = sizeimage[i]; + pix_mp->plane_fmt[i].bytesperline = bytesperline[i]; + } +} + +static void v4l2_port_show(struct mvx_v4l2_port *port, struct seq_file *s) +{ + mvx_seq_printf(s, "mvx_v4l2_port", 0, "%p\n", port); + mvx_seq_printf(s, "pixelformat", 1, "0x%x\n", port->pix_mp.pixelformat); + mvx_seq_printf(s, "vb2_queue", 1, "\n"); + mvx_seq_printf(s, "memory", 2, "%u\n", port->vb2_queue.memory); + mvx_seq_printf(s, "min_buffers_needed", 2, "%u\n", + port->vb2_queue.min_buffers_needed); + mvx_seq_printf(s, "num_buffers", 2, "%u\n", + port->vb2_queue.num_buffers); + mvx_seq_printf(s, "queued_count", 2, "%u\n", + port->vb2_queue.queued_count); + mvx_seq_printf(s, "streaming", 2, "%u\n", port->vb2_queue.streaming); + mvx_seq_printf(s, "error", 2, "%u\n", port->vb2_queue.error); + mvx_seq_printf(s, "last_buffer_dequeued", 2, "%u\n", + port->vb2_queue.last_buffer_dequeued); +} + +static int port_stat_show(struct seq_file *s, void *v) +{ + struct mvx_v4l2_port *vport = s->private; + struct mvx_session_port *sport = vport->port; + + mvx_session_port_show(sport, s); + seq_puts(s, "\n"); + v4l2_port_show(vport, s); + + return 0; +} + +static int port_stat_open(struct inode *inode, struct file *file) +{ + return single_open(file, port_stat_show, inode->i_private); +} + +static const struct file_operations port_stat_fops = { .open = port_stat_open, + .read = seq_read, + .llseek = seq_lseek, + .release = + single_release }; + +static int port_debugfs_init(struct device *dev, unsigned int i, + struct mvx_v4l2_port *vport, + struct mvx_session_port *sport, + struct dentry *parent) +{ + char name[20]; + struct dentry *dentry; + + scnprintf(name, sizeof(name), "port%u", i); + vport->dentry = debugfs_create_dir(name, parent); + if (IS_ERR_OR_NULL(vport->dentry)) + return -ENOMEM; + + dentry = debugfs_create_file("stat", 0400, vport->dentry, vport, + &port_stat_fops); + if (IS_ERR_OR_NULL(dentry)) + return -ENOMEM; + + return 0; +} + +static int session_debugfs_init(struct mvx_v4l2_session *session, + struct dentry *parent) +{ + int ret; + char name[20]; + int i; + + scnprintf(name, sizeof(name), "%p", &session->session); + session->dentry = debugfs_create_dir(name, parent); + if (IS_ERR_OR_NULL(session->dentry)) + return -ENOMEM; + + for (i = 0; i < MVX_DIR_MAX; i++) { + struct mvx_v4l2_port *vport = &session->port[i]; + struct mvx_session_port *mport = &session->session.port[i]; + + ret = port_debugfs_init(session->ext->dev, i, vport, mport, + session->dentry); + if (ret != 0) + goto remove_dentry; + } + + return 0; + +remove_dentry: + debugfs_remove_recursive(session->dentry); + return ret; +} + +static struct mvx_v4l2_session * +mvx_session_to_v4l2_session(struct mvx_session *session) +{ + return container_of(session, struct mvx_v4l2_session, session); +} + +static void free_session(struct mvx_session *session) +{ + struct mvx_v4l2_session *s = mvx_session_to_v4l2_session(session); + + MVX_SESSION_INFO(session, "v4l2: Destroy session."); + + mvx_session_destruct(session); + + if (IS_ENABLED(CONFIG_DEBUG_FS)) + debugfs_remove_recursive(s->dentry); + + v4l2_fh_del(&s->fh); + v4l2_fh_exit(&s->fh); + if (mutex_is_locked(&s->mutex)) + mutex_unlock(&s->mutex); + + devm_kfree(s->ext->dev, s); +} + +static void handle_event(struct mvx_session *session, + enum mvx_session_event event, void *arg) +{ + struct mvx_v4l2_session *vsession = + mvx_session_to_v4l2_session(session); + + MVX_SESSION_INFO(&vsession->session, "Event. event=%d, arg=%p.", event, + arg); + + switch (event) { + case MVX_SESSION_EVENT_BUFFER: { + struct mvx_v4l2_buffer *vbuf = mvx_buffer_to_v4l2_buffer(arg); + struct vb2_buffer *vb = &vbuf->vb2_v4l2_buffer.vb2_buf; + // struct mvx_buffer *buf = (struct mvx_buffer *)arg; + /* + * When streaming is stopped we don't always receive all + * buffers from FW back. So we just return them all to Vb2. + * If the FW later returns a buffer to us, we could silently + * skip it. + */ + if (vb->state != VB2_BUF_STATE_DEQUEUED) { + enum vb2_buffer_state state = + mvx_v4l2_buffer_update(vbuf); + + vb2_buffer_done(vb, state); + } + break; + } + case MVX_SESSION_EVENT_PORT_CHANGED: { + enum mvx_direction dir = (enum mvx_direction)arg; + struct mvx_v4l2_port *vport = &vsession->port[dir]; + struct mvx_session_port *port = &session->port[dir]; + const struct v4l2_event event = { + .type = V4L2_EVENT_SOURCE_CHANGE, + .u.src_change.changes = V4L2_EVENT_SRC_CH_RESOLUTION + }; + struct v4l2_pix_format_mplane *p = &vport->pix_mp; + + p->field = port->interlaced ? V4L2_FIELD_SEQ_TB : + V4L2_FIELD_NONE; + set_format(&vport->pix_mp, port->width, port->height, + port->nplanes, port->size, port->stride); + v4l2_event_queue_fh(&vsession->fh, &event); + break; + } + case MVX_SESSION_EVENT_COLOR_DESC: { + const struct v4l2_event event = { + .type = V4L2_EVENT_MVX_COLOR_DESC, + }; + + v4l2_event_queue_fh(&vsession->fh, &event); + break; + } + case MVX_SESSION_EVENT_ERROR: { + int i; + + for (i = 0; i < MVX_DIR_MAX; ++i) { + struct vb2_queue *q = &vsession->port[i].vb2_queue; + + vb2_queue_error(q); + } + break; + } + default: + MVX_SESSION_WARN(&vsession->session, + "Unsupported session event. event=%d", event); + } +} + +int mvx_v4l2_session_construct(struct mvx_v4l2_session *vsession, + struct mvx_ext_if *ctx) +{ + int i; + int ret; + + vsession->ext = ctx; + mutex_init(&vsession->mutex); + + for (i = 0; i < MVX_DIR_MAX; i++) { + struct mvx_v4l2_port *vport = &vsession->port[i]; + + vport->port = &vsession->session.port[i]; + vport->vsession = vsession; + vport->dir = i; + vport->q_set = false; + } + + if (IS_ENABLED(CONFIG_DEBUG_FS)) { + ret = session_debugfs_init(vsession, ctx->dsessions); + if (ret != 0) + return ret; + } + + ret = mvx_session_construct(&vsession->session, ctx->dev, + ctx->client_ops, ctx->cache, + &vsession->mutex, free_session, + handle_event, vsession->dentry); + if (ret != 0) + goto remove_dentry; + + return 0; + +remove_dentry: + if (IS_ENABLED(CONFIG_DEBUG_FS)) + debugfs_remove_recursive(vsession->dentry); + + return ret; +} + +struct mvx_v4l2_session *v4l2_fh_to_session(struct v4l2_fh *fh) +{ + return container_of(fh, struct mvx_v4l2_session, fh); +} + +struct mvx_v4l2_session *file_to_session(struct file *file) +{ + return v4l2_fh_to_session(file->private_data); +} + +int mvx_v4l2_session_get_color_desc(struct mvx_v4l2_session *vsession, + struct v4l2_mvx_color_desc *c) +{ + int ret; + struct mvx_fw_color_desc cd; + + ret = mvx_session_get_color_desc(&vsession->session, &cd); + if (ret != 0) + return ret; + + c->flags = 0; + + /* Convert between generic fw_color_desc and V4L2 color desc. */ + c->range = cd.range; + c->primaries = cd.primaries; + c->transfer = cd.transfer; + c->matrix = cd.matrix; + + if (cd.flags & MVX_FW_COLOR_DESC_DISPLAY_VALID) { + c->flags |= V4L2_MVX_COLOR_DESC_DISPLAY_VALID; + c->display.r.x = cd.display.r.x; + c->display.r.y = cd.display.r.y; + c->display.g.x = cd.display.g.x; + c->display.g.y = cd.display.g.y; + c->display.b.x = cd.display.b.x; + c->display.b.y = cd.display.b.y; + c->display.w.x = cd.display.w.x; + c->display.w.y = cd.display.w.y; + c->display.luminance_min = cd.display.luminance_min; + c->display.luminance_max = cd.display.luminance_max; + } + + if (cd.flags & MVX_FW_COLOR_DESC_CONTENT_VALID) { + c->flags |= V4L2_MVX_COLOR_DESC_CONTENT_VALID; + c->content.luminance_max = cd.content.luminance_max; + c->content.luminance_average = cd.content.luminance_average; + } + + return 0; +} + +int mvx_v4l2_session_set_color_desc(struct mvx_v4l2_session *vsession, + struct v4l2_mvx_color_desc *c) +{ + int ret; + struct mvx_fw_color_desc cd; + + memset(&cd, 0, sizeof(cd)); + cd.flags = c->flags; + cd.range = c->range; + cd.matrix = c->matrix; + cd.primaries = c->primaries; + cd.transfer = c->transfer; + cd.aspect_ratio_idc = c->aspect_ratio_idc; + cd.num_units_in_tick = c->num_units_in_tick; + cd.sar_height = c->sar_height; + cd.sar_width = c->sar_width; + cd.video_format = c->video_format; + cd.time_scale = c->time_scale; + cd.content.luminance_average = c->content.luminance_average; + cd.content.luminance_max = c->content.luminance_max; + //memcpy(&cd.display, &c->display, sizeof(c->display)); + cd.display.r.x = c->display.r.x; + cd.display.r.y = c->display.r.y; + cd.display.g.x = c->display.g.x; + cd.display.g.y = c->display.g.y; + cd.display.b.x = c->display.b.x; + cd.display.b.y = c->display.b.y; + cd.display.w.x = c->display.w.x; + cd.display.w.y = c->display.w.y; + cd.display.luminance_min = c->display.luminance_min; + cd.display.luminance_max = c->display.luminance_max; + ret = mvx_session_set_color_desc(&vsession->session, &cd); + return ret; +} + +int mvx_v4l2_session_set_roi_regions(struct mvx_v4l2_session *vsession, + struct v4l2_mvx_roi_regions *roi) +{ + int ret; + struct mvx_roi_config roi_regions; + + roi_regions.pic_index = roi->pic_index; + roi_regions.num_roi = roi->num_roi; + roi_regions.qp_present = roi->qp_present; + roi_regions.roi_present = roi->roi_present; + roi_regions.qp = roi->qp; + + if (roi_regions.roi_present && roi_regions.num_roi > 0) { + int i = 0; + + for (; i < roi_regions.num_roi; i++) { + roi_regions.roi[i].mbx_left = roi->roi[i].mbx_left; + roi_regions.roi[i].mbx_right = roi->roi[i].mbx_right; + roi_regions.roi[i].mby_top = roi->roi[i].mby_top; + roi_regions.roi[i].mby_bottom = roi->roi[i].mby_bottom; + roi_regions.roi[i].qp_delta = roi->roi[i].qp_delta; + roi_regions.roi[i].prio = roi->roi[i].prio; + roi_regions.roi[i].force_intra = + roi->roi[i].force_intra; + } + } + ret = mvx_session_set_roi_regions(&vsession->session, &roi_regions); + if (ret != 0) + return ret; + + return 0; +} + +int mvx_v4l2_session_set_qp_epr(struct mvx_v4l2_session *vsession, + struct v4l2_buffer_param_qp *qp) +{ + int ret; + struct mvx_buffer_param_qp epr_qp; + + epr_qp.qp = qp->qp; + epr_qp.epr_iframe_enable = qp->epr_iframe_enable; + ret = mvx_session_set_qp_epr(&vsession->session, &epr_qp); + if (ret != 0) + return ret; + + return 0; +} + +int mvx_v4l2_session_set_sei_userdata(struct mvx_v4l2_session *vsession, + struct v4l2_sei_user_data *sei_userdata) +{ + int ret; + struct mvx_sei_userdata userdata; + + userdata.flags = sei_userdata->flags; + userdata.user_data_len = sei_userdata->user_data_len; + memcpy(&userdata.user_data, &sei_userdata->user_data, + sizeof(userdata.user_data)); + memcpy(&userdata.uuid, &sei_userdata->uuid, sizeof(userdata.uuid)); + ret = mvx_session_set_sei_userdata(&vsession->session, &userdata); + if (ret != 0) + return ret; + + return 0; +} + +int mvx_v4l2_session_set_rate_control(struct mvx_v4l2_session *vsession, + struct v4l2_rate_control *rc) +{ + int ret; + struct mvx_buffer_param_rate_control mvx_rc; + + mvx_rc.rate_control_mode = rc->rc_type; + mvx_rc.target_bitrate = rc->target_bitrate; + mvx_rc.maximum_bitrate = rc->maximum_bitrate; + ret = mvx_session_set_bitrate_control(&vsession->session, &mvx_rc); + if (ret != 0) + return ret; + + return 0; +} + +int mvx_v4l2_session_set_dsl_frame(struct mvx_v4l2_session *vsession, + struct v4l2_mvx_dsl_frame *dsl) +{ + int ret; + struct mvx_dsl_frame dsl_frame; + + dsl_frame.width = dsl->width; + dsl_frame.height = dsl->height; + ret = mvx_session_set_dsl_frame(&vsession->session, &dsl_frame); + if (ret != 0) + return ret; + + return 0; +} + +int mvx_v4l2_session_set_dsl_ratio(struct mvx_v4l2_session *vsession, + struct v4l2_mvx_dsl_ratio *dsl) +{ + int ret; + struct mvx_dsl_ratio dsl_ratio; + + dsl_ratio.hor = dsl->hor; + dsl_ratio.ver = dsl->ver; + + ret = mvx_session_set_dsl_ratio(&vsession->session, &dsl_ratio); + if (ret != 0) + return ret; + + return 0; +} + +int mvx_v4l2_session_set_long_term_ref(struct mvx_v4l2_session *vsession, + struct v4l2_mvx_long_term_ref *ltr) +{ + int ret; + struct mvx_long_term_ref mvx_ltr; + + mvx_ltr.mode = ltr->mode; + mvx_ltr.period = ltr->period; + ret = mvx_session_set_long_term_ref(&vsession->session, &mvx_ltr); + if (ret != 0) + return ret; + + return 0; +} + +int mvx_v4l2_session_set_dsl_mode(struct mvx_v4l2_session *vsession, int *mode) +{ + int ret; + + ret = mvx_session_set_dsl_mode(&vsession->session, mode); + if (ret != 0) + return ret; + + return 0; +} + +int mvx_v4l2_session_set_mini_frame_height(struct mvx_v4l2_session *vsession, + int *cnt) +{ + int ret; + + ret = mvx_session_set_mini_frame_height(&vsession->session, cnt); + if (ret != 0) + return ret; + + return 0; +} + +int mvx_v4l2_session_set_stats_mode(struct mvx_v4l2_session *vsession, + struct v4l2_buffer_param_enc_stats *stats) +{ + int ret; + struct mvx_enc_stats enc_stats; + + memcpy(&enc_stats, stats, sizeof(struct mvx_enc_stats)); + ret = mvx_session_set_stats_mode(&vsession->session, &enc_stats); + if (ret != 0) + return ret; + + return 0; +} + +int mvx_v4l2_session_set_chr_cfg(struct mvx_v4l2_session *vsession, + struct v4l2_mvx_chr_config *chr) +{ + int ret; + struct mvx_chr_cfg chr_cfg; + + chr_cfg.pic_index = chr->pic_index; + chr_cfg.num_chr = chr->num_chr; + + memcpy(chr_cfg.rectangle, chr->rectangle, sizeof(chr->rectangle)); + ret = mvx_session_set_chr_cfg(&vsession->session, &chr_cfg); + if (ret != 0) + return ret; + + return 0; +} + +int mvx_v4l2_session_set_huff_table(struct mvx_v4l2_session *vsession, + struct v4l2_mvx_huff_table *table) +{ + int ret; + struct mvx_huff_table huff_table; + + memcpy(&huff_table, table, sizeof(struct mvx_huff_table)); + ret = mvx_session_set_huff_table(&vsession->session, &huff_table); + if (ret != 0) + return ret; + + return 0; +} +int mvx_v4l2_session_set_seamless_target( + struct mvx_v4l2_session *vsession, + struct v4l2_mvx_seamless_target *seamless) +{ + int ret; + struct mvx_seamless_target seamless_target; + + memcpy(&seamless_target, seamless, + sizeof(struct v4l2_mvx_seamless_target)); + ret = mvx_session_set_seamless_target(&vsession->session, + &seamless_target); + if (ret != 0) + return ret; + + return 0; +} + +int mvx_v4l2_session_set_color_conv_coef(struct mvx_v4l2_session *vsession, + struct v4l2_mvx_color_conv_coef *coef) +{ + int ret; + struct mvx_color_conv_coef conv_coef; + + memcpy(&conv_coef, coef, sizeof(struct mvx_color_conv_coef)); + ret = mvx_session_set_color_conversion_ceof(&vsession->session, + &conv_coef); + if (ret != 0) + return ret; + + return 0; +} + +int mvx_v4l2_session_set_rgb_conv_yuv_coef( + struct mvx_v4l2_session *vsession, + struct v4l2_mvx_rgb2yuv_color_conv_coef *coef) +{ + int ret; + struct mvx_rgb2yuv_color_conv_coef conv_coef; + + memcpy(&conv_coef, coef, sizeof(struct mvx_rgb2yuv_color_conv_coef)); + ret = mvx_session_set_rgb_conv_yuv_coef(&vsession->session, &conv_coef); + if (ret != 0) + return ret; + + return 0; +} + +int mvx_v4l2_session_set_osd_config(struct mvx_v4l2_session *vsession, + struct v4l2_osd_config *osd_cfg) +{ + int ret; + struct mvx_osd_config osd; + + memcpy(&osd, osd_cfg, sizeof(struct v4l2_osd_config)); + ret = mvx_session_set_osd_config(&vsession->session, &osd); + if (ret != 0) + return ret; + + return 0; +} + +int mvx_v4l2_session_set_osd_info(struct mvx_v4l2_session *vsession, + struct v4l2_osd_info *info, + enum mvx_format *osd_fmt) +{ + int ret; + int i; + struct mvx_osd_info osd_info; + + for (i = 0; i < V4L2_MAX_FRAME_OSD_REGION; i++) { + osd_info.width_osd[i] = info->width_osd[i]; + osd_info.height_osd[i] = info->height_osd[i]; + osd_info.inputFormat_osd[i] = osd_fmt[i]; + } + ret = mvx_session_set_osd_info(&vsession->session, &osd_info); + if (ret != 0) + return ret; + + return 0; +} + +int mvx_v4l2_session_set_enc_src_crop(struct mvx_v4l2_session *vsession, + struct v4l2_mvx_crop_cfg *crop) +{ + int ret; + struct mvx_crop_cfg mvx_crop; + + memcpy(&mvx_crop, crop, sizeof(struct mvx_crop_cfg)); + ret = mvx_session_set_enc_src_crop(&vsession->session, &mvx_crop); + if (ret != 0) + return ret; + + return 0; +} + +int mvx_v4l2_session_set_dec_dst_crop(struct mvx_v4l2_session *vsession, + struct v4l2_mvx_crop_cfg *crop) +{ + int ret; + struct mvx_crop_cfg mvx_crop; + + memcpy(&mvx_crop, crop, sizeof(struct mvx_crop_cfg)); + ret = mvx_session_set_dec_dst_crop(&vsession->session, &mvx_crop); + if (ret != 0) + return ret; + + return 0; +} diff --git a/drivers/media/platform/canaan/vpu/mvx_v4l2_session.h b/drivers/media/platform/canaan/vpu/mvx_v4l2_session.h new file mode 100644 index 0000000000000..3ddd5d1cbac5b --- /dev/null +++ b/drivers/media/platform/canaan/vpu/mvx_v4l2_session.h @@ -0,0 +1,279 @@ +/* SPDX-License-Identifier: GPL-2.0-only + * The confidential and proprietary information contained in this file may + * only be used by a person authorised under and to the extent permitted + * by a subsisting licensing agreement from Arm Technology (China) Co., Ltd. + * + * (C) COPYRIGHT 2021-2021 Arm Technology (China) Co., Ltd. + * ALL RIGHTS RESERVED + * + * This entire notice must be reproduced on all copies of this file + * and copies of this file may only be made by a person if such person is + * permitted to do so under the terms of a subsisting license agreement + * from Arm Technology (China) Co., Ltd. + * + * 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. + * + */ + +#ifndef _MVX_V4L2_SESSION_H_ +#define _MVX_V4L2_SESSION_H_ + +/**************************************************************************** + * Includes + ****************************************************************************/ + +#include +#include +#include +#include +#include +#include + +#include "mvx_session.h" +#include "mvx-v4l2-controls.h" + +/**************************************************************************** + * Types + ****************************************************************************/ + +/** + * Offset used to distinguish between input and output port. + */ +#define DST_QUEUE_OFF_BASE (1 << 30) + +/** + * struct mvx_v4l2_port - V4L2 port type. + * + * Most of this structure will become redundant when buffer management + * is transferred to Vb2 framework. + * + * @vsession: Pointer to corresponding session. + * @port: Pointer to corresponding mvx port. + * @dir: Direction of a port. + * @type: V4L2 port type. + * @pix_mp: V4L2 multi planar pixel format. + * @crop: V4L2 cropping information. + * @dentry: Debugfs directory entry for the port. + * @q_set: Indicates of Vb2 queue was setup. + * @vb2_queue: Vb2 queue. + */ +struct mvx_v4l2_port { + struct mvx_v4l2_session *vsession; + struct mvx_session_port *port; + enum mvx_direction dir; + enum v4l2_buf_type type; + struct v4l2_pix_format_mplane pix_mp; + struct v4l2_rect crop; + struct dentry *dentry; + bool q_set; + struct vb2_queue vb2_queue; +}; + +/** + * struct mvx_v4l2_session - V4L2 session type. + * @ext: Pointer to external interface object. + * @fh: V4L2 file handler. + * @mutex: Mutex protecting the session object. + * @session: Session object. + * @port: Array of v4l2 ports. + * @dentry: Debugfs directory entry representing a session. + * @v4l2_ctrl: v4l2 controls handler. + */ +struct mvx_v4l2_session { + struct mvx_ext_if *ext; + struct v4l2_fh fh; + struct mutex mutex; + struct mvx_session session; + struct mvx_v4l2_port port[MVX_DIR_MAX]; + struct dentry *dentry; + struct v4l2_ctrl_handler v4l2_ctrl; +}; + +/**************************************************************************** + * Exported functions + ****************************************************************************/ + +/** + * mvx_v4l2_session_construct() - Construct v4l2 session object. + * @vsession: Pointer to a session object. + * @ctx: Pointer to an external interface object. + * + * Return: 0 on success, else error code. + */ +int mvx_v4l2_session_construct(struct mvx_v4l2_session *vsession, + struct mvx_ext_if *ctx); + +/** + * v4l2_fh_to_session() - Cast v4l2 file handler to mvx_v4l2_session. + * @fh: v4l2 file handler. + * + * Return: Pointer to a corresponding mvx_v4l2_session object. + */ +struct mvx_v4l2_session *v4l2_fh_to_session(struct v4l2_fh *fh); + +/** + * file_to_session() - Cast file object to mvx_v4l2_session. + * @file: Pointer to a file object. + * + * Return: Pointer to a corresponding mvx_v4l2_session object. + */ +struct mvx_v4l2_session *file_to_session(struct file *file); + +/** + * mvx_v4l2_session_get_color_desc() - Get color description. + * @vsession: Pointer to v4l2 session. + * @color: Color description. + * + * Return: 0 on success, else error code. + */ +int mvx_v4l2_session_get_color_desc(struct mvx_v4l2_session *vsession, + struct v4l2_mvx_color_desc *color_desc); + +/** + * mvx_v4l2_session_set_color_desc() - Set color description. + * @vsession: Pointer to v4l2 session. + * @color: Color description. + * + * Return: 0 on success, else error code. + */ + +int mvx_v4l2_session_set_color_desc(struct mvx_v4l2_session *vsession, + struct v4l2_mvx_color_desc *color_desc); + +/** + * mvx_v4l2_session_set_sei_userdata() - Set SEI userdata. + * @vsession: Pointer to v4l2 session. + * @sei_userdata: SEI userdata. + * + * Return: 0 on success, else error code. + */ + +int mvx_v4l2_session_set_sei_userdata(struct mvx_v4l2_session *vsession, + struct v4l2_sei_user_data *sei_userdata); + +/** + * mvx_v4l2_session_set_roi_regions() - Set Roi Regions. + * @vsession: Pointer to v4l2 session. + * @roi: ROI regions. + * + * Return: 0 on success, else error code. + */ +int mvx_v4l2_session_set_roi_regions(struct mvx_v4l2_session *vsession, + struct v4l2_mvx_roi_regions *roi); + +/** + * mvx_v4l2_session_set_qp_epr() - Set qp. + * @vsession: Pointer to v4l2 session. + * @qp: qp value. + * + * Return: 0 on success, else error code. + */ + +int mvx_v4l2_session_set_qp_epr(struct mvx_v4l2_session *vsession, + struct v4l2_buffer_param_qp *qp); + +/** + * mvx_v4l2_session_set_rate_control() - Set rate Control. + * @vsession: Pointer to v4l2 session. + * @rc: rate control type. + * + * Return: 0 on success, else error code. + */ + +int mvx_v4l2_session_set_rate_control(struct mvx_v4l2_session *vsession, + struct v4l2_rate_control *rc); + +/** + * mvx_v4l2_session_set_dsl_frame() - Set DownScale dst frame. + * @vsession: Pointer to v4l2 session. + * @dsl: DownScale dst frame. + * + * Return: 0 on success, else error code. + */ + +int mvx_v4l2_session_set_dsl_frame(struct mvx_v4l2_session *vsession, + struct v4l2_mvx_dsl_frame *dsl); + +/** + * mvx_v4l2_session_set_dsl_ratio() - Set DownScale ratio. + * @vsession: Pointer to v4l2 session. + * @dsl: DownScale ratio. + * + * Return: 0 on success, else error code. + */ + +int mvx_v4l2_session_set_dsl_ratio(struct mvx_v4l2_session *vsession, + struct v4l2_mvx_dsl_ratio *dsl); + +/** + * mvx_v4l2_session_set_long_term_ref() - Set long term ref. + * @vsession: Pointer to v4l2 session. + * @ltr: long term ref. + * + * Return: 0 on success, else error code. + */ + +int mvx_v4l2_session_set_long_term_ref(struct mvx_v4l2_session *vsession, + struct v4l2_mvx_long_term_ref *ltr); + +/** + * mvx_v4l2_session_set_dsl_mode() - Set DownScale mode. + * @vsession: Pointer to v4l2 session. + * @mode: DownScale mode, oly enable on high precision mode. + * + * Return: 0 on success, else error code. + */ + +int mvx_v4l2_session_set_dsl_mode(struct mvx_v4l2_session *vsession, int *mode); + +/** + * mvx_v4l2_session_set_mini_frame_cnt() - Set DownScale mode. + * @vsession: Pointer to v4l2 session. + * @cnt: Mini Frame buffer cnt. + * + * Return: 0 on success, else error code. + */ + +int mvx_v4l2_session_set_mini_frame_height(struct mvx_v4l2_session *vsession, + int *cnt); + +/** + * mvx_v4l2_session_set_stats_mode() - Set Stats mode. + * @vsession: Pointer to v4l2 session. + * @mode: stats mode. + * + * Return: 0 on success, else error code. + */ + +int mvx_v4l2_session_set_stats_mode(struct mvx_v4l2_session *vsession, + struct v4l2_buffer_param_enc_stats *stats); +int mvx_v4l2_session_set_chr_cfg(struct mvx_v4l2_session *vsession, + struct v4l2_mvx_chr_config *chr); +int mvx_v4l2_session_set_huff_table(struct mvx_v4l2_session *vsession, + struct v4l2_mvx_huff_table *table); +int mvx_v4l2_session_set_seamless_target( + struct mvx_v4l2_session *vsession, + struct v4l2_mvx_seamless_target *seamless); +int mvx_v4l2_session_set_color_conv_coef(struct mvx_v4l2_session *vsession, + struct v4l2_mvx_color_conv_coef *coef); +int mvx_v4l2_session_set_rgb_conv_yuv_coef( + struct mvx_v4l2_session *vsession, + struct v4l2_mvx_rgb2yuv_color_conv_coef *coef); +int mvx_v4l2_session_set_enc_src_crop(struct mvx_v4l2_session *vsession, + struct v4l2_mvx_crop_cfg *crop); +int mvx_v4l2_session_set_dec_dst_crop(struct mvx_v4l2_session *vsession, + struct v4l2_mvx_crop_cfg *crop); +int mvx_v4l2_session_set_osd_config(struct mvx_v4l2_session *vsession, + struct v4l2_osd_config *osd_cfg); +int mvx_v4l2_session_set_osd_info(struct mvx_v4l2_session *vsession, + struct v4l2_osd_info *info, + enum mvx_format *osd_fmt); +#endif /* _MVX_V4L2_SESSION_H_ */ diff --git a/drivers/media/platform/canaan/vpu/mvx_v4l2_vidioc.c b/drivers/media/platform/canaan/vpu/mvx_v4l2_vidioc.c new file mode 100644 index 0000000000000..08c0649334730 --- /dev/null +++ b/drivers/media/platform/canaan/vpu/mvx_v4l2_vidioc.c @@ -0,0 +1,1725 @@ +// SPDX-License-Identifier: GPL-2.0-only +/* + * The confidential and proprietary information contained in this file may + * only be used by a person authorised under and to the extent permitted + * by a subsisting licensing agreement from Arm Technology (China) Co., Ltd. + * + * (C) COPYRIGHT 2021-2021 Arm Technology (China) Co., Ltd. + * ALL RIGHTS RESERVED + * + * This entire notice must be reproduced on all copies of this file + * and copies of this file may only be made by a person if such person is + * permitted to do so under the terms of a subsisting license agreement + * from Arm Technology (China) Co., Ltd. + * + * 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. + * + */ + +/**************************************************************************** + * Includes + ****************************************************************************/ + +#include +#include +#include +#include +#include +#include +#include +#include +#include "mvx_bitops.h" +#include "mvx_ext_if.h" +#include "mvx_if.h" +#include "mvx_v4l2_buffer.h" +#include "mvx_v4l2_session.h" +#include "mvx_v4l2_vidioc.h" +#include "mvx-v4l2-controls.h" + +/**************************************************************************** + * Types + ****************************************************************************/ + +struct mvx_format_map { + enum mvx_format format; + uint32_t flags; + uint32_t pixelformat; + const char *description; +}; + +/**************************************************************************** + * Static functions and variables + ****************************************************************************/ + +struct mvx_format_map mvx_fmts[] = { + { MVX_FORMAT_AVS, V4L2_FMT_FLAG_COMPRESSED, V4L2_PIX_FMT_AVS, "AVS" }, + { MVX_FORMAT_AVS2, V4L2_FMT_FLAG_COMPRESSED, V4L2_PIX_FMT_AVS2, + "AVS2" }, + { MVX_FORMAT_H263, V4L2_FMT_FLAG_COMPRESSED, V4L2_PIX_FMT_H263, + "H.263" }, + { MVX_FORMAT_H264, V4L2_FMT_FLAG_COMPRESSED, V4L2_PIX_FMT_H264, + "H.264" }, + { MVX_FORMAT_H264, V4L2_FMT_FLAG_COMPRESSED, V4L2_PIX_FMT_H264_MVC, + "H.264 MVC" }, + { MVX_FORMAT_H264, V4L2_FMT_FLAG_COMPRESSED, V4L2_PIX_FMT_H264_NO_SC, + "H.264 (No Start Codes)" }, + { MVX_FORMAT_HEVC, V4L2_FMT_FLAG_COMPRESSED, V4L2_PIX_FMT_HEVC, + "HEVC" }, + { MVX_FORMAT_MPEG2, V4L2_FMT_FLAG_COMPRESSED, V4L2_PIX_FMT_MPEG2, + "MPEG-2 ES" }, + { MVX_FORMAT_MPEG4, V4L2_FMT_FLAG_COMPRESSED, V4L2_PIX_FMT_MPEG4, + "MPEG-4 part 2 ES" }, + { MVX_FORMAT_RV, V4L2_FMT_FLAG_COMPRESSED, V4L2_PIX_FMT_RV, + "Real Video" }, + { MVX_FORMAT_VC1, V4L2_FMT_FLAG_COMPRESSED, V4L2_PIX_FMT_VC1_ANNEX_G, + "VC-1 (SMPTE 412M Annex G)" }, + { MVX_FORMAT_VC1, V4L2_FMT_FLAG_COMPRESSED, V4L2_PIX_FMT_VC1_ANNEX_L, + "VC-1 (SMPTE 412M Annex L)" }, + { MVX_FORMAT_VP8, V4L2_FMT_FLAG_COMPRESSED, V4L2_PIX_FMT_VP8, "VP8" }, + { MVX_FORMAT_VP9, V4L2_FMT_FLAG_COMPRESSED, V4L2_PIX_FMT_VP9, "VP9" }, + { MVX_FORMAT_AV1, V4L2_FMT_FLAG_COMPRESSED, V4L2_PIX_FMT_AV1, "AV1" }, + { MVX_FORMAT_JPEG, V4L2_FMT_FLAG_COMPRESSED, V4L2_PIX_FMT_JPEG, + "JPEG" }, + { MVX_FORMAT_JPEG, V4L2_FMT_FLAG_COMPRESSED, V4L2_PIX_FMT_MJPEG, + "MJPEG" }, + { MVX_FORMAT_YUV420_AFBC_8, 0, V4L2_PIX_FMT_YUV420_AFBC_8, + "YUV420 AFBC 8 bit" }, + { MVX_FORMAT_YUV420_AFBC_10, 0, V4L2_PIX_FMT_YUV420_AFBC_10, + "YUV420 AFBC 10 bit" }, + { MVX_FORMAT_YUV422_AFBC_8, 0, V4L2_PIX_FMT_YUV422_AFBC_8, + "YUV422 AFBC 8 bit" }, + { MVX_FORMAT_YUV422_AFBC_10, 0, V4L2_PIX_FMT_YUV422_AFBC_10, + "YUV422 AFBC 10 bit" }, + { MVX_FORMAT_YUV420_I420, 0, V4L2_PIX_FMT_YUV420M, + "Planar YUV 4:2:0 (N-C)" }, + { MVX_FORMAT_YUV420_I420, 0, V4L2_PIX_FMT_YUV420, + "Planar YUV 4:2:0 (N-C)" }, + { MVX_FORMAT_YUV420_NV12, 0, V4L2_PIX_FMT_NV12, "Y/CbCr 4:2:0" }, + { MVX_FORMAT_YUV420_NV21, 0, V4L2_PIX_FMT_NV21, "Y/CrCb 4:2:0 (N-C)" }, + { MVX_FORMAT_YUV420_P010, 0, V4L2_PIX_FMT_P010, + "YUV 4:2:0 P010 (Microsoft format)" }, + { MVX_FORMAT_YUV420_Y0L2, 0, V4L2_PIX_FMT_Y0L2, + "YUV 4:2:0 Y0L2 (ARM format)" }, + { MVX_FORMAT_YUV420_AQB1, 0, V4L2_PIX_FMT_AQB1, + "YUV 4:2:0 AQB1 (ARM format)" }, + { MVX_FORMAT_YUV422_YUY2, 0, V4L2_PIX_FMT_YUYV, "YYUV 4:2:2" }, + { MVX_FORMAT_YUV422_UYVY, 0, V4L2_PIX_FMT_UYVY, "UYVY 4:2:2" }, + { MVX_FORMAT_YUV422_Y210, 0, V4L2_PIX_FMT_Y210, + "YUV 4:2:2 Y210 (Microsoft format)" }, + + /* ARGB */ + { MVX_FORMAT_ARGB_8888, 0, + DRM_FORMAT_BGRA8888, /* Equal to V4L2_PIX_FMT_ARGB32. */ + "32-bit ARGB 8-8-8-8" }, + { MVX_FORMAT_ARGB_8888, 0, V4L2_PIX_FMT_RGB32, "32-bit ARGB 8-8-8-8" }, + + /* ABGR */ + { MVX_FORMAT_ABGR_8888, 0, DRM_FORMAT_RGBA8888, "32-bit ABGR-8-8-8-8" }, + + /* RGBA */ + { MVX_FORMAT_RGBA_8888, 0, DRM_FORMAT_ABGR8888, "32-bit RGBA 8-8-8-8" }, + + /* BGRA (new and legacy format) */ + { MVX_FORMAT_BGRA_8888, 0, + DRM_FORMAT_ARGB8888, /* Equal to V4L2_PIX_FMT_ABGR32. */ + "32-bit BGRA 8-8-8-8" }, + { MVX_FORMAT_BGRA_8888, 0, V4L2_PIX_FMT_BGR32, "32-bit BGRA 8-8-8-8" }, + + /* RGB888 */ + { MVX_FORMAT_RGB_888, 0, V4L2_PIX_FMT_RGB24, "24-bit RGB 8-8-8" }, + + /*BGR888 */ + { MVX_FORMAT_BGR_888, 0, V4L2_PIX_FMT_BGR24, "24-bit BGR 8-8-8" }, + + /*RGB888 3 PLANNER */ + { MVX_FORMAT_RGB_888_3P, 0, V4L2_PIX_FMT_RGB_3P, + "24-bit RGB 8-8-8 3PLANNER" }, + + /*ARGB1555 1 PLANNER */ + { MVX_FORMAT_ARGB_1555, 0, V4L2_PIX_FMT_ARGB555, + "16-bit ARGB 1-5-5-5 1PLANNER" }, + + /*ARGB 1 PLANNER */ + { MVX_FORMAT_ARGB_4444, 0, V4L2_PIX_FMT_ARGB444, + "16-bit ARGB 4-4-4-4 1PLANNER" }, + + /*RGB888 3 PLANNER */ + { MVX_FORMAT_RGB_565, 0, V4L2_PIX_FMT_RGB565, + "16-bit RGB 5-6-5 1PLANNER" }, + + /*MVX_FORMAT_Y 1 PLANNER */ + { MVX_FORMAT_Y, 0, V4L2_PIX_FMT_GREY, "8-bit GREY 1PLANNER" }, + + /*MVX_FORMAT_Y_10 1 PLANNER */ + { MVX_FORMAT_Y_10, 0, V4L2_PIX_FMT_Y10_LE, + "10-bit GREY 16BIT LSB 1PLANNER" }, + + /*MVX_FORMAT_YUV444 3 PLANNER */ + { MVX_FORMAT_YUV444, 0, V4L2_PIX_FMT_YUV444M, + "8-bit YUV444 3PLANNER" }, //double confirm this mapping? + + /*MVX_FORMAT_YUV444_10 3 PLANNER */ + { MVX_FORMAT_YUV444_10, 0, V4L2_PIX_FMT_YUV444_10, + "10-bit YUV444 16BIT LSB 3PLANNER" }, + + /*MVX_FORMAT_YUV420_2P_10 2 PLANNER */ + { MVX_FORMAT_YUV420_2P_10, 0, V4L2_PIX_FMT_YUV420_2P_10, + "10-bit YUV420 16BIT LSB 2PLANNER" }, + + /*MVX_FORMAT_YUV422_1P_10 1 PLANNER */ + { MVX_FORMAT_YUV422_1P_10, 0, V4L2_PIX_FMT_YUV422_1P_10, + "10-bit YUV422 16BIT LSB 1PLANNER" }, + + /*MVX_FORMAT_YUV420_I420_10 3 PLANNER */ + { MVX_FORMAT_YUV420_I420_10, 0, V4L2_PIX_FMT_YUV420_I420_10, + "10-bit YUV420 16BIT LSB 3PLANNER" } +}; + +/* + * Search for format map that matches given pixel format. + */ +static struct mvx_format_map *mvx_find_format(uint32_t pixelformat) +{ + int i; + + for (i = 0; i < ARRAY_SIZE(mvx_fmts); i++) + if (mvx_fmts[i].pixelformat == pixelformat) + return &mvx_fmts[i]; + + return ERR_PTR(-EINVAL); +} + +static int to_v4l2_format(struct v4l2_format *f, enum v4l2_buf_type type, + struct v4l2_pix_format_mplane *pix, + unsigned int *stride, unsigned int *size, + bool interlaced) +{ + f->type = type; + + switch (f->type) { + case V4L2_BUF_TYPE_VIDEO_OUTPUT: + case V4L2_BUF_TYPE_VIDEO_CAPTURE: { + struct v4l2_pix_format *p = &f->fmt.pix; + uint32_t i; + + p->width = pix->width; + p->height = pix->height; + p->pixelformat = pix->pixelformat; + p->field = interlaced ? V4L2_FIELD_SEQ_TB : V4L2_FIELD_NONE; + p->colorspace = pix->colorspace; + p->flags = pix->flags; + p->ycbcr_enc = pix->ycbcr_enc; + p->quantization = pix->quantization; + p->xfer_func = pix->xfer_func; + + p->sizeimage = 0; + p->bytesperline = stride[0]; + for (i = 0; i < pix->num_planes; ++i) + p->sizeimage += size[i]; + + break; + } + case V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE: + case V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE: { + struct v4l2_pix_format_mplane *p = &f->fmt.pix_mp; + int i; + + memcpy(p, pix, sizeof(*p)); + memset(p->reserved, 0, sizeof(p->reserved)); + p->field = interlaced ? V4L2_FIELD_SEQ_TB : V4L2_FIELD_NONE; + + for (i = 0; i < pix->num_planes; i++) { + p->plane_fmt[i].bytesperline = stride[i]; + p->plane_fmt[i].sizeimage = size[i]; + memset(p->plane_fmt[i].reserved, 0, + sizeof(p->plane_fmt[i].reserved)); + } + + break; + } + default: + return -EINVAL; + } + + return 0; +} + +static int from_v4l2_format(struct mvx_v4l2_session *vsession, + struct v4l2_format *f, + struct v4l2_pix_format_mplane *pix, + enum mvx_format *format, unsigned int *stride, + unsigned int *size, bool *interlaced) +{ + struct mvx_format_map *map; + + switch (f->type) { + case V4L2_BUF_TYPE_VIDEO_OUTPUT: + case V4L2_BUF_TYPE_VIDEO_CAPTURE: { + struct v4l2_pix_format *p = &f->fmt.pix; + + memset(pix, 0, sizeof(*pix)); + + pix->width = p->width; + pix->height = p->height; + pix->pixelformat = p->pixelformat; + pix->field = p->field; + pix->colorspace = p->colorspace; + pix->flags = p->flags; + + if (p->priv != V4L2_PIX_FMT_PRIV_MAGIC) { + pix->ycbcr_enc = V4L2_COLORSPACE_DEFAULT; + pix->quantization = V4L2_QUANTIZATION_DEFAULT; + pix->xfer_func = V4L2_XFER_FUNC_DEFAULT; + } + + pix->num_planes = 1; + pix->plane_fmt[0].sizeimage = p->sizeimage; + pix->plane_fmt[0].bytesperline = p->bytesperline; + + size[0] = p->sizeimage; + stride[0] = p->bytesperline; + + break; + } + case V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE: + case V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE: { + struct v4l2_pix_format_mplane *p = &f->fmt.pix_mp; + unsigned int i; + + if (p->num_planes > MVX_BUFFER_NPLANES) + MVX_SESSION_WARN( + &vsession->session, + "Too many planes for format. format=0x%08x, num_planes=%u.", + pix->pixelformat, p->num_planes); + + memcpy(pix, p, sizeof(*pix)); + + for (i = 0; + i < min_t(unsigned int, MVX_BUFFER_NPLANES, p->num_planes); + i++) { + size[i] = p->plane_fmt[i].sizeimage; + stride[i] = p->plane_fmt[i].bytesperline; + vsession->session.setting_stride[i] = stride[i]; + } + + break; + } + default: + return -EINVAL; + } + + /* Adjust default field and color spaces. */ + + if (pix->field == V4L2_FIELD_SEQ_TB) { + *interlaced = true; + } else { + pix->field = V4L2_FIELD_NONE; + *interlaced = false; + } + + if (pix->colorspace == V4L2_COLORSPACE_DEFAULT) + pix->colorspace = V4L2_COLORSPACE_REC709; + + if (pix->ycbcr_enc == V4L2_YCBCR_ENC_DEFAULT) + pix->ycbcr_enc = V4L2_YCBCR_ENC_709; + + if (pix->quantization == V4L2_QUANTIZATION_DEFAULT) + pix->quantization = V4L2_QUANTIZATION_FULL_RANGE; + + if (pix->xfer_func == V4L2_XFER_FUNC_DEFAULT) + pix->xfer_func = V4L2_XFER_FUNC_709; + + /* Find mapping between pixel format and mvx format. */ + map = mvx_find_format(pix->pixelformat); + if (IS_ERR(map)) { + MVX_SESSION_WARN( + &vsession->session, + "Unsupported V4L2 pixel format. format=0x%08x.", + pix->pixelformat); + return PTR_ERR(map); + } + + *format = map->format; + + return 0; +} + +/** + * print_format() - Print V4L2 format. + * @session: Pointer to MVX session. + * @f: V4L2 format. + * @prefix: Prefix string. + */ +static void print_format(struct mvx_session *session, struct v4l2_format *f, + const char *prefix) +{ + if (V4L2_TYPE_IS_MULTIPLANAR(f->type) != false) { + struct v4l2_pix_format_mplane *p = &f->fmt.pix_mp; + + MVX_SESSION_INFO( + session, + "v4l2: %s. type=%u, pixelformat=0x%08x, width=%u, height=%u, num_planes=%u.", + prefix, f->type, p->pixelformat, p->width, p->height, + p->num_planes); + } else { + struct v4l2_pix_format *p = &f->fmt.pix; + + MVX_SESSION_INFO( + session, + "v4l2: %s. type=%u, pixelformat=0x%08x, width=%u, height=%u.", + prefix, f->type, p->pixelformat, p->width, p->height); + } +} + +/** + * queue_setup() - Initialize or verify queue parameters. + * @q: Videobuf2 queue. + * @buf_cnt: Requested/requered buffers count. + * @plane_cnt: Required number of planes. + * @plane_size: Required size of each plane. + * @alloc_devs: Device to allocate memory from. + * + * This callback is used to query parameters of a queue from the driver. + * Vb2 sets buf_cnt to requested amount of buffers, but a driver is free to + * choose another value and return it. Vb2 will then call queue_setup() again + * to verify that the new value is accepted by a driver. + * + * Vb2 also uses plane_cnt parameter to signal if queue_setup() was called + * from create_bufs() of reqbufs(). + * + * No locking is required in this function. The reason is that will be called + * from within vb2_reqbufs() or vb2_create_bufs() which are executed from our + * code with session mutex already taken. + * + * Return: 0 on success, else error code. + */ + +static int queue_setup(struct vb2_queue *q, unsigned int *buf_cnt, + unsigned int *plane_cnt, unsigned int plane_size[], + struct device *alloc_devs[]) +{ + struct mvx_v4l2_port *vport = vb2_get_drv_priv(q); + struct mvx_session_port *port = vport->port; + struct mvx_v4l2_session *vsession = vport->vsession; + struct mvx_session *session = &vsession->session; + unsigned int i; + + /* + * If the output frame resolution is not known, then there is no need + * to allocate buffers yet. But 1 buffer will be needed to carry + * information about 'resolution change' and 'end of stream'. + */ + if (vport->dir == MVX_DIR_OUTPUT && + mvx_is_frame(port->format) != false && + (port->width == 0 || port->height == 0)) + *buf_cnt = 1; + + memset(plane_size, 0, sizeof(plane_size[0]) * VB2_MAX_PLANES); + *plane_cnt = port->nplanes; + for (i = 0; i < port->nplanes; ++i) { + /* Vb2 allocator does not handle well buffers of zero size. */ + plane_size[i] = max_t(unsigned int, port->size[i], 1); + plane_size[i] = max_t(unsigned int, port->display_size[i], + plane_size[i]); + if (session->seamless_target.seamless_mode != 0 && + vport->dir == MVX_DIR_OUTPUT && + vsession->port[MVX_DIR_INPUT].port->format <= + MVX_FORMAT_BITSTREAM_LAST) { + plane_size[i] = + plane_size[i] < session->seamless_target + .target_size[i] ? + session->seamless_target.target_size[i] : + plane_size[i]; + } + alloc_devs[i] = session->dev; + } + + MVX_SESSION_VERBOSE( + session, + "%s. vsession=%p, vport=%p, vb2_queue=%p, dir=%d, format=0x%x, width=%u, height=%u", + __func__, + vsession, vport, q, vport->dir, port->format, port->width, + port->height); + + return 0; +} + +/** + * buf_init() - Perform initialization for Vb2 buffer. + * @b: Pointer to Vb2 buffer. + * + * Vb2 framework calls this function once for every allocated buffer. + * A driver fetches a list of memory pages and constructs MVX V4L2 buffers. + * + * No locking is required in this function. The reason is that will be called + * from within vb2_reqbufs() or vb2_create_bufs() which are executed from our + * code with session mutex already taken. + * + * Return: 0 in case of success, error code otherwise. + */ +static int buf_init(struct vb2_buffer *b) +{ + struct mvx_v4l2_buffer *vbuf = vb2_to_mvx_v4l2_buffer(b); + + int ret; + unsigned int i; + struct sg_table *sgt[MVX_BUFFER_NPLANES] = { 0 }; + struct vb2_queue *q = b->vb2_queue; + struct mvx_v4l2_port *vport = vb2_get_drv_priv(q); + struct mvx_v4l2_session *vsession = vport->vsession; + struct mvx_session *session = &vsession->session; + + MVX_SESSION_VERBOSE( + session, + "v4l2: Initialize buffer. vb=%p, type=%u, index=%u, num_planes=%u.", + b, b->type, b->index, b->num_planes); + + if (b->num_planes > MVX_BUFFER_NPLANES) { + MVX_SESSION_WARN( + session, + "Failed to initialize buffer. Too many planes. vb=%p, num_planes=%u.", + b, b->num_planes); + return -EINVAL; + } + + for (i = 0; i < b->num_planes; ++i) { + sgt[i] = vb2_dma_sg_plane_desc(b, i); + if (sgt[i] == NULL) { + MVX_SESSION_WARN( + session, + "Cannot fetch SG descriptor. vb=%p, plane=%u.", + b, i); + return -ENOMEM; + } + } + + ret = mvx_v4l2_buffer_construct(vbuf, vsession, vport->dir, + b->num_planes, sgt); + + return ret; +} + +/** + * buf_cleanup() - Destroy data associated to Vb2 buffer. + * @b: Pointer to Vb2 buffer. + * + * Vb2 framework calls this function while destroying a buffer. + */ +static void buf_cleanup(struct vb2_buffer *b) +{ + struct vb2_queue *q = b->vb2_queue; + struct mvx_v4l2_port *vport = vb2_get_drv_priv(q); + struct mvx_v4l2_session *vsession = vport->vsession; + struct mvx_session *session = &vsession->session; + struct mvx_v4l2_buffer *vbuf = vb2_to_mvx_v4l2_buffer(b); + + MVX_SESSION_VERBOSE( + session, + "v4l2: Cleanup buffer. vb=%p, index=%u, vbuf=%p, type=%u.", b, + b->type, b->index, vbuf); + + mvx_v4l2_buffer_destruct(vbuf); +} + +/** + * start_streaming() - Start streaming for queue. + * @q: Pointer to a queue. + * @cnt: Amount of buffers already owned by a driver. + * + * Vb2 calls this function when it is ready to start streaming for a queue. + * Vb2 ensures that minimum required amount of buffers were enqueued to the + * driver before calling this function. + * + * Return: 0 in case of success, error code otherwise. + */ +static int start_streaming(struct vb2_queue *q, unsigned int cnt) +{ + /* + * Parameter cnt is not used so far. + */ + struct mvx_v4l2_port *vport = vb2_get_drv_priv(q); + struct mvx_v4l2_session *vsession = vport->vsession; + struct mvx_session *session = &vsession->session; + int ret; + + MVX_SESSION_VERBOSE(session, + "v4l2: Start streaming. queue=%p, type=%u, cnt=%u.", + q, q->type, cnt); + + ret = mvx_session_streamon(&vsession->session, vport->dir); + + /* + * If attempt was not successful, we should return all owned buffers + * to Vb2 with vb2_buffer_done() with state VB2_BUF_STATE_QUEUED. + */ + if (ret != 0 && atomic_read(&q->owned_by_drv_count) > 0) { + int i; + + for (i = 0; i < q->num_buffers; ++i) + if (q->bufs[i]->state == VB2_BUF_STATE_ACTIVE) + vb2_buffer_done(q->bufs[i], + VB2_BUF_STATE_QUEUED); + + WARN_ON(atomic_read(&q->owned_by_drv_count)); + } + + return ret; +} + +/** + * stop_streaming() - Stop streaming for a queue. + * @q: Pointer to a queue. + * + * Vb2 calls this function when streaming should be terminated. + * The driver must ensure that no DMA transfers are ongoing and + * return all buffers to Vb2 with vb2_buffer_done(). + */ +static void stop_streaming(struct vb2_queue *q) +{ + struct mvx_v4l2_port *vport = vb2_get_drv_priv(q); + struct mvx_v4l2_session *vsession = vport->vsession; + struct mvx_session *session = &vsession->session; + + MVX_SESSION_VERBOSE(session, "v4l2: Stop streaming. queue=%p, type=%u.", + q, q->type); + + mvx_session_streamoff(&vsession->session, vport->dir); + + /* + * We have to return all owned buffers to Vb2 before exiting from + * this callback. + * + * Note: there must be no access to buffers after they are returned. + */ + if (atomic_read(&q->owned_by_drv_count) > 0) { + int i; + + for (i = 0; i < q->num_buffers; ++i) + if (q->bufs[i]->state == VB2_BUF_STATE_ACTIVE) + vb2_buffer_done(q->bufs[i], + VB2_BUF_STATE_ERROR); + + WARN_ON(atomic_read(&q->owned_by_drv_count)); + } +} + +/** + * buf_queue() - Enqueue buffer to a driver. + * @b: Pointer to Vb2 buffer structure. + * + * Vb2 calls this function to enqueue a buffer to a driver. + * A driver should later return a buffer to Vb2 with vb2_buffer_done(). + * + * Return: 0 in case of success, error code otherwise. + */ +static void buf_queue(struct vb2_buffer *b) +{ + struct vb2_queue *q = b->vb2_queue; + struct mvx_v4l2_port *vport = vb2_get_drv_priv(q); + struct mvx_session_port *port = vport->port; + enum mvx_direction dir = vport->dir; + struct mvx_v4l2_session *vsession = vport->vsession; + struct mvx_session *session = &vsession->session; + struct mvx_v4l2_buffer *vbuf = vb2_to_mvx_v4l2_buffer(b); + + int ret; + + MVX_SESSION_VERBOSE(session, + "v4l2: Queue buffer. b=%p, type=%u, index=%u.", b, + b->type, b->index); + vbuf->buf.format = vport->port->format; + ret = mvx_v4l2_buffer_set(vbuf, b); + if (ret != 0) + goto failed; + + ret = mvx_session_qbuf(&vsession->session, dir, &vbuf->buf); + if (ret != 0) + goto failed; + + return; + +failed: + if (vbuf->buf.flags & MVX_BUFFER_FRAME_NEED_REALLOC) { + vbuf->vb2_v4l2_buffer.flags |= + V4L2_BUF_FLAG_MVX_BUFFER_NEED_REALLOC; + port->isreallocting = true; + vb2_buffer_done(b, VB2_BUF_STATE_DONE); + return; + } + vb2_buffer_done(b, VB2_BUF_STATE_ERROR); +} + +/** + * buf_finish() - Finish buffer before it is returned to user space. + * @vb: Pointer to Vb2 buffer structure. + */ +static void buf_finish(struct vb2_buffer *vb) +{ + struct mvx_v4l2_port *vport = vb2_get_drv_priv(vb->vb2_queue); + struct mvx_v4l2_buffer *vbuf = vb2_to_mvx_v4l2_buffer(vb); + + vport->crop.left = vbuf->buf.crop_left; + vport->crop.top = vbuf->buf.crop_top; +} + +/** + * wait_prepare() - Prepare driver for waiting + * @q: Pointer to Vb2 queue. + * + * Vb2 calls this function when it is about to wait for more buffers to + * be received. A driver should release any locks taken while calling Vb2 + * functions. + * This is required to avoid a deadlock. + * + * This is unused for now and will be called from Vb2. + */ +static void wait_prepare(struct vb2_queue *q) +{ + struct mvx_v4l2_port *vport = vb2_get_drv_priv(q); + struct mvx_v4l2_session *vsession = vport->vsession; + struct mvx_session *session = &vsession->session; + + MVX_SESSION_VERBOSE(session, "v4l2: Wait prepare. queue=%p.", q); + + mutex_unlock(&vsession->mutex); +} + +/** + * wait_finish() - Wake up after sleep. + * @q: Pointer to Vb2 queue. + * + * Require mutexes release before. + * + * This is unused for now and will be called from Vb2. + */ +static void wait_finish(struct vb2_queue *q) +{ + struct mvx_v4l2_port *vport = vb2_get_drv_priv(q); + struct mvx_v4l2_session *vsession = vport->vsession; + struct mvx_session *session = &vsession->session; + int ignore; + + MVX_SESSION_VERBOSE(session, "v4l2: Wait finish. queue=%p.", q); + + /* + * mutex_lock_interruptible is declared with attribute + * warn_unused_result, but we have no way to return a status + * from wait_finish(). + */ + ignore = mutex_lock_interruptible(&vsession->mutex); +} + +/** + * mvx_vb2_ops - Callbacks for Vb2 framework + * Not all possible callbacks are implemented as some of them are optional. + */ +const struct vb2_ops mvx_vb2_ops = { .queue_setup = queue_setup, + .buf_init = buf_init, + .buf_finish = buf_finish, + .buf_cleanup = buf_cleanup, + .start_streaming = start_streaming, + .stop_streaming = stop_streaming, + .buf_queue = buf_queue, + .wait_prepare = wait_prepare, + .wait_finish = wait_finish }; + +/** + * setup_vb2_queue() - Initialize vb2_queue before it can be used by Vb2. + */ +static int setup_vb2_queue(struct mvx_v4l2_port *vport) +{ + struct vb2_queue *q = &vport->vb2_queue; + struct device *dev = vport->vsession->ext->dev; + int ret; + + q->drv_priv = vport; + q->type = vport->type; + q->io_modes = VB2_MMAP | VB2_USERPTR | VB2_DMABUF; + q->dev = dev; + + q->ops = &mvx_vb2_ops; + q->mem_ops = &vb2_dma_sg_memops; + q->timestamp_flags = V4L2_BUF_FLAG_TIMESTAMP_COPY; + q->allow_zero_bytesused = true; + + /* Let Vb2 handle mvx_v4l2_buffer allocations. */ + q->buf_struct_size = sizeof(struct mvx_v4l2_buffer); + + ret = vb2_queue_init(q); + return ret; +} + +/**************************************************************************** + * Exported functions and variables + ****************************************************************************/ + +int mvx_v4l2_vidioc_querycap(struct file *file, void *fh, + struct v4l2_capability *cap) +{ + struct mvx_v4l2_session *session = file_to_session(file); + + MVX_SESSION_INFO(&session->session, "v4l2: Query capabilities."); + + strscpy(cap->driver, "mvx", sizeof(cap->driver)); + strscpy(cap->card, "Linlon Video device", sizeof(cap->card)); + strscpy(cap->bus_info, "platform:mvx", sizeof(cap->bus_info)); + + cap->capabilities = V4L2_CAP_DEVICE_CAPS | V4L2_CAP_VIDEO_M2M | + V4L2_CAP_VIDEO_M2M_MPLANE | + V4L2_CAP_EXT_PIX_FORMAT | V4L2_CAP_STREAMING; + cap->device_caps = cap->capabilities & ~V4L2_CAP_DEVICE_CAPS; + + return 0; +} + +/* + * Loop over the mvx_fmts searching for pixelformat at offset f->index. + * + * Formats that are not present in the 'formats' bitmask will be skipped. + * Which pixelformat that is mapped to which index will consequently depend + * on which mvx_formats that are enabled. + */ +static int mvx_v4l2_vidioc_enum_fmt_vid(struct mvx_v4l2_session *session, + struct v4l2_fmtdesc *f, + enum mvx_direction dir) +{ + uint64_t formats; + int index; + int i; + + mvx_session_get_formats(&session->session, dir, &formats); + + for (i = 0, index = 0; i < ARRAY_SIZE(mvx_fmts); i++) + if (mvx_test_bit(mvx_fmts[i].format, &formats)) { + if (f->index == index) { + f->flags = mvx_fmts[i].flags; + f->pixelformat = mvx_fmts[i].pixelformat; + strscpy(f->description, mvx_fmts[i].description, + sizeof(f->description)); + break; + } + + index++; + } + + if (i >= ARRAY_SIZE(mvx_fmts)) + return -EINVAL; + + return 0; +} + +int mvx_v4l2_vidioc_enum_fmt_vid_cap(struct file *file, void *fh, + struct v4l2_fmtdesc *f) +{ + struct mvx_v4l2_session *session = file_to_session(file); + int ret; + + ret = mvx_v4l2_vidioc_enum_fmt_vid(session, f, MVX_DIR_OUTPUT); + + return ret; +} + +int mvx_v4l2_vidioc_enum_fmt_vid_out(struct file *file, void *fh, + struct v4l2_fmtdesc *f) +{ + struct mvx_v4l2_session *session = file_to_session(file); + int ret; + + ret = mvx_v4l2_vidioc_enum_fmt_vid(session, f, MVX_DIR_INPUT); + + return ret; +} + +int mvx_v4l2_vidioc_enum_framesizes(struct file *file, void *fh, + struct v4l2_frmsizeenum *fsize) +{ + struct mvx_format_map *format; + + /* Verify that format is supported. */ + format = mvx_find_format(fsize->pixel_format); + if (IS_ERR(format)) + return PTR_ERR(format); + + /* For stepwise/continuous frame size the index must be 0. */ + if (fsize->index != 0) + return -EINVAL; + + fsize->type = V4L2_FRMSIZE_TYPE_STEPWISE; + fsize->stepwise.min_width = 2; + fsize->stepwise.max_width = 32768; + fsize->stepwise.step_width = 2; + fsize->stepwise.min_height = 2; + fsize->stepwise.max_height = 32768; + fsize->stepwise.step_height = 2; + + return 0; +} + +static int mvx_v4l2_vidioc_g_fmt_vid(struct file *file, struct v4l2_format *f, + enum mvx_direction dir) +{ + struct mvx_v4l2_session *vsession = file_to_session(file); + struct mvx_v4l2_port *vport = &vsession->port[dir]; + struct mvx_session_port *port = &vsession->session.port[dir]; + int ret; + + ret = mutex_lock_interruptible(&vsession->mutex); + if (ret != 0) + return ret; + + to_v4l2_format(f, f->type, &vport->pix_mp, port->stride, port->size, + port->interlaced); + + mutex_unlock(&vsession->mutex); + + print_format(&vsession->session, f, "Get format"); + + return 0; +} + +int mvx_v4l2_vidioc_g_fmt_vid_cap(struct file *file, void *fh, + struct v4l2_format *f) +{ + return mvx_v4l2_vidioc_g_fmt_vid(file, f, MVX_DIR_OUTPUT); +} + +int mvx_v4l2_vidioc_g_fmt_vid_out(struct file *file, void *fh, + struct v4l2_format *f) +{ + return mvx_v4l2_vidioc_g_fmt_vid(file, f, MVX_DIR_INPUT); +} + +static int mvx_v4l2_vidioc_s_fmt_vid(struct file *file, struct v4l2_format *f, + enum mvx_direction dir) +{ + struct mvx_v4l2_session *vsession = file_to_session(file); + struct mvx_v4l2_port *vport = &vsession->port[dir]; + struct v4l2_pix_format_mplane pix_mp; + enum mvx_format format; + unsigned int stride[MVX_BUFFER_NPLANES]; + unsigned int size[MVX_BUFFER_NPLANES]; + bool interlaced = false; + int ret; + + memset(stride, 0, sizeof(stride)); + memset(size, 0, sizeof(size)); + ret = mutex_lock_interruptible(&vsession->mutex); + if (ret != 0) + return ret; + + if (vport->q_set != false && vb2_is_busy(&vport->vb2_queue) != false) { + MVX_SESSION_WARN( + &vsession->session, + "Can't set format when there buffers allocated to the port."); + ret = -EBUSY; + goto unlock_mutex; + } + + /* Convert V4L2 format to V4L2 multi planar pixel format. */ + ret = from_v4l2_format(vsession, f, &pix_mp, &format, stride, size, + &interlaced); + if (ret != 0) + goto unlock_mutex; + + /* Validate and adjust settings. */ + ret = mvx_session_set_format(&vsession->session, dir, format, + &pix_mp.width, &pix_mp.height, + &pix_mp.num_planes, stride, size, + &interlaced); + if (ret != 0) + goto unlock_mutex; + + /* Convert V4L2 multi planar pixel format to format. */ + ret = to_v4l2_format(f, f->type, &pix_mp, stride, size, interlaced); + if (ret != 0) + goto unlock_mutex; + + vport->type = f->type; + vport->pix_mp = pix_mp; + +unlock_mutex: + mutex_unlock(&vsession->mutex); + + print_format(&vsession->session, f, "Set format"); + + return ret; +} + +int mvx_v4l2_vidioc_s_fmt_vid_cap(struct file *file, void *fh, + struct v4l2_format *f) +{ + return mvx_v4l2_vidioc_s_fmt_vid(file, f, MVX_DIR_OUTPUT); +} + +int mvx_v4l2_vidioc_s_fmt_vid_out(struct file *file, void *fh, + struct v4l2_format *f) +{ + struct mvx_v4l2_session *vsession = file_to_session(file); + struct v4l2_pix_format_mplane *in = + &vsession->port[MVX_DIR_INPUT].pix_mp; + struct v4l2_pix_format_mplane *out = + &vsession->port[MVX_DIR_OUTPUT].pix_mp; + int ret; + + ret = mvx_v4l2_vidioc_s_fmt_vid(file, f, MVX_DIR_INPUT); + if (ret != 0) + return ret; + + /* Copy input formats to output port. */ + out->colorspace = in->colorspace; + out->ycbcr_enc = in->ycbcr_enc; + out->quantization = in->quantization; + out->xfer_func = in->xfer_func; + + return 0; +} + +static int mvx_v4l2_vidioc_try_fmt_vid(struct file *file, struct v4l2_format *f, + enum mvx_direction dir) +{ + struct mvx_v4l2_session *vsession = file_to_session(file); + struct v4l2_pix_format_mplane pix; + enum mvx_format format; + unsigned int stride[MVX_BUFFER_NPLANES]; + unsigned int size[MVX_BUFFER_NPLANES]; + bool interlaced = false; + int ret; + + memset(stride, 0, sizeof(stride)); + memset(size, 0, sizeof(size)); + ret = mutex_lock_interruptible(&vsession->mutex); + if (ret != 0) + return ret; + + ret = from_v4l2_format(vsession, f, &pix, &format, stride, size, + &interlaced); + if (ret != 0) + goto unlock_mutex; + + ret = mvx_session_try_format(&vsession->session, dir, format, + &pix.width, &pix.height, &pix.num_planes, + stride, size, &interlaced); + if (ret != 0) + goto unlock_mutex; + + ret = to_v4l2_format(f, f->type, &pix, stride, size, interlaced); + if (ret != 0) + goto unlock_mutex; + +unlock_mutex: + mutex_unlock(&vsession->mutex); + + print_format(&vsession->session, f, "Try format"); + + return ret; +} + +int mvx_v4l2_vidioc_try_fmt_vid_cap(struct file *file, void *fh, + struct v4l2_format *f) +{ + return mvx_v4l2_vidioc_try_fmt_vid(file, f, MVX_DIR_OUTPUT); +} + +int mvx_v4l2_vidioc_try_fmt_vid_out(struct file *file, void *fh, + struct v4l2_format *f) +{ + return mvx_v4l2_vidioc_try_fmt_vid(file, f, MVX_DIR_INPUT); +} + +int mvx_v4l2_vidioc_g_crop(struct file *file, void *fh, struct v4l2_crop *a) +{ + struct mvx_v4l2_session *vsession = file_to_session(file); + enum mvx_direction dir = V4L2_TYPE_IS_OUTPUT(a->type) ? MVX_DIR_INPUT : + MVX_DIR_OUTPUT; + struct mvx_v4l2_port *vport = &vsession->port[dir]; + struct mvx_session_port *port = &vsession->session.port[dir]; + int ret; + + ret = mutex_lock_interruptible(&vsession->mutex); + if (ret != 0) + return ret; + + a->c.left = vport->crop.left; + a->c.top = vport->crop.top; + a->c.width = port->width - vport->crop.left; + a->c.height = port->height - vport->crop.top; + + mutex_unlock(&vsession->mutex); + + MVX_SESSION_INFO( + &vsession->session, + "v4l2: Get crop. dir=%u, crop={left=%u, top=%u, width=%u, height=%u.", + dir, a->c.left, a->c.top, a->c.width, a->c.height); + + return 0; +} + +int mvx_v4l2_vidioc_g_selection(struct file *file, void *fh, + struct v4l2_selection *a) +{ + struct mvx_v4l2_session *vsession = file_to_session(file); + enum mvx_direction dir = V4L2_TYPE_IS_OUTPUT(a->type) ? MVX_DIR_INPUT : + MVX_DIR_OUTPUT; + struct mvx_v4l2_port *vport = &vsession->port[dir]; + struct mvx_session_port *port = &vsession->session.port[dir]; + int ret; + + ret = mutex_lock_interruptible(&vsession->mutex); + if (ret != 0) + return ret; + + a->r.left = vport->crop.left; + a->r.top = vport->crop.top; + a->r.width = port->width - vport->crop.left; + a->r.height = port->height - vport->crop.top; + + mutex_unlock(&vsession->mutex); + + MVX_SESSION_INFO( + &vsession->session, + "v4l2: Get crop. dir=%u, crop={left=%u, top=%u, width=%u, height=%u.", + dir, a->r.left, a->r.top, a->r.width, a->r.height); + + return 0; +} + +int mvx_v4l2_vidioc_streamon(struct file *file, void *priv, + enum v4l2_buf_type type) +{ + struct mvx_v4l2_session *vsession = file_to_session(file); + enum mvx_direction dir = V4L2_TYPE_IS_OUTPUT(type) ? MVX_DIR_INPUT : + MVX_DIR_OUTPUT; + int ret; + + MVX_SESSION_INFO(&vsession->session, "v4l2: Stream on. dir=%u.", dir); + + ret = mutex_lock_interruptible(&vsession->mutex); + if (ret != 0) + return ret; + + ret = vb2_streamon(&vsession->port[dir].vb2_queue, type); + if (ret != 0) + MVX_SESSION_WARN(&vsession->session, + "v4l2: Failed to stream on. dir=%u.", dir); + + mutex_unlock(&vsession->mutex); + + return ret; +} + +int mvx_v4l2_vidioc_streamoff(struct file *file, void *priv, + enum v4l2_buf_type type) +{ + struct mvx_v4l2_session *vsession = file_to_session(file); + enum mvx_direction dir = V4L2_TYPE_IS_OUTPUT(type) ? MVX_DIR_INPUT : + MVX_DIR_OUTPUT; + int ret; + + MVX_SESSION_INFO(&vsession->session, "v4l2: Stream off. dir=%u.", dir); + + ret = mutex_lock_interruptible(&vsession->mutex); + if (ret != 0) + return ret; + + ret = vb2_streamoff(&vsession->port[dir].vb2_queue, type); + if (ret != 0) + MVX_SESSION_WARN(&vsession->session, + "v4l2: Failed to stream off. dir=%u.", dir); + + MVX_SESSION_INFO(&vsession->session, + "v4l2: Stream off exit. dir=%u, ret=%d.", dir, ret); + + mutex_unlock(&vsession->mutex); + + return ret; +} + +int mvx_v4l2_vidioc_encoder_cmd(struct file *file, void *priv, + struct v4l2_encoder_cmd *cmd) +{ + struct mvx_v4l2_session *vsession = file_to_session(file); + int ret; + + MVX_SESSION_INFO(&vsession->session, "v4l2: encoder cmd: %u.", + cmd->cmd); + + ret = mutex_lock_interruptible(&vsession->mutex); + if (ret != 0) + return ret; + + switch (cmd->cmd) { + case V4L2_ENC_CMD_STOP: + ret = mvx_session_send_eos(&vsession->session); + break; + default: + MVX_SESSION_WARN(&vsession->session, + "Unsupported command. cmd: %u.", cmd->cmd); + ret = -EINVAL; + } + + mutex_unlock(&vsession->mutex); + + return ret; +} + +int mvx_v4l2_vidioc_try_encoder_cmd(struct file *file, void *priv, + struct v4l2_encoder_cmd *cmd) +{ + switch (cmd->cmd) { + case V4L2_ENC_CMD_STOP: + return 0; + default: + return -EINVAL; + } +} + +int mvx_v4l2_vidioc_decoder_cmd(struct file *file, void *priv, + struct v4l2_decoder_cmd *cmd) +{ + struct mvx_v4l2_session *vsession = file_to_session(file); + int ret; + + MVX_SESSION_INFO(&vsession->session, "v4l2: decoder cmd: %u.", + cmd->cmd); + + ret = mutex_lock_interruptible(&vsession->mutex); + if (ret != 0) + return ret; + + switch (cmd->cmd) { + case V4L2_DEC_CMD_STOP: + ret = mvx_session_send_eos(&vsession->session); + break; + default: + MVX_SESSION_INFO(&vsession->session, + "Unsupported command. cmd: %u.", cmd->cmd); + ret = -EINVAL; + } + + mutex_unlock(&vsession->mutex); + + return ret; +} + +int mvx_v4l2_vidioc_try_decoder_cmd(struct file *file, void *priv, + struct v4l2_decoder_cmd *cmd) +{ + switch (cmd->cmd) { + case V4L2_DEC_CMD_STOP: + return 0; + default: + return -EINVAL; + } +} + +int mvx_v4l2_vidioc_reqbufs(struct file *file, void *fh, + struct v4l2_requestbuffers *b) +{ + struct mvx_v4l2_session *vsession = file_to_session(file); + enum mvx_direction dir = V4L2_TYPE_IS_OUTPUT(b->type) ? MVX_DIR_INPUT : + MVX_DIR_OUTPUT; + struct mvx_v4l2_port *vport = &vsession->port[dir]; + int ret; + + MVX_SESSION_INFO( + &vsession->session, + "v4l2: Request buffers. dir=%d, type=%u, memory=%u, count=%u.", + dir, b->type, b->memory, b->count); + + ret = mutex_lock_interruptible(&vsession->mutex); + if (ret != 0) + return ret; + + if (b->count == 0) { + if (vport->q_set != false) { + vb2_queue_release(&vport->vb2_queue); + vport->q_set = false; + } + } else { + if (vport->q_set == false) { + ret = setup_vb2_queue(vport); + if (ret != 0) + goto unlock_mutex; + + vport->q_set = true; + } + + ret = vb2_reqbufs(&vport->vb2_queue, b); + } + vport->port->buffer_allocated = b->count; +unlock_mutex: + mutex_unlock(&vsession->mutex); + + return ret; +} + +int mvx_v4l2_vidioc_create_bufs(struct file *file, void *fh, + struct v4l2_create_buffers *b) +{ + struct mvx_v4l2_session *vsession = file_to_session(file); + enum mvx_direction dir = V4L2_TYPE_IS_OUTPUT(b->format.type) ? + MVX_DIR_INPUT : + MVX_DIR_OUTPUT; + struct mvx_v4l2_port *vport = &vsession->port[dir]; + int ret; + + MVX_SESSION_INFO( + &vsession->session, + "v4l2: Create buffers. dir=%d, type=%u, memory=%u, count=%u.", + dir, b->format.type, b->memory, b->count); + + ret = mutex_lock_interruptible(&vsession->mutex); + if (ret != 0) + return ret; + + if (vport->q_set == false) + ret = setup_vb2_queue(vport); + + if (ret != 0) + goto unlock_mutex; + + vport->q_set = true; + + ret = vb2_create_bufs(&vport->vb2_queue, b); + vport->port->buffer_allocated += b->count; + MVX_SESSION_INFO(&vsession->session, "count =%d,buffer_allocated=%d", + b->count, vport->port->buffer_allocated); +unlock_mutex: + mutex_unlock(&vsession->mutex); + + return ret; +} + +int mvx_v4l2_vidioc_querybuf(struct file *file, void *fh, struct v4l2_buffer *b) +{ + struct mvx_v4l2_session *vsession = file_to_session(file); + enum mvx_direction dir = V4L2_TYPE_IS_OUTPUT(b->type) ? MVX_DIR_INPUT : + MVX_DIR_OUTPUT; + struct mvx_v4l2_port *vport = &vsession->port[dir]; + int ret; + + MVX_SESSION_INFO( + &vsession->session, + "v4l2: Query buffer. dir=%d, type=%u, memory=%u, index=%u.", + dir, b->type, b->memory, b->index); + + ret = mutex_lock_interruptible(&vsession->mutex); + if (ret != 0) + return ret; + + ret = vb2_querybuf(&vport->vb2_queue, b); + if (ret != 0) + goto unlock_mutex; + + /* + * When user space wants to mmap() a buffer, we have to be able to + * determine a direction of coresponding port. To make it easier we + * adjust mem_offset on output port by DST_QUEUE_OFF_BASE for all + * buffers. + */ + if (dir == MVX_DIR_OUTPUT) { + if (V4L2_TYPE_IS_MULTIPLANAR(b->type)) { + int i; + + for (i = 0; i < b->length; ++i) { + b->m.planes[i].m.mem_offset += + DST_QUEUE_OFF_BASE; + } + } else { + b->m.offset += DST_QUEUE_OFF_BASE; + } + } + +unlock_mutex: + mutex_unlock(&vsession->mutex); + + return ret; +} + +int mvx_v4l2_vidioc_qbuf(struct file *file, void *fh, struct v4l2_buffer *b) +{ + struct mvx_v4l2_session *vsession = file_to_session(file); + enum mvx_direction dir = V4L2_TYPE_IS_OUTPUT(b->type) ? MVX_DIR_INPUT : + MVX_DIR_OUTPUT; + struct mvx_v4l2_port *vport = &vsession->port[dir]; + struct mvx_v4l2_buffer *vbuf; + struct mvx_buffer *buf; + struct vb2_buffer *vb; + struct v4l2_core_buffer_header_general *v4l2_general; + int ret; + + MVX_SESSION_INFO( + &vsession->session, + "v4l2: Queue buffer. dir=%d, type=%u, index=%u, flags=0x%x.", + dir, b->type, b->index, b->flags); + + ret = mutex_lock_interruptible(&vsession->mutex); + if (ret != 0) + return ret; + + if ((b->flags & V4L2_BUF_FLAG_MVX_BUFFER_GENERAL) == + V4L2_BUF_FLAG_MVX_BUFFER_GENERAL) { + vb = vport->vb2_queue.bufs[b->index]; + vbuf = vb2_to_mvx_v4l2_buffer(vb); + buf = &vbuf->buf; + v4l2_general = (struct v4l2_core_buffer_header_general *)&b->m + .planes[0] + .reserved[0]; + buf->general.header.buffer_size = v4l2_general->buffer_size; + buf->general.header.config_size = v4l2_general->config_size; + buf->general.header.type = v4l2_general->type; + + if (v4l2_general->type == + V4L2_BUFFER_GENERAL_TYPE_BLOCK_CONFIGS) { + memcpy(&buf->general.config.block_configs, + &v4l2_general->config.config, + sizeof(v4l2_general->config.config)); + MVX_SESSION_INFO( + &vsession->session, + "v4l2: Queue buffer. type:%d, config size:%d, buffer size:%d, cfg_type:0x%x, cols and rows:%d, %d", + v4l2_general->type, v4l2_general->config_size, + v4l2_general->buffer_size, + v4l2_general->config.config.blk_cfg_type, + v4l2_general->config.config.blk_cfgs.rows_uncomp + .n_cols_minus1, + v4l2_general->config.config.blk_cfgs.rows_uncomp + .n_rows_minus1); + } else { + MVX_SESSION_ERR( + &vsession->session, + "v4l2: Queue buffer. Unknown general buffer type:%d", + v4l2_general->type); + } + } + if (vsession->port[MVX_DIR_INPUT].port->format <= + MVX_FORMAT_BITSTREAM_LAST && + dir == MVX_DIR_OUTPUT && V4L2_TYPE_IS_MULTIPLANAR(b->type)) { + if ((b->reserved2 & V4L2_BUF_FLAG_MVX_AD_STATS) == + V4L2_BUF_FLAG_MVX_AD_STATS) { + vb = vport->vb2_queue.bufs[b->index]; + vbuf = vb2_to_mvx_v4l2_buffer(vb); + buf = &vbuf->buf; + v4l2_general = + (struct v4l2_core_buffer_header_general *)&b->m + .planes[0] + .reserved[0]; + buf->general.header.buffer_size = + v4l2_general->buffer_size; + buf->general.header.config_size = + v4l2_general->config_size; + buf->general.header.type = v4l2_general->type; + if (v4l2_general->type == + V4L2_BUFFER_GENERAL_TYPE_AD_STATS) { + buf->flags |= MVX_BUFFER_FRAME_FLAG_GENERAL; + memcpy(&buf->general.config.ad_stats, + &v4l2_general->config.ad_stats, + sizeof(v4l2_general->config.ad_stats)); + MVX_SESSION_INFO( + &vsession->session, + "v4l2: Queue buffer with general buffer. type:%d, config size:%d", + v4l2_general->type, + v4l2_general->config_size); + MVX_SESSION_INFO( + &vsession->session, + "v4l2: buffer size:%d,frame_avg:%u, thumbnail w/h:%u/%u, ad flags:0x%x", + v4l2_general->buffer_size, + v4l2_general->config.ad_stats.frame_averages, + v4l2_general->config.ad_stats.thumbnail_width, + v4l2_general->config.ad_stats.thumbnail_height, + v4l2_general->config.ad_stats.ad_stats_flags); + } else { + buf->flags &= ~MVX_BUFFER_FRAME_FLAG_GENERAL; + MVX_SESSION_ERR( + &vsession->session, + "v4l2: Queue buffer. Unknown general buffer type:%d", + v4l2_general->type); + } + } + } + if (dir == MVX_DIR_INPUT && V4L2_TYPE_IS_MULTIPLANAR(b->type)) { + vb = vport->vb2_queue.bufs[b->index]; + vbuf = vb2_to_mvx_v4l2_buffer(vb); + buf = &vbuf->buf; + if (b->reserved2 & V4L2_BUF_FLAG_MVX_MINIFRAME) { + //this is miniframe encode mode. + buf->offset = b->m.planes[0].reserved[10]; + } else { + buf->offset = 0; + } + if (b->reserved2 & V4L2_BUF_FLAG_MVX_OSD_MASK) { + buf->flags |= b->reserved2 & V4L2_BUF_FLAG_MVX_OSD_1 ? + MVX_BUFFER_FRAME_FLAG_OSD_1 : + 0; + buf->flags |= b->reserved2 & V4L2_BUF_FLAG_MVX_OSD_2 ? + MVX_BUFFER_FRAME_FLAG_OSD_2 : + 0; + } else { + buf->flags &= ~MVX_BUFFER_FRAME_FLAG_OSD_MASK; + } + } + + ret = vb2_qbuf(&vport->vb2_queue, vsession->ext->vdev.v4l2_dev->mdev, b); + + mutex_unlock(&vsession->mutex); + + return ret; +} + +int mvx_v4l2_vidioc_dqbuf(struct file *file, void *fh, struct v4l2_buffer *b) +{ + struct mvx_v4l2_session *vsession = file_to_session(file); + struct mvx_ext_if *ctx = vsession->ext; + enum mvx_direction dir = V4L2_TYPE_IS_OUTPUT(b->type) ? MVX_DIR_INPUT : + MVX_DIR_OUTPUT; + struct mvx_v4l2_port *vport = &vsession->port[dir]; + struct vb2_buffer *vb; + struct mvx_v4l2_buffer *vbuf; + struct mvx_buffer *buf; + int ret; + uint32_t i; + + MVX_SESSION_INFO(&vsession->session, + "v4l2: Dequeue buffer. dir=%d, type=%u.", dir, + b->type); + + ret = mutex_lock_interruptible(&vsession->mutex); + if (ret != 0) + return ret; + + ret = vb2_dqbuf(&vport->vb2_queue, b, file->f_flags & O_NONBLOCK); + if (ret != 0) + goto unlock_mutex; + + if ((dir == MVX_DIR_OUTPUT) && (b->flags & V4L2_BUF_FLAG_LAST)) { + const struct v4l2_event event = { .type = V4L2_EVENT_EOS }; + + v4l2_event_queue(&ctx->vdev, &event); + } + + /* + * For single planar buffers there is no data offset. Instead the + * offset is added to the memory pointer and subtraced from the + * bytesused. + */ + vb = vport->vb2_queue.bufs[b->index]; + if (V4L2_TYPE_IS_MULTIPLANAR(vb->type) == false) { + b->bytesused -= vb->planes[0].data_offset; + + switch (vb->type) { + case V4L2_MEMORY_MMAP: + b->m.offset += vb->planes[0].data_offset; + break; + case V4L2_MEMORY_USERPTR: + b->m.userptr += vb->planes[0].data_offset; + break; + default: + break; + } + } + + if (dir == MVX_DIR_OUTPUT && !V4L2_TYPE_IS_MULTIPLANAR(b->type)) { + vbuf = vb2_to_mvx_v4l2_buffer(vb); + buf = &vbuf->buf; + b->reserved2 = 0; + b->reserved2 = (buf->frame_type << 24) | + (buf->src_transform << 16) | + (buf->bitstream_remaining_kb); + } + if (vsession->port[MVX_DIR_INPUT].port->format <= + MVX_FORMAT_BITSTREAM_LAST && + dir == MVX_DIR_OUTPUT && V4L2_TYPE_IS_MULTIPLANAR(b->type)) { + vbuf = vb2_to_mvx_v4l2_buffer(vb); + buf = &vbuf->buf; + for (i = 0; i < b->length; i++) + b->m.planes[i].reserved[0] = buf->planes[i].stride; + + b->m.planes[0].reserved[1] = (buf->width << 16) | (buf->height); + //for ad_stats + if (buf->general.header.type == + MVX_BUFFER_GENERAL_TYPE_AD_STATS) { + b->reserved2 |= V4L2_BUF_FLAG_MVX_AD_STATS; + b->m.planes[0].reserved[2] = + buf->general.header.buffer_size; + b->m.planes[0].reserved[3] = + (buf->general.header.type << 16) | + buf->general.header.config_size; + b->m.planes[0].reserved[4] = + buf->general.config.ad_stats.frame_averages; + b->m.planes[0].reserved[5] = + (buf->general.config.ad_stats.thumbnail_width + << 16) | + buf->general.config.ad_stats.thumbnail_height; + b->m.planes[0].reserved[6] = + buf->general.config.ad_stats.ad_stats_flags; + + MVX_SESSION_INFO( + &vsession->session, + "v4l2: DeQueue buffer with general buffer. type:%d, config size:%d, buffer size:%d, frame_averages:%u, thumbnail width and height:%u, %u, ad_stats_flags:0x%x", + buf->general.header.type, + buf->general.header.config_size, + buf->general.header.buffer_size, + buf->general.config.ad_stats.frame_averages, + buf->general.config.ad_stats.thumbnail_width, + buf->general.config.ad_stats.thumbnail_height, + buf->general.config.ad_stats.ad_stats_flags); + } + } + +unlock_mutex: + mutex_unlock(&vsession->mutex); + + MVX_SESSION_INFO( + &vsession->session, + "v4l2: Dequeued buffer. dir=%d, type=%u, index=%u, flags=0x%x, nevents=%u, fh=%p.", + dir, b->type, b->index, b->flags, + v4l2_event_pending(&vsession->fh), fh); + + return ret; +} + +int mvx_v4l2_vidioc_subscribe_event(struct v4l2_fh *fh, + const struct v4l2_event_subscription *sub) +{ + struct mvx_v4l2_session *session = v4l2_fh_to_session(fh); + + MVX_SESSION_INFO(&session->session, + "v4l2: Subscribe event. fh=%p, type=%u.", fh, + sub->type); + + switch (sub->type) { + case V4L2_EVENT_CTRL: + return v4l2_ctrl_subscribe_event(fh, sub); + case V4L2_EVENT_EOS: + case V4L2_EVENT_SOURCE_CHANGE: + case V4L2_EVENT_MVX_COLOR_DESC: + return v4l2_event_subscribe(fh, sub, 2, NULL); + default: + MVX_SESSION_WARN( + &session->session, + "Can't register for unsupported event. type=%u.", + sub->type); + return -EINVAL; + } + + return 0; +} + +long mvx_v4l2_vidioc_default(struct file *file, void *fh, bool valid_prio, + unsigned int cmd, void *arg) +{ + struct mvx_v4l2_session *vsession = file_to_session(file); + int ret; + + MVX_SESSION_INFO(&vsession->session, + "Custom ioctl. cmd=0x%x, arg=0x%p.", cmd, arg); + + switch (cmd) { + case VIDIOC_G_MVX_COLORDESC: { + ret = mvx_v4l2_session_get_color_desc(vsession, arg); + break; + } + case VIDIOC_S_MVX_ROI_REGIONS: { + ret = mvx_v4l2_session_set_roi_regions(vsession, arg); + break; + } + case VIDIOC_S_MVX_QP_EPR: { + ret = mvx_v4l2_session_set_qp_epr(vsession, arg); + break; + } + case VIDIOC_S_MVX_COLORDESC: { + ret = mvx_v4l2_session_set_color_desc(vsession, arg); + break; + } + case VIDIOC_S_MVX_SEI_USERDATA: { + ret = mvx_v4l2_session_set_sei_userdata(vsession, arg); + break; + } + case VIDIOC_S_MVX_RATE_CONTROL: { + ret = mvx_v4l2_session_set_rate_control(vsession, arg); + break; + } + case VIDIOC_S_MVX_DSL_FRAME: { + ret = mvx_v4l2_session_set_dsl_frame(vsession, arg); + break; + } + case VIDIOC_S_MVX_DSL_RATIO: { + ret = mvx_v4l2_session_set_dsl_ratio(vsession, arg); + break; + } + case VIDIOC_S_MVX_LONG_TERM_REF: { + ret = mvx_v4l2_session_set_long_term_ref(vsession, arg); + break; + } + case VIDIOC_S_MVX_DSL_MODE: { + ret = mvx_v4l2_session_set_dsl_mode(vsession, arg); + break; + } + case VIDIOC_S_MVX_MINI_FRAME_HEIGHT: { + ret = mvx_v4l2_session_set_mini_frame_height(vsession, arg); + break; + } + case VIDIOC_S_MVX_STATS_MODE: { + ret = mvx_v4l2_session_set_stats_mode(vsession, arg); + break; + } + case VIDIOC_S_MVX_CHR_CFG: { + ret = mvx_v4l2_session_set_chr_cfg(vsession, arg); + break; + } + case VIDIOC_S_MVX_HUFF_TABLE: { + ret = mvx_v4l2_session_set_huff_table(vsession, arg); + break; + } + case VIDIOC_S_MVX_SEAMLESS_TARGET: { + ret = mvx_v4l2_session_set_seamless_target(vsession, arg); + break; + } + case VIDIOC_S_MVX_COLOR_CONV_COEF: { + ret = mvx_v4l2_session_set_color_conv_coef(vsession, arg); + break; + } + case VIDIOC_S_MVX_RGB2YUV_COLOR_CONV_COEF: { + ret = mvx_v4l2_session_set_rgb_conv_yuv_coef(vsession, arg); + break; + } + case VIDIOC_S_MVX_ENC_SRC_CROP: { + ret = mvx_v4l2_session_set_enc_src_crop(vsession, arg); + break; + } + case VIDIOC_S_MVX_DEC_DST_CROP: { + ret = mvx_v4l2_session_set_dec_dst_crop(vsession, arg); + break; + } + case VIDIOC_S_MVX_OSD_CONFIG: { + ret = mvx_v4l2_session_set_osd_config(vsession, arg); + break; + } + case VIDIOC_S_MVX_OSD_INFO: { + struct v4l2_osd_info *osd_info = (struct v4l2_osd_info *)arg; + enum mvx_format osd_fmt[MVX_MAX_FRAME_OSD_REGION]; + int i; + struct mvx_format_map *osd_map; + + for (i = 0; i < MVX_MAX_FRAME_OSD_REGION; i++) { + osd_map = mvx_find_format(osd_info->inputFormat_osd[i]); + osd_fmt[i] = osd_map->format; + } + ret = mvx_v4l2_session_set_osd_info(vsession, arg, osd_fmt); + break; + } + default: + MVX_LOG_PRINT(&mvx_log_if, MVX_LOG_WARNING, + "Unsupported IOCTL. cmd=0x%x", cmd); + return -ENOTTY; + } + + return ret; +} diff --git a/drivers/media/platform/canaan/vpu/mvx_v4l2_vidioc.h b/drivers/media/platform/canaan/vpu/mvx_v4l2_vidioc.h new file mode 100644 index 0000000000000..d3063dba65a87 --- /dev/null +++ b/drivers/media/platform/canaan/vpu/mvx_v4l2_vidioc.h @@ -0,0 +1,110 @@ +/* SPDX-License-Identifier: GPL-2.0-only + * The confidential and proprietary information contained in this file may + * only be used by a person authorised under and to the extent permitted + * by a subsisting licensing agreement from Arm Technology (China) Co., Ltd. + * + * (C) COPYRIGHT 2021-2021 Arm Technology (China) Co., Ltd. + * ALL RIGHTS RESERVED + * + * This entire notice must be reproduced on all copies of this file + * and copies of this file may only be made by a person if such person is + * permitted to do so under the terms of a subsisting license agreement + * from Arm Technology (China) Co., Ltd. + * + * 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. + * + */ + +#ifndef _MVX_V4L2_VIDIOC_H_ +#define _MVX_V4L2_VIDIOC_H_ + +/**************************************************************************** + * Exported functions + * + * Callbacks for struct v4l2_ioctl_ops. + * + * Prototypes declared bellow implement certain v4l2 ioctls and used to + * initialize members of v4l2_ioctl_ops structure. + ****************************************************************************/ + +int mvx_v4l2_vidioc_querycap(struct file *file, void *fh, + struct v4l2_capability *cap); + +int mvx_v4l2_vidioc_enum_fmt_vid_cap(struct file *file, void *fh, + struct v4l2_fmtdesc *f); + +int mvx_v4l2_vidioc_enum_fmt_vid_out(struct file *file, void *fh, + struct v4l2_fmtdesc *f); + +int mvx_v4l2_vidioc_enum_framesizes(struct file *file, void *fh, + struct v4l2_frmsizeenum *fsize); + +int mvx_v4l2_vidioc_g_fmt_vid_cap(struct file *file, void *fh, + struct v4l2_format *f); + +int mvx_v4l2_vidioc_g_fmt_vid_out(struct file *file, void *fh, + struct v4l2_format *f); + +int mvx_v4l2_vidioc_s_fmt_vid_cap(struct file *file, void *fh, + struct v4l2_format *f); + +int mvx_v4l2_vidioc_s_fmt_vid_out(struct file *file, void *fh, + struct v4l2_format *f); + +int mvx_v4l2_vidioc_try_fmt_vid_cap(struct file *file, void *fh, + struct v4l2_format *f); + +int mvx_v4l2_vidioc_try_fmt_vid_out(struct file *file, void *fh, + struct v4l2_format *f); + +int mvx_v4l2_vidioc_g_crop(struct file *file, void *fh, struct v4l2_crop *a); + +int mvx_v4l2_vidioc_g_selection(struct file *file, void *fh, + struct v4l2_selection *a); + +int mvx_v4l2_vidioc_streamon(struct file *file, void *priv, + enum v4l2_buf_type type); + +int mvx_v4l2_vidioc_streamoff(struct file *file, void *priv, + enum v4l2_buf_type type); + +int mvx_v4l2_vidioc_encoder_cmd(struct file *file, void *priv, + struct v4l2_encoder_cmd *cmd); + +int mvx_v4l2_vidioc_try_encoder_cmd(struct file *file, void *priv, + struct v4l2_encoder_cmd *cmd); + +int mvx_v4l2_vidioc_decoder_cmd(struct file *file, void *priv, + struct v4l2_decoder_cmd *cmd); + +int mvx_v4l2_vidioc_try_decoder_cmd(struct file *file, void *priv, + struct v4l2_decoder_cmd *cmd); + +int mvx_v4l2_vidioc_reqbufs(struct file *file, void *fh, + struct v4l2_requestbuffers *b); + +int mvx_v4l2_vidioc_create_bufs(struct file *file, void *fh, + struct v4l2_create_buffers *b); + +int mvx_v4l2_vidioc_querybuf(struct file *file, void *fh, + struct v4l2_buffer *b); + +int mvx_v4l2_vidioc_qbuf(struct file *file, void *fh, struct v4l2_buffer *b); + +int mvx_v4l2_vidioc_dqbuf(struct file *file, void *fh, struct v4l2_buffer *b); + +int mvx_v4l2_vidioc_subscribe_event(struct v4l2_fh *fh, + const struct v4l2_event_subscription *sub); + +long mvx_v4l2_vidioc_default(struct file *file, void *fh, bool valid_prio, + unsigned int cmd, void *arg); + +#endif /* _MVX_V4L2_VIDIOC_H_ */