diff --git a/SSD1306.cpp b/SSD1306.cpp
index 24215a727188ca7c0a3be5f2a5a426eda38e6006..d0463386bc60d54409da353b273ee7df8387c044 100644
--- a/SSD1306.cpp
+++ b/SSD1306.cpp
@@ -1,239 +1,308 @@
-/**The MIT License (MIT)
+/**
+ * The MIT License (MIT)
+ *
+ * Copyright (c) 2016 by Daniel Eichhorn
+ * Copyright (c) 2016 by Fabrice Weinberg
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to deal
+ * in the Software without restriction, including without limitation the rights
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ * copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in all
+ * copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ * SOFTWARE.
+ *
+ * Credits for parts of this code go to Mike Rankin. Thank you so much for sharing!
+ */
 
-Copyright (c) 2015 by Daniel Eichhorn
+#include "SSD1306.h"
 
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
 
-The above copyright notice and this permission notice shall be included in all
-copies or substantial portions of the Software.
+SSD1306::SSD1306(uint8_t i2cAddress, uint8_t sda, uint8_t sdc) {
+  this->i2cAddress = i2cAddress;
+  this->sda = sda;
+  this->sdc = sdc;
+}
 
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-SOFTWARE.
+bool SSD1306::init() {
+  this->buffer = (uint8_t*) malloc(sizeof(uint8_t) * DISPLAY_BUFFER_SIZE);
+  if(!this->buffer) {
+    DEBUG_SSD1306("[SSD1306][init] Not enough memory to create display\n");
+    return false;
+  }
 
-See more at http://blog.squix.ch
+  #ifdef SSD1306_DOUBLE_BUFFER
+  this->buffer_back = (uint8_t*) malloc(sizeof(uint8_t) * DISPLAY_BUFFER_SIZE);
+  if(!this->buffer_back) {
+    DEBUG_SSD1306("[SSD1306][init] Not enough memory to create back buffer\n");
+    free(this->buffer);
+    return false;
+  }
+  #endif
 
-Credits for parts of this code go to Mike Rankin. Thank you so much for sharing!
-*/
+  Wire.begin(this->sda, this->sdc);
 
-#include "SSD1306.h"
-#include <Wire.h>
+  // Let's use ~700khz if ESP8266 is in 160Mhz mode
+  // this will be limited to ~400khz if the ESP8266 in 80Mhz mode.
+  Wire.setClock(700000);
 
+  sendInitCommands();
+
+  resetDisplay();
 
-SSD1306::SSD1306(int i2cAddress, int sda, int sdc) {
-  myI2cAddress = i2cAddress;
-  mySda = sda;
-  mySdc = sdc;
+  return true;
 }
 
-void SSD1306::init() {
-  Wire.begin(mySda, mySdc);
-  Wire.setClock(400000);
-  sendInitCommands();
-  resetDisplay();
+void SSD1306::end() {
+  if (this->buffer) free(this->buffer);
+  #ifdef SSD1306_DOUBLE_BUFFER
+  if (this->buffer_back) free(this->buffer_back);
+  #endif
 }
 
 void SSD1306::resetDisplay(void) {
-  displayOff();
   clear();
+  #ifdef SSD1306_DOUBLE_BUFFER
+  memset(buffer_back, 1, DISPLAY_BUFFER_SIZE);
+  #endif
   display();
-  displayOn();
 }
 
 void SSD1306::reconnect() {
-  Wire.begin(mySda, mySdc);
+  Wire.begin(this->sda, this->sdc);
 }
 
-void SSD1306::displayOn(void) {
-    sendCommand(0xaf);        //display on
+void SSD1306::setColor(SSD1306_COLOR color) {
+  this->color = color;
 }
 
-void SSD1306::displayOff(void) {
-  sendCommand(0xae);          //display off
+void SSD1306::setPixel(int16_t x, int16_t y) {
+  if (x >= 0 && x < 128 && y >= 0 && y < 64) {
+    switch (color) {
+      case WHITE:   buffer[x + (y / 8) * DISPLAY_WIDTH] |=  (1 << (y & 7)); break;
+      case BLACK:   buffer[x + (y / 8) * DISPLAY_WIDTH] &= ~(1 << (y & 7)); break;
+      case INVERSE: buffer[x + (y / 8) * DISPLAY_WIDTH] ^=  (1 << (y & 7)); break;
+    }
+  }
 }
 
-void SSD1306::setContrast(char contrast) {
-  sendCommand(0x81);
-  sendCommand(contrast);
+void SSD1306::drawRect(int16_t x, int16_t y, int16_t width, int16_t height) {
+  drawHorizontalLine(x, y, width);
+  drawVerticalLine(x, y, height);
+  drawVerticalLine(x + width, y, height);
+  drawHorizontalLine(x, y + height, width);
 }
 
-void SSD1306::flipScreenVertically() {
-  sendCommand(0xA0 | 0x1);      //SEGREMAP   //Rotate screen 180 deg
-  sendCommand(0xC8);            //COMSCANDEC  Rotate screen 180 Deg
+void SSD1306::fillRect(int16_t xMove, int16_t yMove, int16_t width, int16_t height) {
+  for (int16_t i = yMove; i < yMove + height; i++) {
+    drawHorizontalLine(xMove, i, width);
+  }
 }
 
-void SSD1306::clear(void) {
-    memset(buffer, 0, (128 * 64 / 8));
-}
+void SSD1306::drawHorizontalLine(int16_t x, int16_t y, int16_t length) {
+  if (y < 0 || y >= DISPLAY_HEIGHT) { return; }
 
-void SSD1306::display(void) {
-    sendCommand(COLUMNADDR);
-    sendCommand(0x0);
-    sendCommand(0x7F);
-
-    sendCommand(PAGEADDR);
-    sendCommand(0x0);
-    sendCommand(0x7);
-
-    for (uint16_t i=0; i<(128*64/8); i++) {
-      // send a bunch of data in one xmission
-      Wire.beginTransmission(myI2cAddress);
-      Wire.write(0x40);
-      for (uint8_t x=0; x<16; x++) {
-        Wire.write(buffer[i]);
-        i++;
-      }
-      i--;
-      yield();
-      Wire.endTransmission();
-    }
+  if (x < 0) {
+    length += x;
+    x = 0;
+  }
 
+  if ( (x + length) > DISPLAY_WIDTH) {
+    length = (DISPLAY_WIDTH - x);
+  }
 
-}
+  if (length <= 0) { return; }
 
-void SSD1306::setPixel(int x, int y) {
-  if (x >= 0 && x < 128 && y >= 0 && y < 64) {
+  uint8_t * bufferPtr = buffer;
+  bufferPtr += (y >> 3) * DISPLAY_WIDTH;
+  bufferPtr += x;
 
-     switch (myColor) {
-      case WHITE:   buffer[x + (y/8)*128] |=  (1 << (y&7)); break;
-      case BLACK:   buffer[x + (y/8)*128] &= ~(1 << (y&7)); break;
-      case INVERSE: buffer[x + (y/8)*128] ^=  (1 << (y&7)); break;
-    }
+  uint8_t drawBit = 1 << (y & 7);
+
+  switch (color) {
+    case WHITE:   while (length--) {
+        *bufferPtr++ |= drawBit;
+      }; break;
+    case BLACK:   drawBit = ~drawBit;   while (length--) {
+        *bufferPtr++ &= drawBit;
+      }; break;
+    case INVERSE: while (length--) {
+        *bufferPtr++ ^= drawBit;
+      }; break;
   }
 }
 
-void SSD1306::setChar(int x, int y, unsigned char data) {
-  for (int i = 0; i < 8; i++) {
-    if (bitRead(data, i)) {
-     setPixel(x,y + i);
-    }
+void SSD1306::drawVerticalLine(int16_t x, int16_t y, int16_t length) {
+  if (y < 0 || y > DISPLAY_HEIGHT) return;
+
+  if (x < 0) {
+    length += x;
+    x = 0;
   }
-}
 
-// Code form http://playground.arduino.cc/Main/Utf8ascii
-byte SSD1306::utf8ascii(byte ascii) {
-    if ( ascii<128 ) {   // Standard ASCII-set 0..0x7F handling
-       lastChar=0;
-       return( ascii );
+  if (length < 0) return;
+
+
+  uint8_t yOffset = y & 7;
+  uint8_t drawBit;
+  uint8_t *bufferPtr = buffer;
+
+  bufferPtr += (y >> 3) * DISPLAY_WIDTH;
+  bufferPtr += x;
+
+  if (yOffset) {
+    yOffset = 8 - yOffset;
+    drawBit = ~(0xFF >> (yOffset));
+
+    if (length < yOffset) {
+      drawBit &= (0xFF >> (yOffset - length));
+    }
+
+    switch (color) {
+      case WHITE:   *bufferPtr |= drawBit; break;
+      case BLACK:   *bufferPtr &= drawBit; break;
+      case INVERSE: *bufferPtr ^= drawBit; break;
     }
 
-    // get previous input
-    byte last = lastChar;   // get last char
-    lastChar=ascii;         // remember actual character
+    if (length < yOffset) return;
 
-    switch (last)     // conversion depnding on first UTF8-character
-    {   case 0xC2: return  (ascii);  break;
-        case 0xC3: return  (ascii | 0xC0);  break;
-        case 0x82: if(ascii==0xAC) return(0x80);       // special case Euro-symbol
+    length -= yOffset;
+    bufferPtr += DISPLAY_WIDTH;
+  }
+
+  if (length >= 8) {
+    switch (color) {
+      case WHITE:
+      case BLACK:
+        drawBit = (color == WHITE) ? 0xFF : 0x00;
+        do {
+          *bufferPtr = drawBit;
+          bufferPtr += DISPLAY_WIDTH;
+          length -= 8;
+        } while (length >= 8);
+        break;
+      case INVERSE:
+        do {
+          *bufferPtr = ~(*bufferPtr);
+          bufferPtr += DISPLAY_WIDTH;
+          length -= 8;
+        } while (length >= 8);
+        break;
     }
+  }
 
-    return  (0);                                     // otherwise: return zero, if character has to be ignored
+  if (length > 0) {
+    drawBit = (1 << length & 7) - 1;
+    switch (color) {
+      case WHITE:   *bufferPtr |= drawBit; break;
+      case BLACK:   *bufferPtr &= drawBit; break;
+      case INVERSE: *bufferPtr ^= drawBit; break;
+    }
+  }
 }
 
-// Code form http://playground.arduino.cc/Main/Utf8ascii
-String SSD1306::utf8ascii(String s) {
-        String r= "";
-        char c;
-        for (int i=0; i<s.length(); i++)
-        {
-                c = utf8ascii(s.charAt(i));
-                if (c!=0) r+=c;
-        }
-        return r;
+void SSD1306::drawFastImage(int16_t xMove, int16_t yMove, int16_t width, int16_t height, const char *image) {
+  drawInternal(xMove, yMove, width, height, image, 0, 0);
 }
 
-void SSD1306::drawString(int x, int y, String text) {
-  text = utf8ascii(text);
-  unsigned char currentByte;
-  int charX, charY;
-  int currentBitCount;
-  int charCode;
-  int currentCharWidth;
-  int currentCharStartPos;
-  int cursorX = 0;
-  int numberOfChars = pgm_read_byte(myFontData + CHAR_NUM_POS);
-  // iterate over string
-  int firstChar = pgm_read_byte(myFontData + FIRST_CHAR_POS);
-  int charHeight = pgm_read_byte(myFontData + HEIGHT_POS);
-  int currentCharByteNum = 0;
-  int startX = 0;
-  int startY = y;
-
-  if (myTextAlignment == TEXT_ALIGN_LEFT) {
-    startX = x;
-  } else if (myTextAlignment == TEXT_ALIGN_CENTER) {
-    int width = getStringWidth(text);
-    startX = x - width / 2;
-  } else if (myTextAlignment == TEXT_ALIGN_RIGHT) {
-    int width = getStringWidth(text);
-    startX = x - width;
-  }
+void SSD1306::drawXbm(int16_t xMove, int16_t yMove, int16_t width, int16_t height, const char *xbm) {
+  int16_t widthInXbm = (width + 7) / 8;
+  uint8_t data;
 
-  for (int j=0; j < text.length(); j++) {
+  for(int16_t y = 0; y < height; y++) {
+    for(int16_t x = 0; x < width; x++ ) {
+      if (x & 7) {
+        data >>= 1; // Move a bit
+      } else {  // Read new data every 8 bit
+        data = pgm_read_byte(xbm + (x / 8) + y * widthInXbm);
+      }
+      // if there is a bit draw it
+      if (data & 0x01) {
+        setPixel(xMove + x, yMove + y);
+      }
+    }
+  }
+}
 
-    charCode = text.charAt(j)-0x20;
+void SSD1306::drawString(int16_t xMove, int16_t yMove, String t) {
+  // char* text must be freed!
+  char* text = utf8ascii(t);
 
-    currentCharWidth = pgm_read_byte(myFontData + CHAR_WIDTH_START_POS + charCode);
-    // Jump to font data beginning
-    currentCharStartPos = CHAR_WIDTH_START_POS + numberOfChars;
+  uint8_t textHeight       = pgm_read_byte(fontData + HEIGHT_POS);
+  uint8_t firstChar        = pgm_read_byte(fontData + FIRST_CHAR_POS);
+  uint16_t sizeOfJumpTable = pgm_read_byte(fontData + CHAR_NUM_POS)  * JUMPTABLE_BYTES;
 
-    for (int m = 0; m < charCode; m++) {
+  uint8_t textWidth        = getStringWidth(text);
 
-      currentCharStartPos += pgm_read_byte(myFontData + CHAR_WIDTH_START_POS + m)  * charHeight / 8 + 1;
-    }
+  uint8_t cursorX         = 0;
 
-    currentCharByteNum = ((charHeight * currentCharWidth) / 8) + 1;
-    // iterate over all bytes of character
-    for (int i = 0; i < currentCharByteNum; i++) {
+  switch (textAlignment) {
+    case TEXT_ALIGN_CENTER_BOTH:
+      yMove -= textHeight >> 1;
+    // Fallthrough
+    case TEXT_ALIGN_CENTER:
+      xMove -= textWidth >> 1; // divide by 2
+      break;
+    case TEXT_ALIGN_RIGHT:
+      xMove -= textWidth;
+      break;
+  }
 
-      currentByte = pgm_read_byte(myFontData + currentCharStartPos + i);
-      //Serial.println(String(charCode) + ", " + String(currentCharWidth) + ", " + String(currentByte));
-      // iterate over all bytes of character
-      for(int bit = 0; bit < 8; bit++) {
-         //int currentBit = bitRead(currentByte, bit);
+  // Don't draw anything if it is not on the screen.
+  if (xMove + textWidth  < 0 || xMove > DISPLAY_WIDTH ) {free(text); return;}
+  if (yMove + textHeight < 0 || yMove > DISPLAY_HEIGHT) {free(text); return;}
 
-         currentBitCount = i * 8 + bit;
+  uint16_t length = strlen(text);
 
-         charX = currentBitCount % currentCharWidth;
-         charY = currentBitCount / currentCharWidth;
+  for (uint16_t j = 0; j < length; j++) {
+    byte code = text[j];
+    if (code >= firstChar) {
+      byte charCode = code - firstChar;
 
-         if (bitRead(currentByte, bit)) {
-          setPixel(startX + cursorX + charX, startY + charY);
-         }
+      // 4 Bytes per char code
+      byte msbJumpToChar    = pgm_read_byte( fontData + JUMPTABLE_START + charCode * JUMPTABLE_BYTES );                  // MSB  \ JumpAddress
+      byte lsbJumpToChar    = pgm_read_byte( fontData + JUMPTABLE_START + charCode * JUMPTABLE_BYTES + JUMPTABLE_LSB);   // LSB /
+      byte charByteSize     = pgm_read_byte( fontData + JUMPTABLE_START + charCode * JUMPTABLE_BYTES + JUMPTABLE_SIZE);  // Size
+      byte currentCharWidth = pgm_read_byte( fontData + JUMPTABLE_START + charCode * JUMPTABLE_BYTES + JUMPTABLE_WIDTH); // Width
 
+      // Test if the char is drawable
+      if (msbJumpToChar != 255 && lsbJumpToChar != 255) {
+        // Get the position of the char data
+        uint16_t charDataPosition = JUMPTABLE_START + sizeOfJumpTable + ((msbJumpToChar << 8) + lsbJumpToChar);
+        drawInternal(xMove + cursorX, yMove, currentCharWidth, textHeight, fontData, charDataPosition, charByteSize);
       }
-      yield();
-    }
-    cursorX += currentCharWidth;
 
+      cursorX += currentCharWidth;
+    }
   }
+
+  free(text);
 }
 
-void SSD1306::drawStringMaxWidth(int x, int y, int maxLineWidth, String text) {
-  int currentLineWidth = 0;
-  int startsAt = 0;
-  int endsAt = 0;
-  int lineNumber = 0;
-  char currentChar = ' ';
-  int lineHeight = pgm_read_byte(myFontData + HEIGHT_POS);
+void SSD1306::drawStringMaxWidth(int16_t x, int16_t y, int16_t maxLineWidth, String text) {
+  uint16_t startsAt = 0;
+  uint16_t endsAt = 0;
+  uint16_t lineNumber = 0;
+  uint16_t lineHeight = pgm_read_byte(fontData + HEIGHT_POS);
   String currentLine = "";
-  for (int i = 0; i < text.length(); i++) {
-    currentChar = text.charAt(i);
+  uint16_t length = text.length();
+  for (uint16_t i = 0; i < length; i++) {
+    char currentChar = text.charAt(i);
     if (currentChar == ' ' || currentChar == '-') {
       String lineCandidate = text.substring(startsAt, i);
-      if (getStringWidth(lineCandidate) <= maxLineWidth) {
+      if (getStringWidth(lineCandidate.c_str()) <= maxLineWidth) {
         endsAt = i;
       } else {
-
         drawString(x, y + lineNumber * lineHeight, text.substring(startsAt, endsAt));
         lineNumber++;
         startsAt = endsAt + 1;
@@ -241,82 +310,147 @@ void SSD1306::drawStringMaxWidth(int x, int y, int maxLineWidth, String text) {
     }
 
   }
+
   drawString(x, y + lineNumber * lineHeight, text.substring(startsAt));
 }
 
-int SSD1306::getStringWidth(String text) {
-  text = utf8ascii(text);
-  int stringWidth = 0;
-  char charCode;
-  for (int j=0; j < text.length(); j++) {
-    charCode = text.charAt(j)-0x20;
-    stringWidth += pgm_read_byte(myFontData + CHAR_WIDTH_START_POS + charCode);
+uint16_t SSD1306::getStringWidth(const char* text) {
+  uint16_t stringWidth = 0;
+  uint16_t firstChar        = pgm_read_byte(fontData + FIRST_CHAR_POS);
+  uint16_t length           = strlen(text);
+  while (length--) {
+    stringWidth += pgm_read_byte(fontData + JUMPTABLE_START + (text[length] - firstChar) * JUMPTABLE_BYTES + JUMPTABLE_WIDTH);
   }
   return stringWidth;
 }
 
-void SSD1306::setTextAlignment(int textAlignment) {
-  myTextAlignment = textAlignment;
+void SSD1306::setTextAlignment(SSD1306_TEXT_ALIGNMENT textAlignment) {
+  this->textAlignment = textAlignment;
 }
 
 void SSD1306::setFont(const char *fontData) {
-  myFontData = fontData;
+  this->fontData = fontData;
 }
 
-void SSD1306::drawBitmap(int x, int y, int width, int height, const char *bitmap) {
-  for (int i = 0; i < width * height / 8; i++ ){
-    unsigned char charColumn = 255 - pgm_read_byte(bitmap + i);
-    for (int j = 0; j < 8; j++) {
-      int targetX = i % width + x;
-      int targetY = (i / (width)) * 8 + j + y;
-      if (bitRead(charColumn, j)) {
-        setPixel(targetX, targetY);
-      }
-    }
-  }
+void SSD1306::displayOn(void) {
+  sendCommand(DISPLAYON);
 }
 
-void SSD1306::setColor(int color) {
-  myColor = color;
+void SSD1306::displayOff(void) {
+  sendCommand(DISPLAYOFF);
 }
 
-void SSD1306::drawRect(int x, int y, int width, int height) {
-  for (int i = x; i < x + width; i++) {
-    setPixel(i, y);
-    setPixel(i, y + height);
-  }
-  for (int i = y; i < y + height; i++) {
-    setPixel(x, i);
-    setPixel(x + width, i);
-  }
+void SSD1306::invertDisplay(void) {
+  sendCommand(INVERTDISPLAY);
 }
 
-void SSD1306::fillRect(int x, int y, int width, int height) {
-  for (int i = x; i < x + width; i++) {
-    for (int j = y; j < y + height; j++) {
-      setPixel(i, j);
-    }
-  }
+void SSD1306::normalDisplay(void) {
+  sendCommand(NORMALDISPLAY);
+}
+
+void SSD1306::setContrast(char contrast) {
+  sendCommand(SETCONTRAST);
+  sendCommand(contrast);
+}
+
+void SSD1306::flipScreenVertically() {
+  sendCommand(SEGREMAP | 0x01);      //Rotate screen 180 deg
+  sendCommand(COMSCANDEC);           //Rotate screen 180 Deg
 }
 
-void SSD1306::drawXbm(int x, int y, int width, int height, const char *xbm) {
-  if (width % 8 != 0) {
-    width =  ((width / 8) + 1) * 8;
+void SSD1306::display(void) {
+  #ifdef SSD1306_DOUBLE_BUFFER
+  uint16_t minBoundY = 8;
+  uint16_t maxBoundY = 0;
+
+  uint16_t minBoundX = 129;
+  uint16_t maxBoundX = 0;
+
+  uint16_t x, y;
+
+  // Calculate the Y bounding box of changes
+  // and copy buffer[pos] to buffer_back[pos];
+  for (y = 0; y < 8; y++) {
+     for (x = 0; x < DISPLAY_WIDTH; x++) {
+      uint16_t pos = x + y * DISPLAY_WIDTH;
+      if (buffer[pos] != buffer_back[pos]) {
+        minBoundY = min(minBoundY, y);
+        maxBoundY = max(maxBoundY, y);
+        minBoundX = min(minBoundX, x);
+        maxBoundX = max(maxBoundX, x);
+      }
+      buffer_back[pos] = buffer[pos];
+    }
+    yield();
   }
-  for (int i = 0; i < width * height / 8; i++ ){
-    unsigned char charColumn = pgm_read_byte(xbm + i);
-    for (int j = 0; j < 8; j++) {
-      int targetX = (i * 8 + j) % width + x;
-      int targetY = (8 * i / (width)) + y;
-      if (bitRead(charColumn, j)) {
-        setPixel(targetX, targetY);
+
+  // If the minBoundY wasn't updated
+  // we can savely assume that buffer_back[pos] == buffer[pos]
+  // holdes true for all values of pos
+  if (minBoundY == 8) return;
+
+  sendCommand(COLUMNADDR);
+  sendCommand(minBoundX);
+  sendCommand(maxBoundX);
+
+  sendCommand(PAGEADDR);
+  sendCommand(minBoundY);
+  sendCommand(maxBoundY);
+
+  byte k = 0;
+  for (y = minBoundY; y <= maxBoundY; y++) {
+      for (x = minBoundX; x <= maxBoundX; x++) {
+          if (k == 0) {
+            Wire.beginTransmission(this->i2cAddress);
+            Wire.write(0x40);
+          }
+          Wire.write(buffer[x + y * DISPLAY_WIDTH]);
+          k++;
+          if (k == 16)  {
+            Wire.endTransmission();
+            k = 0;
+          }
       }
+      yield();
+  }
+
+  if (k != 0) {
+    Wire.endTransmission();
+  }
+
+  #else
+  // No double buffering
+  sendCommand(COLUMNADDR);
+  sendCommand(0x0);
+  sendCommand(0x7F);
+
+  sendCommand(PAGEADDR);
+  sendCommand(0x0);
+  sendCommand(0x7);
+
+  for (uint16_t i=0; i < DISPLAY_BUFFER_SIZE; i++) {
+    Wire.beginTransmission(this->i2cAddress);
+    Wire.write(0x40);
+    for (uint8_t x = 0; x < 16; x++) {
+      Wire.write(buffer[i]);
+      i++;
     }
+    i--;
+    Wire.endTransmission();
   }
+  #endif
+}
+
+
+void SSD1306::clear(void) {
+  memset(buffer, 0, DISPLAY_BUFFER_SIZE);
 }
 
+
+// Private functions
+
 void SSD1306::sendCommand(unsigned char com) {
-  Wire.beginTransmission(myI2cAddress);     //begin transmitting
+  Wire.beginTransmission(this->i2cAddress);  //begin transmitting
   Wire.write(0x80);                          //command mode
   Wire.write(com);
   Wire.endTransmission();                    // stop transmitting
@@ -324,14 +458,13 @@ void SSD1306::sendCommand(unsigned char com) {
 
 void SSD1306::sendInitCommands(void) {
   sendCommand(DISPLAYOFF);
-  sendCommand(NORMALDISPLAY);
   sendCommand(SETDISPLAYCLOCKDIV);
-  sendCommand(0x80);
+  sendCommand(0xF0); // Increase speed of the display max ~96Hz
   sendCommand(SETMULTIPLEX);
   sendCommand(0x3F);
   sendCommand(SETDISPLAYOFFSET);
   sendCommand(0x00);
-  sendCommand(SETSTARTLINE | 0x00);
+  sendCommand(SETSTARTLINE);
   sendCommand(CHARGEPUMP);
   sendCommand(0x14);
   sendCommand(MEMORYMODE);
@@ -344,10 +477,125 @@ void SSD1306::sendInitCommands(void) {
   sendCommand(0xCF);
   sendCommand(SETPRECHARGE);
   sendCommand(0xF1);
-  sendCommand(SETVCOMDETECT);
-  sendCommand(0x40);
   sendCommand(DISPLAYALLON_RESUME);
   sendCommand(NORMALDISPLAY);
   sendCommand(0x2e);            // stop scroll
   sendCommand(DISPLAYON);
-}
\ No newline at end of file
+}
+
+void SSD1306::drawInternal(int16_t xMove, int16_t yMove, int16_t width, int16_t height, const char *data, uint16_t offset, uint16_t bytesInData) {
+  if (width < 0 || height < 0) return;
+  if (yMove + height < 0 || yMove > DISPLAY_HEIGHT)  return;
+  if (xMove + width  < 0 || xMove > DISPLAY_WIDTH)   return;
+
+  uint8_t  rasterHeight = 1 + ((height - 1) >> 3); // fast ceil(height / 8.0)
+  int8_t   yOffset      = yMove & 7;
+
+  bytesInData = bytesInData == 0 ? width * rasterHeight : bytesInData;
+
+  int16_t initYMove   = yMove;
+  int8_t  initYOffset = yOffset;
+
+
+  for (uint16_t i = 0; i < bytesInData; i++) {
+
+    // Reset if next horizontal drawing phase is started.
+    if ( i % rasterHeight == 0) {
+      yMove   = initYMove;
+      yOffset = initYOffset;
+    }
+
+    byte currentByte = pgm_read_byte(data + offset + i);
+
+    int16_t xPos = xMove + (i / rasterHeight);
+    int16_t yPos = ((yMove >> 3) + (i % rasterHeight)) * DISPLAY_WIDTH;
+
+    int16_t yScreenPos = yMove + yOffset;
+    int16_t dataPos    = xPos  + yPos;
+
+    if (dataPos >=  0  && dataPos < DISPLAY_BUFFER_SIZE &&
+        xPos    >=  0  && xPos    < DISPLAY_WIDTH ) {
+
+      if (yOffset >= 0) {
+        switch (this->color) {
+          case WHITE:   buffer[dataPos] |= currentByte << yOffset; break;
+          case BLACK:   buffer[dataPos] &= currentByte << yOffset; break;
+          case INVERSE: buffer[dataPos] ^= currentByte << yOffset; break;
+        }
+        if (dataPos < (DISPLAY_BUFFER_SIZE - DISPLAY_WIDTH)) {
+          switch (this->color) {
+            case WHITE:   buffer[dataPos + DISPLAY_WIDTH] |= currentByte >> (8 - yOffset); break;
+            case BLACK:   buffer[dataPos + DISPLAY_WIDTH] &= currentByte >> (8 - yOffset); break;
+            case INVERSE: buffer[dataPos + DISPLAY_WIDTH] ^= currentByte >> (8 - yOffset); break;
+          }
+        }
+      } else {
+        // Make new offset position
+        yOffset = -yOffset;
+
+        switch (this->color) {
+          case WHITE:   buffer[dataPos] |= currentByte >> yOffset; break;
+          case BLACK:   buffer[dataPos] &= currentByte >> yOffset; break;
+          case INVERSE: buffer[dataPos] ^= currentByte >> yOffset; break;
+        }
+
+        // Prepare for next iteration by moving one block up
+        yMove -= 8;
+
+        // and setting the new yOffset
+        yOffset = 8 - yOffset;
+      }
+
+      yield();
+    }
+  }
+}
+
+// Code form http://playground.arduino.cc/Main/Utf8ascii
+uint8_t SSD1306::utf8ascii(byte ascii) {
+  static uint8_t LASTCHAR;
+
+  if ( ascii < 128 ) { // Standard ASCII-set 0..0x7F handling
+    LASTCHAR = 0;
+    return ascii;
+  }
+
+  uint8_t last = LASTCHAR;   // get last char
+  LASTCHAR = ascii;
+
+  switch (last) {    // conversion depnding on first UTF8-character
+    case 0xC2: return  (ascii);  break;
+    case 0xC3: return  (ascii | 0xC0);  break;
+    case 0x82: if (ascii == 0xAC) return (0x80);    // special case Euro-symbol
+  }
+
+  return  0; // otherwise: return zero, if character has to be ignored
+}
+
+// You need to free the char!
+char* SSD1306::utf8ascii(String str) {
+  uint16_t k = 0;
+  uint16_t length = str.length() + 1;
+
+  // Copy the string into a char array
+  char* s = (char*) malloc(length * sizeof(char));
+  if(!s) {
+    DEBUG_SSD1306("[SSD1306][utf8ascii] Can't allocate another char array. Drop support for UTF-8.\n");
+    return (char*) str.c_str();
+  }
+  str.toCharArray(s, length);
+
+  length--;
+
+  for (uint16_t i=0; i < length; i++) {
+    char c = utf8ascii(s[i]);
+    if (c!=0) {
+      s[k++]=c;
+    }
+  }
+
+  s[k]=0;
+
+  // This will leak 's' be sure to free it in the calling function.
+  return s;
+}
diff --git a/SSD1306.h b/SSD1306.h
index a3cb628d797cf7779dd23d7285a430315d6edfb9..965f1ffff44adc84f24cd47dc4f66c7d130c8c62 100644
--- a/SSD1306.h
+++ b/SSD1306.h
@@ -1,48 +1,69 @@
-/**The MIT License (MIT)
+/**
+ * The MIT License (MIT)
+ *
+ * Copyright (c) 2016 by Daniel Eichhorn
+ * Copyright (c) 2016 by Fabrice Weinberg
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to deal
+ * in the Software without restriction, including without limitation the rights
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ * copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in all
+ * copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ * SOFTWARE.
+ *
+ * Credits for parts of this code go to Mike Rankin. Thank you so much for sharing!
+ */
 
-Copyright (c) 2015 by Daniel Eichhorn
+#pragma once
 
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
+#include <Arduino.h>
+#include <Wire.h>
 
-The above copyright notice and this permission notice shall be included in all
-copies or substantial portions of the Software.
+#include "SSD1306Fonts.h"
 
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-SOFTWARE.
+//#define DEBUG_SSD1306(...) Serial.printf( __VA_ARGS__ )
 
-See more at http://blog.squix.ch
+#ifndef DEBUG_SSD1306
+#define DEBUG_SSD1306(...)
+#endif
 
-Credits for parts of this code go to Mike Rankin. Thank you so much for sharing!
-*/
-#pragma once
+// Use DOUBLE BUFFERING by default
+#ifndef SSD1306_REDUCE_MEMORY
+#define SSD1306_DOUBLE_BUFFER
+#endif
 
-#include <Arduino.h>
-#include "SSD1306Fonts.h"
 
-#define BLACK 0
-#define WHITE 1
-#define INVERSE 2
+// Display settings
+#define DISPLAY_WIDTH 128
+#define DISPLAY_HEIGHT 64
+#define DISPLAY_BUFFER_SIZE 1024
+
+// Header Values
+#define JUMPTABLE_BYTES 4
+#define JUMPTABLE_LSB   1
+#define JUMPTABLE_SIZE  2
+#define JUMPTABLE_WIDTH 3
+
+#define JUMPTABLE_START 4
 
 #define WIDTH_POS 0
 #define HEIGHT_POS 1
 #define FIRST_CHAR_POS 2
 #define CHAR_NUM_POS 3
-#define CHAR_WIDTH_START_POS 4
 
-#define TEXT_ALIGN_LEFT 0
-#define TEXT_ALIGN_CENTER 1
-#define TEXT_ALIGN_RIGHT 2
 
+// Display commands
 #define CHARGEPUMP 0x8D
 #define COLUMNADDR 0x21
 #define COMSCANDEC 0xC8
@@ -70,104 +91,139 @@ Credits for parts of this code go to Mike Rankin. Thank you so much for sharing!
 #define SETVCOMDETECT 0xDB
 #define SWITCHCAPVCC 0x2
 
+enum SSD1306_COLOR {
+  BLACK = 0,
+  WHITE = 1,
+  INVERSE = 2
+};
+
+enum SSD1306_TEXT_ALIGNMENT {
+  TEXT_ALIGN_LEFT = 0,
+  TEXT_ALIGN_RIGHT = 1,
+  TEXT_ALIGN_CENTER = 2,
+	TEXT_ALIGN_CENTER_BOTH = 3
+};
+
 class SSD1306 {
+  private:
+
+    uint8_t             i2cAddress;
+    uint8_t             sda;
+    uint8_t             sdc;
+
+    uint8_t       		 *buffer;
+
+    #ifdef SSD1306_DOUBLE_BUFFER
+    uint8_t        		 *buffer_back;
+    #endif
+
+    SSD1306_TEXT_ALIGNMENT 	textAlignment = TEXT_ALIGN_LEFT;
+    SSD1306_COLOR  		 			color         = WHITE;
+
+    const char     		 *fontData      = ArialMT_Plain_10;
+
+    // Send a command to the display (low level function)
+    void sendCommand(unsigned char com);
+
+    // Send all the init commands
+    void sendInitCommands(void);
+
+    // converts utf8 characters to extended ascii
+    byte utf8ascii(byte ascii);
+    char* utf8ascii(String s);
+
+    void drawInternal(int16_t xMove, int16_t yMove, int16_t width, int16_t height, const char *data, uint16_t offset, uint16_t bytesInData);
+
+  public:
+
+    // Create the display object connected to pin sda and sdc
+    SSD1306(uint8_t i2cAddress, uint8_t sda, uint8_t sdc);
+
+    // Initialize the display
+    bool init();
 
-private:
-   int myI2cAddress;
-   int mySda;
-   int mySdc;
-   uint8_t buffer[128 * 64 / 8];
-   int myTextAlignment = TEXT_ALIGN_LEFT;
-   int myColor = WHITE;
-   byte lastChar;
-   const char *myFontData = ArialMT_Plain_10;
+    // Free the memory used by the display
+    void end();
 
-public:
-   // Create the display object connected to pin sda and sdc
-   SSD1306(int i2cAddress, int sda, int sdc);
+    // Cycle through the initialization
+    void resetDisplay(void);
 
-   // Initialize the display
-   void init();
+    // Connect again to the display through I2C
+    void reconnect(void);
 
-   // Cycle through the initialization
-   void resetDisplay(void);
+    /* Drawing functions */
 
-   // Connect again to the display through I2C
-   void reconnect(void);
+    // Sets the color of all pixel operations
+    void setColor(SSD1306_COLOR color);
 
-   // Turn the display on
-   void displayOn(void);
+    // Draw a pixel at given position
+    void setPixel(int16_t x, int16_t y);
 
-   // Turn the display offs
-   void displayOff(void);
+    // Draw the border of a rectangle at the given location
+    void drawRect(int16_t x, int16_t y, int16_t width, int16_t height);
 
-   // Clear the local pixel buffer
-   void clear(void);
+    // Fill the rectangle
+    void fillRect(int16_t x, int16_t y, int16_t width, int16_t height);
 
-   // Write the buffer to the display memory
-   void display(void);
+    // Draw a line horizontally
+    void drawHorizontalLine(int16_t x, int16_t y, int16_t length);
 
-   // Set display contrast
-   void setContrast(char contrast);
+    // Draw a lin vertically
+    void drawVerticalLine(int16_t x, int16_t y, int16_t length);
 
-   // Turn the display upside down
-   void flipScreenVertically();
+    // Draw a bitmap in the internal image format
+    void drawFastImage(int16_t x, int16_t y, int16_t width, int16_t height, const char *image);
 
-   // Send a command to the display (low level function)
-   void sendCommand(unsigned char com);
+    // Draw a XBM
+    void drawXbm(int16_t x, int16_t y, int16_t width, int16_t height, const char *xbm);
 
-   // Send all the init commands
-   void sendInitCommands(void);
+    /* Text functions */
 
-   // Draw a pixel at given position
-   void setPixel(int x, int y);
+    // Draws a string at the given location
+    void drawString(int16_t x, int16_t y, String text);
 
-   // Draw 8 bits at the given position
-   void setChar(int x, int y, unsigned char data);
+    // Draws a String with a maximum width at the given location.
+    // If the given String is wider than the specified width
+    // The text will be wrapped to the next line at a space or dash
+    void drawStringMaxWidth(int16_t x, int16_t y, int16_t maxLineWidth, String text);
 
-   // Draw the border of a rectangle at the given location
-   void drawRect(int x, int y, int width, int height);
+    // Returns the width of the String with the current
+    // font settings
+    uint16_t getStringWidth(const char* text);
 
-   // Fill the rectangle
-   void fillRect(int x, int y, int width, int height);
+    // Specifies relative to which anchor point
+    // the text is rendered. Available constants:
+    // TEXT_ALIGN_LEFT, TEXT_ALIGN_CENTER, TEXT_ALIGN_RIGHT, TEXT_ALIGN_CENTER_BOTH
+    void setTextAlignment(SSD1306_TEXT_ALIGNMENT textAlignment);
 
-   // Draw a bitmap with the given dimensions
-   void drawBitmap(int x, int y, int width, int height, const char *bitmap);
+    // Sets the current font. Available default fonts
+    // ArialMT_Plain_10, ArialMT_Plain_16, ArialMT_Plain_24
+    void setFont(const char *fontData);
 
-   // Draw an XBM image with the given dimensions
-   void drawXbm(int x, int y, int width, int height, const char *xbm);
+    /* Display functions */
 
-   // Sets the color of all pixel operations
-   void setColor(int color);
+    // Turn the display on
+    void displayOn(void);
 
-   // converts utf8 characters to extended ascii
-   // taken from http://playground.arduino.cc/Main/Utf8ascii
-   byte utf8ascii(byte ascii);
+    // Turn the display offs
+    void displayOff(void);
 
-   // converts utf8 string to extended ascii
-   // taken from http://playground.arduino.cc/Main/Utf8ascii
-   String utf8ascii(String s);
+    // Inverted display mode
+    void invertDisplay(void);
 
-   // Draws a string at the given location
-   void drawString(int x, int y, String text);
+    // Normal display mode
+    void normalDisplay(void);
 
-   // Draws a String with a maximum width at the given location.
-   // If the given String is wider than the specified width
-   // The text will be wrapped to the next line at a space or dash
-   void drawStringMaxWidth(int x, int y, int maxLineWidth, String text);
+    // Set display contrast
+    void setContrast(char contrast);
 
-   // Returns the width of the String with the current
-   // font settings
-   int getStringWidth(String text);
+    // Turn the display upside down
+    void flipScreenVertically();
 
-   // Specifies relative to which anchor point
-   // the text is rendered. Available constants:
-   // TEXT_ALIGN_LEFT, TEXT_ALIGN_CENTER, TEXT_ALIGN_RIGHT
-   void setTextAlignment(int textAlignment);
+    // Write the buffer to the display memory
+    void display(void);
 
-   // Sets the current font. Available default fonts
-   // defined in SSD1306Fonts.h:
-   // ArialMT_Plain_10, ArialMT_Plain_16, ArialMT_Plain_24
-   void setFont(const char *fontData);
+    // Clear the local pixel buffer
+    void clear(void);
 
-};
\ No newline at end of file
+};
diff --git a/SSD1306Fonts.h b/SSD1306Fonts.h
index b55e540afad5bd1efcbc10e45278afc2dd2c1fda..41d91f8046c049ee724618b33e59da647367193a 100644
--- a/SSD1306Fonts.h
+++ b/SSD1306Fonts.h
@@ -1,1399 +1,1270 @@
-/**The MIT License (MIT)
-
-Copyright (c) 2015 by Daniel Eichhorn
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all
-copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-SOFTWARE.
-
-See more at http://blog.squix.ch
-*/
-
 const char ArialMT_Plain_10[] PROGMEM = {
-	0x0A, // Width: 10
-	0x0D, // Height: 13
-	0x20, // First Char: 32
-	0xE0, // Numbers of Chars: 224
+  0x0A, // Width: 10
+  0x0D, // Height: 13
+  0x20, // First Char: 32
+  0xE0, // Numbers of Chars: 224
 
-	// Char Widths:
-	0x03, // 32: 3
-	0x03, // 33: 3
-	0x04, // 34: 4
-	0x06, // 35: 6
-	0x06, // 36: 6
-	0x09, // 37: 9
-	0x07, // 38: 7
-	0x02, // 39: 2
-	0x03, // 40: 3
-	0x03, // 41: 3
-	0x04, // 42: 4
-	0x06, // 43: 6
-	0x03, // 44: 3
-	0x03, // 45: 3
-	0x03, // 46: 3
-	0x03, // 47: 3
-	0x06, // 48: 6
-	0x06, // 49: 6
-	0x06, // 50: 6
-	0x06, // 51: 6
-	0x06, // 52: 6
-	0x06, // 53: 6
-	0x06, // 54: 6
-	0x06, // 55: 6
-	0x06, // 56: 6
-	0x06, // 57: 6
-	0x03, // 58: 3
-	0x03, // 59: 3
-	0x06, // 60: 6
-	0x06, // 61: 6
-	0x06, // 62: 6
-	0x06, // 63: 6
-	0x0A, // 64: 10
-	0x07, // 65: 7
-	0x07, // 66: 7
-	0x07, // 67: 7
-	0x07, // 68: 7
-	0x07, // 69: 7
-	0x06, // 70: 6
-	0x08, // 71: 8
-	0x07, // 72: 7
-	0x03, // 73: 3
-	0x05, // 74: 5
-	0x07, // 75: 7
-	0x06, // 76: 6
-	0x08, // 77: 8
-	0x07, // 78: 7
-	0x08, // 79: 8
-	0x07, // 80: 7
-	0x08, // 81: 8
-	0x07, // 82: 7
-	0x07, // 83: 7
-	0x06, // 84: 6
-	0x07, // 85: 7
-	0x07, // 86: 7
-	0x09, // 87: 9
-	0x07, // 88: 7
-	0x07, // 89: 7
-	0x06, // 90: 6
-	0x03, // 91: 3
-	0x03, // 92: 3
-	0x03, // 93: 3
-	0x05, // 94: 5
-	0x06, // 95: 6
-	0x03, // 96: 3
-	0x06, // 97: 6
-	0x06, // 98: 6
-	0x05, // 99: 5
-	0x06, // 100: 6
-	0x06, // 101: 6
-	0x03, // 102: 3
-	0x06, // 103: 6
-	0x06, // 104: 6
-	0x02, // 105: 2
-	0x02, // 106: 2
-	0x05, // 107: 5
-	0x02, // 108: 2
-	0x08, // 109: 8
-	0x06, // 110: 6
-	0x06, // 111: 6
-	0x06, // 112: 6
-	0x06, // 113: 6
-	0x03, // 114: 3
-	0x05, // 115: 5
-	0x03, // 116: 3
-	0x06, // 117: 6
-	0x05, // 118: 5
-	0x07, // 119: 7
-	0x05, // 120: 5
-	0x05, // 121: 5
-	0x05, // 122: 5
-	0x03, // 123: 3
-	0x03, // 124: 3
-	0x03, // 125: 3
-	0x06, // 126: 6
-	0x04, // 127: 4
-	0x0A, // 128: 10
-	0x0A, // 129: 10
-	0x0A, // 130: 10
-	0x0A, // 131: 10
-	0x0A, // 132: 10
-	0x0A, // 133: 10
-	0x0A, // 134: 10
-	0x0A, // 135: 10
-	0x0A, // 136: 10
-	0x0A, // 137: 10
-	0x0A, // 138: 10
-	0x0A, // 139: 10
-	0x0A, // 140: 10
-	0x0A, // 141: 10
-	0x0A, // 142: 10
-	0x0A, // 143: 10
-	0x0A, // 144: 10
-	0x0A, // 145: 10
-	0x0A, // 146: 10
-	0x0A, // 147: 10
-	0x0A, // 148: 10
-	0x0A, // 149: 10
-	0x0A, // 150: 10
-	0x0A, // 151: 10
-	0x0A, // 152: 10
-	0x0A, // 153: 10
-	0x0A, // 154: 10
-	0x0A, // 155: 10
-	0x0A, // 156: 10
-	0x0A, // 157: 10
-	0x0A, // 158: 10
-	0x0A, // 159: 10
-	0x03, // 160: 3
-	0x03, // 161: 3
-	0x06, // 162: 6
-	0x06, // 163: 6
-	0x06, // 164: 6
-	0x06, // 165: 6
-	0x03, // 166: 3
-	0x06, // 167: 6
-	0x03, // 168: 3
-	0x07, // 169: 7
-	0x04, // 170: 4
-	0x06, // 171: 6
-	0x06, // 172: 6
-	0x03, // 173: 3
-	0x07, // 174: 7
-	0x06, // 175: 6
-	0x04, // 176: 4
-	0x05, // 177: 5
-	0x03, // 178: 3
-	0x03, // 179: 3
-	0x03, // 180: 3
-	0x06, // 181: 6
-	0x05, // 182: 5
-	0x03, // 183: 3
-	0x03, // 184: 3
-	0x03, // 185: 3
-	0x04, // 186: 4
-	0x06, // 187: 6
-	0x08, // 188: 8
-	0x08, // 189: 8
-	0x08, // 190: 8
-	0x06, // 191: 6
-	0x07, // 192: 7
-	0x07, // 193: 7
-	0x07, // 194: 7
-	0x07, // 195: 7
-	0x07, // 196: 7
-	0x07, // 197: 7
-	0x0A, // 198: 10
-	0x07, // 199: 7
-	0x07, // 200: 7
-	0x07, // 201: 7
-	0x07, // 202: 7
-	0x07, // 203: 7
-	0x03, // 204: 3
-	0x03, // 205: 3
-	0x03, // 206: 3
-	0x03, // 207: 3
-	0x07, // 208: 7
-	0x07, // 209: 7
-	0x08, // 210: 8
-	0x08, // 211: 8
-	0x08, // 212: 8
-	0x08, // 213: 8
-	0x08, // 214: 8
-	0x06, // 215: 6
-	0x08, // 216: 8
-	0x07, // 217: 7
-	0x07, // 218: 7
-	0x07, // 219: 7
-	0x07, // 220: 7
-	0x07, // 221: 7
-	0x07, // 222: 7
-	0x06, // 223: 6
-	0x06, // 224: 6
-	0x06, // 225: 6
-	0x06, // 226: 6
-	0x06, // 227: 6
-	0x06, // 228: 6
-	0x06, // 229: 6
-	0x09, // 230: 9
-	0x05, // 231: 5
-	0x06, // 232: 6
-	0x06, // 233: 6
-	0x06, // 234: 6
-	0x06, // 235: 6
-	0x03, // 236: 3
-	0x03, // 237: 3
-	0x03, // 238: 3
-	0x03, // 239: 3
-	0x06, // 240: 6
-	0x06, // 241: 6
-	0x06, // 242: 6
-	0x06, // 243: 6
-	0x06, // 244: 6
-	0x06, // 245: 6
-	0x06, // 246: 6
-	0x05, // 247: 5
-	0x06, // 248: 6
-	0x06, // 249: 6
-	0x06, // 250: 6
-	0x06, // 251: 6
-	0x06, // 252: 6
-	0x05, // 253: 5
-	0x06, // 254: 6
-	0x05, // 255: 5
+  // Jump Table:
+  0xFF, 0xFF, 0x00, 0x03,  // 32:65535
+  0x00, 0x00, 0x04, 0x03,  // 33:0
+  0x00, 0x04, 0x05, 0x04,  // 34:4
+  0x00, 0x09, 0x09, 0x06,  // 35:9
+  0x00, 0x12, 0x0A, 0x06,  // 36:18
+  0x00, 0x1C, 0x10, 0x09,  // 37:28
+  0x00, 0x2C, 0x0E, 0x07,  // 38:44
+  0x00, 0x3A, 0x01, 0x02,  // 39:58
+  0x00, 0x3B, 0x06, 0x03,  // 40:59
+  0x00, 0x41, 0x06, 0x03,  // 41:65
+  0x00, 0x47, 0x05, 0x04,  // 42:71
+  0x00, 0x4C, 0x09, 0x06,  // 43:76
+  0x00, 0x55, 0x04, 0x03,  // 44:85
+  0x00, 0x59, 0x03, 0x03,  // 45:89
+  0x00, 0x5C, 0x04, 0x03,  // 46:92
+  0x00, 0x60, 0x05, 0x03,  // 47:96
+  0x00, 0x65, 0x0A, 0x06,  // 48:101
+  0x00, 0x6F, 0x08, 0x06,  // 49:111
+  0x00, 0x77, 0x0A, 0x06,  // 50:119
+  0x00, 0x81, 0x0A, 0x06,  // 51:129
+  0x00, 0x8B, 0x0B, 0x06,  // 52:139
+  0x00, 0x96, 0x0A, 0x06,  // 53:150
+  0x00, 0xA0, 0x0A, 0x06,  // 54:160
+  0x00, 0xAA, 0x09, 0x06,  // 55:170
+  0x00, 0xB3, 0x0A, 0x06,  // 56:179
+  0x00, 0xBD, 0x0A, 0x06,  // 57:189
+  0x00, 0xC7, 0x04, 0x03,  // 58:199
+  0x00, 0xCB, 0x04, 0x03,  // 59:203
+  0x00, 0xCF, 0x0A, 0x06,  // 60:207
+  0x00, 0xD9, 0x09, 0x06,  // 61:217
+  0x00, 0xE2, 0x09, 0x06,  // 62:226
+  0x00, 0xEB, 0x0B, 0x06,  // 63:235
+  0x00, 0xF6, 0x14, 0x0A,  // 64:246
+  0x01, 0x0A, 0x0E, 0x07,  // 65:266
+  0x01, 0x18, 0x0C, 0x07,  // 66:280
+  0x01, 0x24, 0x0C, 0x07,  // 67:292
+  0x01, 0x30, 0x0B, 0x07,  // 68:304
+  0x01, 0x3B, 0x0C, 0x07,  // 69:315
+  0x01, 0x47, 0x09, 0x06,  // 70:327
+  0x01, 0x50, 0x0D, 0x08,  // 71:336
+  0x01, 0x5D, 0x0C, 0x07,  // 72:349
+  0x01, 0x69, 0x04, 0x03,  // 73:361
+  0x01, 0x6D, 0x08, 0x05,  // 74:365
+  0x01, 0x75, 0x0E, 0x07,  // 75:373
+  0x01, 0x83, 0x0C, 0x06,  // 76:387
+  0x01, 0x8F, 0x10, 0x08,  // 77:399
+  0x01, 0x9F, 0x0C, 0x07,  // 78:415
+  0x01, 0xAB, 0x0E, 0x08,  // 79:427
+  0x01, 0xB9, 0x0B, 0x07,  // 80:441
+  0x01, 0xC4, 0x0E, 0x08,  // 81:452
+  0x01, 0xD2, 0x0C, 0x07,  // 82:466
+  0x01, 0xDE, 0x0C, 0x07,  // 83:478
+  0x01, 0xEA, 0x0B, 0x06,  // 84:490
+  0x01, 0xF5, 0x0C, 0x07,  // 85:501
+  0x02, 0x01, 0x0D, 0x07,  // 86:513
+  0x02, 0x0E, 0x11, 0x09,  // 87:526
+  0x02, 0x1F, 0x0E, 0x07,  // 88:543
+  0x02, 0x2D, 0x0D, 0x07,  // 89:557
+  0x02, 0x3A, 0x0C, 0x06,  // 90:570
+  0x02, 0x46, 0x06, 0x03,  // 91:582
+  0x02, 0x4C, 0x06, 0x03,  // 92:588
+  0x02, 0x52, 0x04, 0x03,  // 93:594
+  0x02, 0x56, 0x09, 0x05,  // 94:598
+  0x02, 0x5F, 0x0C, 0x06,  // 95:607
+  0x02, 0x6B, 0x03, 0x03,  // 96:619
+  0x02, 0x6E, 0x0A, 0x06,  // 97:622
+  0x02, 0x78, 0x0A, 0x06,  // 98:632
+  0x02, 0x82, 0x0A, 0x05,  // 99:642
+  0x02, 0x8C, 0x0A, 0x06,  // 100:652
+  0x02, 0x96, 0x0A, 0x06,  // 101:662
+  0x02, 0xA0, 0x05, 0x03,  // 102:672
+  0x02, 0xA5, 0x0A, 0x06,  // 103:677
+  0x02, 0xAF, 0x0A, 0x06,  // 104:687
+  0x02, 0xB9, 0x04, 0x02,  // 105:697
+  0x02, 0xBD, 0x04, 0x02,  // 106:701
+  0x02, 0xC1, 0x08, 0x05,  // 107:705
+  0x02, 0xC9, 0x04, 0x02,  // 108:713
+  0x02, 0xCD, 0x10, 0x08,  // 109:717
+  0x02, 0xDD, 0x0A, 0x06,  // 110:733
+  0x02, 0xE7, 0x0A, 0x06,  // 111:743
+  0x02, 0xF1, 0x0A, 0x06,  // 112:753
+  0x02, 0xFB, 0x0A, 0x06,  // 113:763
+  0x03, 0x05, 0x05, 0x03,  // 114:773
+  0x03, 0x0A, 0x08, 0x05,  // 115:778
+  0x03, 0x12, 0x06, 0x03,  // 116:786
+  0x03, 0x18, 0x0A, 0x06,  // 117:792
+  0x03, 0x22, 0x09, 0x05,  // 118:802
+  0x03, 0x2B, 0x0E, 0x07,  // 119:811
+  0x03, 0x39, 0x0A, 0x05,  // 120:825
+  0x03, 0x43, 0x09, 0x05,  // 121:835
+  0x03, 0x4C, 0x0A, 0x05,  // 122:844
+  0x03, 0x56, 0x06, 0x03,  // 123:854
+  0x03, 0x5C, 0x04, 0x03,  // 124:860
+  0x03, 0x60, 0x05, 0x03,  // 125:864
+  0x03, 0x65, 0x09, 0x06,  // 126:869
+  0xFF, 0xFF, 0x00, 0x00,  // 127:65535
+  0xFF, 0xFF, 0x00, 0x0A,  // 128:65535
+  0xFF, 0xFF, 0x00, 0x0A,  // 129:65535
+  0xFF, 0xFF, 0x00, 0x0A,  // 130:65535
+  0xFF, 0xFF, 0x00, 0x0A,  // 131:65535
+  0xFF, 0xFF, 0x00, 0x0A,  // 132:65535
+  0xFF, 0xFF, 0x00, 0x0A,  // 133:65535
+  0xFF, 0xFF, 0x00, 0x0A,  // 134:65535
+  0xFF, 0xFF, 0x00, 0x0A,  // 135:65535
+  0xFF, 0xFF, 0x00, 0x0A,  // 136:65535
+  0xFF, 0xFF, 0x00, 0x0A,  // 137:65535
+  0xFF, 0xFF, 0x00, 0x0A,  // 138:65535
+  0xFF, 0xFF, 0x00, 0x0A,  // 139:65535
+  0xFF, 0xFF, 0x00, 0x0A,  // 140:65535
+  0xFF, 0xFF, 0x00, 0x0A,  // 141:65535
+  0xFF, 0xFF, 0x00, 0x0A,  // 142:65535
+  0xFF, 0xFF, 0x00, 0x0A,  // 143:65535
+  0xFF, 0xFF, 0x00, 0x0A,  // 144:65535
+  0xFF, 0xFF, 0x00, 0x0A,  // 145:65535
+  0xFF, 0xFF, 0x00, 0x0A,  // 146:65535
+  0xFF, 0xFF, 0x00, 0x0A,  // 147:65535
+  0xFF, 0xFF, 0x00, 0x0A,  // 148:65535
+  0xFF, 0xFF, 0x00, 0x0A,  // 149:65535
+  0xFF, 0xFF, 0x00, 0x0A,  // 150:65535
+  0xFF, 0xFF, 0x00, 0x0A,  // 151:65535
+  0xFF, 0xFF, 0x00, 0x0A,  // 152:65535
+  0xFF, 0xFF, 0x00, 0x0A,  // 153:65535
+  0xFF, 0xFF, 0x00, 0x0A,  // 154:65535
+  0xFF, 0xFF, 0x00, 0x0A,  // 155:65535
+  0xFF, 0xFF, 0x00, 0x0A,  // 156:65535
+  0xFF, 0xFF, 0x00, 0x0A,  // 157:65535
+  0xFF, 0xFF, 0x00, 0x0A,  // 158:65535
+  0xFF, 0xFF, 0x00, 0x0A,  // 159:65535
+  0xFF, 0xFF, 0x00, 0x03,  // 160:65535
+  0x03, 0x6E, 0x04, 0x03,  // 161:878
+  0x03, 0x72, 0x0A, 0x06,  // 162:882
+  0x03, 0x7C, 0x0C, 0x06,  // 163:892
+  0x03, 0x88, 0x0A, 0x06,  // 164:904
+  0x03, 0x92, 0x0A, 0x06,  // 165:914
+  0x03, 0x9C, 0x04, 0x03,  // 166:924
+  0x03, 0xA0, 0x0A, 0x06,  // 167:928
+  0x03, 0xAA, 0x05, 0x03,  // 168:938
+  0x03, 0xAF, 0x0D, 0x07,  // 169:943
+  0x03, 0xBC, 0x07, 0x04,  // 170:956
+  0x03, 0xC3, 0x0A, 0x06,  // 171:963
+  0x03, 0xCD, 0x09, 0x06,  // 172:973
+  0x03, 0xD6, 0x03, 0x03,  // 173:982
+  0x03, 0xD9, 0x0D, 0x07,  // 174:985
+  0x03, 0xE6, 0x0B, 0x06,  // 175:998
+  0x03, 0xF1, 0x07, 0x04,  // 176:1009
+  0x03, 0xF8, 0x0A, 0x05,  // 177:1016
+  0x04, 0x02, 0x05, 0x03,  // 178:1026
+  0x04, 0x07, 0x05, 0x03,  // 179:1031
+  0x04, 0x0C, 0x05, 0x03,  // 180:1036
+  0x04, 0x11, 0x0A, 0x06,  // 181:1041
+  0x04, 0x1B, 0x09, 0x05,  // 182:1051
+  0x04, 0x24, 0x03, 0x03,  // 183:1060
+  0x04, 0x27, 0x06, 0x03,  // 184:1063
+  0x04, 0x2D, 0x05, 0x03,  // 185:1069
+  0x04, 0x32, 0x07, 0x04,  // 186:1074
+  0x04, 0x39, 0x0A, 0x06,  // 187:1081
+  0x04, 0x43, 0x10, 0x08,  // 188:1091
+  0x04, 0x53, 0x10, 0x08,  // 189:1107
+  0x04, 0x63, 0x10, 0x08,  // 190:1123
+  0x04, 0x73, 0x0A, 0x06,  // 191:1139
+  0x04, 0x7D, 0x0E, 0x07,  // 192:1149
+  0x04, 0x8B, 0x0E, 0x07,  // 193:1163
+  0x04, 0x99, 0x0E, 0x07,  // 194:1177
+  0x04, 0xA7, 0x0E, 0x07,  // 195:1191
+  0x04, 0xB5, 0x0E, 0x07,  // 196:1205
+  0x04, 0xC3, 0x0E, 0x07,  // 197:1219
+  0x04, 0xD1, 0x12, 0x0A,  // 198:1233
+  0x04, 0xE3, 0x0C, 0x07,  // 199:1251
+  0x04, 0xEF, 0x0C, 0x07,  // 200:1263
+  0x04, 0xFB, 0x0C, 0x07,  // 201:1275
+  0x05, 0x07, 0x0C, 0x07,  // 202:1287
+  0x05, 0x13, 0x0C, 0x07,  // 203:1299
+  0x05, 0x1F, 0x05, 0x03,  // 204:1311
+  0x05, 0x24, 0x04, 0x03,  // 205:1316
+  0x05, 0x28, 0x04, 0x03,  // 206:1320
+  0x05, 0x2C, 0x05, 0x03,  // 207:1324
+  0x05, 0x31, 0x0B, 0x07,  // 208:1329
+  0x05, 0x3C, 0x0C, 0x07,  // 209:1340
+  0x05, 0x48, 0x0E, 0x08,  // 210:1352
+  0x05, 0x56, 0x0E, 0x08,  // 211:1366
+  0x05, 0x64, 0x0E, 0x08,  // 212:1380
+  0x05, 0x72, 0x0E, 0x08,  // 213:1394
+  0x05, 0x80, 0x0E, 0x08,  // 214:1408
+  0x05, 0x8E, 0x0A, 0x06,  // 215:1422
+  0x05, 0x98, 0x0D, 0x08,  // 216:1432
+  0x05, 0xA5, 0x0C, 0x07,  // 217:1445
+  0x05, 0xB1, 0x0C, 0x07,  // 218:1457
+  0x05, 0xBD, 0x0C, 0x07,  // 219:1469
+  0x05, 0xC9, 0x0C, 0x07,  // 220:1481
+  0x05, 0xD5, 0x0D, 0x07,  // 221:1493
+  0x05, 0xE2, 0x0B, 0x07,  // 222:1506
+  0x05, 0xED, 0x0C, 0x06,  // 223:1517
+  0x05, 0xF9, 0x0A, 0x06,  // 224:1529
+  0x06, 0x03, 0x0A, 0x06,  // 225:1539
+  0x06, 0x0D, 0x0A, 0x06,  // 226:1549
+  0x06, 0x17, 0x0A, 0x06,  // 227:1559
+  0x06, 0x21, 0x0A, 0x06,  // 228:1569
+  0x06, 0x2B, 0x0A, 0x06,  // 229:1579
+  0x06, 0x35, 0x10, 0x09,  // 230:1589
+  0x06, 0x45, 0x0A, 0x05,  // 231:1605
+  0x06, 0x4F, 0x0A, 0x06,  // 232:1615
+  0x06, 0x59, 0x0A, 0x06,  // 233:1625
+  0x06, 0x63, 0x0A, 0x06,  // 234:1635
+  0x06, 0x6D, 0x0A, 0x06,  // 235:1645
+  0x06, 0x77, 0x05, 0x03,  // 236:1655
+  0x06, 0x7C, 0x04, 0x03,  // 237:1660
+  0x06, 0x80, 0x05, 0x03,  // 238:1664
+  0x06, 0x85, 0x05, 0x03,  // 239:1669
+  0x06, 0x8A, 0x0A, 0x06,  // 240:1674
+  0x06, 0x94, 0x0A, 0x06,  // 241:1684
+  0x06, 0x9E, 0x0A, 0x06,  // 242:1694
+  0x06, 0xA8, 0x0A, 0x06,  // 243:1704
+  0x06, 0xB2, 0x0A, 0x06,  // 244:1714
+  0x06, 0xBC, 0x0A, 0x06,  // 245:1724
+  0x06, 0xC6, 0x0A, 0x06,  // 246:1734
+  0x06, 0xD0, 0x09, 0x05,  // 247:1744
+  0x06, 0xD9, 0x0A, 0x06,  // 248:1753
+  0x06, 0xE3, 0x0A, 0x06,  // 249:1763
+  0x06, 0xED, 0x0A, 0x06,  // 250:1773
+  0x06, 0xF7, 0x0A, 0x06,  // 251:1783
+  0x07, 0x01, 0x0A, 0x06,  // 252:1793
+  0x07, 0x0B, 0x09, 0x05,  // 253:1803
+  0x07, 0x14, 0x0A, 0x06,  // 254:1812
+  0x07, 0x1E, 0x09, 0x05,  // 255:1822
 
-	// Font Data:
-	0x00,0x00,0x00,0x00,0x00, // 32
-	0x00,0x24,0x49,0x10,0x00, // 33
-	0x00,0x50,0x55,0x00,0x00,0x00,0x00, // 34
-	0x00,0x00,0x50,0xD4,0xA7,0x7C,0x45,0x01,0x00,0x00, // 35
-	0x00,0x00,0x38,0xD5,0xC1,0x50,0x95,0x43,0x00,0x00, // 36
-	0x00,0x00,0x00,0x20,0xA2,0x42,0x05,0x15,0x58,0xA8,0x90,0x00,0x00,0x00,0x00, // 37
-	0x00,0x00,0x80,0x23,0x61,0x18,0xD2,0x31,0x37,0x00,0x00,0x00, // 38
-	0x40,0x05,0x00,0x00, // 39
-	0x00,0xA8,0x24,0x89,0x08, // 40
-	0x00,0x22,0x92,0xA4,0x02, // 41
-	0x00,0x70,0x52,0x00,0x00,0x00,0x00, // 42
-	0x00,0x00,0x00,0x04,0xF1,0x11,0x04,0x00,0x00,0x00, // 43
-	0x00,0x00,0x00,0x90,0x00, // 44
-	0x00,0x00,0x60,0x00,0x00, // 45
-	0x00,0x00,0x00,0x10,0x00, // 46
-	0x00,0x48,0x49,0x09,0x00, // 47
-	0x00,0x00,0x38,0x51,0x14,0x45,0x91,0x03,0x00,0x00, // 48
-	0x00,0x00,0x20,0x8C,0x82,0x20,0x08,0x02,0x00,0x00, // 49
-	0x00,0x00,0x38,0x11,0x84,0x10,0xC2,0x07,0x00,0x00, // 50
-	0x00,0x00,0x38,0x11,0xC4,0x40,0x91,0x03,0x00,0x00, // 51
-	0x00,0x00,0x60,0x94,0x14,0xFD,0x10,0x04,0x00,0x00, // 52
-	0x00,0x00,0x78,0xC2,0x13,0x41,0x91,0x03,0x00,0x00, // 53
-	0x00,0x00,0x38,0xD1,0x13,0x45,0x91,0x03,0x00,0x00, // 54
-	0x00,0x00,0x7C,0x08,0x42,0x10,0x82,0x00,0x00,0x00, // 55
-	0x00,0x00,0x38,0x51,0xE4,0x44,0x91,0x03,0x00,0x00, // 56
-	0x00,0x00,0x38,0x51,0x14,0x79,0x91,0x03,0x00,0x00, // 57
-	0x00,0x00,0x01,0x10,0x00, // 58
-	0x00,0x00,0x01,0x90,0x00, // 59
-	0x00,0x00,0x00,0x10,0x23,0x30,0x10,0x00,0x00,0x00, // 60
-	0x00,0x00,0x00,0xC0,0x07,0x7C,0x00,0x00,0x00,0x00, // 61
-	0x00,0x00,0x00,0x02,0x03,0x31,0x02,0x00,0x00,0x00, // 62
-	0x00,0x00,0x78,0x21,0x88,0x21,0x00,0x02,0x00,0x00, // 63
-	0x00,0x00,0x00,0x00,0x3C,0x0C,0xD1,0xAA,0xAC,0x92,0x4A,0xC9,0x43,0x30,0x3E,0x00,0x00, // 64
-	0x00,0x00,0x00,0x41,0xA1,0x88,0x7C,0xA2,0x20,0x00,0x00,0x00, // 65
-	0x00,0x00,0xC0,0x23,0x12,0xF9,0x44,0x22,0x0F,0x00,0x00,0x00, // 66
-	0x00,0x00,0x80,0x23,0x12,0x08,0x04,0x22,0x0E,0x00,0x00,0x00, // 67
-	0x00,0x00,0xC0,0x21,0x11,0x89,0x44,0x12,0x07,0x00,0x00,0x00, // 68
-	0x00,0x00,0xC0,0x27,0x10,0xF8,0x04,0x02,0x1F,0x00,0x00,0x00, // 69
-	0x00,0x00,0x78,0x82,0xE0,0x08,0x82,0x00,0x00,0x00, // 70
-	0x00,0x00,0x00,0x18,0x24,0x02,0x72,0x42,0x24,0x18,0x00,0x00,0x00,0x00, // 71
-	0x00,0x00,0x40,0x24,0x12,0xF9,0x44,0x22,0x11,0x00,0x00,0x00, // 72
-	0x00,0x24,0x49,0x12,0x00, // 73
-	0x00,0x00,0x84,0x10,0x42,0xE9,0x00,0x00,0x00, // 74
-	0x00,0x00,0x40,0x24,0x51,0x28,0x2C,0x22,0x21,0x00,0x00,0x00, // 75
-	0x00,0x00,0x08,0x82,0x20,0x08,0x82,0x0F,0x00,0x00, // 76
-	0x00,0x00,0x00,0x82,0xC6,0xC6,0xAA,0xAA,0xAA,0x92,0x00,0x00,0x00,0x00, // 77
-	0x00,0x00,0x40,0x64,0x32,0xA9,0x64,0x32,0x11,0x00,0x00,0x00, // 78
-	0x00,0x00,0x00,0x3C,0x42,0x42,0x42,0x42,0x42,0x3C,0x00,0x00,0x00,0x00, // 79
-	0x00,0x00,0xC0,0x23,0x12,0x79,0x04,0x02,0x01,0x00,0x00,0x00, // 80
-	0x00,0x00,0x00,0x3C,0x42,0x42,0x42,0x42,0x32,0x7C,0x00,0x00,0x00,0x00, // 81
-	0x00,0x00,0xC0,0x23,0x12,0x79,0x24,0x22,0x11,0x00,0x00,0x00, // 82
-	0x00,0x00,0x80,0x23,0x12,0x70,0x40,0x22,0x0E,0x00,0x00,0x00, // 83
-	0x00,0x00,0xF8,0x08,0x82,0x20,0x08,0x02,0x00,0x00, // 84
-	0x00,0x00,0x40,0x24,0x12,0x89,0x44,0x22,0x0E,0x00,0x00,0x00, // 85
-	0x00,0x00,0x20,0x28,0x12,0x89,0x28,0x14,0x04,0x00,0x00,0x00, // 86
-	0x00,0x00,0x00,0x88,0x98,0x52,0x95,0x2A,0x55,0xAA,0x88,0x00,0x00,0x00,0x00, // 87
-	0x00,0x00,0x40,0x44,0x41,0x20,0x28,0xA2,0x20,0x00,0x00,0x00, // 88
-	0x00,0x00,0x20,0x28,0xA2,0x20,0x10,0x08,0x04,0x00,0x00,0x00, // 89
-	0x00,0x00,0xFC,0x30,0xC6,0x18,0xC1,0x0F,0x00,0x00, // 90
-	0x00,0x2C,0x49,0x92,0x0C, // 91
-	0x00,0x12,0x49,0x24,0x00, // 92
-	0x00,0x26,0x49,0x92,0x06, // 93
-	0x00,0x00,0xA2,0x54,0x04,0x00,0x00,0x00,0x00, // 94
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFC,0x00, // 95
-	0x00,0x22,0x00,0x00,0x00, // 96
-	0x00,0x00,0x00,0x00,0x07,0x71,0x92,0x07,0x00,0x00, // 97
-	0x00,0x00,0x08,0x82,0x23,0x49,0x92,0x03,0x00,0x00, // 98
-	0x00,0x00,0x00,0x98,0x14,0x92,0x01,0x00,0x00, // 99
-	0x00,0x00,0x40,0x10,0x27,0x49,0x12,0x07,0x00,0x00, // 100
-	0x00,0x00,0x00,0x00,0x23,0x79,0x02,0x07,0x00,0x00, // 101
-	0x00,0xA8,0x4B,0x12,0x00, // 102
-	0x00,0x00,0x00,0x00,0x27,0x49,0x12,0x27,0x31,0x00, // 103
-	0x00,0x00,0x08,0x82,0x23,0x49,0x92,0x04,0x00,0x00, // 104
-	0x80,0xA8,0x0A,0x00, // 105
-	0x80,0xA8,0x6A,0x00, // 106
-	0x00,0x80,0x10,0x52,0x39,0x25,0x01,0x00,0x00, // 107
-	0x80,0xAA,0x0A,0x00, // 108
-	0x00,0x00,0x00,0x00,0x00,0x7E,0x92,0x92,0x92,0x92,0x00,0x00,0x00,0x00, // 109
-	0x00,0x00,0x00,0x80,0x23,0x49,0x92,0x04,0x00,0x00, // 110
-	0x00,0x00,0x00,0x00,0x23,0x49,0x12,0x03,0x00,0x00, // 111
-	0x00,0x00,0x00,0x80,0x23,0x49,0x92,0x23,0x08,0x00, // 112
-	0x00,0x00,0x00,0x00,0x27,0x49,0x12,0x07,0x41,0x00, // 113
-	0x00,0x00,0x4B,0x12,0x00, // 114
-	0x00,0x00,0x00,0x5C,0x30,0xE8,0x00,0x00,0x00, // 115
-	0x00,0xA4,0x4B,0x32,0x00, // 116
-	0x00,0x00,0x00,0x80,0x24,0x49,0x12,0x07,0x00,0x00, // 117
-	0x00,0x00,0x00,0xA2,0x52,0x8A,0x00,0x00,0x00, // 118
-	0x00,0x00,0x00,0x00,0x48,0x56,0xAB,0x55,0x11,0x00,0x00,0x00, // 119
-	0x00,0x00,0x00,0xA2,0x22,0x2A,0x02,0x00,0x00, // 120
-	0x00,0x00,0x00,0xA2,0x52,0x8A,0x10,0x01,0x00, // 121
-	0x00,0x00,0x00,0x3E,0x22,0xE2,0x03,0x00,0x00, // 122
-	0x00,0x2C,0x29,0x92,0x0C, // 123
-	0x00,0x24,0x49,0x92,0x04, // 124
-	0x00,0x26,0x89,0x92,0x06, // 125
-	0x00,0x00,0x00,0x00,0x70,0x75,0x00,0x00,0x00,0x00, // 126
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 127
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 128
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 129
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 130
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 131
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 132
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 133
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 134
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 135
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 136
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 137
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 138
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 139
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 140
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 141
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 142
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 143
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 144
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 145
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 146
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 147
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 148
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 149
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 150
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 151
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 152
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 153
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 154
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 155
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 156
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 157
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 158
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 159
-	0x00,0x00,0x00,0x00,0x00, // 160
-	0x00,0x00,0x41,0x92,0x04, // 161
-	0x00,0x00,0x20,0x08,0xA3,0x19,0x16,0x43,0x10,0x00, // 162
-	0x00,0x00,0x70,0xA2,0xF0,0x10,0xC2,0x0F,0x00,0x00, // 163
-	0x00,0x00,0x00,0x80,0x27,0x49,0x1E,0x00,0x00,0x00, // 164
-	0x00,0x00,0x44,0x8A,0xF2,0x11,0x1F,0x01,0x00,0x00, // 165
-	0x00,0x24,0x01,0x92,0x04, // 166
-	0x00,0x00,0x38,0x91,0xD0,0x44,0x16,0x12,0x39,0x00, // 167
-	0x00,0x0A,0x00,0x00,0x00, // 168
-	0x00,0x00,0x80,0x23,0xCA,0x16,0xB3,0x22,0x0E,0x00,0x00,0x00, // 169
-	0x00,0xF0,0xF8,0x0F,0x00,0x00,0x00, // 170
-	0x00,0x00,0x00,0x00,0x40,0x29,0x0A,0x05,0x00,0x00, // 171
-	0x00,0x00,0x00,0xC0,0x07,0x41,0x00,0x00,0x00,0x00, // 172
-	0x00,0x00,0x60,0x00,0x00, // 173
-	0x00,0x00,0x80,0x23,0x6A,0x76,0xAB,0x22,0x0E,0x00,0x00,0x00, // 174
-	0xC0,0x0F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 175
-	0x00,0xE0,0xEA,0x00,0x00,0x00,0x00, // 176
-	0x00,0x00,0x40,0xC8,0x27,0xE4,0x03,0x00,0x00, // 177
-	0x00,0x4E,0x1D,0x00,0x00, // 178
-	0x00,0x2E,0x1E,0x00,0x00, // 179
-	0x00,0x28,0x00,0x00,0x00, // 180
-	0x00,0x00,0x00,0x80,0x24,0x49,0x92,0x27,0x08,0x00, // 181
-	0x00,0x00,0xBF,0xD6,0x52,0x4A,0x29,0x05,0x00, // 182
-	0x00,0x00,0x08,0x00,0x00, // 183
-	0x00,0x00,0x00,0x80,0x68, // 184
-	0x00,0x68,0x12,0x00,0x00, // 185
-	0x00,0x60,0x99,0x06,0x00,0x00,0x00, // 186
-	0x00,0x00,0x00,0x00,0xA0,0x50,0x94,0x02,0x00,0x00, // 187
-	0x00,0x00,0x00,0x44,0x26,0x14,0x4C,0x68,0xF4,0x42,0x00,0x00,0x00,0x00, // 188
-	0x00,0x00,0x00,0x44,0x26,0x14,0xF4,0x88,0x44,0xE2,0x00,0x00,0x00,0x00, // 189
-	0x00,0x00,0x00,0x47,0x22,0x14,0x57,0x68,0xF4,0x44,0x00,0x00,0x00,0x00, // 190
-	0x00,0x00,0x00,0x00,0x02,0x20,0x8C,0x20,0x31,0x00, // 191
-	0x08,0x08,0x00,0x41,0xA1,0x88,0x7C,0xA2,0x20,0x00,0x00,0x00, // 192
-	0x10,0x04,0x00,0x41,0xA1,0x88,0x7C,0xA2,0x20,0x00,0x00,0x00, // 193
-	0x08,0x0A,0x00,0x41,0xA1,0x88,0x7C,0xA2,0x20,0x00,0x00,0x00, // 194
-	0x14,0x05,0x00,0x41,0xA1,0x88,0x7C,0xA2,0x20,0x00,0x00,0x00, // 195
-	0x00,0x0A,0x00,0x41,0xA1,0x88,0x7C,0xA2,0x20,0x00,0x00,0x00, // 196
-	0x00,0x0E,0x85,0x43,0xA1,0x88,0x7C,0xA2,0x20,0x00,0x00,0x00, // 197
-	0x00,0x00,0x00,0x00,0x7E,0x28,0x90,0x60,0x9E,0x0F,0x21,0x84,0x07,0x00,0x00,0x00,0x00, // 198
-	0x00,0x00,0x80,0x23,0x12,0x08,0x04,0x22,0x0E,0x02,0x82,0x01, // 199
-	0x04,0x04,0xC0,0x27,0x10,0xF8,0x04,0x02,0x1F,0x00,0x00,0x00, // 200
-	0x10,0x04,0xC0,0x27,0x10,0xF8,0x04,0x02,0x1F,0x00,0x00,0x00, // 201
-	0x04,0x05,0xC0,0x27,0x10,0xF8,0x04,0x02,0x1F,0x00,0x00,0x00, // 202
-	0x00,0x0A,0xC0,0x27,0x10,0xF8,0x04,0x02,0x1F,0x00,0x00,0x00, // 203
-	0x22,0x24,0x49,0x12,0x00, // 204
-	0x0A,0x24,0x49,0x12,0x00, // 205
-	0x11,0x24,0x49,0x12,0x00, // 206
-	0x28,0x24,0x49,0x12,0x00, // 207
-	0x00,0x00,0xC0,0x21,0x11,0xBD,0x44,0x12,0x07,0x00,0x00,0x00, // 208
-	0x14,0x05,0x40,0x64,0x32,0xA9,0x64,0x32,0x11,0x00,0x00,0x00, // 209
-	0x08,0x10,0x00,0x3C,0x42,0x42,0x42,0x42,0x42,0x3C,0x00,0x00,0x00,0x00, // 210
-	0x10,0x08,0x00,0x3C,0x42,0x42,0x42,0x42,0x42,0x3C,0x00,0x00,0x00,0x00, // 211
-	0x10,0x28,0x00,0x3C,0x42,0x42,0x42,0x42,0x42,0x3C,0x00,0x00,0x00,0x00, // 212
-	0x28,0x14,0x00,0x3C,0x42,0x42,0x42,0x42,0x42,0x3C,0x00,0x00,0x00,0x00, // 213
-	0x00,0x14,0x00,0x3C,0x42,0x42,0x42,0x42,0x42,0x3C,0x00,0x00,0x00,0x00, // 214
-	0x00,0x00,0x00,0x91,0x43,0x38,0x11,0x00,0x00,0x00, // 215
-	0x00,0x00,0x00,0x7C,0x22,0x52,0x4A,0x4A,0x24,0x3E,0x00,0x00,0x00,0x00, // 216
-	0x04,0x04,0x40,0x24,0x12,0x89,0x44,0x22,0x0E,0x00,0x00,0x00, // 217
-	0x08,0x02,0x40,0x24,0x12,0x89,0x44,0x22,0x0E,0x00,0x00,0x00, // 218
-	0x08,0x0A,0x40,0x24,0x12,0x89,0x44,0x22,0x0E,0x00,0x00,0x00, // 219
-	0x00,0x0A,0x40,0x24,0x12,0x89,0x44,0x22,0x0E,0x00,0x00,0x00, // 220
-	0x10,0x04,0x20,0x28,0xA2,0x20,0x10,0x08,0x04,0x00,0x00,0x00, // 221
-	0x00,0x00,0x40,0xE0,0x11,0x89,0x44,0x1E,0x01,0x00,0x00,0x00, // 222
-	0x00,0x00,0x30,0x92,0xA4,0xC8,0xA6,0x06,0x00,0x00, // 223
-	0x00,0x40,0x20,0x00,0x07,0x71,0x92,0x07,0x00,0x00, // 224
-	0x00,0x80,0x10,0x00,0x07,0x71,0x92,0x07,0x00,0x00, // 225
-	0x00,0x80,0x50,0x00,0x07,0x71,0x92,0x07,0x00,0x00, // 226
-	0x00,0x40,0x29,0x00,0x07,0x71,0x92,0x07,0x00,0x00, // 227
-	0x00,0x00,0x50,0x00,0x07,0x71,0x92,0x07,0x00,0x00, // 228
-	0x00,0x47,0x71,0x00,0x07,0x71,0x92,0x07,0x00,0x00, // 229
-	0x00,0x00,0x00,0x00,0x00,0x80,0x8D,0x24,0x7E,0x12,0xDC,0x01,0x00,0x00,0x00, // 230
-	0x00,0x00,0x00,0x98,0x14,0x92,0x11,0xC4,0x00, // 231
-	0x00,0x40,0x20,0x00,0x23,0x79,0x02,0x07,0x00,0x00, // 232
-	0x00,0x80,0x10,0x00,0x23,0x79,0x02,0x07,0x00,0x00, // 233
-	0x00,0x80,0x50,0x00,0x23,0x79,0x02,0x07,0x00,0x00, // 234
-	0x00,0x00,0x50,0x00,0x23,0x79,0x02,0x07,0x00,0x00, // 235
-	0x80,0x08,0x49,0x12,0x00, // 236
-	0x80,0x02,0x49,0x12,0x00, // 237
-	0x80,0x0A,0x49,0x12,0x00, // 238
-	0x00,0x0A,0x49,0x12,0x00, // 239
-	0x00,0x00,0x30,0x08,0x27,0x49,0x12,0x03,0x00,0x00, // 240
-	0x00,0x40,0x29,0x80,0x23,0x49,0x92,0x04,0x00,0x00, // 241
-	0x00,0x40,0x20,0x00,0x23,0x49,0x12,0x03,0x00,0x00, // 242
-	0x00,0x80,0x10,0x00,0x23,0x49,0x12,0x03,0x00,0x00, // 243
-	0x00,0x80,0x50,0x00,0x23,0x49,0x12,0x03,0x00,0x00, // 244
-	0x00,0x40,0x29,0x00,0x23,0x49,0x12,0x03,0x00,0x00, // 245
-	0x00,0x00,0x50,0x00,0x23,0x49,0x12,0x03,0x00,0x00, // 246
-	0x00,0x00,0x40,0xC0,0x07,0x04,0x00,0x00,0x00, // 247
-	0x00,0x00,0x00,0x00,0xA7,0x58,0x94,0x03,0x00,0x00, // 248
-	0x00,0x40,0x20,0x80,0x24,0x49,0x12,0x07,0x00,0x00, // 249
-	0x00,0x80,0x10,0x80,0x24,0x49,0x12,0x07,0x00,0x00, // 250
-	0x00,0x40,0x28,0x80,0x24,0x49,0x12,0x07,0x00,0x00, // 251
-	0x00,0x00,0x50,0x80,0x24,0x49,0x12,0x07,0x00,0x00, // 252
-	0x00,0x20,0x02,0xA2,0x52,0x8A,0x10,0x01,0x00, // 253
-	0x00,0x00,0x08,0x82,0x23,0x49,0x92,0x23,0x08,0x00, // 254
-	0x00,0x00,0x05,0xA2,0x52,0x8A,0x10,0x01,0x00 // 255
+  // Font Data:
+  0x00,0x00,0xF8,0x02,  // 33
+  0x38,0x00,0x00,0x00,0x38, // 34
+  0xA0,0x03,0xE0,0x00,0xB8,0x03,0xE0,0x00,0xB8, // 35
+  0x30,0x01,0x28,0x02,0xF8,0x07,0x48,0x02,0x90,0x01,  // 36
+  0x00,0x00,0x30,0x00,0x48,0x00,0x30,0x03,0xC0,0x00,0xB0,0x01,0x48,0x02,0x80,0x01,  // 37
+  0x80,0x01,0x50,0x02,0x68,0x02,0xA8,0x02,0x18,0x01,0x80,0x03,0x80,0x02,  // 38
+  0x38, // 39
+  0xE0,0x03,0x10,0x04,0x08,0x08,  // 40
+  0x08,0x08,0x10,0x04,0xE0,0x03,  // 41
+  0x28,0x00,0x18,0x00,0x28, // 42
+  0x40,0x00,0x40,0x00,0xF0,0x01,0x40,0x00,0x40, // 43
+  0x00,0x00,0x00,0x06,  // 44
+  0x80,0x00,0x80, // 45
+  0x00,0x00,0x00,0x02,  // 46
+  0x00,0x03,0xE0,0x00,0x18, // 47
+  0xF0,0x01,0x08,0x02,0x08,0x02,0x08,0x02,0xF0,0x01,  // 48
+  0x00,0x00,0x20,0x00,0x10,0x00,0xF8,0x03,  // 49
+  0x10,0x02,0x08,0x03,0x88,0x02,0x48,0x02,0x30,0x02,  // 50
+  0x10,0x01,0x08,0x02,0x48,0x02,0x48,0x02,0xB0,0x01,  // 51
+  0xC0,0x00,0xA0,0x00,0x90,0x00,0x88,0x00,0xF8,0x03,0x80, // 52
+  0x60,0x01,0x38,0x02,0x28,0x02,0x28,0x02,0xC8,0x01,  // 53
+  0xF0,0x01,0x28,0x02,0x28,0x02,0x28,0x02,0xD0,0x01,  // 54
+  0x08,0x00,0x08,0x03,0xC8,0x00,0x38,0x00,0x08, // 55
+  0xB0,0x01,0x48,0x02,0x48,0x02,0x48,0x02,0xB0,0x01,  // 56
+  0x70,0x01,0x88,0x02,0x88,0x02,0x88,0x02,0xF0,0x01,  // 57
+  0x00,0x00,0x20,0x02,  // 58
+  0x00,0x00,0x20,0x06,  // 59
+  0x00,0x00,0x40,0x00,0xA0,0x00,0xA0,0x00,0x10,0x01,  // 60
+  0xA0,0x00,0xA0,0x00,0xA0,0x00,0xA0,0x00,0xA0, // 61
+  0x00,0x00,0x10,0x01,0xA0,0x00,0xA0,0x00,0x40, // 62
+  0x10,0x00,0x08,0x00,0x08,0x00,0xC8,0x02,0x48,0x00,0x30, // 63
+  0x00,0x00,0xC0,0x03,0x30,0x04,0xD0,0x09,0x28,0x0A,0x28,0x0A,0xC8,0x0B,0x68,0x0A,0x10,0x05,0xE0,0x04,  // 64
+  0x00,0x02,0xC0,0x01,0xB0,0x00,0x88,0x00,0xB0,0x00,0xC0,0x01,0x00,0x02,  // 65
+  0x00,0x00,0xF8,0x03,0x48,0x02,0x48,0x02,0x48,0x02,0xF0,0x01,  // 66
+  0x00,0x00,0xF0,0x01,0x08,0x02,0x08,0x02,0x08,0x02,0x10,0x01,  // 67
+  0x00,0x00,0xF8,0x03,0x08,0x02,0x08,0x02,0x10,0x01,0xE0, // 68
+  0x00,0x00,0xF8,0x03,0x48,0x02,0x48,0x02,0x48,0x02,0x48,0x02,  // 69
+  0x00,0x00,0xF8,0x03,0x48,0x00,0x48,0x00,0x08, // 70
+  0x00,0x00,0xE0,0x00,0x10,0x01,0x08,0x02,0x48,0x02,0x50,0x01,0xC0, // 71
+  0x00,0x00,0xF8,0x03,0x40,0x00,0x40,0x00,0x40,0x00,0xF8,0x03,  // 72
+  0x00,0x00,0xF8,0x03,  // 73
+  0x00,0x03,0x00,0x02,0x00,0x02,0xF8,0x01,  // 74
+  0x00,0x00,0xF8,0x03,0x80,0x00,0x60,0x00,0x90,0x00,0x08,0x01,0x00,0x02,  // 75
+  0x00,0x00,0xF8,0x03,0x00,0x02,0x00,0x02,0x00,0x02,0x00,0x02,  // 76
+  0x00,0x00,0xF8,0x03,0x30,0x00,0xC0,0x01,0x00,0x02,0xC0,0x01,0x30,0x00,0xF8,0x03,  // 77
+  0x00,0x00,0xF8,0x03,0x30,0x00,0x40,0x00,0x80,0x01,0xF8,0x03,  // 78
+  0x00,0x00,0xF0,0x01,0x08,0x02,0x08,0x02,0x08,0x02,0x08,0x02,0xF0,0x01,  // 79
+  0x00,0x00,0xF8,0x03,0x48,0x00,0x48,0x00,0x48,0x00,0x30, // 80
+  0x00,0x00,0xF0,0x01,0x08,0x02,0x08,0x02,0x08,0x03,0x08,0x03,0xF0,0x02,  // 81
+  0x00,0x00,0xF8,0x03,0x48,0x00,0x48,0x00,0xC8,0x00,0x30,0x03,  // 82
+  0x00,0x00,0x30,0x01,0x48,0x02,0x48,0x02,0x48,0x02,0x90,0x01,  // 83
+  0x00,0x00,0x08,0x00,0x08,0x00,0xF8,0x03,0x08,0x00,0x08, // 84
+  0x00,0x00,0xF8,0x01,0x00,0x02,0x00,0x02,0x00,0x02,0xF8,0x01,  // 85
+  0x08,0x00,0x70,0x00,0x80,0x01,0x00,0x02,0x80,0x01,0x70,0x00,0x08, // 86
+  0x18,0x00,0xE0,0x01,0x00,0x02,0xF0,0x01,0x08,0x00,0xF0,0x01,0x00,0x02,0xE0,0x01,0x18, // 87
+  0x00,0x02,0x08,0x01,0x90,0x00,0x60,0x00,0x90,0x00,0x08,0x01,0x00,0x02,  // 88
+  0x08,0x00,0x10,0x00,0x20,0x00,0xC0,0x03,0x20,0x00,0x10,0x00,0x08, // 89
+  0x08,0x03,0x88,0x02,0xC8,0x02,0x68,0x02,0x38,0x02,0x18,0x02,  // 90
+  0x00,0x00,0xF8,0x0F,0x08,0x08,  // 91
+  0x18,0x00,0xE0,0x00,0x00,0x03,  // 92
+  0x08,0x08,0xF8,0x0F,  // 93
+  0x40,0x00,0x30,0x00,0x08,0x00,0x30,0x00,0x40, // 94
+  0x00,0x08,0x00,0x08,0x00,0x08,0x00,0x08,0x00,0x08,0x00,0x08,  // 95
+  0x08,0x00,0x10, // 96
+  0x00,0x00,0x00,0x03,0xA0,0x02,0xA0,0x02,0xE0,0x03,  // 97
+  0x00,0x00,0xF8,0x03,0x20,0x02,0x20,0x02,0xC0,0x01,  // 98
+  0x00,0x00,0xC0,0x01,0x20,0x02,0x20,0x02,0x40,0x01,  // 99
+  0x00,0x00,0xC0,0x01,0x20,0x02,0x20,0x02,0xF8,0x03,  // 100
+  0x00,0x00,0xC0,0x01,0xA0,0x02,0xA0,0x02,0xC0,0x02,  // 101
+  0x20,0x00,0xF0,0x03,0x28, // 102
+  0x00,0x00,0xC0,0x05,0x20,0x0A,0x20,0x0A,0xE0,0x07,  // 103
+  0x00,0x00,0xF8,0x03,0x20,0x00,0x20,0x00,0xC0,0x03,  // 104
+  0x00,0x00,0xE8,0x03,  // 105
+  0x00,0x08,0xE8,0x07,  // 106
+  0xF8,0x03,0x80,0x00,0xC0,0x01,0x20,0x02,  // 107
+  0x00,0x00,0xF8,0x03,  // 108
+  0x00,0x00,0xE0,0x03,0x20,0x00,0x20,0x00,0xE0,0x03,0x20,0x00,0x20,0x00,0xC0,0x03,  // 109
+  0x00,0x00,0xE0,0x03,0x20,0x00,0x20,0x00,0xC0,0x03,  // 110
+  0x00,0x00,0xC0,0x01,0x20,0x02,0x20,0x02,0xC0,0x01,  // 111
+  0x00,0x00,0xE0,0x0F,0x20,0x02,0x20,0x02,0xC0,0x01,  // 112
+  0x00,0x00,0xC0,0x01,0x20,0x02,0x20,0x02,0xE0,0x0F,  // 113
+  0x00,0x00,0xE0,0x03,0x20, // 114
+  0x40,0x02,0xA0,0x02,0xA0,0x02,0x20,0x01,  // 115
+  0x20,0x00,0xF8,0x03,0x20,0x02,  // 116
+  0x00,0x00,0xE0,0x01,0x00,0x02,0x00,0x02,0xE0,0x03,  // 117
+  0x20,0x00,0xC0,0x01,0x00,0x02,0xC0,0x01,0x20, // 118
+  0xE0,0x01,0x00,0x02,0xC0,0x01,0x20,0x00,0xC0,0x01,0x00,0x02,0xE0,0x01,  // 119
+  0x20,0x02,0x40,0x01,0x80,0x00,0x40,0x01,0x20,0x02,  // 120
+  0x20,0x00,0xC0,0x09,0x00,0x06,0xC0,0x01,0x20, // 121
+  0x20,0x02,0x20,0x03,0xA0,0x02,0x60,0x02,0x20,0x02,  // 122
+  0x80,0x00,0x78,0x0F,0x08,0x08,  // 123
+  0x00,0x00,0xF8,0x0F,  // 124
+  0x08,0x08,0x78,0x0F,0x80, // 125
+  0xC0,0x00,0x40,0x00,0xC0,0x00,0x80,0x00,0xC0, // 126
+  0x00,0x00,0xA0,0x0F,  // 161
+  0x00,0x00,0xC0,0x01,0xA0,0x0F,0x78,0x02,0x40,0x01,  // 162
+  0x40,0x02,0x70,0x03,0xC8,0x02,0x48,0x02,0x08,0x02,0x10,0x02,  // 163
+  0x00,0x00,0xE0,0x01,0x20,0x01,0x20,0x01,0xE0,0x01,  // 164
+  0x48,0x01,0x70,0x01,0xC0,0x03,0x70,0x01,0x48,0x01,  // 165
+  0x00,0x00,0x38,0x0F,  // 166
+  0xD0,0x04,0x28,0x09,0x48,0x09,0x48,0x0A,0x90,0x05,  // 167
+  0x08,0x00,0x00,0x00,0x08, // 168
+  0xE0,0x00,0x10,0x01,0x48,0x02,0xA8,0x02,0xA8,0x02,0x10,0x01,0xE0, // 169
+  0x68,0x00,0x68,0x00,0x68,0x00,0x78, // 170
+  0x00,0x00,0x80,0x01,0x40,0x02,0x80,0x01,0x40,0x02,  // 171
+  0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0xE0, // 172
+  0x80,0x00,0x80, // 173
+  0xE0,0x00,0x10,0x01,0xE8,0x02,0x68,0x02,0xC8,0x02,0x10,0x01,0xE0, // 174
+  0x02,0x00,0x02,0x00,0x02,0x00,0x02,0x00,0x02,0x00,0x02, // 175
+  0x00,0x00,0x38,0x00,0x28,0x00,0x38, // 176
+  0x40,0x02,0x40,0x02,0xF0,0x03,0x40,0x02,0x40,0x02,  // 177
+  0x48,0x00,0x68,0x00,0x58, // 178
+  0x48,0x00,0x58,0x00,0x68, // 179
+  0x00,0x00,0x10,0x00,0x08, // 180
+  0x00,0x00,0xE0,0x0F,0x00,0x02,0x00,0x02,0xE0,0x03,  // 181
+  0x70,0x00,0xF8,0x0F,0x08,0x00,0xF8,0x0F,0x08, // 182
+  0x00,0x00,0x40, // 183
+  0x00,0x00,0x00,0x14,0x00,0x18,  // 184
+  0x00,0x00,0x10,0x00,0x78, // 185
+  0x30,0x00,0x48,0x00,0x48,0x00,0x30, // 186
+  0x00,0x00,0x40,0x02,0x80,0x01,0x40,0x02,0x80,0x01,  // 187
+  0x00,0x00,0x10,0x02,0x78,0x01,0xC0,0x00,0x20,0x01,0x90,0x01,0xC8,0x03,0x00,0x01,  // 188
+  0x00,0x00,0x10,0x02,0x78,0x01,0x80,0x00,0x60,0x00,0x50,0x02,0x48,0x03,0xC0,0x02,  // 189
+  0x48,0x00,0x58,0x00,0x68,0x03,0x80,0x00,0x60,0x01,0x90,0x01,0xC8,0x03,0x00,0x01,  // 190
+  0x00,0x00,0x00,0x06,0x00,0x09,0xA0,0x09,0x00,0x04,  // 191
+  0x00,0x02,0xC0,0x01,0xB0,0x00,0x89,0x00,0xB2,0x00,0xC0,0x01,0x00,0x02,  // 192
+  0x00,0x02,0xC0,0x01,0xB0,0x00,0x8A,0x00,0xB1,0x00,0xC0,0x01,0x00,0x02,  // 193
+  0x00,0x02,0xC0,0x01,0xB2,0x00,0x89,0x00,0xB2,0x00,0xC0,0x01,0x00,0x02,  // 194
+  0x00,0x02,0xC2,0x01,0xB1,0x00,0x8A,0x00,0xB1,0x00,0xC0,0x01,0x00,0x02,  // 195
+  0x00,0x02,0xC0,0x01,0xB2,0x00,0x88,0x00,0xB2,0x00,0xC0,0x01,0x00,0x02,  // 196
+  0x00,0x02,0xC0,0x01,0xBE,0x00,0x8A,0x00,0xBE,0x00,0xC0,0x01,0x00,0x02,  // 197
+  0x00,0x03,0xC0,0x00,0xE0,0x00,0x98,0x00,0x88,0x00,0xF8,0x03,0x48,0x02,0x48,0x02,0x48,0x02,  // 198
+  0x00,0x00,0xF0,0x01,0x08,0x02,0x08,0x16,0x08,0x1A,0x10,0x01,  // 199
+  0x00,0x00,0xF8,0x03,0x49,0x02,0x4A,0x02,0x48,0x02,0x48,0x02,  // 200
+  0x00,0x00,0xF8,0x03,0x48,0x02,0x4A,0x02,0x49,0x02,0x48,0x02,  // 201
+  0x00,0x00,0xFA,0x03,0x49,0x02,0x4A,0x02,0x48,0x02,0x48,0x02,  // 202
+  0x00,0x00,0xF8,0x03,0x4A,0x02,0x48,0x02,0x4A,0x02,0x48,0x02,  // 203
+  0x00,0x00,0xF9,0x03,0x02, // 204
+  0x02,0x00,0xF9,0x03,  // 205
+  0x01,0x00,0xFA,0x03,  // 206
+  0x02,0x00,0xF8,0x03,0x02, // 207
+  0x40,0x00,0xF8,0x03,0x48,0x02,0x48,0x02,0x10,0x01,0xE0, // 208
+  0x00,0x00,0xFA,0x03,0x31,0x00,0x42,0x00,0x81,0x01,0xF8,0x03,  // 209
+  0x00,0x00,0xF0,0x01,0x08,0x02,0x09,0x02,0x0A,0x02,0x08,0x02,0xF0,0x01,  // 210
+  0x00,0x00,0xF0,0x01,0x08,0x02,0x0A,0x02,0x09,0x02,0x08,0x02,0xF0,0x01,  // 211
+  0x00,0x00,0xF0,0x01,0x08,0x02,0x0A,0x02,0x09,0x02,0x0A,0x02,0xF0,0x01,  // 212
+  0x00,0x00,0xF0,0x01,0x0A,0x02,0x09,0x02,0x0A,0x02,0x09,0x02,0xF0,0x01,  // 213
+  0x00,0x00,0xF0,0x01,0x0A,0x02,0x08,0x02,0x0A,0x02,0x08,0x02,0xF0,0x01,  // 214
+  0x10,0x01,0xA0,0x00,0xE0,0x00,0xA0,0x00,0x10,0x01,  // 215
+  0x00,0x00,0xF0,0x02,0x08,0x03,0xC8,0x02,0x28,0x02,0x18,0x03,0xE8, // 216
+  0x00,0x00,0xF8,0x01,0x01,0x02,0x02,0x02,0x00,0x02,0xF8,0x01,  // 217
+  0x00,0x00,0xF8,0x01,0x02,0x02,0x01,0x02,0x00,0x02,0xF8,0x01,  // 218
+  0x00,0x00,0xF8,0x01,0x02,0x02,0x01,0x02,0x02,0x02,0xF8,0x01,  // 219
+  0x00,0x00,0xF8,0x01,0x02,0x02,0x00,0x02,0x02,0x02,0xF8,0x01,  // 220
+  0x08,0x00,0x10,0x00,0x20,0x00,0xC2,0x03,0x21,0x00,0x10,0x00,0x08, // 221
+  0x00,0x00,0xF8,0x03,0x10,0x01,0x10,0x01,0x10,0x01,0xE0, // 222
+  0x00,0x00,0xF0,0x03,0x08,0x01,0x48,0x02,0xB0,0x02,0x80,0x01,  // 223
+  0x00,0x00,0x00,0x03,0xA4,0x02,0xA8,0x02,0xE0,0x03,  // 224
+  0x00,0x00,0x00,0x03,0xA8,0x02,0xA4,0x02,0xE0,0x03,  // 225
+  0x00,0x00,0x00,0x03,0xA8,0x02,0xA4,0x02,0xE8,0x03,  // 226
+  0x00,0x00,0x08,0x03,0xA4,0x02,0xA8,0x02,0xE4,0x03,  // 227
+  0x00,0x00,0x00,0x03,0xA8,0x02,0xA0,0x02,0xE8,0x03,  // 228
+  0x00,0x00,0x00,0x03,0xAE,0x02,0xAA,0x02,0xEE,0x03,  // 229
+  0x00,0x00,0x40,0x03,0xA0,0x02,0xA0,0x02,0xC0,0x01,0xA0,0x02,0xA0,0x02,0xC0,0x02,  // 230
+  0x00,0x00,0xC0,0x01,0x20,0x16,0x20,0x1A,0x40,0x01,  // 231
+  0x00,0x00,0xC0,0x01,0xA4,0x02,0xA8,0x02,0xC0,0x02,  // 232
+  0x00,0x00,0xC0,0x01,0xA8,0x02,0xA4,0x02,0xC0,0x02,  // 233
+  0x00,0x00,0xC0,0x01,0xA8,0x02,0xA4,0x02,0xC8,0x02,  // 234
+  0x00,0x00,0xC0,0x01,0xA8,0x02,0xA0,0x02,0xC8,0x02,  // 235
+  0x00,0x00,0xE4,0x03,0x08, // 236
+  0x08,0x00,0xE4,0x03,  // 237
+  0x08,0x00,0xE4,0x03,0x08, // 238
+  0x08,0x00,0xE0,0x03,0x08, // 239
+  0x00,0x00,0xC0,0x01,0x28,0x02,0x38,0x02,0xE0,0x01,  // 240
+  0x00,0x00,0xE8,0x03,0x24,0x00,0x28,0x00,0xC4,0x03,  // 241
+  0x00,0x00,0xC0,0x01,0x24,0x02,0x28,0x02,0xC0,0x01,  // 242
+  0x00,0x00,0xC0,0x01,0x28,0x02,0x24,0x02,0xC0,0x01,  // 243
+  0x00,0x00,0xC0,0x01,0x28,0x02,0x24,0x02,0xC8,0x01,  // 244
+  0x00,0x00,0xC8,0x01,0x24,0x02,0x28,0x02,0xC4,0x01,  // 245
+  0x00,0x00,0xC0,0x01,0x28,0x02,0x20,0x02,0xC8,0x01,  // 246
+  0x40,0x00,0x40,0x00,0x50,0x01,0x40,0x00,0x40, // 247
+  0x00,0x00,0xC0,0x02,0xA0,0x03,0x60,0x02,0xA0,0x01,  // 248
+  0x00,0x00,0xE0,0x01,0x04,0x02,0x08,0x02,0xE0,0x03,  // 249
+  0x00,0x00,0xE0,0x01,0x08,0x02,0x04,0x02,0xE0,0x03,  // 250
+  0x00,0x00,0xE8,0x01,0x04,0x02,0x08,0x02,0xE0,0x03,  // 251
+  0x00,0x00,0xE0,0x01,0x08,0x02,0x00,0x02,0xE8,0x03,  // 252
+  0x20,0x00,0xC0,0x09,0x08,0x06,0xC4,0x01,0x20, // 253
+  0x00,0x00,0xF8,0x0F,0x20,0x02,0x20,0x02,0xC0,0x01,  // 254
+  0x20,0x00,0xC8,0x09,0x00,0x06,0xC8,0x01,0x20  // 255
 };
+
 const char ArialMT_Plain_16[] PROGMEM = {
-	0x10, // Width: 16
-	0x13, // Height: 19
-	0x20, // First Char: 32
-	0xE0, // Numbers of Chars: 224
+  0x10, // Width: 16
+  0x13, // Height: 19
+  0x20, // First Char: 32
+  0xE0, // Numbers of Chars: 224
 
-	// Char Widths:
-	0x04, // 32: 4
-	0x04, // 33: 4
-	0x06, // 34: 6
-	0x09, // 35: 9
-	0x09, // 36: 9
-	0x0E, // 37: 14
-	0x0B, // 38: 11
-	0x03, // 39: 3
-	0x05, // 40: 5
-	0x05, // 41: 5
-	0x06, // 42: 6
-	0x09, // 43: 9
-	0x04, // 44: 4
-	0x05, // 45: 5
-	0x04, // 46: 4
-	0x04, // 47: 4
-	0x09, // 48: 9
-	0x09, // 49: 9
-	0x09, // 50: 9
-	0x09, // 51: 9
-	0x09, // 52: 9
-	0x09, // 53: 9
-	0x09, // 54: 9
-	0x09, // 55: 9
-	0x09, // 56: 9
-	0x09, // 57: 9
-	0x04, // 58: 4
-	0x04, // 59: 4
-	0x09, // 60: 9
-	0x09, // 61: 9
-	0x09, // 62: 9
-	0x09, // 63: 9
-	0x10, // 64: 16
-	0x0B, // 65: 11
-	0x0B, // 66: 11
-	0x0C, // 67: 12
-	0x0C, // 68: 12
-	0x0B, // 69: 11
-	0x0A, // 70: 10
-	0x0C, // 71: 12
-	0x0C, // 72: 12
-	0x04, // 73: 4
-	0x08, // 74: 8
-	0x0B, // 75: 11
-	0x09, // 76: 9
-	0x0D, // 77: 13
-	0x0C, // 78: 12
-	0x0C, // 79: 12
-	0x0B, // 80: 11
-	0x0C, // 81: 12
-	0x0C, // 82: 12
-	0x0B, // 83: 11
-	0x0A, // 84: 10
-	0x0C, // 85: 12
-	0x0B, // 86: 11
-	0x0F, // 87: 15
-	0x0B, // 88: 11
-	0x0B, // 89: 11
-	0x0A, // 90: 10
-	0x04, // 91: 4
-	0x04, // 92: 4
-	0x04, // 93: 4
-	0x08, // 94: 8
-	0x09, // 95: 9
-	0x05, // 96: 5
-	0x09, // 97: 9
-	0x09, // 98: 9
-	0x08, // 99: 8
-	0x09, // 100: 9
-	0x09, // 101: 9
-	0x04, // 102: 4
-	0x09, // 103: 9
-	0x09, // 104: 9
-	0x04, // 105: 4
-	0x04, // 106: 4
-	0x08, // 107: 8
-	0x04, // 108: 4
-	0x0D, // 109: 13
-	0x09, // 110: 9
-	0x09, // 111: 9
-	0x09, // 112: 9
-	0x09, // 113: 9
-	0x05, // 114: 5
-	0x08, // 115: 8
-	0x04, // 116: 4
-	0x09, // 117: 9
-	0x08, // 118: 8
-	0x0C, // 119: 12
-	0x08, // 120: 8
-	0x08, // 121: 8
-	0x08, // 122: 8
-	0x05, // 123: 5
-	0x04, // 124: 4
-	0x05, // 125: 5
-	0x09, // 126: 9
-	0x06, // 127: 6
-	0x10, // 128: 16
-	0x10, // 129: 16
-	0x10, // 130: 16
-	0x10, // 131: 16
-	0x10, // 132: 16
-	0x10, // 133: 16
-	0x10, // 134: 16
-	0x10, // 135: 16
-	0x10, // 136: 16
-	0x10, // 137: 16
-	0x10, // 138: 16
-	0x10, // 139: 16
-	0x10, // 140: 16
-	0x10, // 141: 16
-	0x10, // 142: 16
-	0x10, // 143: 16
-	0x10, // 144: 16
-	0x10, // 145: 16
-	0x10, // 146: 16
-	0x10, // 147: 16
-	0x10, // 148: 16
-	0x10, // 149: 16
-	0x10, // 150: 16
-	0x10, // 151: 16
-	0x10, // 152: 16
-	0x10, // 153: 16
-	0x10, // 154: 16
-	0x10, // 155: 16
-	0x10, // 156: 16
-	0x10, // 157: 16
-	0x10, // 158: 16
-	0x10, // 159: 16
-	0x04, // 160: 4
-	0x05, // 161: 5
-	0x09, // 162: 9
-	0x09, // 163: 9
-	0x09, // 164: 9
-	0x09, // 165: 9
-	0x04, // 166: 4
-	0x09, // 167: 9
-	0x05, // 168: 5
-	0x0C, // 169: 12
-	0x06, // 170: 6
-	0x09, // 171: 9
-	0x09, // 172: 9
-	0x05, // 173: 5
-	0x0C, // 174: 12
-	0x09, // 175: 9
-	0x06, // 176: 6
-	0x09, // 177: 9
-	0x05, // 178: 5
-	0x05, // 179: 5
-	0x05, // 180: 5
-	0x09, // 181: 9
-	0x09, // 182: 9
-	0x05, // 183: 5
-	0x05, // 184: 5
-	0x05, // 185: 5
-	0x06, // 186: 6
-	0x09, // 187: 9
-	0x0D, // 188: 13
-	0x0D, // 189: 13
-	0x0D, // 190: 13
-	0x0A, // 191: 10
-	0x0B, // 192: 11
-	0x0B, // 193: 11
-	0x0B, // 194: 11
-	0x0B, // 195: 11
-	0x0B, // 196: 11
-	0x0B, // 197: 11
-	0x10, // 198: 16
-	0x0C, // 199: 12
-	0x0B, // 200: 11
-	0x0B, // 201: 11
-	0x0B, // 202: 11
-	0x0B, // 203: 11
-	0x04, // 204: 4
-	0x04, // 205: 4
-	0x04, // 206: 4
-	0x04, // 207: 4
-	0x0C, // 208: 12
-	0x0C, // 209: 12
-	0x0C, // 210: 12
-	0x0C, // 211: 12
-	0x0C, // 212: 12
-	0x0C, // 213: 12
-	0x0C, // 214: 12
-	0x09, // 215: 9
-	0x0C, // 216: 12
-	0x0C, // 217: 12
-	0x0C, // 218: 12
-	0x0C, // 219: 12
-	0x0C, // 220: 12
-	0x0B, // 221: 11
-	0x0B, // 222: 11
-	0x0A, // 223: 10
-	0x09, // 224: 9
-	0x09, // 225: 9
-	0x09, // 226: 9
-	0x09, // 227: 9
-	0x09, // 228: 9
-	0x09, // 229: 9
-	0x0E, // 230: 14
-	0x08, // 231: 8
-	0x09, // 232: 9
-	0x09, // 233: 9
-	0x09, // 234: 9
-	0x09, // 235: 9
-	0x04, // 236: 4
-	0x04, // 237: 4
-	0x04, // 238: 4
-	0x04, // 239: 4
-	0x09, // 240: 9
-	0x09, // 241: 9
-	0x09, // 242: 9
-	0x09, // 243: 9
-	0x09, // 244: 9
-	0x09, // 245: 9
-	0x09, // 246: 9
-	0x09, // 247: 9
-	0x0A, // 248: 10
-	0x09, // 249: 9
-	0x09, // 250: 9
-	0x09, // 251: 9
-	0x09, // 252: 9
-	0x08, // 253: 8
-	0x09, // 254: 9
-	0x08, // 255: 8
+  // Jump Table:
+  0xFF, 0xFF, 0x00, 0x04,  // 32:65535
+  0x00, 0x00, 0x08, 0x04,  // 33:0
+  0x00, 0x08, 0x0D, 0x06,  // 34:8
+  0x00, 0x15, 0x1A, 0x09,  // 35:21
+  0x00, 0x2F, 0x17, 0x09,  // 36:47
+  0x00, 0x46, 0x26, 0x0E,  // 37:70
+  0x00, 0x6C, 0x1D, 0x0B,  // 38:108
+  0x00, 0x89, 0x04, 0x03,  // 39:137
+  0x00, 0x8D, 0x0C, 0x05,  // 40:141
+  0x00, 0x99, 0x0B, 0x05,  // 41:153
+  0x00, 0xA4, 0x0D, 0x06,  // 42:164
+  0x00, 0xB1, 0x17, 0x09,  // 43:177
+  0x00, 0xC8, 0x09, 0x04,  // 44:200
+  0x00, 0xD1, 0x0B, 0x05,  // 45:209
+  0x00, 0xDC, 0x08, 0x04,  // 46:220
+  0x00, 0xE4, 0x0A, 0x04,  // 47:228
+  0x00, 0xEE, 0x17, 0x09,  // 48:238
+  0x01, 0x05, 0x11, 0x09,  // 49:261
+  0x01, 0x16, 0x17, 0x09,  // 50:278
+  0x01, 0x2D, 0x17, 0x09,  // 51:301
+  0x01, 0x44, 0x17, 0x09,  // 52:324
+  0x01, 0x5B, 0x17, 0x09,  // 53:347
+  0x01, 0x72, 0x17, 0x09,  // 54:370
+  0x01, 0x89, 0x16, 0x09,  // 55:393
+  0x01, 0x9F, 0x17, 0x09,  // 56:415
+  0x01, 0xB6, 0x17, 0x09,  // 57:438
+  0x01, 0xCD, 0x05, 0x04,  // 58:461
+  0x01, 0xD2, 0x06, 0x04,  // 59:466
+  0x01, 0xD8, 0x17, 0x09,  // 60:472
+  0x01, 0xEF, 0x17, 0x09,  // 61:495
+  0x02, 0x06, 0x17, 0x09,  // 62:518
+  0x02, 0x1D, 0x16, 0x09,  // 63:541
+  0x02, 0x33, 0x2F, 0x10,  // 64:563
+  0x02, 0x62, 0x1D, 0x0B,  // 65:610
+  0x02, 0x7F, 0x1D, 0x0B,  // 66:639
+  0x02, 0x9C, 0x20, 0x0C,  // 67:668
+  0x02, 0xBC, 0x20, 0x0C,  // 68:700
+  0x02, 0xDC, 0x1D, 0x0B,  // 69:732
+  0x02, 0xF9, 0x19, 0x0A,  // 70:761
+  0x03, 0x12, 0x20, 0x0C,  // 71:786
+  0x03, 0x32, 0x1D, 0x0C,  // 72:818
+  0x03, 0x4F, 0x05, 0x04,  // 73:847
+  0x03, 0x54, 0x14, 0x08,  // 74:852
+  0x03, 0x68, 0x1D, 0x0B,  // 75:872
+  0x03, 0x85, 0x17, 0x09,  // 76:901
+  0x03, 0x9C, 0x23, 0x0D,  // 77:924
+  0x03, 0xBF, 0x1D, 0x0C,  // 78:959
+  0x03, 0xDC, 0x20, 0x0C,  // 79:988
+  0x03, 0xFC, 0x1C, 0x0B,  // 80:1020
+  0x04, 0x18, 0x20, 0x0C,  // 81:1048
+  0x04, 0x38, 0x1D, 0x0C,  // 82:1080
+  0x04, 0x55, 0x1D, 0x0B,  // 83:1109
+  0x04, 0x72, 0x19, 0x0A,  // 84:1138
+  0x04, 0x8B, 0x1D, 0x0C,  // 85:1163
+  0x04, 0xA8, 0x1C, 0x0B,  // 86:1192
+  0x04, 0xC4, 0x2B, 0x0F,  // 87:1220
+  0x04, 0xEF, 0x20, 0x0B,  // 88:1263
+  0x05, 0x0F, 0x19, 0x0B,  // 89:1295
+  0x05, 0x28, 0x1A, 0x0A,  // 90:1320
+  0x05, 0x42, 0x0C, 0x04,  // 91:1346
+  0x05, 0x4E, 0x0B, 0x04,  // 92:1358
+  0x05, 0x59, 0x09, 0x04,  // 93:1369
+  0x05, 0x62, 0x14, 0x08,  // 94:1378
+  0x05, 0x76, 0x1B, 0x09,  // 95:1398
+  0x05, 0x91, 0x07, 0x05,  // 96:1425
+  0x05, 0x98, 0x17, 0x09,  // 97:1432
+  0x05, 0xAF, 0x17, 0x09,  // 98:1455
+  0x05, 0xC6, 0x14, 0x08,  // 99:1478
+  0x05, 0xDA, 0x17, 0x09,  // 100:1498
+  0x05, 0xF1, 0x17, 0x09,  // 101:1521
+  0x06, 0x08, 0x0A, 0x04,  // 102:1544
+  0x06, 0x12, 0x17, 0x09,  // 103:1554
+  0x06, 0x29, 0x14, 0x09,  // 104:1577
+  0x06, 0x3D, 0x05, 0x04,  // 105:1597
+  0x06, 0x42, 0x06, 0x04,  // 106:1602
+  0x06, 0x48, 0x17, 0x08,  // 107:1608
+  0x06, 0x5F, 0x05, 0x04,  // 108:1631
+  0x06, 0x64, 0x23, 0x0D,  // 109:1636
+  0x06, 0x87, 0x14, 0x09,  // 110:1671
+  0x06, 0x9B, 0x17, 0x09,  // 111:1691
+  0x06, 0xB2, 0x17, 0x09,  // 112:1714
+  0x06, 0xC9, 0x18, 0x09,  // 113:1737
+  0x06, 0xE1, 0x0D, 0x05,  // 114:1761
+  0x06, 0xEE, 0x14, 0x08,  // 115:1774
+  0x07, 0x02, 0x0B, 0x04,  // 116:1794
+  0x07, 0x0D, 0x14, 0x09,  // 117:1805
+  0x07, 0x21, 0x13, 0x08,  // 118:1825
+  0x07, 0x34, 0x1F, 0x0C,  // 119:1844
+  0x07, 0x53, 0x14, 0x08,  // 120:1875
+  0x07, 0x67, 0x13, 0x08,  // 121:1895
+  0x07, 0x7A, 0x14, 0x08,  // 122:1914
+  0x07, 0x8E, 0x0F, 0x05,  // 123:1934
+  0x07, 0x9D, 0x06, 0x04,  // 124:1949
+  0x07, 0xA3, 0x0E, 0x05,  // 125:1955
+  0x07, 0xB1, 0x17, 0x09,  // 126:1969
+  0xFF, 0xFF, 0x00, 0x00,  // 127:65535
+  0xFF, 0xFF, 0x00, 0x10,  // 128:65535
+  0xFF, 0xFF, 0x00, 0x10,  // 129:65535
+  0xFF, 0xFF, 0x00, 0x10,  // 130:65535
+  0xFF, 0xFF, 0x00, 0x10,  // 131:65535
+  0xFF, 0xFF, 0x00, 0x10,  // 132:65535
+  0xFF, 0xFF, 0x00, 0x10,  // 133:65535
+  0xFF, 0xFF, 0x00, 0x10,  // 134:65535
+  0xFF, 0xFF, 0x00, 0x10,  // 135:65535
+  0xFF, 0xFF, 0x00, 0x10,  // 136:65535
+  0xFF, 0xFF, 0x00, 0x10,  // 137:65535
+  0xFF, 0xFF, 0x00, 0x10,  // 138:65535
+  0xFF, 0xFF, 0x00, 0x10,  // 139:65535
+  0xFF, 0xFF, 0x00, 0x10,  // 140:65535
+  0xFF, 0xFF, 0x00, 0x10,  // 141:65535
+  0xFF, 0xFF, 0x00, 0x10,  // 142:65535
+  0xFF, 0xFF, 0x00, 0x10,  // 143:65535
+  0xFF, 0xFF, 0x00, 0x10,  // 144:65535
+  0xFF, 0xFF, 0x00, 0x10,  // 145:65535
+  0xFF, 0xFF, 0x00, 0x10,  // 146:65535
+  0xFF, 0xFF, 0x00, 0x10,  // 147:65535
+  0xFF, 0xFF, 0x00, 0x10,  // 148:65535
+  0xFF, 0xFF, 0x00, 0x10,  // 149:65535
+  0xFF, 0xFF, 0x00, 0x10,  // 150:65535
+  0xFF, 0xFF, 0x00, 0x10,  // 151:65535
+  0xFF, 0xFF, 0x00, 0x10,  // 152:65535
+  0xFF, 0xFF, 0x00, 0x10,  // 153:65535
+  0xFF, 0xFF, 0x00, 0x10,  // 154:65535
+  0xFF, 0xFF, 0x00, 0x10,  // 155:65535
+  0xFF, 0xFF, 0x00, 0x10,  // 156:65535
+  0xFF, 0xFF, 0x00, 0x10,  // 157:65535
+  0xFF, 0xFF, 0x00, 0x10,  // 158:65535
+  0xFF, 0xFF, 0x00, 0x10,  // 159:65535
+  0xFF, 0xFF, 0x00, 0x04,  // 160:65535
+  0x07, 0xC8, 0x09, 0x05,  // 161:1992
+  0x07, 0xD1, 0x17, 0x09,  // 162:2001
+  0x07, 0xE8, 0x17, 0x09,  // 163:2024
+  0x07, 0xFF, 0x14, 0x09,  // 164:2047
+  0x08, 0x13, 0x1A, 0x09,  // 165:2067
+  0x08, 0x2D, 0x06, 0x04,  // 166:2093
+  0x08, 0x33, 0x17, 0x09,  // 167:2099
+  0x08, 0x4A, 0x07, 0x05,  // 168:2122
+  0x08, 0x51, 0x23, 0x0C,  // 169:2129
+  0x08, 0x74, 0x0E, 0x06,  // 170:2164
+  0x08, 0x82, 0x14, 0x09,  // 171:2178
+  0x08, 0x96, 0x17, 0x09,  // 172:2198
+  0x08, 0xAD, 0x0B, 0x05,  // 173:2221
+  0x08, 0xB8, 0x23, 0x0C,  // 174:2232
+  0x08, 0xDB, 0x19, 0x09,  // 175:2267
+  0x08, 0xF4, 0x0D, 0x06,  // 176:2292
+  0x09, 0x01, 0x17, 0x09,  // 177:2305
+  0x09, 0x18, 0x0E, 0x05,  // 178:2328
+  0x09, 0x26, 0x0D, 0x05,  // 179:2342
+  0x09, 0x33, 0x0A, 0x05,  // 180:2355
+  0x09, 0x3D, 0x17, 0x09,  // 181:2365
+  0x09, 0x54, 0x19, 0x09,  // 182:2388
+  0x09, 0x6D, 0x08, 0x05,  // 183:2413
+  0x09, 0x75, 0x0C, 0x05,  // 184:2421
+  0x09, 0x81, 0x0B, 0x05,  // 185:2433
+  0x09, 0x8C, 0x0D, 0x06,  // 186:2444
+  0x09, 0x99, 0x17, 0x09,  // 187:2457
+  0x09, 0xB0, 0x26, 0x0D,  // 188:2480
+  0x09, 0xD6, 0x26, 0x0D,  // 189:2518
+  0x09, 0xFC, 0x26, 0x0D,  // 190:2556
+  0x0A, 0x22, 0x1A, 0x0A,  // 191:2594
+  0x0A, 0x3C, 0x1D, 0x0B,  // 192:2620
+  0x0A, 0x59, 0x1D, 0x0B,  // 193:2649
+  0x0A, 0x76, 0x1D, 0x0B,  // 194:2678
+  0x0A, 0x93, 0x1D, 0x0B,  // 195:2707
+  0x0A, 0xB0, 0x1D, 0x0B,  // 196:2736
+  0x0A, 0xCD, 0x1D, 0x0B,  // 197:2765
+  0x0A, 0xEA, 0x2C, 0x10,  // 198:2794
+  0x0B, 0x16, 0x20, 0x0C,  // 199:2838
+  0x0B, 0x36, 0x1D, 0x0B,  // 200:2870
+  0x0B, 0x53, 0x1D, 0x0B,  // 201:2899
+  0x0B, 0x70, 0x1D, 0x0B,  // 202:2928
+  0x0B, 0x8D, 0x1D, 0x0B,  // 203:2957
+  0x0B, 0xAA, 0x05, 0x04,  // 204:2986
+  0x0B, 0xAF, 0x07, 0x04,  // 205:2991
+  0x0B, 0xB6, 0x0A, 0x04,  // 206:2998
+  0x0B, 0xC0, 0x07, 0x04,  // 207:3008
+  0x0B, 0xC7, 0x20, 0x0C,  // 208:3015
+  0x0B, 0xE7, 0x1D, 0x0C,  // 209:3047
+  0x0C, 0x04, 0x20, 0x0C,  // 210:3076
+  0x0C, 0x24, 0x20, 0x0C,  // 211:3108
+  0x0C, 0x44, 0x20, 0x0C,  // 212:3140
+  0x0C, 0x64, 0x20, 0x0C,  // 213:3172
+  0x0C, 0x84, 0x20, 0x0C,  // 214:3204
+  0x0C, 0xA4, 0x17, 0x09,  // 215:3236
+  0x0C, 0xBB, 0x20, 0x0C,  // 216:3259
+  0x0C, 0xDB, 0x1D, 0x0C,  // 217:3291
+  0x0C, 0xF8, 0x1D, 0x0C,  // 218:3320
+  0x0D, 0x15, 0x1D, 0x0C,  // 219:3349
+  0x0D, 0x32, 0x1D, 0x0C,  // 220:3378
+  0x0D, 0x4F, 0x19, 0x0B,  // 221:3407
+  0x0D, 0x68, 0x1D, 0x0B,  // 222:3432
+  0x0D, 0x85, 0x17, 0x0A,  // 223:3461
+  0x0D, 0x9C, 0x17, 0x09,  // 224:3484
+  0x0D, 0xB3, 0x17, 0x09,  // 225:3507
+  0x0D, 0xCA, 0x17, 0x09,  // 226:3530
+  0x0D, 0xE1, 0x17, 0x09,  // 227:3553
+  0x0D, 0xF8, 0x17, 0x09,  // 228:3576
+  0x0E, 0x0F, 0x17, 0x09,  // 229:3599
+  0x0E, 0x26, 0x29, 0x0E,  // 230:3622
+  0x0E, 0x4F, 0x14, 0x08,  // 231:3663
+  0x0E, 0x63, 0x17, 0x09,  // 232:3683
+  0x0E, 0x7A, 0x17, 0x09,  // 233:3706
+  0x0E, 0x91, 0x17, 0x09,  // 234:3729
+  0x0E, 0xA8, 0x17, 0x09,  // 235:3752
+  0x0E, 0xBF, 0x05, 0x04,  // 236:3775
+  0x0E, 0xC4, 0x07, 0x04,  // 237:3780
+  0x0E, 0xCB, 0x0A, 0x04,  // 238:3787
+  0x0E, 0xD5, 0x07, 0x04,  // 239:3797
+  0x0E, 0xDC, 0x17, 0x09,  // 240:3804
+  0x0E, 0xF3, 0x14, 0x09,  // 241:3827
+  0x0F, 0x07, 0x17, 0x09,  // 242:3847
+  0x0F, 0x1E, 0x17, 0x09,  // 243:3870
+  0x0F, 0x35, 0x17, 0x09,  // 244:3893
+  0x0F, 0x4C, 0x17, 0x09,  // 245:3916
+  0x0F, 0x63, 0x17, 0x09,  // 246:3939
+  0x0F, 0x7A, 0x17, 0x09,  // 247:3962
+  0x0F, 0x91, 0x17, 0x0A,  // 248:3985
+  0x0F, 0xA8, 0x14, 0x09,  // 249:4008
+  0x0F, 0xBC, 0x14, 0x09,  // 250:4028
+  0x0F, 0xD0, 0x14, 0x09,  // 251:4048
+  0x0F, 0xE4, 0x14, 0x09,  // 252:4068
+  0x0F, 0xF8, 0x13, 0x08,  // 253:4088
+  0x10, 0x0B, 0x17, 0x09,  // 254:4107
+  0x10, 0x22, 0x13, 0x08,  // 255:4130
 
-	// Font Data:
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 32
-	0x00,0x40,0x44,0x44,0x44,0x44,0x04,0x04,0x00,0x00, // 33
-	0x00,0x00,0x48,0x92,0x24,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 34
-	0x00,0x00,0x00,0x40,0x84,0x08,0x11,0x91,0xFF,0x44,0x88,0x10,0xF9,0x2F,0x42,0x84,0x08,0x00,0x00,0x00,0x00,0x00, // 35
-	0x00,0x00,0x40,0xC0,0x41,0x45,0x92,0x04,0x09,0x1C,0xE0,0x40,0x82,0x24,0x89,0x0A,0x0E,0x08,0x00,0x00,0x00,0x00, // 36
-	0x00,0x00,0x00,0x00,0x00,0x70,0x08,0x22,0x81,0x48,0x20,0x0A,0x88,0x02,0x9C,0x00,0x90,0x03,0x14,0x81,0x44,0x20,0x11,0x44,0x04,0xE1,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 37
-	0x00,0x00,0x00,0x00,0x70,0x40,0x04,0x22,0x10,0x01,0x05,0x18,0xA0,0x80,0x88,0x84,0x22,0x08,0xA2,0xE0,0x08,0x00,0x00,0x00,0x00,0x00,0x00, // 38
-	0x00,0x24,0x09,0x00,0x00,0x00,0x00,0x00, // 39
-	0x00,0x00,0x44,0x08,0x11,0x42,0x08,0x21,0x04,0x21,0x04,0x01, // 40
-	0x00,0x00,0x41,0x08,0x41,0x08,0x21,0x84,0x10,0x21,0x44,0x00, // 41
-	0x00,0x00,0x10,0x1F,0xA1,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 42
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x08,0x10,0xFC,0x41,0x80,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 43
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x44,0x04,0x00, // 44
-	0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x07,0x00,0x00,0x00,0x00, // 45
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0x00, // 46
-	0x00,0x80,0x48,0x44,0x24,0x22,0x12,0x01,0x00,0x00, // 47
-	0x00,0x00,0x00,0xC0,0x41,0x44,0x90,0x20,0x41,0x82,0x04,0x09,0x12,0x24,0x88,0x08,0x0E,0x00,0x00,0x00,0x00,0x00, // 48
-	0x00,0x00,0x00,0x00,0x01,0x03,0x05,0x09,0x10,0x20,0x40,0x80,0x00,0x01,0x02,0x04,0x08,0x00,0x00,0x00,0x00,0x00, // 49
-	0x00,0x00,0x00,0xC0,0x41,0x44,0x10,0x20,0x40,0x40,0x80,0x80,0x80,0x80,0x80,0x80,0x3F,0x00,0x00,0x00,0x00,0x00, // 50
-	0x00,0x00,0x00,0xC0,0x41,0x44,0x08,0x10,0x30,0x38,0x80,0x00,0x02,0x24,0x88,0x08,0x0E,0x00,0x00,0x00,0x00,0x00, // 51
-	0x00,0x00,0x00,0x00,0x02,0x06,0x0A,0x12,0x24,0x44,0x84,0x04,0xF9,0x07,0x04,0x08,0x10,0x00,0x00,0x00,0x00,0x00, // 52
-	0x00,0x00,0x00,0xE0,0x47,0x80,0x80,0x00,0x1F,0x42,0x00,0x01,0x02,0x24,0x88,0x08,0x0E,0x00,0x00,0x00,0x00,0x00, // 53
-	0x00,0x00,0x00,0xC0,0x41,0x44,0x90,0x00,0x1D,0x46,0x04,0x09,0x12,0x24,0x88,0x08,0x0E,0x00,0x00,0x00,0x00,0x00, // 54
-	0x00,0x00,0x00,0xF0,0x07,0x08,0x08,0x08,0x10,0x10,0x20,0x40,0x40,0x80,0x00,0x01,0x02,0x00,0x00,0x00,0x00,0x00, // 55
-	0x00,0x00,0x00,0xC0,0x41,0x44,0x90,0x20,0x22,0x38,0x88,0x08,0x12,0x24,0x88,0x08,0x0E,0x00,0x00,0x00,0x00,0x00, // 56
-	0x00,0x00,0x00,0xC0,0x41,0x44,0x90,0x20,0x41,0x82,0x88,0xE1,0x02,0x24,0x88,0x08,0x0E,0x00,0x00,0x00,0x00,0x00, // 57
-	0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x02,0x00,0x00, // 58
-	0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x22,0x02,0x00, // 59
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x38,0x0C,0x04,0x30,0x80,0x03,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 60
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7F,0x00,0x00,0x00,0xF0,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 61
-	0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x00,0x0E,0x60,0x00,0x81,0xE1,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 62
-	0x00,0x00,0x00,0xC0,0x41,0x44,0x90,0x20,0x40,0x40,0x40,0x40,0x80,0x00,0x01,0x00,0x04,0x00,0x00,0x00,0x00,0x00, // 63
-	0x00,0x00,0x00,0x00,0x00,0x00,0xC0,0x0F,0x30,0x30,0x08,0x40,0x84,0x4B,0x44,0x8C,0x22,0x88,0x12,0x88,0x12,0x84,0x12,0x84,0x12,0x44,0x22,0x26,0xC4,0x1D,0x08,0x80,0x30,0x60,0xC0,0x1F,0x00,0x00,0x00, // 64
-	0x00,0x00,0x00,0x00,0x40,0x00,0x05,0x28,0x40,0x01,0x11,0x88,0x40,0x04,0x7F,0x08,0x42,0x10,0x01,0x09,0x08,0x00,0x00,0x00,0x00,0x00,0x00, // 65
-	0x00,0x00,0x00,0x00,0xFC,0x21,0x10,0x01,0x09,0x48,0x20,0xFE,0x10,0x88,0x80,0x04,0x24,0x20,0x81,0xF8,0x03,0x00,0x00,0x00,0x00,0x00,0x00, // 66
-	0x00,0x00,0x00,0x00,0x00,0x1F,0x08,0x42,0x40,0x02,0x20,0x00,0x02,0x20,0x00,0x02,0x20,0x00,0x04,0x84,0x20,0xF0,0x01,0x00,0x00,0x00,0x00,0x00,0x00, // 67
-	0x00,0x00,0x00,0x00,0xE0,0x0F,0x02,0x21,0x20,0x02,0x24,0x40,0x02,0x24,0x40,0x02,0x24,0x40,0x02,0x22,0x10,0xFE,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 68
-	0x00,0x00,0x00,0x00,0xFC,0x27,0x00,0x01,0x08,0x40,0x00,0xFE,0x11,0x80,0x00,0x04,0x20,0x00,0x01,0xF8,0x0F,0x00,0x00,0x00,0x00,0x00,0x00, // 69
-	0x00,0x00,0x00,0x80,0x7F,0x02,0x08,0x20,0x80,0x00,0x02,0xF8,0x23,0x80,0x00,0x02,0x08,0x20,0x00,0x00,0x00,0x00,0x00,0x00, // 70
-	0x00,0x00,0x00,0x00,0x00,0x0F,0x08,0x41,0x20,0x02,0x20,0x00,0x02,0x20,0x7C,0x02,0x24,0x40,0x04,0x82,0x10,0xF0,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 71
-	0x00,0x00,0x00,0x00,0x20,0x20,0x02,0x22,0x20,0x02,0x22,0x20,0xFE,0x23,0x20,0x02,0x22,0x20,0x02,0x22,0x20,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00, // 72
-	0x00,0x20,0x22,0x22,0x22,0x22,0x22,0x02,0x00,0x00, // 73
-	0x00,0x00,0x00,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x42,0x42,0x42,0x3C,0x00,0x00,0x00,0x00,0x00, // 74
-	0x00,0x00,0x00,0x00,0x04,0x24,0x10,0x41,0x08,0x41,0x04,0x32,0x50,0x81,0x11,0x04,0x21,0x08,0x81,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00, // 75
-	0x00,0x00,0x00,0x10,0x20,0x40,0x80,0x00,0x01,0x02,0x04,0x08,0x10,0x20,0x40,0x80,0x3F,0x00,0x00,0x00,0x00,0x00, // 76
-	0x00,0x00,0x00,0x00,0x00,0x01,0x64,0xC0,0x0C,0x98,0x82,0x52,0x50,0x12,0x49,0x22,0x89,0x22,0x51,0x24,0x8A,0x84,0x90,0x10,0x02,0x00,0x00,0x00,0x00,0x00,0x00, // 77
-	0x00,0x00,0x00,0x00,0x20,0x20,0x06,0xA2,0x20,0x0A,0x22,0x21,0x22,0x22,0x22,0x42,0x22,0x28,0x82,0x22,0x30,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00, // 78
-	0x00,0x00,0x00,0x00,0x00,0x0F,0x08,0x41,0x20,0x02,0x24,0x40,0x02,0x24,0x40,0x02,0x24,0x40,0x04,0x82,0x10,0xF0,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 79
-	0x00,0x00,0x00,0x00,0xFC,0x21,0x10,0x01,0x09,0x48,0x40,0x02,0xF1,0x87,0x00,0x04,0x20,0x00,0x01,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 80
-	0x00,0x00,0x00,0x00,0x00,0x0F,0x08,0x41,0x20,0x02,0x24,0x40,0x02,0x24,0x40,0x02,0x24,0x40,0xC4,0x82,0x30,0xF0,0x06,0x00,0x00,0x00,0x00,0x00,0x00, // 81
-	0x00,0x00,0x00,0x00,0xE0,0x0F,0x02,0x21,0x20,0x02,0x22,0x20,0x02,0xE1,0x0F,0x42,0x20,0x08,0x82,0x20,0x10,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00, // 82
-	0x00,0x00,0x00,0x00,0xF0,0x41,0x10,0x01,0x09,0x80,0x00,0x38,0x00,0x0E,0x80,0x00,0x24,0x20,0x82,0xE0,0x03,0x00,0x00,0x00,0x00,0x00,0x00, // 83
-	0x00,0x00,0x00,0xC0,0x7F,0x10,0x40,0x00,0x01,0x04,0x10,0x40,0x00,0x01,0x04,0x10,0x40,0x00,0x01,0x00,0x00,0x00,0x00,0x00, // 84
-	0x00,0x00,0x00,0x00,0x20,0x20,0x02,0x22,0x20,0x02,0x22,0x20,0x02,0x22,0x20,0x02,0x22,0x20,0x02,0x42,0x10,0xF8,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 85
-	0x00,0x00,0x00,0x00,0x04,0x24,0x20,0x82,0x10,0x84,0x20,0x88,0x40,0x04,0x22,0xA0,0x00,0x05,0x10,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 86
-	0x00,0x00,0x00,0x00,0x00,0x20,0x10,0x18,0x14,0x14,0x0A,0x09,0x85,0x44,0x44,0x22,0x22,0x12,0x09,0x05,0x85,0x82,0x42,0x41,0x41,0x40,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 87
-	0x00,0x00,0x00,0x00,0x04,0x44,0x10,0x44,0x20,0x02,0x0A,0x20,0x80,0x02,0x22,0x10,0x41,0x10,0x01,0x05,0x10,0x00,0x00,0x00,0x00,0x00,0x00, // 88
-	0x00,0x00,0x00,0x00,0x02,0x22,0x08,0x41,0x10,0x01,0x05,0x28,0x80,0x00,0x04,0x20,0x00,0x01,0x08,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 89
-	0x00,0x00,0x00,0x80,0x7F,0x80,0x00,0x01,0x04,0x08,0x10,0x40,0x80,0x00,0x01,0x04,0x08,0xF0,0x1F,0x00,0x00,0x00,0x00,0x00, // 90
-	0x00,0xE0,0x22,0x22,0x22,0x22,0x22,0x22,0xE2,0x00, // 91
-	0x00,0x10,0x21,0x22,0x42,0x44,0x84,0x08,0x00,0x00, // 92
-	0x00,0x70,0x44,0x44,0x44,0x44,0x44,0x44,0x74,0x00, // 93
-	0x00,0x00,0x00,0x08,0x14,0x14,0x22,0x22,0x41,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 94
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFE,0x03,0x00, // 95
-	0x00,0x00,0x41,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 96
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1E,0x42,0x82,0xC0,0x71,0x12,0x24,0x48,0x18,0x2F,0x00,0x00,0x00,0x00,0x00, // 97
-	0x00,0x00,0x00,0x10,0x20,0x40,0x80,0x0E,0x23,0x82,0x04,0x09,0x12,0x24,0xC8,0x88,0x0E,0x00,0x00,0x00,0x00,0x00, // 98
-	0x00,0x00,0x00,0x00,0x00,0x00,0x38,0x44,0x02,0x02,0x02,0x02,0x02,0x44,0x38,0x00,0x00,0x00,0x00,0x00, // 99
-	0x00,0x00,0x00,0x00,0x04,0x08,0x10,0x2E,0x62,0x82,0x04,0x09,0x12,0x24,0x88,0x18,0x2E,0x00,0x00,0x00,0x00,0x00, // 100
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0E,0x22,0x82,0x04,0xF9,0x13,0x20,0x88,0x08,0x0E,0x00,0x00,0x00,0x00,0x00, // 101
-	0x00,0xC0,0x22,0x2F,0x22,0x22,0x22,0x02,0x00,0x00, // 102
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x2E,0x62,0x82,0x04,0x09,0x12,0x24,0x88,0x18,0x2E,0x40,0x42,0x78,0x00,0x00, // 103
-	0x00,0x00,0x00,0x10,0x20,0x40,0x80,0x0E,0x23,0x42,0x84,0x08,0x11,0x22,0x44,0x88,0x10,0x00,0x00,0x00,0x00,0x00, // 104
-	0x00,0x20,0x00,0x22,0x22,0x22,0x22,0x02,0x00,0x00, // 105
-	0x00,0x20,0x00,0x22,0x22,0x22,0x22,0x22,0x12,0x00, // 106
-	0x00,0x00,0x00,0x02,0x02,0x02,0x82,0x42,0x22,0x12,0x1A,0x26,0x22,0x42,0x82,0x00,0x00,0x00,0x00,0x00, // 107
-	0x00,0x20,0x22,0x22,0x22,0x22,0x22,0x02,0x00,0x00, // 108
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0xCE,0x31,0x46,0x42,0x48,0x08,0x09,0x21,0x21,0x24,0x84,0x84,0x90,0x10,0x02,0x00,0x00,0x00,0x00,0x00,0x00, // 109
-	0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x0E,0x23,0x42,0x84,0x08,0x11,0x22,0x44,0x88,0x10,0x00,0x00,0x00,0x00,0x00, // 110
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0E,0x22,0x82,0x04,0x09,0x12,0x24,0x88,0x08,0x0E,0x00,0x00,0x00,0x00,0x00, // 111
-	0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x0E,0x23,0x82,0x04,0x09,0x12,0x24,0xC8,0x88,0x0E,0x01,0x02,0x04,0x00,0x00, // 112
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x2E,0x62,0x82,0x04,0x09,0x12,0x24,0x88,0x18,0x2E,0x40,0x80,0x00,0x01,0x00, // 113
-	0x00,0x00,0x00,0x80,0x36,0x42,0x08,0x21,0x84,0x00,0x00,0x00, // 114
-	0x00,0x00,0x00,0x00,0x00,0x00,0x3C,0x42,0x02,0x02,0x3C,0x40,0x40,0x42,0x3C,0x00,0x00,0x00,0x00,0x00, // 115
-	0x00,0x00,0x22,0x2F,0x22,0x22,0x22,0x0E,0x00,0x00, // 116
-	0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x10,0x21,0x42,0x84,0x08,0x11,0x22,0x44,0x0C,0x17,0x00,0x00,0x00,0x00,0x00, // 117
-	0x00,0x00,0x00,0x00,0x00,0x00,0x41,0x41,0x22,0x22,0x14,0x14,0x14,0x08,0x08,0x00,0x00,0x00,0x00,0x00, // 118
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x21,0x14,0x42,0x52,0x22,0x25,0x8A,0xA2,0x28,0x8A,0x42,0x10,0x04,0x01,0x00,0x00,0x00,0x00,0x00,0x00, // 119
-	0x00,0x00,0x00,0x00,0x00,0x00,0x41,0x22,0x14,0x14,0x08,0x14,0x14,0x22,0x41,0x00,0x00,0x00,0x00,0x00, // 120
-	0x00,0x00,0x00,0x00,0x00,0x00,0x41,0x41,0x21,0x22,0x22,0x14,0x14,0x1C,0x08,0x08,0x08,0x06,0x00,0x00, // 121
-	0x00,0x00,0x00,0x00,0x00,0x00,0x7F,0x20,0x10,0x10,0x08,0x04,0x04,0x02,0x7F,0x00,0x00,0x00,0x00,0x00, // 122
-	0x00,0x00,0x4C,0x08,0x21,0x84,0x0C,0x42,0x08,0x21,0x04,0x03, // 123
-	0x00,0x20,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x00, // 124
-	0x00,0x80,0x41,0x08,0x21,0x84,0x60,0x42,0x08,0x21,0x64,0x00, // 125
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x8E,0xE2,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 126
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 127
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 128
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 129
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 130
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 131
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 132
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 133
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 134
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 135
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 136
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 137
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 138
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 139
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 140
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 141
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 142
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 143
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 144
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 145
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 146
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 147
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 148
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 149
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 150
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 151
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 152
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 153
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 154
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 155
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 156
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 157
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 158
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 159
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 160
-	0x00,0x00,0x00,0x00,0x01,0x84,0x10,0x42,0x08,0x21,0x84,0x00, // 161
-	0x00,0x00,0x00,0x00,0x02,0x04,0x08,0x0E,0x32,0xA2,0x24,0x48,0x90,0xA0,0x88,0x09,0x0E,0x04,0x04,0x08,0x00,0x00, // 162
-	0x00,0x00,0x00,0xC0,0x41,0x44,0x90,0x00,0x01,0x1F,0x08,0x10,0x20,0x20,0xC0,0x53,0x18,0x00,0x00,0x00,0x00,0x00, // 163
-	0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x16,0x12,0x42,0x84,0x90,0xD0,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 164
-	0x00,0x00,0x00,0x08,0x28,0x88,0x08,0x11,0x14,0x28,0xFE,0x43,0xF8,0x0F,0x01,0x02,0x04,0x00,0x00,0x00,0x00,0x00, // 165
-	0x00,0x20,0x22,0x22,0x02,0x00,0x22,0x22,0x22,0x00, // 166
-	0x00,0x00,0x00,0xE0,0x21,0x44,0x88,0x01,0x06,0x32,0x82,0x04,0x12,0xC4,0x04,0x06,0x98,0x20,0x42,0x78,0x00,0x00, // 167
-	0x00,0x80,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 168
-	0x00,0x00,0x00,0x00,0x80,0x1F,0x04,0x22,0x4F,0x09,0x99,0x80,0x09,0x98,0x80,0x09,0x19,0x8F,0x02,0x44,0x20,0xF8,0x01,0x00,0x00,0x00,0x00,0x00,0x00, // 169
-	0x00,0x00,0x38,0x11,0x37,0x45,0x1E,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 170
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x24,0x48,0x48,0x20,0x41,0x02,0x09,0x00,0x00,0x00,0x00,0x00,0x00, // 171
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7F,0x80,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 172
-	0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x07,0x00,0x00,0x00,0x00, // 173
-	0x00,0x00,0x00,0x00,0x80,0x1F,0x04,0xA2,0x4F,0x09,0x99,0x90,0xF9,0x98,0x84,0x89,0x98,0x90,0x02,0x44,0x20,0xF8,0x01,0x00,0x00,0x00,0x00,0x00,0x00, // 174
-	0x00,0x00,0xFC,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 175
-	0x00,0x00,0x30,0x92,0xC4,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 176
-	0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x04,0x08,0xFE,0x20,0x40,0x80,0x00,0x00,0x80,0x3F,0x00,0x00,0x00,0x00,0x00, // 177
-	0x00,0x00,0x17,0x21,0x13,0x1F,0x00,0x00,0x00,0x00,0x00,0x00, // 178
-	0x00,0x00,0x1F,0x11,0x8C,0x0E,0x00,0x00,0x00,0x00,0x00,0x00, // 179
-	0x00,0x00,0x44,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 180
-	0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x20,0x41,0x82,0x04,0x09,0x12,0x24,0xC8,0x98,0x2E,0x01,0x02,0x04,0x00,0x00, // 181
-	0x00,0x00,0x00,0xF0,0xFF,0xE9,0xD3,0xA7,0x4F,0x9C,0x20,0x41,0x82,0x04,0x09,0x12,0x24,0x48,0x90,0x20,0x01,0x00, // 182
-	0x00,0x00,0x00,0x00,0x00,0x80,0x00,0x00,0x00,0x00,0x00,0x00, // 183
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0xC8,0x01, // 184
-	0x00,0x00,0xA6,0x10,0x42,0x08,0x00,0x00,0x00,0x00,0x00,0x00, // 185
-	0x00,0x00,0x38,0x51,0x14,0x45,0x0E,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 186
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x12,0x48,0x90,0x40,0x42,0x82,0x84,0x04,0x00,0x00,0x00,0x00,0x00,0x00, // 187
-	0x00,0x00,0x00,0x00,0x00,0x06,0xA2,0x20,0x10,0x04,0x42,0x40,0x04,0x88,0x00,0x08,0x81,0x30,0x10,0x05,0x91,0x10,0x3E,0x01,0x02,0x00,0x00,0x00,0x00,0x00,0x00, // 188
-	0x00,0x00,0x00,0x00,0x00,0x06,0xA2,0x20,0x10,0x02,0x42,0x40,0x04,0x48,0x00,0xC8,0x81,0x44,0x08,0x88,0xC0,0x10,0x04,0xC1,0x07,0x00,0x00,0x00,0x00,0x00,0x00, // 189
-	0x00,0x00,0x00,0x00,0x00,0x0F,0x12,0x21,0x10,0x04,0x44,0x88,0x04,0x4E,0x00,0x08,0x81,0x30,0x08,0x05,0x91,0x10,0x3E,0x01,0x02,0x00,0x00,0x00,0x00,0x00,0x00, // 190
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x10,0x40,0x00,0x01,0x02,0x04,0x08,0x20,0x90,0x40,0x84,0xE0,0x01,0x00, // 191
-	0x10,0x00,0x01,0x00,0x40,0x00,0x05,0x28,0x40,0x01,0x11,0x88,0x40,0x04,0x7F,0x08,0x42,0x10,0x01,0x09,0x08,0x00,0x00,0x00,0x00,0x00,0x00, // 192
-	0x40,0x00,0x01,0x00,0x40,0x00,0x05,0x28,0x40,0x01,0x11,0x88,0x40,0x04,0x7F,0x08,0x42,0x10,0x01,0x09,0x08,0x00,0x00,0x00,0x00,0x00,0x00, // 193
-	0x60,0x80,0x04,0x00,0x40,0x00,0x05,0x28,0x40,0x01,0x11,0x88,0x40,0x04,0x7F,0x08,0x42,0x10,0x01,0x09,0x08,0x00,0x00,0x00,0x00,0x00,0x00, // 194
-	0xA0,0x80,0x02,0x00,0x40,0x00,0x05,0x28,0x40,0x01,0x11,0x88,0x40,0x04,0x7F,0x08,0x42,0x10,0x01,0x09,0x08,0x00,0x00,0x00,0x00,0x00,0x00, // 195
-	0x00,0x80,0x02,0x00,0x40,0x00,0x05,0x28,0x40,0x01,0x11,0x88,0x40,0x04,0x7F,0x08,0x42,0x10,0x01,0x09,0x08,0x00,0x00,0x00,0x00,0x00,0x00, // 196
-	0x00,0x80,0x03,0x14,0xE0,0x00,0x05,0x28,0x40,0x01,0x11,0x88,0x40,0x04,0x7F,0x08,0x42,0x10,0x01,0x09,0x08,0x00,0x00,0x00,0x00,0x00,0x00, // 197
-	0x00,0x00,0x00,0x00,0x00,0x00,0xE0,0x7F,0x20,0x01,0x10,0x01,0x10,0x01,0x08,0x01,0x08,0x7F,0x04,0x01,0xFC,0x01,0x02,0x01,0x02,0x01,0x01,0x01,0x01,0x7F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 198
-	0x00,0x00,0x00,0x00,0x00,0x1F,0x08,0x42,0x40,0x02,0x20,0x00,0x02,0x20,0x00,0x02,0x20,0x00,0x04,0x84,0x20,0xF0,0x01,0x04,0x80,0x00,0x0E,0x00,0x00, // 199
-	0x20,0x00,0x02,0x00,0xFC,0x27,0x00,0x01,0x08,0x40,0x00,0xFE,0x11,0x80,0x00,0x04,0x20,0x00,0x01,0xF8,0x0F,0x00,0x00,0x00,0x00,0x00,0x00, // 200
-	0x40,0x00,0x01,0x00,0xFC,0x27,0x00,0x01,0x08,0x40,0x00,0xFE,0x11,0x80,0x00,0x04,0x20,0x00,0x01,0xF8,0x0F,0x00,0x00,0x00,0x00,0x00,0x00, // 201
-	0x60,0x80,0x04,0x00,0xFC,0x27,0x00,0x01,0x08,0x40,0x00,0xFE,0x11,0x80,0x00,0x04,0x20,0x00,0x01,0xF8,0x0F,0x00,0x00,0x00,0x00,0x00,0x00, // 202
-	0x00,0x80,0x02,0x00,0xFC,0x27,0x00,0x01,0x08,0x40,0x00,0xFE,0x11,0x80,0x00,0x04,0x20,0x00,0x01,0xF8,0x0F,0x00,0x00,0x00,0x00,0x00,0x00, // 203
-	0x21,0x20,0x22,0x22,0x22,0x22,0x22,0x02,0x00,0x00, // 204
-	0x24,0x20,0x22,0x22,0x22,0x22,0x22,0x02,0x00,0x00, // 205
-	0x96,0x20,0x22,0x22,0x22,0x22,0x22,0x02,0x00,0x00, // 206
-	0x50,0x20,0x22,0x22,0x22,0x22,0x22,0x02,0x00,0x00, // 207
-	0x00,0x00,0x00,0x00,0xE0,0x0F,0x02,0x21,0x20,0x02,0x24,0x40,0x02,0xF4,0x43,0x02,0x24,0x40,0x02,0x22,0x10,0xFE,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 208
-	0xA0,0x00,0x05,0x00,0x20,0x20,0x06,0xA2,0x20,0x0A,0x22,0x21,0x22,0x22,0x22,0x42,0x22,0x28,0x82,0x22,0x30,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00, // 209
-	0x20,0x00,0x04,0x00,0x00,0x0F,0x08,0x41,0x20,0x02,0x24,0x40,0x02,0x24,0x40,0x02,0x24,0x40,0x04,0x82,0x10,0xF0,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 210
-	0x40,0x00,0x02,0x00,0x00,0x0F,0x08,0x41,0x20,0x02,0x24,0x40,0x02,0x24,0x40,0x02,0x24,0x40,0x04,0x82,0x10,0xF0,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 211
-	0x60,0x00,0x09,0x00,0x00,0x0F,0x08,0x41,0x20,0x02,0x24,0x40,0x02,0x24,0x40,0x02,0x24,0x40,0x04,0x82,0x10,0xF0,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 212
-	0xA0,0x00,0x05,0x00,0x00,0x0F,0x08,0x41,0x20,0x02,0x24,0x40,0x02,0x24,0x40,0x02,0x24,0x40,0x04,0x82,0x10,0xF0,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 213
-	0x00,0x00,0x0A,0x00,0x00,0x0F,0x08,0x41,0x20,0x02,0x24,0x40,0x02,0x24,0x40,0x02,0x24,0x40,0x04,0x82,0x10,0xF0,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 214
-	0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x20,0x22,0x38,0x20,0xE0,0x20,0x22,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 215
-	0x00,0x00,0x00,0x00,0x00,0x4F,0x08,0x43,0x30,0x82,0x24,0x48,0x42,0x24,0x42,0x12,0x24,0x41,0x0C,0xC2,0x10,0xF2,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 216
-	0x10,0x00,0x02,0x00,0x20,0x20,0x02,0x22,0x20,0x02,0x22,0x20,0x02,0x22,0x20,0x02,0x22,0x20,0x02,0x42,0x10,0xF8,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 217
-	0x40,0x00,0x02,0x00,0x20,0x20,0x02,0x22,0x20,0x02,0x22,0x20,0x02,0x22,0x20,0x02,0x22,0x20,0x02,0x42,0x10,0xF8,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 218
-	0x60,0x00,0x09,0x00,0x20,0x20,0x02,0x22,0x20,0x02,0x22,0x20,0x02,0x22,0x20,0x02,0x22,0x20,0x02,0x42,0x10,0xF8,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 219
-	0x00,0x00,0x05,0x00,0x20,0x20,0x02,0x22,0x20,0x02,0x22,0x20,0x02,0x22,0x20,0x02,0x22,0x20,0x02,0x42,0x10,0xF8,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 220
-	0x20,0x80,0x00,0x00,0x02,0x22,0x08,0x41,0x10,0x01,0x05,0x28,0x80,0x00,0x04,0x20,0x00,0x01,0x08,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 221
-	0x00,0x00,0x00,0x00,0x04,0x20,0x00,0x7F,0x08,0x44,0x40,0x02,0x12,0x90,0x80,0x04,0xE2,0x0F,0x01,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 222
-	0x00,0x00,0x00,0x00,0x06,0x24,0x88,0x20,0x82,0x04,0x12,0xC8,0x20,0x84,0x20,0x82,0x28,0x22,0x07,0x00,0x00,0x00,0x00,0x00, // 223
-	0x00,0x00,0x00,0x80,0x00,0x02,0x00,0x1E,0x42,0x82,0xC0,0x71,0x12,0x24,0x48,0x18,0x2F,0x00,0x00,0x00,0x00,0x00, // 224
-	0x00,0x00,0x00,0x00,0x01,0x01,0x00,0x1E,0x42,0x82,0xC0,0x71,0x12,0x24,0x48,0x18,0x2F,0x00,0x00,0x00,0x00,0x00, // 225
-	0x00,0x00,0x00,0x80,0x81,0x04,0x00,0x1E,0x42,0x82,0xC0,0x71,0x12,0x24,0x48,0x18,0x2F,0x00,0x00,0x00,0x00,0x00, // 226
-	0x00,0x00,0x00,0x80,0x82,0x02,0x00,0x1E,0x42,0x82,0xC0,0x71,0x12,0x24,0x48,0x18,0x2F,0x00,0x00,0x00,0x00,0x00, // 227
-	0x00,0x00,0x00,0x00,0x80,0x02,0x00,0x1E,0x42,0x82,0xC0,0x71,0x12,0x24,0x48,0x18,0x2F,0x00,0x00,0x00,0x00,0x00, // 228
-	0x00,0x00,0xE0,0x40,0x81,0x03,0x00,0x1E,0x42,0x82,0xC0,0x71,0x12,0x24,0x48,0x18,0x2F,0x00,0x00,0x00,0x00,0x00, // 229
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0xE7,0x10,0x46,0x82,0x20,0x38,0xC8,0xF9,0x0B,0x02,0x82,0xA0,0x70,0xC4,0xE3,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 230
-	0x00,0x00,0x00,0x00,0x00,0x00,0x38,0x44,0x02,0x02,0x02,0x02,0x02,0x44,0x38,0x10,0x20,0x38,0x00,0x00, // 231
-	0x00,0x00,0x00,0x40,0x00,0x01,0x00,0x0E,0x22,0x82,0x04,0xF9,0x13,0x20,0x88,0x08,0x0E,0x00,0x00,0x00,0x00,0x00, // 232
-	0x00,0x00,0x00,0x00,0x01,0x01,0x00,0x0E,0x22,0x82,0x04,0xF9,0x13,0x20,0x88,0x08,0x0E,0x00,0x00,0x00,0x00,0x00, // 233
-	0x00,0x00,0x00,0x80,0x81,0x04,0x00,0x0E,0x22,0x82,0x04,0xF9,0x13,0x20,0x88,0x08,0x0E,0x00,0x00,0x00,0x00,0x00, // 234
-	0x00,0x00,0x00,0x00,0x80,0x02,0x00,0x0E,0x22,0x82,0x04,0xF9,0x13,0x20,0x88,0x08,0x0E,0x00,0x00,0x00,0x00,0x00, // 235
-	0x00,0x10,0x02,0x22,0x22,0x22,0x22,0x02,0x00,0x00, // 236
-	0x00,0x40,0x02,0x22,0x22,0x22,0x22,0x02,0x00,0x00, // 237
-	0x00,0x60,0x09,0x22,0x22,0x22,0x22,0x02,0x00,0x00, // 238
-	0x00,0x00,0x05,0x22,0x22,0x22,0x22,0x02,0x00,0x00, // 239
-	0x00,0x00,0x00,0xC0,0x02,0x83,0x0D,0x1E,0x22,0x82,0x04,0x09,0x12,0x24,0x88,0x08,0x0E,0x00,0x00,0x00,0x00,0x00, // 240
-	0x00,0x00,0x00,0x40,0x41,0x01,0x80,0x0E,0x23,0x42,0x84,0x08,0x11,0x22,0x44,0x88,0x10,0x00,0x00,0x00,0x00,0x00, // 241
-	0x00,0x00,0x00,0x40,0x00,0x01,0x00,0x0E,0x22,0x82,0x04,0x09,0x12,0x24,0x88,0x08,0x0E,0x00,0x00,0x00,0x00,0x00, // 242
-	0x00,0x00,0x00,0x00,0x01,0x01,0x00,0x0E,0x22,0x82,0x04,0x09,0x12,0x24,0x88,0x08,0x0E,0x00,0x00,0x00,0x00,0x00, // 243
-	0x00,0x00,0x00,0x80,0x81,0x04,0x00,0x0E,0x22,0x82,0x04,0x09,0x12,0x24,0x88,0x08,0x0E,0x00,0x00,0x00,0x00,0x00, // 244
-	0x00,0x00,0x00,0x80,0x82,0x02,0x00,0x0E,0x22,0x82,0x04,0x09,0x12,0x24,0x88,0x08,0x0E,0x00,0x00,0x00,0x00,0x00, // 245
-	0x00,0x00,0x00,0x00,0x80,0x02,0x00,0x0E,0x22,0x82,0x04,0x09,0x12,0x24,0x88,0x08,0x0E,0x00,0x00,0x00,0x00,0x00, // 246
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0xFC,0x01,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 247
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x0B,0x11,0xC2,0x88,0x22,0x89,0x22,0x86,0x10,0xA1,0x03,0x00,0x00,0x00,0x00,0x00, // 248
-	0x00,0x00,0x00,0x40,0x00,0x01,0x80,0x10,0x21,0x42,0x84,0x08,0x11,0x22,0x44,0x0C,0x17,0x00,0x00,0x00,0x00,0x00, // 249
-	0x00,0x00,0x00,0x00,0x01,0x01,0x80,0x10,0x21,0x42,0x84,0x08,0x11,0x22,0x44,0x0C,0x17,0x00,0x00,0x00,0x00,0x00, // 250
-	0x00,0x00,0x00,0xC0,0x40,0x02,0x80,0x10,0x21,0x42,0x84,0x08,0x11,0x22,0x44,0x0C,0x17,0x00,0x00,0x00,0x00,0x00, // 251
-	0x00,0x00,0x00,0x00,0xA0,0x00,0x80,0x10,0x21,0x42,0x84,0x08,0x11,0x22,0x44,0x0C,0x17,0x00,0x00,0x00,0x00,0x00, // 252
-	0x00,0x00,0x00,0x10,0x08,0x00,0x41,0x41,0x21,0x22,0x22,0x14,0x14,0x1C,0x08,0x08,0x08,0x06,0x00,0x00, // 253
-	0x00,0x00,0x00,0x10,0x20,0x40,0x80,0x0E,0x23,0x82,0x04,0x09,0x12,0x24,0xC8,0x88,0x0E,0x01,0x02,0x04,0x00,0x00, // 254
-	0x00,0x00,0x00,0x00,0x14,0x00,0x41,0x41,0x21,0x22,0x22,0x14,0x14,0x1C,0x08,0x08,0x08,0x06,0x00,0x00 // 255
+  // Font Data:
+  0x00,0x00,0x00,0x00,0x00,0x00,0xF8,0x5F,  // 33
+  0x00,0x00,0x00,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x78, // 34
+  0x80,0x08,0x00,0x80,0x78,0x00,0xC0,0x0F,0x00,0xB8,0x08,0x00,0x80,0x08,0x00,0x80,0x78,0x00,0xC0,0x0F,0x00,0xB8,0x08,0x00,0x80,0x08,  // 35
+  0x00,0x00,0x00,0xE0,0x10,0x00,0x10,0x21,0x00,0x08,0x41,0x00,0xFC,0xFF,0x00,0x08,0x42,0x00,0x10,0x22,0x00,0x20,0x1C, // 36
+  0x00,0x00,0x00,0xF0,0x00,0x00,0x08,0x01,0x00,0x08,0x01,0x00,0x08,0x61,0x00,0xF0,0x18,0x00,0x00,0x06,0x00,0xC0,0x01,0x00,0x30,0x3C,0x00,0x08,0x42,0x00,0x00,0x42,0x00,0x00,0x42,0x00,0x00,0x3C,  // 37
+  0x00,0x00,0x00,0x00,0x1C,0x00,0x70,0x22,0x00,0x88,0x41,0x00,0x08,0x43,0x00,0x88,0x44,0x00,0x70,0x28,0x00,0x00,0x10,0x00,0x00,0x28,0x00,0x00,0x44, // 38
+  0x00,0x00,0x00,0x78,  // 39
+  0x00,0x00,0x00,0x80,0x3F,0x00,0x70,0xC0,0x01,0x08,0x00,0x02,  // 40
+  0x00,0x00,0x00,0x08,0x00,0x02,0x70,0xC0,0x01,0x80,0x3F, // 41
+  0x10,0x00,0x00,0xD0,0x00,0x00,0x38,0x00,0x00,0xD0,0x00,0x00,0x10, // 42
+  0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x02,0x00,0x00,0x02,0x00,0xC0,0x1F,0x00,0x00,0x02,0x00,0x00,0x02,0x00,0x00,0x02, // 43
+  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xC0,0x01, // 44
+  0x00,0x08,0x00,0x00,0x08,0x00,0x00,0x08,0x00,0x00,0x08, // 45
+  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,  // 46
+  0x00,0x60,0x00,0x00,0x1E,0x00,0xE0,0x01,0x00,0x18,  // 47
+  0x00,0x00,0x00,0xE0,0x1F,0x00,0x10,0x20,0x00,0x08,0x40,0x00,0x08,0x40,0x00,0x08,0x40,0x00,0x10,0x20,0x00,0xE0,0x1F, // 48
+  0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x00,0x20,0x00,0x00,0x10,0x00,0x00,0xF8,0x7F, // 49
+  0x00,0x00,0x00,0x20,0x40,0x00,0x10,0x60,0x00,0x08,0x50,0x00,0x08,0x48,0x00,0x08,0x44,0x00,0x10,0x43,0x00,0xE0,0x40, // 50
+  0x00,0x00,0x00,0x20,0x10,0x00,0x10,0x20,0x00,0x08,0x41,0x00,0x08,0x41,0x00,0x88,0x41,0x00,0xF0,0x22,0x00,0x00,0x1C, // 51
+  0x00,0x0C,0x00,0x00,0x0A,0x00,0x00,0x09,0x00,0xC0,0x08,0x00,0x20,0x08,0x00,0x10,0x08,0x00,0xF8,0x7F,0x00,0x00,0x08, // 52
+  0x00,0x00,0x00,0xC0,0x11,0x00,0xB8,0x20,0x00,0x88,0x40,0x00,0x88,0x40,0x00,0x88,0x40,0x00,0x08,0x21,0x00,0x08,0x1E, // 53
+  0x00,0x00,0x00,0xE0,0x1F,0x00,0x10,0x21,0x00,0x88,0x40,0x00,0x88,0x40,0x00,0x88,0x40,0x00,0x10,0x21,0x00,0x20,0x1E, // 54
+  0x00,0x00,0x00,0x08,0x00,0x00,0x08,0x00,0x00,0x08,0x78,0x00,0x08,0x07,0x00,0xC8,0x00,0x00,0x28,0x00,0x00,0x18,  // 55
+  0x00,0x00,0x00,0x60,0x1C,0x00,0x90,0x22,0x00,0x08,0x41,0x00,0x08,0x41,0x00,0x08,0x41,0x00,0x90,0x22,0x00,0x60,0x1C, // 56
+  0x00,0x00,0x00,0xE0,0x11,0x00,0x10,0x22,0x00,0x08,0x44,0x00,0x08,0x44,0x00,0x08,0x44,0x00,0x10,0x22,0x00,0xE0,0x1F, // 57
+  0x00,0x00,0x00,0x40,0x40, // 58
+  0x00,0x00,0x00,0x40,0xC0,0x01,  // 59
+  0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x05,0x00,0x00,0x05,0x00,0x80,0x08,0x00,0x80,0x08,0x00,0x80,0x08,0x00,0x40,0x10, // 60
+  0x00,0x00,0x00,0x80,0x08,0x00,0x80,0x08,0x00,0x80,0x08,0x00,0x80,0x08,0x00,0x80,0x08,0x00,0x80,0x08,0x00,0x80,0x08, // 61
+  0x00,0x00,0x00,0x40,0x10,0x00,0x80,0x08,0x00,0x80,0x08,0x00,0x80,0x08,0x00,0x00,0x05,0x00,0x00,0x05,0x00,0x00,0x02, // 62
+  0x00,0x00,0x00,0x60,0x00,0x00,0x10,0x00,0x00,0x08,0x00,0x00,0x08,0x5C,0x00,0x08,0x02,0x00,0x10,0x01,0x00,0xE0,  // 63
+  0x00,0x00,0x00,0x00,0x3F,0x00,0xC0,0x40,0x00,0x20,0x80,0x00,0x10,0x1E,0x01,0x10,0x21,0x01,0x88,0x40,0x02,0x48,0x40,0x02,0x48,0x40,0x02,0x48,0x20,0x02,0x88,0x7C,0x02,0xC8,0x43,0x02,0x10,0x40,0x02,0x10,0x20,0x01,0x60,0x10,0x01,0x80,0x8F, // 64
+  0x00,0x00,0x00,0x00,0x60,0x00,0x00,0x1C,0x00,0x80,0x07,0x00,0x70,0x04,0x00,0x08,0x04,0x00,0x70,0x04,0x00,0x80,0x07,0x00,0x00,0x1C,0x00,0x00,0x60, // 65
+  0x00,0x00,0x00,0xF8,0x7F,0x00,0x08,0x41,0x00,0x08,0x41,0x00,0x08,0x41,0x00,0x08,0x41,0x00,0x08,0x41,0x00,0x08,0x41,0x00,0x90,0x22,0x00,0x60,0x1C, // 66
+  0x00,0x00,0x00,0xC0,0x0F,0x00,0x20,0x10,0x00,0x10,0x20,0x00,0x08,0x40,0x00,0x08,0x40,0x00,0x08,0x40,0x00,0x08,0x40,0x00,0x08,0x40,0x00,0x10,0x20,0x00,0x20,0x10,  // 67
+  0x00,0x00,0x00,0xF8,0x7F,0x00,0x08,0x40,0x00,0x08,0x40,0x00,0x08,0x40,0x00,0x08,0x40,0x00,0x08,0x40,0x00,0x08,0x40,0x00,0x10,0x20,0x00,0x20,0x10,0x00,0xC0,0x0F,  // 68
+  0x00,0x00,0x00,0xF8,0x7F,0x00,0x08,0x41,0x00,0x08,0x41,0x00,0x08,0x41,0x00,0x08,0x41,0x00,0x08,0x41,0x00,0x08,0x41,0x00,0x08,0x41,0x00,0x08,0x40, // 69
+  0x00,0x00,0x00,0xF8,0x7F,0x00,0x08,0x02,0x00,0x08,0x02,0x00,0x08,0x02,0x00,0x08,0x02,0x00,0x08,0x02,0x00,0x08,0x02,0x00,0x08, // 70
+  0x00,0x00,0x00,0xC0,0x0F,0x00,0x20,0x10,0x00,0x10,0x20,0x00,0x08,0x40,0x00,0x08,0x40,0x00,0x08,0x42,0x00,0x08,0x42,0x00,0x10,0x22,0x00,0x20,0x12,0x00,0x00,0x0E,  // 71
+  0x00,0x00,0x00,0xF8,0x7F,0x00,0x00,0x01,0x00,0x00,0x01,0x00,0x00,0x01,0x00,0x00,0x01,0x00,0x00,0x01,0x00,0x00,0x01,0x00,0x00,0x01,0x00,0xF8,0x7F, // 72
+  0x00,0x00,0x00,0xF8,0x7F, // 73
+  0x00,0x00,0x00,0x00,0x38,0x00,0x00,0x40,0x00,0x00,0x40,0x00,0x00,0x40,0x00,0x00,0x40,0x00,0xF8,0x3F,  // 74
+  0x00,0x00,0x00,0xF8,0x7F,0x00,0x00,0x04,0x00,0x00,0x02,0x00,0x00,0x01,0x00,0x80,0x03,0x00,0x40,0x04,0x00,0x20,0x18,0x00,0x10,0x20,0x00,0x08,0x40, // 75
+  0x00,0x00,0x00,0xF8,0x7F,0x00,0x00,0x40,0x00,0x00,0x40,0x00,0x00,0x40,0x00,0x00,0x40,0x00,0x00,0x40,0x00,0x00,0x40, // 76
+  0x00,0x00,0x00,0xF8,0x7F,0x00,0x30,0x00,0x00,0xC0,0x00,0x00,0x00,0x03,0x00,0x00,0x1C,0x00,0x00,0x60,0x00,0x00,0x1C,0x00,0x00,0x03,0x00,0xC0,0x00,0x00,0x30,0x00,0x00,0xF8,0x7F, // 77
+  0x00,0x00,0x00,0xF8,0x7F,0x00,0x10,0x00,0x00,0x60,0x00,0x00,0x80,0x00,0x00,0x00,0x03,0x00,0x00,0x04,0x00,0x00,0x18,0x00,0x00,0x20,0x00,0xF8,0x7F, // 78
+  0x00,0x00,0x00,0xC0,0x0F,0x00,0x20,0x10,0x00,0x10,0x20,0x00,0x08,0x40,0x00,0x08,0x40,0x00,0x08,0x40,0x00,0x08,0x40,0x00,0x10,0x20,0x00,0x20,0x10,0x00,0xC0,0x0F,  // 79
+  0x00,0x00,0x00,0xF8,0x7F,0x00,0x08,0x02,0x00,0x08,0x02,0x00,0x08,0x02,0x00,0x08,0x02,0x00,0x08,0x02,0x00,0x08,0x02,0x00,0x10,0x01,0x00,0xE0,  // 80
+  0x00,0x00,0x00,0xC0,0x0F,0x00,0x20,0x10,0x00,0x10,0x20,0x00,0x08,0x40,0x00,0x08,0x40,0x00,0x08,0x50,0x00,0x08,0x50,0x00,0x10,0x20,0x00,0x20,0x70,0x00,0xC0,0x4F,  // 81
+  0x00,0x00,0x00,0xF8,0x7F,0x00,0x08,0x02,0x00,0x08,0x02,0x00,0x08,0x02,0x00,0x08,0x02,0x00,0x08,0x06,0x00,0x08,0x1A,0x00,0x10,0x21,0x00,0xE0,0x40, // 82
+  0x00,0x00,0x00,0x60,0x10,0x00,0x90,0x20,0x00,0x08,0x41,0x00,0x08,0x41,0x00,0x08,0x41,0x00,0x08,0x42,0x00,0x08,0x42,0x00,0x10,0x22,0x00,0x20,0x1C, // 83
+  0x08,0x00,0x00,0x08,0x00,0x00,0x08,0x00,0x00,0x08,0x00,0x00,0xF8,0x7F,0x00,0x08,0x00,0x00,0x08,0x00,0x00,0x08,0x00,0x00,0x08, // 84
+  0x00,0x00,0x00,0xF8,0x1F,0x00,0x00,0x20,0x00,0x00,0x40,0x00,0x00,0x40,0x00,0x00,0x40,0x00,0x00,0x40,0x00,0x00,0x40,0x00,0x00,0x20,0x00,0xF8,0x1F, // 85
+  0x00,0x00,0x00,0x18,0x00,0x00,0xE0,0x00,0x00,0x00,0x07,0x00,0x00,0x18,0x00,0x00,0x60,0x00,0x00,0x18,0x00,0x00,0x07,0x00,0xE0,0x00,0x00,0x18,  // 86
+  0x18,0x00,0x00,0xE0,0x01,0x00,0x00,0x1E,0x00,0x00,0x60,0x00,0x00,0x1C,0x00,0x80,0x03,0x00,0x70,0x00,0x00,0x08,0x00,0x00,0x70,0x00,0x00,0x80,0x03,0x00,0x00,0x1C,0x00,0x00,0x60,0x00,0x00,0x1E,0x00,0xE0,0x01,0x00,0x18, // 87
+  0x00,0x40,0x00,0x08,0x20,0x00,0x10,0x10,0x00,0x60,0x0C,0x00,0x80,0x02,0x00,0x00,0x01,0x00,0x80,0x02,0x00,0x60,0x0C,0x00,0x10,0x10,0x00,0x08,0x20,0x00,0x00,0x40,  // 88
+  0x08,0x00,0x00,0x30,0x00,0x00,0x40,0x00,0x00,0x80,0x01,0x00,0x00,0x7E,0x00,0x80,0x01,0x00,0x40,0x00,0x00,0x30,0x00,0x00,0x08, // 89
+  0x00,0x40,0x00,0x08,0x60,0x00,0x08,0x58,0x00,0x08,0x44,0x00,0x08,0x43,0x00,0x88,0x40,0x00,0x68,0x40,0x00,0x18,0x40,0x00,0x08,0x40,  // 90
+  0x00,0x00,0x00,0xF8,0xFF,0x03,0x08,0x00,0x02,0x08,0x00,0x02,  // 91
+  0x18,0x00,0x00,0xE0,0x01,0x00,0x00,0x1E,0x00,0x00,0x60, // 92
+  0x08,0x00,0x02,0x08,0x00,0x02,0xF8,0xFF,0x03, // 93
+  0x00,0x01,0x00,0xC0,0x00,0x00,0x30,0x00,0x00,0x08,0x00,0x00,0x30,0x00,0x00,0xC0,0x00,0x00,0x00,0x01,  // 94
+  0x00,0x00,0x02,0x00,0x00,0x02,0x00,0x00,0x02,0x00,0x00,0x02,0x00,0x00,0x02,0x00,0x00,0x02,0x00,0x00,0x02,0x00,0x00,0x02,0x00,0x00,0x02, // 95
+  0x00,0x00,0x00,0x08,0x00,0x00,0x10, // 96
+  0x00,0x00,0x00,0x00,0x39,0x00,0x80,0x44,0x00,0x40,0x44,0x00,0x40,0x44,0x00,0x40,0x42,0x00,0x40,0x22,0x00,0x80,0x7F, // 97
+  0x00,0x00,0x00,0xF8,0x7F,0x00,0x80,0x20,0x00,0x40,0x40,0x00,0x40,0x40,0x00,0x40,0x40,0x00,0x80,0x20,0x00,0x00,0x1F, // 98
+  0x00,0x00,0x00,0x00,0x1F,0x00,0x80,0x20,0x00,0x40,0x40,0x00,0x40,0x40,0x00,0x40,0x40,0x00,0x80,0x20,  // 99
+  0x00,0x00,0x00,0x00,0x1F,0x00,0x80,0x20,0x00,0x40,0x40,0x00,0x40,0x40,0x00,0x40,0x40,0x00,0x80,0x20,0x00,0xF8,0x7F, // 100
+  0x00,0x00,0x00,0x00,0x1F,0x00,0x80,0x24,0x00,0x40,0x44,0x00,0x40,0x44,0x00,0x40,0x44,0x00,0x80,0x24,0x00,0x00,0x17, // 101
+  0x40,0x00,0x00,0xF0,0x7F,0x00,0x48,0x00,0x00,0x48,  // 102
+  0x00,0x00,0x00,0x00,0x1F,0x01,0x80,0x20,0x02,0x40,0x40,0x02,0x40,0x40,0x02,0x40,0x40,0x02,0x80,0x20,0x01,0xC0,0xFF, // 103
+  0x00,0x00,0x00,0xF8,0x7F,0x00,0x80,0x00,0x00,0x40,0x00,0x00,0x40,0x00,0x00,0x40,0x00,0x00,0x80,0x7F,  // 104
+  0x00,0x00,0x00,0xC8,0x7F, // 105
+  0x00,0x00,0x02,0xC8,0xFF,0x01,  // 106
+  0x00,0x00,0x00,0xF8,0x7F,0x00,0x00,0x08,0x00,0x00,0x04,0x00,0x00,0x06,0x00,0x00,0x19,0x00,0x80,0x20,0x00,0x40,0x40, // 107
+  0x00,0x00,0x00,0xF8,0x7F, // 108
+  0x00,0x00,0x00,0xC0,0x7F,0x00,0x80,0x00,0x00,0x40,0x00,0x00,0x40,0x00,0x00,0x40,0x00,0x00,0x80,0x7F,0x00,0x80,0x00,0x00,0x40,0x00,0x00,0x40,0x00,0x00,0x40,0x00,0x00,0x80,0x7F, // 109
+  0x00,0x00,0x00,0xC0,0x7F,0x00,0x80,0x00,0x00,0x40,0x00,0x00,0x40,0x00,0x00,0x40,0x00,0x00,0x80,0x7F,  // 110
+  0x00,0x00,0x00,0x00,0x1F,0x00,0x80,0x20,0x00,0x40,0x40,0x00,0x40,0x40,0x00,0x40,0x40,0x00,0x80,0x20,0x00,0x00,0x1F, // 111
+  0x00,0x00,0x00,0xC0,0xFF,0x03,0x80,0x20,0x00,0x40,0x40,0x00,0x40,0x40,0x00,0x40,0x40,0x00,0x80,0x20,0x00,0x00,0x1F, // 112
+  0x00,0x00,0x00,0x00,0x1F,0x00,0x80,0x20,0x00,0x40,0x40,0x00,0x40,0x40,0x00,0x40,0x40,0x00,0x80,0x20,0x00,0xC0,0xFF,0x03,  // 113
+  0x00,0x00,0x00,0xC0,0x7F,0x00,0x80,0x00,0x00,0x40,0x00,0x00,0x40, // 114
+  0x00,0x00,0x00,0x80,0x23,0x00,0x40,0x44,0x00,0x40,0x44,0x00,0x40,0x44,0x00,0x40,0x44,0x00,0x80,0x38,  // 115
+  0x40,0x00,0x00,0xF0,0x7F,0x00,0x40,0x40,0x00,0x40,0x40, // 116
+  0x00,0x00,0x00,0xC0,0x3F,0x00,0x00,0x40,0x00,0x00,0x40,0x00,0x00,0x40,0x00,0x00,0x20,0x00,0xC0,0x7F,  // 117
+  0xC0,0x00,0x00,0x00,0x03,0x00,0x00,0x1C,0x00,0x00,0x60,0x00,0x00,0x1C,0x00,0x00,0x03,0x00,0xC0, // 118
+  0xC0,0x00,0x00,0x00,0x1F,0x00,0x00,0x60,0x00,0x00,0x1C,0x00,0x00,0x03,0x00,0xC0,0x00,0x00,0x00,0x03,0x00,0x00,0x1C,0x00,0x00,0x60,0x00,0x00,0x1F,0x00,0xC0, // 119
+  0x40,0x40,0x00,0x80,0x20,0x00,0x00,0x1B,0x00,0x00,0x04,0x00,0x00,0x1B,0x00,0x80,0x20,0x00,0x40,0x40,  // 120
+  0xC0,0x01,0x00,0x00,0x06,0x02,0x00,0x38,0x02,0x00,0xE0,0x01,0x00,0x38,0x00,0x00,0x07,0x00,0xC0, // 121
+  0x40,0x40,0x00,0x40,0x60,0x00,0x40,0x58,0x00,0x40,0x44,0x00,0x40,0x43,0x00,0xC0,0x40,0x00,0x40,0x40,  // 122
+  0x00,0x04,0x00,0x00,0x04,0x00,0xF0,0xFB,0x01,0x08,0x00,0x02,0x08,0x00,0x02, // 123
+  0x00,0x00,0x00,0xF8,0xFF,0x03,  // 124
+  0x08,0x00,0x02,0x08,0x00,0x02,0xF0,0xFB,0x01,0x00,0x04,0x00,0x00,0x04,  // 125
+  0x00,0x02,0x00,0x00,0x01,0x00,0x00,0x01,0x00,0x00,0x01,0x00,0x00,0x02,0x00,0x00,0x02,0x00,0x00,0x02,0x00,0x00,0x01, // 126
+  0x00,0x00,0x00,0x00,0x00,0x00,0x40,0xFF,0x03, // 161
+  0x00,0x00,0x00,0x00,0x1F,0x00,0x80,0x20,0x03,0x40,0xF0,0x00,0x40,0x4E,0x00,0xC0,0x41,0x00,0xB8,0x20,0x00,0x00,0x11, // 162
+  0x00,0x41,0x00,0xE0,0x31,0x00,0x10,0x2F,0x00,0x08,0x21,0x00,0x08,0x21,0x00,0x08,0x40,0x00,0x10,0x40,0x00,0x20,0x20, // 163
+  0x00,0x00,0x00,0x40,0x0B,0x00,0x80,0x04,0x00,0x40,0x08,0x00,0x40,0x08,0x00,0x80,0x04,0x00,0x40,0x0B,  // 164
+  0x08,0x0A,0x00,0x10,0x0A,0x00,0x60,0x0A,0x00,0x80,0x0B,0x00,0x00,0x7E,0x00,0x80,0x0B,0x00,0x60,0x0A,0x00,0x10,0x0A,0x00,0x08,0x0A,  // 165
+  0x00,0x00,0x00,0xF8,0xF1,0x03,  // 166
+  0x00,0x86,0x00,0x70,0x09,0x01,0xC8,0x10,0x02,0x88,0x10,0x02,0x08,0x21,0x02,0x08,0x61,0x02,0x30,0xD2,0x01,0x00,0x0C, // 167
+  0x08,0x00,0x00,0x00,0x00,0x00,0x08, // 168
+  0xC0,0x0F,0x00,0x20,0x10,0x00,0x10,0x20,0x00,0xC8,0x47,0x00,0x28,0x48,0x00,0x28,0x48,0x00,0x28,0x48,0x00,0x28,0x48,0x00,0x48,0x44,0x00,0x10,0x20,0x00,0x20,0x10,0x00,0xC0,0x0F, // 169
+  0xD0,0x00,0x00,0x48,0x01,0x00,0x28,0x01,0x00,0x28,0x01,0x00,0xF0,0x01,  // 170
+  0x00,0x00,0x00,0x00,0x04,0x00,0x00,0x1B,0x00,0x80,0x20,0x00,0x00,0x04,0x00,0x00,0x1B,0x00,0x80,0x20,  // 171
+  0x00,0x00,0x00,0x80,0x00,0x00,0x80,0x00,0x00,0x80,0x00,0x00,0x80,0x00,0x00,0x80,0x00,0x00,0x80,0x00,0x00,0x80,0x0F, // 172
+  0x00,0x08,0x00,0x00,0x08,0x00,0x00,0x08,0x00,0x00,0x08, // 173
+  0xC0,0x0F,0x00,0x20,0x10,0x00,0x10,0x20,0x00,0xE8,0x4F,0x00,0x28,0x41,0x00,0x28,0x41,0x00,0x28,0x43,0x00,0x28,0x45,0x00,0xC8,0x48,0x00,0x10,0x20,0x00,0x20,0x10,0x00,0xC0,0x0F, // 174
+  0x04,0x00,0x00,0x04,0x00,0x00,0x04,0x00,0x00,0x04,0x00,0x00,0x04,0x00,0x00,0x04,0x00,0x00,0x04,0x00,0x00,0x04,0x00,0x00,0x04, // 175
+  0x00,0x00,0x00,0x30,0x00,0x00,0x48,0x00,0x00,0x48,0x00,0x00,0x30, // 176
+  0x00,0x00,0x00,0x00,0x41,0x00,0x00,0x41,0x00,0x00,0x41,0x00,0xE0,0x4F,0x00,0x00,0x41,0x00,0x00,0x41,0x00,0x00,0x41, // 177
+  0x10,0x01,0x00,0x88,0x01,0x00,0x48,0x01,0x00,0x48,0x01,0x00,0x30,0x01,  // 178
+  0x90,0x00,0x00,0x08,0x01,0x00,0x08,0x01,0x00,0x28,0x01,0x00,0xD8, // 179
+  0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x00,0x08,  // 180
+  0x00,0x00,0x00,0xC0,0xFF,0x03,0x00,0x20,0x00,0x00,0x40,0x00,0x00,0x40,0x00,0x00,0x40,0x00,0x00,0x20,0x00,0xC0,0x7F, // 181
+  0xF0,0x00,0x00,0xF8,0x00,0x00,0xF8,0x01,0x00,0xF8,0x01,0x00,0xF8,0xFF,0x03,0x08,0x00,0x00,0x08,0x00,0x00,0xF8,0xFF,0x03,0x08, // 182
+  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,  // 183
+  0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x80,0x02,0x00,0x00,0x03,  // 184
+  0x00,0x00,0x00,0x10,0x00,0x00,0x08,0x00,0x00,0xF8,0x01, // 185
+  0xF0,0x00,0x00,0x08,0x01,0x00,0x08,0x01,0x00,0x08,0x01,0x00,0xF0, // 186
+  0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x20,0x00,0x00,0x1B,0x00,0x00,0x04,0x00,0x80,0x20,0x00,0x00,0x1B,0x00,0x00,0x04, // 187
+  0x00,0x00,0x00,0x10,0x00,0x00,0x08,0x40,0x00,0xF8,0x21,0x00,0x00,0x10,0x00,0x00,0x0C,0x00,0x00,0x02,0x00,0x80,0x01,0x00,0x40,0x30,0x00,0x30,0x28,0x00,0x08,0x24,0x00,0x00,0x7E,0x00,0x00,0x20,  // 188
+  0x00,0x00,0x00,0x10,0x00,0x00,0x08,0x40,0x00,0xF8,0x31,0x00,0x00,0x08,0x00,0x00,0x04,0x00,0x00,0x03,0x00,0x80,0x00,0x00,0x60,0x44,0x00,0x10,0x62,0x00,0x08,0x52,0x00,0x00,0x52,0x00,0x00,0x4C,  // 189
+  0x90,0x00,0x00,0x08,0x01,0x00,0x08,0x41,0x00,0x28,0x21,0x00,0xD8,0x18,0x00,0x00,0x04,0x00,0x00,0x03,0x00,0x80,0x00,0x00,0x40,0x30,0x00,0x30,0x28,0x00,0x08,0x24,0x00,0x00,0x7E,0x00,0x00,0x20,  // 190
+  0x00,0x00,0x00,0x00,0xE0,0x00,0x00,0x10,0x01,0x00,0x08,0x02,0x40,0x07,0x02,0x00,0x00,0x02,0x00,0x00,0x02,0x00,0x00,0x01,0x00,0xC0,  // 191
+  0x00,0x00,0x00,0x00,0x60,0x00,0x00,0x1C,0x00,0x80,0x07,0x00,0x71,0x04,0x00,0x0A,0x04,0x00,0x70,0x04,0x00,0x80,0x07,0x00,0x00,0x1C,0x00,0x00,0x60, // 192
+  0x00,0x00,0x00,0x00,0x60,0x00,0x00,0x1C,0x00,0x80,0x07,0x00,0x70,0x04,0x00,0x0A,0x04,0x00,0x71,0x04,0x00,0x80,0x07,0x00,0x00,0x1C,0x00,0x00,0x60, // 193
+  0x00,0x00,0x00,0x00,0x60,0x00,0x00,0x1C,0x00,0x80,0x07,0x00,0x72,0x04,0x00,0x09,0x04,0x00,0x71,0x04,0x00,0x82,0x07,0x00,0x00,0x1C,0x00,0x00,0x60, // 194
+  0x00,0x00,0x00,0x00,0x60,0x00,0x00,0x1C,0x00,0x80,0x07,0x00,0x72,0x04,0x00,0x09,0x04,0x00,0x72,0x04,0x00,0x81,0x07,0x00,0x00,0x1C,0x00,0x00,0x60, // 195
+  0x00,0x00,0x00,0x00,0x60,0x00,0x00,0x1C,0x00,0x80,0x07,0x00,0x72,0x04,0x00,0x08,0x04,0x00,0x72,0x04,0x00,0x80,0x07,0x00,0x00,0x1C,0x00,0x00,0x60, // 196
+  0x00,0x00,0x00,0x00,0x60,0x00,0x00,0x1C,0x00,0x80,0x07,0x00,0x7E,0x04,0x00,0x0A,0x04,0x00,0x7E,0x04,0x00,0x80,0x07,0x00,0x00,0x1C,0x00,0x00,0x60, // 197
+  0x00,0x60,0x00,0x00,0x18,0x00,0x00,0x06,0x00,0x80,0x05,0x00,0x60,0x04,0x00,0x18,0x04,0x00,0x08,0x04,0x00,0x08,0x04,0x00,0xF8,0x7F,0x00,0x08,0x41,0x00,0x08,0x41,0x00,0x08,0x41,0x00,0x08,0x41,0x00,0x08,0x41,0x00,0x08,0x41,  // 198
+  0x00,0x00,0x00,0xC0,0x0F,0x00,0x20,0x10,0x00,0x10,0x20,0x00,0x08,0x40,0x00,0x08,0x40,0x02,0x08,0xC0,0x02,0x08,0x40,0x03,0x08,0x40,0x00,0x10,0x20,0x00,0x20,0x10,  // 199
+  0x00,0x00,0x00,0xF8,0x7F,0x00,0x08,0x41,0x00,0x08,0x41,0x00,0x08,0x41,0x00,0x09,0x41,0x00,0x0A,0x41,0x00,0x08,0x41,0x00,0x08,0x41,0x00,0x08,0x40, // 200
+  0x00,0x00,0x00,0xF8,0x7F,0x00,0x08,0x41,0x00,0x08,0x41,0x00,0x08,0x41,0x00,0x0A,0x41,0x00,0x09,0x41,0x00,0x08,0x41,0x00,0x08,0x41,0x00,0x08,0x40, // 201
+  0x00,0x00,0x00,0xF8,0x7F,0x00,0x08,0x41,0x00,0x08,0x41,0x00,0x0A,0x41,0x00,0x09,0x41,0x00,0x09,0x41,0x00,0x0A,0x41,0x00,0x08,0x41,0x00,0x08,0x40, // 202
+  0x00,0x00,0x00,0xF8,0x7F,0x00,0x08,0x41,0x00,0x08,0x41,0x00,0x0A,0x41,0x00,0x08,0x41,0x00,0x0A,0x41,0x00,0x08,0x41,0x00,0x08,0x41,0x00,0x08,0x40, // 203
+  0x01,0x00,0x00,0xFA,0x7F, // 204
+  0x00,0x00,0x00,0xFA,0x7F,0x00,0x01, // 205
+  0x02,0x00,0x00,0xF9,0x7F,0x00,0x01,0x00,0x00,0x02,  // 206
+  0x02,0x00,0x00,0xF8,0x7F,0x00,0x02, // 207
+  0x00,0x02,0x00,0xF8,0x7F,0x00,0x08,0x42,0x00,0x08,0x42,0x00,0x08,0x42,0x00,0x08,0x42,0x00,0x08,0x40,0x00,0x08,0x40,0x00,0x10,0x20,0x00,0x20,0x10,0x00,0xC0,0x0F,  // 208
+  0x00,0x00,0x00,0xF8,0x7F,0x00,0x10,0x00,0x00,0x60,0x00,0x00,0x82,0x00,0x00,0x01,0x03,0x00,0x02,0x04,0x00,0x01,0x18,0x00,0x00,0x20,0x00,0xF8,0x7F, // 209
+  0x00,0x00,0x00,0xC0,0x0F,0x00,0x20,0x10,0x00,0x10,0x20,0x00,0x08,0x40,0x00,0x09,0x40,0x00,0x0A,0x40,0x00,0x08,0x40,0x00,0x10,0x20,0x00,0x20,0x10,0x00,0xC0,0x0F,  // 210
+  0x00,0x00,0x00,0xC0,0x0F,0x00,0x20,0x10,0x00,0x10,0x20,0x00,0x08,0x40,0x00,0x0A,0x40,0x00,0x09,0x40,0x00,0x08,0x40,0x00,0x10,0x20,0x00,0x20,0x10,0x00,0xC0,0x0F,  // 211
+  0x00,0x00,0x00,0xC0,0x0F,0x00,0x20,0x10,0x00,0x10,0x20,0x00,0x0A,0x40,0x00,0x09,0x40,0x00,0x09,0x40,0x00,0x0A,0x40,0x00,0x10,0x20,0x00,0x20,0x10,0x00,0xC0,0x0F,  // 212
+  0x00,0x00,0x00,0xC0,0x0F,0x00,0x20,0x10,0x00,0x10,0x20,0x00,0x0A,0x40,0x00,0x09,0x40,0x00,0x0A,0x40,0x00,0x09,0x40,0x00,0x10,0x20,0x00,0x20,0x10,0x00,0xC0,0x0F,  // 213
+  0x00,0x00,0x00,0xC0,0x0F,0x00,0x20,0x10,0x00,0x10,0x20,0x00,0x08,0x40,0x00,0x0A,0x40,0x00,0x08,0x40,0x00,0x0A,0x40,0x00,0x10,0x20,0x00,0x20,0x10,0x00,0xC0,0x0F,  // 214
+  0x00,0x00,0x00,0x40,0x10,0x00,0x80,0x08,0x00,0x00,0x05,0x00,0x00,0x07,0x00,0x00,0x05,0x00,0x80,0x08,0x00,0x40,0x10, // 215
+  0x00,0x00,0x00,0xC0,0x4F,0x00,0x20,0x30,0x00,0x10,0x30,0x00,0x08,0x4C,0x00,0x08,0x42,0x00,0x08,0x41,0x00,0xC8,0x40,0x00,0x30,0x20,0x00,0x30,0x10,0x00,0xC8,0x0F,  // 216
+  0x00,0x00,0x00,0xF8,0x1F,0x00,0x00,0x20,0x00,0x00,0x40,0x00,0x01,0x40,0x00,0x02,0x40,0x00,0x00,0x40,0x00,0x00,0x40,0x00,0x00,0x20,0x00,0xF8,0x1F, // 217
+  0x00,0x00,0x00,0xF8,0x1F,0x00,0x00,0x20,0x00,0x00,0x40,0x00,0x00,0x40,0x00,0x02,0x40,0x00,0x01,0x40,0x00,0x00,0x40,0x00,0x00,0x20,0x00,0xF8,0x1F, // 218
+  0x00,0x00,0x00,0xF8,0x1F,0x00,0x00,0x20,0x00,0x00,0x40,0x00,0x02,0x40,0x00,0x01,0x40,0x00,0x01,0x40,0x00,0x02,0x40,0x00,0x00,0x20,0x00,0xF8,0x1F, // 219
+  0x00,0x00,0x00,0xF8,0x1F,0x00,0x00,0x20,0x00,0x00,0x40,0x00,0x02,0x40,0x00,0x00,0x40,0x00,0x02,0x40,0x00,0x00,0x40,0x00,0x00,0x20,0x00,0xF8,0x1F, // 220
+  0x08,0x00,0x00,0x30,0x00,0x00,0x40,0x00,0x00,0x80,0x01,0x00,0x02,0x7E,0x00,0x81,0x01,0x00,0x40,0x00,0x00,0x30,0x00,0x00,0x08, // 221
+  0x00,0x00,0x00,0xF8,0x7F,0x00,0x20,0x10,0x00,0x20,0x10,0x00,0x20,0x10,0x00,0x20,0x10,0x00,0x20,0x10,0x00,0x20,0x10,0x00,0x40,0x08,0x00,0x80,0x07, // 222
+  0x00,0x00,0x00,0xE0,0x7F,0x00,0x10,0x00,0x00,0x08,0x20,0x00,0x88,0x43,0x00,0x70,0x42,0x00,0x00,0x44,0x00,0x00,0x38, // 223
+  0x00,0x00,0x00,0x00,0x39,0x00,0x80,0x44,0x00,0x40,0x44,0x00,0x48,0x44,0x00,0x50,0x42,0x00,0x40,0x22,0x00,0x80,0x7F, // 224
+  0x00,0x00,0x00,0x00,0x39,0x00,0x80,0x44,0x00,0x40,0x44,0x00,0x50,0x44,0x00,0x48,0x42,0x00,0x40,0x22,0x00,0x80,0x7F, // 225
+  0x00,0x00,0x00,0x00,0x39,0x00,0x80,0x44,0x00,0x50,0x44,0x00,0x48,0x44,0x00,0x48,0x42,0x00,0x50,0x22,0x00,0x80,0x7F, // 226
+  0x00,0x00,0x00,0x00,0x39,0x00,0x80,0x44,0x00,0x50,0x44,0x00,0x48,0x44,0x00,0x50,0x42,0x00,0x48,0x22,0x00,0x80,0x7F, // 227
+  0x00,0x00,0x00,0x00,0x39,0x00,0x80,0x44,0x00,0x50,0x44,0x00,0x40,0x44,0x00,0x50,0x42,0x00,0x40,0x22,0x00,0x80,0x7F, // 228
+  0x00,0x00,0x00,0x00,0x39,0x00,0x80,0x44,0x00,0x5C,0x44,0x00,0x54,0x44,0x00,0x5C,0x42,0x00,0x40,0x22,0x00,0x80,0x7F, // 229
+  0x00,0x00,0x00,0x00,0x39,0x00,0x80,0x44,0x00,0x40,0x44,0x00,0x40,0x44,0x00,0x40,0x42,0x00,0x40,0x22,0x00,0x80,0x3F,0x00,0x80,0x24,0x00,0x40,0x44,0x00,0x40,0x44,0x00,0x40,0x44,0x00,0x80,0x24,0x00,0x00,0x17, // 230
+  0x00,0x00,0x00,0x00,0x1F,0x00,0x80,0x20,0x00,0x40,0x40,0x02,0x40,0xC0,0x02,0x40,0x40,0x03,0x80,0x20,  // 231
+  0x00,0x00,0x00,0x00,0x1F,0x00,0x80,0x24,0x00,0x48,0x44,0x00,0x50,0x44,0x00,0x40,0x44,0x00,0x80,0x24,0x00,0x00,0x17, // 232
+  0x00,0x00,0x00,0x00,0x1F,0x00,0x80,0x24,0x00,0x40,0x44,0x00,0x50,0x44,0x00,0x48,0x44,0x00,0x80,0x24,0x00,0x00,0x17, // 233
+  0x00,0x00,0x00,0x00,0x1F,0x00,0x80,0x24,0x00,0x50,0x44,0x00,0x48,0x44,0x00,0x48,0x44,0x00,0x90,0x24,0x00,0x00,0x17, // 234
+  0x00,0x00,0x00,0x00,0x1F,0x00,0x80,0x24,0x00,0x50,0x44,0x00,0x40,0x44,0x00,0x50,0x44,0x00,0x80,0x24,0x00,0x00,0x17, // 235
+  0x08,0x00,0x00,0xD0,0x7F, // 236
+  0x00,0x00,0x00,0xD0,0x7F,0x00,0x08, // 237
+  0x10,0x00,0x00,0xC8,0x7F,0x00,0x08,0x00,0x00,0x10,  // 238
+  0x10,0x00,0x00,0xC0,0x7F,0x00,0x10, // 239
+  0x00,0x00,0x00,0x00,0x1F,0x00,0xA0,0x20,0x00,0x68,0x40,0x00,0x58,0x40,0x00,0x70,0x40,0x00,0xE8,0x20,0x00,0x00,0x1F, // 240
+  0x00,0x00,0x00,0xC0,0x7F,0x00,0x90,0x00,0x00,0x48,0x00,0x00,0x50,0x00,0x00,0x48,0x00,0x00,0x80,0x7F,  // 241
+  0x00,0x00,0x00,0x00,0x1F,0x00,0x80,0x20,0x00,0x48,0x40,0x00,0x50,0x40,0x00,0x40,0x40,0x00,0x80,0x20,0x00,0x00,0x1F, // 242
+  0x00,0x00,0x00,0x00,0x1F,0x00,0x80,0x20,0x00,0x40,0x40,0x00,0x50,0x40,0x00,0x48,0x40,0x00,0x80,0x20,0x00,0x00,0x1F, // 243
+  0x00,0x00,0x00,0x00,0x1F,0x00,0x80,0x20,0x00,0x50,0x40,0x00,0x48,0x40,0x00,0x48,0x40,0x00,0x90,0x20,0x00,0x00,0x1F, // 244
+  0x00,0x00,0x00,0x00,0x1F,0x00,0x80,0x20,0x00,0x50,0x40,0x00,0x48,0x40,0x00,0x50,0x40,0x00,0x88,0x20,0x00,0x00,0x1F, // 245
+  0x00,0x00,0x00,0x00,0x1F,0x00,0x80,0x20,0x00,0x50,0x40,0x00,0x40,0x40,0x00,0x50,0x40,0x00,0x80,0x20,0x00,0x00,0x1F, // 246
+  0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x02,0x00,0x00,0x02,0x00,0x80,0x0A,0x00,0x00,0x02,0x00,0x00,0x02,0x00,0x00,0x02, // 247
+  0x00,0x00,0x00,0x00,0x5F,0x00,0x80,0x30,0x00,0x40,0x48,0x00,0x40,0x44,0x00,0x40,0x42,0x00,0x80,0x21,0x00,0x40,0x1F, // 248
+  0x00,0x00,0x00,0xC0,0x3F,0x00,0x00,0x40,0x00,0x08,0x40,0x00,0x10,0x40,0x00,0x00,0x20,0x00,0xC0,0x7F,  // 249
+  0x00,0x00,0x00,0xC0,0x3F,0x00,0x00,0x40,0x00,0x00,0x40,0x00,0x10,0x40,0x00,0x08,0x20,0x00,0xC0,0x7F,  // 250
+  0x00,0x00,0x00,0xC0,0x3F,0x00,0x10,0x40,0x00,0x08,0x40,0x00,0x08,0x40,0x00,0x10,0x20,0x00,0xC0,0x7F,  // 251
+  0x00,0x00,0x00,0xD0,0x3F,0x00,0x00,0x40,0x00,0x10,0x40,0x00,0x00,0x40,0x00,0x00,0x20,0x00,0xC0,0x7F,  // 252
+  0xC0,0x01,0x00,0x00,0x06,0x02,0x00,0x38,0x02,0x10,0xE0,0x01,0x08,0x38,0x00,0x00,0x07,0x00,0xC0, // 253
+  0x00,0x00,0x00,0xF8,0xFF,0x03,0x80,0x20,0x00,0x40,0x40,0x00,0x40,0x40,0x00,0x40,0x40,0x00,0x80,0x20,0x00,0x00,0x1F, // 254
+  0xC0,0x01,0x00,0x00,0x06,0x02,0x10,0x38,0x02,0x00,0xE0,0x01,0x10,0x38,0x00,0x00,0x07,0x00,0xC0  // 255
 };
 const char ArialMT_Plain_24[] PROGMEM = {
-	0x18, // Width: 24
-	0x1C, // Height: 28
-	0x20, // First Char: 32
-	0xE0, // Numbers of Chars: 224
+  0x18, // Width: 24
+  0x1C, // Height: 28
+  0x20, // First Char: 32
+  0xE0, // Numbers of Chars: 224
 
-	// Char Widths:
-	0x07, // 32: 7
-	0x07, // 33: 7
-	0x09, // 34: 9
-	0x0D, // 35: 13
-	0x0D, // 36: 13
-	0x15, // 37: 21
-	0x10, // 38: 16
-	0x05, // 39: 5
-	0x08, // 40: 8
-	0x08, // 41: 8
-	0x09, // 42: 9
-	0x0E, // 43: 14
-	0x07, // 44: 7
-	0x08, // 45: 8
-	0x07, // 46: 7
-	0x07, // 47: 7
-	0x0D, // 48: 13
-	0x0D, // 49: 13
-	0x0D, // 50: 13
-	0x0D, // 51: 13
-	0x0D, // 52: 13
-	0x0D, // 53: 13
-	0x0D, // 54: 13
-	0x0D, // 55: 13
-	0x0D, // 56: 13
-	0x0D, // 57: 13
-	0x07, // 58: 7
-	0x07, // 59: 7
-	0x0E, // 60: 14
-	0x0E, // 61: 14
-	0x0E, // 62: 14
-	0x0D, // 63: 13
-	0x18, // 64: 24
-	0x10, // 65: 16
-	0x10, // 66: 16
-	0x11, // 67: 17
-	0x11, // 68: 17
-	0x10, // 69: 16
-	0x0F, // 70: 15
-	0x13, // 71: 19
-	0x11, // 72: 17
-	0x07, // 73: 7
-	0x0C, // 74: 12
-	0x10, // 75: 16
-	0x0D, // 76: 13
-	0x14, // 77: 20
-	0x11, // 78: 17
-	0x13, // 79: 19
-	0x10, // 80: 16
-	0x13, // 81: 19
-	0x11, // 82: 17
-	0x10, // 83: 16
-	0x0F, // 84: 15
-	0x11, // 85: 17
-	0x10, // 86: 16
-	0x17, // 87: 23
-	0x10, // 88: 16
-	0x10, // 89: 16
-	0x0F, // 90: 15
-	0x07, // 91: 7
-	0x07, // 92: 7
-	0x07, // 93: 7
-	0x0B, // 94: 11
-	0x0D, // 95: 13
-	0x08, // 96: 8
-	0x0D, // 97: 13
-	0x0D, // 98: 13
-	0x0C, // 99: 12
-	0x0D, // 100: 13
-	0x0D, // 101: 13
-	0x07, // 102: 7
-	0x0D, // 103: 13
-	0x0D, // 104: 13
-	0x05, // 105: 5
-	0x05, // 106: 5
-	0x0C, // 107: 12
-	0x05, // 108: 5
-	0x14, // 109: 20
-	0x0D, // 110: 13
-	0x0D, // 111: 13
-	0x0D, // 112: 13
-	0x0D, // 113: 13
-	0x08, // 114: 8
-	0x0C, // 115: 12
-	0x07, // 116: 7
-	0x0D, // 117: 13
-	0x0C, // 118: 12
-	0x11, // 119: 17
-	0x0C, // 120: 12
-	0x0C, // 121: 12
-	0x0C, // 122: 12
-	0x08, // 123: 8
-	0x06, // 124: 6
-	0x08, // 125: 8
-	0x0E, // 126: 14
-	0x09, // 127: 9
-	0x18, // 128: 24
-	0x18, // 129: 24
-	0x18, // 130: 24
-	0x18, // 131: 24
-	0x18, // 132: 24
-	0x18, // 133: 24
-	0x18, // 134: 24
-	0x18, // 135: 24
-	0x18, // 136: 24
-	0x18, // 137: 24
-	0x18, // 138: 24
-	0x18, // 139: 24
-	0x18, // 140: 24
-	0x18, // 141: 24
-	0x18, // 142: 24
-	0x18, // 143: 24
-	0x18, // 144: 24
-	0x18, // 145: 24
-	0x18, // 146: 24
-	0x18, // 147: 24
-	0x18, // 148: 24
-	0x18, // 149: 24
-	0x18, // 150: 24
-	0x18, // 151: 24
-	0x18, // 152: 24
-	0x18, // 153: 24
-	0x18, // 154: 24
-	0x18, // 155: 24
-	0x18, // 156: 24
-	0x18, // 157: 24
-	0x18, // 158: 24
-	0x18, // 159: 24
-	0x07, // 160: 7
-	0x08, // 161: 8
-	0x0D, // 162: 13
-	0x0D, // 163: 13
-	0x0D, // 164: 13
-	0x0D, // 165: 13
-	0x06, // 166: 6
-	0x0D, // 167: 13
-	0x08, // 168: 8
-	0x12, // 169: 18
-	0x09, // 170: 9
-	0x0D, // 171: 13
-	0x0E, // 172: 14
-	0x08, // 173: 8
-	0x12, // 174: 18
-	0x0D, // 175: 13
-	0x0A, // 176: 10
-	0x0D, // 177: 13
-	0x08, // 178: 8
-	0x08, // 179: 8
-	0x08, // 180: 8
-	0x0E, // 181: 14
-	0x0D, // 182: 13
-	0x08, // 183: 8
-	0x08, // 184: 8
-	0x08, // 185: 8
-	0x09, // 186: 9
-	0x0D, // 187: 13
-	0x14, // 188: 20
-	0x14, // 189: 20
-	0x14, // 190: 20
-	0x0F, // 191: 15
-	0x10, // 192: 16
-	0x10, // 193: 16
-	0x10, // 194: 16
-	0x10, // 195: 16
-	0x10, // 196: 16
-	0x10, // 197: 16
-	0x18, // 198: 24
-	0x11, // 199: 17
-	0x10, // 200: 16
-	0x10, // 201: 16
-	0x10, // 202: 16
-	0x10, // 203: 16
-	0x07, // 204: 7
-	0x07, // 205: 7
-	0x07, // 206: 7
-	0x07, // 207: 7
-	0x11, // 208: 17
-	0x11, // 209: 17
-	0x13, // 210: 19
-	0x13, // 211: 19
-	0x13, // 212: 19
-	0x13, // 213: 19
-	0x13, // 214: 19
-	0x0E, // 215: 14
-	0x13, // 216: 19
-	0x11, // 217: 17
-	0x11, // 218: 17
-	0x11, // 219: 17
-	0x11, // 220: 17
-	0x10, // 221: 16
-	0x10, // 222: 16
-	0x0F, // 223: 15
-	0x0D, // 224: 13
-	0x0D, // 225: 13
-	0x0D, // 226: 13
-	0x0D, // 227: 13
-	0x0D, // 228: 13
-	0x0D, // 229: 13
-	0x15, // 230: 21
-	0x0C, // 231: 12
-	0x0D, // 232: 13
-	0x0D, // 233: 13
-	0x0D, // 234: 13
-	0x0D, // 235: 13
-	0x07, // 236: 7
-	0x07, // 237: 7
-	0x07, // 238: 7
-	0x07, // 239: 7
-	0x0D, // 240: 13
-	0x0D, // 241: 13
-	0x0D, // 242: 13
-	0x0D, // 243: 13
-	0x0D, // 244: 13
-	0x0D, // 245: 13
-	0x0D, // 246: 13
-	0x0D, // 247: 13
-	0x0F, // 248: 15
-	0x0D, // 249: 13
-	0x0D, // 250: 13
-	0x0D, // 251: 13
-	0x0D, // 252: 13
-	0x0C, // 253: 12
-	0x0D, // 254: 13
-	0x0C, // 255: 12
+  // Jump Table:
+  0xFF, 0xFF, 0x00, 0x07,  // 32:65535
+  0x00, 0x00, 0x13, 0x07,  // 33:0
+  0x00, 0x13, 0x1A, 0x09,  // 34:19
+  0x00, 0x2D, 0x33, 0x0D,  // 35:45
+  0x00, 0x60, 0x2F, 0x0D,  // 36:96
+  0x00, 0x8F, 0x4F, 0x15,  // 37:143
+  0x00, 0xDE, 0x3B, 0x10,  // 38:222
+  0x01, 0x19, 0x0A, 0x05,  // 39:281
+  0x01, 0x23, 0x1C, 0x08,  // 40:291
+  0x01, 0x3F, 0x1B, 0x08,  // 41:319
+  0x01, 0x5A, 0x21, 0x09,  // 42:346
+  0x01, 0x7B, 0x32, 0x0E,  // 43:379
+  0x01, 0xAD, 0x10, 0x07,  // 44:429
+  0x01, 0xBD, 0x1B, 0x08,  // 45:445
+  0x01, 0xD8, 0x0F, 0x07,  // 46:472
+  0x01, 0xE7, 0x19, 0x07,  // 47:487
+  0x02, 0x00, 0x2F, 0x0D,  // 48:512
+  0x02, 0x2F, 0x23, 0x0D,  // 49:559
+  0x02, 0x52, 0x2F, 0x0D,  // 50:594
+  0x02, 0x81, 0x2F, 0x0D,  // 51:641
+  0x02, 0xB0, 0x2F, 0x0D,  // 52:688
+  0x02, 0xDF, 0x2F, 0x0D,  // 53:735
+  0x03, 0x0E, 0x2F, 0x0D,  // 54:782
+  0x03, 0x3D, 0x2D, 0x0D,  // 55:829
+  0x03, 0x6A, 0x2F, 0x0D,  // 56:874
+  0x03, 0x99, 0x2F, 0x0D,  // 57:921
+  0x03, 0xC8, 0x0F, 0x07,  // 58:968
+  0x03, 0xD7, 0x10, 0x07,  // 59:983
+  0x03, 0xE7, 0x2F, 0x0E,  // 60:999
+  0x04, 0x16, 0x2F, 0x0E,  // 61:1046
+  0x04, 0x45, 0x2E, 0x0E,  // 62:1093
+  0x04, 0x73, 0x2E, 0x0D,  // 63:1139
+  0x04, 0xA1, 0x5B, 0x18,  // 64:1185
+  0x04, 0xFC, 0x3B, 0x10,  // 65:1276
+  0x05, 0x37, 0x3B, 0x10,  // 66:1335
+  0x05, 0x72, 0x3F, 0x11,  // 67:1394
+  0x05, 0xB1, 0x3F, 0x11,  // 68:1457
+  0x05, 0xF0, 0x3B, 0x10,  // 69:1520
+  0x06, 0x2B, 0x35, 0x0F,  // 70:1579
+  0x06, 0x60, 0x43, 0x13,  // 71:1632
+  0x06, 0xA3, 0x3B, 0x11,  // 72:1699
+  0x06, 0xDE, 0x0F, 0x07,  // 73:1758
+  0x06, 0xED, 0x27, 0x0C,  // 74:1773
+  0x07, 0x14, 0x3F, 0x10,  // 75:1812
+  0x07, 0x53, 0x2F, 0x0D,  // 76:1875
+  0x07, 0x82, 0x43, 0x14,  // 77:1922
+  0x07, 0xC5, 0x3B, 0x11,  // 78:1989
+  0x08, 0x00, 0x47, 0x13,  // 79:2048
+  0x08, 0x47, 0x3A, 0x10,  // 80:2119
+  0x08, 0x81, 0x47, 0x13,  // 81:2177
+  0x08, 0xC8, 0x3F, 0x11,  // 82:2248
+  0x09, 0x07, 0x3B, 0x10,  // 83:2311
+  0x09, 0x42, 0x35, 0x0F,  // 84:2370
+  0x09, 0x77, 0x3B, 0x11,  // 85:2423
+  0x09, 0xB2, 0x39, 0x10,  // 86:2482
+  0x09, 0xEB, 0x59, 0x17,  // 87:2539
+  0x0A, 0x44, 0x3B, 0x10,  // 88:2628
+  0x0A, 0x7F, 0x3D, 0x10,  // 89:2687
+  0x0A, 0xBC, 0x37, 0x0F,  // 90:2748
+  0x0A, 0xF3, 0x14, 0x07,  // 91:2803
+  0x0B, 0x07, 0x1B, 0x07,  // 92:2823
+  0x0B, 0x22, 0x18, 0x07,  // 93:2850
+  0x0B, 0x3A, 0x2A, 0x0B,  // 94:2874
+  0x0B, 0x64, 0x34, 0x0D,  // 95:2916
+  0x0B, 0x98, 0x11, 0x08,  // 96:2968
+  0x0B, 0xA9, 0x2F, 0x0D,  // 97:2985
+  0x0B, 0xD8, 0x33, 0x0D,  // 98:3032
+  0x0C, 0x0B, 0x2B, 0x0C,  // 99:3083
+  0x0C, 0x36, 0x2F, 0x0D,  // 100:3126
+  0x0C, 0x65, 0x2F, 0x0D,  // 101:3173
+  0x0C, 0x94, 0x1A, 0x07,  // 102:3220
+  0x0C, 0xAE, 0x2F, 0x0D,  // 103:3246
+  0x0C, 0xDD, 0x2F, 0x0D,  // 104:3293
+  0x0D, 0x0C, 0x0F, 0x05,  // 105:3340
+  0x0D, 0x1B, 0x10, 0x05,  // 106:3355
+  0x0D, 0x2B, 0x2F, 0x0C,  // 107:3371
+  0x0D, 0x5A, 0x0F, 0x05,  // 108:3418
+  0x0D, 0x69, 0x47, 0x14,  // 109:3433
+  0x0D, 0xB0, 0x2F, 0x0D,  // 110:3504
+  0x0D, 0xDF, 0x2F, 0x0D,  // 111:3551
+  0x0E, 0x0E, 0x33, 0x0D,  // 112:3598
+  0x0E, 0x41, 0x30, 0x0D,  // 113:3649
+  0x0E, 0x71, 0x1E, 0x08,  // 114:3697
+  0x0E, 0x8F, 0x2B, 0x0C,  // 115:3727
+  0x0E, 0xBA, 0x1B, 0x07,  // 116:3770
+  0x0E, 0xD5, 0x2F, 0x0D,  // 117:3797
+  0x0F, 0x04, 0x2A, 0x0C,  // 118:3844
+  0x0F, 0x2E, 0x42, 0x11,  // 119:3886
+  0x0F, 0x70, 0x2B, 0x0C,  // 120:3952
+  0x0F, 0x9B, 0x2A, 0x0C,  // 121:3995
+  0x0F, 0xC5, 0x2B, 0x0C,  // 122:4037
+  0x0F, 0xF0, 0x1C, 0x08,  // 123:4080
+  0x10, 0x0C, 0x10, 0x06,  // 124:4108
+  0x10, 0x1C, 0x1B, 0x08,  // 125:4124
+  0x10, 0x37, 0x32, 0x0E,  // 126:4151
+  0xFF, 0xFF, 0x00, 0x00,  // 127:65535
+  0xFF, 0xFF, 0x00, 0x18,  // 128:65535
+  0xFF, 0xFF, 0x00, 0x18,  // 129:65535
+  0xFF, 0xFF, 0x00, 0x18,  // 130:65535
+  0xFF, 0xFF, 0x00, 0x18,  // 131:65535
+  0xFF, 0xFF, 0x00, 0x18,  // 132:65535
+  0xFF, 0xFF, 0x00, 0x18,  // 133:65535
+  0xFF, 0xFF, 0x00, 0x18,  // 134:65535
+  0xFF, 0xFF, 0x00, 0x18,  // 135:65535
+  0xFF, 0xFF, 0x00, 0x18,  // 136:65535
+  0xFF, 0xFF, 0x00, 0x18,  // 137:65535
+  0xFF, 0xFF, 0x00, 0x18,  // 138:65535
+  0xFF, 0xFF, 0x00, 0x18,  // 139:65535
+  0xFF, 0xFF, 0x00, 0x18,  // 140:65535
+  0xFF, 0xFF, 0x00, 0x18,  // 141:65535
+  0xFF, 0xFF, 0x00, 0x18,  // 142:65535
+  0xFF, 0xFF, 0x00, 0x18,  // 143:65535
+  0xFF, 0xFF, 0x00, 0x18,  // 144:65535
+  0xFF, 0xFF, 0x00, 0x18,  // 145:65535
+  0xFF, 0xFF, 0x00, 0x18,  // 146:65535
+  0xFF, 0xFF, 0x00, 0x18,  // 147:65535
+  0xFF, 0xFF, 0x00, 0x18,  // 148:65535
+  0xFF, 0xFF, 0x00, 0x18,  // 149:65535
+  0xFF, 0xFF, 0x00, 0x18,  // 150:65535
+  0xFF, 0xFF, 0x00, 0x18,  // 151:65535
+  0xFF, 0xFF, 0x00, 0x18,  // 152:65535
+  0xFF, 0xFF, 0x00, 0x18,  // 153:65535
+  0xFF, 0xFF, 0x00, 0x18,  // 154:65535
+  0xFF, 0xFF, 0x00, 0x18,  // 155:65535
+  0xFF, 0xFF, 0x00, 0x18,  // 156:65535
+  0xFF, 0xFF, 0x00, 0x18,  // 157:65535
+  0xFF, 0xFF, 0x00, 0x18,  // 158:65535
+  0xFF, 0xFF, 0x00, 0x18,  // 159:65535
+  0xFF, 0xFF, 0x00, 0x07,  // 160:65535
+  0x10, 0x69, 0x14, 0x08,  // 161:4201
+  0x10, 0x7D, 0x2B, 0x0D,  // 162:4221
+  0x10, 0xA8, 0x2F, 0x0D,  // 163:4264
+  0x10, 0xD7, 0x33, 0x0D,  // 164:4311
+  0x11, 0x0A, 0x31, 0x0D,  // 165:4362
+  0x11, 0x3B, 0x10, 0x06,  // 166:4411
+  0x11, 0x4B, 0x2F, 0x0D,  // 167:4427
+  0x11, 0x7A, 0x19, 0x08,  // 168:4474
+  0x11, 0x93, 0x46, 0x12,  // 169:4499
+  0x11, 0xD9, 0x1A, 0x09,  // 170:4569
+  0x11, 0xF3, 0x27, 0x0D,  // 171:4595
+  0x12, 0x1A, 0x2F, 0x0E,  // 172:4634
+  0x12, 0x49, 0x1B, 0x08,  // 173:4681
+  0x12, 0x64, 0x46, 0x12,  // 174:4708
+  0x12, 0xAA, 0x31, 0x0D,  // 175:4778
+  0x12, 0xDB, 0x1E, 0x0A,  // 176:4827
+  0x12, 0xF9, 0x33, 0x0D,  // 177:4857
+  0x13, 0x2C, 0x1A, 0x08,  // 178:4908
+  0x13, 0x46, 0x1A, 0x08,  // 179:4934
+  0x13, 0x60, 0x19, 0x08,  // 180:4960
+  0x13, 0x79, 0x2F, 0x0E,  // 181:4985
+  0x13, 0xA8, 0x31, 0x0D,  // 182:5032
+  0x13, 0xD9, 0x12, 0x08,  // 183:5081
+  0x13, 0xEB, 0x18, 0x08,  // 184:5099
+  0x14, 0x03, 0x16, 0x08,  // 185:5123
+  0x14, 0x19, 0x1E, 0x09,  // 186:5145
+  0x14, 0x37, 0x2E, 0x0D,  // 187:5175
+  0x14, 0x65, 0x4F, 0x14,  // 188:5221
+  0x14, 0xB4, 0x4B, 0x14,  // 189:5300
+  0x14, 0xFF, 0x4B, 0x14,  // 190:5375
+  0x15, 0x4A, 0x33, 0x0F,  // 191:5450
+  0x15, 0x7D, 0x3B, 0x10,  // 192:5501
+  0x15, 0xB8, 0x3B, 0x10,  // 193:5560
+  0x15, 0xF3, 0x3B, 0x10,  // 194:5619
+  0x16, 0x2E, 0x3B, 0x10,  // 195:5678
+  0x16, 0x69, 0x3B, 0x10,  // 196:5737
+  0x16, 0xA4, 0x3B, 0x10,  // 197:5796
+  0x16, 0xDF, 0x5B, 0x18,  // 198:5855
+  0x17, 0x3A, 0x3F, 0x11,  // 199:5946
+  0x17, 0x79, 0x3B, 0x10,  // 200:6009
+  0x17, 0xB4, 0x3B, 0x10,  // 201:6068
+  0x17, 0xEF, 0x3B, 0x10,  // 202:6127
+  0x18, 0x2A, 0x3B, 0x10,  // 203:6186
+  0x18, 0x65, 0x11, 0x07,  // 204:6245
+  0x18, 0x76, 0x11, 0x07,  // 205:6262
+  0x18, 0x87, 0x15, 0x07,  // 206:6279
+  0x18, 0x9C, 0x15, 0x07,  // 207:6300
+  0x18, 0xB1, 0x3F, 0x11,  // 208:6321
+  0x18, 0xF0, 0x3B, 0x11,  // 209:6384
+  0x19, 0x2B, 0x47, 0x13,  // 210:6443
+  0x19, 0x72, 0x47, 0x13,  // 211:6514
+  0x19, 0xB9, 0x47, 0x13,  // 212:6585
+  0x1A, 0x00, 0x47, 0x13,  // 213:6656
+  0x1A, 0x47, 0x47, 0x13,  // 214:6727
+  0x1A, 0x8E, 0x2B, 0x0E,  // 215:6798
+  0x1A, 0xB9, 0x47, 0x13,  // 216:6841
+  0x1B, 0x00, 0x3B, 0x11,  // 217:6912
+  0x1B, 0x3B, 0x3B, 0x11,  // 218:6971
+  0x1B, 0x76, 0x3B, 0x11,  // 219:7030
+  0x1B, 0xB1, 0x3B, 0x11,  // 220:7089
+  0x1B, 0xEC, 0x3D, 0x10,  // 221:7148
+  0x1C, 0x29, 0x3A, 0x10,  // 222:7209
+  0x1C, 0x63, 0x37, 0x0F,  // 223:7267
+  0x1C, 0x9A, 0x2F, 0x0D,  // 224:7322
+  0x1C, 0xC9, 0x2F, 0x0D,  // 225:7369
+  0x1C, 0xF8, 0x2F, 0x0D,  // 226:7416
+  0x1D, 0x27, 0x2F, 0x0D,  // 227:7463
+  0x1D, 0x56, 0x2F, 0x0D,  // 228:7510
+  0x1D, 0x85, 0x2F, 0x0D,  // 229:7557
+  0x1D, 0xB4, 0x53, 0x15,  // 230:7604
+  0x1E, 0x07, 0x2B, 0x0C,  // 231:7687
+  0x1E, 0x32, 0x2F, 0x0D,  // 232:7730
+  0x1E, 0x61, 0x2F, 0x0D,  // 233:7777
+  0x1E, 0x90, 0x2F, 0x0D,  // 234:7824
+  0x1E, 0xBF, 0x2F, 0x0D,  // 235:7871
+  0x1E, 0xEE, 0x11, 0x07,  // 236:7918
+  0x1E, 0xFF, 0x11, 0x07,  // 237:7935
+  0x1F, 0x10, 0x15, 0x07,  // 238:7952
+  0x1F, 0x25, 0x15, 0x07,  // 239:7973
+  0x1F, 0x3A, 0x2F, 0x0D,  // 240:7994
+  0x1F, 0x69, 0x2F, 0x0D,  // 241:8041
+  0x1F, 0x98, 0x2F, 0x0D,  // 242:8088
+  0x1F, 0xC7, 0x2F, 0x0D,  // 243:8135
+  0x1F, 0xF6, 0x2F, 0x0D,  // 244:8182
+  0x20, 0x25, 0x2F, 0x0D,  // 245:8229
+  0x20, 0x54, 0x2F, 0x0D,  // 246:8276
+  0x20, 0x83, 0x32, 0x0D,  // 247:8323
+  0x20, 0xB5, 0x33, 0x0F,  // 248:8373
+  0x20, 0xE8, 0x2F, 0x0D,  // 249:8424
+  0x21, 0x17, 0x2F, 0x0D,  // 250:8471
+  0x21, 0x46, 0x2F, 0x0D,  // 251:8518
+  0x21, 0x75, 0x2F, 0x0D,  // 252:8565
+  0x21, 0xA4, 0x2A, 0x0C,  // 253:8612
+  0x21, 0xCE, 0x2F, 0x0D,  // 254:8654
+  0x21, 0xFD, 0x2A, 0x0C,  // 255:8701
 
-	// Font Data:
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 32
-	0x00,0x00,0x00,0x00,0xC0,0x60,0x30,0x18,0x0C,0x06,0x83,0xC1,0x60,0x30,0x18,0x0C,0x00,0x80,0xC1,0x00,0x00,0x00,0x00,0x00,0x00, // 33
-	0x00,0x00,0x00,0x00,0x00,0xC0,0x8C,0x19,0x33,0x66,0xCC,0x98,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 34
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xC0,0x18,0x18,0x83,0x31,0x30,0x06,0xC6,0xFC,0xFF,0xFF,0x8F,0x31,0x30,0x06,0xC6,0xC0,0x18,0xFF,0xFF,0xFF,0x33,0x06,0xC6,0x60,0x0C,0x8C,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 35
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xE0,0x03,0xFF,0x71,0x32,0x46,0xCC,0x08,0x18,0x01,0x2E,0x80,0x0F,0xC0,0x07,0xD0,0x01,0x62,0x40,0xCC,0x88,0x39,0x31,0xAE,0xC3,0x7F,0xE0,0x03,0x10,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 36
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xF0,0x80,0x01,0x33,0x18,0x30,0x0C,0x03,0x86,0x31,0xC0,0x30,0x06,0x18,0x66,0x00,0xC3,0x0C,0xC0,0xCC,0x00,0xF0,0x98,0x07,0x80,0x99,0x01,0xB8,0x61,0x00,0x33,0x0C,0x70,0x86,0x01,0xC6,0x30,0xE0,0x18,0x06,0x0C,0x66,0xC0,0x80,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 37
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE0,0x01,0xF0,0x03,0x38,0x07,0x18,0x06,0x18,0x06,0x30,0x03,0xE0,0x03,0xF0,0x00,0xF8,0x01,0x9C,0x31,0x0E,0x33,0x06,0x1E,0x06,0x1E,0x0E,0x1C,0x1C,0x3F,0xF8,0x77,0xF0,0x21,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 38
-	0x00,0x00,0x00,0x8C,0x31,0xC6,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 39
-	0x00,0x00,0x00,0x00,0x00,0x60,0x30,0x18,0x18,0x0C,0x0C,0x0C,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x0C,0x0C,0x0C,0x18,0x18,0x30,0x60,0x00,0x00, // 40
-	0x00,0x00,0x00,0x00,0x00,0x06,0x0C,0x18,0x18,0x30,0x30,0x30,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x30,0x30,0x30,0x18,0x18,0x0C,0x06,0x00,0x00, // 41
-	0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x0C,0xFF,0x78,0xF0,0x30,0x43,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 42
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xC0,0x00,0x30,0x00,0x0C,0x00,0x03,0xC0,0x80,0xFF,0xE7,0xFF,0x01,0x03,0xC0,0x00,0x30,0x00,0x0C,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 43
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xC0,0x60,0x20,0x10,0x0C,0x02,0x00,0x00, // 44
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7F,0x7F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 45
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xC0,0x60,0x00,0x00,0x00,0x00,0x00,0x00, // 46
-	0x00,0x00,0x00,0x00,0x00,0x83,0x61,0x30,0x18,0x06,0x83,0xE1,0x30,0x18,0x0C,0x83,0xC1,0x30,0x18,0x00,0x00,0x00,0x00,0x00,0x00, // 47
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE0,0x03,0xFE,0xE0,0x38,0x0C,0xC6,0x80,0x19,0x30,0x03,0x66,0xC0,0x0C,0x98,0x01,0x33,0x60,0x06,0xCC,0x80,0x31,0x18,0x8E,0x83,0x3F,0xE0,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 48
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x60,0x00,0x0E,0xF0,0x01,0x37,0x60,0x06,0xC0,0x00,0x18,0x00,0x03,0x60,0x00,0x0C,0x80,0x01,0x30,0x00,0x06,0xC0,0x00,0x18,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 49
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE0,0x03,0xFF,0x61,0x30,0x06,0xCC,0x80,0x01,0x30,0x00,0x06,0x60,0x00,0x06,0x60,0x00,0x06,0x60,0x00,0x06,0x60,0x00,0x06,0xE0,0xFF,0xFC,0x1F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 50
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE0,0x01,0xFF,0x60,0x38,0x06,0x06,0xC0,0x00,0x18,0x80,0x01,0x1E,0xC0,0x07,0x80,0x01,0x60,0x00,0xCC,0x80,0x39,0x30,0x06,0x83,0x3F,0xE0,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 51
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0xE0,0x00,0x1E,0xC0,0x03,0x6C,0xC0,0x0D,0x98,0x81,0x31,0x30,0x06,0xC3,0x70,0x18,0xFE,0xCF,0xFF,0x01,0x0C,0x80,0x01,0x30,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 52
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xF0,0x0F,0xFE,0x61,0x00,0x0C,0x80,0x01,0xB0,0x07,0xFE,0xE1,0x60,0x0C,0x18,0x00,0x03,0x60,0x00,0xCC,0x80,0x19,0x18,0x06,0x83,0x3F,0xE0,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 53
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xC0,0x07,0xFE,0xE1,0x70,0x0C,0x8C,0x01,0x18,0x00,0xF3,0x60,0x7F,0x3C,0x8C,0x03,0x33,0x60,0x06,0xCC,0x80,0x31,0x30,0x0E,0x83,0x3F,0xE0,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 54
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFC,0x9F,0xFF,0x03,0x20,0x00,0x06,0x60,0x00,0x04,0xC0,0x00,0x08,0x80,0x01,0x30,0x00,0x03,0x60,0x00,0x0C,0xC0,0x00,0x18,0x00,0x03,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 55
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE0,0x03,0xFE,0xE0,0x38,0x0C,0x86,0xC1,0x30,0x18,0x8C,0x01,0x1F,0xF0,0x07,0x83,0x31,0x60,0x06,0xCC,0x80,0x19,0x30,0x06,0xC3,0x7F,0xE0,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 56
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE0,0x03,0xFE,0x60,0x30,0x0E,0xC6,0x80,0x19,0x30,0x03,0x66,0xE0,0x18,0x1E,0x7F,0x83,0x67,0x00,0x0C,0xC0,0x18,0x18,0x87,0xC3,0x3F,0xF0,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 57
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xC0,0x60,0x00,0x00,0x00,0x00,0x00,0x00, // 58
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xC0,0x60,0x20,0x10,0x0C,0x02,0x00,0x00, // 59
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x80,0x03,0x7C,0xC0,0x03,0x3C,0x80,0x01,0xC0,0x03,0xC0,0x03,0xC0,0x07,0x80,0x03,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 60
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE0,0xFF,0xF8,0x3F,0x00,0x00,0x00,0x00,0x00,0xF8,0x3F,0xFE,0x0F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 61
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x80,0x03,0xC0,0x07,0x80,0x07,0x80,0x07,0x00,0x03,0x78,0x80,0x07,0x7C,0x80,0x03,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 62
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE0,0x03,0xFE,0xE1,0x30,0x0E,0xCC,0x80,0x01,0x30,0x00,0x03,0x70,0x00,0x07,0x30,0x00,0x07,0x60,0x00,0x0C,0x00,0x00,0x00,0x00,0x06,0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 63
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFE,0x00,0xC0,0xFF,0x03,0xE0,0x81,0x07,0x70,0x00,0x0E,0x38,0x9E,0x1D,0x18,0xBF,0x19,0x8C,0xE3,0x31,0xCC,0xC0,0x30,0xC6,0xC0,0x30,0x66,0xC0,0x30,0x66,0xC0,0x30,0x66,0xC0,0x38,0x66,0x60,0x18,0x66,0x70,0x1C,0xC6,0x78,0x0E,0xCC,0xEF,0x07,0x0C,0xC7,0x01,0x18,0x00,0x60,0x78,0x00,0x38,0xF0,0x01,0x1E,0xC0,0xFF,0x07,0x00,0xFE,0x01,0x00,0x00,0x00,0x00, // 64
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xC0,0x01,0xC0,0x01,0x60,0x03,0x60,0x03,0x70,0x07,0x30,0x06,0x30,0x06,0x18,0x0C,0x18,0x0C,0x18,0x0C,0xFC,0x1F,0xFC,0x1F,0x0E,0x38,0x06,0x30,0x06,0x30,0x03,0x60,0x03,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 65
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFC,0x07,0xFC,0x1F,0x0C,0x38,0x0C,0x30,0x0C,0x30,0x0C,0x30,0x0C,0x18,0xFC,0x1F,0xFC,0x1F,0x0C,0x38,0x0C,0x70,0x0C,0x60,0x0C,0x60,0x0C,0x60,0x0C,0x30,0xFC,0x3F,0xFC,0x0F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 66
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xF8,0x01,0xFC,0x0F,0x1C,0x38,0x1C,0x60,0x18,0x80,0x39,0x00,0x30,0x00,0x60,0x00,0xC0,0x00,0x80,0x01,0x00,0x03,0x00,0x0E,0xC0,0x18,0x80,0x71,0x80,0xC1,0x81,0x03,0xFF,0x03,0xF8,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 67
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0xFF,0x01,0xFF,0x07,0x06,0x1C,0x0C,0x70,0x18,0xC0,0x30,0x00,0x63,0x00,0xC6,0x00,0x8C,0x01,0x18,0x03,0x30,0x06,0x60,0x0C,0xC0,0x18,0xC0,0x30,0xC0,0x61,0xC0,0xC1,0xFF,0x81,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 68
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFC,0x7F,0xFC,0x7F,0x0C,0x00,0x0C,0x00,0x0C,0x00,0x0C,0x00,0x0C,0x00,0xFC,0x3F,0xFC,0x3F,0x0C,0x00,0x0C,0x00,0x0C,0x00,0x0C,0x00,0x0C,0x00,0x0C,0x00,0xFC,0x7F,0xFC,0x7F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 69
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE0,0xFF,0xF1,0xFF,0x18,0x00,0x0C,0x00,0x06,0x00,0x03,0x80,0x01,0xC0,0xFF,0xE1,0xFF,0x30,0x00,0x18,0x00,0x0C,0x00,0x06,0x00,0x03,0x80,0x01,0xC0,0x00,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 70
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE0,0x0F,0xC0,0xFF,0x01,0x0F,0x1E,0x1C,0xC0,0x60,0x00,0x8C,0x03,0x00,0x0C,0x00,0x60,0x00,0x00,0x03,0xFE,0x18,0xF0,0xC7,0x00,0x30,0x0E,0x80,0x61,0x00,0x0C,0x07,0x60,0xF0,0xE0,0x03,0xFF,0x07,0xC0,0x0F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 71
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x01,0x0C,0x03,0x18,0x06,0x30,0x0C,0x60,0x18,0xC0,0x30,0x80,0x61,0x00,0xC3,0xFF,0x87,0xFF,0x0F,0x03,0x18,0x06,0x30,0x0C,0x60,0x18,0xC0,0x30,0x80,0x61,0x00,0xC3,0x00,0x86,0x01,0x0C,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 72
-	0x00,0x00,0x00,0x00,0x60,0x30,0x18,0x0C,0x06,0x83,0xC1,0x60,0x30,0x18,0x0C,0x06,0x83,0xC1,0x60,0x00,0x00,0x00,0x00,0x00,0x00, // 73
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x00,0x03,0x30,0x00,0x03,0x30,0x00,0x03,0x30,0x00,0x03,0x30,0x00,0x03,0x30,0x00,0x63,0x30,0x06,0xE3,0x38,0xFC,0x81,0x0F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 74
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0C,0x70,0x0C,0x38,0x0C,0x1C,0x0C,0x0E,0x0C,0x07,0x8C,0x03,0xCC,0x01,0xEC,0x01,0xFC,0x03,0xBC,0x03,0x1C,0x07,0x0C,0x0E,0x0C,0x1C,0x0C,0x1C,0x0C,0x38,0x0C,0x70,0x0C,0xE0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 75
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x00,0x03,0x60,0x00,0x0C,0x80,0x01,0x30,0x00,0x06,0xC0,0x00,0x18,0x00,0x03,0x60,0x00,0x0C,0x80,0x01,0x30,0x00,0x06,0xC0,0xFF,0xF8,0x1F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 76
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xC0,0x01,0x1C,0x3C,0xE0,0xC1,0x03,0x1E,0x3C,0xE0,0xC1,0x06,0x1B,0x6C,0xB0,0xC1,0x06,0x1B,0x4C,0x90,0xC1,0x8C,0x19,0xCC,0x98,0xC1,0x8C,0x19,0x8C,0x8D,0xC1,0xD8,0x18,0x8C,0x8D,0xC1,0x50,0x18,0x0C,0x87,0xC1,0x70,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 77
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x01,0x0C,0x07,0x18,0x1E,0x30,0x3C,0x60,0xD8,0xC0,0x30,0x83,0x61,0x06,0xC3,0x18,0x86,0x71,0x0C,0xC3,0x18,0x06,0x33,0x0C,0x6E,0x18,0xD8,0x30,0xE0,0x61,0xC0,0xC3,0x00,0x87,0x01,0x0C,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 78
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE0,0x0F,0xC0,0xFF,0x01,0x0F,0x1E,0x1C,0xC0,0x61,0x00,0x8C,0x03,0xE0,0x0C,0x00,0x66,0x00,0x30,0x03,0x80,0x19,0x00,0xCC,0x00,0x60,0x0E,0x80,0x63,0x00,0x0C,0x07,0x70,0xF0,0xE0,0x01,0xFF,0x07,0xE0,0x0F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 79
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFC,0x0F,0xFC,0x3F,0x0C,0x30,0x0C,0x60,0x0C,0x60,0x0C,0x60,0x0C,0x60,0x0C,0x30,0xFC,0x3F,0xFC,0x0F,0x0C,0x00,0x0C,0x00,0x0C,0x00,0x0C,0x00,0x0C,0x00,0x0C,0x00,0x0C,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 80
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE0,0x0F,0xC0,0xFF,0x01,0x0F,0x1E,0x1C,0xC0,0x61,0x00,0x8C,0x03,0xE0,0x0C,0x00,0x66,0x00,0x30,0x03,0x80,0x19,0x00,0xCC,0x00,0x60,0x0E,0x80,0x63,0x60,0x0C,0x07,0x7F,0xF0,0xE0,0x01,0xFE,0x1F,0xC0,0xCF,0x01,0x00,0x0C,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 81
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0xFF,0x03,0xFF,0x0F,0x06,0x38,0x0C,0x60,0x18,0xC0,0x30,0x80,0x61,0x80,0xC3,0xFF,0x83,0xFF,0x01,0xC3,0x01,0x06,0x07,0x0C,0x1C,0x18,0x38,0x30,0xE0,0x60,0x80,0xC1,0x00,0x87,0x01,0x1C,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 82
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE0,0x07,0xF8,0x1F,0x18,0x38,0x0C,0x70,0x0C,0x60,0x0C,0x00,0x38,0x00,0xF8,0x07,0xE0,0x1F,0x00,0x3C,0x00,0x70,0x06,0x60,0x06,0x60,0x0C,0x60,0x3C,0x38,0xF8,0x1F,0xE0,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 83
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xF8,0xFF,0xFD,0xFF,0x80,0x01,0xC0,0x00,0x60,0x00,0x30,0x00,0x18,0x00,0x0C,0x00,0x06,0x00,0x03,0x80,0x01,0xC0,0x00,0x60,0x00,0x30,0x00,0x18,0x00,0x0C,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 84
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x01,0x0C,0x03,0x18,0x06,0x30,0x0C,0x60,0x18,0xC0,0x30,0x80,0x61,0x00,0xC3,0x00,0x86,0x01,0x0C,0x03,0x18,0x06,0x30,0x0C,0x60,0x18,0xC0,0x60,0xC0,0xC0,0xC1,0x01,0xFF,0x01,0xFC,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 85
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x60,0x06,0x30,0x06,0x30,0x06,0x30,0x0C,0x18,0x0C,0x18,0x1C,0x1C,0x18,0x0C,0x18,0x0C,0x30,0x06,0x30,0x06,0x30,0x06,0x60,0x03,0x60,0x03,0xE0,0x03,0xC0,0x01,0xC0,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 86
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0xE0,0x00,0x0F,0x70,0x80,0x0D,0x6C,0x60,0x06,0x36,0x30,0x03,0x1B,0x98,0xC1,0x18,0x8C,0x61,0x0C,0xC3,0x30,0x86,0x61,0x0C,0xC6,0x30,0x06,0x63,0x38,0x83,0x39,0xD8,0xC1,0x0D,0x6C,0xC0,0x06,0x36,0x60,0x03,0x1B,0xB0,0x01,0x07,0x70,0x80,0x03,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 87
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0E,0x38,0x1C,0x1C,0x18,0x0C,0x38,0x0E,0x70,0x07,0x60,0x03,0xE0,0x03,0xC0,0x01,0xC0,0x01,0x60,0x03,0x70,0x03,0x70,0x07,0x38,0x0E,0x1C,0x1C,0x0C,0x18,0x0E,0x38,0x07,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 88
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0xE0,0x06,0x70,0x0C,0x30,0x1C,0x38,0x38,0x1C,0x70,0x0E,0x60,0x06,0xE0,0x07,0xC0,0x03,0x80,0x01,0x80,0x01,0x80,0x01,0x80,0x01,0x80,0x01,0x80,0x01,0x80,0x01,0x80,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 89
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xF0,0xFF,0xF9,0xFF,0x00,0x30,0x00,0x0C,0x00,0x03,0xC0,0x01,0x70,0x00,0x18,0x00,0x06,0x80,0x01,0xE0,0x00,0x38,0x00,0x0C,0x00,0x03,0xC0,0x00,0xF0,0xFF,0xFB,0xFF,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 90
-	0x00,0x00,0x00,0x00,0xF0,0x78,0x0C,0x06,0x83,0xC1,0x60,0x30,0x18,0x0C,0x06,0x83,0xC1,0x60,0x30,0x18,0x0C,0x06,0x8F,0x07,0x00, // 91
-	0x00,0x00,0x00,0x00,0x18,0x0C,0x0C,0x06,0x03,0x83,0xC1,0xE0,0x60,0x30,0x18,0x18,0x0C,0x06,0x06,0x03,0x00,0x00,0x00,0x00,0x00, // 92
-	0x00,0x00,0x00,0x00,0xE0,0xF1,0x60,0x30,0x18,0x0C,0x06,0x83,0xC1,0x60,0x30,0x18,0x0C,0x06,0x83,0xC1,0x60,0x30,0x1E,0x0F,0x00, // 93
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0xC0,0x03,0x1E,0x98,0xC1,0x0C,0x66,0x18,0xC6,0x30,0x03,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 94
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE0,0xFF,0xFF,0x7F,0x00,0x00, // 95
-	0x00,0x00,0x00,0x00,0x00,0x0E,0x0C,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 96
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3E,0xF0,0x0F,0x87,0x63,0x60,0x00,0x0C,0xF0,0xC1,0x3F,0x3C,0xC6,0xC0,0x18,0x1C,0xC7,0xC3,0x6F,0xF0,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 97
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x00,0x03,0x60,0x00,0x0C,0x80,0x79,0xB0,0x1F,0x1E,0xC7,0xC1,0x18,0x30,0x03,0x66,0xC0,0x0C,0x98,0x01,0x73,0x30,0x1E,0xC7,0x7E,0x98,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 98
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1F,0xF8,0xC3,0x71,0x0E,0x66,0x00,0x06,0x60,0x00,0x06,0x60,0x00,0x0E,0xC6,0x71,0xF8,0x03,0x1F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 99
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x00,0x03,0x60,0x00,0x0C,0x9E,0xE1,0x37,0x8E,0xC7,0xE0,0x0C,0x98,0x01,0x33,0x60,0x06,0xCC,0x80,0x31,0x38,0x8E,0x87,0xDF,0xE0,0x19,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 100
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3E,0xE0,0x0F,0x8E,0xC3,0xE0,0x0C,0x98,0xFF,0xF3,0x7F,0x06,0xC0,0x00,0x38,0x30,0x8E,0x83,0x3F,0xE0,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 101
-	0x00,0x00,0x00,0x00,0xC0,0xF3,0x19,0x8C,0xFF,0x9F,0xC1,0x60,0x30,0x18,0x0C,0x06,0x83,0xC1,0x60,0x00,0x00,0x00,0x00,0x00,0x00, // 102
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0xE1,0x37,0x8E,0xC7,0xE0,0x0C,0x98,0x01,0x33,0x60,0x06,0xCC,0x80,0x31,0x38,0x8E,0x87,0xDF,0xE0,0x19,0x00,0x33,0x70,0x0E,0x87,0x7F,0xE0,0x07,0x00,0x00, // 103
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x00,0x03,0x60,0x00,0x0C,0x80,0x79,0xB0,0x1F,0x1E,0xC7,0xC1,0x18,0x18,0x03,0x63,0x60,0x0C,0x8C,0x81,0x31,0x30,0x06,0xC6,0xC0,0x18,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 104
-	0x00,0x00,0x00,0x18,0x03,0x80,0x31,0xC6,0x18,0x63,0x8C,0x31,0xC6,0x18,0x00,0x00,0x00,0x00, // 105
-	0x00,0x00,0x00,0x18,0x03,0x80,0x31,0xC6,0x18,0x63,0x8C,0x31,0xC6,0x18,0x63,0xEC,0x1D,0x00, // 106
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xC0,0x00,0x0C,0xC0,0x00,0x0C,0xC0,0x60,0x0C,0xC3,0x18,0xCC,0xC0,0x06,0x7C,0xC0,0x0F,0xCC,0xC0,0x18,0x8C,0xC3,0x30,0x0C,0xC6,0xE0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 107
-	0x00,0x00,0x00,0x18,0x63,0x8C,0x31,0xC6,0x18,0x63,0x8C,0x31,0xC6,0x18,0x00,0x00,0x00,0x00, // 108
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xC0,0x1C,0x0E,0xFC,0xFB,0xC1,0xF1,0x38,0x0C,0x06,0xC3,0x60,0x30,0x0C,0x06,0xC3,0x60,0x30,0x0C,0x06,0xC3,0x60,0x30,0x0C,0x06,0xC3,0x60,0x30,0x0C,0x06,0xC3,0x60,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 109
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x79,0xB0,0x1F,0x1E,0xC7,0xC1,0x18,0x18,0x03,0x63,0x60,0x0C,0x8C,0x81,0x31,0x30,0x06,0xC6,0xC0,0x18,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 110
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3E,0xE0,0x0F,0x8E,0xE3,0xE0,0x0C,0x98,0x01,0x33,0x60,0x06,0xCC,0x80,0x39,0x38,0x8E,0x83,0x3F,0xE0,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 111
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x79,0xB0,0x1F,0x1E,0xC7,0xC1,0x18,0x30,0x03,0x66,0xC0,0x0C,0x98,0x01,0x73,0x30,0x1E,0xC7,0x7E,0x98,0x07,0x03,0x60,0x00,0x0C,0x80,0x01,0x30,0x00,0x00,0x00, // 112
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0xE1,0x37,0x8E,0xC7,0xE0,0x0C,0x98,0x01,0x33,0x60,0x06,0xCC,0x80,0x31,0x38,0x8E,0x87,0xDF,0xE0,0x19,0x00,0x03,0x60,0x00,0x0C,0x80,0x01,0x30,0x00,0x00, // 113
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xEC,0xFC,0x1C,0x0C,0x0C,0x0C,0x0C,0x0C,0x0C,0x0C,0x0C,0x0C,0x0C,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 114
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x1F,0xFC,0xE3,0x70,0x06,0xE6,0x00,0xFC,0x80,0x3F,0xC0,0x07,0x60,0x06,0xE6,0x70,0xFC,0x83,0x1F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 115
-	0x00,0x00,0x00,0x00,0x40,0x30,0x18,0x8C,0xFF,0x9F,0xC1,0x60,0x30,0x18,0x0C,0x06,0x83,0xC1,0xC7,0x03,0x00,0x00,0x00,0x00,0x00, // 116
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x81,0x31,0x30,0x06,0xC6,0xC0,0x18,0x18,0x03,0x63,0x60,0x0C,0x8C,0x81,0x31,0x38,0x8E,0x87,0xDF,0xE0,0x19,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 117
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x60,0x03,0x66,0x30,0x06,0x63,0x30,0x8C,0xC1,0x18,0xD8,0x80,0x0D,0xD8,0x00,0x07,0x70,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 118
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x02,0x0F,0x0E,0x1E,0x1C,0x6C,0x28,0xCC,0xD8,0x98,0xB1,0x31,0x36,0x36,0x6C,0x6C,0xD8,0xD8,0xA0,0xA0,0xC0,0xC1,0x81,0x83,0x03,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 119
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0x60,0x06,0xC3,0x38,0x9C,0x81,0x0D,0x70,0x00,0x07,0x70,0x80,0x0D,0xDC,0xC1,0x18,0x06,0x73,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 120
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x60,0x06,0x66,0x30,0x0C,0xC3,0x30,0x8C,0x81,0x19,0x98,0x01,0x1B,0xF0,0x00,0x0F,0xE0,0x00,0x06,0x60,0x00,0x06,0x30,0xC0,0x03,0x1C,0x00,0x00,0x00, // 121
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xC0,0x7F,0xFC,0x07,0x30,0x80,0x03,0x1C,0xE0,0x00,0x06,0x30,0x80,0x03,0x1C,0xC0,0x00,0xFE,0xE7,0x7F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 122
-	0x00,0x00,0x00,0x00,0x00,0x70,0x78,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x0C,0x06,0x06,0x0C,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x78,0x70,0x00,0x00, // 123
-	0x00,0x00,0x00,0x00,0xC3,0x30,0x0C,0xC3,0x30,0x0C,0xC3,0x30,0x0C,0xC3,0x30,0x0C,0xC3,0x30,0x0C,0xC3,0x30,0x00, // 124
-	0x00,0x00,0x00,0x00,0x00,0x0E,0x1E,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x30,0x60,0x70,0x30,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x1E,0x0E,0x00,0x00, // 125
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3C,0x80,0x3F,0x66,0xFC,0x01,0x3C,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 126
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 127
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 128
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 129
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 130
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 131
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 132
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 133
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 134
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 135
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 136
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 137
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 138
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 139
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 140
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 141
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 142
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 143
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 144
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 145
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 146
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 147
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 148
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 149
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 150
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 151
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 152
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 153
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 154
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 155
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 156
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 157
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 158
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 159
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 160
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x18,0x00,0x00,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x00,0x00, // 161
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x40,0x00,0x08,0x00,0x01,0x1E,0xE0,0x0F,0xCE,0xC1,0x64,0x8C,0x80,0x11,0x30,0x02,0x26,0xC0,0xC4,0xB8,0x1C,0x9E,0x81,0x1F,0xE0,0x01,0x04,0x40,0x00,0x08,0x00,0x01,0x20,0x00,0x00,0x00, // 162
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE0,0x03,0xFE,0xC0,0x38,0x0C,0x86,0x01,0x30,0x00,0x06,0xC0,0x00,0xFE,0xC1,0x3F,0xC0,0x00,0x18,0x00,0x01,0x30,0x00,0x3F,0xF2,0xFF,0x04,0x0F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 163
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xC8,0xBD,0xF3,0x3F,0x0C,0xC3,0xC0,0x18,0x18,0x03,0x63,0x60,0x18,0x86,0xFF,0xB9,0x77,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 164
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0xF0,0x00,0x3B,0x70,0x06,0x86,0x61,0x70,0x0E,0xCC,0x80,0x1F,0xFE,0xDF,0xFF,0x03,0x03,0x60,0xE0,0xFF,0xFD,0x3F,0x30,0x00,0x06,0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 165
-	0x00,0x00,0x00,0x00,0xC3,0x30,0x0C,0xC3,0x30,0x0C,0xC3,0x00,0x00,0x00,0x30,0x0C,0xC3,0x30,0x0C,0xC3,0x30,0x00, // 166
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE0,0x03,0xFE,0xE0,0x38,0x0C,0x86,0x01,0xE0,0x00,0x3C,0xC0,0x1E,0x0C,0x87,0xC1,0x31,0x70,0x1C,0x0C,0x87,0xC1,0x1B,0xE0,0x00,0x38,0x00,0x0E,0x83,0x61,0x30,0x18,0x07,0x7F,0x80,0x07,0x00,0x00, // 167
-	0x00,0x00,0x00,0x00,0x00,0x66,0x66,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 168
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3F,0x00,0xFF,0x03,0x0E,0x1C,0x9C,0xEF,0x98,0x7F,0x66,0x86,0xDB,0x0C,0xC0,0x33,0x00,0xCF,0x00,0x3C,0x03,0xF0,0x18,0xCE,0xE6,0x9F,0x19,0x3E,0xC6,0x01,0x0E,0x0E,0x1C,0xF0,0x3F,0x00,0x3F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 169
-	0x00,0x00,0x00,0x00,0x00,0x80,0x87,0x1F,0x33,0x60,0xF8,0x98,0x31,0xE3,0x87,0x0F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 170
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xC0,0x0C,0xCC,0x80,0x19,0x98,0x01,0x33,0x30,0x03,0xCC,0x80,0x19,0x60,0x06,0xCC,0x00,0x33,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 171
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE0,0xFF,0xF8,0x3F,0x00,0x0C,0x00,0x03,0xC0,0x00,0x30,0x00,0x0C,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 172
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7F,0x7F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 173
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3F,0x00,0xFF,0x03,0x0E,0x1C,0x1C,0xE0,0x98,0x1F,0x66,0xFE,0xD8,0x18,0xC3,0x63,0x0C,0x8F,0x3F,0x3C,0x7E,0xF0,0x98,0xC1,0x66,0x8C,0x99,0x61,0xC6,0x01,0x0E,0x0E,0x1C,0xF0,0x3F,0x00,0x3F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 174
-	0x00,0x00,0x00,0xFC,0xFF,0xFF,0x0F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 175
-	0x00,0x00,0x00,0x00,0x00,0x00,0xE0,0x40,0x84,0x20,0x82,0x08,0x42,0x04,0x0E,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 176
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xC0,0x00,0x18,0x00,0x03,0x60,0x00,0x0C,0xFC,0xBF,0xFF,0x07,0x06,0xC0,0x00,0x18,0x00,0x03,0x60,0xE0,0xFF,0xFD,0x3F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 177
-	0x00,0x00,0x00,0x00,0x00,0x3E,0x63,0x60,0x60,0x30,0x18,0x0C,0x06,0x7F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 178
-	0x00,0x00,0x00,0x00,0x00,0x3E,0x63,0x60,0x60,0x18,0x60,0x60,0x63,0x3E,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 179
-	0x00,0x00,0x00,0x00,0x00,0x70,0x30,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 180
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0xC3,0xC0,0x30,0x30,0x0C,0x0C,0x03,0xC3,0xC0,0x30,0x30,0x0C,0x0C,0x03,0xC3,0xE1,0x70,0x38,0xFC,0x0F,0x7B,0xC3,0x00,0x30,0x00,0x0C,0x00,0x03,0xC0,0x00,0x00,0x00,0x00, // 181
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xF0,0xBF,0xFF,0xF7,0x33,0x7F,0xE6,0xCF,0xFC,0x99,0x3F,0xE3,0x67,0xFC,0x0C,0x9E,0x01,0x33,0x60,0x06,0xCC,0x80,0x19,0x30,0x03,0x66,0xC0,0x0C,0x98,0x01,0x33,0x60,0x06,0xCC,0x80,0x19,0x00,0x00, // 182
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 183
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x18,0x30,0x1E,0x00,0x00,0x00, // 184
-	0x00,0x00,0x00,0x00,0x00,0x30,0x3C,0x3E,0x32,0x30,0x30,0x30,0x30,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 185
-	0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x1F,0x77,0xC6,0x8C,0x19,0x73,0xC7,0x07,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 186
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x06,0x98,0x01,0x33,0xC0,0x0C,0x98,0x01,0x66,0x60,0x06,0xCC,0xC0,0x0C,0x98,0x81,0x19,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 187
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x18,0x3C,0xC0,0xE1,0x03,0x0C,0x32,0x60,0x00,0x03,0x03,0x30,0x38,0x00,0xC3,0x01,0x30,0x0C,0x00,0x63,0x60,0x00,0x03,0x07,0x38,0x78,0x80,0x81,0x06,0x0C,0x6C,0x60,0x60,0x06,0x07,0xFE,0x30,0x00,0x86,0x01,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 188
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x18,0x3C,0xC0,0xE1,0x03,0x0C,0x32,0x60,0x00,0x03,0x03,0x30,0x38,0x00,0x83,0x01,0x30,0x0C,0x00,0x63,0x3E,0x00,0x37,0x06,0x30,0x60,0x80,0x01,0x06,0x0C,0x30,0xE0,0x80,0x03,0x06,0x0C,0x30,0x60,0x80,0x01,0x7F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 189
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE0,0x03,0x38,0x63,0x80,0x01,0x06,0x0C,0x60,0x60,0x80,0x01,0x07,0x60,0x30,0x00,0x86,0x01,0x63,0x0C,0xE0,0xE3,0x30,0x00,0x86,0x03,0x30,0x3C,0x80,0x41,0x03,0x1C,0x36,0xC0,0x30,0x03,0x06,0x7F,0x30,0x00,0x83,0x03,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 190
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x30,0x00,0x00,0x00,0x00,0x00,0x06,0x00,0x03,0x80,0x01,0xE0,0x00,0x38,0x00,0x0C,0x00,0x03,0xC0,0x01,0x60,0x00,0x30,0x60,0x18,0x38,0x38,0x0E,0xFC,0x03,0xF8,0x00,0x00,0x00, // 191
-	0x00,0x00,0xE0,0x00,0xC0,0x00,0x80,0x01,0x00,0x00,0xC0,0x01,0xC0,0x01,0x60,0x03,0x60,0x03,0x70,0x07,0x30,0x06,0x30,0x06,0x18,0x0C,0x18,0x0C,0x18,0x0C,0xFC,0x1F,0xFC,0x1F,0x0E,0x38,0x06,0x30,0x06,0x30,0x03,0x60,0x03,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 192
-	0x00,0x00,0x80,0x03,0x80,0x01,0xC0,0x00,0x00,0x00,0xC0,0x01,0xC0,0x01,0x60,0x03,0x60,0x03,0x70,0x07,0x30,0x06,0x30,0x06,0x18,0x0C,0x18,0x0C,0x18,0x0C,0xFC,0x1F,0xFC,0x1F,0x0E,0x38,0x06,0x30,0x06,0x30,0x03,0x60,0x03,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 193
-	0x00,0x00,0x80,0x01,0xC0,0x03,0x60,0x06,0x00,0x00,0xC0,0x01,0xC0,0x01,0x60,0x03,0x60,0x03,0x70,0x07,0x30,0x06,0x30,0x06,0x18,0x0C,0x18,0x0C,0x18,0x0C,0xFC,0x1F,0xFC,0x1F,0x0E,0x38,0x06,0x30,0x06,0x30,0x03,0x60,0x03,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 194
-	0x00,0x00,0xE0,0x0C,0xF0,0x0F,0x30,0x07,0x00,0x00,0xC0,0x01,0xC0,0x01,0x60,0x03,0x60,0x03,0x70,0x07,0x30,0x06,0x30,0x06,0x18,0x0C,0x18,0x0C,0x18,0x0C,0xFC,0x1F,0xFC,0x1F,0x0E,0x38,0x06,0x30,0x06,0x30,0x03,0x60,0x03,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 195
-	0x00,0x00,0x00,0x00,0x60,0x06,0x60,0x06,0x00,0x00,0xC0,0x01,0xC0,0x01,0x60,0x03,0x60,0x03,0x70,0x07,0x30,0x06,0x30,0x06,0x18,0x0C,0x18,0x0C,0x18,0x0C,0xFC,0x1F,0xFC,0x1F,0x0E,0x38,0x06,0x30,0x06,0x30,0x03,0x60,0x03,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 196
-	0x00,0x00,0xC0,0x01,0x20,0x02,0x20,0x02,0x20,0x02,0xC0,0x01,0xC0,0x01,0x60,0x03,0x60,0x03,0x70,0x07,0x30,0x06,0x30,0x06,0x18,0x0C,0x18,0x0C,0x18,0x0C,0xFC,0x1F,0xFC,0x1F,0x0E,0x38,0x06,0x30,0x06,0x30,0x03,0x60,0x03,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 197
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0x7F,0x80,0xFF,0x7F,0x80,0x19,0x00,0xC0,0x18,0x00,0xC0,0x18,0x00,0x60,0x18,0x00,0x60,0x18,0x00,0x30,0xF8,0x3F,0x30,0xF8,0x3F,0x18,0x18,0x00,0xF8,0x1F,0x00,0xFC,0x1F,0x00,0x0C,0x18,0x00,0x06,0x18,0x00,0x06,0x18,0x00,0x03,0xF8,0x7F,0x03,0xF8,0x7F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 198
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xF8,0x01,0xFC,0x0F,0x1C,0x38,0x1C,0x60,0x18,0x80,0x39,0x00,0x30,0x00,0x60,0x00,0xC0,0x00,0x80,0x01,0x00,0x03,0x00,0x0E,0xC0,0x18,0x80,0x71,0x80,0xC1,0x81,0x03,0xFF,0x03,0xF8,0x01,0x40,0x00,0x80,0x01,0x00,0x06,0x80,0x07,0x00,0x00,0x00,0x00,0x00, // 199
-	0x00,0x00,0xC0,0x01,0x80,0x01,0x00,0x03,0x00,0x00,0xFC,0x7F,0xFC,0x7F,0x0C,0x00,0x0C,0x00,0x0C,0x00,0x0C,0x00,0x0C,0x00,0xFC,0x3F,0xFC,0x3F,0x0C,0x00,0x0C,0x00,0x0C,0x00,0x0C,0x00,0x0C,0x00,0x0C,0x00,0xFC,0x7F,0xFC,0x7F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 200
-	0x00,0x00,0x00,0x07,0x00,0x03,0x80,0x01,0x00,0x00,0xFC,0x7F,0xFC,0x7F,0x0C,0x00,0x0C,0x00,0x0C,0x00,0x0C,0x00,0x0C,0x00,0xFC,0x3F,0xFC,0x3F,0x0C,0x00,0x0C,0x00,0x0C,0x00,0x0C,0x00,0x0C,0x00,0x0C,0x00,0xFC,0x7F,0xFC,0x7F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 201
-	0x00,0x00,0x00,0x03,0x80,0x07,0xC0,0x0C,0x00,0x00,0xFC,0x7F,0xFC,0x7F,0x0C,0x00,0x0C,0x00,0x0C,0x00,0x0C,0x00,0x0C,0x00,0xFC,0x3F,0xFC,0x3F,0x0C,0x00,0x0C,0x00,0x0C,0x00,0x0C,0x00,0x0C,0x00,0x0C,0x00,0xFC,0x7F,0xFC,0x7F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 202
-	0x00,0x00,0x00,0x00,0xC0,0x0C,0xC0,0x0C,0x00,0x00,0xFC,0x7F,0xFC,0x7F,0x0C,0x00,0x0C,0x00,0x0C,0x00,0x0C,0x00,0x0C,0x00,0xFC,0x3F,0xFC,0x3F,0x0C,0x00,0x0C,0x00,0x0C,0x00,0x0C,0x00,0x0C,0x00,0x0C,0x00,0xFC,0x7F,0xFC,0x7F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 203
-	0x00,0x07,0x03,0x03,0x60,0x30,0x18,0x0C,0x06,0x83,0xC1,0x60,0x30,0x18,0x0C,0x06,0x83,0xC1,0x60,0x00,0x00,0x00,0x00,0x00,0x00, // 204
-	0x00,0x0E,0xC3,0x00,0x60,0x30,0x18,0x0C,0x06,0x83,0xC1,0x60,0x30,0x18,0x0C,0x06,0x83,0xC1,0x60,0x00,0x00,0x00,0x00,0x00,0x00, // 205
-	0x00,0x86,0x67,0x06,0x60,0x30,0x18,0x0C,0x06,0x83,0xC1,0x60,0x30,0x18,0x0C,0x06,0x83,0xC1,0x60,0x00,0x00,0x00,0x00,0x00,0x00, // 206
-	0x00,0xC0,0x6C,0x06,0x60,0x30,0x18,0x0C,0x06,0x83,0xC1,0x60,0x30,0x18,0x0C,0x06,0x83,0xC1,0x60,0x00,0x00,0x00,0x00,0x00,0x00, // 207
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0xFF,0x01,0xFF,0x07,0x06,0x1C,0x0C,0x70,0x18,0xC0,0x30,0x00,0x63,0x00,0xF6,0x1F,0xEC,0x3F,0x18,0x03,0x30,0x06,0x60,0x0C,0xC0,0x18,0xC0,0x30,0xC0,0x61,0xC0,0xC1,0xFF,0x81,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 208
-	0x00,0x00,0x80,0x33,0x80,0x7F,0x00,0x73,0x00,0x00,0x80,0x01,0x0C,0x07,0x18,0x1E,0x30,0x3C,0x60,0xD8,0xC0,0x30,0x83,0x61,0x06,0xC3,0x18,0x86,0x71,0x0C,0xC3,0x18,0x06,0x33,0x0C,0x6E,0x18,0xD8,0x30,0xE0,0x61,0xC0,0xC3,0x00,0x87,0x01,0x0C,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 209
-	0x00,0x00,0x00,0x1C,0x00,0xC0,0x00,0x00,0x0C,0x00,0x00,0x00,0xE0,0x0F,0xC0,0xFF,0x01,0x0F,0x1E,0x1C,0xC0,0x61,0x00,0x8C,0x03,0xE0,0x0C,0x00,0x66,0x00,0x30,0x03,0x80,0x19,0x00,0xCC,0x00,0x60,0x0E,0x80,0x63,0x00,0x0C,0x07,0x70,0xF0,0xE0,0x01,0xFF,0x07,0xE0,0x0F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 210
-	0x00,0x00,0x00,0x70,0x00,0x80,0x01,0x00,0x06,0x00,0x00,0x00,0xE0,0x0F,0xC0,0xFF,0x01,0x0F,0x1E,0x1C,0xC0,0x61,0x00,0x8C,0x03,0xE0,0x0C,0x00,0x66,0x00,0x30,0x03,0x80,0x19,0x00,0xCC,0x00,0x60,0x0E,0x80,0x63,0x00,0x0C,0x07,0x70,0xF0,0xE0,0x01,0xFF,0x07,0xE0,0x0F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 211
-	0x00,0x00,0x00,0x30,0x00,0xC0,0x03,0x00,0x33,0x00,0x00,0x00,0xE0,0x0F,0xC0,0xFF,0x01,0x0F,0x1E,0x1C,0xC0,0x61,0x00,0x8C,0x03,0xE0,0x0C,0x00,0x66,0x00,0x30,0x03,0x80,0x19,0x00,0xCC,0x00,0x60,0x0E,0x80,0x63,0x00,0x0C,0x07,0x70,0xF0,0xE0,0x01,0xFF,0x07,0xE0,0x0F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 212
-	0x00,0x00,0x00,0xCE,0x00,0xF8,0x07,0xC0,0x1C,0x00,0x00,0x00,0xE0,0x0F,0xC0,0xFF,0x01,0x0F,0x1E,0x1C,0xC0,0x61,0x00,0x8C,0x03,0xE0,0x0C,0x00,0x66,0x00,0x30,0x03,0x80,0x19,0x00,0xCC,0x00,0x60,0x0E,0x80,0x63,0x00,0x0C,0x07,0x70,0xF0,0xE0,0x01,0xFF,0x07,0xE0,0x0F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 213
-	0x00,0x00,0x00,0x00,0x00,0x60,0x06,0x00,0x33,0x00,0x00,0x00,0xE0,0x0F,0xC0,0xFF,0x01,0x0F,0x1E,0x1C,0xC0,0x61,0x00,0x8C,0x03,0xE0,0x0C,0x00,0x66,0x00,0x30,0x03,0x80,0x19,0x00,0xCC,0x00,0x60,0x0E,0x80,0x63,0x00,0x0C,0x07,0x70,0xF0,0xE0,0x01,0xFF,0x07,0xE0,0x0F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 214
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x83,0xC1,0x71,0xE0,0x0E,0xF0,0x01,0x38,0x00,0x1F,0xE0,0x0E,0x1C,0x07,0x83,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 215
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0xE0,0xCF,0xC1,0xFF,0x07,0x0F,0x1E,0x1C,0xE0,0x61,0x80,0x8F,0x03,0xEE,0x0C,0x38,0x66,0xE0,0x30,0x83,0x83,0x19,0x0E,0xCC,0x38,0x60,0xEE,0x80,0xE3,0x03,0x0C,0x0F,0x70,0xF0,0xE0,0xC1,0xFF,0x07,0xE7,0x0F,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 216
-	0x00,0x00,0x80,0x03,0x00,0x06,0x00,0x18,0x00,0x00,0x80,0x01,0x0C,0x03,0x18,0x06,0x30,0x0C,0x60,0x18,0xC0,0x30,0x80,0x61,0x00,0xC3,0x00,0x86,0x01,0x0C,0x03,0x18,0x06,0x30,0x0C,0x60,0x18,0xC0,0x60,0xC0,0xC0,0xC1,0x01,0xFF,0x01,0xFC,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 217
-	0x00,0x00,0x00,0x0E,0x00,0x0C,0x00,0x0C,0x00,0x00,0x80,0x01,0x0C,0x03,0x18,0x06,0x30,0x0C,0x60,0x18,0xC0,0x30,0x80,0x61,0x00,0xC3,0x00,0x86,0x01,0x0C,0x03,0x18,0x06,0x30,0x0C,0x60,0x18,0xC0,0x60,0xC0,0xC0,0xC1,0x01,0xFF,0x01,0xFC,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 218
-	0x00,0x00,0x00,0x06,0x00,0x1E,0x00,0x66,0x00,0x00,0x80,0x01,0x0C,0x03,0x18,0x06,0x30,0x0C,0x60,0x18,0xC0,0x30,0x80,0x61,0x00,0xC3,0x00,0x86,0x01,0x0C,0x03,0x18,0x06,0x30,0x0C,0x60,0x18,0xC0,0x60,0xC0,0xC0,0xC1,0x01,0xFF,0x01,0xFC,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 219
-	0x00,0x00,0x00,0x00,0x00,0x33,0x00,0x66,0x00,0x00,0x80,0x01,0x0C,0x03,0x18,0x06,0x30,0x0C,0x60,0x18,0xC0,0x30,0x80,0x61,0x00,0xC3,0x00,0x86,0x01,0x0C,0x03,0x18,0x06,0x30,0x0C,0x60,0x18,0xC0,0x60,0xC0,0xC0,0xC1,0x01,0xFF,0x01,0xFC,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 220
-	0x00,0x00,0x00,0x07,0x00,0x03,0x80,0x01,0x00,0x00,0x03,0xE0,0x06,0x70,0x0C,0x30,0x1C,0x38,0x38,0x1C,0x70,0x0E,0x60,0x06,0xE0,0x07,0xC0,0x03,0x80,0x01,0x80,0x01,0x80,0x01,0x80,0x01,0x80,0x01,0x80,0x01,0x80,0x01,0x80,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 221
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0C,0x00,0x0C,0x00,0x0C,0x00,0xFC,0x0F,0xFC,0x3F,0x0C,0x30,0x0C,0x60,0x0C,0x60,0x0C,0x60,0x0C,0x60,0x0C,0x70,0x0C,0x38,0xFC,0x1F,0xFC,0x0F,0x0C,0x00,0x0C,0x00,0x0C,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 222
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0F,0xE0,0x0F,0x38,0x0E,0x0C,0x06,0x06,0x03,0x83,0x81,0x61,0xC0,0x30,0x60,0x18,0x30,0x1C,0x18,0x38,0x0C,0x38,0x06,0x18,0x13,0x8C,0x1D,0xC7,0xFC,0x61,0x7C,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 223
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE0,0x00,0x18,0x00,0x06,0x00,0x00,0x3E,0xF0,0x0F,0x87,0x63,0x60,0x00,0x0C,0xF0,0xC1,0x3F,0x3C,0xC6,0xC0,0x18,0x1C,0xC7,0xC3,0x6F,0xF0,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 224
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x03,0x30,0x00,0x03,0x00,0x00,0x3E,0xF0,0x0F,0x87,0x63,0x60,0x00,0x0C,0xF0,0xC1,0x3F,0x3C,0xC6,0xC0,0x18,0x1C,0xC7,0xC3,0x6F,0xF0,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 225
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xC0,0x00,0x3C,0xC0,0x0C,0x00,0x00,0x3E,0xF0,0x0F,0x87,0x63,0x60,0x00,0x0C,0xF0,0xC1,0x3F,0x3C,0xC6,0xC0,0x18,0x1C,0xC7,0xC3,0x6F,0xF0,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 226
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0x06,0xFF,0x60,0x0E,0x00,0x00,0x3E,0xF0,0x0F,0x87,0x63,0x60,0x00,0x0C,0xF0,0xC1,0x3F,0x3C,0xC6,0xC0,0x18,0x1C,0xC7,0xC3,0x6F,0xF0,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 227
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x66,0xC0,0x0C,0x00,0x00,0x3E,0xF0,0x0F,0x87,0x63,0x60,0x00,0x0C,0xF0,0xC1,0x3F,0x3C,0xC6,0xC0,0x18,0x1C,0xC7,0xC3,0x6F,0xF0,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 228
-	0x00,0x00,0x00,0x00,0x00,0x70,0x00,0x11,0x20,0x02,0x44,0x00,0x07,0x00,0x00,0x3E,0xF0,0x0F,0x87,0x63,0x60,0x00,0x0C,0xF0,0xC1,0x3F,0x3C,0xC6,0xC0,0x18,0x1C,0xC7,0xC3,0x6F,0xF0,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 229
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7E,0x7C,0xF0,0xFF,0x1F,0x06,0x1F,0x66,0xC0,0x80,0x00,0x1E,0x30,0xFE,0xFF,0xE7,0xE7,0xFF,0x0E,0x0C,0xC0,0x80,0x01,0x18,0x78,0x60,0x87,0x1F,0xC6,0xBF,0x7F,0xF0,0xC1,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 230
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1F,0xF8,0xC3,0x71,0x0E,0x66,0x00,0x06,0x60,0x00,0x06,0x60,0x00,0x0E,0xC6,0x71,0xF8,0x03,0x1F,0x40,0x00,0x0C,0x80,0x01,0x0F,0x00,0x00,0x00,0x00, // 231
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE0,0x00,0x18,0x00,0x06,0x00,0x00,0x3E,0xE0,0x0F,0x8E,0xC3,0xE0,0x0C,0x98,0xFF,0xF3,0x7F,0x06,0xC0,0x00,0x38,0x30,0x8E,0x83,0x3F,0xE0,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 232
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x03,0x30,0x00,0x03,0x00,0x00,0x3E,0xE0,0x0F,0x8E,0xC3,0xE0,0x0C,0x98,0xFF,0xF3,0x7F,0x06,0xC0,0x00,0x38,0x30,0x8E,0x83,0x3F,0xE0,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 233
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x01,0x78,0x80,0x19,0x00,0x00,0x3E,0xE0,0x0F,0x8E,0xC3,0xE0,0x0C,0x98,0xFF,0xF3,0x7F,0x06,0xC0,0x00,0x38,0x30,0x8E,0x83,0x3F,0xE0,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 234
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xCC,0x80,0x19,0x00,0x00,0x3E,0xE0,0x0F,0x8E,0xC3,0xE0,0x0C,0x98,0xFF,0xF3,0x7F,0x06,0xC0,0x00,0x38,0x30,0x8E,0x83,0x3F,0xE0,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 235
-	0x00,0x00,0x00,0x00,0x70,0x30,0x30,0x00,0x06,0x83,0xC1,0x60,0x30,0x18,0x0C,0x06,0x83,0xC1,0x60,0x00,0x00,0x00,0x00,0x00,0x00, // 236
-	0x00,0x00,0x00,0x00,0xE0,0x30,0x0C,0x00,0x06,0x83,0xC1,0x60,0x30,0x18,0x0C,0x06,0x83,0xC1,0x60,0x00,0x00,0x00,0x00,0x00,0x00, // 237
-	0x00,0x00,0x00,0x00,0x60,0x78,0x66,0x00,0x06,0x83,0xC1,0x60,0x30,0x18,0x0C,0x06,0x83,0xC1,0x60,0x00,0x00,0x00,0x00,0x00,0x00, // 238
-	0x00,0x00,0x00,0x00,0x00,0xCC,0x66,0x00,0x06,0x83,0xC1,0x60,0x30,0x18,0x0C,0x06,0x83,0xC1,0x60,0x00,0x00,0x00,0x00,0x00,0x00, // 239
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE0,0x04,0x70,0x80,0x0F,0x18,0x03,0x7E,0xE0,0x1F,0x8E,0xE3,0x60,0x0C,0x98,0x01,0x33,0x60,0x06,0xCC,0x80,0x39,0x38,0x8E,0x83,0x3F,0xE0,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 240
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE0,0x0C,0xFE,0xC1,0x1C,0x00,0x80,0x79,0xB0,0x1F,0x1E,0xC7,0xC1,0x18,0x18,0x03,0x63,0x60,0x0C,0x8C,0x81,0x31,0x30,0x06,0xC6,0xC0,0x18,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 241
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE0,0x00,0x18,0x00,0x06,0x00,0x00,0x3E,0xE0,0x0F,0x8E,0xE3,0xE0,0x0C,0x98,0x01,0x33,0x60,0x06,0xCC,0x80,0x39,0x38,0x8E,0x83,0x3F,0xE0,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 242
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x03,0x30,0x00,0x03,0x00,0x00,0x3E,0xE0,0x0F,0x8E,0xE3,0xE0,0x0C,0x98,0x01,0x33,0x60,0x06,0xCC,0x80,0x39,0x38,0x8E,0x83,0x3F,0xE0,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 243
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x01,0x78,0x80,0x19,0x00,0x00,0x3E,0xE0,0x0F,0x8E,0xE3,0xE0,0x0C,0x98,0x01,0x33,0x60,0x06,0xCC,0x80,0x39,0x38,0x8E,0x83,0x3F,0xE0,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 244
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE0,0x0C,0xFE,0xC1,0x1C,0x00,0x00,0x3E,0xE0,0x0F,0x8E,0xE3,0xE0,0x0C,0x98,0x01,0x33,0x60,0x06,0xCC,0x80,0x39,0x38,0x8E,0x83,0x3F,0xE0,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 245
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xCC,0x80,0x19,0x00,0x00,0x3E,0xE0,0x0F,0x8E,0xE3,0xE0,0x0C,0x98,0x01,0x33,0x60,0x06,0xCC,0x80,0x39,0x38,0x8E,0x83,0x3F,0xE0,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 246
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x00,0x03,0x00,0xE0,0xFF,0xFD,0x3F,0x00,0x00,0x06,0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 247
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0xF0,0x0D,0xFC,0x03,0xC7,0xC1,0xF1,0x61,0xDC,0x30,0x66,0x98,0x31,0xEC,0x18,0x36,0x0C,0x0F,0x07,0xC7,0x81,0x7F,0x60,0x1F,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 248
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE0,0x00,0x18,0x00,0x06,0x00,0x80,0x81,0x31,0x30,0x06,0xC6,0xC0,0x18,0x18,0x03,0x63,0x60,0x0C,0x8C,0x81,0x31,0x38,0x8E,0x87,0xDF,0xE0,0x19,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 249
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x60,0x00,0x06,0x00,0x80,0x81,0x31,0x30,0x06,0xC6,0xC0,0x18,0x18,0x03,0x63,0x60,0x0C,0x8C,0x81,0x31,0x38,0x8E,0x87,0xDF,0xE0,0x19,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 250
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x01,0x78,0x80,0x19,0x00,0x80,0x81,0x31,0x30,0x06,0xC6,0xC0,0x18,0x18,0x03,0x63,0x60,0x0C,0x8C,0x81,0x31,0x38,0x8E,0x87,0xDF,0xE0,0x19,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 251
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xCC,0x80,0x19,0x00,0x80,0x81,0x31,0x30,0x06,0xC6,0xC0,0x18,0x18,0x03,0x63,0x60,0x0C,0x8C,0x81,0x31,0x38,0x8E,0x87,0xDF,0xE0,0x19,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 252
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1C,0xC0,0x00,0x06,0x00,0x60,0x60,0x06,0x66,0x30,0x0C,0xC3,0x30,0x8C,0x81,0x19,0x98,0x01,0x1B,0xF0,0x00,0x0F,0xE0,0x00,0x06,0x60,0x00,0x06,0x30,0xC0,0x03,0x1C,0x00,0x00,0x00, // 253
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x00,0x03,0x60,0x00,0x0C,0x80,0x3D,0xF0,0x0F,0x8E,0xC3,0xE1,0x18,0x18,0x03,0x63,0x60,0x0C,0x8C,0x81,0x31,0x18,0x8E,0xC3,0x3F,0xD8,0x03,0x03,0x60,0x00,0x0C,0x80,0x01,0x30,0x00,0x00,0x00, // 254
-	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x98,0x81,0x19,0x00,0x60,0x60,0x06,0x66,0x30,0x0C,0xC3,0x30,0x8C,0x81,0x19,0x98,0x01,0x1B,0xF0,0x00,0x0F,0xE0,0x00,0x06,0x60,0x00,0x06,0x30,0xC0,0x03,0x1C,0x00,0x00,0x00 // 255
+  // Font Data:
+  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE0,0xFF,0x33,0x00,0xE0,0xFF,0x33, // 33
+  0x00,0x00,0x00,0x00,0xE0,0x07,0x00,0x00,0xE0,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE0,0x07,0x00,0x00,0xE0,0x07,  // 34
+  0x00,0x0C,0x03,0x00,0x00,0x0C,0x33,0x00,0x00,0x0C,0x3F,0x00,0x00,0xFC,0x0F,0x00,0x80,0xFF,0x03,0x00,0xE0,0x0F,0x03,0x00,0x60,0x0C,0x33,0x00,0x00,0x0C,0x3F,0x00,0x00,0xFC,0x0F,0x00,0x80,0xFF,0x03,0x00,0xE0,0x0F,0x03,0x00,0x60,0x0C,0x03,0x00,0x00,0x0C,0x03, // 35
+  0x00,0x00,0x00,0x00,0x80,0x07,0x06,0x00,0xC0,0x0F,0x1E,0x00,0xC0,0x18,0x1C,0x00,0x60,0x18,0x38,0x00,0x60,0x30,0x30,0x00,0xF0,0xFF,0xFF,0x00,0x60,0x30,0x30,0x00,0x60,0x60,0x38,0x00,0xC0,0x60,0x18,0x00,0xC0,0xC1,0x1F,0x00,0x00,0x81,0x07, // 36
+  0x00,0x00,0x00,0x00,0x80,0x0F,0x00,0x00,0xC0,0x1F,0x00,0x00,0x60,0x30,0x00,0x00,0x20,0x20,0x00,0x00,0x20,0x20,0x20,0x00,0x60,0x30,0x38,0x00,0xC0,0x1F,0x1E,0x00,0x80,0x8F,0x0F,0x00,0x00,0xC0,0x03,0x00,0x00,0xF0,0x00,0x00,0x00,0x3C,0x00,0x00,0x00,0x8F,0x0F,0x00,0xC0,0xC3,0x1F,0x00,0xE0,0x60,0x30,0x00,0x20,0x20,0x20,0x00,0x00,0x20,0x20,0x00,0x00,0x60,0x30,0x00,0x00,0xC0,0x1F,0x00,0x00,0x80,0x0F, // 37
+  0x00,0x00,0x00,0x00,0x00,0x80,0x07,0x00,0x00,0xC0,0x0F,0x00,0x80,0xE3,0x1C,0x00,0xC0,0x77,0x38,0x00,0xE0,0x3C,0x30,0x00,0x60,0x38,0x30,0x00,0x60,0x78,0x30,0x00,0xE0,0xEC,0x38,0x00,0xC0,0x8F,0x1B,0x00,0x80,0x03,0x1F,0x00,0x00,0x00,0x0F,0x00,0x00,0xC0,0x1F,0x00,0x00,0xC0,0x38,0x00,0x00,0x00,0x10, // 38
+  0x00,0x00,0x00,0x00,0xE0,0x07,0x00,0x00,0xE0,0x07,  // 39
+  0x00,0x00,0x00,0x00,0x00,0xF0,0x0F,0x00,0x00,0xFE,0x7F,0x00,0x80,0x0F,0xF0,0x01,0xC0,0x01,0x80,0x03,0x60,0x00,0x00,0x06,0x20,0x00,0x00,0x04,  // 40
+  0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x04,0x60,0x00,0x00,0x06,0xC0,0x01,0x80,0x03,0x80,0x0F,0xF0,0x01,0x00,0xFE,0x7F,0x00,0x00,0xF0,0x0F, // 41
+  0x00,0x00,0x00,0x00,0x80,0x00,0x00,0x00,0x80,0x04,0x00,0x00,0x80,0x0F,0x00,0x00,0xE0,0x03,0x00,0x00,0xE0,0x03,0x00,0x00,0x80,0x0F,0x00,0x00,0x80,0x04,0x00,0x00,0x80, // 42
+  0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0xFF,0x0F,0x00,0x00,0xFF,0x0F,0x00,0x00,0x60,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0x60,  // 43
+  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x03,0x00,0x00,0xF0,0x01,  // 44
+  0x00,0x80,0x01,0x00,0x00,0x80,0x01,0x00,0x00,0x80,0x01,0x00,0x00,0x80,0x01,0x00,0x00,0x80,0x01,0x00,0x00,0x80,0x01,0x00,0x00,0x80,0x01, // 45
+  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0x30, // 46
+  0x00,0x00,0x30,0x00,0x00,0x00,0x3E,0x00,0x00,0xE0,0x0F,0x00,0x00,0xFC,0x01,0x00,0x80,0x3F,0x00,0x00,0xE0,0x03,0x00,0x00,0x60, // 47
+  0x00,0x00,0x00,0x00,0x00,0xFE,0x03,0x00,0x80,0xFF,0x0F,0x00,0xC0,0x01,0x1C,0x00,0xE0,0x00,0x38,0x00,0x60,0x00,0x30,0x00,0x60,0x00,0x30,0x00,0x60,0x00,0x30,0x00,0xE0,0x00,0x38,0x00,0xC0,0x01,0x1C,0x00,0x80,0xFF,0x0F,0x00,0x00,0xFE,0x03, // 48
+  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x03,0x00,0x00,0x80,0x01,0x00,0x00,0xE0,0xFF,0x3F,0x00,0xE0,0xFF,0x3F, // 49
+  0x00,0x00,0x00,0x00,0x00,0x03,0x30,0x00,0xC0,0x03,0x38,0x00,0xC0,0x00,0x3C,0x00,0x60,0x00,0x36,0x00,0x60,0x00,0x33,0x00,0x60,0x80,0x31,0x00,0x60,0xC0,0x30,0x00,0x60,0x60,0x30,0x00,0xC0,0x30,0x30,0x00,0xC0,0x1F,0x30,0x00,0x00,0x0F,0x30, // 50
+  0x00,0x00,0x00,0x00,0x00,0x01,0x06,0x00,0xC0,0x01,0x0E,0x00,0xC0,0x00,0x1C,0x00,0x60,0x00,0x30,0x00,0x60,0x30,0x30,0x00,0x60,0x30,0x30,0x00,0x60,0x30,0x30,0x00,0xC0,0x38,0x30,0x00,0xC0,0x6F,0x18,0x00,0x80,0xC7,0x0F,0x00,0x00,0x80,0x07, // 51
+  0x00,0x00,0x00,0x00,0x00,0x80,0x03,0x00,0x00,0xC0,0x03,0x00,0x00,0xF0,0x03,0x00,0x00,0x3C,0x03,0x00,0x00,0x0E,0x03,0x00,0x80,0x07,0x03,0x00,0xC0,0x01,0x03,0x00,0xE0,0xFF,0x3F,0x00,0xE0,0xFF,0x3F,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x03, // 52
+  0x00,0x00,0x00,0x00,0x00,0x30,0x06,0x00,0x80,0x3F,0x0E,0x00,0xE0,0x1F,0x18,0x00,0x60,0x08,0x30,0x00,0x60,0x0C,0x30,0x00,0x60,0x0C,0x30,0x00,0x60,0x0C,0x30,0x00,0x60,0x0C,0x30,0x00,0x60,0x18,0x1C,0x00,0x60,0xF0,0x0F,0x00,0x00,0xE0,0x03, // 53
+  0x00,0x00,0x00,0x00,0x00,0xFC,0x03,0x00,0x80,0xFF,0x0F,0x00,0xC0,0x63,0x1C,0x00,0xC0,0x30,0x38,0x00,0x60,0x18,0x30,0x00,0x60,0x18,0x30,0x00,0x60,0x18,0x30,0x00,0x60,0x18,0x30,0x00,0xE0,0x30,0x18,0x00,0xC0,0xF1,0x0F,0x00,0x80,0xC1,0x07, // 54
+  0x00,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0x60,0x00,0x3C,0x00,0x60,0x80,0x3F,0x00,0x60,0xE0,0x03,0x00,0x60,0x78,0x00,0x00,0x60,0x0E,0x00,0x00,0x60,0x03,0x00,0x00,0xE0,0x01,0x00,0x00,0x60, // 55
+  0x00,0x00,0x00,0x00,0x00,0x80,0x07,0x00,0x80,0xC7,0x1F,0x00,0xC0,0x6F,0x18,0x00,0xE0,0x38,0x30,0x00,0x60,0x30,0x30,0x00,0x60,0x30,0x30,0x00,0x60,0x30,0x30,0x00,0xE0,0x38,0x30,0x00,0xC0,0x6F,0x18,0x00,0x80,0xC7,0x1F,0x00,0x00,0x80,0x07, // 56
+  0x00,0x00,0x00,0x00,0x00,0x1F,0x0C,0x00,0x80,0x7F,0x1C,0x00,0xC0,0x61,0x38,0x00,0x60,0xC0,0x30,0x00,0x60,0xC0,0x30,0x00,0x60,0xC0,0x30,0x00,0x60,0xC0,0x30,0x00,0x60,0x60,0x18,0x00,0xC0,0x31,0x1E,0x00,0x80,0xFF,0x0F,0x00,0x00,0xFE,0x01, // 57
+  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x30,0x00,0x00,0x06,0x30, // 58
+  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x30,0x03,0x00,0x06,0xF0,0x01,  // 59
+  0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x70,0x00,0x00,0x00,0x50,0x00,0x00,0x00,0xD8,0x00,0x00,0x00,0xD8,0x00,0x00,0x00,0x8C,0x01,0x00,0x00,0x8C,0x01,0x00,0x00,0x04,0x01,0x00,0x00,0x06,0x03,0x00,0x00,0x06,0x03,0x00,0x00,0x03,0x06, // 60
+  0x00,0x00,0x00,0x00,0x00,0x8C,0x01,0x00,0x00,0x8C,0x01,0x00,0x00,0x8C,0x01,0x00,0x00,0x8C,0x01,0x00,0x00,0x8C,0x01,0x00,0x00,0x8C,0x01,0x00,0x00,0x8C,0x01,0x00,0x00,0x8C,0x01,0x00,0x00,0x8C,0x01,0x00,0x00,0x8C,0x01,0x00,0x00,0x8C,0x01, // 61
+  0x00,0x00,0x00,0x00,0x00,0x03,0x06,0x00,0x00,0x06,0x03,0x00,0x00,0x06,0x03,0x00,0x00,0x04,0x01,0x00,0x00,0x8C,0x01,0x00,0x00,0x8C,0x01,0x00,0x00,0xD8,0x00,0x00,0x00,0xD8,0x00,0x00,0x00,0x50,0x00,0x00,0x00,0x70,0x00,0x00,0x00,0x20,  // 62
+  0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x80,0x03,0x00,0x00,0xC0,0x01,0x00,0x00,0xE0,0x00,0x00,0x00,0x60,0x80,0x33,0x00,0x60,0xC0,0x33,0x00,0x60,0xE0,0x00,0x00,0x60,0x30,0x00,0x00,0xC0,0x38,0x00,0x00,0xC0,0x1F,0x00,0x00,0x00,0x07,  // 63
+  0x00,0x00,0x00,0x00,0x00,0xE0,0x0F,0x00,0x00,0xF8,0x3F,0x00,0x00,0x1E,0xF0,0x00,0x00,0x07,0xC0,0x01,0x80,0xC3,0x87,0x01,0xC0,0xF1,0x9F,0x03,0xC0,0x38,0x18,0x03,0xC0,0x0C,0x30,0x03,0x60,0x0E,0x30,0x06,0x60,0x06,0x30,0x06,0x60,0x06,0x18,0x06,0x60,0x06,0x0C,0x06,0x60,0x0C,0x1E,0x06,0x60,0xF8,0x3F,0x06,0xE0,0xFE,0x31,0x06,0xC0,0x0E,0x30,0x06,0xC0,0x01,0x18,0x03,0x80,0x03,0x1C,0x03,0x00,0x07,0x8F,0x01,0x00,0xFE,0x87,0x01,0x00,0xF8,0xC1,0x00,0x00,0x00,0x40, // 64
+  0x00,0x00,0x30,0x00,0x00,0x00,0x3E,0x00,0x00,0x80,0x0F,0x00,0x00,0xF0,0x03,0x00,0x00,0xFE,0x01,0x00,0x80,0x8F,0x01,0x00,0xE0,0x83,0x01,0x00,0x60,0x80,0x01,0x00,0xE0,0x83,0x01,0x00,0x80,0x8F,0x01,0x00,0x00,0xFE,0x01,0x00,0x00,0xF0,0x03,0x00,0x00,0x80,0x0F,0x00,0x00,0x00,0x3E,0x00,0x00,0x00,0x30, // 65
+  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE0,0xFF,0x3F,0x00,0xE0,0xFF,0x3F,0x00,0x60,0x30,0x30,0x00,0x60,0x30,0x30,0x00,0x60,0x30,0x30,0x00,0x60,0x30,0x30,0x00,0x60,0x30,0x30,0x00,0x60,0x30,0x30,0x00,0x60,0x30,0x30,0x00,0xC0,0x78,0x30,0x00,0xC0,0xFF,0x18,0x00,0x80,0xC7,0x1F,0x00,0x00,0x80,0x07, // 66
+  0x00,0x00,0x00,0x00,0x00,0xFC,0x01,0x00,0x00,0xFF,0x07,0x00,0x80,0x07,0x0F,0x00,0xC0,0x01,0x1C,0x00,0xC0,0x00,0x18,0x00,0x60,0x00,0x30,0x00,0x60,0x00,0x30,0x00,0x60,0x00,0x30,0x00,0x60,0x00,0x30,0x00,0x60,0x00,0x30,0x00,0x60,0x00,0x30,0x00,0xC0,0x00,0x18,0x00,0xC0,0x01,0x1C,0x00,0x80,0x03,0x0F,0x00,0x00,0x02,0x03, // 67
+  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE0,0xFF,0x3F,0x00,0xE0,0xFF,0x3F,0x00,0x60,0x00,0x30,0x00,0x60,0x00,0x30,0x00,0x60,0x00,0x30,0x00,0x60,0x00,0x30,0x00,0x60,0x00,0x30,0x00,0x60,0x00,0x30,0x00,0x60,0x00,0x30,0x00,0xE0,0x00,0x18,0x00,0xC0,0x01,0x1C,0x00,0x80,0x03,0x0E,0x00,0x00,0xFF,0x07,0x00,0x00,0xFC,0x01, // 68
+  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE0,0xFF,0x3F,0x00,0xE0,0xFF,0x3F,0x00,0x60,0x30,0x30,0x00,0x60,0x30,0x30,0x00,0x60,0x30,0x30,0x00,0x60,0x30,0x30,0x00,0x60,0x30,0x30,0x00,0x60,0x30,0x30,0x00,0x60,0x30,0x30,0x00,0x60,0x30,0x30,0x00,0x60,0x30,0x30,0x00,0x60,0x30,0x30,0x00,0x60,0x00,0x30, // 69
+  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE0,0xFF,0x3F,0x00,0xE0,0xFF,0x3F,0x00,0x60,0x30,0x00,0x00,0x60,0x30,0x00,0x00,0x60,0x30,0x00,0x00,0x60,0x30,0x00,0x00,0x60,0x30,0x00,0x00,0x60,0x30,0x00,0x00,0x60,0x30,0x00,0x00,0x60,0x30,0x00,0x00,0x60,0x30,0x00,0x00,0x60, // 70
+  0x00,0x00,0x00,0x00,0x00,0xFC,0x01,0x00,0x00,0xFF,0x07,0x00,0x80,0x07,0x0F,0x00,0xC0,0x01,0x1C,0x00,0xC0,0x00,0x18,0x00,0xE0,0x00,0x18,0x00,0x60,0x00,0x30,0x00,0x60,0x00,0x30,0x00,0x60,0x00,0x30,0x00,0x60,0x60,0x30,0x00,0x60,0x60,0x30,0x00,0xE0,0x60,0x38,0x00,0xC0,0x60,0x18,0x00,0xC0,0x61,0x18,0x00,0x80,0xE3,0x0F,0x00,0x00,0xE2,0x0F, // 71
+  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE0,0xFF,0x3F,0x00,0xE0,0xFF,0x3F,0x00,0x00,0x30,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0x30,0x00,0x00,0xE0,0xFF,0x3F,0x00,0xE0,0xFF,0x3F, // 72
+  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE0,0xFF,0x3F,0x00,0xE0,0xFF,0x3F, // 73
+  0x00,0x00,0x00,0x00,0x00,0x00,0x0E,0x00,0x00,0x00,0x1E,0x00,0x00,0x00,0x38,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0x38,0x00,0xE0,0xFF,0x1F,0x00,0xE0,0xFF,0x0F, // 74
+  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE0,0xFF,0x3F,0x00,0xE0,0xFF,0x3F,0x00,0x00,0xE0,0x00,0x00,0x00,0x70,0x00,0x00,0x00,0x38,0x00,0x00,0x00,0x7C,0x00,0x00,0x00,0xFE,0x00,0x00,0x00,0xE7,0x01,0x00,0x80,0x83,0x07,0x00,0xC0,0x01,0x0F,0x00,0xE0,0x00,0x1E,0x00,0x60,0x00,0x38,0x00,0x20,0x00,0x30,0x00,0x00,0x00,0x20, // 75
+  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE0,0xFF,0x3F,0x00,0xE0,0xFF,0x3F,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0x30, // 76
+  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE0,0xFF,0x3F,0x00,0xE0,0xFF,0x3F,0x00,0xE0,0x01,0x00,0x00,0xC0,0x0F,0x00,0x00,0x00,0xFE,0x00,0x00,0x00,0xE0,0x07,0x00,0x00,0x00,0x3F,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0x3F,0x00,0x00,0xE0,0x07,0x00,0x00,0xFE,0x00,0x00,0xC0,0x0F,0x00,0x00,0xE0,0x01,0x00,0x00,0xE0,0xFF,0x3F,0x00,0xE0,0xFF,0x3F, // 77
+  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE0,0xFF,0x3F,0x00,0xE0,0xFF,0x3F,0x00,0xC0,0x01,0x00,0x00,0x80,0x03,0x00,0x00,0x00,0x0E,0x00,0x00,0x00,0x3C,0x00,0x00,0x00,0x70,0x00,0x00,0x00,0xE0,0x01,0x00,0x00,0x80,0x03,0x00,0x00,0x00,0x0F,0x00,0x00,0x00,0x1C,0x00,0xE0,0xFF,0x3F,0x00,0xE0,0xFF,0x3F, // 78
+  0x00,0x00,0x00,0x00,0x00,0xFC,0x01,0x00,0x00,0xFF,0x07,0x00,0x80,0x07,0x0F,0x00,0xC0,0x01,0x1C,0x00,0xC0,0x00,0x18,0x00,0xE0,0x00,0x38,0x00,0x60,0x00,0x30,0x00,0x60,0x00,0x30,0x00,0x60,0x00,0x30,0x00,0x60,0x00,0x30,0x00,0x60,0x00,0x30,0x00,0xE0,0x00,0x38,0x00,0xC0,0x00,0x18,0x00,0xC0,0x01,0x1C,0x00,0x80,0x07,0x0F,0x00,0x00,0xFF,0x07,0x00,0x00,0xFC,0x01, // 79
+  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE0,0xFF,0x3F,0x00,0xE0,0xFF,0x3F,0x00,0x60,0x60,0x00,0x00,0x60,0x60,0x00,0x00,0x60,0x60,0x00,0x00,0x60,0x60,0x00,0x00,0x60,0x60,0x00,0x00,0x60,0x60,0x00,0x00,0x60,0x60,0x00,0x00,0x60,0x60,0x00,0x00,0xC0,0x30,0x00,0x00,0xC0,0x3F,0x00,0x00,0x00,0x0F,  // 80
+  0x00,0x00,0x00,0x00,0x00,0xFC,0x01,0x00,0x00,0xFF,0x07,0x00,0x80,0x07,0x0F,0x00,0xC0,0x01,0x0C,0x00,0xC0,0x00,0x18,0x00,0xE0,0x00,0x18,0x00,0x60,0x00,0x30,0x00,0x60,0x00,0x30,0x00,0x60,0x00,0x30,0x00,0x60,0x00,0x36,0x00,0x60,0x00,0x36,0x00,0xE0,0x00,0x3C,0x00,0xC0,0x00,0x1C,0x00,0xC0,0x01,0x1C,0x00,0x80,0x07,0x3F,0x00,0x00,0xFF,0x77,0x00,0x00,0xFC,0x61, // 81
+  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE0,0xFF,0x3F,0x00,0xE0,0xFF,0x3F,0x00,0x60,0x30,0x00,0x00,0x60,0x30,0x00,0x00,0x60,0x30,0x00,0x00,0x60,0x30,0x00,0x00,0x60,0x70,0x00,0x00,0x60,0xF0,0x00,0x00,0x60,0xF0,0x03,0x00,0x60,0xB0,0x07,0x00,0xE0,0x18,0x1F,0x00,0xC0,0x1F,0x3C,0x00,0x80,0x0F,0x30,0x00,0x00,0x00,0x20, // 82
+  0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x07,0x0F,0x00,0xC0,0x1F,0x1C,0x00,0xC0,0x18,0x18,0x00,0x60,0x38,0x38,0x00,0x60,0x30,0x30,0x00,0x60,0x30,0x30,0x00,0x60,0x30,0x30,0x00,0x60,0x30,0x30,0x00,0x60,0x70,0x30,0x00,0xC0,0x60,0x18,0x00,0xC0,0xE1,0x18,0x00,0x80,0xC3,0x0F,0x00,0x00,0x83,0x07, // 83
+  0x60,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0xE0,0xFF,0x3F,0x00,0xE0,0xFF,0x3F,0x00,0x60,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0x60, // 84
+  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE0,0xFF,0x03,0x00,0xE0,0xFF,0x0F,0x00,0x00,0x00,0x1C,0x00,0x00,0x00,0x38,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0x38,0x00,0x00,0x00,0x1C,0x00,0xE0,0xFF,0x0F,0x00,0xE0,0xFF,0x03, // 85
+  0x20,0x00,0x00,0x00,0xE0,0x01,0x00,0x00,0xC0,0x0F,0x00,0x00,0x00,0x3E,0x00,0x00,0x00,0xF8,0x01,0x00,0x00,0xC0,0x0F,0x00,0x00,0x00,0x3E,0x00,0x00,0x00,0x38,0x00,0x00,0x00,0x3E,0x00,0x00,0xC0,0x0F,0x00,0x00,0xF8,0x01,0x00,0x00,0x3E,0x00,0x00,0xC0,0x0F,0x00,0x00,0xE0,0x01,0x00,0x00,0x20, // 86
+  0x60,0x00,0x00,0x00,0xE0,0x07,0x00,0x00,0x80,0xFF,0x00,0x00,0x00,0xF8,0x0F,0x00,0x00,0x80,0x3F,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0x3F,0x00,0x00,0xE0,0x0F,0x00,0x00,0xFC,0x01,0x00,0x80,0x1F,0x00,0x00,0xE0,0x03,0x00,0x00,0x60,0x00,0x00,0x00,0xE0,0x03,0x00,0x00,0x80,0x1F,0x00,0x00,0x00,0xFC,0x01,0x00,0x00,0xE0,0x0F,0x00,0x00,0x00,0x3F,0x00,0x00,0x00,0x30,0x00,0x00,0x80,0x3F,0x00,0x00,0xF8,0x0F,0x00,0x80,0xFF,0x00,0x00,0xE0,0x07,0x00,0x00,0x60, // 87
+  0x00,0x00,0x20,0x00,0x20,0x00,0x30,0x00,0x60,0x00,0x3C,0x00,0xE0,0x01,0x1E,0x00,0xC0,0x83,0x07,0x00,0x00,0xCF,0x03,0x00,0x00,0xFE,0x01,0x00,0x00,0x38,0x00,0x00,0x00,0xFE,0x01,0x00,0x00,0xCF,0x03,0x00,0xC0,0x03,0x07,0x00,0xE0,0x01,0x1E,0x00,0x60,0x00,0x3C,0x00,0x20,0x00,0x30,0x00,0x00,0x00,0x20, // 88
+  0x20,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0xC0,0x01,0x00,0x00,0x80,0x03,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x1E,0x00,0x00,0x00,0x3C,0x00,0x00,0x00,0xF0,0x3F,0x00,0x00,0xF0,0x3F,0x00,0x00,0x3C,0x00,0x00,0x00,0x1E,0x00,0x00,0x00,0x07,0x00,0x00,0xC0,0x03,0x00,0x00,0xE0,0x01,0x00,0x00,0x60,0x00,0x00,0x00,0x20, // 89
+  0x00,0x00,0x30,0x00,0x60,0x00,0x38,0x00,0x60,0x00,0x3C,0x00,0x60,0x00,0x37,0x00,0x60,0x80,0x33,0x00,0x60,0xC0,0x31,0x00,0x60,0xE0,0x30,0x00,0x60,0x38,0x30,0x00,0x60,0x1C,0x30,0x00,0x60,0x0E,0x30,0x00,0x60,0x07,0x30,0x00,0xE0,0x01,0x30,0x00,0xE0,0x00,0x30,0x00,0x60,0x00,0x30, // 90
+  0x00,0x00,0x00,0x00,0xE0,0xFF,0xFF,0x07,0xE0,0xFF,0xFF,0x07,0x60,0x00,0x00,0x06,0x60,0x00,0x00,0x06,  // 91
+  0x60,0x00,0x00,0x00,0xE0,0x03,0x00,0x00,0x80,0x3F,0x00,0x00,0x00,0xFC,0x01,0x00,0x00,0xE0,0x0F,0x00,0x00,0x00,0x3E,0x00,0x00,0x00,0x30, // 92
+  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x00,0x06,0x60,0x00,0x00,0x06,0xE0,0xFF,0xFF,0x07,0xE0,0xFF,0xFF,0x07,  // 93
+  0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x38,0x00,0x00,0x00,0x1F,0x00,0x00,0xC0,0x07,0x00,0x00,0xE0,0x00,0x00,0x00,0xE0,0x00,0x00,0x00,0xC0,0x07,0x00,0x00,0x00,0x1F,0x00,0x00,0x00,0x38,0x00,0x00,0x00,0x20,  // 94
+  0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x06,  // 95
+  0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0xE0,0x00,0x00,0x00,0x80, // 96
+  0x00,0x00,0x00,0x00,0x00,0x18,0x0E,0x00,0x00,0x1C,0x1F,0x00,0x00,0x8C,0x39,0x00,0x00,0x86,0x31,0x00,0x00,0x86,0x31,0x00,0x00,0xC6,0x30,0x00,0x00,0xC6,0x18,0x00,0x00,0xCE,0x0C,0x00,0x00,0xFC,0x1F,0x00,0x00,0xF8,0x3F,0x00,0x00,0x00,0x20, // 97
+  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE0,0xFF,0x3F,0x00,0xE0,0xFF,0x3F,0x00,0x00,0x18,0x0C,0x00,0x00,0x0C,0x18,0x00,0x00,0x06,0x30,0x00,0x00,0x06,0x30,0x00,0x00,0x06,0x30,0x00,0x00,0x0E,0x38,0x00,0x00,0x1C,0x1C,0x00,0x00,0xF8,0x0F,0x00,0x00,0xE0,0x03, // 98
+  0x00,0x00,0x00,0x00,0x00,0xF0,0x07,0x00,0x00,0xF8,0x0F,0x00,0x00,0x1C,0x1C,0x00,0x00,0x0E,0x38,0x00,0x00,0x06,0x30,0x00,0x00,0x06,0x30,0x00,0x00,0x06,0x30,0x00,0x00,0x0E,0x38,0x00,0x00,0x1C,0x1C,0x00,0x00,0x18,0x0C, // 99
+  0x00,0x00,0x00,0x00,0x00,0xE0,0x03,0x00,0x00,0xF8,0x0F,0x00,0x00,0x1C,0x1C,0x00,0x00,0x0E,0x38,0x00,0x00,0x06,0x30,0x00,0x00,0x06,0x30,0x00,0x00,0x06,0x30,0x00,0x00,0x0C,0x18,0x00,0x00,0x18,0x0C,0x00,0xE0,0xFF,0x3F,0x00,0xE0,0xFF,0x3F, // 100
+  0x00,0x00,0x00,0x00,0x00,0xE0,0x07,0x00,0x00,0xF8,0x0F,0x00,0x00,0xDC,0x1C,0x00,0x00,0xCE,0x38,0x00,0x00,0xC6,0x30,0x00,0x00,0xC6,0x30,0x00,0x00,0xC6,0x30,0x00,0x00,0xCE,0x38,0x00,0x00,0xDC,0x18,0x00,0x00,0xF8,0x0C,0x00,0x00,0xF0,0x04, // 101
+  0x00,0x06,0x00,0x00,0x00,0x06,0x00,0x00,0xC0,0xFF,0x3F,0x00,0xE0,0xFF,0x3F,0x00,0x60,0x06,0x00,0x00,0x60,0x06,0x00,0x00,0x60,0x06,  // 102
+  0x00,0x00,0x00,0x00,0x00,0xE0,0x83,0x01,0x00,0xF8,0x8F,0x03,0x00,0x1C,0x1C,0x07,0x00,0x0E,0x38,0x06,0x00,0x06,0x30,0x06,0x00,0x06,0x30,0x06,0x00,0x06,0x30,0x06,0x00,0x0C,0x18,0x07,0x00,0x18,0x8C,0x03,0x00,0xFE,0xFF,0x01,0x00,0xFE,0xFF, // 103
+  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE0,0xFF,0x3F,0x00,0xE0,0xFF,0x3F,0x00,0x00,0x18,0x00,0x00,0x00,0x0C,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x0E,0x00,0x00,0x00,0xFC,0x3F,0x00,0x00,0xF8,0x3F, // 104
+  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0xFE,0x3F,0x00,0x60,0xFE,0x3F, // 105
+  0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x06,0x60,0xFE,0xFF,0x07,0x60,0xFE,0xFF,0x03,  // 106
+  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE0,0xFF,0x3F,0x00,0xE0,0xFF,0x3F,0x00,0x00,0xC0,0x00,0x00,0x00,0xE0,0x00,0x00,0x00,0xF0,0x01,0x00,0x00,0x98,0x07,0x00,0x00,0x0C,0x0E,0x00,0x00,0x06,0x3C,0x00,0x00,0x02,0x30,0x00,0x00,0x00,0x20, // 107
+  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE0,0xFF,0x3F,0x00,0xE0,0xFF,0x3F, // 108
+  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFE,0x3F,0x00,0x00,0xFE,0x3F,0x00,0x00,0x0C,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x0E,0x00,0x00,0x00,0xFC,0x3F,0x00,0x00,0xF8,0x3F,0x00,0x00,0x0C,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x0E,0x00,0x00,0x00,0xFC,0x3F,0x00,0x00,0xF8,0x3F, // 109
+  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFE,0x3F,0x00,0x00,0xFE,0x3F,0x00,0x00,0x18,0x00,0x00,0x00,0x0C,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x0E,0x00,0x00,0x00,0xFC,0x3F,0x00,0x00,0xF8,0x3F, // 110
+  0x00,0x00,0x00,0x00,0x00,0xF0,0x07,0x00,0x00,0xF8,0x0F,0x00,0x00,0x1C,0x1C,0x00,0x00,0x0E,0x38,0x00,0x00,0x06,0x30,0x00,0x00,0x06,0x30,0x00,0x00,0x06,0x30,0x00,0x00,0x0E,0x38,0x00,0x00,0x1C,0x1C,0x00,0x00,0xF8,0x0F,0x00,0x00,0xF0,0x07, // 111
+  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFE,0xFF,0x07,0x00,0xFE,0xFF,0x07,0x00,0x18,0x0C,0x00,0x00,0x0C,0x18,0x00,0x00,0x06,0x30,0x00,0x00,0x06,0x30,0x00,0x00,0x06,0x30,0x00,0x00,0x0E,0x38,0x00,0x00,0x1C,0x1C,0x00,0x00,0xF8,0x0F,0x00,0x00,0xE0,0x03, // 112
+  0x00,0x00,0x00,0x00,0x00,0xE0,0x03,0x00,0x00,0xF8,0x0F,0x00,0x00,0x1C,0x1C,0x00,0x00,0x0E,0x38,0x00,0x00,0x06,0x30,0x00,0x00,0x06,0x30,0x00,0x00,0x06,0x30,0x00,0x00,0x0C,0x18,0x00,0x00,0x18,0x0C,0x00,0x00,0xFE,0xFF,0x07,0x00,0xFE,0xFF,0x07,  // 113
+  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFE,0x3F,0x00,0x00,0xFE,0x3F,0x00,0x00,0x0C,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x06,  // 114
+  0x00,0x00,0x00,0x00,0x00,0x38,0x0C,0x00,0x00,0x7C,0x1C,0x00,0x00,0xEE,0x38,0x00,0x00,0xC6,0x30,0x00,0x00,0xC6,0x30,0x00,0x00,0xC6,0x31,0x00,0x00,0xC6,0x31,0x00,0x00,0x8E,0x39,0x00,0x00,0x9C,0x1F,0x00,0x00,0x18,0x0F, // 115
+  0x00,0x06,0x00,0x00,0x00,0x06,0x00,0x00,0xC0,0xFF,0x1F,0x00,0xE0,0xFF,0x3F,0x00,0x00,0x06,0x30,0x00,0x00,0x06,0x30,0x00,0x00,0x06,0x30, // 116
+  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFE,0x0F,0x00,0x00,0xFE,0x1F,0x00,0x00,0x00,0x38,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0x18,0x00,0x00,0x00,0x0C,0x00,0x00,0xFE,0x3F,0x00,0x00,0xFE,0x3F, // 117
+  0x00,0x06,0x00,0x00,0x00,0x3E,0x00,0x00,0x00,0xF8,0x00,0x00,0x00,0xC0,0x07,0x00,0x00,0x00,0x1F,0x00,0x00,0x00,0x38,0x00,0x00,0x00,0x1F,0x00,0x00,0xC0,0x07,0x00,0x00,0xF8,0x00,0x00,0x00,0x3E,0x00,0x00,0x00,0x06,  // 118
+  0x00,0x0E,0x00,0x00,0x00,0x7E,0x00,0x00,0x00,0xF0,0x03,0x00,0x00,0x80,0x1F,0x00,0x00,0x00,0x38,0x00,0x00,0x80,0x1F,0x00,0x00,0xE0,0x03,0x00,0x00,0x7C,0x00,0x00,0x00,0x0E,0x00,0x00,0x00,0x7C,0x00,0x00,0x00,0xE0,0x03,0x00,0x00,0x80,0x1F,0x00,0x00,0x00,0x38,0x00,0x00,0x80,0x1F,0x00,0x00,0xF0,0x03,0x00,0x00,0x7E,0x00,0x00,0x00,0x0E,  // 119
+  0x00,0x02,0x20,0x00,0x00,0x06,0x30,0x00,0x00,0x1E,0x3C,0x00,0x00,0x38,0x0E,0x00,0x00,0xF0,0x07,0x00,0x00,0xC0,0x01,0x00,0x00,0xE0,0x07,0x00,0x00,0x38,0x0E,0x00,0x00,0x1C,0x3C,0x00,0x00,0x0E,0x30,0x00,0x00,0x02,0x20, // 120
+  0x00,0x00,0x00,0x00,0x00,0x0E,0x00,0x00,0x00,0x7E,0x00,0x06,0x00,0xF0,0x01,0x06,0x00,0x80,0x0F,0x07,0x00,0x00,0xFE,0x03,0x00,0x00,0xFC,0x00,0x00,0xC0,0x1F,0x00,0x00,0xF8,0x03,0x00,0x00,0x3E,0x00,0x00,0x00,0x06,  // 121
+  0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x00,0x00,0x06,0x3C,0x00,0x00,0x06,0x3E,0x00,0x00,0x06,0x37,0x00,0x00,0xC6,0x33,0x00,0x00,0xE6,0x30,0x00,0x00,0x76,0x30,0x00,0x00,0x3E,0x30,0x00,0x00,0x1E,0x30,0x00,0x00,0x06,0x30, // 122
+  0x00,0x00,0x00,0x00,0x00,0x80,0x01,0x00,0x00,0xC0,0x03,0x00,0xC0,0x7F,0xFE,0x03,0xE0,0x3F,0xFC,0x07,0x60,0x00,0x00,0x06,0x60,0x00,0x00,0x06,  // 123
+  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE0,0xFF,0xFF,0x0F,0xE0,0xFF,0xFF,0x0F,  // 124
+  0x00,0x00,0x00,0x00,0x60,0x00,0x00,0x06,0x60,0x00,0x00,0x06,0xE0,0x3F,0xFC,0x07,0xC0,0x7F,0xFF,0x03,0x00,0xC0,0x03,0x00,0x00,0x80,0x01, // 125
+  0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0x70,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0xC0,0x00,0x00,0x00,0xC0,0x00,0x00,0x00,0xC0,0x00,0x00,0x00,0xE0,0x00,0x00,0x00,0x60,  // 126
+  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE6,0xFF,0x07,0x00,0xE6,0xFF,0x07,  // 161
+  0x00,0x00,0x00,0x00,0x00,0xE0,0x07,0x00,0x00,0xF8,0x0F,0x00,0x00,0x1C,0x9C,0x07,0x00,0x0E,0x78,0x00,0x00,0x06,0x3F,0x00,0x00,0xF6,0x30,0x00,0x00,0x0E,0x30,0x00,0xE0,0x0D,0x1C,0x00,0x00,0x1C,0x0E,0x00,0x00,0x10,0x06, // 162
+  0x00,0x60,0x10,0x00,0x00,0x60,0x38,0x00,0x00,0x7F,0x1C,0x00,0xC0,0xFF,0x1F,0x00,0xE0,0xE0,0x19,0x00,0x60,0x60,0x18,0x00,0x60,0x60,0x18,0x00,0x60,0x60,0x30,0x00,0xE0,0x00,0x30,0x00,0xC0,0x01,0x30,0x00,0x80,0x01,0x38,0x00,0x00,0x00,0x10, // 163
+  0x00,0x00,0x00,0x00,0x00,0x02,0x04,0x00,0x00,0xF7,0x0E,0x00,0x00,0xFE,0x07,0x00,0x00,0x0C,0x03,0x00,0x00,0x06,0x06,0x00,0x00,0x06,0x06,0x00,0x00,0x06,0x06,0x00,0x00,0x06,0x06,0x00,0x00,0x0C,0x03,0x00,0x00,0xFE,0x07,0x00,0x00,0xF7,0x0E,0x00,0x00,0x02,0x04, // 164
+  0xE0,0x60,0x06,0x00,0xC0,0x61,0x06,0x00,0x80,0x67,0x06,0x00,0x00,0x7E,0x06,0x00,0x00,0x7C,0x06,0x00,0x00,0xF0,0x3F,0x00,0x00,0xF0,0x3F,0x00,0x00,0x7C,0x06,0x00,0x00,0x7E,0x06,0x00,0x80,0x67,0x06,0x00,0xC0,0x61,0x06,0x00,0xE0,0x60,0x06,0x00,0x20, // 165
+  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE0,0x7F,0xF8,0x0F,0xE0,0x7F,0xF8,0x0F,  // 166
+  0x00,0x00,0x00,0x00,0x00,0xE0,0x00,0x00,0x80,0xF3,0xC1,0x00,0xC0,0x1F,0xC3,0x03,0xE0,0x0C,0x07,0x03,0x60,0x1C,0x06,0x06,0x60,0x18,0x0C,0x06,0x60,0x30,0x1C,0x06,0xE0,0x70,0x38,0x07,0xC0,0xE1,0xF4,0x03,0x80,0xC1,0xE7,0x01,0x00,0x80,0x03, // 167
+  0x00,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0x60, // 168
+  0x00,0xF8,0x00,0x00,0x00,0xFE,0x03,0x00,0x00,0x07,0x07,0x00,0x80,0x01,0x0C,0x00,0xC0,0x79,0x1C,0x00,0xC0,0xFE,0x19,0x00,0x60,0x86,0x31,0x00,0x60,0x03,0x33,0x00,0x60,0x03,0x33,0x00,0x60,0x03,0x33,0x00,0x60,0x03,0x33,0x00,0x60,0x87,0x33,0x00,0xC0,0x86,0x19,0x00,0xC0,0x85,0x1C,0x00,0x80,0x01,0x0C,0x00,0x00,0x07,0x07,0x00,0x00,0xFE,0x03,0x00,0x00,0xF8,  // 169
+  0x00,0x00,0x00,0x00,0xC0,0x1C,0x00,0x00,0xE0,0x3E,0x00,0x00,0x60,0x32,0x00,0x00,0x60,0x32,0x00,0x00,0xE0,0x3F,0x00,0x00,0xC0,0x3F,  // 170
+  0x00,0x00,0x00,0x00,0x00,0x80,0x00,0x00,0x00,0xE0,0x03,0x00,0x00,0x78,0x0F,0x00,0x00,0x1C,0x1C,0x00,0x00,0x84,0x10,0x00,0x00,0xE0,0x03,0x00,0x00,0x78,0x0F,0x00,0x00,0x1C,0x1C,0x00,0x00,0x04,0x10, // 171
+  0x00,0x00,0x00,0x00,0x00,0x0C,0x00,0x00,0x00,0x0C,0x00,0x00,0x00,0x0C,0x00,0x00,0x00,0x0C,0x00,0x00,0x00,0x0C,0x00,0x00,0x00,0x0C,0x00,0x00,0x00,0x0C,0x00,0x00,0x00,0x0C,0x00,0x00,0x00,0x0C,0x00,0x00,0x00,0xFC,0x01,0x00,0x00,0xFC,0x01, // 172
+  0x00,0x80,0x01,0x00,0x00,0x80,0x01,0x00,0x00,0x80,0x01,0x00,0x00,0x80,0x01,0x00,0x00,0x80,0x01,0x00,0x00,0x80,0x01,0x00,0x00,0x80,0x01, // 173
+  0x00,0xF8,0x00,0x00,0x00,0xFE,0x03,0x00,0x00,0x07,0x07,0x00,0x80,0x01,0x0C,0x00,0xC0,0x01,0x1C,0x00,0xC0,0xFE,0x1B,0x00,0x60,0xFE,0x33,0x00,0x60,0x66,0x30,0x00,0x60,0x66,0x30,0x00,0x60,0xE6,0x30,0x00,0x60,0xFE,0x31,0x00,0x60,0x3C,0x33,0x00,0xC0,0x00,0x1A,0x00,0xC0,0x01,0x1C,0x00,0x80,0x01,0x0C,0x00,0x00,0x07,0x07,0x00,0x00,0xFE,0x03,0x00,0x00,0xF8,  // 174
+  0x0C,0x00,0x00,0x00,0x0C,0x00,0x00,0x00,0x0C,0x00,0x00,0x00,0x0C,0x00,0x00,0x00,0x0C,0x00,0x00,0x00,0x0C,0x00,0x00,0x00,0x0C,0x00,0x00,0x00,0x0C,0x00,0x00,0x00,0x0C,0x00,0x00,0x00,0x0C,0x00,0x00,0x00,0x0C,0x00,0x00,0x00,0x0C,0x00,0x00,0x00,0x0C, // 175
+  0x00,0x00,0x00,0x00,0x80,0x03,0x00,0x00,0x40,0x04,0x00,0x00,0x20,0x08,0x00,0x00,0x20,0x08,0x00,0x00,0x20,0x08,0x00,0x00,0x40,0x04,0x00,0x00,0x80,0x03,  // 176
+  0x00,0x00,0x00,0x00,0x00,0x60,0x30,0x00,0x00,0x60,0x30,0x00,0x00,0x60,0x30,0x00,0x00,0x60,0x30,0x00,0x00,0x60,0x30,0x00,0x00,0xFF,0x3F,0x00,0x00,0xFF,0x3F,0x00,0x00,0x60,0x30,0x00,0x00,0x60,0x30,0x00,0x00,0x60,0x30,0x00,0x00,0x60,0x30,0x00,0x00,0x60,0x30, // 177
+  0x40,0x20,0x00,0x00,0x60,0x30,0x00,0x00,0x20,0x38,0x00,0x00,0x20,0x2C,0x00,0x00,0x20,0x26,0x00,0x00,0xE0,0x23,0x00,0x00,0xC0,0x21,  // 178
+  0x40,0x10,0x00,0x00,0x60,0x30,0x00,0x00,0x20,0x20,0x00,0x00,0x20,0x22,0x00,0x00,0x20,0x22,0x00,0x00,0xE0,0x3D,0x00,0x00,0xC0,0x1D,  // 179
+  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x00,0x00,0x00,0xE0,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0x20, // 180
+  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFE,0xFF,0x07,0x00,0xFE,0xFF,0x07,0x00,0x00,0x1C,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0x1C,0x00,0x00,0xFE,0x3F,0x00,0x00,0xFE,0x3F, // 181
+  0x00,0x0F,0x00,0x00,0xC0,0x3F,0x00,0x00,0xC0,0x3F,0x00,0x00,0xE0,0x7F,0x00,0x00,0xE0,0x7F,0x00,0x00,0xE0,0xFF,0xFF,0x07,0xE0,0xFF,0xFF,0x07,0x60,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0xE0,0xFF,0xFF,0x07,0xE0,0xFF,0xFF,0x07,0x60,0x00,0x00,0x00,0x60, // 182
+  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0x60,  // 183
+  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x02,0x00,0x00,0xC0,0x02,0x00,0x00,0x80,0x03,0x00,0x00,0x00,0x01,  // 184
+  0x00,0x00,0x00,0x00,0x80,0x01,0x00,0x00,0xC0,0x00,0x00,0x00,0xC0,0x00,0x00,0x00,0xE0,0x3F,0x00,0x00,0xE0,0x3F,  // 185
+  0x00,0x00,0x00,0x00,0x80,0x0F,0x00,0x00,0xC0,0x1F,0x00,0x00,0xE0,0x38,0x00,0x00,0x60,0x30,0x00,0x00,0xE0,0x38,0x00,0x00,0xC0,0x1F,0x00,0x00,0x80,0x0F,  // 186
+  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x10,0x00,0x00,0x1C,0x1C,0x00,0x00,0x78,0x0F,0x00,0x00,0xE0,0x03,0x00,0x00,0x84,0x10,0x00,0x00,0x1C,0x1C,0x00,0x00,0x78,0x0F,0x00,0x00,0xE0,0x03,0x00,0x00,0x80,  // 187
+  0x00,0x00,0x00,0x00,0x80,0x01,0x00,0x00,0xC0,0x00,0x00,0x00,0xC0,0x00,0x20,0x00,0xE0,0x3F,0x38,0x00,0xE0,0x3F,0x1C,0x00,0x00,0x00,0x0E,0x00,0x00,0x80,0x03,0x00,0x00,0xC0,0x01,0x00,0x00,0xE0,0x00,0x00,0x00,0x38,0x00,0x00,0x00,0x1C,0x00,0x00,0x00,0x0E,0x00,0x00,0x00,0x07,0x0C,0x00,0xC0,0x01,0x0E,0x00,0xE0,0x80,0x0B,0x00,0x60,0xC0,0x08,0x00,0x00,0xE0,0x3F,0x00,0x00,0xE0,0x3F,0x00,0x00,0x00,0x08, // 188
+  0x00,0x00,0x00,0x00,0x80,0x01,0x00,0x00,0xC0,0x00,0x00,0x00,0xC0,0x00,0x20,0x00,0xE0,0x3F,0x30,0x00,0xE0,0x3F,0x1C,0x00,0x00,0x00,0x0E,0x00,0x00,0x00,0x07,0x00,0x00,0xC0,0x01,0x00,0x00,0xE0,0x00,0x00,0x00,0x70,0x00,0x00,0x00,0x1C,0x00,0x00,0x00,0x4E,0x20,0x00,0x00,0x67,0x30,0x00,0xC0,0x21,0x38,0x00,0xE0,0x20,0x2C,0x00,0x60,0x20,0x26,0x00,0x00,0xE0,0x27,0x00,0x00,0xC0,0x21, // 189
+  0x40,0x10,0x00,0x00,0x60,0x30,0x00,0x00,0x20,0x20,0x00,0x00,0x20,0x22,0x20,0x00,0x20,0x22,0x30,0x00,0xE0,0x3D,0x38,0x00,0xC0,0x1D,0x0E,0x00,0x00,0x00,0x07,0x00,0x00,0x80,0x03,0x00,0x00,0xE0,0x00,0x00,0x00,0x70,0x00,0x00,0x00,0x38,0x00,0x00,0x00,0x0E,0x0C,0x00,0x00,0x07,0x0E,0x00,0x80,0x83,0x0B,0x00,0xE0,0xC0,0x08,0x00,0x60,0xE0,0x3F,0x00,0x20,0xE0,0x3F,0x00,0x00,0x00,0x08, // 190
+  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xF0,0x00,0x00,0x00,0xF8,0x03,0x00,0x00,0x1E,0x03,0x00,0x00,0x07,0x07,0x00,0xE6,0x03,0x06,0x00,0xE6,0x01,0x06,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x07,0x00,0x00,0x80,0x03,0x00,0x00,0xC0,0x01,0x00,0x00,0xC0, // 191
+  0x00,0x00,0x30,0x00,0x00,0x00,0x3E,0x00,0x00,0x80,0x0F,0x00,0x00,0xF0,0x03,0x00,0x00,0xFE,0x01,0x00,0x82,0x8F,0x01,0x00,0xE6,0x83,0x01,0x00,0x6E,0x80,0x01,0x00,0xE8,0x83,0x01,0x00,0x80,0x8F,0x01,0x00,0x00,0xFE,0x01,0x00,0x00,0xF0,0x03,0x00,0x00,0x80,0x0F,0x00,0x00,0x00,0x3E,0x00,0x00,0x00,0x30, // 192
+  0x00,0x00,0x30,0x00,0x00,0x00,0x3E,0x00,0x00,0x80,0x0F,0x00,0x00,0xF0,0x03,0x00,0x00,0xFE,0x01,0x00,0x80,0x8F,0x01,0x00,0xE8,0x83,0x01,0x00,0x6E,0x80,0x01,0x00,0xE6,0x83,0x01,0x00,0x82,0x8F,0x01,0x00,0x00,0xFE,0x01,0x00,0x00,0xF0,0x03,0x00,0x00,0x80,0x0F,0x00,0x00,0x00,0x3E,0x00,0x00,0x00,0x30, // 193
+  0x00,0x00,0x30,0x00,0x00,0x00,0x3E,0x00,0x00,0x80,0x0F,0x00,0x00,0xF0,0x03,0x00,0x00,0xFE,0x01,0x00,0x88,0x8F,0x01,0x00,0xEC,0x83,0x01,0x00,0x66,0x80,0x01,0x00,0xE6,0x83,0x01,0x00,0x8C,0x8F,0x01,0x00,0x08,0xFE,0x01,0x00,0x00,0xF0,0x03,0x00,0x00,0x80,0x0F,0x00,0x00,0x00,0x3E,0x00,0x00,0x00,0x30, // 194
+  0x00,0x00,0x30,0x00,0x00,0x00,0x3E,0x00,0x00,0x80,0x0F,0x00,0x00,0xF0,0x03,0x00,0x0C,0xFE,0x01,0x00,0x8E,0x8F,0x01,0x00,0xE6,0x83,0x01,0x00,0x66,0x80,0x01,0x00,0xEC,0x83,0x01,0x00,0x8C,0x8F,0x01,0x00,0x0E,0xFE,0x01,0x00,0x06,0xF0,0x03,0x00,0x00,0x80,0x0F,0x00,0x00,0x00,0x3E,0x00,0x00,0x00,0x30, // 195
+  0x00,0x00,0x30,0x00,0x00,0x00,0x3E,0x00,0x00,0x80,0x0F,0x00,0x00,0xF0,0x03,0x00,0x00,0xFE,0x01,0x00,0x8C,0x8F,0x01,0x00,0xEC,0x83,0x01,0x00,0x60,0x80,0x01,0x00,0xE0,0x83,0x01,0x00,0x8C,0x8F,0x01,0x00,0x0C,0xFE,0x01,0x00,0x00,0xF0,0x03,0x00,0x00,0x80,0x0F,0x00,0x00,0x00,0x3E,0x00,0x00,0x00,0x30, // 196
+  0x00,0x00,0x30,0x00,0x00,0x00,0x3E,0x00,0x00,0x80,0x0F,0x00,0x00,0xF0,0x03,0x00,0x00,0xFE,0x01,0x00,0x9C,0x8F,0x01,0x00,0xE2,0x83,0x01,0x00,0x62,0x80,0x01,0x00,0xE2,0x83,0x01,0x00,0x9C,0x8F,0x01,0x00,0x00,0xFE,0x01,0x00,0x00,0xF0,0x03,0x00,0x00,0x80,0x0F,0x00,0x00,0x00,0x3E,0x00,0x00,0x00,0x30, // 197
+  0x00,0x00,0x30,0x00,0x00,0x00,0x3C,0x00,0x00,0x00,0x0F,0x00,0x00,0xC0,0x03,0x00,0x00,0xF0,0x01,0x00,0x00,0xBC,0x01,0x00,0x00,0x8F,0x01,0x00,0xC0,0x83,0x01,0x00,0xE0,0x80,0x01,0x00,0x60,0x80,0x01,0x00,0x60,0x80,0x01,0x00,0xE0,0xFF,0x3F,0x00,0xE0,0xFF,0x3F,0x00,0x60,0x30,0x30,0x00,0x60,0x30,0x30,0x00,0x60,0x30,0x30,0x00,0x60,0x30,0x30,0x00,0x60,0x30,0x30,0x00,0x60,0x30,0x30,0x00,0x60,0x30,0x30,0x00,0x60,0x30,0x30,0x00,0x60,0x30,0x30,0x00,0x60,0x00,0x30, // 198
+  0x00,0x00,0x00,0x00,0x00,0xFC,0x01,0x00,0x00,0xFF,0x07,0x00,0x80,0x07,0x0F,0x00,0xC0,0x01,0x1C,0x00,0xC0,0x00,0x18,0x00,0x60,0x00,0x30,0x02,0x60,0x00,0x30,0x02,0x60,0x00,0xF0,0x02,0x60,0x00,0xB0,0x03,0x60,0x00,0x30,0x01,0x60,0x00,0x30,0x00,0xC0,0x00,0x18,0x00,0xC0,0x01,0x1C,0x00,0x80,0x03,0x0F,0x00,0x00,0x02,0x03, // 199
+  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE0,0xFF,0x3F,0x00,0xE0,0xFF,0x3F,0x00,0x60,0x30,0x30,0x00,0x60,0x30,0x30,0x00,0x62,0x30,0x30,0x00,0x66,0x30,0x30,0x00,0x6E,0x30,0x30,0x00,0x68,0x30,0x30,0x00,0x60,0x30,0x30,0x00,0x60,0x30,0x30,0x00,0x60,0x30,0x30,0x00,0x60,0x30,0x30,0x00,0x60,0x00,0x30, // 200
+  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE0,0xFF,0x3F,0x00,0xE0,0xFF,0x3F,0x00,0x60,0x30,0x30,0x00,0x60,0x30,0x30,0x00,0x60,0x30,0x30,0x00,0x68,0x30,0x30,0x00,0x6E,0x30,0x30,0x00,0x66,0x30,0x30,0x00,0x62,0x30,0x30,0x00,0x60,0x30,0x30,0x00,0x60,0x30,0x30,0x00,0x60,0x30,0x30,0x00,0x60,0x00,0x30, // 201
+  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE0,0xFF,0x3F,0x00,0xE0,0xFF,0x3F,0x00,0x60,0x30,0x30,0x00,0x60,0x30,0x30,0x00,0x68,0x30,0x30,0x00,0x6C,0x30,0x30,0x00,0x66,0x30,0x30,0x00,0x66,0x30,0x30,0x00,0x6C,0x30,0x30,0x00,0x68,0x30,0x30,0x00,0x60,0x30,0x30,0x00,0x60,0x30,0x30,0x00,0x60,0x00,0x30, // 202
+  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE0,0xFF,0x3F,0x00,0xE0,0xFF,0x3F,0x00,0x60,0x30,0x30,0x00,0x60,0x30,0x30,0x00,0x6C,0x30,0x30,0x00,0x6C,0x30,0x30,0x00,0x60,0x30,0x30,0x00,0x60,0x30,0x30,0x00,0x6C,0x30,0x30,0x00,0x6C,0x30,0x30,0x00,0x60,0x30,0x30,0x00,0x60,0x30,0x30,0x00,0x60,0x00,0x30, // 203
+  0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0xE6,0xFF,0x3F,0x00,0xEE,0xFF,0x3F,0x00,0x08, // 204
+  0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0xEE,0xFF,0x3F,0x00,0xE6,0xFF,0x3F,0x00,0x02, // 205
+  0x08,0x00,0x00,0x00,0x0C,0x00,0x00,0x00,0xE6,0xFF,0x3F,0x00,0xE6,0xFF,0x3F,0x00,0x0C,0x00,0x00,0x00,0x08, // 206
+  0x0C,0x00,0x00,0x00,0x0C,0x00,0x00,0x00,0xE0,0xFF,0x3F,0x00,0xE0,0xFF,0x3F,0x00,0x0C,0x00,0x00,0x00,0x0C, // 207
+  0x00,0x30,0x00,0x00,0x00,0x30,0x00,0x00,0xE0,0xFF,0x3F,0x00,0xE0,0xFF,0x3F,0x00,0x60,0x30,0x30,0x00,0x60,0x30,0x30,0x00,0x60,0x30,0x30,0x00,0x60,0x30,0x30,0x00,0x60,0x30,0x30,0x00,0x60,0x00,0x30,0x00,0x60,0x00,0x30,0x00,0xE0,0x00,0x18,0x00,0xC0,0x01,0x1C,0x00,0x80,0x03,0x0E,0x00,0x00,0xFF,0x07,0x00,0x00,0xFC,0x01, // 208
+  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE0,0xFF,0x3F,0x00,0xE0,0xFF,0x3F,0x00,0xC0,0x01,0x00,0x00,0x8C,0x03,0x00,0x00,0x0E,0x0E,0x00,0x00,0x06,0x3C,0x00,0x00,0x06,0x70,0x00,0x00,0x0C,0xE0,0x01,0x00,0x0C,0x80,0x03,0x00,0x0E,0x00,0x0F,0x00,0x06,0x00,0x1C,0x00,0xE0,0xFF,0x3F,0x00,0xE0,0xFF,0x3F, // 209
+  0x00,0x00,0x00,0x00,0x00,0xFC,0x01,0x00,0x00,0xFF,0x07,0x00,0x80,0x07,0x0F,0x00,0xC0,0x01,0x1C,0x00,0xC0,0x00,0x18,0x00,0xE0,0x00,0x38,0x00,0x62,0x00,0x30,0x00,0x66,0x00,0x30,0x00,0x6E,0x00,0x30,0x00,0x68,0x00,0x30,0x00,0x60,0x00,0x30,0x00,0xE0,0x00,0x38,0x00,0xC0,0x00,0x18,0x00,0xC0,0x01,0x1C,0x00,0x80,0x07,0x0F,0x00,0x00,0xFF,0x07,0x00,0x00,0xFC,0x01, // 210
+  0x00,0x00,0x00,0x00,0x00,0xFC,0x01,0x00,0x00,0xFF,0x07,0x00,0x80,0x07,0x0F,0x00,0xC0,0x01,0x1C,0x00,0xC0,0x00,0x18,0x00,0xE0,0x00,0x38,0x00,0x60,0x00,0x30,0x00,0x68,0x00,0x30,0x00,0x6E,0x00,0x30,0x00,0x66,0x00,0x30,0x00,0x62,0x00,0x30,0x00,0xE0,0x00,0x38,0x00,0xC0,0x00,0x18,0x00,0xC0,0x01,0x1C,0x00,0x80,0x07,0x0F,0x00,0x00,0xFF,0x07,0x00,0x00,0xFC,0x01, // 211
+  0x00,0x00,0x00,0x00,0x00,0xFC,0x01,0x00,0x00,0xFF,0x07,0x00,0x80,0x07,0x0F,0x00,0xC0,0x01,0x1C,0x00,0xC0,0x00,0x18,0x00,0xE0,0x00,0x38,0x00,0x68,0x00,0x30,0x00,0x6C,0x00,0x30,0x00,0x66,0x00,0x30,0x00,0x66,0x00,0x30,0x00,0x6C,0x00,0x30,0x00,0xE8,0x00,0x38,0x00,0xC0,0x00,0x18,0x00,0xC0,0x01,0x1C,0x00,0x80,0x07,0x0F,0x00,0x00,0xFF,0x07,0x00,0x00,0xFC,0x01, // 212
+  0x00,0x00,0x00,0x00,0x00,0xFC,0x01,0x00,0x00,0xFF,0x07,0x00,0x80,0x07,0x0F,0x00,0xC0,0x01,0x1C,0x00,0xCC,0x00,0x18,0x00,0xEE,0x00,0x38,0x00,0x66,0x00,0x30,0x00,0x66,0x00,0x30,0x00,0x6C,0x00,0x30,0x00,0x6C,0x00,0x30,0x00,0x6E,0x00,0x30,0x00,0xE6,0x00,0x38,0x00,0xC0,0x00,0x18,0x00,0xC0,0x01,0x1C,0x00,0x80,0x07,0x0F,0x00,0x00,0xFF,0x07,0x00,0x00,0xFC,0x01, // 213
+  0x00,0x00,0x00,0x00,0x00,0xFC,0x01,0x00,0x00,0xFF,0x07,0x00,0x80,0x07,0x0F,0x00,0xC0,0x01,0x1C,0x00,0xC0,0x00,0x18,0x00,0xE0,0x00,0x38,0x00,0x6C,0x00,0x30,0x00,0x6C,0x00,0x30,0x00,0x60,0x00,0x30,0x00,0x60,0x00,0x30,0x00,0x6C,0x00,0x30,0x00,0xEC,0x00,0x38,0x00,0xC0,0x00,0x18,0x00,0xC0,0x01,0x1C,0x00,0x80,0x07,0x0F,0x00,0x00,0xFF,0x07,0x00,0x00,0xFC,0x01, // 214
+  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x03,0x00,0x00,0x8E,0x03,0x00,0x00,0xDC,0x01,0x00,0x00,0xF8,0x00,0x00,0x00,0x70,0x00,0x00,0x00,0xF8,0x00,0x00,0x00,0xDC,0x01,0x00,0x00,0x8E,0x03,0x00,0x00,0x06,0x03, // 215
+  0x00,0x00,0x00,0x00,0x00,0xFC,0x21,0x00,0x00,0xFF,0x77,0x00,0x80,0x07,0x3F,0x00,0xC0,0x01,0x1E,0x00,0xC0,0x00,0x1F,0x00,0xE0,0x80,0x3B,0x00,0x60,0xC0,0x31,0x00,0x60,0xE0,0x30,0x00,0x60,0x70,0x30,0x00,0x60,0x38,0x30,0x00,0x60,0x1C,0x30,0x00,0xE0,0x0E,0x38,0x00,0xC0,0x07,0x18,0x00,0xC0,0x03,0x1C,0x00,0xE0,0x07,0x0F,0x00,0x70,0xFF,0x07,0x00,0x20,0xFC,0x01, // 216
+  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE0,0xFF,0x03,0x00,0xE0,0xFF,0x0F,0x00,0x00,0x00,0x1C,0x00,0x00,0x00,0x38,0x00,0x02,0x00,0x30,0x00,0x06,0x00,0x30,0x00,0x0E,0x00,0x30,0x00,0x08,0x00,0x30,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0x38,0x00,0x00,0x00,0x1C,0x00,0xE0,0xFF,0x0F,0x00,0xE0,0xFF,0x03, // 217
+  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE0,0xFF,0x03,0x00,0xE0,0xFF,0x0F,0x00,0x00,0x00,0x1C,0x00,0x00,0x00,0x38,0x00,0x00,0x00,0x30,0x00,0x08,0x00,0x30,0x00,0x0E,0x00,0x30,0x00,0x06,0x00,0x30,0x00,0x02,0x00,0x30,0x00,0x00,0x00,0x38,0x00,0x00,0x00,0x1C,0x00,0xE0,0xFF,0x0F,0x00,0xE0,0xFF,0x03, // 218
+  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE0,0xFF,0x03,0x00,0xE0,0xFF,0x0F,0x00,0x00,0x00,0x1C,0x00,0x00,0x00,0x38,0x00,0x08,0x00,0x30,0x00,0x0C,0x00,0x30,0x00,0x06,0x00,0x30,0x00,0x06,0x00,0x30,0x00,0x0C,0x00,0x30,0x00,0x08,0x00,0x38,0x00,0x00,0x00,0x1C,0x00,0xE0,0xFF,0x0F,0x00,0xE0,0xFF,0x03, // 219
+  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE0,0xFF,0x03,0x00,0xE0,0xFF,0x0F,0x00,0x00,0x00,0x1C,0x00,0x00,0x00,0x38,0x00,0x0C,0x00,0x30,0x00,0x0C,0x00,0x30,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0x30,0x00,0x0C,0x00,0x30,0x00,0x0C,0x00,0x38,0x00,0x00,0x00,0x1C,0x00,0xE0,0xFF,0x0F,0x00,0xE0,0xFF,0x03, // 220
+  0x20,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0xC0,0x01,0x00,0x00,0x80,0x03,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x1E,0x00,0x00,0x00,0x3C,0x00,0x00,0x08,0xF0,0x3F,0x00,0x0E,0xF0,0x3F,0x00,0x06,0x3C,0x00,0x00,0x02,0x1E,0x00,0x00,0x00,0x07,0x00,0x00,0xC0,0x03,0x00,0x00,0xE0,0x01,0x00,0x00,0x60,0x00,0x00,0x00,0x20, // 221
+  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE0,0xFF,0x3F,0x00,0xE0,0xFF,0x3F,0x00,0x00,0x03,0x06,0x00,0x00,0x03,0x06,0x00,0x00,0x03,0x06,0x00,0x00,0x03,0x06,0x00,0x00,0x03,0x06,0x00,0x00,0x03,0x06,0x00,0x00,0x03,0x06,0x00,0x00,0x03,0x07,0x00,0x00,0x86,0x03,0x00,0x00,0xFE,0x01,0x00,0x00,0xF8,  // 222
+  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0xFF,0x3F,0x00,0xC0,0xFF,0x3F,0x00,0xC0,0x00,0x00,0x00,0x60,0x00,0x08,0x00,0x60,0x00,0x1C,0x00,0x60,0x00,0x38,0x00,0xE0,0x78,0x30,0x00,0xC0,0x7F,0x30,0x00,0x80,0xC7,0x30,0x00,0x00,0x80,0x39,0x00,0x00,0x80,0x1F,0x00,0x00,0x00,0x0F, // 223
+  0x00,0x00,0x00,0x00,0x00,0x18,0x0E,0x00,0x00,0x1C,0x1F,0x00,0x00,0x8C,0x39,0x00,0x20,0x86,0x31,0x00,0x60,0x86,0x31,0x00,0xE0,0xC6,0x30,0x00,0x80,0xC6,0x18,0x00,0x00,0xCE,0x0C,0x00,0x00,0xFC,0x1F,0x00,0x00,0xF8,0x3F,0x00,0x00,0x00,0x20, // 224
+  0x00,0x00,0x00,0x00,0x00,0x18,0x0E,0x00,0x00,0x1C,0x1F,0x00,0x00,0x8C,0x39,0x00,0x00,0x86,0x31,0x00,0x80,0x86,0x31,0x00,0xE0,0xC6,0x30,0x00,0x60,0xC6,0x18,0x00,0x20,0xCE,0x0C,0x00,0x00,0xFC,0x1F,0x00,0x00,0xF8,0x3F,0x00,0x00,0x00,0x20, // 225
+  0x00,0x00,0x00,0x00,0x00,0x18,0x0E,0x00,0x00,0x1C,0x1F,0x00,0x80,0x8C,0x39,0x00,0xC0,0x86,0x31,0x00,0x60,0x86,0x31,0x00,0x60,0xC6,0x30,0x00,0xC0,0xC6,0x18,0x00,0x80,0xCE,0x0C,0x00,0x00,0xFC,0x1F,0x00,0x00,0xF8,0x3F,0x00,0x00,0x00,0x20, // 226
+  0x00,0x00,0x00,0x00,0x00,0x18,0x0E,0x00,0xC0,0x1C,0x1F,0x00,0xE0,0x8C,0x39,0x00,0x60,0x86,0x31,0x00,0x60,0x86,0x31,0x00,0xC0,0xC6,0x30,0x00,0xC0,0xC6,0x18,0x00,0xE0,0xCE,0x0C,0x00,0x60,0xFC,0x1F,0x00,0x00,0xF8,0x3F,0x00,0x00,0x00,0x20, // 227
+  0x00,0x00,0x00,0x00,0x00,0x18,0x0E,0x00,0x00,0x1C,0x1F,0x00,0xC0,0x8C,0x39,0x00,0xC0,0x86,0x31,0x00,0x00,0x86,0x31,0x00,0x00,0xC6,0x30,0x00,0xC0,0xC6,0x18,0x00,0xC0,0xCE,0x0C,0x00,0x00,0xFC,0x1F,0x00,0x00,0xF8,0x3F,0x00,0x00,0x00,0x20, // 228
+  0x00,0x00,0x00,0x00,0x00,0x18,0x0E,0x00,0x00,0x1C,0x1F,0x00,0x00,0x8C,0x39,0x00,0x70,0x86,0x31,0x00,0x88,0x86,0x31,0x00,0x88,0xC6,0x30,0x00,0x88,0xC6,0x18,0x00,0x70,0xCE,0x0C,0x00,0x00,0xFC,0x1F,0x00,0x00,0xF8,0x3F,0x00,0x00,0x00,0x20, // 229
+  0x00,0x00,0x00,0x00,0x00,0x10,0x0F,0x00,0x00,0x9C,0x1F,0x00,0x00,0xCC,0x39,0x00,0x00,0xC6,0x30,0x00,0x00,0xC6,0x30,0x00,0x00,0xC6,0x30,0x00,0x00,0xC6,0x30,0x00,0x00,0x66,0x18,0x00,0x00,0x6E,0x1C,0x00,0x00,0xFC,0x0F,0x00,0x00,0xFC,0x1F,0x00,0x00,0xCC,0x1C,0x00,0x00,0xCE,0x38,0x00,0x00,0xC6,0x30,0x00,0x00,0xC6,0x30,0x00,0x00,0xC6,0x30,0x00,0x00,0xC6,0x30,0x00,0x00,0xCC,0x18,0x00,0x00,0xF8,0x0C,0x00,0x00,0xE0,0x04, // 230
+  0x00,0x00,0x00,0x00,0x00,0xF0,0x07,0x00,0x00,0xF8,0x0F,0x00,0x00,0x1C,0x1C,0x00,0x00,0x0E,0x38,0x02,0x00,0x06,0x30,0x02,0x00,0x06,0xF0,0x02,0x00,0x06,0xB0,0x03,0x00,0x0E,0x38,0x01,0x00,0x1C,0x1C,0x00,0x00,0x18,0x0C, // 231
+  0x00,0x00,0x00,0x00,0x00,0xE0,0x07,0x00,0x00,0xF8,0x0F,0x00,0x00,0xDC,0x1C,0x00,0x20,0xCE,0x38,0x00,0x60,0xC6,0x30,0x00,0xE0,0xC6,0x30,0x00,0x80,0xC6,0x30,0x00,0x00,0xCE,0x38,0x00,0x00,0xDC,0x18,0x00,0x00,0xF8,0x0C,0x00,0x00,0xF0,0x04, // 232
+  0x00,0x00,0x00,0x00,0x00,0xE0,0x07,0x00,0x00,0xF8,0x0F,0x00,0x00,0xDC,0x1C,0x00,0x00,0xCE,0x38,0x00,0x80,0xC6,0x30,0x00,0xE0,0xC6,0x30,0x00,0x60,0xC6,0x30,0x00,0x20,0xCE,0x38,0x00,0x00,0xDC,0x18,0x00,0x00,0xF8,0x0C,0x00,0x00,0xF0,0x04, // 233
+  0x00,0x00,0x00,0x00,0x00,0xE0,0x07,0x00,0x00,0xF8,0x0F,0x00,0x00,0xDC,0x1C,0x00,0x80,0xCE,0x38,0x00,0xC0,0xC6,0x30,0x00,0x60,0xC6,0x30,0x00,0x60,0xC6,0x30,0x00,0xC0,0xCE,0x38,0x00,0x80,0xDC,0x18,0x00,0x00,0xF8,0x0C,0x00,0x00,0xF0,0x04, // 234
+  0x00,0x00,0x00,0x00,0x00,0xE0,0x07,0x00,0x00,0xF8,0x0F,0x00,0x00,0xDC,0x1C,0x00,0xC0,0xCE,0x38,0x00,0xC0,0xC6,0x30,0x00,0x00,0xC6,0x30,0x00,0x00,0xC6,0x30,0x00,0xC0,0xCE,0x38,0x00,0xC0,0xDC,0x18,0x00,0x00,0xF8,0x0C,0x00,0x00,0xF0,0x04, // 235
+  0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x60,0xFE,0x3F,0x00,0xE0,0xFE,0x3F,0x00,0x80, // 236
+  0x00,0x00,0x00,0x00,0x80,0x00,0x00,0x00,0xE0,0xFE,0x3F,0x00,0x60,0xFE,0x3F,0x00,0x20, // 237
+  0x80,0x00,0x00,0x00,0xC0,0x00,0x00,0x00,0x60,0xFE,0x3F,0x00,0x60,0xFE,0x3F,0x00,0xC0,0x00,0x00,0x00,0x80, // 238
+  0xC0,0x00,0x00,0x00,0xC0,0x00,0x00,0x00,0x00,0xFE,0x3F,0x00,0x00,0xFE,0x3F,0x00,0xC0,0x00,0x00,0x00,0xC0, // 239
+  0x00,0x00,0x00,0x00,0x00,0xF0,0x07,0x00,0x00,0xF8,0x0F,0x00,0x00,0x1D,0x1C,0x00,0xA0,0x0F,0x38,0x00,0xA0,0x06,0x30,0x00,0xE0,0x06,0x30,0x00,0xC0,0x06,0x30,0x00,0xC0,0x0F,0x38,0x00,0x20,0x1F,0x1C,0x00,0x00,0xFC,0x0F,0x00,0x00,0xE0,0x07, // 240
+  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFE,0x3F,0x00,0xC0,0xFE,0x3F,0x00,0xE0,0x18,0x00,0x00,0x60,0x0C,0x00,0x00,0x60,0x06,0x00,0x00,0xC0,0x06,0x00,0x00,0xC0,0x06,0x00,0x00,0xE0,0x0E,0x00,0x00,0x60,0xFC,0x3F,0x00,0x00,0xF8,0x3F, // 241
+  0x00,0x00,0x00,0x00,0x00,0xF0,0x07,0x00,0x00,0xF8,0x0F,0x00,0x00,0x1C,0x1C,0x00,0x20,0x0E,0x38,0x00,0x60,0x06,0x30,0x00,0xE0,0x06,0x30,0x00,0x80,0x06,0x30,0x00,0x00,0x0E,0x38,0x00,0x00,0x1C,0x1C,0x00,0x00,0xF8,0x0F,0x00,0x00,0xF0,0x07, // 242
+  0x00,0x00,0x00,0x00,0x00,0xF0,0x07,0x00,0x00,0xF8,0x0F,0x00,0x00,0x1C,0x1C,0x00,0x00,0x0E,0x38,0x00,0x80,0x06,0x30,0x00,0xE0,0x06,0x30,0x00,0x60,0x06,0x30,0x00,0x20,0x0E,0x38,0x00,0x00,0x1C,0x1C,0x00,0x00,0xF8,0x0F,0x00,0x00,0xF0,0x07, // 243
+  0x00,0x00,0x00,0x00,0x00,0xF0,0x07,0x00,0x00,0xF8,0x0F,0x00,0x00,0x1C,0x1C,0x00,0x80,0x0E,0x38,0x00,0xC0,0x06,0x30,0x00,0x60,0x06,0x30,0x00,0x60,0x06,0x30,0x00,0xC0,0x0E,0x38,0x00,0x80,0x1C,0x1C,0x00,0x00,0xF8,0x0F,0x00,0x00,0xF0,0x07, // 244
+  0x00,0x00,0x00,0x00,0x00,0xF0,0x07,0x00,0x00,0xF8,0x0F,0x00,0xC0,0x1C,0x1C,0x00,0xE0,0x0E,0x38,0x00,0x60,0x06,0x30,0x00,0x60,0x06,0x30,0x00,0xC0,0x06,0x30,0x00,0xC0,0x0E,0x38,0x00,0xE0,0x1C,0x1C,0x00,0x60,0xF8,0x0F,0x00,0x00,0xF0,0x07, // 245
+  0x00,0x00,0x00,0x00,0x00,0xF0,0x07,0x00,0x00,0xF8,0x0F,0x00,0x00,0x1C,0x1C,0x00,0xC0,0x0E,0x38,0x00,0xC0,0x06,0x30,0x00,0x00,0x06,0x30,0x00,0x00,0x06,0x30,0x00,0xC0,0x0E,0x38,0x00,0xC0,0x1C,0x1C,0x00,0x00,0xF8,0x0F,0x00,0x00,0xF0,0x07, // 246
+  0x00,0x00,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0xB6,0x01,0x00,0x00,0xB6,0x01,0x00,0x00,0x30,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0x30,  // 247
+  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xF0,0x67,0x00,0x00,0xF8,0x7F,0x00,0x00,0x1C,0x1C,0x00,0x00,0x0E,0x3F,0x00,0x00,0x86,0x33,0x00,0x00,0xE6,0x31,0x00,0x00,0x76,0x30,0x00,0x00,0x3E,0x38,0x00,0x00,0x1C,0x1C,0x00,0x00,0xFF,0x0F,0x00,0x00,0xF3,0x07, // 248
+  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFE,0x0F,0x00,0x00,0xFE,0x1F,0x00,0x20,0x00,0x38,0x00,0x60,0x00,0x30,0x00,0xE0,0x00,0x30,0x00,0x80,0x00,0x30,0x00,0x00,0x00,0x18,0x00,0x00,0x00,0x0C,0x00,0x00,0xFE,0x3F,0x00,0x00,0xFE,0x3F, // 249
+  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFE,0x0F,0x00,0x00,0xFE,0x1F,0x00,0x00,0x00,0x38,0x00,0x00,0x00,0x30,0x00,0x80,0x00,0x30,0x00,0xE0,0x00,0x30,0x00,0x60,0x00,0x18,0x00,0x20,0x00,0x0C,0x00,0x00,0xFE,0x3F,0x00,0x00,0xFE,0x3F, // 250
+  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFE,0x0F,0x00,0x00,0xFE,0x1F,0x00,0x80,0x00,0x38,0x00,0xC0,0x00,0x30,0x00,0x60,0x00,0x30,0x00,0x60,0x00,0x30,0x00,0xC0,0x00,0x18,0x00,0x80,0x00,0x0C,0x00,0x00,0xFE,0x3F,0x00,0x00,0xFE,0x3F, // 251
+  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFE,0x0F,0x00,0x00,0xFE,0x1F,0x00,0xC0,0x00,0x38,0x00,0xC0,0x00,0x30,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0x30,0x00,0xC0,0x00,0x18,0x00,0xC0,0x00,0x0C,0x00,0x00,0xFE,0x3F,0x00,0x00,0xFE,0x3F, // 252
+  0x00,0x00,0x00,0x00,0x00,0x0E,0x00,0x00,0x00,0x7E,0x00,0x06,0x00,0xF0,0x01,0x06,0x00,0x80,0x0F,0x07,0x80,0x00,0xFE,0x03,0xE0,0x00,0xFC,0x00,0x60,0xC0,0x1F,0x00,0x20,0xF8,0x03,0x00,0x00,0x3E,0x00,0x00,0x00,0x06,  // 253
+  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE0,0xFF,0xFF,0x07,0xE0,0xFF,0xFF,0x07,0x00,0x1C,0x18,0x00,0x00,0x06,0x30,0x00,0x00,0x06,0x30,0x00,0x00,0x06,0x30,0x00,0x00,0x0E,0x38,0x00,0x00,0x1C,0x1C,0x00,0x00,0xF8,0x0F,0x00,0x00,0xF0,0x03, // 254
+  0x00,0x00,0x00,0x00,0x00,0x0E,0x00,0x00,0x00,0x7E,0x00,0x06,0xC0,0xF0,0x01,0x06,0xC0,0x80,0x0F,0x07,0x00,0x00,0xFE,0x03,0x00,0x00,0xFC,0x00,0xC0,0xC0,0x1F,0x00,0xC0,0xF8,0x03,0x00,0x00,0x3E,0x00,0x00,0x00,0x06 // 255
 };
diff --git a/SSD1306Ui.cpp b/SSD1306Ui.cpp
index c822905d1a94400263fd22db202ac11b7c71d6bd..8754d786847a397d4eaf9e61efd1bb749d864f6b 100644
--- a/SSD1306Ui.cpp
+++ b/SSD1306Ui.cpp
@@ -1,5 +1,30 @@
-#include "SSD1306Ui.h"
+/**
+ * The MIT License (MIT)
+ *
+ * Copyright (c) 2016 by Daniel Eichhorn
+ * Copyright (c) 2016 by Fabrice Weinberg
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to deal
+ * in the Software without restriction, including without limitation the rights
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ * copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in all
+ * copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ * SOFTWARE.
+ *
+ */
 
+#include "SSD1306Ui.h"
 
 SSD1306Ui::SSD1306Ui(SSD1306 *display) {
   this->display = display;
@@ -9,12 +34,12 @@ void SSD1306Ui::init() {
   this->display->init();
 }
 
-void SSD1306Ui::setTargetFPS(byte fps){
-  int oldInterval = this->updateInterval;
+void SSD1306Ui::setTargetFPS(uint8_t fps){
+  float oldInterval = this->updateInterval;
   this->updateInterval = ((float) 1.0 / (float) fps) * 1000;
 
   // Calculate new ticksPerFrame
-  float changeRatio = oldInterval / this->updateInterval;
+  float changeRatio = oldInterval / (float) this->updateInterval;
   this->ticksPerFrame *= changeRatio;
   this->ticksPerTransition *= changeRatio;
 }
@@ -28,34 +53,40 @@ void SSD1306Ui::disableAutoTransition(){
   this->autoTransition = false;
 }
 void SSD1306Ui::setAutoTransitionForwards(){
-  this->frameTransitionDirection = 1;
+  this->state.frameTransitionDirection = 1;
+  this->lastTransitionDirection = 1;
 }
 void SSD1306Ui::setAutoTransitionBackwards(){
-  this->frameTransitionDirection = 1;
+  this->state.frameTransitionDirection = -1;
+  this->lastTransitionDirection = -1;
 }
-void SSD1306Ui::setTimePerFrame(int time){
+void SSD1306Ui::setTimePerFrame(uint16_t time){
   this->ticksPerFrame = (int) ( (float) time / (float) updateInterval);
 }
-void SSD1306Ui::setTimePerTransition(int time){
+void SSD1306Ui::setTimePerTransition(uint16_t time){
   this->ticksPerTransition = (int) ( (float) time / (float) updateInterval);
 }
 
-
 // -/------ Customize indicator position and style -------\-
+void SSD1306Ui::enableIndicator(){
+  this->state.isIndicatorDrawen = true;
+}
+
+void SSD1306Ui::disableIndicator(){
+  this->state.isIndicatorDrawen = false;
+}
+
 void SSD1306Ui::setIndicatorPosition(IndicatorPosition pos) {
   this->indicatorPosition = pos;
-  this->dirty = true;
 }
 void SSD1306Ui::setIndicatorDirection(IndicatorDirection dir) {
   this->indicatorDirection = dir;
 }
-void SSD1306Ui::setActiveSymbole(const char* symbole) {
-  this->activeSymbole = symbole;
-  this->dirty = true;
+void SSD1306Ui::setActiveSymbol(const char* symbol) {
+  this->activeSymbol = symbol;
 }
-void SSD1306Ui::setInactiveSymbole(const char* symbole) {
-  this->inactiveSymbole = symbole;
-  this->dirty = true;
+void SSD1306Ui::setInactiveSymbol(const char* symbol) {
+  this->inactiveSymbol = symbol;
 }
 
 
@@ -63,39 +94,73 @@ void SSD1306Ui::setInactiveSymbole(const char* symbole) {
 void SSD1306Ui::setFrameAnimation(AnimationDirection dir) {
   this->frameAnimationDirection = dir;
 }
-void SSD1306Ui::setFrames(FrameCallback* frameFunctions, int frameCount) {
+void SSD1306Ui::setFrames(FrameCallback* frameFunctions, uint8_t frameCount) {
   this->frameCount     = frameCount;
   this->frameFunctions = frameFunctions;
 }
 
 // -/----- Overlays ------\-
-void SSD1306Ui::setOverlays(OverlayCallback* overlayFunctions, int overlayCount){
+void SSD1306Ui::setOverlays(OverlayCallback* overlayFunctions, uint8_t overlayCount){
   this->overlayCount     = overlayCount;
   this->overlayFunctions = overlayFunctions;
 }
 
+// -/----- Loading Process -----\-
+
+void SSD1306Ui::runLoadingProcess(LoadingStage* stages, uint8_t stagesCount) {
+  display->setTextAlignment(TEXT_ALIGN_CENTER);
+  display->setFont(ArialMT_Plain_10);
+
+  uint8_t progress = 0;
+  uint8_t increment = 100 / stagesCount;
+
+  for (uint8_t i = 0; i < stagesCount; i++) {
+    display->clear();
+    this->loadingDrawFunction(this->display, &stages[i], progress);
+    display->display();
+
+    stages[i].callback();
+
+    progress += increment;
+    yield();
+  }
+
+  display->clear();
+  this->loadingDrawFunction(this->display, &stages[stagesCount-1], progress);
+  display->display();
+
+  delay(150);
+}
 
 // -/----- Manuel control -----\-
 void SSD1306Ui::nextFrame() {
-  this->state.frameState = IN_TRANSITION;
-  this->state.ticksSinceLastStateSwitch = 0;
-  this->frameTransitionDirection = 1;
+  if (this->state.frameState != IN_TRANSITION) {
+    this->state.manuelControll = true;
+    this->state.frameState = IN_TRANSITION;
+    this->state.ticksSinceLastStateSwitch = 0;
+    this->lastTransitionDirection = this->state.frameTransitionDirection;
+    this->state.frameTransitionDirection = 1;
+  }
 }
 void SSD1306Ui::previousFrame() {
-  this->state.frameState = IN_TRANSITION;
-  this->state.ticksSinceLastStateSwitch = 0;
-  this->frameTransitionDirection = -1;
+  if (this->state.frameState != IN_TRANSITION) {
+    this->state.manuelControll = true;
+    this->state.frameState = IN_TRANSITION;
+    this->state.ticksSinceLastStateSwitch = 0;
+    this->lastTransitionDirection = this->state.frameTransitionDirection;
+    this->state.frameTransitionDirection = -1;
+  }
 }
 
 
 // -/----- State information -----\-
-SSD1306UiState SSD1306Ui::getUiState(){
-  return this->state;
+SSD1306UiState* SSD1306Ui::getUiState(){
+  return &this->state;
 }
 
 
-int SSD1306Ui::update(){
-  int timeBudget = this->updateInterval - (millis() - this->state.lastUpdate);
+int8_t SSD1306Ui::update(){
+  int8_t timeBudget = this->updateInterval - (millis() - this->state.lastUpdate);
   if ( timeBudget <= 0) {
     // Implement frame skipping to ensure time budget is keept
     if (this->autoTransition && this->state.lastUpdate != 0) this->state.ticksSinceLastStateSwitch += ceil(-timeBudget / this->updateInterval);
@@ -112,7 +177,6 @@ void SSD1306Ui::tick() {
 
   switch (this->state.frameState) {
     case IN_TRANSITION:
-        this->dirty = true;
         if (this->state.ticksSinceLastStateSwitch >= this->ticksPerTransition){
           this->state.frameState = FIXED;
           this->state.currentFrame = getNextFrameNumber();
@@ -120,31 +184,32 @@ void SSD1306Ui::tick() {
         }
       break;
     case FIXED:
+      // Revert manuelControll
+      if (this->state.manuelControll) {
+        this->state.frameTransitionDirection = this->lastTransitionDirection;
+        this->state.manuelControll = false;
+      }
       if (this->state.ticksSinceLastStateSwitch >= this->ticksPerFrame){
           if (this->autoTransition){
             this->state.frameState = IN_TRANSITION;
-            this->dirty = true;
           }
           this->state.ticksSinceLastStateSwitch = 0;
       }
       break;
   }
 
-  if (this->dirty) {
-    this->dirty = false;
-    this->display->clear();
-    this->drawIndicator();
-    this->drawFrame();
-    this->drawOverlays();
-    this->display->display();
-  }
+  this->display->clear();
+  this->drawFrame();
+  this->drawIndicator();
+  this->drawOverlays();
+  this->display->display();
 }
 
 void SSD1306Ui::drawFrame(){
   switch (this->state.frameState){
      case IN_TRANSITION: {
        float progress = (float) this->state.ticksSinceLastStateSwitch / (float) this->ticksPerTransition;
-       int x, y, x1, y1;
+       int16_t x, y, x1, y1;
        switch(this->frameAnimationDirection){
         case SLIDE_LEFT:
           x = -128 * progress;
@@ -173,73 +238,128 @@ void SSD1306Ui::drawFrame(){
        }
 
        // Invert animation if direction is reversed.
-       int dir = frameTransitionDirection >= 0 ? 1 : -1;
+       int8_t dir = this->state.frameTransitionDirection >= 0 ? 1 : -1;
        x *= dir; y *= dir; x1 *= dir; y1 *= dir;
 
-       this->dirty |= (this->frameFunctions[this->state.currentFrame])(this->display, &this->state, x, y);
-       this->dirty |= (this->frameFunctions[this->getNextFrameNumber()])(this->display, &this->state, x1, y1);
+       bool drawenCurrentFrame;
+
+
+       // Prope each frameFunction for the indicator Drawen state
+       this->enableIndicator();
+       (this->frameFunctions[this->state.currentFrame])(this->display, &this->state, x, y);
+       drawenCurrentFrame = this->state.isIndicatorDrawen;
+
+       this->enableIndicator();
+       (this->frameFunctions[this->getNextFrameNumber()])(this->display, &this->state, x1, y1);
+
+       // Build up the indicatorDrawState
+       if (drawenCurrentFrame && !this->state.isIndicatorDrawen) {
+         // Drawen now but not next
+         this->indicatorDrawState = 2;
+       } else if (!drawenCurrentFrame && this->state.isIndicatorDrawen) {
+         // Not drawen now but next
+         this->indicatorDrawState = 1;
+       } else if (!drawenCurrentFrame && !this->state.isIndicatorDrawen) {
+         // Not drawen in both frames
+         this->indicatorDrawState = 3;
+       }
+
+       // If the indicator isn't draw in the current frame
+       // reflect it in state.isIndicatorDrawen
+       if (!drawenCurrentFrame) this->state.isIndicatorDrawen = false;
+
        break;
      }
      case FIXED:
-      this->dirty |= (this->frameFunctions[this->state.currentFrame])(this->display, &this->state, 0, 0);
+      // Always assume that the indicator is drawn!
+      // And set indicatorDrawState to "not known yet"
+      this->indicatorDrawState = 0;
+      this->enableIndicator();
+      (this->frameFunctions[this->state.currentFrame])(this->display, &this->state, 0, 0);
       break;
   }
 }
 
 void SSD1306Ui::drawIndicator() {
-    byte posOfCurrentFrame;
 
+    // Only draw if the indicator is invisible
+    // for both frames or
+    // the indiactor is shown and we are IN_TRANSITION
+    if (this->indicatorDrawState == 3 || (!this->state.isIndicatorDrawen && this->state.frameState != IN_TRANSITION)) {
+      return;
+    }
+
+    uint8_t posOfHighlightFrame;
+    float indicatorFadeProgress = 0;
+
+    // if the indicator needs to be slided in we want to
+    // highlight the next frame in the transition
+    uint8_t frameToHighlight = this->indicatorDrawState == 1 ? this->getNextFrameNumber() : this->state.currentFrame;
+
+    // Calculate the frame that needs to be highlighted
+    // based on the Direction the indiactor is drawn
     switch (this->indicatorDirection){
       case LEFT_RIGHT:
-        posOfCurrentFrame = this->state.currentFrame;
+        posOfHighlightFrame = frameToHighlight;
         break;
       case RIGHT_LEFT:
-        posOfCurrentFrame = (this->frameCount - 1) - this->state.currentFrame;
+        posOfHighlightFrame = (this->frameCount - 1) - frameToHighlight;
         break;
     }
 
-    for (byte i = 0; i < this->frameCount; i++) {
-
-      const char *image;
+    switch (this->indicatorDrawState) {
+      case 1: // Indicator was not drawn in this frame but will be in next
+        // Slide IN
+        indicatorFadeProgress = 1 - ((float) this->state.ticksSinceLastStateSwitch / (float) this->ticksPerTransition);
+        break;
+      case 2: // Indicator was drawn in this frame but not in next
+        // Slide OUT
+        indicatorFadeProgress = ((float) this->state.ticksSinceLastStateSwitch / (float) this->ticksPerTransition);
+        break;
+    }
 
-      if (posOfCurrentFrame == i) {
-         image = this->activeSymbole;
-      } else {
-         image = this->inactiveSymbole;
-      }
+    uint16_t frameStartPos = (12 * frameCount / 2);
+    const char *image;
+    uint16_t x,y;
+    for (byte i = 0; i < this->frameCount; i++) {
 
-      int x,y;
       switch (this->indicatorPosition){
         case TOP:
-          y = 0;
-          x = 64 - (12 * frameCount / 2) + 12 * i;
+          y = 0 - (8 * indicatorFadeProgress);
+          x = 64 - frameStartPos + 12 * i;
           break;
         case BOTTOM:
-          y = 56;
-          x = 64 - (12 * frameCount / 2) + 12 * i;
+          y = 56 + (8 * indicatorFadeProgress);
+          x = 64 - frameStartPos + 12 * i;
           break;
         case RIGHT:
-          x = 120;
-          y = 32 - (12 * frameCount / 2) + 12 * i;
+          x = 120 + (8 * indicatorFadeProgress);
+          y = 32 - frameStartPos + 12 * i;
           break;
         case LEFT:
-          x = 0;
-          y = 32 - (12 * frameCount / 2) + 12 * i;
+          x = 0 - (8 * indicatorFadeProgress);
+          y = 32 - frameStartPos + 12 * i;
           break;
       }
 
-      this->display->drawXbm(x, y, 8, 8, image);
+      if (posOfHighlightFrame == i) {
+         image = this->activeSymbol;
+      } else {
+         image = this->inactiveSymbol;
+      }
+
+      this->display->drawFastImage(x, y, 8, 8, image);
     }
 }
 
 void SSD1306Ui::drawOverlays() {
- for (int i=0;i<this->overlayCount;i++){
-    this->dirty |= (this->overlayFunctions[i])(this->display, &this->state);
+ for (uint8_t i=0;i<this->overlayCount;i++){
+    (this->overlayFunctions[i])(this->display, &this->state);
  }
 }
 
-int SSD1306Ui::getNextFrameNumber(){
-  int nextFrame = (this->state.currentFrame + this->frameTransitionDirection) % this->frameCount;
+uint8_t SSD1306Ui::getNextFrameNumber(){
+  uint8_t nextFrame = (this->state.currentFrame + this->state.frameTransitionDirection) % this->frameCount;
   if (nextFrame < 0){
     nextFrame = this->frameCount + nextFrame;
   }
diff --git a/SSD1306Ui.h b/SSD1306Ui.h
index 703d47b6bd20551ddd8415abe711b4c63f35a32a..5fbfa9d369fe026c4589f1ef2841361e6c017717 100644
--- a/SSD1306Ui.h
+++ b/SSD1306Ui.h
@@ -1,27 +1,28 @@
-/**The MIT License (MIT)
-
-Copyright (c) 2015 by Fabrice Weinberg
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all
-copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-SOFTWARE.
-
-Credits for parts of this code go to Daniel Eichhorn
-*/
+/**
+ * The MIT License (MIT)
+ *
+ * Copyright (c) 2016 by Daniel Eichhorn
+ * Copyright (c) 2016 by Fabrice Weinberg
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to deal
+ * in the Software without restriction, including without limitation the rights
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ * copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in all
+ * copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ * SOFTWARE.
+ *
+ */
 
 #pragma once
 
@@ -52,65 +53,95 @@ enum FrameState {
   FIXED
 };
 
-const char ANIMATION_activeSymbole[] PROGMEM = {
+
+const char ANIMATION_activeSymbol[] PROGMEM = {
   0x00, 0x18, 0x3c, 0x7e, 0x7e, 0x3c, 0x18, 0x00
 };
 
-const char ANIMATION_inactiveSymbole[] PROGMEM = {
+const char ANIMATION_inactiveSymbol[] PROGMEM = {
   0x00, 0x0, 0x0, 0x18, 0x18, 0x0, 0x0, 0x00
 };
 
 
 // Structure of the UiState
 struct SSD1306UiState {
-  int           lastUpdate                = 0;
-  int           ticksSinceLastStateSwitch = 0;
+  u_int64_t     lastUpdate                = 0;
+  uint16_t      ticksSinceLastStateSwitch = 0;
 
   FrameState    frameState                = FIXED;
-  int           currentFrame              = 0;
+  uint8_t       currentFrame              = 0;
+
+  bool          isIndicatorDrawen         = true;
+
+  // Normal = 1, Inverse = -1;
+  int8_t         frameTransitionDirection  = 1;
+
+  bool          manuelControll            = false;
+
+  // Custom data that can be used by the user
+  void*         userData                  = NULL;
 };
 
-typedef bool (*FrameCallback)(SSD1306 *display,  SSD1306UiState* state, int x, int y);
-typedef bool (*OverlayCallback)(SSD1306 *display,  SSD1306UiState* state);
+struct LoadingStage {
+  const char* process;
+  void (*callback)();
+};
+
+typedef void (*FrameCallback)(SSD1306 *display,  SSD1306UiState* state, int16_t x, int16_t y);
+typedef void (*OverlayCallback)(SSD1306 *display,  SSD1306UiState* state);
+typedef void (*LoadingDrawFunction)(SSD1306 *display, LoadingStage* stage, uint8_t progress);
 
 class SSD1306Ui {
   private:
     SSD1306             *display;
 
-    // Global dirty flag to indicate that the display needs to be redraw.
-    bool                dirty                     = true;
-
-    // Symboles for the Indicator
+    // Symbols for the Indicator
     IndicatorPosition   indicatorPosition         = BOTTOM;
     IndicatorDirection  indicatorDirection        = LEFT_RIGHT;
 
-    const char*         activeSymbole             = ANIMATION_activeSymbole;
-    const char*         inactiveSymbole           = ANIMATION_inactiveSymbole;
+    const char*         activeSymbol              = ANIMATION_activeSymbol;
+    const char*         inactiveSymbol            = ANIMATION_inactiveSymbol;
 
     // Values for the Frames
     AnimationDirection  frameAnimationDirection   = SLIDE_RIGHT;
 
-    int                 frameTransitionDirection  = 1;
+    int8_t              lastTransitionDirection   = 1;
 
-    int                 ticksPerFrame             = 151; // ~ 5000ms at 30 FPS
-    int                 ticksPerTransition        = 15;  // ~  500ms at 30 FPS
+    uint16_t            ticksPerFrame             = 151; // ~ 5000ms at 30 FPS
+    uint16_t            ticksPerTransition        = 15;  // ~  500ms at 30 FPS
 
     bool                autoTransition            = true;
 
     FrameCallback*      frameFunctions;
-    int                 frameCount                = 0;
+    uint8_t             frameCount                = 0;
 
     // Values for Overlays
     OverlayCallback*    overlayFunctions;
-    int                 overlayCount              = 0;
+    uint8_t             overlayCount              = 0;
+
+    // Will the Indicator be drawen
+    // 3 Not drawn in both frames
+    // 2 Drawn this frame but not next
+    // 1 Not drown this frame but next
+    // 0 Not known yet
+    uint8_t                indicatorDrawState        = 1;
+
+    // Loading screen
+    LoadingDrawFunction loadingDrawFunction       = [](SSD1306 *display, LoadingStage* stage, uint8_t progress) {
+      display->drawString(64, 20, stage->process);
+
+      // Draw a progress bar.
+      display->drawRect(4, 32, 120, 8);
+      display->fillRect(4 + 2, 32 + 2, (120 * ((float)progress / 100)) - 3, 8 - 3);
+    };
 
     // UI State
     SSD1306UiState      state;
 
     // Bookeeping for update
-    int                 updateInterval            = 33;
+    uint8_t             updateInterval            = 33;
 
-    int                 getNextFrameNumber();
+    uint8_t             getNextFrameNumber();
     void                drawIndicator();
     void                drawFrame();
     void                drawOverlays();
@@ -128,7 +159,7 @@ class SSD1306Ui {
     /**
      * Configure the internal used target FPS
      */
-    void setTargetFPS(byte fps);
+    void setTargetFPS(uint8_t fps);
 
     // Automatic Controll
     /**
@@ -150,14 +181,30 @@ class SSD1306Ui {
     /**
      *  Set the approx. time a frame is displayed
      */
-    void setTimePerFrame(int time);
+    void setTimePerFrame(uint16_t time);
 
     /**
      * Set the approx. time a transition will take
      */
-    void setTimePerTransition(int time);
+    void setTimePerTransition(uint16_t time);
 
     // Customize indicator position and style
+
+    /**
+     * Draw the indicator.
+		 * This is the defaut state for all frames if
+		 * the indicator was hidden on the previous frame
+		 * it will be slided in.
+     */
+    void enableIndicator();
+
+    /**
+     * Don't draw the indicator.
+     * This will slide out the indicator
+     * when transitioning to the next frame.
+     */
+    void disableIndicator();
+
     /**
      * Set the position of the indicator bar.
      */
@@ -169,14 +216,15 @@ class SSD1306Ui {
     void setIndicatorDirection(IndicatorDirection dir);
 
     /**
-     * Set the symbole to indicate an active frame in the indicator bar.
+     * Set the symbol to indicate an active frame in the indicator bar.
      */
-    void setActiveSymbole(const char* symbole);
+    void setActiveSymbol(const char* symbol);
 
     /**
-     * Set the symbole to indicate an inactive frame in the indicator bar.
+     * Set the symbol to indicate an inactive frame in the indicator bar.
      */
-    void setInactiveSymbole(const char* symbole);
+    void setInactiveSymbol(const char* symbol);
+
 
     // Frame settings
 
@@ -188,22 +236,31 @@ class SSD1306Ui {
     /**
      * Add frame drawing functions
      */
-    void setFrames(FrameCallback* frameFunctions, int frameCount);
+    void setFrames(FrameCallback* frameFunctions, uint8_t frameCount);
 
     // Overlay
 
     /**
      * Add overlays drawing functions that are draw independent of the Frames
      */
-    void setOverlays(OverlayCallback* overlayFunctions, int overlayCount);
+    void setOverlays(OverlayCallback* overlayFunctions, uint8_t overlayCount);
+
+
+    // Loading animation
+		/**
+		 * Set the function that will draw each step
+		 * in the loading animation
+		 */
+    void setLoadingDrawFunction(LoadingDrawFunction stage);
+    void runLoadingProcess(LoadingStage* stages, uint8_t stagesCount);
+
 
     // Manuell Controll
     void  nextFrame();
     void  previousFrame();
 
     // State Info
-    SSD1306UiState getUiState();
+    SSD1306UiState* getUiState();
 
-    int update();
+    int8_t update();
 };
-
diff --git a/examples/SSD1306Demo/SSD1306Demo.ino b/examples/SSD1306Demo/SSD1306Demo.ino
index 8b78e57e23de9ceba34f633b633b6a1f438327d8..7056bcf1d46cf62936ae724a1c76c6a8060bdef7 100644
--- a/examples/SSD1306Demo/SSD1306Demo.ino
+++ b/examples/SSD1306Demo/SSD1306Demo.ino
@@ -1,45 +1,47 @@
-/**The MIT License (MIT)
-
-Copyright (c) 2015 by Daniel Eichhorn
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all
-copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-SOFTWARE.
-
-See more at http://blog.squix.ch
-*/
+/**
+ * The MIT License (MIT)
+ *
+ * Copyright (c) 2016 by Daniel Eichhorn
+ * Copyright (c) 2016 by Fabrice Weinberg
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to deal
+ * in the Software without restriction, including without limitation the rights
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ * copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in all
+ * copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ * SOFTWARE.
+ *
+ */
+
 #include <Wire.h>
 #include "SSD1306.h"
 #include "SSD1306Ui.h"
 #include "images.h"
 
-// Initialize the oled display for address 0x3c
-// sda-pin=14 and sdc-pin=12
+// Initialize the OLED display on address 0x3c
 SSD1306   display(0x3c, D3, D4);
 SSD1306Ui ui     ( &display );
 
-// this array keeps function pointers to all frames
-// frames are the single views that slide from right to left
-bool (*frames[])(SSD1306 *display, SSD1306UiState* state, int x, int y) = { drawFrame1, drawFrame2, drawFrame3, drawFrame4 };
+// This array keeps function pointers to all frames
+// frames are the single views that slide in
+FrameCallback frames[] = { drawFrame1, drawFrame2, drawFrame3, drawFrame4 };
 
 // how many frames are there?
 int frameCount = 4;
 
-bool (*overlays[])(SSD1306 *display, SSD1306UiState* state)             = { msOverlay };
+// Overlays are statically drawn on top of a frame eg. a clock
+OverlayCallback overlays[] = { msOverlay };
 int overlaysCount = 1;
 
 void setup() {
@@ -47,11 +49,14 @@ void setup() {
   Serial.println();
   Serial.println();
 
+	// The ESP is capable of rendering 60fps in 80Mhz mode
+	// but that won't give you much time for anything else
+	// run it in 160Mhz mode or just set it to 30 fps
+  ui.setTargetFPS(60);
 
-  ui.setTargetFPS(30);
-
-  ui.setActiveSymbole(activeSymbole);
-  ui.setInactiveSymbole(inactiveSymbole);
+	// Customize the active and inactive symbol
+  ui.setActiveSymbol(activeSymbol);
+  ui.setInactiveSymbol(inactiveSymbol);
 
   // You can change this to
   // TOP, LEFT, BOTTOM, RIGHT
@@ -70,7 +75,7 @@ void setup() {
   // Add overlays
   ui.setOverlays(overlays, overlaysCount);
 
-  // Inital UI takes care of initalising the display too.
+  // Initialising the UI will init the display too.
   ui.init();
 
   display.flipScreenVertically();
@@ -88,25 +93,21 @@ void loop() {
   }
 }
 
-bool msOverlay(SSD1306 *display, SSD1306UiState* state) {
+void msOverlay(SSD1306 *display, SSD1306UiState* state) {
   display->setTextAlignment(TEXT_ALIGN_RIGHT);
   display->setFont(ArialMT_Plain_10);
   display->drawString(128, 0, String(millis()));
-  return true;
 }
 
-bool drawFrame1(SSD1306 *display, SSD1306UiState* state, int x, int y) {
+void drawFrame1(SSD1306 *display, SSD1306UiState* state, int16_t x, int16_t y) {
   // draw an xbm image.
   // Please note that everything that should be transitioned
   // needs to be drawn relative to x and y
 
-  // if this frame need to be refreshed at the targetFPS you need to
-  // return true
   display->drawXbm(x + 34, y + 14, WiFi_Logo_width, WiFi_Logo_height, WiFi_Logo_bits);
-  return false;
 }
 
-bool drawFrame2(SSD1306 *display, SSD1306UiState* state, int x, int y) {
+void drawFrame2(SSD1306 *display, SSD1306UiState* state, int16_t x, int16_t y) {
   // Demonstrates the 3 included default sizes. The fonts come from SSD1306Fonts.h file
   // Besides the default fonts there will be a program to convert TrueType fonts into this format
   display->setTextAlignment(TEXT_ALIGN_LEFT);
@@ -118,11 +119,9 @@ bool drawFrame2(SSD1306 *display, SSD1306UiState* state, int x, int y) {
 
   display->setFont(ArialMT_Plain_24);
   display->drawString(0 + x, 34 + y, "Arial 24");
-
-  return false;
 }
 
-bool drawFrame3(SSD1306 *display, SSD1306UiState* state, int x, int y) {
+void drawFrame3(SSD1306 *display, SSD1306UiState* state, int16_t x, int16_t y) {
   // Text alignment demo
   display->setFont(ArialMT_Plain_10);
 
@@ -137,15 +136,13 @@ bool drawFrame3(SSD1306 *display, SSD1306UiState* state, int x, int y) {
   // The coordinates define the right end of the text
   display->setTextAlignment(TEXT_ALIGN_RIGHT);
   display->drawString(128 + x, 33, "Right aligned (128,33)");
-  return false;
 }
 
-bool drawFrame4(SSD1306 *display, SSD1306UiState* state, int x, int y) {
+void drawFrame4(SSD1306 *display, SSD1306UiState* state, int16_t x, int16_t y) {
   // Demo for drawStringMaxWidth:
   // with the third parameter you can define the width after which words will be wrapped.
   // Currently only spaces and "-" are allowed for wrapping
   display->setTextAlignment(TEXT_ALIGN_LEFT);
   display->setFont(ArialMT_Plain_10);
   display->drawStringMaxWidth(0 + x, 10 + y, 128, "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore.");
-  return false;
 }
diff --git a/examples/SSD1306Demo/images.h b/examples/SSD1306Demo/images.h
index c280b555ce6010e5879f757fb4abff7bd090f466..8b876a369e6f2609700798da9da47431e5e0db21 100644
--- a/examples/SSD1306Demo/images.h
+++ b/examples/SSD1306Demo/images.h
@@ -27,7 +27,7 @@ const char WiFi_Logo_bits[] PROGMEM = {
   0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
   };
 
-const char activeSymbole[] PROGMEM = {
+const char activeSymbol[] PROGMEM = {
     B00000000,
     B00000000,
     B00011000,
@@ -38,7 +38,7 @@ const char activeSymbole[] PROGMEM = {
     B00011000
 };
 
-const char inactiveSymbole[] PROGMEM = {
+const char inactiveSymbol[] PROGMEM = {
     B00000000,
     B00000000,
     B00000000,
@@ -47,4 +47,4 @@ const char inactiveSymbole[] PROGMEM = {
     B00011000,
     B00000000,
     B00000000
-};
\ No newline at end of file
+};
diff --git a/license b/license
index ffc8e078711831e40958c8feb721674ed60b08ad..706c10fed8a1231cc3c1575369db6f5aee34e3fa 100644
--- a/license
+++ b/license
@@ -1,6 +1,7 @@
 The MIT License (MIT)
 
-Copyright (c) 2015 by Daniel Eichhorn
+Copyright (c) 2016 by Daniel Eichhorn
+Copyright (c) 2016 by Fabrice Weinberg
 
 Permission is hereby granted, free of charge, to any person obtaining a copy
 of this software and associated documentation files (the "Software"), to deal