From 23685a022a8aa8230ccc24ff8f52285e47e89a20 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miloslav=20=C4=8C=C3=AD=C5=BE?= Date: Thu, 27 Sep 2018 10:30:52 +0200 Subject: [PATCH] Start switching to HSV --- convert_png.py | 43 +- demo1.cpp | 1611 ++++++++++++++++++++++++------------------------ demo3.cpp | 706 ++++++++++----------- general.hpp | 152 ++++- palette.png | Bin 0 -> 440 bytes 5 files changed, 1370 insertions(+), 1142 deletions(-) create mode 100644 palette.png diff --git a/convert_png.py b/convert_png.py index a0c743d..eccf8c3 100644 --- a/convert_png.py +++ b/convert_png.py @@ -6,12 +6,51 @@ import sys from PIL import Image +# old code, kept just in case :) + +""" def rgbToIndex(r, g, b): return (r & 0b00000111) | ((g & 0b00000111) << 3) | ((b & 0b00000011) << 6) +""" + +def encodeHSV(hue, saturation, value): + result = 0 + + if value > 15: + if saturation > 85: + result = ((saturation / 86 - 1) << 7) | ((hue / 32) << 4) | ((value - 16) / 15) + # "normal" color, as 0bSHHHVVVV, VVVV != 0 + else: + result = value / 16 + # saturation near 0 => gray, as 0bVVVV0000, VVVV != 0 + + return result & 0b11111111 + # value near 0 => black, as 0b00000000 + +def findClosest(pixel, palettePixels): + result = 0 + closestDist = 255 * 255 * 255 + + for i in range(256): + p = palettePixels[i % 16,i / 16] + d = abs(p[0] - pixel[0]) + abs(p[1] - pixel[1]) + abs(p[2] - pixel[2]) + + if d < closestDist: + result = i + closestDist = d + + if d == 0: + break + + return result image = Image.open(sys.argv[1]) +#image = image.convert("HSV") pixels = image.load() +pal = Image.open(sys.argv[2]) +palPixels = pal.load() + sys.stdout.write("const unsigned char image[] =\n{ ") sys.stdout.write(str(image.size[0]) + ", " + str(image.size[1]) + " // width, height") @@ -24,7 +63,9 @@ for x in range(image.size[0]): p = pixels[x,y] - sys.stdout.write(",0x{:02x}".format(rgbToIndex(p[0] / 32, p[1] / 32, p[2] / 85))) + #sys.stdout.write(",0x{:02x}".format(rgbToIndex(p[0] / 32, p[1] / 32, p[2] / 85))) + #sys.stdout.write(",0x{:02x}".format(encodeHSV(p[0],p[1],p[2]))) + sys.stdout.write(",0x{:02x}".format(findClosest(p,palPixels))) count += 1 diff --git a/demo1.cpp b/demo1.cpp index b10dd1c..de1794a 100644 --- a/demo1.cpp +++ b/demo1.cpp @@ -132,828 +132,828 @@ const signed char levelCeiling[] = const unsigned char texture1[] = { 32, 32 // width, height - ,0x12,0x65,0x65,0x6d,0x24,0x64,0x5b,0x12,0x12,0x64,0x5b,0x5b,0x12,0x51 - ,0x12,0x09,0x00,0x6d,0x6d,0x6d,0x24,0x5b,0x5b,0x52,0x12,0x5b,0x52,0x5b - ,0x12,0x5b,0x52,0x09,0x12,0x5b,0x5b,0x5b,0x52,0x5b,0x5b,0x52,0x00,0x64 - ,0x64,0x52,0x52,0x52,0x5b,0x00,0x09,0x6d,0x5b,0x5a,0x5b,0x5b,0x5a,0x51 - ,0x12,0x64,0x5b,0x52,0x5b,0x52,0x5b,0x08,0x12,0x24,0x5b,0x5b,0x5b,0x5b - ,0x09,0x11,0x00,0x64,0x5b,0x5b,0x5a,0x09,0x09,0x08,0x00,0x5b,0x5b,0x5b - ,0x5a,0x64,0x12,0x51,0x00,0x64,0x5b,0x52,0x52,0x11,0x09,0x09,0x12,0x24 - ,0x5b,0x5b,0x52,0x5a,0x12,0x09,0x00,0x5b,0x52,0x09,0x12,0x09,0x09,0x09 - ,0x00,0x24,0x5a,0x5a,0x5b,0x51,0x12,0x08,0x09,0x25,0x5b,0x52,0x5b,0x52 - ,0x11,0x09,0x12,0x64,0x5b,0x52,0x09,0x11,0x12,0x09,0x00,0x12,0x00,0x12 - ,0x00,0x00,0x00,0x08,0x09,0x64,0x5b,0x51,0x12,0x11,0x12,0x08,0x09,0x64 - ,0x5a,0x5b,0x12,0x12,0x09,0x09,0x12,0x65,0x5c,0x52,0x5a,0x5b,0x51,0x09 - ,0x00,0x64,0x6d,0x6d,0x5c,0x65,0x64,0x09,0x00,0x24,0x64,0x5b,0x09,0x12 - ,0x11,0x00,0x09,0x64,0x5b,0x52,0x52,0x12,0x12,0x08,0x00,0x64,0x52,0x52 - ,0x52,0x52,0x5b,0x09,0x00,0x6d,0x5b,0x5b,0x52,0x5b,0x51,0x09,0x00,0x1b - ,0x5b,0x12,0x12,0x12,0x12,0x09,0x12,0x5b,0x11,0x09,0x11,0x09,0x09,0x09 - ,0x09,0x5b,0x09,0x09,0x09,0x09,0x09,0x09,0x12,0x65,0x5b,0x5b,0x5b,0x52 - ,0x5b,0x09,0x00,0x64,0x12,0x63,0x5b,0x12,0x5b,0x09,0x00,0x00,0x00,0x00 - ,0x00,0x09,0x00,0x00,0x00,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x5b - ,0x64,0x5b,0x09,0x5b,0x52,0x09,0x09,0x5b,0x11,0x52,0x09,0x12,0x09,0x08 - ,0x00,0x1b,0x1b,0x23,0x1b,0x5a,0x5b,0x11,0x12,0x64,0x64,0x6d,0x24,0x5b - ,0x5b,0x09,0x00,0x5b,0x5a,0x52,0x52,0x09,0x08,0x09,0x12,0x5b,0x52,0x11 - ,0x5a,0x11,0x12,0x08,0x08,0x1b,0x52,0x52,0x5b,0x5a,0x09,0x09,0x12,0x64 - ,0x5b,0x64,0x12,0x12,0x12,0x08,0x00,0x00,0x00,0x12,0x09,0x00,0x09,0x00 - ,0x12,0x24,0x5a,0x52,0x12,0x12,0x12,0x08,0x12,0x1b,0x12,0x5a,0x49,0x5a - ,0x52,0x09,0x12,0x6d,0x5b,0x52,0x5a,0x12,0x09,0x09,0x12,0x65,0x64,0x6d - ,0x6d,0x64,0x64,0x5b,0x00,0x5a,0x08,0x08,0x09,0x09,0x08,0x09,0x00,0x5b - ,0x5a,0x11,0x51,0x51,0x5a,0x09,0x12,0x6d,0x5b,0x5b,0x12,0x11,0x12,0x09 - ,0x00,0x65,0x5b,0x64,0x5b,0x5b,0x5b,0x52,0x00,0x00,0x12,0x12,0x12,0x09 - ,0x00,0x00,0x00,0x5a,0x52,0x52,0x09,0x52,0x09,0x09,0x12,0x63,0x5b,0x5a - ,0x09,0x5b,0x11,0x08,0x00,0x65,0x5b,0x5b,0x52,0x5b,0x52,0x52,0x00,0x65 - ,0x6d,0x64,0x65,0x64,0x64,0x5b,0x00,0x5b,0x12,0x09,0x11,0x09,0x09,0x09 - ,0x09,0x5b,0x11,0x08,0x09,0x09,0x09,0x08,0x00,0x64,0x64,0x5b,0x5b,0x5b - ,0x5b,0x09,0x00,0x5b,0x5b,0x5b,0x5b,0x5b,0x52,0x52,0x00,0x64,0x51,0x52 - ,0x52,0x52,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x12,0x00,0x00,0x5b - ,0x5b,0x5b,0x52,0x52,0x5b,0x09,0x12,0x65,0x5b,0x5b,0x5b,0x52,0x5b,0x09 - ,0x00,0x63,0x5a,0x51,0x51,0x51,0x5a,0x08,0x12,0x24,0x64,0x65,0x24,0x64 - ,0x64,0x5b,0x00,0x5b,0x5b,0x52,0x5b,0x5b,0x52,0x09,0x00,0x64,0x5b,0x5b - ,0x12,0x52,0x5a,0x09,0x12,0x24,0x52,0x52,0x09,0x52,0x52,0x08,0x12,0x64 - ,0x64,0x5b,0x5b,0x5b,0x64,0x52,0x00,0x6d,0x5b,0x52,0x5b,0x52,0x52,0x08 - ,0x00,0x5b,0x5b,0x52,0x52,0x5b,0x52,0x09,0x00,0x1b,0x52,0x51,0x5a,0x52 - ,0x09,0x09,0x12,0x64,0x52,0x5c,0x5b,0x64,0x5b,0x51,0x09,0x6d,0x5b,0x52 - ,0x5b,0x52,0x11,0x09,0x00,0x64,0x5a,0x64,0x5b,0x52,0x5b,0x08,0x00,0x11 - ,0x09,0x49,0x08,0x09,0x00,0x09,0x00,0x64,0x64,0x5b,0x52,0x5b,0x5b,0x09 - ,0x12,0x65,0x64,0x5b,0x52,0x5b,0x52,0x09,0x12,0x64,0x64,0x64,0x52,0x09 - ,0x5c,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x12,0x64,0x5b,0x64 - ,0x52,0x5b,0x52,0x49,0x00,0x64,0x5b,0x52,0x52,0x5b,0x51,0x09,0x09,0x5b - ,0x09,0x09,0x09,0x08,0x09,0x12,0x00,0x6d,0x24,0x6d,0x24,0x64,0x64,0x5b - ,0x00,0x64,0x63,0x5b,0x5b,0x52,0x52,0x09,0x12,0x64,0x5b,0x5b,0x52,0x11 - ,0x5b,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x09,0x12,0x6d,0x64,0x5b - ,0x52,0x64,0x5b,0x52,0x12,0x6d,0x5b,0x5b,0x5b,0x5b,0x5b,0x09,0x00,0x64 - ,0x11,0x5a,0x52,0x5b,0x52,0x09,0x00,0x5b,0x5a,0x63,0x5a,0x23,0x12,0x00 - ,0x12,0x6d,0x5b,0x11,0x5b,0x64,0x64,0x52,0x12,0x63,0x5b,0x5b,0x5b,0x5b - ,0x52,0x08,0x00,0x5c,0x52,0x5b,0x5b,0x52,0x52,0x08,0x08,0x5b,0x52,0x51 - ,0x09,0x52,0x5a,0x09,0x00,0x6d,0x52,0x11,0x52,0x5b,0x52,0x09,0x12,0x64 - ,0x5a,0x5b,0x52,0x5b,0x5b,0x08,0x00,0x5b,0x52,0x09,0x09,0x09,0x09,0x09 - ,0x09,0x24,0x52,0x09,0x12,0x09,0x52,0x08,0x00,0x5b,0x5a,0x52,0x12,0x5b - ,0x5b,0x09,0x00,0x65,0x52,0x5b,0x5b,0x52,0x11,0x09,0x09,0x00,0x00,0x00 - ,0x00,0x12,0x00,0x08,0x00,0x5b,0x52,0x51,0x09,0x09,0x09,0x09,0x00,0x64 - ,0x5b,0x52,0x52,0x09,0x5b,0x09,0x12,0x6d,0x5b,0x5b,0x5b,0x5b,0x5a,0x11 - ,0x00,0x6d,0x6d,0x24,0x64,0x64,0x5b,0x5b,0x00,0x5a,0x12,0x52,0x12,0x09 - ,0x12,0x08,0x00,0x5b,0x12,0x09,0x09,0x09,0x08,0x09,0x00,0x64,0x5b,0x5b - ,0x52,0x5a,0x5b,0x09,0x12,0x6d,0x64,0x5a,0x5b,0x5b,0x5b,0x5b,0x00,0x5a - ,0x11,0x52,0x09,0x12,0x09,0x09,0x09,0x00,0x00,0x00,0x00,0x12,0x12,0x12 - ,0x12,0x64,0x52,0x5b,0x5b,0x5b,0x5b,0x09,0x12,0x6d,0x12,0x5b,0x12,0x52 - ,0x5b,0x52,0x09,0x5a,0x09,0x51,0x09,0x09,0x09,0x09,0x09,0x5c,0x64,0x6d - ,0x1b,0x24,0x64,0x08,0x12,0x64,0x5b,0x52,0x5b,0x5b,0x52,0x09,0x00,0x5b - ,0x5b,0x52,0x11,0x5b,0x12,0x09,0x08,0x5b,0x5a,0x09,0x51,0x52,0x12,0x08 - ,0x00,0x5b,0x5b,0x11,0x5b,0x5b,0x5b,0x08,0x09,0x5b,0x12,0x52,0x52,0x09 - ,0x09,0x09,0x00,0x6d,0x5b,0x52,0x52,0x12,0x12,0x09,0x08,0x11,0x00,0x49 - ,0x09,0x00,0x09,0x00,0x00,0x6d,0x12,0x5b,0x52,0x5b,0x52,0x09,0x00,0x00 - ,0x09,0x09,0x12,0x00,0x12,0x00,0x00,0x64,0x52,0x5b,0x52,0x5b,0x52,0x09 - ,0x09,0x00,0x00,0x00,0x00,0x09,0x00,0x00,0x00,0x64,0x52,0x5b,0x5b,0x52 - ,0x52,0x09 + ,0x14,0x1a,0x1a,0x1a,0x19,0x07,0x07,0x04,0x04,0x08,0x07,0x06,0x05,0x04 + ,0x05,0x54,0x61,0x19,0x1a,0x19,0x18,0x07,0x07,0x05,0x04,0x06,0x04,0x07 + ,0x05,0x07,0x05,0x53,0x04,0x07,0x06,0x06,0x05,0x07,0x06,0x06,0x61,0x07 + ,0x08,0x05,0x05,0x06,0x06,0x52,0x62,0x1a,0x06,0x06,0x07,0x06,0x06,0x44 + ,0x04,0x08,0x06,0x06,0x07,0x05,0x06,0x52,0x14,0x19,0x06,0x07,0x06,0x07 + ,0x64,0x04,0x52,0x08,0x07,0x07,0x06,0x55,0x54,0x53,0x02,0x07,0x07,0x06 + ,0x06,0x08,0x05,0x44,0x61,0x07,0x07,0x06,0x05,0x04,0x04,0x53,0x14,0x19 + ,0x06,0x06,0x04,0x06,0x05,0x54,0x52,0x06,0x05,0x54,0x04,0x53,0x53,0x53 + ,0x61,0x18,0x06,0x06,0x06,0x44,0x05,0x53,0x62,0x19,0x07,0x65,0x06,0x05 + ,0x04,0x53,0x14,0x08,0x06,0x04,0x04,0x04,0x05,0x53,0x61,0x04,0x61,0x04 + ,0x52,0x52,0x52,0x02,0x62,0x08,0x06,0x44,0x05,0x04,0x05,0x53,0x62,0x08 + ,0x06,0x07,0x05,0x05,0x04,0x02,0x04,0x1a,0x07,0x06,0x06,0x06,0x04,0x54 + ,0x61,0x08,0x09,0x1b,0x07,0x1a,0x08,0x53,0x61,0x17,0x07,0x06,0x04,0x05 + ,0x04,0x02,0x62,0x08,0x07,0x05,0x05,0x05,0x04,0x62,0x61,0x08,0x06,0x05 + ,0x05,0x05,0x06,0x54,0x61,0x1a,0x07,0x07,0x05,0x07,0x04,0x53,0x02,0x06 + ,0x06,0x05,0x05,0x05,0x04,0x54,0x04,0x06,0x04,0x03,0x04,0x53,0x53,0x53 + ,0x04,0x07,0x55,0x53,0x53,0x53,0x54,0x53,0x14,0x1a,0x07,0x07,0x07,0x05 + ,0x06,0x62,0x52,0x19,0x05,0x07,0x07,0x04,0x06,0x03,0x52,0x61,0x61,0x61 + ,0x61,0x62,0x61,0x52,0x52,0x62,0x61,0x61,0x61,0x61,0x61,0x61,0x02,0x07 + ,0x07,0x07,0x54,0x07,0x05,0x54,0x62,0x06,0x04,0x05,0x43,0x05,0x04,0x52 + ,0x02,0x17,0x28,0x17,0x17,0x06,0x07,0x44,0x04,0x08,0x08,0x19,0x18,0x06 + ,0x07,0x53,0x52,0x07,0x06,0x05,0x05,0x55,0x53,0x54,0x04,0x07,0x05,0x04 + ,0x05,0x04,0x05,0x02,0x02,0x17,0x05,0x05,0x06,0x06,0x54,0x54,0x04,0x09 + ,0x07,0x07,0x05,0x04,0x04,0x52,0x52,0x52,0x61,0x04,0x03,0x61,0x62,0x52 + ,0x04,0x18,0x05,0x05,0x05,0x05,0x05,0x02,0x14,0x07,0x04,0x06,0x54,0x06 + ,0x05,0x54,0x14,0x1b,0x07,0x05,0x06,0x05,0x43,0x04,0x14,0x19,0x07,0x1a + ,0x1b,0x07,0x07,0x07,0x61,0x06,0x53,0x53,0x42,0x53,0x02,0x53,0x61,0x06 + ,0x06,0x44,0x55,0x55,0x06,0x53,0x14,0x1b,0x06,0x06,0x05,0x04,0x05,0x04 + ,0x61,0x1a,0x06,0x07,0x07,0x06,0x06,0x05,0x61,0x61,0x14,0x04,0x04,0x62 + ,0x61,0x52,0x61,0x06,0x05,0x05,0x54,0x05,0x54,0x62,0x04,0x07,0x07,0x06 + ,0x04,0x06,0x44,0x52,0x61,0x1a,0x07,0x07,0x05,0x07,0x05,0x04,0x02,0x1a + ,0x1a,0x08,0x19,0x07,0x18,0x06,0x52,0x07,0x05,0x54,0x44,0x54,0x54,0x53 + ,0x04,0x06,0x44,0x42,0x43,0x53,0x53,0x02,0x61,0x19,0x07,0x07,0x07,0x06 + ,0x06,0x54,0x61,0x06,0x06,0x06,0x07,0x06,0x06,0x05,0x52,0x19,0x05,0x05 + ,0x05,0x05,0x54,0x52,0x61,0x61,0x61,0x52,0x52,0x52,0x04,0x61,0x52,0x07 + ,0x06,0x07,0x05,0x04,0x07,0x54,0x04,0x1a,0x07,0x07,0x06,0x04,0x06,0x04 + ,0x52,0x07,0x06,0x55,0x44,0x55,0x06,0x02,0x14,0x19,0x18,0x1a,0x19,0x08 + ,0x07,0x07,0x61,0x07,0x06,0x05,0x06,0x07,0x05,0x53,0x52,0x07,0x06,0x06 + ,0x05,0x05,0x06,0x53,0x14,0x29,0x05,0x05,0x04,0x05,0x05,0x02,0x14,0x19 + ,0x07,0x06,0x07,0x06,0x08,0x05,0x52,0x1b,0x07,0x05,0x07,0x05,0x05,0x52 + ,0x61,0x07,0x06,0x65,0x05,0x07,0x05,0x53,0x61,0x28,0x05,0x44,0x06,0x05 + ,0x54,0x53,0x14,0x19,0x06,0x07,0x06,0x07,0x06,0x04,0x03,0x1a,0x07,0x05 + ,0x06,0x05,0x04,0x53,0x52,0x08,0x06,0x08,0x06,0x05,0x06,0x62,0x52,0x43 + ,0x04,0x55,0x54,0x04,0x02,0x53,0x61,0x18,0x07,0x07,0x05,0x07,0x07,0x54 + ,0x14,0x19,0x19,0x07,0x05,0x06,0x05,0x54,0x04,0x07,0x08,0x08,0x05,0x55 + ,0x07,0x52,0x02,0x61,0x52,0x61,0x61,0x61,0x61,0x61,0x04,0x08,0x06,0x08 + ,0x06,0x07,0x05,0x54,0x61,0x08,0x06,0x05,0x06,0x06,0x04,0x53,0x04,0x06 + ,0x54,0x53,0x53,0x53,0x54,0x04,0x61,0x1a,0x19,0x1a,0x18,0x07,0x1a,0x06 + ,0x52,0x08,0x07,0x07,0x07,0x05,0x04,0x62,0x04,0x08,0x06,0x06,0x04,0x04 + ,0x06,0x53,0x52,0x61,0x61,0x61,0x61,0x61,0x61,0x62,0x14,0x1b,0x09,0x06 + ,0x06,0x08,0x07,0x05,0x14,0x1b,0x07,0x06,0x06,0x06,0x06,0x54,0x52,0x07 + ,0x04,0x06,0x06,0x06,0x06,0x54,0x61,0x07,0x06,0x29,0x06,0x18,0x05,0x52 + ,0x14,0x1b,0x07,0x04,0x06,0x09,0x08,0x05,0x04,0x07,0x07,0x07,0x06,0x06 + ,0x04,0x52,0x61,0x07,0x06,0x06,0x06,0x06,0x05,0x62,0x02,0x07,0x05,0x05 + ,0x54,0x05,0x06,0x53,0x02,0x1b,0x04,0x04,0x04,0x06,0x05,0x54,0x04,0x08 + ,0x06,0x07,0x05,0x06,0x06,0x62,0x52,0x07,0x04,0x54,0x55,0x55,0x54,0x53 + ,0x62,0x29,0x05,0x54,0x04,0x54,0x05,0x02,0x52,0x07,0x06,0x65,0x05,0x07 + ,0x06,0x53,0x52,0x09,0x06,0x07,0x06,0x05,0x04,0x53,0x04,0x61,0x52,0x02 + ,0x61,0x04,0x61,0x02,0x61,0x07,0x05,0x55,0x54,0x54,0x54,0x53,0x52,0x07 + ,0x06,0x05,0x04,0x55,0x06,0x62,0x14,0x1b,0x07,0x06,0x07,0x06,0x06,0x04 + ,0x52,0x1b,0x1a,0x19,0x19,0x08,0x07,0x06,0x52,0x06,0x05,0x05,0x05,0x54 + ,0x05,0x02,0x52,0x07,0x04,0x53,0x62,0x54,0x62,0x54,0x61,0x08,0x07,0x07 + ,0x05,0x06,0x07,0x53,0x14,0x1a,0x08,0x06,0x06,0x06,0x07,0x06,0x02,0x06 + ,0x04,0x05,0x54,0x05,0x54,0x53,0x62,0x61,0x61,0x61,0x61,0x14,0x14,0x04 + ,0x04,0x08,0x05,0x07,0x06,0x06,0x07,0x54,0x04,0x1a,0x05,0x07,0x05,0x05 + ,0x06,0x05,0x03,0x05,0x54,0x44,0x04,0x54,0x43,0x04,0x62,0x07,0x08,0x1a + ,0x06,0x19,0x07,0x53,0x04,0x08,0x07,0x05,0x07,0x06,0x05,0x54,0x52,0x07 + ,0x06,0x05,0x04,0x06,0x05,0x62,0x02,0x06,0x06,0x54,0x44,0x05,0x05,0x02 + ,0x61,0x07,0x07,0x04,0x06,0x06,0x07,0x53,0x04,0x06,0x04,0x05,0x05,0x54 + ,0x53,0x54,0x61,0x1c,0x06,0x05,0x05,0x05,0x05,0x53,0x02,0x44,0x52,0x54 + ,0x54,0x61,0x62,0x52,0x61,0x1b,0x05,0x06,0x05,0x07,0x04,0x53,0x02,0x52 + ,0x04,0x03,0x14,0x52,0x04,0x52,0x61,0x09,0x06,0x06,0x05,0x06,0x05,0x53 + ,0x62,0x61,0x52,0x61,0x52,0x62,0x61,0x61,0x52,0x08,0x05,0x07,0x06,0x04 + ,0x05,0x54 }; const unsigned char texture2[] = { 32, 32 // width, height - ,0x65,0x1d,0x01,0x1c,0x12,0x0a,0x01,0x13,0x14,0x6e,0x2e,0x0b,0x1c,0x1d - ,0x2e,0x1d,0x13,0x0b,0x13,0x65,0x1d,0x1d,0x13,0x66,0x6f,0x6e,0x65,0x6f - ,0x77,0x7f,0x6f,0x6f,0x1d,0x14,0x13,0x6e,0x6e,0x66,0x6f,0x77,0x77,0x6f - ,0x66,0x66,0x13,0x25,0x0a,0x01,0x6e,0x66,0x01,0x12,0x02,0x01,0x1b,0x6e - ,0x77,0x77,0x77,0x77,0x77,0x6f,0x6f,0x6e,0x1c,0x1d,0x1c,0x77,0x67,0x6f - ,0x6f,0x77,0x67,0x77,0x77,0x66,0x13,0x0a,0x14,0x77,0x66,0x6f,0x77,0x66 - ,0x1b,0x13,0x66,0x77,0x6f,0x77,0x6f,0x6f,0x6f,0x26,0x6e,0x1d,0x25,0x14 - ,0x13,0x6e,0x6f,0x6f,0x77,0x6f,0x77,0x77,0x77,0x1d,0x1d,0x01,0x25,0x67 - ,0x7f,0x6f,0x6f,0x66,0x66,0x14,0x66,0x6f,0x7f,0x6f,0x77,0x6f,0x1d,0x25 - ,0x1d,0x66,0x1d,0x65,0x14,0x2e,0x26,0x77,0x6d,0x67,0x6f,0x25,0x6f,0x5e - ,0x5d,0x0b,0x5d,0x6f,0x6f,0x26,0x1d,0x77,0x66,0x1c,0x13,0x6f,0x6f,0x6f - ,0x66,0x67,0x66,0x65,0x6e,0x1c,0x1b,0x0a,0x01,0x1d,0x65,0x1e,0x6f,0x6e - ,0x67,0x66,0x66,0x65,0x14,0x1c,0x25,0x65,0x6e,0x66,0x66,0x6e,0x66,0x1c - ,0x02,0x1d,0x77,0x6e,0x77,0x66,0x25,0x13,0x5c,0x1d,0x0a,0x14,0x0b,0x14 - ,0x6e,0x65,0x1d,0x66,0x1d,0x66,0x1d,0x66,0x14,0x25,0x14,0x6e,0x66,0x25 - ,0x66,0x5d,0x66,0x25,0x0a,0x6e,0x6f,0x6f,0x6e,0x1d,0x13,0x65,0x5c,0x01 - ,0x0a,0x15,0x1d,0x0a,0x01,0x5d,0x6e,0x5c,0x25,0x1d,0x1e,0x26,0x1d,0x1b - ,0x14,0x25,0x25,0x1d,0x14,0x1d,0x14,0x13,0x01,0x25,0x6e,0x25,0x25,0x25 - ,0x1d,0x1c,0x01,0x0a,0x14,0x14,0x5d,0x14,0x14,0x0a,0x1d,0x5d,0x1c,0x6e - ,0x1d,0x65,0x5d,0x1d,0x0a,0x01,0x14,0x1c,0x25,0x0a,0x01,0x12,0x1c,0x0b - ,0x01,0x1c,0x14,0x25,0x0b,0x1b,0x25,0x14,0x25,0x02,0x1d,0x25,0x1d,0x09 - ,0x13,0x1c,0x1d,0x66,0x1d,0x1c,0x0b,0x14,0x0b,0x65,0x2d,0x09,0x0a,0x09 - ,0x14,0x66,0x6f,0x66,0x66,0x1c,0x0a,0x01,0x0b,0x14,0x66,0x1c,0x1d,0x1c - ,0x66,0x66,0x65,0x6e,0x1c,0x09,0x1c,0x1d,0x14,0x1c,0x0b,0x01,0x1d,0x6e - ,0x77,0x66,0x1c,0x1c,0x6e,0x6f,0x6f,0x77,0x7f,0x77,0x5e,0x6e,0x6f,0x67 - ,0x6f,0x6f,0x0a,0x0a,0x66,0x67,0x66,0x25,0x13,0x1c,0x24,0x14,0x25,0x1c - ,0x0b,0x1d,0x6e,0x77,0x7f,0x77,0x5e,0x1c,0x65,0x6f,0x7f,0x6e,0x6f,0x77 - ,0x6f,0x67,0x6f,0x6f,0x66,0x25,0x14,0x6f,0x6f,0x77,0x6f,0x67,0x6e,0x13 - ,0x0a,0x09,0x13,0x12,0x1d,0x66,0x6f,0x66,0x5e,0x6e,0x66,0x25,0x14,0x25 - ,0x26,0x25,0x6f,0x1d,0x77,0x6f,0x66,0x6e,0x66,0x1c,0x12,0x6f,0x6f,0x67 - ,0x77,0x1d,0x77,0x13,0x66,0x77,0x6f,0x6f,0x6f,0x77,0x6f,0x66,0x77,0x77 - ,0x6f,0x6e,0x13,0x25,0x26,0x25,0x66,0x65,0x66,0x66,0x6e,0x66,0x6e,0x14 - ,0x09,0x66,0x6f,0x6e,0x2f,0x6e,0x26,0x1c,0x6f,0x66,0x6f,0x7f,0x6f,0x7f - ,0x6f,0x6f,0x6e,0x6e,0x66,0x6f,0x13,0x13,0x1d,0x66,0x1d,0x25,0x66,0x65 - ,0x6e,0x1d,0x1d,0x0a,0x14,0x6f,0x77,0x77,0x2e,0x25,0x1c,0x0a,0x65,0x6f - ,0x6f,0x6f,0x7f,0x6f,0x77,0x77,0x66,0x6f,0x6e,0x6e,0x25,0x14,0x01,0x0a - ,0x09,0x0a,0x0b,0x14,0x1d,0x0a,0x14,0x13,0x66,0x6f,0x6f,0x25,0x1c,0x5d - ,0x65,0x01,0x66,0x1e,0x6f,0x6f,0x6f,0x77,0x6f,0x6f,0x6e,0x6f,0x66,0x1d - ,0x1d,0x0a,0x66,0x6f,0x66,0x2e,0x6e,0x6e,0x14,0x13,0x12,0x14,0x6f,0x6f - ,0x6e,0x6e,0x25,0x0a,0x13,0x12,0x6e,0x6f,0x66,0x6f,0x66,0x65,0x66,0x6f - ,0x66,0x25,0x66,0x25,0x0a,0x01,0x6e,0x77,0x77,0x6f,0x6f,0x6e,0x6e,0x14 - ,0x1d,0x6e,0x1b,0x25,0x1d,0x1c,0x1d,0x14,0x01,0x25,0x25,0x66,0x6e,0x6f - ,0x1d,0x6f,0x66,0x1d,0x1d,0x1d,0x6e,0x1d,0x0b,0x6e,0x6f,0x77,0x7f,0x6f - ,0x77,0x77,0x66,0x66,0x13,0x5d,0x13,0x0a,0x01,0x1c,0x13,0x0a,0x6e,0x09 - ,0x1d,0x65,0x25,0x66,0x66,0x6e,0x65,0x25,0x65,0x6e,0x1d,0x65,0x13,0x65 - ,0x6f,0x77,0x67,0x7f,0x6f,0x77,0x6f,0x6e,0x14,0x1c,0x1c,0x6e,0x77,0x6e - ,0x77,0x6f,0x25,0x0a,0x1c,0x1d,0x1d,0x66,0x1d,0x6e,0x15,0x26,0x25,0x5e - ,0x25,0x13,0x1d,0x77,0x77,0x66,0x66,0x6e,0x6f,0x77,0x7f,0x6e,0x12,0x13 - ,0x66,0x77,0x6f,0x77,0x6f,0x77,0x26,0x6f,0x0b,0x25,0x1c,0x25,0x25,0x25 - ,0x66,0x1d,0x1b,0x25,0x0a,0x1d,0x6e,0x67,0x67,0x6f,0x66,0x1d,0x65,0x6e - ,0x67,0x6f,0x6e,0x13,0x77,0x7f,0x67,0x77,0x77,0x77,0x6f,0x6e,0x5d,0x13 - ,0x14,0x1d,0x1c,0x1d,0x1d,0x14,0x1d,0x0a,0x09,0x1c,0x66,0x77,0x66,0x67 - ,0x6e,0x1c,0x65,0x66,0x66,0x6d,0x1c,0x09,0x6e,0x67,0x6f,0x7f,0x6f,0x77 - ,0x6f,0x6e,0x66,0x0a,0x01,0x13,0x1d,0x14,0x65,0x14,0x02,0x01,0x1d,0x1c - ,0x13,0x66,0x2e,0x66,0x77,0x6e,0x1e,0x25,0x25,0x6e,0x0a,0x13,0x6e,0x67 - ,0x26,0x67,0x6f,0x77,0x67,0x6f,0x1d,0x6e,0x14,0x0a,0x01,0x13,0x01,0x25 - ,0x66,0x77,0x66,0x65,0x1c,0x0b,0x66,0x25,0x66,0x66,0x25,0x6e,0x66,0x1d - ,0x14,0x0a,0x1d,0x66,0x66,0x66,0x6f,0x6e,0x6f,0x6f,0x5d,0x1d,0x0a,0x25 - ,0x26,0x6f,0x6f,0x6f,0x7f,0x6f,0x6f,0x6f,0x77,0x0a,0x09,0x1d,0x6f,0x6e - ,0x15,0x25,0x1c,0x1d,0x1d,0x13,0x25,0x66,0x1c,0x6e,0x66,0x26,0x66,0x66 - ,0x25,0x1c,0x0a,0x66,0x6f,0x7f,0x6f,0x6f,0x6f,0x66,0x6f,0x77,0x6e,0x66 - ,0x0a,0x1b,0x26,0x1d,0x5e,0x1d,0x65,0x13,0x0a,0x1d,0x66,0x6e,0x25,0x6e - ,0x1d,0x1d,0x6e,0x25,0x13,0x1d,0x14,0x5e,0x77,0x27,0x7f,0x77,0x7f,0x67 - ,0x66,0x67,0x1d,0x1d,0x13,0x09,0x76,0x66,0x24,0x1c,0x1b,0x13,0x13,0x1d - ,0x25,0x25,0x5e,0x1d,0x6e,0x25,0x1c,0x25,0x66,0x1d,0x09,0x1d,0x77,0x6f - ,0x66,0x6f,0x66,0x66,0x66,0x6e,0x65,0x66,0x65,0x1c,0x1d,0x1d,0x65,0x14 - ,0x1c,0x25,0x0a,0x0a,0x0a,0x25,0x1d,0x66,0x14,0x25,0x66,0x6e,0x1d,0x25 - ,0x09,0x1c,0x66,0x77,0x6f,0x66,0x7f,0x77,0x1d,0x6e,0x1c,0x1d,0x1d,0x0a - ,0x25,0x66,0x1d,0x25,0x13,0x0a,0x1d,0x14,0x1e,0x13,0x1d,0x14,0x65,0x66 - ,0x66,0x25,0x1d,0x14,0x0a,0x14,0x15,0x65,0x7f,0x77,0x66,0x25,0x1d,0x1d - ,0x1d,0x6e,0x1c,0x14,0x13,0x65,0x1d,0x1c,0x0a,0x0a,0x65,0x1d,0x25,0x0a - ,0x1c,0x1d,0x1c,0x25,0x1d,0x1c,0x14,0x01,0x1b,0x0a,0x1d,0x65,0x6f,0x1d - ,0x66,0x65,0x6e,0x66,0x1d,0x14,0x0a,0x0a,0x1b,0x12,0x1c,0x0a,0x14,0x6e - ,0x66,0x25 + ,0x19,0x18,0x92,0x16,0x95,0x94,0x81,0x95,0x97,0x1b,0x1b,0x95,0x18,0x18 + ,0x1b,0x17,0x96,0x95,0x15,0x1a,0x18,0x19,0x96,0x1c,0x1e,0x1b,0x1a,0x1d + ,0x1e,0x1f,0x1c,0x1d,0x18,0x15,0x95,0x1b,0x1b,0x1a,0x1f,0x1e,0x1d,0x1c + ,0x1a,0x1b,0x14,0x19,0x94,0x91,0x1c,0x1b,0x91,0x95,0x83,0x92,0x16,0x1b + ,0x1e,0x1f,0x1e,0x1f,0x1d,0x1b,0x1c,0x1b,0x17,0x19,0x17,0x1d,0x1d,0x1d + ,0x1d,0x1e,0x1c,0x1f,0x1f,0x1a,0x15,0x94,0x14,0x1e,0x1b,0x1d,0x1f,0x1c + ,0x16,0x16,0x1b,0x1e,0x1c,0x1f,0x1c,0x1f,0x1d,0x19,0x1b,0x18,0x19,0x15 + ,0x95,0x1b,0x1c,0x1e,0x1f,0x1f,0x1f,0x1e,0x1f,0x18,0x18,0x92,0x1a,0x1d + ,0x1f,0x1d,0x1d,0x1b,0x1c,0x15,0x1a,0x1c,0x1f,0x1b,0x1e,0x1d,0x18,0x19 + ,0x18,0x1b,0x18,0x19,0x96,0x1b,0x1a,0x1e,0x1b,0x1c,0x1c,0x19,0x1d,0x1a + ,0x19,0x95,0x1a,0x1f,0x1c,0x1b,0x17,0x1e,0x1a,0x18,0x95,0x1d,0x1d,0x1c + ,0x1a,0x1b,0x1b,0x19,0x1c,0x16,0x16,0x93,0x92,0x19,0x19,0x18,0x1d,0x1c + ,0x1d,0x1b,0x1b,0x1a,0x15,0x16,0x19,0x1a,0x1c,0x1b,0x1b,0x1b,0x1b,0x16 + ,0x93,0x99,0x1e,0x1b,0x1f,0x1a,0x19,0x15,0x18,0x18,0x94,0x97,0x94,0x16 + ,0x1c,0x1a,0x18,0x1a,0x17,0x1b,0x17,0x1b,0x15,0x19,0x16,0x1b,0x1b,0x19 + ,0x1b,0x19,0x1a,0x19,0x13,0x1c,0x1c,0x1e,0x1c,0x19,0x15,0x1a,0x18,0x82 + ,0x94,0x99,0x17,0x94,0x91,0x19,0x1c,0x18,0x19,0x18,0x18,0x1b,0x16,0x97 + ,0x97,0x18,0x1a,0x18,0x15,0x18,0x15,0x96,0x82,0x19,0x1b,0x19,0x19,0x18 + ,0x17,0x17,0x82,0x94,0x16,0x15,0x19,0x16,0x14,0x13,0x18,0x19,0x17,0x1c + ,0x18,0x19,0x19,0x19,0x94,0x82,0x16,0x16,0x19,0x94,0x91,0x95,0x16,0x14 + ,0x83,0x18,0x16,0x19,0x95,0x17,0x19,0x16,0x19,0x84,0x19,0x19,0x17,0x93 + ,0x15,0x17,0x18,0x1b,0x19,0x17,0x14,0x16,0x95,0x1a,0x1a,0x92,0x94,0x92 + ,0x16,0x1b,0x1d,0x1a,0x1b,0x16,0x93,0x92,0x13,0x16,0x1a,0x18,0x17,0x18 + ,0x1b,0x1a,0x19,0x1c,0x16,0x92,0x17,0x18,0x16,0x18,0x95,0x92,0x18,0x1b + ,0x1f,0x1a,0x17,0x16,0x1c,0x1c,0x1d,0x1e,0x1f,0x1d,0x1a,0x1b,0x1c,0x1c + ,0x1d,0x1c,0x94,0x94,0x1b,0x1b,0x1b,0x19,0x14,0x17,0x18,0x15,0x19,0x17 + ,0x95,0x19,0x1b,0x1e,0x1f,0x1e,0x1a,0x17,0x1a,0x1d,0x1f,0x1b,0x1d,0x1f + ,0x1b,0x1c,0x1e,0x1c,0x1c,0x18,0x16,0x1d,0x1c,0x1f,0x1f,0x1d,0x1b,0x96 + ,0x94,0x92,0x95,0x95,0x18,0x1b,0x1c,0x1b,0x1a,0x1c,0x1c,0x19,0x15,0x1a + ,0x1a,0x1a,0x1b,0x19,0x1f,0x1c,0x1b,0x1c,0x1b,0x16,0x95,0x1f,0x1d,0x1d + ,0x1f,0x18,0x1d,0x16,0x1a,0x1f,0x1e,0x1d,0x1e,0x1f,0x1d,0x1b,0x1d,0x1e + ,0x1c,0x1c,0x14,0x18,0x19,0x1a,0x1b,0x1a,0x1b,0x1b,0x1c,0x1a,0x1b,0x17 + ,0x92,0x1b,0x1d,0x1b,0x1b,0x1b,0x1a,0x17,0x1d,0x1b,0x1d,0x1f,0x1b,0x1f + ,0x1c,0x1e,0x1c,0x1c,0x1b,0x1f,0x15,0x16,0x18,0x1a,0x18,0x19,0x1b,0x19 + ,0x1c,0x98,0x18,0x94,0x16,0x1e,0x1d,0x1d,0x1b,0x18,0x16,0x94,0x1a,0x1c + ,0x1d,0x1d,0x1f,0x1e,0x1f,0x1f,0x1b,0x1e,0x1b,0x1b,0x19,0x97,0x92,0x93 + ,0x92,0x94,0x95,0x16,0x18,0x94,0x16,0x95,0x1b,0x1e,0x1d,0x19,0x17,0x19 + ,0x19,0x92,0x1b,0x19,0x1c,0x1c,0x1d,0x1f,0x1d,0x1e,0x1b,0x1d,0x1b,0x18 + ,0x18,0x94,0x1a,0x1c,0x1b,0x1b,0x1b,0x1c,0x16,0x15,0x14,0x16,0x1c,0x1d + ,0x1b,0x1b,0x19,0x93,0x97,0x14,0x1b,0x1d,0x1a,0x1c,0x1b,0x1a,0x1c,0x1c + ,0x1a,0x19,0x1b,0x19,0x94,0x92,0x1b,0x1e,0x1e,0x1e,0x1c,0x1c,0x1b,0x16 + ,0x19,0x1b,0x16,0x19,0x18,0x16,0x18,0x15,0x92,0x19,0x19,0x1b,0x1c,0x1e + ,0x17,0x1b,0x1b,0x18,0x18,0x18,0x1b,0x18,0x14,0x1b,0x1e,0x1d,0x1f,0x1c + ,0x1f,0x1f,0x1c,0x1a,0x16,0x1a,0x14,0x94,0x83,0x16,0x15,0x94,0x1b,0x92 + ,0x17,0x19,0x19,0x1a,0x1b,0x1b,0x1a,0x19,0x19,0x1b,0x18,0x1a,0x15,0x1a + ,0x1d,0x1f,0x1b,0x1f,0x1c,0x1e,0x1c,0x1b,0x15,0x18,0x16,0x1b,0x1f,0x1b + ,0x1f,0x1c,0x1a,0x94,0x16,0x18,0x19,0x1b,0x17,0x1b,0x16,0x19,0x19,0x1a + ,0x19,0x96,0x18,0x1e,0x1f,0x1b,0x1b,0x1b,0x1d,0x1f,0x1f,0x1b,0x14,0x96 + ,0x1a,0x1d,0x1d,0x1d,0x1c,0x1f,0x19,0x1e,0x13,0x19,0x16,0x19,0x19,0x19 + ,0x1a,0x17,0x16,0x19,0x94,0x17,0x1c,0x1b,0x1c,0x1e,0x1b,0x18,0x1a,0x1b + ,0x1c,0x1e,0x1c,0x14,0x1f,0x1f,0x1d,0x1d,0x1f,0x1f,0x1c,0x1b,0x19,0x15 + ,0x16,0x18,0x17,0x18,0x17,0x16,0x17,0x14,0x92,0x17,0x1b,0x1d,0x1c,0x1c + ,0x1c,0x17,0x1a,0x1b,0x1b,0x1a,0x17,0x92,0x1b,0x1d,0x1d,0x1f,0x1d,0x1e + ,0x1e,0x1c,0x1a,0x94,0x92,0x15,0x17,0x15,0x19,0x15,0x84,0x92,0x18,0x98 + ,0x95,0x1a,0x1b,0x1b,0x1e,0x1b,0x19,0x19,0x19,0x1c,0x94,0x15,0x1b,0x1c + ,0x19,0x1c,0x1d,0x1d,0x1d,0x1d,0x18,0x1b,0x16,0x94,0x91,0x95,0x92,0x19 + ,0x1b,0x1e,0x1a,0x1a,0x16,0x87,0x1b,0x19,0x1a,0x1a,0x19,0x1b,0x1b,0x16 + ,0x16,0x94,0x18,0x1a,0x1a,0x1b,0x1d,0x1c,0x1c,0x1c,0x19,0x18,0x94,0x19 + ,0x19,0x1d,0x1e,0x1e,0x1f,0x1d,0x1f,0x1f,0x1f,0x94,0x93,0x18,0x1c,0x1c + ,0x18,0x19,0x16,0x19,0x19,0x95,0x19,0x1a,0x18,0x1b,0x1b,0x19,0x1a,0x1a + ,0x19,0x17,0x13,0x1a,0x1d,0x1f,0x1c,0x1e,0x1c,0x1b,0x1e,0x1f,0x1c,0x1b + ,0x13,0x16,0x1a,0x18,0x1a,0x18,0x1a,0x16,0x94,0x18,0x1a,0x1b,0x1a,0x1b + ,0x17,0x19,0x1c,0x19,0x15,0x18,0x16,0x1a,0x1d,0x1a,0x1f,0x1d,0x1f,0x1c + ,0x1a,0x1b,0x19,0x17,0x14,0x92,0x1d,0x1b,0x18,0x17,0x16,0x14,0x16,0x19 + ,0x19,0x19,0x1a,0x18,0x1b,0x1a,0x18,0x19,0x1a,0x18,0x92,0x18,0x1e,0x1d + ,0x1b,0x1d,0x1a,0x1a,0x1b,0x1b,0x1a,0x1c,0x19,0x17,0x18,0x17,0x1b,0x97 + ,0x16,0x19,0x94,0x94,0x94,0x19,0x16,0x1b,0x17,0x19,0x1b,0x1c,0x19,0x19 + ,0x92,0x18,0x1b,0x1f,0x1c,0x1a,0x1f,0x1e,0x17,0x1c,0x18,0x17,0x17,0x13 + ,0x19,0x1b,0x18,0x19,0x14,0x14,0x18,0x97,0x19,0x14,0x18,0x15,0x19,0x1b + ,0x1b,0x19,0x18,0x15,0x93,0x16,0x16,0x1a,0x1f,0x1e,0x1b,0x19,0x18,0x18 + ,0x18,0x1c,0x17,0x16,0x15,0x19,0x18,0x17,0x13,0x94,0x1a,0x18,0x19,0x13 + ,0x98,0x17,0x17,0x19,0x18,0x16,0x97,0x92,0x17,0x94,0x18,0x1a,0x1d,0x18 + ,0x1b,0x19,0x1b,0x1a,0x17,0x16,0x94,0x13,0x16,0x95,0x17,0x14,0x14,0x1b + ,0x1a,0x19 }; const unsigned char texture3[] = { 32, 32 // width, height - ,0xb6,0x3d,0x33,0x33,0x3e,0x33,0x2a,0x29,0x2a,0x7b,0x7b,0x58,0x29,0x29 - ,0x2a,0x29,0x10,0x10,0x10,0x49,0x58,0x99,0x50,0x50,0x10,0x4b,0x54,0x54 - ,0x55,0x55,0x4a,0x49,0x29,0x3d,0x3d,0x7c,0x3d,0x33,0x34,0x3d,0x7b,0x7b - ,0x7b,0x58,0x20,0x61,0x28,0x28,0x58,0x50,0x10,0x49,0x10,0x99,0x51,0x51 - ,0x33,0x10,0x53,0x66,0x67,0x15,0x54,0x4b,0x7f,0x33,0x7f,0x3d,0x3e,0x3d - ,0x33,0x08,0x7b,0x7b,0x58,0x58,0x08,0x7b,0x28,0x28,0x08,0x08,0x50,0x08 - ,0x08,0x51,0x51,0x51,0x33,0x33,0x10,0x55,0x5e,0x67,0x26,0x66,0x29,0x7f - ,0x3e,0x7b,0x7b,0x28,0x58,0x08,0x7b,0x7b,0x58,0x58,0x7b,0x7b,0x28,0x28 - ,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x51,0x52,0x37,0x37,0x10,0x10,0x5d - ,0x53,0x55,0x6c,0x3e,0x3d,0x7b,0x7b,0x7b,0x58,0x08,0x7b,0x7b,0x28,0x7b - ,0x7b,0x7b,0x08,0x08,0x08,0x58,0x58,0x08,0x58,0x58,0x58,0x99,0x49,0x37 - ,0x37,0x33,0x33,0x10,0x10,0x49,0x7f,0x7f,0x33,0x7b,0x28,0x7b,0x08,0x58 - ,0x28,0x7b,0x58,0x58,0x58,0x7b,0x58,0x08,0x08,0x58,0x58,0x58,0x58,0x58 - ,0x08,0x99,0x49,0x00,0x33,0x10,0x10,0x10,0x10,0x13,0x3d,0x7f,0x28,0x7b - ,0x28,0x28,0x58,0x58,0x7b,0x7b,0x7b,0x28,0x7b,0x7b,0x58,0x08,0x08,0x08 - ,0x58,0x08,0x08,0x08,0x08,0x99,0x00,0x00,0x10,0x10,0x33,0x33,0x13,0x09 - ,0x3d,0x7f,0x28,0x7b,0x7b,0x28,0x28,0x7b,0x7b,0x7b,0x7b,0x28,0x7b,0x7b - ,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x58,0x58,0x58,0x58,0x08,0x10,0x00 - ,0x00,0x10,0x65,0x09,0x3d,0xb6,0x58,0x28,0x7b,0x28,0x28,0x7b,0x7b,0x7b - ,0x28,0x28,0x7b,0x7b,0x08,0x08,0x58,0x58,0x7b,0x08,0x08,0x08,0x58,0x58 - ,0x58,0x08,0x00,0x00,0x00,0x00,0x65,0x09,0x3d,0x2a,0x08,0x58,0x28,0x28 - ,0x28,0x7b,0x7b,0x28,0x28,0x7b,0x7b,0x08,0x08,0x08,0x58,0x28,0x28,0x58 - ,0x08,0x58,0x58,0x58,0x08,0x00,0x00,0x00,0x10,0x10,0x13,0x09,0xb6,0x7b - ,0x08,0x08,0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x08,0x08,0x08 - ,0x58,0x28,0x28,0x58,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x10,0x10,0x65 - ,0x13,0x09,0x7b,0x7b,0x08,0x58,0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x7b - ,0x7b,0x08,0x08,0x58,0x58,0x58,0x28,0x08,0x08,0x08,0x08,0x08,0x08,0x00 - ,0x00,0x00,0x65,0x65,0x13,0x09,0x7b,0x7b,0x7b,0x28,0x28,0x7b,0x7b,0x58 - ,0x58,0x28,0x7b,0x7b,0x7b,0x28,0x08,0x08,0x58,0x58,0x28,0x08,0x08,0x08 - ,0x08,0x08,0x08,0x08,0x53,0x4a,0x65,0x13,0x09,0x13,0x7b,0x7b,0x28,0x28 - ,0x28,0x28,0x7b,0x7b,0x58,0x58,0x7b,0x7b,0x28,0x28,0x08,0x08,0x08,0x08 - ,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x09,0x65,0x13,0x13,0x65,0x13 - ,0x07,0x7b,0x58,0x58,0x28,0x7b,0x7b,0x7b,0x58,0x58,0x58,0x28,0x28,0x28 - ,0x08,0x08,0x08,0x08,0x08,0x08,0x58,0x58,0x28,0x28,0x08,0x08,0x09,0x13 - ,0x13,0x65,0x65,0x13,0x7b,0x7b,0x7b,0x58,0x58,0x28,0x7b,0x7b,0x58,0x58 - ,0x58,0x58,0x58,0x58,0x08,0x08,0x08,0x08,0x08,0x08,0x58,0x58,0x58,0x28 - ,0x28,0x28,0x08,0x09,0x09,0x09,0x09,0x65,0x08,0x7b,0x7b,0x58,0x58,0x28 - ,0x28,0x28,0x58,0x58,0x58,0x58,0x28,0x7b,0x28,0x58,0x08,0x08,0x08,0x08 - ,0x08,0x58,0x28,0x28,0x28,0x28,0x28,0x09,0x13,0x65,0x65,0x65,0x58,0x7b - ,0x7b,0x7b,0x58,0x28,0x28,0x58,0x58,0x58,0x58,0x58,0x28,0x28,0x7b,0x58 - ,0x08,0x08,0x08,0x08,0x08,0x08,0x58,0x28,0x28,0x28,0x09,0x09,0x13,0x13 - ,0x13,0x09,0x58,0x7b,0x7b,0x28,0x28,0x28,0x28,0x58,0x58,0x58,0x58,0x58 - ,0x28,0x7b,0x7b,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x58,0x58,0x08,0x08 - ,0x09,0x09,0x09,0x09,0x09,0x09,0x29,0x28,0x28,0x28,0x28,0x28,0x7b,0x58 - ,0x58,0x58,0x58,0x28,0x7b,0x28,0x08,0x08,0x08,0x08,0x28,0x28,0x08,0x58 - ,0x58,0x28,0x08,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x6c,0x28,0x58,0x28 - ,0x28,0x28,0x7b,0x7b,0x28,0x28,0x58,0x7b,0x7b,0x7b,0x08,0x08,0x58,0x58 - ,0x28,0x58,0x58,0x58,0x28,0x28,0x28,0x08,0x08,0x13,0x09,0x09,0x09,0x09 - ,0xb6,0xb6,0x08,0x28,0x28,0x28,0x28,0x7b,0x7b,0x28,0x58,0x28,0x7b,0x7b - ,0x28,0x08,0x08,0x58,0x7b,0x08,0x58,0x58,0x28,0x28,0x28,0x08,0x08,0x00 - ,0x13,0x09,0x09,0x09,0xb6,0x29,0x58,0x28,0x28,0x7b,0x7b,0x7b,0x7b,0x28 - ,0x58,0x58,0x28,0x28,0x28,0x08,0x08,0x08,0x28,0x08,0x08,0x58,0x58,0x58 - ,0x08,0x08,0x10,0x10,0x33,0x13,0x09,0x09,0x3d,0x6c,0x28,0x7b,0x28,0x7b - ,0x28,0x7b,0x7b,0x58,0x08,0x08,0x08,0x08,0x28,0x08,0x08,0x08,0x58,0x08 - ,0x08,0x08,0x58,0x08,0x08,0x00,0x00,0x10,0x10,0x13,0x13,0x09,0x7f,0xb6 - ,0x28,0x7b,0x7b,0x7b,0x08,0x08,0x08,0x08,0x58,0x58,0x08,0x08,0x08,0x08 - ,0x58,0x58,0x58,0x58,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x33 - ,0x13,0x09,0x3d,0x2a,0x08,0x08,0x7b,0x7b,0x28,0x08,0x08,0x08,0x08,0x58 - ,0x58,0x08,0x08,0x58,0x58,0x58,0x58,0x58,0x08,0x08,0x08,0x08,0x08,0x08 - ,0x00,0x00,0x00,0x10,0x13,0x09,0x7f,0x3d,0x33,0x08,0x28,0x28,0x28,0x08 - ,0x08,0x08,0x58,0x58,0x58,0x08,0x58,0x58,0x58,0x58,0x08,0x08,0x08,0x08 - ,0x08,0x08,0x00,0x00,0x00,0x00,0x10,0x10,0x13,0x09,0x29,0x3e,0x3d,0x3d - ,0x28,0x28,0x28,0x08,0x58,0x08,0x08,0x08,0x08,0x28,0x58,0x58,0x28,0x28 - ,0x08,0x58,0x08,0x08,0x08,0x08,0x08,0x00,0x10,0x10,0x10,0x10,0x53,0x09 - ,0x29,0x33,0x7e,0x33,0x08,0x28,0x28,0x08,0x28,0x28,0x08,0x58,0x28,0x28 - ,0x58,0x58,0x28,0x28,0x28,0x58,0x08,0x08,0x08,0x08,0x08,0x4b,0x53,0x53 - ,0x4a,0x15,0x56,0x54,0x2d,0x7c,0x3e,0x3d,0x08,0x08,0x58,0x58,0x28,0x28 - ,0x08,0x28,0x28,0x28,0x58,0x58,0x58,0x08,0x08,0x08,0x08,0x08,0x10,0x49 - ,0x49,0x4a,0x4b,0x53,0x56,0x54,0x4b,0x54,0x6c,0x33,0x3d,0x3d,0x3d,0x08 - ,0x58,0x08,0x28,0x28,0x08,0x08,0x28,0x28,0x08,0x08,0x08,0x08,0x08,0x08 - ,0x08,0x08,0x51,0x4a,0x4b,0x4b,0x54,0x66,0x67,0x56,0x2e,0x5e,0xb6,0x3d - ,0x33,0x7f,0x29,0x3d,0x2a,0x28,0x28,0x58,0x58,0x08,0x18,0x18,0x08,0x08 - ,0x08,0x08,0x08,0x50,0x59,0x51,0x51,0x51,0x51,0x54,0x15,0x66,0x5e,0x15 - ,0x56,0x54 + ,0x0c,0x2d,0xac,0xac,0x1c,0xac,0x3a,0xb9,0x3a,0x3c,0x3c,0xc5,0xb9,0xb9 + ,0x3a,0xb9,0xc3,0xc3,0xc3,0x54,0x46,0x5b,0x45,0x45,0xc3,0x75,0x78,0x77 + ,0x7a,0x79,0x65,0x54,0xb9,0x2d,0x2d,0x2d,0x2d,0xac,0x2c,0x2d,0x3c,0x3c + ,0x3c,0xc5,0xb7,0x38,0xba,0xba,0xc5,0x45,0xc4,0x54,0xc3,0x5b,0x57,0x59 + ,0xac,0xc3,0x77,0x1a,0x1c,0x7a,0x78,0x77,0x1f,0xac,0x1f,0x2d,0x1c,0x2d + ,0xac,0x43,0x3c,0x3c,0xc5,0xc5,0x43,0x3c,0xba,0xba,0x43,0x43,0x45,0x43 + ,0x43,0x57,0x59,0x59,0xac,0xac,0xc3,0x79,0x7b,0x1c,0x19,0x1a,0xb9,0x1f + ,0x1c,0x3c,0x3c,0xba,0xc5,0x43,0x3c,0x3c,0xc5,0xc5,0x3c,0x3c,0xba,0xba + ,0x43,0x43,0x43,0x43,0x43,0x43,0x43,0x57,0x58,0x1e,0x1e,0xc3,0xc3,0x7a + ,0x77,0x79,0x08,0x1c,0x2d,0x3c,0x3c,0x3c,0xc5,0x43,0x3c,0x3c,0xba,0x3c + ,0x3c,0x3c,0x43,0x43,0x43,0xc5,0xc5,0x43,0xc5,0xc5,0xc5,0x5a,0x54,0x1e + ,0x1e,0xac,0xac,0xc3,0xc3,0x54,0x1f,0x1f,0xac,0x3c,0xba,0x3c,0x43,0xc5 + ,0xba,0x3c,0xc5,0xc5,0xc5,0x3c,0xc5,0x43,0x43,0xc5,0xc5,0xc5,0xc5,0xc5 + ,0x43,0x5a,0x54,0x50,0xac,0xc3,0xc3,0xc3,0xc3,0x16,0x2d,0x1f,0xba,0x3c + ,0xba,0xba,0xc5,0xc5,0x3c,0x3c,0x3c,0xba,0x3c,0x3c,0xc5,0x43,0x43,0x43 + ,0xc5,0x43,0x43,0x43,0x43,0x5b,0x50,0x50,0xc3,0xc3,0xac,0xac,0x16,0x73 + ,0x2d,0x1f,0xba,0x3c,0x3c,0xba,0xba,0x3c,0x3c,0x3c,0x3c,0xba,0x3c,0x3c + ,0x43,0x43,0x43,0x43,0x43,0x43,0x43,0xc5,0xc5,0xc5,0xc5,0x43,0xc3,0x50 + ,0x50,0xc3,0x1a,0x73,0x2d,0x0c,0xc5,0xba,0x3c,0xba,0xba,0x3c,0x3c,0x3c + ,0xba,0xba,0x3c,0x3c,0x43,0x43,0xc5,0xc5,0x3c,0x43,0x43,0x43,0xc5,0xc5 + ,0xc5,0x43,0x50,0x50,0x50,0x50,0x1a,0x73,0x2d,0x3a,0x43,0xc5,0xba,0xba + ,0xba,0x3c,0x3c,0xba,0xba,0x3c,0x3c,0x43,0x43,0x43,0xc5,0xba,0xba,0xc5 + ,0x43,0xc5,0xc5,0xc5,0x43,0x50,0x50,0x50,0xc3,0xc3,0x16,0x73,0x0c,0x3c + ,0x43,0x43,0xba,0xba,0xba,0xba,0xba,0xba,0xba,0xba,0xba,0x43,0x43,0x43 + ,0xc5,0xba,0xba,0xc5,0x43,0x43,0x43,0x43,0x43,0x50,0x50,0xc3,0xc3,0x1a + ,0x16,0x73,0x3c,0x3c,0x43,0xc5,0xba,0xba,0xba,0xba,0xba,0xba,0xba,0x3c + ,0x3c,0x43,0x43,0xc5,0xc5,0xc5,0xba,0x43,0x43,0x43,0x43,0x43,0x43,0x50 + ,0x50,0x50,0x1a,0x1a,0x16,0x73,0x3c,0x3c,0x3c,0xba,0xba,0x3c,0x3c,0xc5 + ,0xc5,0xba,0x3c,0x3c,0x3c,0xba,0x43,0x43,0xc5,0xc5,0xba,0x43,0x43,0x43 + ,0x43,0x43,0x43,0x43,0x77,0x66,0x1a,0x16,0x73,0x16,0x3c,0x3c,0xba,0xba + ,0xba,0xba,0x3c,0x3c,0xc5,0xc5,0x3c,0x3c,0xba,0xba,0x43,0x43,0x43,0x43 + ,0x43,0x43,0x43,0x43,0x43,0x43,0x43,0x43,0x73,0x1a,0x16,0x16,0x1a,0x16 + ,0x8f,0x3c,0xc5,0xc5,0xba,0x3c,0x3c,0x3c,0xc5,0xc5,0xc5,0xba,0xba,0xba + ,0x43,0x43,0x43,0x43,0x43,0x43,0xc5,0xc5,0xba,0xba,0x43,0x43,0x73,0x16 + ,0x16,0x1a,0x1a,0x16,0x3c,0x3c,0x3c,0xc5,0xc5,0xba,0x3c,0x3c,0xc5,0xc5 + ,0xc5,0xc5,0xc5,0xc5,0x43,0x43,0x43,0x43,0x43,0x43,0xc5,0xc5,0xc5,0xba + ,0xba,0xba,0x43,0x73,0x73,0x73,0x73,0x1a,0x43,0x3c,0x3c,0xc5,0xc5,0xba + ,0xba,0xba,0xc5,0xc5,0xc5,0xc5,0xba,0x3c,0xba,0xc5,0x43,0x43,0x43,0x43 + ,0x43,0xc5,0xba,0xba,0xba,0xba,0xba,0x73,0x16,0x1a,0x1a,0x1a,0xc5,0x3c + ,0x3c,0x3c,0xc5,0xba,0xba,0xc5,0xc5,0xc5,0xc5,0xc5,0xba,0xba,0x3c,0xc5 + ,0x43,0x43,0x43,0x43,0x43,0x43,0xc5,0xba,0xba,0xba,0x73,0x73,0x16,0x16 + ,0x16,0x73,0xc5,0x3c,0x3c,0xba,0xba,0xba,0xba,0xc5,0xc5,0xc5,0xc5,0xc5 + ,0xba,0x3c,0x3c,0x43,0x43,0x43,0x43,0x43,0x43,0x43,0xc5,0xc5,0x43,0x43 + ,0x73,0x73,0x73,0x73,0x73,0x73,0xb9,0xba,0xba,0xba,0xba,0xba,0x3c,0xc5 + ,0xc5,0xc5,0xc5,0xba,0x3c,0xba,0x43,0x43,0x43,0x43,0xba,0xba,0x43,0xc5 + ,0xc5,0xba,0x43,0x73,0x73,0x73,0x73,0x73,0x73,0x73,0x08,0xba,0xc5,0xba + ,0xba,0xba,0x3c,0x3c,0xba,0xba,0xc5,0x3c,0x3c,0x3c,0x43,0x43,0xc5,0xc5 + ,0xba,0xc5,0xc5,0xc5,0xba,0xba,0xba,0x43,0x43,0x16,0x73,0x73,0x73,0x73 + ,0x0c,0x0c,0x43,0xba,0xba,0xba,0xba,0x3c,0x3c,0xba,0xc5,0xba,0x3c,0x3c + ,0xba,0x43,0x43,0xc5,0x3c,0x43,0xc5,0xc5,0xba,0xba,0xba,0x43,0x43,0x50 + ,0x16,0x73,0x73,0x73,0x0c,0xb9,0xc5,0xba,0xba,0x3c,0x3c,0x3c,0x3c,0xba + ,0xc5,0xc5,0xba,0xba,0xba,0x43,0x43,0x43,0xba,0x43,0x43,0xc5,0xc5,0xc5 + ,0x43,0x43,0xc3,0xc3,0xac,0x16,0x73,0x73,0x2d,0x08,0xba,0x3c,0xba,0x3c + ,0xba,0x3c,0x3c,0xc5,0x43,0x43,0x43,0x43,0xba,0x43,0x43,0x43,0xc5,0x43 + ,0x43,0x43,0xc5,0x43,0x43,0x50,0x50,0xc3,0xc3,0x16,0x16,0x73,0x1f,0x0c + ,0xba,0x3c,0x3c,0x3c,0x43,0x43,0x43,0x43,0xc5,0xc5,0x43,0x43,0x43,0x43 + ,0xc5,0xc5,0xc5,0xc5,0x43,0x43,0x43,0x43,0x43,0x43,0x50,0x50,0x50,0xac + ,0x16,0x73,0x2d,0x3a,0x43,0x43,0x3c,0x3c,0xba,0x43,0x43,0x43,0x43,0xc5 + ,0xc5,0x43,0x43,0xc5,0xc5,0xc5,0xc5,0xc5,0x43,0x43,0x43,0x43,0x43,0x43 + ,0x50,0x50,0x50,0xc3,0x16,0x73,0x1f,0x2d,0xac,0x43,0xba,0xba,0xba,0x43 + ,0x43,0x43,0xc5,0xc5,0xc5,0x43,0xc5,0xc5,0xc5,0xc5,0x43,0x43,0x43,0x43 + ,0x43,0x43,0x50,0x50,0x50,0x50,0xc3,0xc3,0x16,0x73,0xb9,0x1c,0x2d,0x2d + ,0xba,0xba,0xba,0x43,0xc5,0x43,0x43,0x43,0x43,0xba,0xc5,0xc5,0xba,0xba + ,0x43,0xc5,0x43,0x43,0x43,0x43,0x43,0x50,0xc3,0xc3,0xc3,0xc3,0x77,0x73 + ,0xb9,0xac,0x2f,0xac,0x43,0xba,0xba,0x43,0xba,0xba,0x43,0xc5,0xba,0xba + ,0xc5,0xc5,0xba,0xba,0xba,0xc5,0x43,0x43,0x43,0x43,0x43,0x77,0x77,0x77 + ,0x66,0x7a,0x1a,0x77,0x1b,0x2d,0x1c,0x2d,0x43,0x43,0xc5,0xc5,0xba,0xba + ,0x43,0xba,0xba,0xba,0xc5,0xc5,0xc5,0x43,0x43,0x43,0x43,0x43,0xc3,0x54 + ,0x54,0x65,0x77,0x77,0x1a,0x77,0x77,0x78,0x08,0xac,0x2d,0x2d,0x2d,0x43 + ,0xc5,0x43,0xba,0xba,0x43,0x43,0xba,0xba,0x43,0x43,0x43,0x43,0x43,0x43 + ,0x43,0x43,0x59,0x57,0x75,0x77,0x78,0x1a,0x1c,0x1a,0x1b,0x7b,0x0c,0x2d + ,0xac,0x1f,0xb9,0x2d,0x3a,0xba,0xba,0xc5,0xc5,0x43,0x37,0x37,0x43,0x43 + ,0x43,0x43,0x43,0x45,0x59,0x57,0x56,0x59,0x59,0x78,0x79,0x1a,0x7b,0x7a + ,0x1a,0x77 }; const unsigned char texture4[] = { 32, 32 // width, height - ,0x12,0x1c,0x65,0x65,0x65,0x65,0x1c,0x1c,0x1c,0x1c,0x1c,0x1b,0x1b,0x1b - ,0x13,0x00,0x5b,0x5b,0xad,0xad,0xad,0xad,0x5b,0x00,0x64,0xad,0xad,0x64 - ,0x64,0x64,0x5b,0x00,0x1c,0x1b,0x1b,0x1b,0x13,0x13,0x12,0x13,0x12,0x12 - ,0x12,0x12,0x0a,0x0a,0x09,0x00,0x5b,0x5b,0xad,0xad,0xad,0x64,0x5b,0x00 - ,0xad,0x64,0x64,0x64,0x64,0x64,0x5b,0x00,0x65,0x1b,0x1b,0x13,0x13,0x12 - ,0x0a,0x0a,0x12,0x0a,0x0a,0x0a,0x0a,0x09,0x09,0x00,0x5b,0x5b,0xad,0xad - ,0xad,0x64,0x5b,0x00,0xad,0x64,0x64,0x64,0x64,0x64,0x5b,0x00,0x65,0x1b - ,0x13,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x09,0x0a,0x09,0x00 - ,0x5b,0x5b,0xad,0xad,0x64,0x64,0x5b,0x00,0x64,0x64,0x64,0x64,0x64,0x64 - ,0x12,0x00,0x65,0x13,0x12,0x00,0x09,0x09,0x0a,0x09,0x09,0x09,0x09,0x09 - ,0x13,0x0a,0x09,0x00,0x5b,0x5b,0xad,0x64,0x64,0x5b,0x5b,0x00,0x64,0x64 - ,0x64,0x64,0x64,0x64,0x5b,0x00,0x65,0x13,0x12,0x00,0x09,0x0a,0x12,0x12 - ,0x0a,0x12,0x12,0x0a,0x1b,0x0a,0x09,0x00,0x5b,0x5b,0x64,0x64,0x5b,0x64 - ,0x5b,0x00,0x64,0x64,0x64,0x64,0x64,0x64,0x5b,0x00,0x65,0x12,0x13,0x00 - ,0x09,0x12,0x0a,0x0a,0x12,0x0a,0x0a,0x0a,0x1c,0x09,0x0a,0x00,0x5b,0x5b - ,0x64,0x64,0x64,0x64,0x5b,0x00,0x5b,0x5b,0x5b,0x12,0x5b,0x12,0x5b,0x00 - ,0x65,0x13,0x12,0x00,0x09,0x12,0x0a,0x0a,0x0a,0x09,0x0a,0x09,0x1c,0x0a - ,0x0a,0x00,0x5b,0x5b,0xad,0x64,0x5b,0x64,0x5b,0x00,0x00,0x00,0x00,0x00 - ,0x00,0x00,0x00,0x00,0x1c,0x12,0x0a,0x00,0x09,0x12,0x0a,0x0a,0x09,0x0a - ,0x09,0x09,0x1c,0x0a,0x0a,0x00,0x52,0x52,0x64,0x64,0x64,0x5b,0x5b,0x00 - ,0xad,0xad,0xad,0xad,0xad,0xad,0x5b,0x00,0x1c,0x12,0x0a,0x00,0x09,0x0a - ,0x0a,0x0a,0x09,0x09,0x09,0x09,0x65,0x0a,0x09,0x00,0x5b,0x52,0x64,0x64 - ,0x5b,0x64,0x5b,0x00,0xad,0xad,0xad,0xad,0xad,0x64,0x5b,0x00,0x1b,0x0a - ,0x12,0x00,0x09,0x0a,0x09,0x09,0x0a,0x0a,0x09,0x09,0x65,0x09,0x09,0x00 - ,0x5b,0x5b,0x5b,0x64,0x5b,0x5b,0x5b,0x00,0xad,0xad,0xad,0xad,0xad,0x64 - ,0x5b,0x00,0x1b,0x12,0x0a,0x00,0x09,0x0a,0x0a,0x09,0x0a,0x09,0x09,0x0a - ,0x1c,0x09,0x09,0x00,0x52,0x12,0x64,0x64,0x64,0x5b,0x5b,0x00,0xad,0xad - ,0xad,0xad,0x64,0x64,0x5b,0x00,0x1b,0x0a,0x09,0x09,0x13,0x1b,0x1c,0x1c - ,0x65,0x65,0x1c,0x1c,0x1b,0x09,0x09,0x00,0x5b,0x52,0x64,0x64,0x64,0x5b - ,0x12,0x00,0xad,0xad,0xad,0x64,0x64,0x5b,0x5b,0x00,0x1b,0x0a,0x09,0x0a - ,0x09,0x09,0x09,0x0a,0x09,0x0a,0x09,0x09,0x09,0x09,0x09,0x00,0x12,0x12 - ,0x5b,0x5b,0x5b,0x5b,0x5b,0x00,0xad,0xad,0x64,0x64,0x5b,0x5b,0x12,0x00 - ,0x13,0x09,0x09,0x09,0x09,0x09,0x0a,0x0a,0x09,0x09,0x09,0x09,0x09,0x09 - ,0x09,0x00,0x09,0x09,0x5b,0x12,0x12,0x12,0x12,0x00,0xad,0xad,0x64,0x64 - ,0x64,0x64,0x5b,0x00,0x0a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 - ,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 - ,0xad,0x64,0x64,0x5b,0x5b,0x5b,0x12,0x00,0x12,0x1c,0x65,0x65,0x65,0x65 - ,0x1c,0x1c,0x1c,0x1c,0x1c,0x1b,0x1b,0x1b,0x13,0x00,0x5b,0x5b,0xad,0x64 - ,0xad,0xad,0x5b,0x00,0x64,0x64,0x64,0x5b,0x5b,0x64,0x5b,0x00,0x1c,0x1b - ,0x1b,0x1b,0x1b,0x13,0x12,0x13,0x12,0x12,0x12,0x12,0x0a,0x0a,0x09,0x00 - ,0x5b,0x5b,0xad,0xad,0xad,0x64,0x5b,0x00,0xad,0x64,0x5b,0x5b,0x5b,0x5b - ,0x5b,0x00,0x65,0x1b,0x1b,0x13,0x13,0x12,0x0a,0x0a,0x12,0x0a,0x0a,0x0a - ,0x0a,0x09,0x09,0x00,0x5b,0x5b,0xad,0x64,0x64,0x64,0x5b,0x00,0x64,0x64 - ,0x64,0x64,0x5b,0x5b,0x5b,0x00,0x65,0x13,0x1b,0x00,0x00,0x00,0x00,0x00 - ,0x00,0x00,0x00,0x00,0x09,0x0a,0x09,0x00,0x5b,0x5b,0x64,0x64,0x64,0x64 - ,0x5b,0x00,0x64,0x64,0x64,0x64,0x5b,0x64,0x5b,0x00,0x65,0x1b,0x13,0x00 - ,0x09,0x09,0x0a,0x09,0x09,0x09,0x09,0x09,0x1b,0x0a,0x09,0x00,0x5b,0x5b - ,0xad,0x64,0x5b,0x64,0x5b,0x00,0x64,0x64,0x64,0x64,0x5b,0x5b,0x5b,0x00 - ,0x65,0x13,0x12,0x00,0x09,0x0a,0x12,0x12,0x0a,0x12,0x12,0x12,0x1b,0x0a - ,0x09,0x00,0x5b,0x52,0x64,0x64,0x5b,0x5b,0x5b,0x00,0x64,0x64,0x64,0x64 - ,0x5b,0x5b,0x12,0x00,0x65,0x12,0x13,0x00,0x09,0x12,0x0a,0x0a,0x0a,0x0a - ,0x0a,0x0a,0x1c,0x09,0x0a,0x00,0x5b,0x5b,0x64,0x64,0x5b,0x64,0x5b,0x00 - ,0x5b,0x5b,0x5b,0x5b,0x5b,0x12,0x5b,0x00,0x65,0x13,0x12,0x00,0x09,0x12 - ,0x0a,0x0a,0x0a,0x09,0x0a,0x09,0x1c,0x0a,0x0a,0x00,0x5b,0x52,0x64,0x5b - ,0x64,0x5b,0x5b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1c,0x12 - ,0x0a,0x00,0x09,0x12,0x0a,0x0a,0x09,0x0a,0x09,0x09,0x1c,0x0a,0x0a,0x00 - ,0x52,0x5b,0x64,0x64,0x5b,0x5b,0x5b,0x00,0xad,0xad,0xad,0xad,0xad,0xad - ,0x5b,0x00,0x1c,0x12,0x0a,0x00,0x09,0x0a,0x0a,0x0a,0x09,0x09,0x09,0x09 - ,0x65,0x0a,0x09,0x00,0x5b,0x52,0x64,0x64,0x5b,0x5b,0x5b,0x00,0xad,0xad - ,0xad,0xad,0xad,0x64,0x5b,0x00,0x1b,0x0a,0x12,0x00,0x09,0x0a,0x09,0x09 - ,0x0a,0x0a,0x09,0x09,0x65,0x09,0x09,0x00,0x52,0x12,0x64,0x5b,0x5b,0x5b - ,0x5b,0x00,0xad,0xad,0xad,0xad,0xad,0x64,0x5b,0x00,0x1b,0x12,0x0a,0x00 - ,0x09,0x0a,0x0a,0x09,0x0a,0x09,0x09,0x0a,0x1c,0x09,0x09,0x00,0x52,0x52 - ,0x5b,0x5b,0x5b,0x64,0x5b,0x00,0xad,0xad,0xad,0xad,0x64,0x64,0x5b,0x00 - ,0x1b,0x0a,0x09,0x09,0x13,0x1b,0x1c,0x1c,0x65,0x65,0x1c,0x1c,0x1b,0x09 - ,0x09,0x00,0x12,0x12,0x5b,0x5b,0x5b,0x5b,0x5b,0x00,0xad,0xad,0xad,0xad - ,0xad,0x64,0x5b,0x00,0x1b,0x0a,0x09,0x0a,0x0a,0x09,0x09,0x09,0x09,0x09 - ,0x09,0x09,0x09,0x09,0x09,0x00,0x12,0x12,0x5b,0x5b,0x5b,0x5b,0x12,0x00 - ,0xad,0xad,0xad,0x64,0xad,0x64,0x5b,0x00,0x13,0x09,0x0a,0x09,0x09,0x09 - ,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x00,0x09,0x12,0x5b,0x5b - ,0x5b,0x12,0x5b,0x00,0xad,0xad,0x64,0x64,0xad,0x64,0x5b,0x00,0x0a,0x00 - ,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 - ,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xad,0x64,0xad,0x64,0xad,0x64 - ,0x12,0x00 + ,0x14,0x17,0x09,0x09,0x09,0x09,0x17,0x17,0x17,0x17,0x17,0x16,0x16,0x16 + ,0x15,0x10,0x06,0x07,0x0b,0x0b,0x0a,0x0a,0x07,0x71,0x09,0x0b,0x0b,0x09 + ,0x08,0x09,0x07,0x21,0x17,0x16,0x16,0x16,0x15,0x15,0x14,0x15,0x14,0x14 + ,0x14,0x14,0x13,0x13,0x12,0x00,0x06,0x07,0x0a,0x0a,0x0b,0x09,0x06,0x10 + ,0x0b,0x09,0x09,0x08,0x08,0x08,0x07,0x21,0x09,0x16,0x16,0x15,0x15,0x14 + ,0x13,0x13,0x14,0x13,0x13,0x13,0x13,0x12,0x12,0x10,0x07,0x06,0x0a,0x0b + ,0x0a,0x09,0x07,0x20,0x0b,0x09,0x08,0x09,0x08,0x09,0x06,0x20,0x09,0x16 + ,0x15,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x11,0x11,0x11,0x13,0x12,0x10 + ,0x06,0x07,0x0b,0x0a,0x09,0x09,0x06,0x20,0x09,0x09,0x09,0x08,0x08,0x09 + ,0x05,0x20,0x09,0x15,0x14,0x10,0x12,0x12,0x13,0x12,0x12,0x12,0x12,0x12 + ,0x15,0x13,0x12,0x10,0x07,0x06,0x0a,0x09,0x08,0x07,0x06,0x21,0x09,0x08 + ,0x09,0x09,0x09,0x08,0x06,0x20,0x09,0x15,0x14,0x10,0x12,0x13,0x14,0x14 + ,0x13,0x14,0x14,0x13,0x16,0x13,0x12,0x00,0x07,0x06,0x09,0x08,0x07,0x09 + ,0x07,0x70,0x09,0x09,0x09,0x08,0x08,0x08,0x07,0x20,0x09,0x14,0x15,0x10 + ,0x12,0x14,0x13,0x13,0x14,0x13,0x13,0x13,0x17,0x12,0x13,0x00,0x07,0x06 + ,0x09,0x08,0x08,0x08,0x06,0x70,0x07,0x07,0x06,0x05,0x06,0x05,0x06,0x21 + ,0x09,0x15,0x14,0x10,0x12,0x14,0x13,0x13,0x13,0x12,0x13,0x12,0x17,0x13 + ,0x13,0x10,0x06,0x06,0x0a,0x09,0x07,0x08,0x06,0x21,0x20,0x21,0x21,0x21 + ,0x10,0x20,0x21,0x21,0x17,0x14,0x13,0x11,0x12,0x14,0x13,0x13,0x12,0x13 + ,0x12,0x12,0x17,0x13,0x13,0x00,0x05,0x05,0x09,0x09,0x08,0x07,0x07,0x21 + ,0x0a,0x0b,0x0a,0x0b,0x0b,0x0a,0x07,0x20,0x17,0x14,0x13,0x11,0x12,0x13 + ,0x13,0x13,0x12,0x12,0x12,0x12,0x09,0x13,0x12,0x10,0x06,0x05,0x08,0x08 + ,0x07,0x08,0x06,0x20,0x0b,0x0a,0x0b,0x0a,0x0a,0x09,0x06,0x20,0x16,0x13 + ,0x14,0x11,0x12,0x13,0x12,0x12,0x13,0x13,0x12,0x12,0x09,0x12,0x11,0x00 + ,0x06,0x06,0x07,0x09,0x07,0x07,0x06,0x21,0x0b,0x0b,0x0a,0x0b,0x0a,0x09 + ,0x07,0x20,0x16,0x14,0x13,0x11,0x12,0x13,0x13,0x12,0x13,0x12,0x12,0x13 + ,0x17,0x12,0x11,0x10,0x05,0x05,0x08,0x09,0x08,0x07,0x07,0x20,0x0a,0x0b + ,0x0b,0x0a,0x09,0x08,0x07,0x21,0x16,0x13,0x12,0x11,0x15,0x16,0x17,0x17 + ,0x09,0x09,0x17,0x17,0x16,0x12,0x11,0x10,0x06,0x05,0x09,0x08,0x08,0x07 + ,0x05,0x10,0x0b,0x0a,0x0a,0x09,0x09,0x07,0x06,0x20,0x16,0x13,0x12,0x13 + ,0x12,0x12,0x12,0x13,0x12,0x13,0x12,0x12,0x12,0x11,0x11,0x00,0x05,0x05 + ,0x07,0x07,0x07,0x07,0x06,0x20,0x0a,0x0b,0x09,0x08,0x07,0x07,0x05,0x20 + ,0x15,0x12,0x12,0x12,0x12,0x12,0x13,0x13,0x12,0x12,0x11,0x11,0x11,0x11 + ,0x11,0x10,0x04,0x03,0x06,0x05,0x05,0x05,0x05,0x21,0x0b,0x0a,0x08,0x09 + ,0x08,0x08,0x06,0x20,0x13,0x11,0x11,0x11,0x11,0x11,0x11,0x10,0x10,0x10 + ,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x20,0x20,0x20,0x21,0x20,0x21 + ,0x0a,0x09,0x09,0x07,0x07,0x07,0x05,0x20,0x14,0x17,0x09,0x09,0x09,0x09 + ,0x17,0x17,0x17,0x17,0x17,0x16,0x16,0x16,0x15,0x10,0x06,0x06,0x0a,0x09 + ,0x0a,0x0a,0x07,0x10,0x09,0x09,0x08,0x07,0x07,0x08,0x07,0x21,0x17,0x16 + ,0x16,0x16,0x16,0x15,0x14,0x15,0x14,0x14,0x14,0x14,0x13,0x13,0x12,0x00 + ,0x06,0x06,0x0a,0x0a,0x0a,0x09,0x06,0x21,0x0a,0x08,0x07,0x07,0x07,0x07 + ,0x07,0x20,0x09,0x16,0x16,0x15,0x15,0x14,0x13,0x13,0x14,0x13,0x13,0x13 + ,0x13,0x12,0x12,0x10,0x06,0x06,0x0a,0x09,0x09,0x08,0x07,0x20,0x08,0x09 + ,0x08,0x08,0x07,0x07,0x07,0x21,0x09,0x15,0x16,0x10,0x10,0x10,0x10,0x10 + ,0x10,0x10,0x11,0x11,0x11,0x13,0x12,0x10,0x06,0x06,0x09,0x09,0x08,0x09 + ,0x06,0x20,0x09,0x09,0x09,0x08,0x07,0x08,0x07,0x20,0x09,0x16,0x15,0x10 + ,0x12,0x12,0x13,0x12,0x12,0x12,0x12,0x12,0x16,0x13,0x12,0x00,0x06,0x06 + ,0x0a,0x08,0x07,0x09,0x07,0x20,0x09,0x08,0x08,0x09,0x07,0x07,0x06,0x21 + ,0x09,0x15,0x14,0x10,0x12,0x13,0x14,0x14,0x13,0x14,0x14,0x14,0x16,0x13 + ,0x12,0x00,0x06,0x05,0x09,0x09,0x07,0x07,0x06,0x21,0x09,0x08,0x09,0x08 + ,0x07,0x07,0x05,0x21,0x09,0x14,0x15,0x10,0x12,0x14,0x13,0x13,0x13,0x13 + ,0x13,0x13,0x17,0x12,0x13,0x00,0x06,0x06,0x08,0x09,0x07,0x08,0x06,0x70 + ,0x07,0x07,0x06,0x06,0x06,0x05,0x06,0x20,0x09,0x15,0x14,0x10,0x12,0x14 + ,0x13,0x13,0x13,0x12,0x13,0x12,0x17,0x13,0x13,0x10,0x06,0x05,0x09,0x07 + ,0x08,0x07,0x07,0x21,0x20,0x21,0x21,0x20,0x10,0x20,0x20,0x21,0x17,0x14 + ,0x13,0x11,0x12,0x14,0x13,0x13,0x12,0x13,0x12,0x12,0x17,0x13,0x13,0x00 + ,0x05,0x06,0x08,0x08,0x07,0x07,0x06,0x20,0x0a,0x0b,0x0b,0x0b,0x0b,0x0a + ,0x06,0x21,0x17,0x14,0x13,0x11,0x12,0x13,0x13,0x13,0x12,0x12,0x12,0x12 + ,0x09,0x13,0x12,0x10,0x06,0x05,0x09,0x08,0x07,0x07,0x07,0x20,0x0b,0x0b + ,0x0b,0x0a,0x0b,0x09,0x07,0x20,0x16,0x13,0x14,0x11,0x12,0x13,0x12,0x12 + ,0x13,0x13,0x12,0x12,0x09,0x12,0x11,0x10,0x05,0x05,0x08,0x07,0x07,0x07 + ,0x07,0x21,0x0b,0x0a,0x0b,0x0b,0x0a,0x09,0x06,0x21,0x16,0x14,0x13,0x11 + ,0x12,0x13,0x13,0x12,0x13,0x12,0x12,0x13,0x17,0x12,0x11,0x10,0x05,0x05 + ,0x07,0x07,0x07,0x08,0x07,0x21,0x0a,0x0b,0x0a,0x0b,0x09,0x09,0x07,0x21 + ,0x16,0x13,0x12,0x11,0x15,0x16,0x17,0x17,0x09,0x09,0x17,0x17,0x16,0x12 + ,0x11,0x10,0x05,0x05,0x07,0x07,0x07,0x07,0x06,0x10,0x0b,0x0a,0x0b,0x0a + ,0x0b,0x08,0x07,0x20,0x16,0x13,0x12,0x13,0x13,0x12,0x12,0x12,0x11,0x11 + ,0x12,0x12,0x12,0x11,0x11,0x00,0x04,0x04,0x07,0x07,0x07,0x07,0x05,0x21 + ,0x0b,0x0b,0x0a,0x09,0x0a,0x09,0x06,0x21,0x15,0x12,0x13,0x12,0x12,0x11 + ,0x11,0x11,0x11,0x12,0x11,0x11,0x11,0x11,0x11,0x00,0x03,0x04,0x07,0x06 + ,0x06,0x05,0x06,0x20,0x0b,0x0a,0x09,0x09,0x0a,0x08,0x07,0x21,0x13,0x11 + ,0x11,0x11,0x11,0x11,0x11,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00 + ,0x10,0x00,0x21,0x20,0x20,0x20,0x21,0x21,0x0a,0x09,0x0a,0x09,0x0a,0x08 + ,0x05,0x20 }; const unsigned char spriteStatue[] = { 32, 32 // width, height - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x00 - ,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x00,0x00,0x00,0x64,0x64,0x64,0x76,0x64,0x64,0x64,0x64,0x64,0x00,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x00,0x00,0x64,0x76,0x64,0x00,0x00,0x00,0x00,0x00,0x00,0x00 - ,0x00,0x00,0x07,0x07,0x07,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x00,0x00,0x76,0x64,0x00,0x00,0x00,0x09,0x09,0x09 - ,0x00,0x00,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x00,0x52,0x76,0x76,0x64 - ,0x52,0x00,0x07,0x07,0x07,0x07,0x00,0x00,0x76,0x64,0x00,0x09,0x09,0x09 - ,0x09,0x09,0x52,0x00,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x00,0x00,0x52 - ,0x09,0x76,0x52,0x64,0x52,0x00,0x07,0x07,0x07,0x00,0xff,0x76,0x09,0x09 - ,0x52,0x09,0x52,0x09,0x09,0x52,0x09,0x00,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x00,0x76,0x76,0x64,0x52,0x64,0x09,0x64,0x52,0x00,0x07,0x07,0x00,0xff - ,0x09,0x09,0x09,0x52,0x09,0x52,0x09,0x52,0x52,0x52,0x52,0x00,0x00,0x07 - ,0x07,0x07,0x07,0x00,0x52,0x76,0x52,0x64,0x09,0x76,0x52,0x64,0x52,0x00 - ,0x07,0x00,0x76,0x52,0x52,0x64,0x64,0x52,0x52,0x52,0x52,0x64,0x52,0x64 - ,0x64,0x64,0x64,0x00,0x07,0x07,0x00,0x52,0x09,0x76,0x09,0x64,0x52,0x76 - ,0x09,0x64,0x52,0x00,0x00,0x76,0x64,0x00,0x00,0x00,0x00,0x00,0x64,0x52 - ,0x52,0x52,0x52,0x52,0x00,0x00,0x00,0x07,0x07,0x07,0x00,0x52,0x09,0x64 - ,0x52,0x64,0x52,0x76,0x52,0x64,0x52,0x00,0x00,0xff,0x00,0x07,0x07,0x07 - ,0x07,0x07,0x00,0x64,0x52,0x52,0x52,0x00,0x00,0x00,0x07,0x07,0x07,0x07 - ,0x00,0x00,0x09,0x76,0x09,0x64,0x09,0x64,0x52,0x52,0x52,0x00,0x07,0x00 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x00,0x64,0x52,0x00,0x00,0x76,0x76 - ,0x00,0x07,0x07,0x07,0x00,0x64,0x09,0x76,0x52,0x64,0x09,0x76,0x09,0x52 - ,0x52,0x00,0x07,0x07,0x07,0x07,0x07,0x00,0x00,0x00,0x07,0x00,0x64,0x09 - ,0x00,0x76,0x64,0x00,0x00,0x07,0x07,0x07,0x00,0x52,0x00,0x76,0x09,0x52 - ,0x09,0x64,0x52,0x64,0x52,0x00,0x07,0x00,0x07,0x07,0x00,0x64,0x76,0x64 - ,0x00,0x07,0x00,0x09,0x76,0x64,0x76,0x00,0x76,0x00,0x07,0x00,0x64,0x64 - ,0x09,0x64,0x52,0x64,0x09,0x76,0x52,0x64,0x52,0x00,0x00,0xff,0x00,0x00 - ,0x76,0x00,0x00,0x64,0x64,0x00,0x52,0x52,0x64,0x00,0x00,0x76,0x64,0x64 - ,0x00,0x64,0x00,0x00,0x09,0x76,0x09,0x64,0x09,0x76,0x52,0x52,0x52,0x00 - ,0x07,0x00,0x76,0x76,0x00,0x07,0x07,0x00,0x64,0x00,0x09,0x64,0x52,0x64 - ,0x64,0x64,0x00,0x00,0x64,0x00,0x00,0x52,0x09,0x64,0x09,0x52,0x00,0x76 - ,0x09,0x64,0x52,0x00,0x07,0x07,0x00,0x00,0x07,0x07,0x07,0x00,0x64,0x52 - ,0x64,0x52,0x52,0x64,0x64,0x00,0x07,0x07,0x00,0x07,0x00,0x52,0x09,0x64 - ,0x52,0x52,0x00,0x64,0x09,0x52,0x52,0x00,0x07,0x07,0x00,0x00,0x07,0x07 - ,0x07,0x00,0x64,0x52,0x64,0x52,0x52,0x52,0x64,0x00,0x07,0x07,0x00,0x07 - ,0x00,0x52,0x00,0x64,0x09,0x64,0x00,0x64,0x09,0x52,0x52,0x00,0x07,0x00 - ,0x64,0x64,0x00,0x07,0x07,0x00,0x52,0x00,0x09,0x64,0x52,0x52,0x52,0x64 - ,0x00,0x00,0x64,0x00,0x00,0x09,0x00,0x76,0x09,0x52,0x00,0x76,0x09,0x52 - ,0x52,0x00,0x00,0x64,0x00,0x00,0x64,0x00,0x00,0x52,0x64,0x00,0x52,0x52 - ,0x64,0x00,0x00,0x64,0x64,0x64,0x00,0x64,0x00,0x00,0x00,0x64,0x09,0x52 - ,0x00,0x64,0x52,0x52,0x52,0x00,0x07,0x00,0x07,0x07,0x00,0x52,0x64,0x52 - ,0x00,0x07,0x00,0x09,0x64,0x64,0x64,0x00,0x64,0x00,0x07,0x00,0x64,0x64 - ,0x00,0x64,0x09,0x52,0x00,0x64,0x09,0x64,0x52,0x00,0x07,0x07,0x07,0x07 - ,0x07,0x00,0x00,0x00,0x07,0x00,0x64,0x00,0x00,0x64,0x52,0x00,0x00,0x07 - ,0x07,0x07,0x00,0x52,0x09,0x64,0x52,0x52,0x00,0x64,0x52,0x52,0x52,0x00 - ,0x07,0x00,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x00,0x64,0x00,0x00,0x00 - ,0x64,0x64,0x00,0x07,0x07,0x07,0x00,0x64,0x00,0x64,0x09,0x52,0x00,0x52 - ,0x09,0x52,0x52,0x00,0x00,0x64,0x00,0x07,0x07,0x07,0x07,0x07,0x00,0x64 - ,0x00,0x00,0x09,0x00,0x00,0x00,0x07,0x07,0x07,0x07,0x00,0x00,0x00,0x52 - ,0x52,0x52,0x00,0x64,0x09,0x52,0x52,0x00,0x00,0x64,0x64,0x00,0x00,0x00 - ,0x00,0x00,0x64,0x00,0x00,0x09,0x09,0x09,0x00,0x00,0x00,0x00,0x07,0x07 - ,0x00,0x00,0x00,0x64,0x09,0x52,0x00,0x52,0x09,0x52,0x52,0x00,0x07,0x00 - ,0x64,0x00,0x09,0x52,0x52,0x52,0x09,0x09,0x52,0x09,0x52,0x52,0x52,0x52 - ,0x52,0x00,0x00,0x07,0x00,0x09,0x00,0x52,0x09,0x52,0x00,0x52,0x52,0x52 - ,0x52,0x00,0x07,0x07,0x00,0x64,0x00,0x09,0x09,0x09,0x09,0x09,0x09,0x09 - ,0x09,0x09,0x09,0x00,0x00,0x00,0x07,0x07,0x07,0x00,0x09,0x64,0x52,0x52 - ,0x00,0x64,0x09,0x52,0x52,0x00,0x07,0x07,0x07,0x00,0x64,0x64,0x00,0x09 - ,0x09,0x52,0x09,0x09,0x09,0x09,0x52,0x00,0x00,0x07,0x07,0x07,0x07,0x07 - ,0x00,0x52,0x52,0x52,0x00,0x52,0x09,0x52,0x52,0x00,0x07,0x07,0x07,0x07 - ,0x00,0x00,0x64,0x64,0x09,0x09,0x09,0x52,0x09,0x52,0x09,0x00,0x00,0x00 - ,0x00,0x07,0x07,0x07,0x07,0x00,0x00,0x00,0x00,0x64,0x52,0x52,0x52,0x00 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x00,0x00,0x64,0x64,0x09,0x09,0x52,0x09 - ,0x52,0x09,0x00,0x00,0x00,0x00,0x07,0x07,0x07,0x07,0x00,0x00,0x09,0x52 - ,0x52,0x52,0x52,0x00,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x00,0x00 - ,0x64,0x64,0x64,0x09,0x09,0x09,0x09,0x09,0x00,0x00,0x00,0x00,0x07,0x07 - ,0x07,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x00,0x00,0x00,0x64,0x64,0x64,0x64,0x64,0x64,0x64 - ,0x64,0x64,0x00,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x00,0x00,0x00 - ,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07 + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x00 + ,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x00,0x00,0x00,0x09,0x09,0x09,0x0c,0x09,0x09,0x09,0x09,0x09,0x00,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x00,0x00,0x09,0x0c,0x09,0x61,0x61,0x61,0x61,0x61,0x00,0x00 + ,0x00,0x00,0x8f,0x8f,0x8f,0x8f,0x00,0x00,0x00,0x00,0x00,0x00,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x00,0x00,0x0c,0x09,0x61,0x61,0x61,0x03,0x03,0x03 + ,0x00,0x00,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x00,0x05,0x0c,0x0c,0x09 + ,0x05,0x61,0x8f,0x8f,0x8f,0x8f,0x00,0x00,0x0c,0x09,0x61,0x03,0x03,0x03 + ,0x03,0x03,0x05,0x00,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x00,0x00,0x05 + ,0x03,0x0c,0x05,0x09,0x05,0x61,0x8f,0x8f,0x8f,0x00,0x0f,0x0c,0x03,0x03 + ,0x05,0x03,0x05,0x03,0x03,0x05,0x03,0x00,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x00,0x0c,0x0c,0x09,0x05,0x09,0x03,0x09,0x05,0x61,0x8f,0x8f,0x00,0x0f + ,0x03,0x03,0x03,0x05,0x03,0x05,0x03,0x05,0x05,0x05,0x05,0x00,0x00,0x8f + ,0x8f,0x8f,0x8f,0x00,0x05,0x0c,0x05,0x09,0x03,0x0c,0x05,0x09,0x05,0x61 + ,0x8f,0x00,0x0c,0x05,0x05,0x09,0x09,0x05,0x05,0x05,0x05,0x09,0x05,0x09 + ,0x09,0x09,0x09,0x00,0x8f,0x8f,0x00,0x05,0x03,0x0c,0x03,0x09,0x05,0x0c + ,0x03,0x09,0x05,0x61,0x00,0x0c,0x09,0x00,0x00,0x00,0x00,0x00,0x09,0x05 + ,0x05,0x05,0x05,0x05,0x00,0x00,0x00,0x8f,0x8f,0x8f,0x00,0x05,0x03,0x09 + ,0x05,0x09,0x05,0x0c,0x05,0x09,0x05,0x61,0x00,0x0f,0x00,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x00,0x09,0x05,0x05,0x05,0x00,0x00,0x00,0x8f,0x8f,0x8f,0x8f + ,0x00,0x00,0x03,0x0c,0x03,0x09,0x03,0x09,0x05,0x05,0x05,0x61,0x8f,0x00 + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x00,0x09,0x05,0x00,0x00,0x0c,0x0c + ,0x00,0x8f,0x8f,0x8f,0x00,0x09,0x03,0x0c,0x05,0x09,0x03,0x0c,0x03,0x05 + ,0x05,0x61,0x8f,0x8f,0x8f,0x8f,0x8f,0x00,0x00,0x00,0x8f,0x00,0x09,0x03 + ,0x00,0x0c,0x09,0x00,0x00,0x8f,0x8f,0x8f,0x00,0x05,0x61,0x0c,0x03,0x05 + ,0x03,0x09,0x05,0x09,0x05,0x61,0x8f,0x00,0x8f,0x8f,0x00,0x09,0x0c,0x09 + ,0x00,0x8f,0x00,0x03,0x0c,0x09,0x0c,0x00,0x0c,0x00,0x8f,0x00,0x09,0x09 + ,0x03,0x09,0x05,0x09,0x03,0x0c,0x05,0x09,0x05,0x61,0x00,0x0f,0x00,0x00 + ,0x0c,0x00,0x00,0x09,0x09,0x00,0x05,0x05,0x09,0x00,0x00,0x0c,0x09,0x09 + ,0x00,0x09,0x00,0x00,0x03,0x0c,0x03,0x09,0x03,0x0c,0x05,0x05,0x05,0x61 + ,0x8f,0x00,0x0c,0x0c,0x00,0x8f,0x8f,0x00,0x09,0x00,0x03,0x09,0x05,0x09 + ,0x09,0x09,0x00,0x00,0x09,0x00,0x00,0x05,0x03,0x09,0x03,0x05,0x61,0x0c + ,0x03,0x09,0x05,0x61,0x8f,0x8f,0x00,0x00,0x8f,0x8f,0x8f,0x00,0x09,0x05 + ,0x09,0x05,0x05,0x09,0x09,0x00,0x8f,0x8f,0x00,0x8f,0x00,0x05,0x03,0x09 + ,0x05,0x05,0x61,0x09,0x03,0x05,0x05,0x61,0x8f,0x8f,0x00,0x00,0x8f,0x8f + ,0x8f,0x00,0x09,0x05,0x09,0x05,0x05,0x05,0x09,0x00,0x8f,0x8f,0x00,0x8f + ,0x00,0x05,0x61,0x09,0x03,0x09,0x61,0x09,0x03,0x05,0x05,0x61,0x8f,0x00 + ,0x09,0x09,0x00,0x8f,0x8f,0x00,0x05,0x00,0x03,0x09,0x05,0x05,0x05,0x09 + ,0x00,0x00,0x09,0x00,0x00,0x03,0x61,0x0c,0x03,0x05,0x61,0x0c,0x03,0x05 + ,0x05,0x61,0x00,0x09,0x00,0x00,0x09,0x00,0x00,0x05,0x09,0x00,0x05,0x05 + ,0x09,0x00,0x00,0x09,0x09,0x09,0x00,0x09,0x00,0x00,0x61,0x09,0x03,0x05 + ,0x61,0x09,0x05,0x05,0x05,0x61,0x8f,0x00,0x8f,0x8f,0x00,0x05,0x09,0x05 + ,0x00,0x8f,0x00,0x03,0x09,0x09,0x09,0x00,0x09,0x00,0x8f,0x00,0x09,0x09 + ,0x61,0x09,0x03,0x05,0x61,0x09,0x03,0x09,0x05,0x61,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x00,0x00,0x00,0x8f,0x00,0x09,0x61,0x00,0x09,0x05,0x00,0x00,0x8f + ,0x8f,0x8f,0x00,0x05,0x03,0x09,0x05,0x05,0x61,0x09,0x05,0x05,0x05,0x61 + ,0x8f,0x00,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x00,0x09,0x61,0x00,0x00 + ,0x09,0x09,0x00,0x8f,0x8f,0x8f,0x00,0x09,0x61,0x09,0x03,0x05,0x61,0x05 + ,0x03,0x05,0x05,0x61,0x00,0x09,0x00,0x8f,0x8f,0x8f,0x8f,0x8f,0x00,0x09 + ,0x61,0x61,0x03,0x00,0x00,0x00,0x8f,0x8f,0x8f,0x8f,0x00,0x00,0x61,0x05 + ,0x05,0x05,0x61,0x09,0x03,0x05,0x05,0x61,0x00,0x09,0x09,0x00,0x00,0x00 + ,0x00,0x00,0x09,0x61,0x61,0x03,0x03,0x03,0x00,0x00,0x00,0x00,0x8f,0x8f + ,0x00,0x61,0x61,0x09,0x03,0x05,0x61,0x05,0x03,0x05,0x05,0x61,0x8f,0x00 + ,0x09,0x61,0x03,0x05,0x05,0x05,0x03,0x03,0x05,0x03,0x05,0x05,0x05,0x05 + ,0x05,0x00,0x00,0x8f,0x00,0x03,0x61,0x05,0x03,0x05,0x61,0x05,0x05,0x05 + ,0x05,0x61,0x8f,0x8f,0x00,0x09,0x61,0x03,0x03,0x03,0x03,0x03,0x03,0x03 + ,0x03,0x03,0x03,0x00,0x00,0x00,0x8f,0x8f,0x8f,0x00,0x03,0x09,0x05,0x05 + ,0x61,0x09,0x03,0x05,0x05,0x61,0x8f,0x8f,0x8f,0x00,0x09,0x09,0x61,0x03 + ,0x03,0x05,0x03,0x03,0x03,0x03,0x05,0x00,0x00,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x00,0x05,0x05,0x05,0x61,0x05,0x03,0x05,0x05,0x61,0x8f,0x8f,0x8f,0x8f + ,0x00,0x00,0x09,0x09,0x03,0x03,0x03,0x05,0x03,0x05,0x03,0x00,0x00,0x00 + ,0x00,0x8f,0x8f,0x8f,0x8f,0x00,0x00,0x61,0x61,0x09,0x05,0x05,0x05,0x61 + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x00,0x00,0x09,0x09,0x03,0x03,0x05,0x03 + ,0x05,0x03,0x00,0x00,0x00,0x00,0x8f,0x8f,0x8f,0x8f,0x00,0x00,0x03,0x05 + ,0x05,0x05,0x05,0x61,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x00,0x00 + ,0x09,0x09,0x09,0x03,0x03,0x03,0x03,0x03,0x00,0x00,0x00,0x00,0x8f,0x8f + ,0x8f,0x8f,0x00,0x00,0x00,0x00,0x00,0x00,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x00,0x00,0x00,0x09,0x09,0x09,0x09,0x09,0x09,0x09 + ,0x09,0x09,0x00,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x00,0x00,0x00 + ,0x00,0x00,0x00,0x00,0x00,0x00,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f }; const unsigned char spriteNPC[] = { 32, 32 // width, height - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x00,0x00,0x00,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x00,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x00,0xbf,0xbf - ,0xbf,0x00,0x07,0x07,0x07,0x07,0x07,0x00,0x00,0x00,0x27,0x00,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x00,0xbf,0x5b,0x5b,0x00,0x00,0x00,0x00,0x00,0x00,0x27,0x27,0x27 - ,0x0c,0x00,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x00,0x52,0x6d,0x5b,0x09,0x0c,0x0c,0x0c,0x27,0x27 - ,0x27,0x0c,0x0a,0x0a,0x0a,0x00,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x00,0x07,0x00,0x5b,0x09,0x09,0x09,0x0a,0x0a - ,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0b,0x0b,0x0a,0x00,0x07,0x07,0x00,0x00 - ,0x00,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x00,0x3f,0x00,0x5b,0x09,0x5b - ,0x09,0x00,0x02,0x01,0x01,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x00 - ,0x00,0x07,0x00,0x3e,0xb6,0x00,0x07,0x00,0x07,0x07,0x07,0x00,0x15,0x15 - ,0x3d,0x09,0x09,0x09,0x00,0x01,0x01,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x01 - ,0x01,0x01,0x01,0x52,0x52,0x00,0x07,0x00,0x3e,0x6d,0x00,0xb6,0x00,0x07 - ,0x00,0x0c,0x0c,0x15,0x15,0x3d,0x00,0x00,0x0a,0x0a,0x00,0x00,0x00,0x01 - ,0x01,0x01,0x01,0x01,0x01,0x01,0x52,0x6d,0x52,0x00,0x07,0x07,0x00,0x3d - ,0x5b,0x6d,0x00,0x00,0x27,0x27,0x0c,0x0c,0x15,0x3f,0x00,0x01,0x00,0x00 - ,0x09,0x00,0x52,0x00,0x09,0x00,0x00,0x00,0x01,0x01,0x09,0xb6,0x09,0x00 - ,0x07,0x07,0x07,0x00,0x3d,0x09,0x00,0x0a,0x0c,0x15,0x27,0x09,0x09,0x09 - ,0x09,0x00,0x3f,0x00,0x52,0x09,0x64,0x00,0x3d,0x3d,0x3f,0x64,0x64,0x09 - ,0xb6,0x6d,0x09,0x00,0x07,0x07,0x00,0xbf,0x6d,0x00,0x5b,0x52,0x0a,0x09 - ,0x09,0x09,0x5b,0x6d,0x09,0x5b,0x3d,0x00,0x64,0x00,0x64,0x09,0x00,0x1d - ,0x3f,0x5b,0x52,0x52,0x09,0x52,0x00,0x00,0x07,0x00,0xb6,0xff,0x3e,0x00 - ,0x3e,0x3e,0x3d,0x09,0x5b,0x6d,0xbf,0xb6,0x52,0x3e,0x1d,0x3d,0x00,0x64 - ,0x00,0x52,0x00,0x00,0x09,0x52,0x52,0x12,0x09,0x00,0x00,0x00,0x00,0x3d - ,0x3d,0x3d,0x00,0x00,0x00,0x00,0x09,0x09,0x09,0x6d,0x6d,0x52,0x52,0x3e - ,0x1d,0x3d,0x00,0x64,0x00,0x52,0x00,0x02,0x00,0x00,0x09,0x00,0x00,0x01 - ,0x00,0x00,0x07,0x00,0x52,0x5b,0x3d,0x00,0x3d,0x3f,0x3f,0x09,0x5b,0x52 - ,0x5b,0x6d,0x52,0x3d,0x1d,0x3f,0x00,0x64,0x00,0x52,0x00,0x01,0x01,0x01 - ,0x01,0x0a,0x0a,0x0a,0x00,0x00,0x07,0x07,0x00,0x52,0x5b,0x00,0x52,0x52 - ,0x0a,0x27,0x09,0x09,0x09,0x09,0x52,0x5b,0x3f,0x00,0x00,0x64,0x00,0x52 - ,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x07,0x07,0x07,0x07,0x00 - ,0x3f,0x09,0x00,0x0a,0x0c,0x27,0x0c,0x15,0x3f,0x09,0x09,0x09,0x3f,0x00 - ,0x64,0x00,0x52,0x09,0x00,0x3d,0x3f,0x5b,0x00,0x00,0x01,0x01,0x00,0x07 - ,0x07,0x07,0x00,0x1d,0x52,0x5b,0x00,0x0c,0x27,0x0c,0x0c,0x15,0x0c,0x3d - ,0x00,0x00,0x00,0x00,0x52,0x09,0x00,0x00,0x3f,0x3e,0x3d,0x52,0x52,0x64 - ,0x09,0x52,0x00,0x00,0x07,0x00,0x1d,0x5b,0x00,0x5b,0x00,0x27,0x0c,0x0c - ,0x15,0x15,0x15,0x3d,0x52,0x52,0x0a,0x52,0xbf,0x6d,0x00,0x00,0x00,0x3f - ,0x52,0x12,0x12,0x09,0x64,0xb6,0x52,0x00,0x00,0x3f,0x5b,0x00,0x07,0x00 - ,0x07,0x00,0x00,0x0c,0x27,0x15,0x15,0x3e,0x00,0x09,0x52,0xbf,0x6d,0x5b - ,0x0a,0x0a,0x0a,0x01,0x00,0x00,0x00,0x00,0x00,0x64,0x09,0x00,0x00,0x00 - ,0x00,0x07,0x07,0x07,0x07,0x07,0x07,0x00,0x00,0x27,0x3e,0x27,0x27,0x15 - ,0x09,0x00,0x00,0x0a,0x0a,0x0a,0x0a,0x0a,0x01,0x01,0x01,0x00,0x00,0x09 - ,0x09,0x00,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x00 - ,0x3d,0x0c,0x0c,0x27,0x27,0x27,0x27,0x15,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a - ,0x01,0x01,0x01,0x0a,0x00,0x00,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x15,0x27,0x27,0x27 - ,0x27,0x15,0x15,0x0a,0x0a,0x0a,0x0a,0x0a,0x00,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x00,0x00,0x00,0x00,0x00,0x00,0x15,0x15,0x15,0x15,0x15,0x15,0x00,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x00,0x00,0x00,0x00 - ,0x00,0x00,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07 + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x00,0x00,0x00,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x00,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x00,0x0e,0x0e + ,0x0e,0x00,0x8f,0x8f,0x8f,0x8f,0x8f,0x00,0x00,0x00,0x9d,0x00,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x00,0x0e,0x07,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x9d,0x9d + ,0x97,0x00,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x00,0x05,0x09,0x07,0x03,0x97,0x97,0x97,0x9d,0x9d + ,0x9d,0x97,0x94,0x94,0x94,0x00,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x00,0x8f,0x00,0x07,0x03,0x03,0x03,0x93,0x93 + ,0x93,0x93,0x94,0x94,0x94,0x94,0x94,0x94,0x94,0x00,0x8f,0x8f,0x00,0x00 + ,0x00,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x00,0x9e,0x00,0x07,0x03,0x07 + ,0x03,0x02,0x93,0x92,0x92,0x93,0x94,0x94,0x94,0x93,0x93,0x93,0x93,0x00 + ,0x00,0x8f,0x00,0x2f,0x0c,0x00,0x8f,0x00,0x8f,0x8f,0x8f,0x00,0x9a,0x9a + ,0xaf,0x03,0x03,0x03,0x02,0x92,0x92,0x93,0x93,0x93,0x93,0x93,0x93,0x92 + ,0x92,0x92,0x92,0x05,0x05,0x00,0x8f,0x00,0x2f,0x09,0x00,0x0c,0x00,0x8f + ,0x00,0x97,0x97,0x9a,0x9a,0xaf,0x02,0x02,0x93,0x93,0x01,0x01,0x01,0x92 + ,0x92,0x92,0x92,0x92,0x92,0x92,0x05,0x09,0x05,0x00,0x8f,0x8f,0x00,0xaf + ,0x07,0x09,0x00,0x00,0x9d,0x9d,0x97,0x97,0x9a,0x9e,0x01,0x92,0x02,0x01 + ,0x03,0x01,0x05,0x01,0x03,0x02,0x02,0x02,0x92,0x92,0x03,0x0d,0x03,0x00 + ,0x8f,0x8f,0x8f,0x00,0xaf,0x03,0x00,0x93,0x97,0x9a,0x9d,0x03,0x03,0x03 + ,0x03,0x01,0x9e,0x02,0x05,0x03,0x08,0x01,0xaf,0xaf,0x9e,0x08,0x08,0x03 + ,0x0d,0x09,0x03,0x00,0x8f,0x8f,0x00,0x0e,0x09,0x00,0x07,0x05,0x93,0x03 + ,0x03,0x03,0x06,0x09,0x03,0x06,0xaf,0x01,0x08,0x02,0x08,0x03,0x02,0x99 + ,0x9e,0x06,0x05,0x05,0x03,0x05,0x01,0x00,0x8f,0x00,0x0c,0x0f,0x2f,0x00 + ,0x2f,0x2f,0xaf,0x03,0x06,0x09,0x0e,0x0c,0x05,0x2f,0x99,0xaf,0x01,0x08 + ,0x02,0x05,0x02,0x01,0x03,0x05,0x05,0x04,0x03,0x01,0x00,0x00,0x00,0xaf + ,0xaf,0xaf,0x00,0x00,0x00,0x00,0x03,0x03,0x03,0x09,0x09,0x05,0x05,0x2f + ,0x99,0xaf,0x01,0x08,0x02,0x05,0x01,0x93,0x01,0x01,0x03,0x01,0x01,0x92 + ,0x00,0x00,0x8f,0x00,0x05,0x07,0xaf,0x00,0xaf,0x9e,0x9e,0x03,0x06,0x05 + ,0x06,0x09,0x05,0xaf,0x99,0x9e,0x01,0x08,0x02,0x05,0x01,0x92,0x92,0x92 + ,0x92,0x93,0x93,0x93,0x00,0x00,0x8f,0x8f,0x00,0x05,0x07,0x00,0x05,0x05 + ,0x93,0x9d,0x03,0x03,0x03,0x03,0x05,0x06,0x9e,0x02,0x01,0x08,0x02,0x05 + ,0x02,0x02,0x92,0x92,0x92,0x92,0x92,0x92,0x00,0x8f,0x8f,0x8f,0x8f,0x00 + ,0x9e,0x03,0x00,0x93,0x97,0x9d,0x97,0x9a,0x9e,0x03,0x03,0x03,0x9e,0x01 + ,0x08,0x02,0x05,0x03,0x02,0xaf,0x9e,0x06,0x02,0x02,0x92,0x92,0x00,0x8f + ,0x8f,0x8f,0x00,0x99,0x05,0x07,0x00,0x97,0x9d,0x97,0x97,0x9a,0x97,0xaf + ,0x01,0x01,0x01,0x02,0x05,0x03,0x01,0x02,0x9e,0x2f,0xaf,0x05,0x05,0x08 + ,0x03,0x05,0x00,0x00,0x8f,0x00,0x99,0x07,0x00,0x07,0x00,0x9d,0x97,0x97 + ,0x9a,0x9a,0x9a,0xaf,0x05,0x05,0x93,0x05,0x0e,0x09,0x02,0x02,0x02,0x9e + ,0x05,0x04,0x04,0x03,0x08,0x0d,0x05,0x00,0x00,0x9e,0x07,0x00,0x8f,0x00 + ,0x8f,0x00,0x00,0x97,0x9d,0x9a,0x9a,0x2f,0x02,0x03,0x05,0x0e,0x09,0x07 + ,0x93,0x93,0x93,0x92,0x01,0x01,0x02,0x02,0x02,0x08,0x03,0x00,0x00,0x00 + ,0x00,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x00,0x00,0x9d,0x2f,0x9d,0x9d,0x9a + ,0x03,0x02,0x02,0x94,0x94,0x94,0x94,0x93,0x92,0x92,0x92,0x01,0x01,0x03 + ,0x03,0x00,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x00 + ,0xaf,0x97,0x97,0x9d,0x9d,0x9d,0x9d,0x9a,0x94,0x94,0x94,0x94,0x94,0x94 + ,0x92,0x92,0x92,0x93,0x00,0x00,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x00,0x00,0x00,0x00,0x00,0x00,0x9a,0x9d,0x9d,0x9d + ,0x9d,0x9a,0x9a,0x94,0x94,0x93,0x93,0x93,0x00,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x00,0x00,0x00,0x00,0x00,0x00,0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,0x00,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x00,0x00,0x00,0x00 + ,0x00,0x00,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f }; const unsigned char spriteTree[] = { 32, 32 // width, height - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x7b,0x7b,0x58,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x7b,0x7b - ,0x7b,0x58,0x07,0x61,0x28,0x28,0x58,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x08,0x7b,0x7b,0x58,0x58,0x08,0x7b,0x28,0x28,0x08,0x08,0x07,0x08 - ,0x08,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x7b,0x7b,0x28,0x58,0x08,0x7b,0x7b,0x58,0x58,0x7b,0x7b,0x28,0x28 - ,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x7b,0x7b,0x7b,0x58,0x08,0x7b,0x7b,0x28,0x7b - ,0x7b,0x7b,0x08,0x08,0x08,0x58,0x58,0x08,0x58,0x58,0x58,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x7b,0x28,0x7b,0x08,0x58 - ,0x28,0x7b,0x58,0x58,0x58,0x7b,0x58,0x08,0x08,0x58,0x58,0x58,0x58,0x58 - ,0x08,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x13,0x07,0x07,0x28,0x7b - ,0x28,0x28,0x58,0x58,0x7b,0x7b,0x7b,0x28,0x7b,0x7b,0x58,0x08,0x08,0x08 - ,0x58,0x08,0x08,0x08,0x08,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x13,0x09 - ,0x07,0x07,0x28,0x7b,0x7b,0x28,0x28,0x7b,0x7b,0x7b,0x7b,0x28,0x7b,0x7b - ,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x58,0x58,0x58,0x58,0x08,0x07,0x07 - ,0x07,0x07,0x65,0x09,0x07,0x07,0x58,0x28,0x7b,0x28,0x28,0x7b,0x7b,0x7b - ,0x28,0x28,0x7b,0x7b,0x08,0x08,0x58,0x58,0x7b,0x08,0x08,0x08,0x58,0x58 - ,0x58,0x08,0x07,0x07,0x07,0x07,0x65,0x09,0x07,0x07,0x08,0x58,0x28,0x28 - ,0x28,0x7b,0x7b,0x28,0x28,0x7b,0x7b,0x08,0x08,0x08,0x58,0x28,0x28,0x58 - ,0x08,0x58,0x58,0x58,0x08,0x07,0x07,0x07,0x07,0x07,0x13,0x09,0x07,0x7b - ,0x08,0x08,0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x08,0x08,0x08 - ,0x58,0x28,0x28,0x58,0x08,0x08,0x08,0x08,0x08,0x07,0x07,0x07,0x07,0x65 - ,0x13,0x09,0x7b,0x7b,0x08,0x58,0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x7b - ,0x7b,0x08,0x08,0x58,0x58,0x58,0x28,0x08,0x08,0x08,0x08,0x08,0x08,0x07 - ,0x07,0x07,0x65,0x65,0x13,0x09,0x7b,0x7b,0x7b,0x28,0x28,0x7b,0x7b,0x58 - ,0x58,0x28,0x7b,0x7b,0x7b,0x28,0x08,0x08,0x58,0x58,0x28,0x08,0x08,0x08 - ,0x08,0x08,0x08,0x08,0x07,0x07,0x65,0x13,0x09,0x13,0x7b,0x7b,0x28,0x28 - ,0x28,0x28,0x7b,0x7b,0x58,0x58,0x7b,0x7b,0x28,0x28,0x08,0x08,0x08,0x08 - ,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x09,0x65,0x13,0x13,0x65,0x13 - ,0x07,0x7b,0x58,0x58,0x28,0x7b,0x7b,0x7b,0x58,0x58,0x58,0x28,0x28,0x28 - ,0x08,0x08,0x08,0x08,0x08,0x08,0x58,0x58,0x28,0x28,0x08,0x08,0x09,0x13 - ,0x13,0x65,0x65,0x13,0x7b,0x7b,0x7b,0x58,0x58,0x28,0x7b,0x7b,0x58,0x58 - ,0x58,0x58,0x58,0x58,0x08,0x08,0x08,0x08,0x08,0x08,0x58,0x58,0x58,0x28 - ,0x28,0x28,0x08,0x09,0x09,0x09,0x09,0x65,0x08,0x7b,0x7b,0x58,0x58,0x28 - ,0x28,0x28,0x58,0x58,0x58,0x58,0x28,0x7b,0x28,0x58,0x08,0x08,0x08,0x08 - ,0x08,0x58,0x28,0x28,0x28,0x28,0x28,0x09,0x13,0x65,0x65,0x65,0x58,0x7b - ,0x7b,0x7b,0x58,0x28,0x28,0x58,0x58,0x58,0x58,0x58,0x28,0x28,0x7b,0x58 - ,0x08,0x08,0x08,0x08,0x08,0x08,0x58,0x28,0x28,0x28,0x09,0x09,0x13,0x13 - ,0x13,0x09,0x58,0x7b,0x7b,0x28,0x28,0x28,0x28,0x58,0x58,0x58,0x58,0x58 - ,0x28,0x7b,0x7b,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x58,0x58,0x08,0x08 - ,0x09,0x09,0x09,0x09,0x09,0x09,0x07,0x28,0x28,0x28,0x28,0x28,0x7b,0x58 - ,0x58,0x58,0x58,0x28,0x7b,0x28,0x08,0x08,0x08,0x08,0x28,0x28,0x08,0x58 - ,0x58,0x28,0x08,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x07,0x28,0x58,0x28 - ,0x28,0x28,0x7b,0x7b,0x28,0x28,0x58,0x7b,0x7b,0x7b,0x08,0x08,0x58,0x58 - ,0x28,0x58,0x58,0x58,0x28,0x28,0x28,0x08,0x08,0x13,0x09,0x09,0x09,0x09 - ,0x07,0x07,0x08,0x28,0x28,0x28,0x28,0x7b,0x7b,0x28,0x58,0x28,0x7b,0x7b - ,0x28,0x08,0x08,0x58,0x7b,0x08,0x58,0x58,0x28,0x28,0x28,0x08,0x08,0x07 - ,0x13,0x09,0x09,0x09,0x07,0x07,0x58,0x28,0x28,0x7b,0x7b,0x7b,0x7b,0x28 - ,0x58,0x58,0x28,0x28,0x28,0x08,0x08,0x08,0x28,0x08,0x08,0x58,0x58,0x58 - ,0x08,0x08,0x07,0x07,0x07,0x13,0x09,0x09,0x07,0x07,0x28,0x7b,0x28,0x7b - ,0x28,0x7b,0x7b,0x58,0x08,0x08,0x08,0x08,0x28,0x08,0x08,0x08,0x58,0x08 - ,0x08,0x08,0x58,0x08,0x08,0x07,0x07,0x07,0x07,0x13,0x13,0x09,0x07,0x07 - ,0x28,0x7b,0x7b,0x7b,0x08,0x08,0x08,0x08,0x58,0x58,0x08,0x08,0x08,0x08 - ,0x58,0x58,0x58,0x58,0x08,0x08,0x08,0x08,0x08,0x08,0x07,0x07,0x07,0x07 - ,0x13,0x09,0x07,0x07,0x08,0x08,0x7b,0x7b,0x28,0x08,0x08,0x08,0x08,0x58 - ,0x58,0x08,0x08,0x58,0x58,0x58,0x58,0x58,0x08,0x08,0x08,0x08,0x08,0x08 - ,0x07,0x07,0x07,0x07,0x13,0x09,0x07,0x07,0x07,0x08,0x28,0x28,0x28,0x08 - ,0x08,0x08,0x58,0x58,0x58,0x08,0x58,0x58,0x58,0x58,0x08,0x08,0x08,0x08 - ,0x08,0x08,0x07,0x07,0x07,0x07,0x07,0x07,0x13,0x09,0x07,0x07,0x07,0x07 - ,0x28,0x28,0x28,0x08,0x58,0x08,0x08,0x08,0x08,0x28,0x58,0x58,0x28,0x28 - ,0x08,0x58,0x08,0x08,0x08,0x08,0x08,0x07,0x07,0x07,0x07,0x07,0x07,0x09 - ,0x07,0x07,0x07,0x07,0x08,0x28,0x28,0x08,0x28,0x28,0x08,0x58,0x28,0x28 - ,0x58,0x58,0x28,0x28,0x28,0x58,0x08,0x08,0x08,0x08,0x08,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x08,0x08,0x58,0x58,0x28,0x28 - ,0x08,0x28,0x28,0x28,0x58,0x58,0x58,0x08,0x08,0x08,0x08,0x08,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x08 - ,0x58,0x08,0x28,0x28,0x08,0x08,0x28,0x28,0x08,0x08,0x08,0x08,0x08,0x08 - ,0x08,0x08,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x28,0x28,0x58,0x58,0x08,0x18,0x18,0x08,0x08 - ,0x08,0x08,0x08,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07 + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x3c,0x3c,0xc5,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x3c,0x3c + ,0x3c,0xc5,0x8f,0x38,0xba,0xba,0xc5,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x43,0x3c,0x3c,0xc5,0xc5,0x43,0x3c,0xba,0xba,0x43,0x43,0x8f,0x43 + ,0x43,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x3c,0x3c,0xba,0xc5,0x43,0x3c,0x3c,0xc5,0xc5,0x3c,0x3c,0xba,0xba + ,0x43,0x43,0x43,0x43,0x43,0x43,0x43,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x3c,0x3c,0x3c,0xc5,0x43,0x3c,0x3c,0xba,0x3c + ,0x3c,0x3c,0x43,0x43,0x43,0xc5,0xc5,0x43,0xc5,0xc5,0xc5,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x3c,0xba,0x3c,0x43,0xc5 + ,0xba,0x3c,0xc5,0xc5,0xc5,0x3c,0xc5,0x43,0x43,0xc5,0xc5,0xc5,0xc5,0xc5 + ,0x43,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x16,0x8f,0x8f,0xba,0x3c + ,0xba,0xba,0xc5,0xc5,0x3c,0x3c,0x3c,0xba,0x3c,0x3c,0xc5,0x43,0x43,0x43 + ,0xc5,0x43,0x43,0x43,0x43,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x16,0x73 + ,0x8f,0x8f,0xba,0x3c,0x3c,0xba,0xba,0x3c,0x3c,0x3c,0x3c,0xba,0x3c,0x3c + ,0x43,0x43,0x43,0x43,0x43,0x43,0x43,0xc5,0xc5,0xc5,0xc5,0x43,0x8f,0x8f + ,0x8f,0x8f,0x1a,0x73,0x8f,0x8f,0xc5,0xba,0x3c,0xba,0xba,0x3c,0x3c,0x3c + ,0xba,0xba,0x3c,0x3c,0x43,0x43,0xc5,0xc5,0x3c,0x43,0x43,0x43,0xc5,0xc5 + ,0xc5,0x43,0x8f,0x8f,0x8f,0x8f,0x1a,0x73,0x8f,0x8f,0x43,0xc5,0xba,0xba + ,0xba,0x3c,0x3c,0xba,0xba,0x3c,0x3c,0x43,0x43,0x43,0xc5,0xba,0xba,0xc5 + ,0x43,0xc5,0xc5,0xc5,0x43,0x8f,0x8f,0x8f,0x8f,0x8f,0x16,0x73,0x8f,0x3c + ,0x43,0x43,0xba,0xba,0xba,0xba,0xba,0xba,0xba,0xba,0xba,0x43,0x43,0x43 + ,0xc5,0xba,0xba,0xc5,0x43,0x43,0x43,0x43,0x43,0x8f,0x8f,0x8f,0x8f,0x1a + ,0x16,0x73,0x3c,0x3c,0x43,0xc5,0xba,0xba,0xba,0xba,0xba,0xba,0xba,0x3c + ,0x3c,0x43,0x43,0xc5,0xc5,0xc5,0xba,0x43,0x43,0x43,0x43,0x43,0x43,0x8f + ,0x8f,0x8f,0x1a,0x1a,0x16,0x73,0x3c,0x3c,0x3c,0xba,0xba,0x3c,0x3c,0xc5 + ,0xc5,0xba,0x3c,0x3c,0x3c,0xba,0x43,0x43,0xc5,0xc5,0xba,0x43,0x43,0x43 + ,0x43,0x43,0x43,0x43,0x8f,0x8f,0x1a,0x16,0x73,0x16,0x3c,0x3c,0xba,0xba + ,0xba,0xba,0x3c,0x3c,0xc5,0xc5,0x3c,0x3c,0xba,0xba,0x43,0x43,0x43,0x43 + ,0x43,0x43,0x43,0x43,0x43,0x43,0x43,0x43,0x73,0x1a,0x16,0x16,0x1a,0x16 + ,0x8f,0x3c,0xc5,0xc5,0xba,0x3c,0x3c,0x3c,0xc5,0xc5,0xc5,0xba,0xba,0xba + ,0x43,0x43,0x43,0x43,0x43,0x43,0xc5,0xc5,0xba,0xba,0x43,0x43,0x73,0x16 + ,0x16,0x1a,0x1a,0x16,0x3c,0x3c,0x3c,0xc5,0xc5,0xba,0x3c,0x3c,0xc5,0xc5 + ,0xc5,0xc5,0xc5,0xc5,0x43,0x43,0x43,0x43,0x43,0x43,0xc5,0xc5,0xc5,0xba + ,0xba,0xba,0x43,0x73,0x73,0x73,0x73,0x1a,0x43,0x3c,0x3c,0xc5,0xc5,0xba + ,0xba,0xba,0xc5,0xc5,0xc5,0xc5,0xba,0x3c,0xba,0xc5,0x43,0x43,0x43,0x43 + ,0x43,0xc5,0xba,0xba,0xba,0xba,0xba,0x73,0x16,0x1a,0x1a,0x1a,0xc5,0x3c + ,0x3c,0x3c,0xc5,0xba,0xba,0xc5,0xc5,0xc5,0xc5,0xc5,0xba,0xba,0x3c,0xc5 + ,0x43,0x43,0x43,0x43,0x43,0x43,0xc5,0xba,0xba,0xba,0x73,0x73,0x16,0x16 + ,0x16,0x73,0xc5,0x3c,0x3c,0xba,0xba,0xba,0xba,0xc5,0xc5,0xc5,0xc5,0xc5 + ,0xba,0x3c,0x3c,0x43,0x43,0x43,0x43,0x43,0x43,0x43,0xc5,0xc5,0x43,0x43 + ,0x73,0x73,0x73,0x73,0x73,0x73,0x8f,0xba,0xba,0xba,0xba,0xba,0x3c,0xc5 + ,0xc5,0xc5,0xc5,0xba,0x3c,0xba,0x43,0x43,0x43,0x43,0xba,0xba,0x43,0xc5 + ,0xc5,0xba,0x43,0x73,0x73,0x73,0x73,0x73,0x73,0x73,0x8f,0xba,0xc5,0xba + ,0xba,0xba,0x3c,0x3c,0xba,0xba,0xc5,0x3c,0x3c,0x3c,0x43,0x43,0xc5,0xc5 + ,0xba,0xc5,0xc5,0xc5,0xba,0xba,0xba,0x43,0x43,0x16,0x73,0x73,0x73,0x73 + ,0x8f,0x8f,0x43,0xba,0xba,0xba,0xba,0x3c,0x3c,0xba,0xc5,0xba,0x3c,0x3c + ,0xba,0x43,0x43,0xc5,0x3c,0x43,0xc5,0xc5,0xba,0xba,0xba,0x43,0x43,0x8f + ,0x16,0x73,0x73,0x73,0x8f,0x8f,0xc5,0xba,0xba,0x3c,0x3c,0x3c,0x3c,0xba + ,0xc5,0xc5,0xba,0xba,0xba,0x43,0x43,0x43,0xba,0x43,0x43,0xc5,0xc5,0xc5 + ,0x43,0x43,0x8f,0x8f,0x8f,0x16,0x73,0x73,0x8f,0x8f,0xba,0x3c,0xba,0x3c + ,0xba,0x3c,0x3c,0xc5,0x43,0x43,0x43,0x43,0xba,0x43,0x43,0x43,0xc5,0x43 + ,0x43,0x43,0xc5,0x43,0x43,0x8f,0x8f,0x8f,0x8f,0x16,0x16,0x73,0x8f,0x8f + ,0xba,0x3c,0x3c,0x3c,0x43,0x43,0x43,0x43,0xc5,0xc5,0x43,0x43,0x43,0x43 + ,0xc5,0xc5,0xc5,0xc5,0x43,0x43,0x43,0x43,0x43,0x43,0x8f,0x8f,0x8f,0x8f + ,0x16,0x73,0x8f,0x8f,0x43,0x43,0x3c,0x3c,0xba,0x43,0x43,0x43,0x43,0xc5 + ,0xc5,0x43,0x43,0xc5,0xc5,0xc5,0xc5,0xc5,0x43,0x43,0x43,0x43,0x43,0x43 + ,0x8f,0x8f,0x8f,0x8f,0x16,0x73,0x8f,0x8f,0x8f,0x43,0xba,0xba,0xba,0x43 + ,0x43,0x43,0xc5,0xc5,0xc5,0x43,0xc5,0xc5,0xc5,0xc5,0x43,0x43,0x43,0x43 + ,0x43,0x43,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x16,0x73,0x8f,0x8f,0x8f,0x8f + ,0xba,0xba,0xba,0x43,0xc5,0x43,0x43,0x43,0x43,0xba,0xc5,0xc5,0xba,0xba + ,0x43,0xc5,0x43,0x43,0x43,0x43,0x43,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x73 + ,0x8f,0x8f,0x8f,0x8f,0x43,0xba,0xba,0x43,0xba,0xba,0x43,0xc5,0xba,0xba + ,0xc5,0xc5,0xba,0xba,0xba,0xc5,0x43,0x43,0x43,0x43,0x43,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x43,0x43,0xc5,0xc5,0xba,0xba + ,0x43,0xba,0xba,0xba,0xc5,0xc5,0xc5,0x43,0x43,0x43,0x43,0x43,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x43 + ,0xc5,0x43,0xba,0xba,0x43,0x43,0xba,0xba,0x43,0x43,0x43,0x43,0x43,0x43 + ,0x43,0x43,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0xba,0xba,0xc5,0xc5,0x43,0x37,0x37,0x43,0x43 + ,0x43,0x43,0x43,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f }; const unsigned char spriteGrass[] = { 24, 24 // width, height - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x58,0x0a,0x0a,0x0a,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x58,0x07,0x58,0x2b,0x34,0x34 - ,0x34,0x0a,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x58,0x34,0x58,0x2b,0x34,0x7d,0x7d,0x7d,0x34,0x0a,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x58,0x34 - ,0x34,0x58,0x2b,0x7d,0x7d,0x34,0x0a,0x0a,0x0a,0x0a,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x58,0x34,0x7d,0x58,0x2b,0x2b - ,0x2b,0x0a,0x09,0x0a,0x0a,0x0a,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x58,0x34,0x7d,0x58,0x22,0x2b,0x58,0x58,0x34,0x34 - ,0x0a,0x0a,0x0a,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x58,0x34,0x2b,0x58,0x58,0x58,0x22,0x34,0xbf,0x7f,0x7d,0x7d,0x0a,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x58,0x2b,0x2b,0x58 - ,0x58,0x22,0x2b,0x7d,0x7f,0x34,0x34,0x34,0x34,0x0a,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x58,0x58,0x34,0x09,0x58,0x2b,0x2b - ,0x2b,0x22,0x22,0x58,0x0a,0x0a,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x22,0x58,0x7d,0x34,0x09,0x58,0x58,0x58,0x58,0x0a,0x0a - ,0x0a,0x0a,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x58,0x2b - ,0x58,0x7f,0x34,0x22,0x09,0x58,0x2b,0x34,0x34,0x34,0x34,0x0a,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x58,0x34,0x2b,0x58,0x34,0x7f,0x34 - ,0x09,0x22,0x2b,0x7f,0x7f,0x7d,0x0a,0x0a,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x58,0x34,0x7d,0x7d,0x22,0x58,0x34,0x34,0x22,0x22,0x2b,0x7d - ,0x7d,0x0a,0x0a,0x0a,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x58,0x34 - ,0x7d,0x34,0x22,0x5a,0x58,0x2b,0x2b,0x58,0x58,0x58,0x0a,0x0a,0x0a,0x0a - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x58,0x34,0x34,0x5a,0x2b,0x2b - ,0x09,0x58,0x58,0x2b,0x2b,0x34,0x34,0x0a,0x0a,0x0a,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x58,0x58,0x58,0x2b,0x35,0x34,0x09,0x58,0x2b - ,0x7d,0x7f,0x7d,0x7d,0x34,0x0a,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x58,0x34,0x3d,0x2c,0x22,0x09,0x2b,0x7d,0x7f,0x34,0x7d - ,0x0a,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x58,0x34 - ,0x7d,0x2b,0x3d,0x34,0x09,0x22,0x22,0x22,0x34,0x0a,0x0a,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x58,0x34,0x7d,0x22,0x58,0x2b - ,0x7d,0x7d,0x34,0x2b,0x09,0x0a,0x0a,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x58,0x7d,0x7f,0x0a,0x0a,0x2b,0x34,0x7d,0x7f,0x7d - ,0x2b,0x09,0x0a,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x58,0x7d,0x7f,0x0a,0x07,0x58,0x2b,0x34,0x7d,0x7d,0x7d,0x2b,0x09,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x58,0x34,0x7d,0x0a - ,0x07,0x07,0x58,0x58,0x34,0x34,0x34,0x34,0x0a,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x58,0x34,0x0a,0x07,0x07,0x07,0x07 - ,0x58,0x0a,0x0a,0x0a,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x58,0x0a,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07 + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0xc5,0x74,0x74,0x74,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0xc5,0x8f,0xc5,0x29,0x2b,0x2b + ,0x2b,0x74,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0xc5,0x2b,0xc5,0x29,0x2b,0x2e,0x2e,0x2e,0x2b,0x74,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0xc5,0x2b + ,0x2b,0xc5,0x29,0x2e,0x2e,0x2b,0x74,0x74,0x74,0x74,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0xc5,0x2b,0x2e,0xc5,0x29,0x29 + ,0x29,0x74,0x03,0x74,0x74,0x74,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0xc5,0x2b,0x2e,0xc5,0x27,0x29,0xc5,0xc5,0x2b,0x2b + ,0x74,0x74,0x74,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0xc5,0x2b,0x29,0xc5,0xc5,0xc5,0x27,0x2b,0x0f,0x1e,0x2e,0x2e,0x74,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0xc5,0x29,0x29,0xc5 + ,0xc5,0x27,0x29,0x2e,0x1e,0x2b,0x2b,0x2b,0x2b,0x74,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0xc5,0xc5,0x2b,0x03,0xc5,0x29,0x29 + ,0x29,0x27,0x27,0xc5,0x74,0x74,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x27,0xc5,0x2e,0x2b,0x03,0xc5,0xc5,0xc5,0xc5,0x74,0x74 + ,0x74,0x74,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0xc5,0x29 + ,0xc5,0x1e,0x2b,0x27,0x03,0xc5,0x29,0x2b,0x2b,0x2b,0x2b,0x74,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0xc5,0x2b,0x29,0xc5,0x2b,0x1e,0x2b + ,0x03,0x27,0x29,0x1e,0x1e,0x2e,0x74,0x74,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0xc5,0x2b,0x2e,0x2e,0x27,0xc5,0x2b,0x2b,0x27,0x27,0x29,0x2e + ,0x2e,0x74,0x74,0x74,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0xc5,0x2b + ,0x2e,0x2b,0x27,0x37,0xc5,0x29,0x29,0xc5,0xc5,0xc5,0x74,0x74,0x74,0x74 + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0xc5,0x2b,0x2b,0x37,0x29,0x2a + ,0x03,0xc5,0xc5,0x29,0x29,0x2b,0x2b,0x74,0x74,0x74,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0xc5,0xc5,0xc5,0x29,0x2c,0x2a,0x03,0xc5,0x29 + ,0x2e,0x1e,0x2e,0x2e,0x2b,0x74,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0xc5,0x2b,0x2d,0x2a,0x27,0x03,0x29,0x2e,0x1e,0x2b,0x2e + ,0x74,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0xc5,0x2b + ,0x2e,0x2a,0x2d,0x2b,0x03,0x27,0x27,0x27,0x2b,0x74,0x74,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0xc5,0x2b,0x2e,0x27,0xc5,0x29 + ,0x2e,0x2e,0x2b,0x29,0x03,0x74,0x74,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0xc5,0x2e,0x1e,0x74,0x74,0x29,0x2b,0x2e,0x1e,0x2e + ,0x29,0x03,0x74,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0xc5,0x2e,0x1e,0x74,0x8f,0xc5,0x29,0x2b,0x2e,0x2e,0x2e,0x29,0x03,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0xc5,0x2b,0x2e,0x74 + ,0x8f,0x8f,0xc5,0xc5,0x2b,0x2b,0x2b,0x2b,0x74,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0xc5,0x2b,0x74,0x8f,0x8f,0x8f,0x8f + ,0xc5,0x74,0x74,0x74,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0xc5,0x74,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f }; const unsigned char spriteBarrel[] = { 32, 32 // width, height - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x1c,0x1c,0x1c,0x1c,0x5b,0x5b,0x09,0x09,0x13,0x1c,0x1d - ,0x0a,0x0a,0x0a,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x1c,0x1c,0x1c,0x1c,0x25,0x25,0x25,0x25,0x25,0x25,0x5b - ,0x09,0x13,0x13,0x1c,0x13,0x13,0x0a,0x0a,0x0a,0x09,0x09,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x5b,0x09,0x1d,0x26,0x26,0x26,0x26,0x26 - ,0x26,0x26,0x26,0x1d,0x5b,0x09,0x13,0x1c,0x1c,0x1c,0x13,0x13,0x0b,0x0a - ,0x09,0x09,0x09,0x07,0x07,0x07,0x07,0x07,0x07,0x09,0x13,0x64,0x09,0x1d - ,0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,0x5b,0x5b,0x09,0x13,0x1d,0x1d - ,0x1d,0x13,0x13,0x13,0x0a,0x09,0x09,0x09,0x07,0x07,0x07,0x07,0x07,0x09 - ,0x13,0x64,0x09,0x1d,0x1c,0x1c,0x1c,0x13,0x13,0x13,0x13,0x13,0x13,0x64 - ,0x09,0x13,0x13,0x13,0x1d,0x1c,0x13,0x13,0x09,0x09,0x09,0x09,0x07,0x07 - ,0x07,0x07,0x07,0x09,0x13,0x64,0x09,0x13,0x13,0x13,0x13,0x13,0x13,0x13 - ,0x13,0x13,0x13,0x5b,0x5b,0x09,0x13,0x13,0x13,0x1c,0x13,0x13,0x13,0x09 - ,0x09,0x09,0x09,0x07,0x07,0x07,0x07,0x09,0x13,0x5b,0x09,0x13,0x13,0x13 - ,0x13,0x26,0x26,0x26,0x26,0x26,0x26,0x1d,0x64,0x09,0x1c,0x1c,0x1c,0x13 - ,0x13,0x13,0x13,0x0a,0x09,0x09,0x09,0x07,0x07,0x07,0x09,0x12,0x13,0x12 - ,0x5b,0x13,0x13,0x1c,0x1c,0x25,0x25,0x25,0x26,0x26,0x26,0x25,0x64,0x09 - ,0x1c,0x1c,0x1d,0x1d,0x1c,0x1c,0x13,0x0a,0x09,0x09,0x09,0x07,0x07,0x07 - ,0x09,0x12,0x13,0x13,0x5b,0x09,0x13,0x1c,0x1c,0x1d,0x1d,0x26,0x26,0x26 - ,0x26,0x26,0x64,0x12,0x09,0x1c,0x1d,0x1d,0x1c,0x13,0x13,0x13,0x0a,0x09 - ,0x09,0x09,0x07,0x07,0x09,0x13,0x1c,0x13,0x64,0x09,0x13,0x1c,0x1c,0x1c - ,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x13,0x12,0x09,0x1c,0x1c,0x1c,0x1c,0x13 - ,0x13,0x13,0x13,0x0a,0x09,0x09,0x07,0x07,0x09,0x13,0x1c,0x13,0x64,0x09 - ,0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x5b,0x09,0x13 - ,0x13,0x1c,0x13,0x13,0x13,0x13,0x13,0x0a,0x09,0x09,0x07,0x07,0x09,0x13 - ,0x1c,0x13,0x64,0x09,0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x13 - ,0x13,0x64,0x09,0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x0a,0x0a,0x09,0x09 - ,0x07,0x07,0x09,0x13,0x1c,0x13,0x64,0x09,0x13,0x13,0x26,0x26,0x26,0x26 - ,0x26,0x26,0x26,0x26,0x1d,0x64,0x09,0x1d,0x1d,0x1d,0x1c,0x13,0x13,0x13 - ,0x13,0x0a,0x09,0x09,0x07,0x07,0x09,0x13,0x1c,0x13,0x64,0x09,0x13,0x13 - ,0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x25,0x64,0x09,0x1d,0x1d,0x1c - ,0x1c,0x13,0x13,0x13,0x13,0x0a,0x09,0x09,0x07,0x07,0x09,0x13,0x1c,0x13 - ,0x64,0x09,0x13,0x13,0x25,0x25,0x25,0x25,0x25,0x25,0x25,0x25,0x25,0x64 - ,0x09,0x1d,0x1c,0x1c,0x13,0x13,0x13,0x13,0x13,0x0a,0x09,0x09,0x07,0x07 - ,0x09,0x13,0x1c,0x13,0x64,0x09,0x13,0x13,0x25,0x25,0x25,0x25,0x25,0x25 - ,0x25,0x25,0x25,0x64,0x09,0x1d,0x1c,0x1c,0x13,0x13,0x13,0x13,0x13,0x0a - ,0x09,0x09,0x07,0x07,0x09,0x13,0x1c,0x0a,0x64,0x09,0x13,0x13,0x25,0x1d - ,0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,0x64,0x09,0x1c,0x1c,0x13,0x13,0x13 - ,0x13,0x13,0x0a,0x0a,0x09,0x09,0x07,0x07,0x09,0x13,0x1c,0x12,0x64,0x09 - ,0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x64,0x09,0x13 - ,0x13,0x13,0x13,0x13,0x13,0x0a,0x0a,0x0a,0x09,0x09,0x07,0x07,0x09,0x13 - ,0x1c,0x13,0x5b,0x09,0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x13 - ,0x13,0x5b,0x09,0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x0a,0x0a,0x09,0x09 - ,0x07,0x07,0x09,0x12,0x1c,0x13,0x5b,0x09,0x13,0x13,0x1c,0x1d,0x1d,0x1d - ,0x1d,0x1d,0x1d,0x1d,0x1d,0x64,0x09,0x1c,0x1c,0x13,0x13,0x13,0x13,0x13 - ,0x0a,0x0a,0x09,0x09,0x07,0x07,0x09,0x12,0x1c,0x12,0x5b,0x13,0x1c,0x1c - ,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1d,0x1d,0x5b,0x5b,0x13,0x13,0x13,0x13 - ,0x13,0x13,0x13,0x0a,0x0a,0x0a,0x09,0x07,0x07,0x07,0x07,0x09,0x1c,0x5b - ,0x09,0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x12,0x09 - ,0x13,0x13,0x13,0x13,0x13,0x13,0x0a,0x0a,0x0a,0x0a,0x09,0x07,0x07,0x07 - ,0x07,0x09,0x1c,0x64,0x09,0x13,0x13,0x13,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c - ,0x1c,0x13,0x12,0x09,0x13,0x13,0x13,0x13,0x13,0x0a,0x0a,0x0a,0x0a,0x0a - ,0x09,0x07,0x07,0x07,0x07,0x09,0x13,0x64,0x0a,0x13,0x13,0x13,0x13,0x13 - ,0x13,0x13,0x13,0x13,0x13,0x12,0x12,0x0a,0x13,0x13,0x13,0x13,0x0a,0x0a - ,0x0a,0x0a,0x0a,0x09,0x07,0x07,0x07,0x07,0x07,0x07,0x13,0x09,0x13,0x13 - ,0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x12,0x09,0x13,0x13,0x13 - ,0x13,0x13,0x0a,0x0a,0x0a,0x0a,0x09,0x09,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x0a,0x0b,0x13,0x1c,0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x12,0x12 - ,0x0a,0x13,0x13,0x13,0x0a,0x0a,0x0a,0x0a,0x09,0x09,0x09,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x13,0x13,0x13,0x13,0x1c,0x1c,0x13,0x13,0x13 - ,0x13,0x12,0x12,0x09,0x13,0x13,0x13,0x13,0x0a,0x0a,0x0a,0x09,0x09,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x13 - ,0x13,0x13,0x13,0x13,0x13,0x09,0x09,0x13,0x13,0x13,0x0a,0x0a,0x0a,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07 + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x16,0x16,0x16,0x16,0x07,0x07,0x04,0x04,0x95,0x16,0x18 + ,0x94,0x94,0x94,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x16,0x16,0x16,0x16,0x19,0x19,0x19,0x19,0x19,0x19,0x07 + ,0x04,0x95,0x95,0x16,0x15,0x15,0x94,0x94,0x94,0x02,0x02,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x07,0x04,0x18,0x19,0x19,0x19,0x19,0x19 + ,0x19,0x19,0x19,0x18,0x07,0x04,0x95,0x16,0x18,0x18,0x16,0x14,0x95,0x14 + ,0x04,0x04,0x02,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x04,0x95,0x09,0x04,0x18 + ,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x07,0x07,0x04,0x95,0x18,0x18 + ,0x18,0x15,0x15,0x95,0x04,0x04,0x04,0x02,0x8f,0x8f,0x8f,0x8f,0x8f,0x04 + ,0x95,0x09,0x04,0x18,0x16,0x16,0x16,0x15,0x15,0x15,0x15,0x15,0x15,0x09 + ,0x04,0x95,0x15,0x15,0x18,0x16,0x15,0x15,0x04,0x04,0x04,0x04,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x04,0x95,0x09,0x04,0x15,0x15,0x15,0x15,0x15,0x95,0x15 + ,0x95,0x95,0x95,0x07,0x07,0x04,0x95,0x95,0x15,0x16,0x15,0x15,0x95,0x04 + ,0x04,0x04,0x02,0x8f,0x8f,0x8f,0x8f,0x04,0x95,0x07,0x04,0x95,0x95,0x95 + ,0x95,0x19,0x19,0x19,0x19,0x19,0x19,0x18,0x09,0x04,0x16,0x16,0x16,0x15 + ,0x15,0x95,0x95,0x94,0x04,0x04,0x02,0x8f,0x8f,0x8f,0x04,0x05,0x95,0x05 + ,0x07,0x95,0x15,0x16,0x16,0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x09,0x04 + ,0x16,0x16,0x18,0x18,0x16,0x16,0x15,0x94,0x04,0x04,0x02,0x8f,0x8f,0x8f + ,0x04,0x05,0x95,0x95,0x07,0x04,0x15,0x16,0x16,0x18,0x18,0x19,0x19,0x19 + ,0x19,0x19,0x09,0x05,0x04,0x16,0x18,0x18,0x16,0x15,0x15,0x95,0x94,0x04 + ,0x04,0x02,0x8f,0x8f,0x04,0x15,0x16,0x95,0x09,0x04,0x95,0x16,0x16,0x16 + ,0x16,0x16,0x16,0x16,0x16,0x16,0x15,0x05,0x04,0x16,0x16,0x16,0x16,0x15 + ,0x15,0x95,0x95,0x94,0x04,0x02,0x8f,0x8f,0x04,0x15,0x16,0x95,0x09,0x04 + ,0x95,0x15,0x15,0x15,0x15,0x15,0x15,0x95,0x95,0x95,0x95,0x07,0x04,0x95 + ,0x95,0x16,0x15,0x15,0x15,0x95,0x95,0x94,0x04,0x02,0x8f,0x8f,0x04,0x15 + ,0x16,0x95,0x09,0x04,0x95,0x95,0x95,0x95,0x95,0x95,0x95,0x95,0x95,0x95 + ,0x95,0x09,0x04,0x15,0x15,0x15,0x95,0x95,0x95,0x95,0x94,0x94,0x04,0x02 + ,0x8f,0x8f,0x04,0x15,0x16,0x95,0x09,0x04,0x95,0x15,0x19,0x19,0x19,0x19 + ,0x19,0x19,0x19,0x19,0x18,0x09,0x04,0x18,0x18,0x18,0x16,0x15,0x15,0x15 + ,0x95,0x94,0x04,0x02,0x8f,0x8f,0x04,0x15,0x16,0x95,0x09,0x04,0x95,0x15 + ,0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x09,0x04,0x18,0x18,0x16 + ,0x16,0x15,0x15,0x95,0x95,0x94,0x04,0x02,0x8f,0x8f,0x04,0x15,0x16,0x95 + ,0x09,0x04,0x95,0x15,0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x09 + ,0x04,0x18,0x16,0x16,0x15,0x15,0x95,0x95,0x95,0x94,0x04,0x02,0x8f,0x8f + ,0x04,0x15,0x16,0x95,0x09,0x04,0x95,0x15,0x19,0x19,0x19,0x19,0x19,0x19 + ,0x19,0x19,0x19,0x09,0x04,0x18,0x16,0x16,0x15,0x15,0x95,0x95,0x95,0x94 + ,0x04,0x02,0x8f,0x8f,0x04,0x15,0x16,0x94,0x09,0x04,0x95,0x15,0x19,0x18 + ,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x09,0x04,0x16,0x16,0x15,0x15,0x95 + ,0x95,0x95,0x94,0x94,0x04,0x02,0x8f,0x8f,0x04,0x15,0x16,0x05,0x09,0x04 + ,0x95,0x95,0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x95,0x09,0x04,0x95 + ,0x95,0x95,0x95,0x95,0x95,0x94,0x94,0x94,0x04,0x02,0x8f,0x8f,0x04,0x15 + ,0x16,0x05,0x07,0x04,0x95,0x95,0x95,0x95,0x95,0x95,0x95,0x95,0x95,0x95 + ,0x95,0x07,0x04,0x95,0x95,0x95,0x95,0x15,0x95,0x95,0x94,0x94,0x04,0x02 + ,0x8f,0x8f,0x04,0x05,0x16,0x95,0x07,0x04,0x95,0x95,0x16,0x18,0x18,0x18 + ,0x18,0x18,0x18,0x18,0x18,0x09,0x04,0x16,0x16,0x15,0x15,0x15,0x95,0x95 + ,0x94,0x94,0x04,0x02,0x8f,0x8f,0x04,0x05,0x16,0x05,0x07,0x95,0x16,0x16 + ,0x16,0x16,0x16,0x16,0x16,0x16,0x18,0x18,0x07,0x07,0x95,0x15,0x15,0x15 + ,0x15,0x95,0x95,0x94,0x94,0x94,0x02,0x8f,0x8f,0x8f,0x8f,0x04,0x16,0x07 + ,0x04,0x95,0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x05,0x04 + ,0x15,0x15,0x15,0x15,0x15,0x95,0x94,0x94,0x94,0x94,0x02,0x8f,0x8f,0x8f + ,0x8f,0x04,0x16,0x09,0x04,0x95,0x95,0x95,0x16,0x16,0x16,0x16,0x16,0x16 + ,0x16,0x15,0x05,0x04,0x15,0x15,0x15,0x95,0x95,0x94,0x94,0x94,0x94,0x94 + ,0x02,0x8f,0x8f,0x8f,0x8f,0x04,0x95,0x09,0x04,0x95,0x95,0x95,0x95,0x95 + ,0x95,0x95,0x95,0x95,0x95,0x05,0x05,0x94,0x95,0x95,0x95,0x95,0x94,0x94 + ,0x94,0x94,0x94,0x02,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x95,0x04,0x14,0x95 + ,0x95,0x95,0x95,0x95,0x95,0x95,0x95,0x95,0x95,0x05,0x04,0x95,0x95,0x95 + ,0x95,0x95,0x94,0x94,0x94,0x94,0x04,0x02,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x04,0x14,0x95,0x16,0x15,0x15,0x15,0x95,0x95,0x95,0x95,0x95,0x05,0x05 + ,0x94,0x95,0x15,0x15,0x94,0x94,0x94,0x94,0x04,0x04,0x02,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x95,0x95,0x95,0x95,0x16,0x16,0x15,0x15,0x15 + ,0x15,0x05,0x05,0x04,0x95,0x15,0x95,0x95,0x94,0x94,0x94,0x02,0x02,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x95 + ,0x95,0x95,0x95,0x95,0x95,0x04,0x04,0x95,0x95,0x95,0x94,0x94,0x94,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f }; const unsigned char spriteTorch1[] = { 32, 32 // width, height - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x12,0x12,0x12,0x12,0x07,0x07,0x07,0x07,0x09 - ,0x09,0x00,0x00,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x0c,0x07,0x07,0x15,0x15,0x1e,0x15,0x0c,0x15,0x12,0x12 - ,0x12,0x12,0x07,0x09,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x0c,0x07,0x07,0x0c,0x15,0x0c,0x15,0x1e,0x15 - ,0x2f,0x12,0x12,0x64,0x64,0x12,0x12,0x09,0x09,0x09,0x09,0x09,0x00,0x00 - ,0x00,0x00,0x00,0x07,0x07,0x0c,0x1e,0x07,0x07,0x07,0x0c,0x15,0x2f,0x2f - ,0x1e,0x1e,0x15,0x2f,0x7f,0x7f,0x12,0x12,0x12,0x12,0x12,0x12,0x09,0x12 - ,0x09,0x12,0x09,0x09,0x00,0x00,0x00,0x07,0x07,0x07,0x1e,0x15,0x1e,0x1e - ,0x0c,0x1e,0x1e,0x15,0x15,0x2f,0x2f,0x7f,0x7f,0x12,0x12,0x64,0x64,0x64 - ,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x09,0x00,0x00,0x00,0x00,0x07,0x07 - ,0x07,0x1e,0x0c,0x0c,0x1e,0x15,0x15,0x0c,0x1e,0x15,0x1e,0x2f,0x7f,0x7f - ,0x12,0x12,0x12,0x12,0x12,0x12,0x09,0x12,0x09,0x12,0x09,0x09,0x00,0x00 - ,0x00,0x00,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x0c,0x15,0x1e - ,0x1e,0x1e,0x2f,0x12,0x12,0x64,0x64,0x12,0x12,0x09,0x09,0x09,0x09,0x09 - ,0x00,0x00,0x00,0x00,0x00,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x0c,0x15,0x1e,0x15,0x0c,0x15,0x12,0x12,0x12,0x12,0x07,0x09 - ,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x12,0x12,0x12,0x12,0x07 - ,0x07,0x07,0x07,0x09,0x09,0x00,0x00,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07 + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x04,0x04,0x05,0x04,0x8f,0x8f,0x8f,0x8f,0x03 + ,0x03,0x00,0x00,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x88,0x8f,0x8f,0x99,0x99,0x9c,0x99,0x88,0x99,0x05,0x05 + ,0x04,0x04,0x8f,0x03,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x88,0x8f,0x8f,0x88,0x99,0x88,0x99,0x9c,0x99 + ,0x1d,0x05,0x05,0x08,0x08,0x05,0x04,0x03,0x03,0x03,0x03,0x03,0x00,0x00 + ,0x00,0x00,0x00,0x8f,0x8f,0x88,0x9c,0x8f,0x8f,0x8f,0x88,0x99,0x1d,0x1d + ,0x9c,0x9c,0x99,0x1d,0x1f,0x1f,0x05,0x05,0x05,0x05,0x05,0x04,0x03,0x04 + ,0x03,0x04,0x03,0x03,0x00,0x00,0x00,0x8f,0x8f,0x8f,0x9c,0x99,0x9c,0x9c + ,0x88,0x9c,0x9c,0x99,0x99,0x1d,0x1d,0x1f,0x1f,0x05,0x05,0x08,0x08,0x08 + ,0x05,0x05,0x04,0x05,0x04,0x05,0x04,0x03,0x00,0x00,0x00,0x00,0x8f,0x8f + ,0x8f,0x9c,0x88,0x88,0x9c,0x99,0x99,0x88,0x9c,0x99,0x9c,0x1d,0x1f,0x1f + ,0x05,0x05,0x05,0x05,0x05,0x04,0x03,0x04,0x03,0x04,0x03,0x03,0x00,0x00 + ,0x00,0x00,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x88,0x99,0x9c + ,0x9c,0x9c,0x1d,0x05,0x05,0x08,0x08,0x05,0x04,0x03,0x03,0x03,0x03,0x03 + ,0x00,0x00,0x00,0x00,0x00,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x88,0x99,0x9c,0x99,0x88,0x99,0x05,0x05,0x05,0x04,0x8f,0x03 + ,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x04,0x04,0x04,0x04,0x8f + ,0x8f,0x8f,0x8f,0x03,0x03,0x00,0x00,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f }; const unsigned char spriteTorch2[] = { 32, 32 // width, height - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x12,0x12,0x12,0x12,0x07,0x07,0x07,0x07,0x09 - ,0x09,0x00,0x00,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x0c,0x0c,0x0c,0x07,0x07,0x07,0x15,0x1e,0x15,0x0c,0x15,0x12,0x12 - ,0x12,0x12,0x07,0x09,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x0c,0x15,0x1e,0x15,0x0c,0x15,0x0c,0x15,0x15,0x1e - ,0x15,0x12,0x12,0x64,0x64,0x12,0x12,0x09,0x09,0x09,0x09,0x09,0x00,0x00 - ,0x00,0x00,0x00,0x07,0x07,0x07,0x07,0x0c,0x15,0x1e,0x2f,0x1e,0x15,0x1e - ,0x1e,0x2f,0x2f,0x2f,0x2f,0x7f,0x12,0x12,0x12,0x12,0x12,0x12,0x09,0x12 - ,0x09,0x12,0x09,0x09,0x00,0x00,0x00,0x07,0x07,0x0c,0x07,0x1e,0x0c,0x0c - ,0x15,0x2f,0x1e,0x1e,0x1e,0x1e,0x2f,0x2f,0x7f,0x12,0x12,0x64,0x64,0x64 - ,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x09,0x00,0x00,0x00,0x00,0x07,0x07 - ,0x0c,0x0c,0x07,0x0c,0x0c,0x15,0x0c,0x15,0x0c,0x1e,0x2f,0x1e,0x2f,0x7f - ,0x12,0x12,0x12,0x12,0x12,0x12,0x09,0x12,0x09,0x12,0x09,0x09,0x00,0x00 - ,0x00,0x00,0x07,0x07,0x07,0x0c,0x07,0x07,0x07,0x0c,0x15,0x0c,0x15,0x15 - ,0x15,0x1e,0x15,0x12,0x12,0x64,0x64,0x12,0x12,0x09,0x09,0x09,0x09,0x09 - ,0x00,0x00,0x00,0x00,0x00,0x07,0x07,0x07,0x0c,0x07,0x07,0x07,0x0c,0x07 - ,0x07,0x0c,0x0c,0x15,0x1e,0x15,0x0c,0x15,0x12,0x12,0x12,0x12,0x07,0x09 - ,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x12,0x12,0x12,0x12,0x07 - ,0x07,0x07,0x07,0x09,0x09,0x00,0x00,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07 - ,0x07,0x07 + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x04,0x04,0x05,0x04,0x8f,0x8f,0x8f,0x8f,0x03 + ,0x03,0x00,0x00,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x88,0x88,0x88,0x8f,0x8f,0x8f,0x99,0x9c,0x99,0x88,0x99,0x05,0x05 + ,0x04,0x04,0x8f,0x03,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x88,0x99,0x9c,0x99,0x88,0x99,0x88,0x99,0x99,0x9c + ,0x99,0x05,0x05,0x08,0x08,0x05,0x04,0x03,0x03,0x03,0x03,0x03,0x00,0x00 + ,0x00,0x00,0x00,0x8f,0x8f,0x8f,0x8f,0x88,0x99,0x9c,0x1d,0x9c,0x99,0x9c + ,0x9c,0x1d,0x1d,0x1d,0x1d,0x1f,0x05,0x05,0x05,0x05,0x05,0x04,0x03,0x04 + ,0x03,0x04,0x03,0x03,0x00,0x00,0x00,0x8f,0x8f,0x88,0x8f,0x9c,0x88,0x88 + ,0x99,0x1d,0x9c,0x9c,0x9c,0x9c,0x1d,0x1d,0x1f,0x05,0x05,0x08,0x08,0x08 + ,0x05,0x05,0x04,0x05,0x04,0x05,0x04,0x03,0x00,0x00,0x00,0x00,0x8f,0x8f + ,0x88,0x88,0x8f,0x88,0x88,0x99,0x88,0x99,0x88,0x9c,0x1d,0x9c,0x1d,0x1f + ,0x05,0x05,0x05,0x05,0x05,0x04,0x03,0x04,0x03,0x04,0x03,0x03,0x00,0x00 + ,0x00,0x00,0x8f,0x8f,0x8f,0x88,0x8f,0x8f,0x8f,0x88,0x99,0x88,0x99,0x99 + ,0x99,0x9c,0x99,0x05,0x05,0x08,0x08,0x05,0x04,0x03,0x03,0x03,0x03,0x03 + ,0x00,0x00,0x00,0x00,0x00,0x8f,0x8f,0x8f,0x88,0x8f,0x8f,0x8f,0x88,0x8f + ,0x8f,0x88,0x88,0x99,0x9c,0x99,0x88,0x99,0x05,0x05,0x05,0x04,0x8f,0x03 + ,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x04,0x04,0x04,0x04,0x8f + ,0x8f,0x8f,0x8f,0x03,0x03,0x00,0x00,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f + ,0x8f,0x8f }; const unsigned char *textures[] = {texture1, texture2, texture3, texture4}; @@ -995,26 +995,32 @@ RCL_Unit ceilingHeightAt(int16_t x, int16_t y) */ inline void pixelFunc(RCL_PixelInfo *pixel) { +int16_t intensity; + if (pixel->position.y == MIDDLE_ROW) zBuffer[pixel->position.x] = pixel->depth; uint8_t color; +/* RCL_Unit depth = pixel->depth - RCL_UNITS_PER_SQUARE * 3; depth = depth > 0 ? depth : 1; - int intensity = 7 - (depth * 7) / (RCL_UNITS_PER_SQUARE * 5); + intensity = 0;//32 - (depth * 32) / (RCL_UNITS_PER_SQUARE * 4); if (intensity < 0) intensity = 0; +*/ + + intensity = 8 - pixel->depth / (RCL_UNITS_PER_SQUARE / 2); if (pixel->isWall) { if ((pixel->hit.direction == 0 || pixel->hit.direction == 2)) intensity -= 2; - if (intensity < 0) - intensity = 0; +// if (intensity < 0) +// intensity = 0; #if RCL_COMPUTE_WALL_TEXCOORDS == 1 color = sampleImage(textures[pixel->hit.type],pixel->texCoords.x,pixel->texCoords.y); @@ -1022,18 +1028,45 @@ inline void pixelFunc(RCL_PixelInfo *pixel) color = textures[pixel->hit.type][2]; #endif - color = addIntensity(color,intensity - 3); + color = addIntensity(color,intensity); +// color = addIntensity(color,intensity - 3); } else + { + intensity = 8 - pixel->depth / (RCL_UNITS_PER_SQUARE / 2); + color = pixel->isFloor ? - floorGradient[RCL_clamp(intensity,0,14)] : - ceilGradient[RCL_clamp(intensity,0,14)]; + addIntensity(186,intensity): + addIntensity(135,intensity); + + //floorGradient[RCL_clamp(intensity,0,14)] : + //ceilGradient[RCL_clamp(intensity,0,14)]; + } putSubsampledPixel(pixel->position.x,pixel->position.y,color); } void draw() { +/* +uint16_t count = 0; + +for (uint8_t y = 0; y < 22; ++y) +for (uint8_t x = 0; x < 16; ++x) +{ +if (count > 255) +break; + +for (uint8_t i = 0; i < 4; ++i) +for (uint8_t j = 0; j < 4; ++j) +pokitto.display.drawPixel(x * 4 + i,y * 4 + j,count); + +count++; +} + +return; +*/ + RCL_renderComplex(player.mCamera,floorHeightAt,ceilingHeightAt,textureAt,defaultConstraints); RCL_Unit previousDepth; @@ -1101,7 +1134,7 @@ int main() initGradient(ceilGradient,rgbToIndex(6,2,1)); defaultConstraints.maxHits = 8; - defaultConstraints.maxSteps = 10; + defaultConstraints.maxSteps = 15; player.setPositionSquare(6,4); diff --git a/demo3.cpp b/demo3.cpp index dc4b0f3..9ed036b 100644 --- a/demo3.cpp +++ b/demo3.cpp @@ -84,352 +84,352 @@ const int8_t heightProfile[] = { const unsigned char imageBackground[] = { 110, 44 // width, height - ,0xc7,0xff,0xff,0xff,0xbc,0xbc,0xbc,0xbc,0xc6,0xc6,0xff,0xff,0xbc,0xbc - ,0xc5,0xc5,0xc5,0xc4,0xc4,0xc4,0xc4,0xc3,0xc4,0xc3,0xc3,0xc3,0xc2,0xc3 - ,0xc2,0xc1,0xc2,0xc1,0xc2,0xc1,0x29,0x38,0x38,0x38,0x38,0x38,0x38,0x38 - ,0x38,0x38,0xc7,0xff,0xff,0xff,0xbc,0xbc,0xbc,0xbc,0xc6,0xc6,0xff,0xff - ,0xbc,0xbc,0xc5,0xc5,0xc4,0xc5,0xc4,0xc4,0xc4,0xc4,0xc3,0xc3,0xc3,0xc3 - ,0xc3,0xc2,0xc2,0xc2,0xc2,0xc2,0xc1,0xc1,0x29,0x38,0x38,0x38,0x38,0x38 - ,0x38,0x38,0x38,0x38,0xc7,0xff,0xff,0xff,0xbc,0xbc,0xbc,0xbc,0xc6,0xc6 - ,0xff,0xff,0xbc,0xbc,0xac,0xc5,0xc5,0xc4,0xc4,0xc4,0xc4,0xc3,0xc4,0xc3 - ,0xc3,0xc3,0xc2,0xc3,0xc2,0xc1,0xc2,0xc1,0xc2,0xc1,0x29,0x38,0x38,0x38 - ,0x38,0x38,0x38,0x38,0x38,0x38,0xc7,0xbc,0xff,0xff,0xbc,0xbc,0xbc,0xbc - ,0xc6,0xc6,0xff,0xff,0xbc,0xbc,0xbc,0xc5,0xc4,0xc5,0xc4,0xc4,0xc4,0xc4 - ,0xc3,0xc3,0xc3,0xc3,0xc3,0xc2,0xc2,0xc2,0xc2,0xc2,0xc1,0xc1,0x29,0x39 - ,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0xc7,0xff,0xff,0xff,0xbc,0xbc - ,0xbc,0xbc,0xc6,0xc6,0xff,0xff,0xbc,0xbc,0xbc,0xbc,0xc5,0xc4,0xc4,0xc4 - ,0xc4,0xc3,0xc4,0xc3,0xc3,0xc3,0xc2,0xc3,0xc2,0xc1,0xc2,0xc1,0xc2,0xc1 - ,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0xc7,0xbc,0xff,0xff - ,0xbc,0xbc,0xbc,0xbc,0xc6,0xbc,0xff,0xff,0xbc,0xbc,0xbc,0xbc,0xc4,0xc5 - ,0xc4,0xc4,0xc4,0xc4,0xc3,0xc3,0xc3,0xc3,0xc3,0xc2,0xc2,0xc2,0xc2,0xc2 - ,0xc1,0xc1,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0xc7,0xff - ,0xff,0xff,0xbc,0xbc,0xbc,0xbc,0xc6,0xbc,0xff,0xff,0xbc,0xbc,0xbc,0xbc - ,0xc5,0xc4,0xc4,0xc4,0xc4,0xc3,0xc4,0xc3,0xc3,0xc3,0xc2,0xc3,0xc2,0xc1 - ,0xc2,0xc1,0xc2,0xc1,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39 - ,0xc7,0xbc,0xff,0xff,0xbc,0xbc,0xbc,0xbc,0xc6,0xbc,0xff,0xff,0xff,0xbc - ,0xbc,0xbc,0xc4,0xc5,0xc4,0xc4,0xc4,0xc4,0xc3,0xc3,0xc3,0xc3,0xc3,0xc2 - ,0xc2,0xc2,0xc2,0xc2,0xc1,0xc1,0x39,0x3a,0x39,0x3a,0x39,0x3a,0x39,0x3a - ,0x39,0x3a,0xc7,0xbc,0xff,0xbc,0xbc,0xbc,0xbc,0xbc,0xac,0xbc,0xff,0xff - ,0xff,0xbc,0xbc,0xbc,0xc5,0xc4,0xc4,0xc4,0xc4,0xc3,0xc4,0xc3,0xc3,0xc3 - ,0xc2,0xc3,0xc2,0xc1,0xc2,0xc1,0xc2,0xc1,0x3a,0x39,0x3a,0x39,0x3a,0x39 - ,0x3a,0x39,0x3a,0x39,0xc7,0xbc,0xff,0xff,0xbc,0xbc,0xbc,0xbc,0xbc,0xbc - ,0xff,0xff,0xff,0xbc,0xbc,0xbc,0xc4,0xc5,0xc4,0xc4,0xc4,0xc4,0xc3,0xc3 - ,0xc3,0xc3,0xc3,0xc2,0xc2,0xc2,0xc2,0xc2,0xc1,0xc1,0x3a,0x3a,0x3a,0x3a - ,0x3a,0x3a,0x3a,0x3a,0x3a,0x3a,0xc7,0xbc,0xff,0xbc,0xbc,0xbc,0xbc,0xbc - ,0xbc,0xbc,0xff,0xff,0xff,0xbc,0xbc,0xbc,0xc5,0xc4,0xc4,0xc4,0xc4,0xc3 - ,0xc4,0xc3,0xc3,0xc3,0xc2,0xc3,0xc2,0xc1,0xc2,0xc1,0xc2,0xc1,0x3a,0x3a - ,0x3a,0x3a,0x3a,0x3a,0x3a,0x3a,0x3a,0x3a,0xc7,0xbc,0xff,0xff,0xbc,0xbc - ,0xbc,0xbc,0xbc,0xbc,0xff,0xff,0xff,0xff,0xbc,0xbc,0xc4,0xc5,0xc4,0xc4 - ,0xc4,0xc4,0xc3,0xc3,0xc3,0xc3,0xc3,0xc2,0xc2,0xc2,0xc2,0xc2,0xc1,0xc1 - ,0x3a,0x3b,0x3a,0x3b,0x3a,0x3b,0x3a,0x3b,0x3a,0x3b,0xc7,0xbc,0xff,0xbc - ,0xbc,0xbc,0xff,0xbc,0xbc,0xbc,0xff,0xff,0xff,0xff,0xbc,0xbc,0xc5,0xc4 - ,0xc4,0xc4,0xc4,0xc3,0xc4,0xc3,0xc3,0xc3,0xc2,0xc3,0xc2,0xc1,0xc2,0xc1 - ,0xc2,0xc1,0x3b,0x3a,0x3b,0x3a,0x3b,0x3a,0x3b,0x3a,0x3b,0x3a,0xc7,0xbc - ,0xff,0xbc,0xbc,0xbc,0xff,0xff,0xbc,0xbc,0xff,0xff,0xff,0xff,0xbc,0xbc - ,0xc4,0xc5,0xc4,0xc4,0xc4,0xc4,0xc3,0xc3,0xc3,0xc3,0xc3,0xc2,0xc2,0xc2 - ,0xc2,0xc2,0xc1,0xc1,0x3b,0x3b,0x3b,0x3b,0x3b,0x3b,0x3b,0x3b,0x3b,0x3b - ,0xc7,0xbc,0xff,0xbc,0xbc,0xff,0xff,0xff,0xbc,0xbc,0xff,0xff,0xff,0xff - ,0xbc,0xbc,0xc5,0xc4,0xc4,0xc4,0xc4,0xc3,0xc4,0xc3,0xc3,0xc3,0xc2,0xc3 - ,0xc2,0xc1,0xc2,0xc1,0xc2,0xc1,0x3b,0x3b,0x3b,0x3b,0x3b,0x3b,0x3b,0x3b - ,0x3b,0x3b,0xc7,0xbc,0xbc,0xbc,0xbc,0xff,0xff,0xff,0xbc,0xbc,0xff,0xff - ,0xff,0xff,0xbc,0xbc,0xc4,0xc5,0xc4,0xc4,0xc4,0xc4,0xc3,0xc3,0xc3,0xc3 - ,0xc3,0xc2,0xc2,0xc2,0xc2,0xc2,0xc1,0xc1,0x3c,0x3b,0x3c,0x3b,0x3c,0x3b - ,0x3c,0x3b,0x3c,0x3b,0xc7,0xbc,0xff,0xbc,0xc7,0xff,0xff,0xff,0xbc,0xff - ,0xff,0xff,0xff,0xff,0xbc,0xbc,0xc5,0xc4,0xc4,0xc4,0xc4,0xc3,0xc4,0xc3 - ,0xc3,0xc3,0xc2,0xc3,0xc2,0xc1,0xc2,0xc1,0xc2,0xc1,0x29,0x3c,0x3b,0x3c - ,0x3b,0x3c,0x3b,0x3c,0x3b,0x3c,0xc7,0xbc,0xbc,0xbc,0xc7,0xff,0xff,0xff - ,0xff,0xbc,0xff,0xff,0xff,0xff,0xbc,0xbc,0xc4,0xc5,0xc4,0xc4,0xc4,0xc4 - ,0xc3,0xc3,0xc3,0xc3,0xc3,0xc2,0xc2,0xc2,0xc2,0xc2,0xc1,0xc1,0x29,0x3c - ,0x3c,0x3c,0x3c,0x3c,0x3c,0x3c,0x3c,0x3c,0xc7,0xbc,0xff,0xbc,0xc7,0xff - ,0xff,0xff,0xbc,0xff,0xff,0xff,0xff,0xff,0xbc,0xbc,0xc5,0xc4,0xc4,0xc4 - ,0xc4,0xc3,0xc4,0xc3,0xc3,0xc3,0xc2,0xc3,0xc2,0xc1,0xc2,0xc1,0xc2,0xc1 - ,0x29,0x3c,0x3c,0x3c,0x3c,0x3c,0x3c,0x3c,0x3c,0x3c,0xc7,0xbc,0xbc,0xbc - ,0xc7,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xbc,0xbc,0xbc,0xc4,0xc5 - ,0xc4,0xc4,0xc4,0xc4,0xc3,0xc3,0xc3,0xc3,0xc3,0xc2,0xc2,0xc2,0xc2,0xc2 - ,0xc1,0xc1,0x29,0x3d,0x3c,0x3d,0x3c,0x3d,0x3c,0x3d,0x3c,0x3d,0xc7,0xbc - ,0xbc,0xbc,0xc7,0xc7,0xff,0xff,0xbc,0xff,0xff,0xff,0xff,0xbc,0xbc,0xbc - ,0xac,0xc4,0xc4,0xc4,0xc4,0xc3,0xc4,0xc3,0xc3,0xc3,0xc2,0xc3,0xc2,0xc1 - ,0xc2,0xc1,0xc2,0xc1,0xc1,0x3c,0x3d,0x3c,0x3d,0x3c,0x3d,0x3c,0x3d,0x3c - ,0xc7,0xbc,0xbc,0xbc,0xc7,0xc7,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xbc - ,0xbc,0xbc,0xac,0xc5,0xc4,0xc4,0xc4,0xc4,0xc3,0xc3,0xc3,0xc3,0xc3,0xc2 - ,0xc2,0xc2,0xc2,0xc2,0xc1,0xc1,0xc1,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d - ,0x3d,0x3d,0xc7,0xc7,0xbc,0xbc,0xc7,0xc7,0xff,0xff,0xbc,0xff,0xff,0xff - ,0xbc,0xbc,0xbc,0xbc,0xbc,0xc4,0xc4,0xc4,0xc4,0xc3,0xc4,0xc3,0xc3,0xc3 - ,0xc2,0xc3,0xc2,0xc1,0xc2,0xc1,0xc2,0xc1,0xc1,0x3d,0x3d,0x3d,0x3d,0x3d - ,0x3d,0x3d,0x3d,0x3d,0xc7,0xc7,0xbc,0xbc,0xc7,0xc7,0xff,0xff,0xff,0xff - ,0xff,0xbc,0xbc,0xbc,0xbc,0xbc,0xbc,0xc5,0xc4,0xc4,0xc4,0xc4,0xc3,0xc3 - ,0xc3,0xc3,0xc3,0xc2,0xc2,0xc2,0xc2,0xc2,0xc1,0xc1,0xc1,0x3d,0x3e,0x3d - ,0x3e,0x3d,0x3e,0x3d,0x3e,0x3d,0xc7,0xc7,0xbc,0xbc,0xc7,0xc7,0xff,0xff - ,0xff,0xff,0xc6,0xbc,0xbc,0xbc,0xbc,0xbc,0xbc,0xac,0xc4,0xc4,0xc4,0xc3 - ,0xc4,0xc3,0xc3,0xc3,0xc2,0xc3,0xc2,0xc1,0xc2,0xc1,0xc2,0xc1,0xc1,0xc1 - ,0x3d,0x3e,0x3d,0x3e,0x3d,0x3e,0x3d,0x3e,0xc7,0xc7,0xbc,0xbc,0xc7,0xc7 - ,0xff,0xff,0xff,0xff,0xc6,0xc6,0xbc,0xbc,0xbc,0xbc,0xbc,0xac,0xc4,0xc4 - ,0xc4,0xc4,0xc3,0xc3,0xc3,0xc3,0xc3,0xc2,0xc2,0xc2,0xc2,0xc2,0xc1,0xc1 - ,0xc1,0xc1,0x3e,0x3e,0x3e,0x3e,0x3e,0x3e,0x3e,0x3e,0xc7,0xc7,0xbc,0xbc - ,0xc7,0xc7,0xff,0xff,0xff,0xbc,0xc6,0xc5,0xbc,0xbc,0xbc,0xbc,0xbc,0xbc - ,0xc4,0xc4,0xc4,0xc3,0xc4,0xc3,0xc3,0xc3,0xc2,0xc3,0xc2,0xc1,0xc2,0xc1 - ,0xc2,0xc1,0xc1,0xc1,0x3e,0x3e,0x3e,0x3e,0x3e,0x3e,0x3e,0x3e,0xc7,0xc7 - ,0xbc,0xbc,0xc7,0xc7,0xff,0xff,0xff,0xbc,0xc6,0xc6,0xbc,0xbc,0xbc,0xbc - ,0xbc,0xbc,0xc4,0xc4,0xc4,0xc4,0xc3,0xc3,0xc3,0xc3,0xc3,0xc2,0xc2,0xc2 - ,0xc2,0xc2,0xc1,0xc1,0xc1,0xc1,0x3e,0x3f,0x3e,0x3f,0x3e,0x3f,0x3e,0x3f - ,0xc7,0xc7,0xbc,0xbc,0xc7,0xc7,0xff,0xff,0xbc,0xbc,0xc6,0xc5,0xbc,0xbc - ,0xbc,0xbc,0xbc,0xbc,0xc4,0xc4,0xc4,0xc3,0xc4,0xc3,0xc3,0xc3,0xc2,0xc3 - ,0xc2,0xc1,0xc2,0xc1,0xc2,0xc1,0xc1,0xc1,0x29,0x3e,0x3f,0x3e,0x3f,0x3e - ,0x3f,0x3e,0xc7,0xc7,0xbc,0xbc,0xc7,0xc7,0xff,0xff,0xbc,0xbc,0xc6,0xc6 - ,0xbc,0xbc,0xbc,0xbc,0xbc,0xbc,0xc4,0xc4,0xc4,0xc4,0xc3,0xc3,0xc3,0xc3 - ,0xc3,0xc2,0xc2,0xc2,0xc2,0xc2,0xc1,0xc1,0xc1,0xc1,0x29,0x3f,0x3f,0x3f - ,0x3f,0x3f,0x3f,0x3f,0xc7,0xc7,0xbc,0xbc,0xc7,0xc7,0xff,0xff,0xbc,0xbc - ,0xc6,0xc5,0xbc,0xbc,0xbc,0xbc,0xbc,0xbc,0xc4,0xc4,0xc4,0xc3,0xc4,0xc3 - ,0xc3,0xc3,0xc2,0xc3,0xc2,0xc1,0xc2,0xc1,0xc2,0xc1,0xc1,0xc1,0x29,0x3f - ,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0xc7,0xc7,0xbc,0xbc,0xc7,0xc7,0xff,0xff - ,0xbc,0xac,0xc6,0xc6,0xbc,0xbc,0xbc,0xbc,0xbc,0xbc,0xc4,0xc4,0xc4,0xc4 - ,0xc3,0xc3,0xc3,0xc3,0xc3,0xc2,0xc2,0xc2,0xc2,0xc2,0xc1,0xc1,0xc1,0xc1 - ,0x29,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0xc7,0xc7,0xbc,0xc7,0xc7,0xc7 - ,0xff,0xff,0xbc,0xc6,0xc6,0xc5,0xc6,0xbc,0xbc,0xbc,0xbc,0xbc,0xc4,0xc4 - ,0xc4,0xc3,0xc4,0xc3,0xc3,0xc3,0xc2,0xc3,0xc2,0xc1,0xc2,0xc1,0xc2,0xc1 - ,0xc1,0xc1,0x29,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0xc7,0xc7,0xbc,0xc7 - ,0xc7,0xc7,0xff,0xff,0xbc,0xc6,0xc6,0xc6,0xc5,0xbc,0xbc,0xbc,0xbc,0xbc - ,0xc4,0xc4,0xc4,0xc4,0xc3,0xc3,0xc3,0xc3,0xc3,0xc2,0xc2,0xc2,0xc2,0xc2 - ,0xc1,0xc1,0xc1,0xc1,0x29,0x3e,0x3f,0x3e,0x3f,0x3e,0x3f,0x3e,0xc7,0xc7 - ,0xc7,0xc7,0xc7,0xc7,0xff,0xff,0xc6,0xc6,0xc6,0xc5,0xc6,0xc5,0xbc,0xbc - ,0xbc,0xac,0xc4,0xc4,0xc4,0xc3,0xc4,0xc3,0xc3,0xc3,0xc2,0xc3,0xc2,0xc1 - ,0xc2,0xc1,0xc2,0xc1,0xc1,0xc1,0x29,0x3f,0x3e,0x3f,0x3e,0x3f,0x3e,0x3f - ,0xc7,0xc7,0xc7,0xc7,0xc7,0xc7,0xc7,0xff,0xc6,0xc6,0xc6,0xc6,0xc5,0xc5 - ,0xbc,0xbc,0xbc,0xac,0xc4,0xc4,0xc4,0xc4,0xc3,0xc3,0xc3,0xc3,0xc3,0xc2 - ,0xc2,0xc2,0xc2,0xc2,0xc1,0xc1,0xc1,0xc1,0x29,0x3e,0x3e,0x3e,0x3e,0x3e - ,0x3e,0x3e,0xc7,0xc7,0xc7,0xc7,0xc7,0xc7,0xc7,0xff,0xc6,0xc6,0xc6,0xc5 - ,0xc6,0xc5,0xbc,0xbc,0xbc,0xc4,0xc4,0xc4,0xc4,0xc3,0xc4,0xc3,0xc3,0xc3 - ,0xc2,0xc3,0xc2,0xc1,0xc2,0xc1,0xc2,0xc1,0xc1,0xc1,0x29,0x3e,0x3e,0x3e - ,0x3e,0x3e,0x3e,0x3e,0xc7,0xc7,0xc7,0xc7,0xc7,0xc7,0xc6,0xff,0xc6,0xc6 - ,0xc6,0xc6,0xc5,0xc5,0xbc,0xbc,0xbc,0xc5,0xc4,0xc4,0xc4,0xc4,0xc3,0xc3 - ,0xc3,0xc3,0xc3,0xc2,0xc2,0xc2,0xc2,0xc2,0xc1,0xc1,0xc1,0xc1,0x29,0x3e - ,0x3d,0x3e,0x3d,0x3e,0x3d,0x3e,0xc7,0xc7,0xc7,0xc7,0xc7,0xc7,0xc7,0xc6 - ,0xc6,0xc6,0xc6,0xc5,0xc6,0xc5,0xbc,0xbc,0xbc,0xc4,0xc4,0xc4,0xc4,0xc3 - ,0xc4,0xc3,0xc3,0xc3,0xc2,0xc3,0xc2,0xc1,0xc2,0xc1,0xc2,0xc1,0xc1,0xc1 - ,0x29,0x3d,0x3e,0x3d,0x3e,0x3d,0x3e,0x3d,0xc7,0xc7,0xc7,0xc7,0xc7,0xc7 - ,0xc6,0xc7,0xc6,0xc6,0xc6,0xc6,0xc5,0xc5,0xbc,0xbc,0xbc,0xc5,0xc4,0xc4 - ,0xc4,0xc4,0xc3,0xc3,0xc3,0xc3,0xc3,0xc2,0xc2,0xc2,0xc2,0xc2,0xc1,0xc1 - ,0xc1,0xc1,0x29,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0xc7,0xc7,0xc7,0xc7 - ,0xc7,0xc7,0xc7,0xc6,0xc6,0xc6,0xc6,0xc5,0xc6,0xc5,0xc5,0xbc,0xac,0xc4 - ,0xc4,0xc4,0xc4,0xc3,0xc4,0xc3,0xc3,0xc3,0xc2,0xc3,0xc2,0xc1,0xc2,0xc1 - ,0xc2,0xc1,0xc1,0xc1,0x29,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0xc7,0xc7 - ,0xc7,0xc7,0xc7,0xc7,0xc6,0xc7,0xc6,0xc6,0xc6,0xc6,0xc5,0xc5,0xc5,0xc5 - ,0xc4,0xc5,0xc4,0xc4,0xc4,0xc4,0xc3,0xc3,0xc3,0xc3,0xc3,0xc2,0xc2,0xc2 - ,0xc2,0xc2,0xc1,0xc1,0xc1,0xc1,0x29,0x3c,0x3d,0x3c,0x3d,0x3c,0x3d,0x3c - ,0xc7,0xc7,0xc7,0xc7,0xc7,0xc7,0xc7,0xc6,0xc6,0xc6,0xc6,0xc5,0xc6,0xc5 - ,0xc5,0xc5,0xc5,0xc4,0xc4,0xc4,0xc4,0xc3,0xc4,0xc3,0xc3,0xc3,0xc2,0xc3 - ,0xc2,0xc1,0xc2,0xc1,0xc2,0xc1,0xc1,0xc1,0x29,0x3d,0x3c,0x3d,0x3c,0x3d - ,0x3c,0x3d,0xc7,0xc7,0xc7,0xc7,0xc7,0xc7,0xc6,0xc7,0xc6,0xc6,0xc6,0xc6 - ,0xc5,0xc5,0xc5,0xc5,0xc4,0xc5,0xc4,0xc4,0xc4,0xc4,0xc3,0xc3,0xc3,0xc3 - ,0xc3,0xc2,0xc2,0xc2,0xc2,0xc2,0xc1,0xc1,0xc1,0xc1,0x29,0x3c,0x3c,0x3c - ,0x3c,0x3c,0x3c,0x3c,0xc7,0xc7,0xc7,0xc7,0xc7,0xc7,0xc7,0xc6,0xc6,0xc6 - ,0xc6,0xc5,0xc6,0xc5,0xc5,0xc5,0xc5,0xc4,0xc4,0xc4,0xc4,0xc3,0xc4,0xc3 - ,0xc3,0xc3,0xc2,0xc3,0xc2,0xc1,0xc2,0xc1,0xc2,0xc1,0xc1,0xc1,0x3c,0x3c - ,0x3c,0x3c,0x3c,0x3c,0x3c,0x3c,0xc7,0xc7,0xc7,0xc7,0xc7,0xc7,0xc6,0xc7 - ,0xc6,0xc6,0xc6,0xc6,0xc5,0xc5,0xc5,0xc5,0xc4,0xc5,0xc4,0xc4,0xc4,0xc4 - ,0xc3,0xc3,0xc3,0xc3,0xc3,0xc2,0xc2,0xc2,0xc2,0xc2,0xc1,0xc1,0xc1,0xc1 - ,0x3b,0x3c,0x3b,0x3c,0x3b,0x3c,0x3b,0x3c,0xc7,0xc7,0xc7,0xc7,0xc7,0xc7 - ,0xc7,0xc6,0xc6,0xc6,0xc6,0xc5,0xc6,0xc5,0xc5,0xc5,0xc5,0xc4,0xc4,0xc4 - ,0xc4,0xc3,0xc4,0xc3,0xc3,0xc3,0xc2,0xc3,0xc2,0xc1,0xc2,0xc1,0xc2,0xc1 - ,0xc1,0xc1,0x3c,0x3b,0x3c,0x3b,0x3c,0x3b,0x3c,0x3b,0xc7,0xc7,0xc7,0xc7 - ,0xc7,0xc7,0xc6,0xc7,0xc6,0xc6,0xc6,0xc6,0xc5,0xc5,0xc5,0xc5,0xc4,0xc5 - ,0xc4,0xc4,0xc4,0xc4,0xc3,0xc3,0xc3,0xc3,0xc3,0xc2,0xc2,0xc2,0xc2,0xc2 - ,0xc1,0xc1,0xc1,0x29,0x3b,0x3b,0x3b,0x3b,0x3b,0x3b,0x3b,0x3b,0xc7,0xc7 - ,0xc7,0xc7,0xc7,0xc7,0xc7,0xc6,0xc6,0xc6,0xc6,0xc5,0xc6,0xc5,0xc5,0xc5 - ,0xc5,0xc4,0xc4,0xc4,0xc4,0xc3,0xc4,0xc3,0xc3,0xc3,0xc2,0xc3,0xc2,0xc1 - ,0xc2,0xc1,0xc2,0xc1,0xc1,0x29,0x3b,0x3b,0x3b,0x3b,0x3b,0x3b,0x3b,0x3b - ,0xc7,0xc7,0xc7,0xc7,0xc7,0xc7,0xc6,0xc7,0xc6,0xc6,0xc6,0xc6,0xc5,0xc5 - ,0xc5,0xc5,0xc4,0xc5,0xc4,0xc4,0xc4,0xc4,0xc3,0xc3,0xc3,0xc3,0xc3,0xc2 - ,0xc2,0xc2,0xc2,0xc2,0xc1,0xc1,0xc1,0x29,0x3a,0x3b,0x3a,0x3b,0x3a,0x3b - ,0x3a,0x3b,0xc7,0xc7,0xc7,0xc7,0xc7,0xc7,0xc7,0xc6,0xc6,0xc6,0xc6,0xc5 - ,0xc6,0xc5,0xc5,0xc5,0xc5,0xc4,0xc4,0xc4,0xc4,0xc3,0xc4,0xc3,0xc3,0xc3 - ,0xc2,0xc3,0xc2,0xc1,0xc2,0xc1,0xc2,0xc1,0xc1,0x29,0x3b,0x3a,0x3b,0x3a - ,0x3b,0x3a,0x3b,0x3a,0xc7,0xc7,0xc7,0xc7,0xc7,0xc7,0xc6,0xc7,0xc6,0xc6 - ,0xc6,0xc6,0xc5,0xc5,0xc5,0xc5,0xc4,0xc5,0xc4,0xc4,0xc4,0xc4,0xc3,0xc3 - ,0xc3,0xc3,0xc3,0xc2,0xc2,0xc2,0xc2,0xc2,0xc1,0xc1,0xc1,0x29,0x3a,0x3a - ,0x3a,0x3a,0x3a,0x3a,0x3a,0x3a,0xc7,0xc7,0xc7,0xc7,0xc7,0xc7,0xc7,0xc6 - ,0xc6,0xc6,0xc6,0xc5,0xc6,0xc5,0xc5,0xc5,0xc5,0xc4,0xc4,0xc4,0xc4,0xc3 - ,0xc4,0xc3,0xc3,0xc3,0xc2,0xc3,0xc2,0xc1,0xc2,0xc1,0xc2,0xc1,0xc1,0x3a - ,0x3a,0x3a,0x3a,0x3a,0x3a,0x3a,0x3a,0x3a,0xc7,0xc7,0xc7,0xc7,0xc7,0xc7 - ,0xc6,0xc7,0xc6,0xc6,0xc6,0xc6,0xc5,0xc5,0xc5,0xc5,0xc4,0xc5,0xc4,0xc4 - ,0xc4,0xc4,0xc3,0xc3,0xc3,0xc3,0xc3,0xc2,0xc2,0xc2,0xc2,0xc2,0xc1,0xc1 - ,0xc1,0x3a,0x3a,0x3a,0x3a,0x3a,0x3a,0x3a,0x3a,0x3a,0xc7,0xc7,0xc7,0xc7 - ,0xc7,0xc7,0xc7,0xc6,0xc6,0xc6,0xc6,0xc5,0xc6,0xc5,0xc5,0xc5,0xc5,0xc4 - ,0xc4,0xc4,0xc4,0xc3,0xc4,0xc3,0xc3,0xc3,0xc2,0xc3,0xc2,0xc1,0xc2,0xc1 - ,0xc2,0xc1,0xc1,0x3a,0x3a,0x3a,0x3a,0x3a,0x3a,0x3a,0x3a,0x3a,0xc7,0xc7 - ,0xc7,0xc7,0xc7,0xc7,0xc6,0xc7,0xc6,0xc6,0xc6,0xc6,0xc5,0xc5,0xc5,0xc5 - ,0xc4,0xc5,0xc4,0xc4,0xc4,0xc4,0xc3,0xc3,0xc3,0xc3,0xc3,0xc2,0xc2,0xc2 - ,0xc2,0xc2,0xc1,0xc1,0xc1,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39 - ,0xc7,0xc7,0xc7,0xc7,0xc7,0xc7,0xc7,0xc6,0xc6,0xc6,0xc6,0xc5,0xc6,0xc5 - ,0xc5,0xc5,0xc5,0xc4,0xc4,0xc4,0xc4,0xc3,0xc4,0xc3,0xc3,0xbc,0xac,0xc3 - ,0xc2,0xc1,0xc2,0xc1,0xc2,0xc1,0x29,0x39,0x39,0x39,0x39,0x39,0x39,0x39 - ,0x39,0x39,0xc7,0xc7,0xc7,0xc7,0xc7,0xc7,0xc6,0xc7,0xc6,0xc6,0xc6,0xc6 - ,0xc5,0xc5,0xc5,0xc5,0xc4,0xc5,0xc4,0xc4,0xc4,0xc4,0xc3,0xc3,0xc3,0xbc - ,0xbc,0xc2,0xc2,0xc2,0xc2,0xc2,0xc1,0xc1,0x29,0x39,0x39,0x39,0x39,0x39 - ,0x39,0x39,0x39,0x39,0xc7,0xc7,0xc7,0xc7,0xc7,0xc7,0xc7,0xc6,0xc6,0xc6 - ,0xc6,0xc5,0xc6,0xc5,0xc5,0xc5,0xc5,0xc4,0xc4,0xc4,0xc4,0xc3,0xc4,0xc3 - ,0xac,0xbc,0xbc,0xc3,0xc2,0xc1,0xc2,0xc1,0xc2,0xc1,0x29,0x39,0x39,0x39 - ,0x39,0x39,0x39,0x39,0x39,0x39,0xc7,0xc7,0xc7,0xc7,0xc7,0xc7,0xc6,0xc7 - ,0xc6,0xc6,0xc6,0xc6,0xc5,0xc5,0xc5,0xc5,0xc4,0xc5,0xc4,0xc4,0xc4,0xc4 - ,0xc3,0xc3,0xbc,0xbc,0xbc,0xc2,0xc2,0xc2,0xc2,0xc2,0xc1,0xc1,0x29,0x38 - ,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0xc7,0xc7,0xc7,0xc7,0xc7,0xc7 - ,0xc7,0xc6,0xc6,0xc6,0xc6,0xc5,0xc6,0xc5,0xc5,0xc5,0xc5,0xc4,0xc4,0xc4 - ,0xc4,0xc3,0xc4,0xc3,0xbc,0xbc,0xbc,0xc3,0xc2,0xc1,0xc2,0xc1,0xc2,0xc1 - ,0x29,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0xc7,0xc7,0xc7,0xc7 - ,0xc7,0xc7,0xc6,0xc7,0xc6,0xc6,0xc6,0xc6,0xc5,0xc5,0xc5,0xc5,0xc4,0xc5 - ,0xc4,0xc4,0xc4,0xc4,0xc3,0xc3,0xbc,0xbc,0xbc,0xc2,0xc2,0xc2,0xc2,0xc2 - ,0xc1,0xc1,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0xc7,0xc7 - ,0xc7,0xc7,0xc7,0xc7,0xc7,0xc6,0xc6,0xc6,0xc6,0xc5,0xc6,0xc5,0xc5,0xc5 - ,0xc5,0xc4,0xc4,0xc4,0xc4,0xc3,0xc4,0xc3,0xbc,0xbc,0xbc,0xbc,0xc2,0xc1 - ,0xc2,0xc1,0xc2,0xc1,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38 - ,0xc7,0xc7,0xc7,0xc7,0xc7,0xc7,0xc6,0xc7,0xc6,0xc6,0xc6,0xc6,0xc5,0xc5 - ,0xc5,0xc5,0xc4,0xc5,0xc4,0xc4,0xc4,0xc4,0xc3,0xc3,0xbc,0xbc,0xbc,0xbc - ,0xc2,0xc2,0xc2,0xc2,0xc1,0xc1,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38 - ,0x38,0x38,0xc7,0xc7,0xc7,0xc7,0xc7,0xc7,0xc7,0xc6,0xc6,0xc6,0xc6,0xc5 - ,0xc6,0xc5,0xc5,0xc5,0xc5,0xc4,0xc4,0xc4,0xc4,0xc3,0xc4,0xc3,0xbc,0xbc - ,0xbc,0xbc,0xac,0xc1,0xc2,0xc1,0xc2,0xc1,0x38,0x38,0x38,0x38,0x38,0x38 - ,0x38,0x38,0x38,0x38,0xc7,0xc7,0xc7,0xc7,0xc7,0xc7,0xc6,0xc7,0xc6,0xc6 - ,0xc6,0xc6,0xc5,0xc5,0xc5,0xc5,0xc4,0xc5,0xc4,0xc4,0xc4,0xc4,0xc3,0xc3 - ,0xbc,0xbc,0xbc,0xbc,0xbc,0xc2,0xc2,0xc2,0xc1,0xc1,0x38,0x38,0x38,0x38 - ,0x38,0x38,0x38,0x38,0x38,0x38,0xc7,0xc7,0xc7,0xc7,0xc7,0xc7,0xc7,0xc6 - ,0xc6,0xc6,0xc6,0xc5,0xc6,0xc5,0xc5,0xc5,0xc5,0xc4,0xc4,0xc4,0xc4,0xc3 - ,0xc4,0xac,0xbc,0xbc,0xbc,0xbc,0xbc,0xc1,0xc2,0xc1,0xc2,0xc1,0x39,0x39 - ,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0xc7,0xc7,0xc7,0xc7,0xc7,0xc7 - ,0xc6,0xc7,0xc6,0xc6,0xc6,0xc6,0xc5,0xc5,0xc5,0xc5,0xc4,0xc5,0xc4,0xc4 - ,0xc4,0xc4,0xc3,0xbc,0xbc,0xbc,0xbc,0xbc,0xac,0xc2,0xc2,0xc2,0xc1,0xc1 - ,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0xc7,0xc7,0xc7,0xc7 - ,0xc7,0xc7,0xc7,0xc6,0xc6,0xc6,0xc6,0xc5,0xc6,0xc5,0xc5,0xc5,0xc5,0xc4 - ,0xc4,0xc4,0xc4,0xc3,0xbc,0xbc,0xff,0xbc,0xbc,0xbc,0xc2,0xc1,0xc2,0xc1 - ,0xc2,0xc1,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0xc7,0xc7 - ,0xc7,0xc7,0xc7,0xc7,0xc6,0xc7,0xc6,0xc6,0xc6,0xc6,0xc5,0xc5,0xc5,0xc5 - ,0xc4,0xc5,0xc4,0xc4,0xc4,0xc4,0xbc,0xbc,0xff,0xff,0xbc,0xbc,0xc2,0xc2 - ,0xc2,0xc2,0xc1,0xc1,0x39,0x3a,0x39,0x3a,0x39,0x3a,0x39,0x3a,0x39,0x3a - ,0xc7,0xc7,0xc7,0xc7,0xc7,0xc7,0xc7,0xc6,0xc6,0xc6,0xc6,0xc5,0xc6,0xc5 - ,0xc5,0xc5,0xc5,0xc4,0xc4,0xc4,0xc4,0xc3,0xbc,0xff,0xff,0xff,0xbc,0xbc - ,0xc2,0xc1,0xc2,0xc1,0xc2,0xc1,0x29,0x3a,0x3a,0x3a,0x3a,0x3a,0x3a,0x3a - ,0x3a,0x3a,0xc7,0xc7,0xc7,0xc7,0xc7,0xc7,0xc6,0xc7,0xc6,0xc6,0xc6,0xc6 - ,0xc5,0xc5,0xc5,0xc5,0xc4,0xc5,0xc4,0xc4,0xc4,0xc4,0xbc,0xff,0xff,0xff - ,0xbc,0xbc,0xbc,0xc2,0xc2,0xc2,0xc1,0xc1,0x29,0x3a,0x3a,0x3a,0x3a,0x3a - ,0x3a,0x3a,0x3a,0x3a,0xc7,0xc7,0xc7,0xc7,0xc7,0xc7,0xc7,0xc6,0xc6,0xc6 - ,0xc6,0xc5,0xc6,0xc5,0xc5,0xc5,0xc5,0xc4,0xc4,0xc4,0xc4,0xc3,0xff,0xff - ,0xff,0xff,0xff,0xbc,0xbc,0xc1,0xc2,0xc1,0xc2,0xc1,0x29,0x3a,0x3b,0x3a - ,0x3b,0x3a,0x3b,0x3a,0x3b,0x3a,0xc7,0xc7,0xc7,0xc7,0xc7,0xc7,0xc6,0xc7 - ,0xc6,0xc6,0xc6,0xc6,0xc5,0xc5,0xc5,0xc5,0xc4,0xc5,0xc4,0xc4,0xc4,0xc4 - ,0xff,0xff,0xff,0xff,0xff,0xbc,0xbc,0xac,0xc2,0xc2,0xc1,0xc1,0x29,0x3b - ,0x3b,0x3b,0x3b,0x3b,0x3b,0x3b,0x3b,0x3b,0xc7,0xc7,0xc7,0xc7,0xc7,0xc7 - ,0xc7,0xc6,0xc6,0xc6,0xc6,0xc5,0xc6,0xc5,0xc5,0xc5,0xc5,0xc4,0xc4,0xc4 - ,0xc4,0xff,0xff,0xff,0xff,0xff,0xff,0xbc,0xbc,0xbc,0xc2,0xc1,0xc2,0xc1 - ,0x29,0x3c,0x3b,0x3c,0x3b,0x3c,0x3b,0x3c,0x3b,0x3c,0xc7,0xc7,0xc7,0xc7 - ,0xc7,0xc7,0xc6,0xc7,0xc6,0xc6,0xc6,0xc6,0xc5,0xc5,0xc5,0xc5,0xc4,0xc5 - ,0xc4,0xc4,0xc4,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xbc,0xbc,0xac,0xc2 - ,0xc1,0xc1,0xc1,0x3c,0x3c,0x3c,0x3c,0x3c,0x3c,0x3c,0x3c,0x3c,0xc7,0xc7 - ,0xc7,0xc7,0xc7,0xc7,0xc7,0xc6,0xc6,0xc6,0xc6,0xc5,0xc6,0xc5,0xc5,0xc5 - ,0xc5,0xc4,0xc4,0xc4,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xbc,0xbc - ,0xac,0xc1,0xc2,0xc1,0xc1,0x3c,0x3c,0x3c,0x3c,0x3c,0x3c,0x3c,0x3c,0x3c - ,0xc7,0xc7,0xc7,0xc7,0xc7,0xc7,0xc6,0xc7,0xc6,0xc6,0xc6,0xc6,0xc5,0xc5 - ,0xc5,0xc5,0xc4,0xc5,0xc4,0xc4,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff - ,0xbc,0xbc,0xbc,0xc2,0xc1,0xc1,0xc1,0x3c,0x3d,0x3c,0x3d,0x3c,0x3d,0x3c - ,0x3d,0x3c,0xc7,0xc7,0xc7,0xc7,0xc7,0xc7,0xc7,0xc6,0xc6,0xc6,0xc6,0xc5 - ,0xc6,0xc5,0xc5,0xc5,0xc5,0xc4,0xc4,0xc4,0xff,0xff,0xff,0xff,0xff,0xff - ,0xff,0xff,0xbc,0xbc,0xbc,0xc1,0xc2,0xc1,0xc1,0x3d,0x3d,0x3d,0x3d,0x3d - ,0x3d,0x3d,0x3d,0x3d,0xc7,0xc7,0xc7,0xc7,0xc7,0xc7,0xc6,0xc7,0xc6,0xc6 - ,0xc6,0xc6,0xc5,0xc5,0xc5,0xc5,0xc4,0xc5,0xc4,0xc4,0xff,0xff,0xff,0xff - ,0xff,0xff,0xff,0xff,0xbc,0xbc,0xbc,0xc2,0xc1,0xc1,0xc1,0x3d,0x3d,0x3d - ,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0xc7,0xc7,0xc7,0xc7,0xc7,0xc7,0xc7,0xc6 - ,0xc6,0xc6,0xc6,0xc5,0xc6,0xc5,0xc5,0xc5,0xc5,0xc4,0xc4,0xff,0xff,0xff - ,0xc4,0xff,0xff,0xff,0xff,0xff,0xff,0xbc,0xbc,0xc1,0xc2,0xc1,0xc1,0x29 - ,0x3d,0x3e,0x3d,0x3e,0x3d,0x3e,0x3d,0x3e,0xc7,0xc7,0xc7,0xc7,0xc7,0xc7 - ,0xc6,0xc7,0xc6,0xc6,0xc6,0xc6,0xc5,0xc5,0xc5,0xc5,0xc4,0xc5,0xc4,0xff - ,0xff,0xff,0xc3,0xff,0xff,0xff,0xff,0xff,0xff,0xbc,0xbc,0xc2,0xc1,0xc1 - ,0xc1,0x29,0x3e,0x3e,0x3e,0x3e,0x3e,0x3e,0x3e,0x3e,0xc7,0xc7,0xc7,0xc7 - ,0xc7,0xc7,0xc7,0xc6,0xc6,0xc6,0xc6,0xc5,0xc6,0xc5,0xc5,0xc5,0xc5,0xc4 - ,0xc4,0xff,0xff,0xc3,0xc4,0xff,0xff,0xff,0xff,0xff,0xff,0xbc,0xbc,0xc1 - ,0xc2,0xc1,0xc1,0x29,0x3e,0x3e,0x3e,0x3e,0x3e,0x3e,0x3e,0x3e,0xc7,0xc7 - ,0xc7,0xc7,0xc7,0xc7,0xc6,0xc7,0xc6,0xc6,0xc6,0xc6,0xc5,0xc5,0xc5,0xc5 - ,0xc4,0xc5,0xc4,0xff,0xff,0xc4,0xc3,0xff,0xff,0xff,0xff,0xff,0xff,0xbc - ,0xbc,0xc2,0xc1,0xc1,0xc1,0x29,0x3f,0x3e,0x3f,0x3e,0x3f,0x3e,0x3f,0x3e - ,0xc7,0xc7,0xc7,0xc7,0xc7,0xc7,0xc7,0xc6,0xc6,0xc6,0xc6,0xc5,0xc6,0xc5 - ,0xc5,0xc5,0xc5,0xc4,0xc4,0xff,0xff,0xc3,0xc4,0xff,0xff,0xff,0xff,0xff - ,0xff,0xff,0xbc,0xc1,0xc2,0xc1,0xc1,0xc1,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f - ,0x3f,0x3f,0xc7,0xc7,0xc7,0xc7,0xc7,0xc7,0xc6,0xc7,0xc6,0xc6,0xc6,0xc6 - ,0xc5,0xc5,0xc5,0xc5,0xc4,0xc5,0xc4,0xc4,0xc4,0xc4,0xc3,0xc3,0xff,0xff - ,0xff,0xff,0xff,0xff,0xbc,0xc2,0xc1,0xc1,0xc1,0xc1,0x3f,0x3f,0x3f,0x3f - ,0x3f,0x3f,0x3f,0x3f,0xc7,0xc7,0xc7,0xc7,0xc7,0xc7,0xc7,0xc6,0xc6,0xc6 - ,0xc6,0xc5,0xc6,0xc5,0xc5,0xc5,0xc5,0xc4,0xc4,0xc4,0xc4,0xc3,0xc4,0xc3 - ,0xff,0xff,0xff,0xff,0xff,0xff,0xbc,0xc1,0xc2,0xc1,0xc1,0xc1,0x3f,0x3f - ,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0xc7,0xc7,0xc7,0xc7,0xc7,0xc7,0xc6,0xc7 - ,0xc6,0xc6,0xc6,0xc6,0xc5,0xc5,0xc5,0xc5,0xc4,0xc5,0xc4,0xc4,0xc4,0xc4 - ,0xc3,0xc3,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xc2,0xc1,0xc1,0xc1,0xc1 - ,0xc1,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0xc7,0xc7,0xc7,0xc7,0xc7,0xc7 - ,0xc7,0xc6,0xc6,0xc6,0xc6,0xc5,0xc6,0xc5,0xc5,0xc5,0xc5,0xc4,0xc4,0xc4 - ,0xc4,0xc3,0xc4,0xc3,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xc1,0xc2,0xc1 - ,0xc1,0xc1,0xc1,0x3f,0x3e,0x3f,0x3e,0x3f,0x3e,0x3f,0xc7,0xc7,0xc7,0xc7 - ,0xc7,0xc7,0xc6,0xc7,0xc6,0xc6,0xc6,0xc6,0xc5,0xc5,0xc5,0xc5,0xc4,0xc5 - ,0xc4,0xc4,0xc4,0xc4,0xc3,0xc3,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xc2 - ,0xc1,0xc1,0xc1,0xc1,0xc1,0x3e,0x3e,0x3e,0x3e,0x3e,0x3e,0x3e,0xc7,0xc7 - ,0xc7,0xc7,0xc7,0xc7,0xc7,0xc6,0xc6,0xc6,0xc6,0xc5,0xc6,0xc5,0xc5,0xc5 - ,0xc5,0xc4,0xc4,0xc4,0xc4,0xc3,0xc4,0xc3,0xff,0xff,0xff,0xff,0xff,0xff - ,0xff,0xc1,0xc2,0xc1,0xc1,0xc1,0xc1,0x3e,0x3e,0x3e,0x3e,0x3e,0x3e,0x3e - ,0xc7,0xc7,0xc7,0xc7,0xc7,0xc7,0xc6,0xc7,0xc6,0xc6,0xc6,0xc6,0xc5,0xc5 - ,0xc5,0xc5,0xc4,0xc5,0xc4,0xc4,0xc4,0xc4,0xc3,0xc3,0xff,0xff,0xff,0xff - ,0xff,0xff,0xff,0xc2,0xc1,0xc1,0xc1,0xc1,0xc1,0x3d,0x3e,0x3d,0x3e,0x3d - ,0x3e,0x3d,0xc7,0xc7,0xc7,0xc7,0xc7,0xc7,0xc7,0xc6,0xc6,0xc6,0xc6,0xc5 - ,0xc6,0xc5,0xc5,0xc5,0xc5,0xc4,0xc4,0xc4,0xc4,0xc3,0xc4,0xc3,0xff,0xff - ,0xff,0xff,0xff,0xff,0xff,0xc1,0xc2,0xc1,0xc1,0xc1,0xc1,0x29,0x3d,0x3d - ,0x3d,0x3d,0x3d,0x3d,0xc7,0xc7,0xc7,0xc7,0xc7,0xc7,0xc6,0xc7,0xc6,0xc6 - ,0xc6,0xc6,0xc5,0xc5,0xc5,0xc5,0xc4,0xc5,0xc4,0xc4,0xc4,0xc4,0xc3,0xff - ,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xc2,0xc1,0xc1,0xc1,0xc1,0xc1,0x29 - ,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0xc7,0xc7,0xc7,0xc7,0xc7,0xc7,0xc7,0xc6 - ,0xc6,0xc6,0xc6,0xc5,0xc6,0xc5,0xc5,0xc5,0xc5,0xc4,0xc4,0xc4,0xc4,0xc3 - ,0xc4,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xc2,0xc1,0xc2,0xc1,0xc1,0xc1 - ,0xc1,0x29,0x3c,0x3d,0x3c,0x3d,0x3c,0x3d,0xc7,0xc7,0xc7,0xc7,0xc7,0xc7 - ,0xc6,0xc7,0xc6,0xc6,0xc6,0xc6,0xc5,0xc5,0xc5,0xc5,0xc4,0xc5,0xc4,0xc4 - ,0xc4,0xc4,0xc3,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xc2,0xc2,0xc1,0xc1 - ,0xc1,0xc1,0xc1,0x29,0x3c,0x3c,0x3c,0x3c,0x3c,0x3c,0xc7,0xc7,0xc7,0xc7 - ,0xc7,0xc7,0xc7,0xc6,0xc6,0xc6,0xc6,0xc5,0xc6,0xc5,0xc5,0xc5,0xc5,0xc4 - ,0xc4,0xc4,0xc4,0xc3,0xc4,0xff,0xff,0xff,0xc2,0xff,0xff,0xff,0xc2,0xc1 - ,0xc2,0xc1,0xc1,0xc1,0xc1,0x29,0x3c,0x3b,0x3c,0x3b,0x3c,0x3b,0xc7,0xc7 - ,0xc7,0xc7,0xc7,0xc7,0xc6,0xc7,0xc6,0xc6,0xc6,0xc6,0xc5,0xc5,0xc5,0xc5 - ,0xc4,0xc5,0xc4,0xc4,0xc4,0xc4,0xff,0xff,0xff,0xff,0xc3,0xff,0xff,0xff - ,0xc2,0xc2,0xc1,0xc1,0xc1,0xc1,0xc1,0x29,0x3b,0x3b,0x3b,0x3b,0x3b,0x3b - ,0xc7,0xc7,0xc7,0xc7,0xc7,0xc7,0xc7,0xc6,0xc6,0xc6,0xc6,0xc5,0xc6,0xc5 - ,0xc5,0xc5,0xc5,0xc4,0xc4,0xc4,0xc4,0xc3,0xff,0xff,0xff,0xff,0xc2,0xff - ,0xff,0xff,0xc2,0xc1,0xc2,0xc1,0xc1,0xc1,0xc1,0x29,0x3b,0x3b,0x3b,0x3b - ,0x3b,0x3b,0xc7,0xc7,0xc7,0xc7,0xc7,0xc7,0xc6,0xc7,0xc6,0xc6,0xc6,0xc6 - ,0xc5,0xc5,0xc5,0xc5,0xc4,0xc5,0xc4,0xc4,0xc4,0xc4,0xff,0xff,0xff,0xff - ,0xc3,0xff,0xff,0xff,0xc2,0xc2,0xc1,0xc1,0xc1,0xc1,0xc1,0x29,0x3a,0x3b - ,0x3a,0x3b,0x3a,0x3b,0xc7,0xc7,0xc7,0xc7,0xc7,0xc7,0xc7,0xc6,0xc6,0xc6 - ,0xc6,0xc5,0xc6,0xc5,0xc5,0xc5,0xc5,0xc4,0xc4,0xc4,0xc4,0xc3,0xff,0xff - ,0xff,0xff,0xc2,0xc3,0xff,0xff,0xc2,0xc1,0xc2,0xc1,0xc1,0xc1,0xc1,0x3a - ,0x3a,0x3a,0x3a,0x3a,0x3a,0x3a,0xc7,0xc7,0xc7,0xc7,0xc7,0xc7,0xc6,0xc7 - ,0xc6,0xc6,0xc6,0xc6,0xc5,0xc5,0xc5,0xc5,0xc4,0xc5,0xc4,0xc4,0xc4,0xc4 - ,0xff,0xff,0xff,0xff,0xc3,0xc2,0xff,0xff,0xc2,0xc2,0xc1,0xc1,0xc1,0xc1 - ,0xc1,0x3a,0x3a,0x3a,0x3a,0x3a,0x3a,0x3a,0xc7,0xc7,0xc7,0xc7,0xc7,0xc7 - ,0xc7,0xc6,0xc6,0xc6,0xc6,0xc5,0xc6,0xc5,0xc5,0xc5,0xc5,0xc4,0xc4,0xc4 - ,0xc4,0xc3,0xff,0xff,0xff,0xff,0xc2,0xc3,0xff,0xc1,0xc2,0xc1,0xc2,0xc1 - ,0xc1,0xc1,0xc1,0x39,0x3a,0x39,0x3a,0x39,0x3a,0x39,0xc7,0xc7,0xc7,0xc7 - ,0xc7,0xc7,0xc6,0xc7,0xc6,0xc6,0xc6,0xc6,0xc5,0xc5,0xc5,0xc5,0xc4,0xc5 - ,0xc4,0xc4,0xc4,0xc4,0xc3,0xff,0xff,0xff,0xc3,0xc2,0xc2,0xc2,0xc2,0xc2 - ,0xc1,0xc1,0xc1,0xc1,0x29,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0xc7,0xc7 - ,0xc7,0xbc,0xc7,0xc7,0xc7,0xc6,0xc6,0xc6,0xc6,0xc5,0xc6,0xc5,0xc5,0xc5 - ,0xc5,0xc4,0xc4,0xc4,0xc4,0xc3,0xc4,0xff,0xff,0xff,0xc2,0xc3,0xc2,0xc1 - ,0xc2,0xc1,0xc2,0xc1,0xc1,0xc1,0x29,0x39,0x39,0x39,0x39,0x39,0x39,0x39 - ,0xc7,0xc7,0xbc,0xbc,0xc7,0xc7,0xc6,0xc7,0xc6,0xc6,0xc6,0xc6,0xc5,0xc5 - ,0xc5,0xc5,0xc4,0xc5,0xc4,0xc4,0xc4,0xc4,0xc3,0xc3,0xff,0xff,0xc3,0xc2 - ,0xc2,0xc2,0xc2,0xc2,0xc1,0xc1,0xc1,0xc1,0x29,0x39,0x39,0x39,0x39,0x39 - ,0x39,0x39,0xc7,0xc7,0xbc,0xbc,0xbc,0xc7,0xc7,0xc6,0xc6,0xc6,0xc6,0xc5 - ,0xff,0xc5,0xc5,0xc5,0xc5,0xc4,0xc4,0xc4,0xc4,0xc3,0xc4,0xc3,0xff,0xff - ,0xc2,0xc3,0xc2,0xc1,0xc2,0xc1,0xc2,0xc1,0xc1,0xc1,0x38,0x38,0x38,0x38 - ,0x38,0x38,0x38,0x38,0xc7,0xbc,0xbc,0xbc,0xbc,0xbc,0xc6,0xc7,0xc6,0xc6 - ,0xc6,0xff,0xff,0xbc,0xc5,0xc5,0xc4,0xc5,0xc4,0xc4,0xc4,0xc4,0xc3,0xc3 - ,0xff,0xc3,0xc3,0xc2,0xc2,0xc2,0xc2,0xc2,0xc1,0xc1,0xc1,0xc1,0x38,0x38 - ,0x38,0x38,0x38,0x38,0x38,0x38,0xc7,0xbc,0xff,0xff,0xbc,0xbc,0xc7,0xc6 - ,0xc6,0xc6,0xc6,0xff,0xff,0xbc,0xc5,0xc5,0xc5,0xc4,0xc4,0xc4,0xc4,0xc3 - ,0xc4,0xc3,0xc3,0xc3,0xc2,0xc3,0xc2,0xc1,0xc2,0xc1,0xc2,0xc1,0xc1,0x29 - ,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0xc7,0xff,0xff,0xff,0xbc,0xbc - ,0xbc,0xc7,0xc6,0xc6,0xc6,0xff,0xbc,0xbc,0xc5,0xc5,0xc4,0xc5,0xc4,0xc4 - ,0xc4,0xc4,0xc3,0xc3,0xc3,0xc3,0xc3,0xc2,0xc2,0xc2,0xc2,0xc2,0xc1,0xc1 - ,0xc1,0x29,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38 + ,0xef,0x0f,0x0f,0x0f,0x2f,0x2f,0x2f,0x2f,0xef,0xef,0x0f,0x0f,0x2f,0x2f + ,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xdf,0xef,0xdf,0xdf,0xdf,0xdf,0xdf + ,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xbb,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf + ,0xaf,0xaf,0xef,0x0f,0x0f,0x0f,0x2f,0x2f,0x2f,0x2f,0xef,0xef,0x0f,0x0f + ,0x2f,0x2f,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xdf,0xdf,0xdf,0xdf + ,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xbb,0xaf,0xaf,0xaf,0xaf,0xaf + ,0xaf,0xaf,0xaf,0xaf,0xef,0x0f,0x0f,0x0f,0x2f,0x2f,0x2f,0x2f,0xef,0xef + ,0x0f,0x0f,0x2f,0x2f,0x0b,0xef,0xef,0xef,0xef,0xef,0xef,0xdf,0xef,0xdf + ,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xbb,0xaf,0xaf,0xaf + ,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xef,0x2f,0x0f,0x0f,0x2f,0x2f,0x2f,0x2f + ,0xef,0xef,0x0f,0x0f,0x2f,0x2f,0x2f,0xef,0xef,0xef,0xef,0xef,0xef,0xef + ,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xbb,0xaf + ,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xef,0x0f,0x0f,0x0f,0x2f,0x2f + ,0x2f,0x2f,0xef,0xef,0x0f,0x0f,0x2f,0x2f,0x2f,0x2f,0xef,0xef,0xef,0xef + ,0xef,0xdf,0xef,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf + ,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xef,0x2f,0x0f,0x0f + ,0x2f,0x2f,0x2f,0x2f,0xef,0x2f,0x0f,0x0f,0x2f,0x2f,0x2f,0x2f,0xef,0xef + ,0xef,0xef,0xef,0xef,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf + ,0xdf,0xdf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xef,0x0f + ,0x0f,0x0f,0x2f,0x2f,0x2f,0x2f,0xef,0x2f,0x0f,0x0f,0x2f,0x2f,0x2f,0x2f + ,0xef,0xef,0xef,0xef,0xef,0xdf,0xef,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf + ,0xdf,0xdf,0xdf,0xdf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf + ,0xef,0x2f,0x0f,0x0f,0x2f,0x2f,0x2f,0x2f,0xef,0x2f,0x0f,0x0f,0x0f,0x2f + ,0x2f,0x2f,0xef,0xef,0xef,0xef,0xef,0xef,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf + ,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf + ,0xaf,0xaf,0xef,0x2f,0x0f,0x2f,0x2f,0x2f,0x2f,0x2f,0x0b,0x2f,0x0f,0x0f + ,0x0f,0x2f,0x2f,0x2f,0xef,0xef,0xef,0xef,0xef,0xdf,0xef,0xdf,0xdf,0xdf + ,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf + ,0xaf,0xaf,0xaf,0xaf,0xef,0x2f,0x0f,0x0f,0x2f,0x2f,0x2f,0x2f,0x2f,0x2f + ,0x0f,0x0f,0x0f,0x2f,0x2f,0x2f,0xef,0xef,0xef,0xef,0xef,0xef,0xdf,0xdf + ,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xaf,0xaf,0xaf,0xaf + ,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xef,0x2f,0x0f,0x2f,0x2f,0x2f,0x2f,0x2f + ,0x2f,0x2f,0x0f,0x0f,0x0f,0x2f,0x2f,0x2f,0xef,0xef,0xef,0xef,0xef,0xdf + ,0xef,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xaf,0xaf + ,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xef,0x2f,0x0f,0x0f,0x2f,0x2f + ,0x2f,0x2f,0x2f,0x2f,0x0f,0x0f,0x0f,0x0f,0x2f,0x2f,0xef,0xef,0xef,0xef + ,0xef,0xef,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf + ,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xef,0x2f,0x0f,0x2f + ,0x2f,0x2f,0x0f,0x2f,0x2f,0x2f,0x0f,0x0f,0x0f,0x0f,0x2f,0x2f,0xef,0xef + ,0xef,0xef,0xef,0xdf,0xef,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf + ,0xdf,0xdf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xef,0x2f + ,0x0f,0x2f,0x2f,0x2f,0x0f,0x0f,0x2f,0x2f,0x0f,0x0f,0x0f,0x0f,0x2f,0x2f + ,0xef,0xef,0xef,0xef,0xef,0xef,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf + ,0xdf,0xdf,0xdf,0xdf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf + ,0xef,0x2f,0x0f,0x2f,0x2f,0x0f,0x0f,0x0f,0x2f,0x2f,0x0f,0x0f,0x0f,0x0f + ,0x2f,0x2f,0xef,0xef,0xef,0xef,0xef,0xdf,0xef,0xdf,0xdf,0xdf,0xdf,0xdf + ,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf + ,0xaf,0xaf,0xef,0x2f,0x2f,0x2f,0x2f,0x0f,0x0f,0x0f,0x2f,0x2f,0x0f,0x0f + ,0x0f,0x0f,0x2f,0x2f,0xef,0xef,0xef,0xef,0xef,0xef,0xdf,0xdf,0xdf,0xdf + ,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0x9f,0xaf,0x9f,0xaf,0x9f,0xaf + ,0x9f,0xaf,0x9f,0xaf,0xef,0x2f,0x0f,0x2f,0xef,0x0f,0x0f,0x0f,0x2f,0x0f + ,0x0f,0x0f,0x0f,0x0f,0x2f,0x2f,0xef,0xef,0xef,0xef,0xef,0xdf,0xef,0xdf + ,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xbb,0x9f,0xaf,0x9f + ,0xaf,0x9f,0xaf,0x9f,0xaf,0x9f,0xef,0x2f,0x2f,0x2f,0xef,0x0f,0x0f,0x0f + ,0x0f,0x2f,0x0f,0x0f,0x0f,0x0f,0x2f,0x2f,0xef,0xef,0xef,0xef,0xef,0xef + ,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xbb,0x9f + ,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0xef,0x2f,0x0f,0x2f,0xef,0x0f + ,0x0f,0x0f,0x2f,0x0f,0x0f,0x0f,0x0f,0x0f,0x2f,0x2f,0xef,0xef,0xef,0xef + ,0xef,0xdf,0xef,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf + ,0xbb,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0xef,0x2f,0x2f,0x2f + ,0xef,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x2f,0x2f,0x2f,0xef,0xef + ,0xef,0xef,0xef,0xef,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf + ,0xdf,0xdf,0xbb,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0xef,0x2f + ,0x2f,0x2f,0xef,0xef,0x0f,0x0f,0x2f,0x0f,0x0f,0x0f,0x0f,0x2f,0x2f,0x2f + ,0x0b,0xef,0xef,0xef,0xef,0xdf,0xef,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf + ,0xdf,0xdf,0xdf,0xdf,0xdf,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f + ,0xef,0x2f,0x2f,0x2f,0xef,0xef,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x2f + ,0x2f,0x2f,0x0b,0xef,0xef,0xef,0xef,0xef,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf + ,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f + ,0x9f,0x9f,0xef,0xef,0x2f,0x2f,0xef,0xef,0x0f,0x0f,0x2f,0x0f,0x0f,0x0f + ,0x2f,0x2f,0x2f,0x2f,0x2f,0xef,0xef,0xef,0xef,0xdf,0xef,0xdf,0xdf,0xdf + ,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0x9f,0x9f,0x9f,0x9f,0x9f + ,0x9f,0x9f,0x9f,0x9f,0xef,0xef,0x2f,0x2f,0xef,0xef,0x0f,0x0f,0x0f,0x0f + ,0x0f,0x2f,0x2f,0x2f,0x2f,0x2f,0x2f,0xef,0xef,0xef,0xef,0xef,0xdf,0xdf + ,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0x9f,0x9f,0x9f + ,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0xef,0xef,0x2f,0x2f,0xef,0xef,0x0f,0x0f + ,0x0f,0x0f,0xef,0x2f,0x2f,0x2f,0x2f,0x2f,0x2f,0x0b,0xef,0xef,0xef,0xdf + ,0xef,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf + ,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0xef,0xef,0x2f,0x2f,0xef,0xef + ,0x0f,0x0f,0x0f,0x0f,0xef,0xef,0x2f,0x2f,0x2f,0x2f,0x2f,0x0b,0xef,0xef + ,0xef,0xef,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf + ,0xdf,0xdf,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0xef,0xef,0x2f,0x2f + ,0xef,0xef,0x0f,0x0f,0x0f,0x2f,0xef,0xef,0x2f,0x2f,0x2f,0x2f,0x2f,0x2f + ,0xef,0xef,0xef,0xdf,0xef,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf + ,0xdf,0xdf,0xdf,0xdf,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0xef,0xef + ,0x2f,0x2f,0xef,0xef,0x0f,0x0f,0x0f,0x2f,0xef,0xef,0x2f,0x2f,0x2f,0x2f + ,0x2f,0x2f,0xef,0xef,0xef,0xef,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf + ,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f + ,0xef,0xef,0x2f,0x2f,0xef,0xef,0x0f,0x0f,0x2f,0x2f,0xef,0xef,0x2f,0x2f + ,0x2f,0x2f,0x2f,0x2f,0xef,0xef,0xef,0xdf,0xef,0xdf,0xdf,0xdf,0xdf,0xdf + ,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xbb,0x9f,0x9f,0x9f,0x9f,0x9f + ,0x9f,0x9f,0xef,0xef,0x2f,0x2f,0xef,0xef,0x0f,0x0f,0x2f,0x2f,0xef,0xef + ,0x2f,0x2f,0x2f,0x2f,0x2f,0x2f,0xef,0xef,0xef,0xef,0xdf,0xdf,0xdf,0xdf + ,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xbb,0x9f,0x9f,0x9f + ,0x9f,0x9f,0x9f,0x9f,0xef,0xef,0x2f,0x2f,0xef,0xef,0x0f,0x0f,0x2f,0x2f + ,0xef,0xef,0x2f,0x2f,0x2f,0x2f,0x2f,0x2f,0xef,0xef,0xef,0xdf,0xef,0xdf + ,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xbb,0x9f + ,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0xef,0xef,0x2f,0x2f,0xef,0xef,0x0f,0x0f + ,0x2f,0x0b,0xef,0xef,0x2f,0x2f,0x2f,0x2f,0x2f,0x2f,0xef,0xef,0xef,0xef + ,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf + ,0xbb,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0xef,0xef,0x2f,0xef,0xef,0xef + ,0x0f,0x0f,0x2f,0xef,0xef,0xef,0xef,0x2f,0x2f,0x2f,0x2f,0x2f,0xef,0xef + ,0xef,0xdf,0xef,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf + ,0xdf,0xdf,0xbb,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0xef,0xef,0x2f,0xef + ,0xef,0xef,0x0f,0x0f,0x2f,0xef,0xef,0xef,0xef,0x2f,0x2f,0x2f,0x2f,0x2f + ,0xef,0xef,0xef,0xef,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf + ,0xdf,0xdf,0xdf,0xdf,0xbb,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0xef,0xef + ,0xef,0xef,0xef,0xef,0x0f,0x0f,0xef,0xef,0xef,0xef,0xef,0xef,0x2f,0x2f + ,0x2f,0x0b,0xef,0xef,0xef,0xdf,0xef,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf + ,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xbb,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f + ,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0x0f,0xef,0xef,0xef,0xef,0xef,0xef + ,0x2f,0x2f,0x2f,0x0b,0xef,0xef,0xef,0xef,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf + ,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xbb,0x9f,0x9f,0x9f,0x9f,0x9f + ,0x9f,0x9f,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0x0f,0xef,0xef,0xef,0xef + ,0xef,0xef,0x2f,0x2f,0x2f,0xef,0xef,0xef,0xef,0xdf,0xef,0xdf,0xdf,0xdf + ,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xbb,0x9f,0x9f,0x9f + ,0x9f,0x9f,0x9f,0x9f,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0x0f,0xef,0xef + ,0xef,0xef,0xef,0xef,0x2f,0x2f,0x2f,0xef,0xef,0xef,0xef,0xef,0xdf,0xdf + ,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xbb,0x9f + ,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef + ,0xef,0xef,0xef,0xef,0xef,0xef,0x2f,0x2f,0x2f,0xef,0xef,0xef,0xef,0xdf + ,0xef,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf + ,0xbb,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0xef,0xef,0xef,0xef,0xef,0xef + ,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0x2f,0x2f,0x2f,0xef,0xef,0xef + ,0xef,0xef,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf + ,0xdf,0xdf,0xbb,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0xef,0xef,0xef,0xef + ,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0x2f,0x0b,0xef + ,0xef,0xef,0xef,0xdf,0xef,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf + ,0xdf,0xdf,0xdf,0xdf,0xbb,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0xef,0xef + ,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef + ,0xef,0xef,0xef,0xef,0xef,0xef,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf + ,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xbb,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f + ,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef + ,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xdf,0xef,0xdf,0xdf,0xdf,0xdf,0xdf + ,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xbb,0x9f,0x9f,0x9f,0x9f,0x9f + ,0x9f,0x9f,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef + ,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xdf,0xdf,0xdf,0xdf + ,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xbb,0x9f,0x9f,0x9f + ,0x9f,0x9f,0x9f,0x9f,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef + ,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xdf,0xef,0xdf + ,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0x9f,0x9f + ,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef + ,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef + ,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf + ,0xaf,0x9f,0xaf,0x9f,0xaf,0x9f,0xaf,0x9f,0xef,0xef,0xef,0xef,0xef,0xef + ,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef + ,0xef,0xdf,0xef,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf + ,0xdf,0xdf,0x9f,0xaf,0x9f,0xaf,0x9f,0xaf,0x9f,0xaf,0xef,0xef,0xef,0xef + ,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef + ,0xef,0xef,0xef,0xef,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf + ,0xdf,0xdf,0xdf,0xbb,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xef,0xef + ,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef + ,0xef,0xef,0xef,0xef,0xef,0xdf,0xef,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf + ,0xdf,0xdf,0xdf,0xdf,0xdf,0xbb,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf + ,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef + ,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf + ,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xbb,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf + ,0xaf,0xaf,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef + ,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xdf,0xef,0xdf,0xdf,0xdf + ,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xbb,0xaf,0xaf,0xaf,0xaf + ,0xaf,0xaf,0xaf,0xaf,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef + ,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xdf,0xdf + ,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xbb,0xaf,0xaf + ,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef + ,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xdf + ,0xef,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xaf + ,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xef,0xef,0xef,0xef,0xef,0xef + ,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef + ,0xef,0xef,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf + ,0xdf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xef,0xef,0xef,0xef + ,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef + ,0xef,0xef,0xef,0xdf,0xef,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf + ,0xdf,0xdf,0xdf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xef,0xef + ,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef + ,0xef,0xef,0xef,0xef,0xef,0xef,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf + ,0xdf,0xdf,0xdf,0xdf,0xdf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf + ,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef + ,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xdf,0xef,0xdf,0xdf,0x2f,0x0b,0xdf + ,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xbb,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf + ,0xaf,0xaf,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef + ,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xdf,0xdf,0xdf,0x2f + ,0x2f,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xbb,0xaf,0xaf,0xaf,0xaf,0xaf + ,0xaf,0xaf,0xaf,0xaf,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef + ,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xdf,0xef,0xdf + ,0x0b,0x2f,0x2f,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xbb,0xaf,0xaf,0xaf + ,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef + ,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef + ,0xdf,0xdf,0x2f,0x2f,0x2f,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xbb,0xaf + ,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xef,0xef,0xef,0xef,0xef,0xef + ,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef + ,0xef,0xdf,0xef,0xdf,0x2f,0x2f,0x2f,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf + ,0xbb,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xef,0xef,0xef,0xef + ,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef + ,0xef,0xef,0xef,0xef,0xdf,0xdf,0x2f,0x2f,0x2f,0xdf,0xdf,0xdf,0xdf,0xdf + ,0xdf,0xdf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xef,0xef + ,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef + ,0xef,0xef,0xef,0xef,0xef,0xdf,0xef,0xdf,0x2f,0x2f,0x2f,0x2f,0xdf,0xdf + ,0xdf,0xdf,0xdf,0xdf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf + ,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef + ,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xdf,0xdf,0x2f,0x2f,0x2f,0x2f + ,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf + ,0xaf,0xaf,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef + ,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xdf,0xef,0xdf,0x2f,0x2f + ,0x2f,0x2f,0x0b,0xdf,0xdf,0xdf,0xdf,0xdf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf + ,0xaf,0xaf,0xaf,0xaf,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef + ,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xdf,0xdf + ,0x2f,0x2f,0x2f,0x2f,0x2f,0xdf,0xdf,0xdf,0xdf,0xdf,0xaf,0xaf,0xaf,0xaf + ,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef + ,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xdf + ,0xef,0x0b,0x2f,0x2f,0x2f,0x2f,0x2f,0xdf,0xdf,0xdf,0xdf,0xdf,0xaf,0xaf + ,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xef,0xef,0xef,0xef,0xef,0xef + ,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef + ,0xef,0xef,0xdf,0x2f,0x2f,0x2f,0x2f,0x2f,0x0b,0xdf,0xdf,0xdf,0xdf,0xdf + ,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xef,0xef,0xef,0xef + ,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef + ,0xef,0xef,0xef,0xdf,0x2f,0x2f,0x0f,0x2f,0x2f,0x2f,0xdf,0xdf,0xdf,0xdf + ,0xdf,0xdf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xef,0xef + ,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef + ,0xef,0xef,0xef,0xef,0xef,0xef,0x2f,0x2f,0x0f,0x0f,0x2f,0x2f,0xdf,0xdf + ,0xdf,0xdf,0xdf,0xdf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf + ,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef + ,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xdf,0x2f,0x0f,0x0f,0x0f,0x2f,0x2f + ,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xbb,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf + ,0xaf,0xaf,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef + ,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0x2f,0x0f,0x0f,0x0f + ,0x2f,0x2f,0x2f,0xdf,0xdf,0xdf,0xdf,0xdf,0xbb,0xaf,0xaf,0xaf,0xaf,0xaf + ,0xaf,0xaf,0xaf,0xaf,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef + ,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xdf,0x0f,0x0f + ,0x0f,0x0f,0x0f,0x2f,0x2f,0xdf,0xdf,0xdf,0xdf,0xdf,0xbb,0xaf,0xaf,0xaf + ,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef + ,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef + ,0x0f,0x0f,0x0f,0x0f,0x0f,0x2f,0x2f,0x0b,0xdf,0xdf,0xdf,0xdf,0xbb,0xaf + ,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xef,0xef,0xef,0xef,0xef,0xef + ,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef + ,0xef,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x2f,0x2f,0x2f,0xdf,0xdf,0xdf,0xdf + ,0xbb,0x9f,0xaf,0x9f,0xaf,0x9f,0xaf,0x9f,0xaf,0x9f,0xef,0xef,0xef,0xef + ,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef + ,0xef,0xef,0xef,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x2f,0x2f,0x0b,0xdf + ,0xdf,0xdf,0xdf,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0xef,0xef + ,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef + ,0xef,0xef,0xef,0xef,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x2f,0x2f + ,0x0b,0xdf,0xdf,0xdf,0xdf,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f + ,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef + ,0xef,0xef,0xef,0xef,0xef,0xef,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f + ,0x2f,0x2f,0x2f,0xdf,0xdf,0xdf,0xdf,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f + ,0x9f,0x9f,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef + ,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f + ,0x0f,0x0f,0x2f,0x2f,0x2f,0xdf,0xdf,0xdf,0xdf,0x9f,0x9f,0x9f,0x9f,0x9f + ,0x9f,0x9f,0x9f,0x9f,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef + ,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0x0f,0x0f,0x0f,0x0f + ,0x0f,0x0f,0x0f,0x0f,0x2f,0x2f,0x2f,0xdf,0xdf,0xdf,0xdf,0x9f,0x9f,0x9f + ,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef + ,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0x0f,0x0f,0x0f + ,0xef,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x2f,0x2f,0xdf,0xdf,0xdf,0xdf,0xbb + ,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0xef,0xef,0xef,0xef,0xef,0xef + ,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0x0f + ,0x0f,0x0f,0xdf,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x2f,0x2f,0xdf,0xdf,0xdf + ,0xdf,0xbb,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0xef,0xef,0xef,0xef + ,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef + ,0xef,0x0f,0x0f,0xdf,0xef,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x2f,0x2f,0xdf + ,0xdf,0xdf,0xdf,0xbb,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0xef,0xef + ,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef + ,0xef,0xef,0xef,0x0f,0x0f,0xef,0xdf,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x2f + ,0x2f,0xdf,0xdf,0xdf,0xdf,0xbb,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f + ,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef + ,0xef,0xef,0xef,0xef,0xef,0x0f,0x0f,0xdf,0xef,0x0f,0x0f,0x0f,0x0f,0x0f + ,0x0f,0x0f,0x2f,0xdf,0xdf,0xdf,0xdf,0xdf,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f + ,0x9f,0x9f,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef + ,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xdf,0xdf,0x0f,0x0f + ,0x0f,0x0f,0x0f,0x0f,0x2f,0xdf,0xdf,0xdf,0xdf,0xdf,0x9f,0x9f,0x9f,0x9f + ,0x9f,0x9f,0x9f,0x9f,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef + ,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xdf,0xef,0xdf + ,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x2f,0xdf,0xdf,0xdf,0xdf,0xdf,0x9f,0x9f + ,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef + ,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef + ,0xdf,0xdf,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0xdf,0xdf,0xdf,0xdf,0xdf + ,0xdf,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0xef,0xef,0xef,0xef,0xef,0xef + ,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef + ,0xef,0xdf,0xef,0xdf,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0xdf,0xdf,0xdf + ,0xdf,0xdf,0xdf,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0xef,0xef,0xef,0xef + ,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef + ,0xef,0xef,0xef,0xef,0xdf,0xdf,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0xdf + ,0xdf,0xdf,0xdf,0xdf,0xdf,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0xef,0xef + ,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef + ,0xef,0xef,0xef,0xef,0xef,0xdf,0xef,0xdf,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f + ,0x0f,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f + ,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef + ,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xdf,0xdf,0x0f,0x0f,0x0f,0x0f + ,0x0f,0x0f,0x0f,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0x9f,0x9f,0x9f,0x9f,0x9f + ,0x9f,0x9f,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef + ,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xdf,0xef,0xdf,0x0f,0x0f + ,0x0f,0x0f,0x0f,0x0f,0x0f,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xbb,0x9f,0x9f + ,0x9f,0x9f,0x9f,0x9f,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef + ,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xdf,0x0f + ,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xbb + ,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef + ,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xdf + ,0xef,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf + ,0xdf,0xbb,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0xef,0xef,0xef,0xef,0xef,0xef + ,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef + ,0xef,0xef,0xdf,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0xdf,0xdf,0xdf,0xdf + ,0xdf,0xdf,0xdf,0xbb,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0xef,0xef,0xef,0xef + ,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef + ,0xef,0xef,0xef,0xdf,0xef,0x0f,0x0f,0x0f,0xdf,0x0f,0x0f,0x0f,0xdf,0xdf + ,0xdf,0xdf,0xdf,0xdf,0xdf,0xbb,0x9f,0xaf,0x9f,0xaf,0x9f,0xaf,0xef,0xef + ,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef + ,0xef,0xef,0xef,0xef,0xef,0xef,0x0f,0x0f,0x0f,0x0f,0xdf,0x0f,0x0f,0x0f + ,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xbb,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf + ,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef + ,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xdf,0x0f,0x0f,0x0f,0x0f,0xdf,0x0f + ,0x0f,0x0f,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xbb,0xaf,0xaf,0xaf,0xaf + ,0xaf,0xaf,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef + ,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0x0f,0x0f,0x0f,0x0f + ,0xdf,0x0f,0x0f,0x0f,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xbb,0xaf,0xaf + ,0xaf,0xaf,0xaf,0xaf,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef + ,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xdf,0x0f,0x0f + ,0x0f,0x0f,0xdf,0xdf,0x0f,0x0f,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xaf + ,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef + ,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef + ,0x0f,0x0f,0x0f,0x0f,0xdf,0xdf,0x0f,0x0f,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf + ,0xdf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xef,0xef,0xef,0xef,0xef,0xef + ,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef + ,0xef,0xdf,0x0f,0x0f,0x0f,0x0f,0xdf,0xdf,0x0f,0xdf,0xdf,0xdf,0xdf,0xdf + ,0xdf,0xdf,0xdf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xef,0xef,0xef,0xef + ,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef + ,0xef,0xef,0xef,0xef,0xdf,0x0f,0x0f,0x0f,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf + ,0xdf,0xdf,0xdf,0xdf,0xbb,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xef,0xef + ,0xef,0x2f,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef + ,0xef,0xef,0xef,0xef,0xef,0xdf,0xef,0x0f,0x0f,0x0f,0xdf,0xdf,0xdf,0xdf + ,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xbb,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf + ,0xef,0xef,0x2f,0x2f,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef + ,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xdf,0xdf,0x0f,0x0f,0xdf,0xdf + ,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xbb,0xaf,0xaf,0xaf,0xaf,0xaf + ,0xaf,0xaf,0xef,0xef,0x2f,0x2f,0x2f,0xef,0xef,0xef,0xef,0xef,0xef,0xef + ,0x0f,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xdf,0xef,0xdf,0x0f,0x0f + ,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xaf,0xaf,0xaf,0xaf + ,0xaf,0xaf,0xaf,0xaf,0xef,0x2f,0x2f,0x2f,0x2f,0x2f,0xef,0xef,0xef,0xef + ,0xef,0x0f,0x0f,0x2f,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xdf,0xdf + ,0x0f,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xaf,0xaf + ,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xef,0x2f,0x0f,0x0f,0x2f,0x2f,0xef,0xef + ,0xef,0xef,0xef,0x0f,0x0f,0x2f,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xdf + ,0xef,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xbb + ,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xef,0x0f,0x0f,0x0f,0x2f,0x2f + ,0x2f,0xef,0xef,0xef,0xef,0x0f,0x2f,0x2f,0xef,0xef,0xef,0xef,0xef,0xef + ,0xef,0xef,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf + ,0xdf,0xbb,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf }; RCL_Unit floorHeightAt(int16_t x, int16_t y) @@ -473,10 +473,11 @@ inline void pixelFunc(RCL_PixelInfo *pixel) { if (pixel->hit.square.x != selectedSquare.x || pixel->hit.square.y != selectedSquare.y || (editing && pokitto.frameCount % 2) == 0) { - intensity = pixel->depth / (RCL_UNITS_PER_SQUARE * 3); + intensity = pixel->depth / (RCL_UNITS_PER_SQUARE * 2); intensity += pixel->hit.direction % 2 == 0 ? 2 : 0; - color = wallGradients[pixel->hit.type][RCL_clamp(7 + intensity,0,14)]; +color = addIntensity(squareColors[pixel->hit.type],intensity - 6); +// color = wallGradients[pixel->hit.type][RCL_clamp(7 + intensity,0,14)]; } else color = 30; @@ -484,9 +485,10 @@ inline void pixelFunc(RCL_PixelInfo *pixel) else if (pixel->isFloor) { if (!pixel->isHorizon) - intensity = pixel->depth / (RCL_UNITS_PER_SQUARE * 4); + intensity = pixel->depth / RCL_UNITS_PER_SQUARE; - color = floorGradient[RCL_clamp(7 + intensity,0,14)]; +color = addIntensity(floorColor,intensity - 3); +// color = floorGradient[RCL_clamp(7 + intensity,0,14)]; } else { @@ -557,7 +559,9 @@ int main() defaultConstraints.maxHits = 6; defaultConstraints.maxSteps = 20; - floorColor = rgbToIndex(4,2,0); +// floorColor = rgbToIndex(4,2,0); + +floorColor = 32; squareColors[0] = rgbToIndex(0,0,3); squareColors[1] = rgbToIndex(7,0,0); diff --git a/general.hpp b/general.hpp index 62bbeb8..d9bc7de 100644 --- a/general.hpp +++ b/general.hpp @@ -68,7 +68,7 @@ Pokitto::Core pokitto; #define SUBSAMPLED_WIDTH (SCREEN_WIDTH / SUBSAMPLE) -#define TRANSPARENT_COLOR 0b00000111 /// Transparent color for sprites and GUI. +#define TRANSPARENT_COLOR 0x8f /// Transparent color for sprites and GUI. RCL_Unit zBuffer[SUBSAMPLED_WIDTH]; ///< 1D z-buffer for visibility determination. @@ -98,6 +98,120 @@ inline void putSubsampledPixel(int32_t x, int32_t y, uint8_t color) } #endif + + + + +uint8_t encodeHSV(uint8_t hue, uint8_t saturation, uint8_t value) +{ + if (value > 15) + { + if (saturation > 84) + return ((saturation / 85 - 1) << 7) | ((hue / 32) << 4) | ((value - 16) / 15); + // "normal" color, as 0bSHHHVVVV, VVVV != 0 + else + return value / 16; + // saturation near 0 => gray, as 0bVVVV0000, VVVV != 0 + } + + return 0; + // value near 0 => black, as 0b00000000 +} + +void decodeHSV(uint8_t hsv, uint8_t *hue, uint8_t *saturation, uint8_t *value) +{ + uint8_t topHalf = hsv & 0b11110000; + uint8_t bottomHalf = hsv & 0b00001111; + + if (topHalf != 0) + { + // "normal" color + + *value = bottomHalf != 15 ? (bottomHalf + 1) * 16 : 255; + *saturation = (1 + ((hsv & 0b10000000) >> 7)) * 127; + *hue = ((hsv & 0b01110000) >> 4) * 32; + } + else + { + // gray/white/black + *hue = 0; + *saturation = 0; + *value = bottomHalf * 17; + } +} + +void convertHSVtoRGB(uint8_t hue, uint8_t saturation, uint8_t value, + uint8_t *red, uint8_t *green, uint8_t *blue) +{ +#define M 16 + + int32_t chroma = (value * saturation) / 256; + + +int32_t h = (hue * M) / 42; + +int32_t a = (h % (2 * M)) - M; +a = a < 0 ? -a : a; // abs + +int32_t x = (chroma * (M - a)) / M; + +if (h <= 1 * M) + { *red = chroma; *green = x; *blue = 0; } +else if (h <= 2 * M) + { *red = x; *green = chroma; *blue = 0; } +else if (h <= 3 * M) + { *red = 0; *green = chroma; *blue = x; } +else if (h <= 4 * M) + { *red = 0; *green = x; *blue = chroma; } +else if (h <= 5 * M) + { *red = x; *green = 0; *blue = chroma; } +else if (h <= 6 * M) + { *red = chroma; *green = 0; *blue = x; } +else + { *red = 0; *green = 0; *blue = 0; } + +#undef M + +/* int16_t h = hue / 42; + + int16_t a = (h % 2) - 1; + a = a < 0 ? -a : a; // abs + + int16_t x = chroma * (1 - a); + + if (h <= 1) + { *red = chroma; *green = x; *blue = 0; } + else if (h <= 2) + { *red = x; *green = chroma; *blue = 0; } + else if (h <= 3) + { *red = 0; *green = chroma; *blue = x; } + else if (h <= 4) + { *red = 0; *green = x; *blue = chroma; } + else if (h <= 5) + { *red = x; *green = 0; *blue = chroma; } + else if (h <= 6) + { *red = chroma; *green = 0; *blue = x; } + else + { *red = 0; *green = 0; *blue = 0; } +*/ + + int32_t m = value - chroma; + + *red += m; + *green += m; + *blue += m; +} + + + + + + + + + + + /** Gets (the index of) color by specified RGB components. @@ -116,11 +230,29 @@ inline uint8_t rgbToIndex(uint8_t r, uint8_t g, uint8_t b) */ void initPalette() { +/* for (uint8_t r = 0; r < 8; ++r) for (uint8_t g = 0; g < 8; ++g) for (uint8_t b = 0; b < 4; ++b) palette[rgbToIndex(r,g,b)] = pokitto.display.RGBto565(36 * r, 36 * g, 85 * b); +*/ + +for (uint16_t i = 0; i < 256; ++i) +{ + + uint8_t h,s,v,r,g,b; + + decodeHSV(i,&h,&s,&v); + + convertHSVtoRGB(h,s,v,&r,&g,&b); + +printf("%d: %d %d %d: %d\n",i,r,g,b,pokitto.display.RGBto565(r,g,b)); + + + palette[i] = + pokitto.display.RGBto565(r,g,b); +} pokitto.display.load565Palette(palette); } @@ -134,6 +266,21 @@ void initPalette() */ inline uint8_t addIntensity(uint8_t color, int16_t intensity) { + +int16_t newValue = (color & 0b00001111) + intensity; + +if (newValue <= 0) + return 0; // black + +if (newValue >= 16) + return 15; // white + +return (color & 0b11110000) | newValue; + +//return (color & 0b11110000) | RCL_clamp((color & 0b00001111) + intensity,0,15); + + +/* uint8_t r = color & 0b00000111; uint8_t g = (color & 0b00111000) >> 3; uint8_t b = (color & 0b11000000) >> 6; @@ -159,6 +306,8 @@ inline uint8_t addIntensity(uint8_t color, int16_t intensity) } return rgbToIndex(r,g,b); +*/ + } inline uint8_t addRGB(uint8_t color, int16_t red, int16_t green, int16_t blue) @@ -411,6 +560,7 @@ void initGeneral() pokitto.setFrameRate(FPS); pokitto.display.setFont(fontTiny); pokitto.display.persistence = 1; + pokitto.display.setInvisibleColor(-1); RCL_initRayConstraints(&defaultConstraints); diff --git a/palette.png b/palette.png new file mode 100644 index 0000000000000000000000000000000000000000..30e23618c82982f0243435991632f71f4d5445cc GIT binary patch literal 440 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_f1s;*b z3=De8Ak0{?)V>TT$X?><>&pI!Q<_~{p!i0lA5ciL#5JPCIX^cyHLrxhxhOTUBsE2$ zJhLQ2!QIn0AiR-JoPmK+!PCVt#Nzba$!D{e4S8DjH}EIlIKWYK;`jcTVvRR)Vv7zt zRc+Yi>plJ7jT6b|WppZ^2!Ghnn|r8HUrp)T=dVSwH8wBxY@42WRx|}9on`5a?C`A+ zu6?_rvo_D^=0&Xtm(y%F6T}owWFAS{@bIVrn``1nqa%`14o1g(mMd?{o6TwUXxn{x zj*H)~ng}E))E#)g!%w+U^oG_{)(Y9D28??H?k6)}FjFe}5IE=lPU{`c@dueW7j5Y6 z`uzCocNO7c{W*q?8xmXuBrXf~`kat1cx=DeFw{5xam@ky?54?QoS&}d*=zH^#O~3# z3ql?toU)1bS8i`SzW;6W)<5;BGkzVFVdQ&MBb@09Dzvpa1{> literal 0 HcmV?d00001