/*****************************************************/ /* NHD-C12832A1Z-NSW-FBW-3V3.c Program for writing to Newhaven Display COG LCD (c)2012 Curt Lagerstam - Newhaven Display International, LLC. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. */ /*****************************************************/ #include #include "picture.h" /*****************************************************/ sbit RES = P3^4; sbit CS = P3^1; sbit A0 = P3^7; sbit SCL = P3^0; sbit SDA = P1^0; /*****************************************************/ void delay(unsigned int n) { unsigned int i,j; for (i=0;iSEG output = normal comm_out(0xAE); //Display OFF comm_out(0xC0); //COM scan direction = normal comm_out(0xA2); //1/9 bias comm_out(0x2F); //power control set comm_out(0x21); //resistor ratio set comm_out(0x81); //Electronic volume command (set contrast) comm_out(0x2F); //Electronic volume value (contrast value) } /*****************************************************/ int main(void) { P1 = 1; P3 = 1; delay(10); //wait for hardware reset, at least 2ms init_LCD(); //initialize LCD while(1){ //loop forever dispPic(logo); //show image delay(1000); //wait 1s dispPic(graphic1); delay(1000); dispPic(graphic2); delay(1000); } } //below is picture.h file information /////////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////////// code char logo[]={ //Logo 0x00,0x00,0x00,0x00,0x00,0x7f,0xc0,0x00,0x00,0x00,0x00,0x00,0x00,0x7f,0xc0,0x00, 0x00,0x00,0x00,0x00,0x00,0x03,0xc0,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x80,0x00, 0x00,0x00,0x00,0x00,0x00,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x38,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7f,0xc0,0x00, 0x00,0x00,0x00,0x00,0x00,0x7f,0xc0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1f,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x7f,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x71,0xc0,0x00, 0x00,0x00,0x00,0x00,0x00,0xe0,0xc0,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0xc0,0x00, 0x00,0x00,0x00,0x00,0x00,0xc0,0xc0,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0xc0,0x00, 0x00,0x00,0x00,0x00,0x00,0xe0,0xc0,0x00,0x00,0x00,0x00,0x00,0x00,0x71,0xc0,0x00, 0x00,0x00,0x00,0x00,0x00,0x3f,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x1f,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x80,0x00, 0x00,0x00,0x00,0x00,0x00,0xc7,0xc0,0x00,0x00,0x00,0x00,0x00,0x00,0xc7,0xc0,0x00, 0x00,0x00,0x00,0x00,0x00,0xce,0xc0,0x00,0x00,0x00,0x00,0x00,0x00,0xec,0xc0,0x00, 0x00,0x00,0x00,0x00,0x00,0xfc,0xc0,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0xc0,0x00, 0x00,0x00,0x00,0x18,0x00,0x78,0xc0,0x00,0x00,0x00,0x00,0x1c,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x0e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x80,0x7f,0xc0,0x00, 0x00,0x00,0x00,0x01,0xf8,0x7f,0xc0,0x00,0x00,0x00,0x00,0x01,0xf8,0x00,0x00,0x00, 0x00,0x00,0x00,0x03,0xc0,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x00,0x7f,0xc0,0x00, 0x00,0x00,0x00,0x1e,0x00,0x7f,0xc0,0x00,0x00,0x00,0x00,0x18,0x00,0x7f,0xc0,0x00, 0x00,0x00,0x00,0x00,0x00,0x03,0xc0,0x00,0x00,0x00,0x00,0x07,0x08,0x07,0x00,0x00, 0x00,0x00,0x00,0x0f,0x98,0x1e,0x00,0x00,0x00,0x00,0x00,0x1d,0xf8,0x38,0x00,0x00, 0x00,0x00,0x00,0x18,0xf0,0x78,0x00,0x00,0x00,0x00,0x00,0x18,0xe0,0x7f,0xc0,0x00, 0x00,0x00,0x00,0x18,0xc0,0x7f,0xc0,0x00,0x00,0x00,0x00,0x18,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x1f,0xf8,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0xf8,0x7f,0xc0,0x00, 0x00,0x00,0x00,0x00,0x00,0x7f,0xc0,0x00,0x00,0x00,0x00,0x00,0x00,0x7f,0xc0,0x00, 0x00,0x00,0x00,0x19,0x98,0x03,0xc0,0x00,0x00,0x00,0x00,0x19,0x98,0x07,0x80,0x00, 0x00,0x00,0x00,0x19,0x98,0x0e,0x00,0x00,0x00,0x00,0x00,0x19,0x98,0x38,0x00,0x00, 0x00,0x00,0x00,0x19,0x98,0x78,0x00,0x00,0x00,0x00,0x00,0x19,0x98,0x7f,0xc0,0x00, 0x00,0x00,0x00,0x1f,0xf8,0x7f,0xc0,0x00,0x00,0x00,0x00,0x1f,0xf8,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x44,0x40,0x00, 0x00,0x00,0x00,0x1e,0x00,0x44,0x40,0x00,0x00,0x00,0x00,0x1f,0x80,0x44,0x40,0x00, 0x00,0x00,0x00,0x07,0xe0,0x44,0x40,0x00,0x00,0x00,0x00,0x00,0xf8,0x44,0x40,0x00, 0x00,0x00,0x00,0x00,0x78,0x44,0x40,0x00,0x00,0x00,0x00,0x00,0x78,0x7f,0xc0,0x00, 0x00,0x00,0x00,0x03,0xf0,0x7f,0xc0,0x00,0x00,0x00,0x00,0x0f,0x80,0x40,0x00,0x00, 0x00,0x00,0x00,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x38,0x1f,0x00,0x00, 0x00,0x00,0x00,0x00,0xf8,0x3f,0x80,0x00,0x00,0x00,0x00,0x03,0xf0,0x7f,0xc0,0x00, 0x00,0x00,0x00,0x0f,0xe0,0x60,0xc0,0x00,0x00,0x00,0x00,0x0c,0x60,0x60,0xc0,0x00, 0x00,0x00,0x00,0x0c,0x60,0x40,0xc0,0x00,0x00,0x00,0x00,0x0f,0xe0,0x40,0xc0,0x00, 0x00,0x00,0x00,0x07,0xe0,0x40,0xc0,0x00,0x00,0x00,0x00,0x00,0xf8,0x7f,0xc0,0x00, 0x00,0x00,0x00,0x00,0x38,0x7f,0xc0,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0xff,0x00,0x00, 0x00,0x00,0x00,0x00,0x0f,0xff,0x80,0x00,0x00,0x00,0x00,0x00,0x1f,0x87,0x80,0x00, 0x00,0x00,0x00,0x00,0x7e,0x01,0xc0,0x00,0x00,0x00,0x00,0x01,0xf8,0x01,0xc0,0x00, 0x00,0x00,0x00,0x03,0xe0,0x71,0xc0,0x00,0x00,0x00,0x00,0x0f,0xc1,0xf1,0xc0,0x00, 0x00,0x00,0x00,0x3f,0x03,0xf1,0xc0,0x00,0x00,0x00,0x00,0xfc,0x0f,0xc1,0xc0,0x00, 0x00,0x00,0x01,0xf0,0x3f,0x03,0xc0,0x00,0x00,0x00,0x07,0xe0,0xfe,0x07,0xc0,0x00, 0x00,0x00,0x1f,0x81,0xf8,0x1f,0xc0,0x00,0x00,0x00,0x7e,0x07,0xe0,0x7f,0xc0,0x00, 0x00,0x00,0xf8,0x1f,0xc1,0xfd,0xc0,0x00,0x00,0x03,0xf0,0x7f,0x03,0xf9,0xc0,0x00, 0x00,0x0f,0xc0,0xfc,0x0f,0xf1,0xc0,0x00,0x00,0x3f,0xe3,0xf0,0x3f,0x71,0xc0,0x00, 0x00,0x7f,0xff,0xe0,0xfe,0x71,0xc0,0x00,0x00,0x78,0xff,0x81,0xfe,0x71,0xc0,0x00, 0x00,0xf0,0x3f,0x87,0xfe,0x71,0xc0,0x00,0x00,0xe0,0x0f,0xdf,0x8e,0x71,0xc0,0x00, 0x01,0xc3,0x03,0xfe,0x0e,0x71,0xc0,0x00,0x01,0xc7,0xc0,0xfc,0x0e,0x71,0xc0,0x00, 0x01,0xc3,0xe0,0x7e,0x0e,0x71,0xc0,0x00,0x00,0xe1,0xf8,0x1f,0x8e,0x71,0xc0,0x00, 0x00,0xe0,0x7e,0x07,0xfe,0x71,0xc0,0x00,0x00,0xf8,0x3f,0x83,0xfe,0x71,0xc0,0x00, 0x00,0x7c,0x0f,0xc0,0xfe,0x71,0xc0,0x00,0x00,0x3f,0x03,0xf0,0x3e,0x71,0xc0,0x00, 0x00,0x0f,0xc0,0xfc,0x1e,0x71,0xc0,0x00,0x00,0x03,0xf0,0x7f,0x0e,0x71,0xc0,0x00, 0x00,0x01,0xf8,0x1f,0x8e,0x71,0xc0,0x00,0x00,0x00,0x7e,0x07,0xfe,0x71,0xc0,0x00, 0x00,0x00,0x1f,0x83,0xfe,0x71,0xc0,0x00,0x00,0x00,0x0f,0xe0,0xfe,0x71,0xc0,0x00, 0x00,0x00,0x03,0xf0,0x3e,0x71,0xc0,0x00,0x00,0x00,0x00,0xfc,0x1e,0x71,0xc0,0x00, 0x00,0x00,0x00,0x3f,0x0e,0x71,0xc0,0x00,0x00,0x00,0x00,0x1f,0x8e,0x71,0xc0,0x00, 0x00,0x00,0x00,0x07,0xfe,0x31,0xc0,0x00,0x00,0x00,0x00,0x01,0xfe,0x01,0xc0,0x00, 0x00,0x00,0x00,0x00,0x7e,0x01,0xc0,0x00,0x00,0x00,0x00,0x00,0x3f,0x3f,0x3f,0x3f, 0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f, }; code char graphic1[]={ //large text 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0xe0,0x00,0x00,0x00, 0x00,0x07,0xc0,0x3f,0xf8,0x00,0x00,0x00,0x00,0x3f,0xf8,0xff,0xfe,0x00,0x00,0x00, 0x00,0x7f,0xfc,0xff,0xff,0x00,0x00,0x00,0x00,0x7f,0xfc,0xff,0xff,0x80,0x00,0x00, 0x01,0xff,0xff,0xff,0xff,0xc0,0x00,0x00,0x01,0xfc,0x3f,0xf0,0x3f,0xc0,0x04,0xc0, 0x01,0xf8,0x0f,0xe0,0x0f,0xc0,0x09,0x20,0x01,0xf8,0x0f,0xc0,0x07,0xe0,0x09,0x20, 0x01,0xf0,0x0f,0xc0,0x07,0xe0,0x06,0x40,0x01,0xf0,0x0f,0xc0,0x07,0xe0,0x00,0x00, 0x01,0xf0,0x0f,0xc0,0x07,0xe0,0x00,0x00,0x01,0xf8,0x0f,0xc0,0x07,0xe0,0x06,0xc0, 0x01,0xfc,0x3f,0xe0,0x1f,0xc0,0x09,0x20,0x01,0xff,0xff,0xf0,0x3f,0xc0,0x09,0x20, 0x00,0xff,0xfd,0xff,0xff,0x80,0x09,0x20,0x00,0x7f,0xfc,0xff,0xff,0x80,0x0f,0xe0, 0x00,0x7f,0xfc,0xff,0xff,0x00,0x00,0x00,0x00,0x1f,0xf0,0x3f,0xfe,0x00,0x00,0x00, 0x00,0x07,0xc0,0x1f,0xf8,0x00,0x00,0x20,0x00,0x00,0x00,0x0f,0xe0,0x00,0x00,0x20, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0xe0, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1f,0xc0,0x00,0x00, 0x00,0x00,0x00,0x00,0x1f,0xc0,0x00,0x00,0x00,0x00,0x00,0x00,0x1f,0xc0,0x00,0x00, 0x00,0x00,0x00,0x00,0x1f,0xc0,0x00,0x00,0x00,0x00,0x00,0x00,0x1f,0xc0,0x00,0x00, 0x00,0x00,0x00,0x00,0x1f,0xc0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x0f,0xe0,0x00,0x00,0x00,0x00,0x07,0xc0,0x3f,0xf8,0x00,0x00,0x00, 0x00,0x3f,0xf8,0xff,0xfe,0x00,0x00,0x00,0x00,0x7f,0xfc,0xff,0xff,0x00,0x05,0xc0, 0x00,0x7f,0xfc,0xff,0xff,0x80,0x09,0x20,0x01,0xff,0xff,0xff,0xff,0xc0,0x08,0x20, 0x01,0xfc,0x3f,0xf0,0x3f,0xc0,0x08,0x20,0x01,0xf8,0x0f,0xe0,0x0f,0xc0,0x07,0xc0, 0x01,0xf0,0x0f,0xc0,0x07,0xe0,0x00,0x00,0x01,0xf0,0x0f,0xc0,0x07,0xe0,0x00,0x00, 0x01,0xf0,0x0f,0xc0,0x07,0xe0,0x08,0x60,0x01,0xf0,0x0f,0xc0,0x07,0xe0,0x05,0x80, 0x01,0xf8,0x0f,0xc0,0x07,0xe0,0x02,0x00,0x01,0xfc,0x3f,0xe0,0x1f,0xc0,0x01,0x00, 0x01,0xff,0xff,0xf0,0x3f,0xc0,0x0f,0xe0,0x00,0xff,0xfd,0xff,0xff,0x80,0x00,0x00, 0x00,0x7f,0xfc,0xff,0xff,0x80,0x00,0x00,0x00,0x7f,0xfc,0xff,0xff,0x00,0x00,0x00, 0x00,0x1f,0xf0,0x3f,0xfe,0x00,0x00,0x00,0x00,0x07,0xc0,0x1f,0xf8,0x00,0x00,0x00, 0x00,0x00,0x00,0x0f,0xe0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0xe0,0x00,0x00,0x00, 0x00,0x07,0xc0,0x3f,0xf8,0x00,0x00,0x00,0x00,0x3f,0xf8,0xff,0xfe,0x00,0x00,0x00, 0x00,0x7f,0xfc,0xff,0xff,0x00,0x00,0x00,0x00,0x7f,0xfc,0xff,0xff,0x80,0x00,0x00, 0x01,0xff,0xff,0xff,0xff,0xc0,0x00,0x00,0x01,0xfc,0x3f,0xf0,0x3f,0xc0,0x00,0x00, 0x01,0xf8,0x0f,0xe0,0x0f,0xc0,0x00,0x00,0x01,0xf0,0x0f,0xc0,0x07,0xe0,0x00,0x00, 0x01,0xf0,0x0f,0xc0,0x07,0xe0,0x00,0x00,0x01,0xf0,0x0f,0xc0,0x07,0xe0,0x00,0x00, 0x01,0xf8,0x0f,0xc0,0x07,0xe0,0x00,0x00,0x01,0xf8,0x0f,0xc0,0x07,0xe0,0x00,0x00, 0x01,0xfc,0x3f,0xe0,0x1f,0xc0,0x00,0x00,0x01,0xff,0xff,0xff,0xff,0xc0,0x00,0x00, 0x00,0xff,0xfd,0xff,0xff,0x80,0x00,0x00,0x00,0x7f,0xfc,0xff,0xff,0x80,0x00,0x00, 0x00,0x3f,0xf8,0x7f,0xfe,0x00,0x00,0x00,0x00,0x1f,0xf0,0x3f,0xfe,0x00,0x00,0x00, 0x00,0x07,0xc0,0x1f,0xf8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x0f,0xe0,0x00,0x00,0x00,0x00,0x07,0xc0,0x3f,0xf8,0x00,0x00,0x00, 0x00,0x3f,0xf8,0xff,0xfe,0x00,0x00,0x00,0x00,0x7f,0xfc,0xff,0xff,0x00,0x00,0x00, 0x00,0x7f,0xfc,0xff,0xff,0x80,0x00,0x00,0x01,0xff,0xff,0xff,0xff,0xc0,0x12,0x40, 0x01,0xfc,0x3f,0xf0,0x3f,0xc0,0x12,0x40,0x01,0xf8,0x0f,0xe0,0x0f,0xc0,0x12,0x40, 0x01,0xf0,0x0f,0xc0,0x07,0xe0,0x1f,0xc0,0x01,0xf0,0x0f,0xc0,0x07,0xe0,0x00,0x00, 0x01,0xf0,0x0f,0xc0,0x07,0xe0,0x00,0x00,0x01,0xf8,0x0f,0xc0,0x07,0xe0,0x0f,0x80, 0x01,0xf8,0x0f,0xc0,0x07,0xe0,0x10,0x40,0x01,0xfc,0x3f,0xe0,0x1f,0xc0,0x10,0x40, 0x01,0xff,0xff,0xff,0xff,0xc0,0x10,0x40,0x00,0xff,0xfd,0xff,0xff,0x80,0x1f,0xc0, 0x00,0x7f,0xfc,0xff,0xff,0x80,0x00,0x00,0x00,0x3f,0xf8,0x7f,0xfe,0x00,0x00,0x00, 0x00,0x1f,0xf0,0x3f,0xfe,0x00,0x0f,0x80,0x00,0x07,0xc0,0x1f,0xf8,0x00,0x10,0x40, 0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x40, 0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x1f,0xc0, 0x00,0x00,0x00,0x3f,0x00,0x00,0x0e,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x01,0xc0, 0x00,0x00,0x00,0x3f,0x00,0x00,0x0e,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x1f,0xc0, 0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, }; code char graphic2[]={ //eagle 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xef,0xff,0xff,0xff,0xff,0xff,0xff, 0xff,0x77,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xbb,0xff,0xff,0xff,0xff,0xff,0xff, 0xff,0xc8,0xff,0xff,0xff,0xff,0xff,0xff,0xf9,0xc4,0x7f,0xff,0xff,0xff,0xff,0xff, 0xff,0x20,0x1f,0xff,0xff,0xff,0xff,0xff,0xff,0x80,0x07,0xff,0xff,0xff,0xff,0xff, 0xf9,0xc0,0x01,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x01,0x7f,0xff,0xff,0xef,0xff, 0xff,0x80,0x00,0x3f,0xff,0xff,0xe7,0xff,0xff,0xc0,0x00,0x1f,0xff,0xff,0xeb,0xff, 0xff,0xa0,0x00,0x1f,0xff,0xff,0xfa,0xff,0xff,0xc0,0x00,0x07,0xff,0xff,0xfd,0xff, 0xff,0xf0,0x00,0x01,0xff,0xff,0xf5,0x7f,0xff,0xf0,0x00,0x01,0xff,0xff,0xfe,0xff, 0xff,0xf8,0x00,0x40,0xff,0xff,0xf7,0x9f,0xff,0xfc,0x00,0x00,0x3f,0xff,0xff,0x3f, 0xff,0xfc,0x00,0x00,0x1f,0xff,0xfc,0xff,0xff,0xfe,0x00,0x00,0x1f,0xff,0x7f,0xff, 0xff,0xff,0x00,0x04,0x07,0xfe,0xff,0xef,0xff,0xff,0x40,0x00,0x03,0xfe,0x0f,0xef, 0xff,0xff,0x82,0x00,0x41,0xfc,0x63,0xcf,0xff,0xff,0xc0,0x00,0x00,0x7c,0x43,0xef, 0xff,0xff,0xc0,0x81,0x20,0x30,0xc1,0x3f,0xff,0xff,0xf0,0x00,0x00,0x00,0x89,0xef, 0xff,0xff,0xe0,0x00,0x00,0x00,0x11,0xef,0xff,0xff,0xf0,0x00,0x00,0x00,0x18,0x4f, 0xff,0xff,0xfc,0x00,0x01,0x00,0x31,0xff,0xff,0xff,0xfe,0x00,0x00,0x20,0x33,0xff, 0xff,0xff,0xff,0x80,0x00,0xe8,0x27,0xe7,0xff,0xff,0xff,0xc0,0x00,0x60,0x0a,0xef, 0xff,0xff,0xff,0xc0,0x00,0x22,0x0e,0xff,0xff,0xff,0xff,0xc0,0x00,0x20,0x0b,0xff, 0xff,0xff,0xff,0xe0,0x00,0x00,0x0f,0xff,0xff,0xff,0xff,0xf0,0x01,0x00,0x3f,0xff, 0xff,0xff,0xff,0xf8,0x00,0x20,0x3f,0xff,0xff,0xff,0xff,0xf8,0x00,0x80,0x3f,0xff, 0xff,0xff,0xff,0xfc,0x00,0x00,0x3f,0xff,0xff,0xff,0xff,0xfe,0x00,0x20,0x3f,0xff, 0xff,0xff,0xff,0xfd,0xc0,0x00,0x3f,0xff,0xff,0xff,0xff,0xff,0xc0,0x00,0x7f,0xff, 0xff,0xff,0xff,0xff,0xe0,0x00,0x3f,0xff,0xff,0xff,0xff,0xff,0xe0,0x00,0x3f,0xff, 0xff,0xff,0xff,0xff,0xf0,0x00,0x7f,0xff,0xff,0xff,0xff,0xff,0xf8,0x00,0x7f,0xff, 0xff,0xff,0xff,0xff,0xf0,0x00,0x3f,0xff,0xff,0xff,0xff,0xff,0xf8,0x00,0x3f,0xff, 0xff,0xff,0xff,0xfd,0xf8,0x00,0x7f,0xff,0xff,0xff,0xff,0xfd,0xf8,0x00,0x3f,0xff, 0xff,0xff,0xff,0xff,0xf8,0x00,0x3f,0xff,0xff,0xff,0xff,0xff,0xb8,0x02,0x7f,0xff, 0xff,0xff,0xff,0xff,0x70,0x00,0x3f,0xff,0xff,0xff,0xff,0xf9,0x60,0x01,0x3f,0xff, 0xff,0xff,0xff,0xff,0x70,0x00,0x3f,0xff,0xff,0xff,0xff,0xfd,0xf8,0x00,0x3f,0xff, 0xff,0xff,0xff,0xfe,0x78,0x00,0x3f,0xff,0xff,0xff,0xff,0xff,0xfe,0x00,0x1f,0xff, 0xff,0xff,0xff,0xff,0xfc,0x00,0x1f,0xff,0xff,0xff,0xff,0xff,0xfc,0x00,0x3f,0xff, 0xff,0xff,0xff,0xff,0xfe,0x02,0x1f,0xff,0xff,0xff,0xff,0xff,0xfe,0x00,0x1f,0xff, 0xff,0xff,0xff,0xff,0xfe,0x02,0x1f,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x1f,0xff, 0xff,0xff,0xff,0xff,0xfe,0x00,0x1f,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x1f,0xff, 0xff,0xff,0xff,0xff,0xff,0x00,0x1f,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x1f,0xff, 0xff,0xff,0xff,0xff,0xfe,0x00,0x1f,0xff,0xff,0xff,0xff,0xff,0xfe,0x01,0x5f,0xff, 0xff,0xff,0xff,0xff,0xfe,0x00,0x0f,0xff,0xff,0xff,0xff,0xff,0xfe,0x00,0x0f,0xff, 0xff,0xff,0xff,0xff,0xff,0x80,0x0f,0xff,0xff,0xff,0xff,0xff,0xff,0x88,0x0f,0xff, 0xff,0xff,0xff,0xff,0xff,0x80,0x0f,0xff,0xff,0xff,0xff,0xff,0xff,0x80,0x47,0xff, 0xff,0xff,0xff,0xff,0xff,0x80,0x0f,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x0f,0xff, 0xff,0xff,0xff,0xff,0xff,0x80,0x07,0xff,0xff,0xff,0xff,0xff,0xff,0x80,0x07,0xff, 0xff,0xff,0xff,0xff,0xff,0x80,0x0f,0xff,0xff,0xff,0xff,0xff,0xff,0x80,0x47,0xff, 0xff,0xff,0xff,0xff,0xff,0xc0,0x07,0xff,0xff,0xff,0xff,0xff,0xff,0xc4,0x07,0xff, 0xff,0xff,0xff,0xff,0xff,0xc0,0x07,0xff,0xff,0xff,0xff,0xff,0xff,0xe0,0x07,0xff, 0xff,0xff,0xff,0xff,0xff,0xe0,0x23,0xff,0xff,0xff,0xff,0xff,0xff,0xe2,0x07,0xff, 0xff,0xff,0xff,0xff,0xff,0xe0,0x07,0xff,0xff,0xff,0xff,0xff,0xff,0xf0,0x07,0xff, 0xff,0xff,0xff,0xff,0xff,0xf0,0x1b,0xff,0xff,0xff,0xff,0xff,0xff,0xf0,0x0b,0xff, 0xff,0xff,0xff,0xff,0xff,0xf8,0x0f,0xff,0xff,0xff,0xff,0xff,0xff,0xfa,0x27,0xff, 0xff,0xff,0xff,0xff,0xff,0xf8,0x27,0xff,0xff,0xff,0xff,0xff,0xff,0xfc,0x27,0xff, 0xff,0xff,0xff,0xff,0xff,0xfc,0x13,0xff,0xff,0xff,0xff,0xff,0xff,0xfc,0x5b,0xff, 0xff,0xff,0xff,0xff,0xff,0xfc,0x5b,0xff,0xff,0xff,0xff,0xff,0xff,0xfc,0x5b,0xff, 0xff,0xff,0xff,0xff,0xff,0xfd,0x5f,0xff,0xff,0xff,0xff,0xff,0xff,0xfd,0x5f,0xff, 0xff,0xff,0xff,0xff,0xff,0xf9,0x6f,0xff,0xff,0xff,0xff,0xff,0xff,0xf9,0x6f,0xff, 0xff,0xff,0xff,0xff,0xff,0xfd,0x6f,0xff,0xff,0xff,0xff,0xff,0xff,0xf5,0x7f,0xff, 0xff,0xff,0xff,0xff,0xff,0xed,0x7f,0xff,0xff,0xff,0xff,0xff,0xff,0xed,0x7f,0xff, 0xff,0xff,0xff,0xff,0xff,0xfd,0x7f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, };