Graphic display sample code NHD-24064WG-A.
//------------------------------------------------------------------------------- //NHD-24064WG-ATFH-V //240 x 64 FSTN graphic lcd with toshiba t6963 controller 8bit interface // //pin pvoutput // 1 FGND // 2 GND 1 // 3 +5V 2 // 4 V0 // 5 /WR 4 P3.0 // 6 /READ 5 P3.7 // 7 /CE 6 P3.4 // 8 I/D 15 P3.1 // 9 Vout //10 /RST 16 P3.6 //11-18 data 7-14 //19 FS 17 P3.2 //20 BKL+ //------------------------------------------------------------------------------- #include <REG52.H> #include "picture ATMI-V.h" sbit ID = P3^1; sbit W = P3^0; sbit READ = P3^7; sbit CE = P3^4; sbit RST = P3^6; sbit FS = P3^2; void delay(unsigned int n); void Writecom(char i); void Writedata(char i); void Init(void); void Fullon(void); void Text(char *text); void Graphic(char *img); void delay(unsigned int n) { unsigned int i,j; for (i=0;i<n;i++) for (j=0;j<350;j++) {;} } void Writecom(char i) { P1 = i; ID = 1; CE = 0; W = 0; W = 1; CE = 1; } void Writedata(char i) { P1 = i; ID = 0; CE = 0; W = 0; W = 1; CE = 1; } void Init() { RST = 1; READ = 1; FS = 0; Writedata(0x00); Writedata(0x00); Writecom(0x40); Writedata(0x00); Writedata(0x40); Writecom(0x42); Writedata(0x1E); Writedata(0x00); Writecom(0x41); Writedata(0x1E); Writedata(0x00); Writecom(0x43); Writecom(0x80); } void Fullon() { int Count; Writecom(0x98); //Display mode = Text off, Graphics on Writedata(0x00); //Set address to 0 Writedata(0x40); //Set address to 0x40 Writecom(0x24); //Set address pointer Writecom(0xB0); //Set data auto-write for(Count = 0; Count < 1920; Count++) { Writedata(0xFF); } Writecom(0xB2); //Reset data auto-write } void Text(unsigned char *text) { int Count; Writecom(0x94); //Display mode = Text on, Graphics off Writedata(0x00); //Set to address 0 Writedata(0x00); Writecom(0x24); //Set address pointer Writecom(0xB0); //Set data auto-write for(Count = 0; Count <240; Count++) { Writedata(*text); text++; } Writecom(0xB2); //Reset data auto-write } void Graphic(unsigned char *img) { int Count; Writecom(0x98); //Display mode = Text off, Graphics on Writedata(0x00); //Set address to 0 Writedata(0x40); //Set address to 0x40 Writecom(0x24); //Set address pointer Writecom(0xB0); //Set data auto-write for(Count = 0/*img*/; Count < 1920; Count++) { Writedata(*img); img++; } Writecom(0xB2); //Reset data auto-write } int main(void) { Init(); while(1) { delay(300); Graphic(picture); delay(3000); Fullon(); delay(1500); Text(text); delay(3000); Graphic(picture2); delay(3000); Graphic(picture3); delay(3000); } } //************************************************************************************************************** //************************************************************************************************************** //Below is the contents of "picture ATMI-V.h" //************************************************************************************************************** code char text[] ={ // N E W H A V E N D I S P L A Y 0x00,0x00,0x00,0x00,0x00,0x00,0x2E,0x25,0x37,0x28,0x21,0x36,0x25,0x2E,0x00,0x24,0x29,0x33,0x30,0x2C,0x21,0x39,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // N H D - 2 4 0 6 4 W G - A T M I - V 0x00,0x00,0x00,0x00,0x00,0x2E,0x28,0x24,0x0D,0x12,0x14,0x10,0x16,0x14,0x37,0x27,0x0D,0x21,0x34,0x2D,0x29,0x0D,0x36,0x00,0x00,0x00,0x00,0x00,0x00,0x00, //S T N ( - ) - T R A N S M I S S I V E 0x33,0x34,0x2E,0x00,0x08,0x0D,0x09,0x00,0x0D,0x00,0x34,0x32,0x21,0x2E,0x33,0x2D,0x29,0x33,0x33,0x29,0x36,0x25,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, //B A C K L I G H T - B L U E L E D 0x22,0x21,0x23,0x2B,0x2C,0x29,0x27,0x28,0x34,0x00,0x0D,0x00,0x22,0x2C,0x35,0x25,0x00,0x2C,0x25,0x24,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, //B U I L T - I N N E G A T I V E V O L T A G E 0x22,0x35,0x29,0x2C,0x34,0x0D,0x29,0x2E,0x00,0x2E,0x25,0x27,0x21,0x34,0x29,0x36,0x25,0x00,0x36,0x2F,0x2C,0x34,0x21,0x27,0x25,0x00,0x00,0x00,0x00,0x00, //W I D E T E M P 0x37,0x29,0x24,0x25,0x00,0x34,0x25,0x2D,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, //6 : 0 0 V I E W I N G A N G L E 0x16,0x1A,0x10,0x10,0x00,0x36,0x29,0x25,0x37,0x29,0x2E,0x27,0x00,0x21,0x2E,0x27,0x2C,0x25,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, //S U P P L Y : 3 6 0 m A @ + 5 V 0x33,0x35,0x30,0x30,0x2C,0x39,0x1A,0x00,0x13,0x16,0x10,0x4D,0x21,0x00,0x20,0x00,0x0B,0x15,0x36,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, }; code char picture[] ={ 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x7f,0xf1,0xff,0xdf,0xff,0xff,0xf7,0xff,0xbf,0xff,0xff,0x7f,0xff,0xff,0xf8,0x1f,0xff,0x81,0xff,0xfc,0xff,0xbf,0xff,0xff,0xc7,0xff,0x1f,0xfe,0x00, 0x00,0x3f,0xf8,0x7f,0xc3,0xff,0xff,0xf1,0xff,0x1f,0xf8,0x7f,0x3f,0xf8,0x7f,0xf0,0x0f,0xff,0x00,0x7f,0xf8,0x7f,0x8f,0xff,0xff,0xc3,0xff,0x87,0xfc,0x00, 0x00,0x0f,0xfc,0x3f,0x01,0xfc,0x00,0xf0,0xfe,0x0f,0xf0,0x3c,0x0f,0xf0,0x3f,0xc0,0x03,0xfe,0x00,0x3f,0xe0,0x3e,0x07,0xf0,0x03,0xc0,0xff,0xc3,0xf0,0x00, 0x00,0x07,0xfe,0x1e,0x00,0xfc,0x00,0x70,0x7e,0x0f,0xf0,0x78,0x07,0xe0,0x1f,0x80,0x07,0xfe,0x00,0x0f,0xe0,0x1e,0x03,0xf0,0x01,0xc0,0x7f,0xe1,0xe0,0x00, 0x00,0x07,0xff,0x1e,0x00,0xfc,0x06,0x10,0x7f,0x0f,0xf8,0xf0,0x07,0xe0,0x1f,0x80,0x07,0xff,0x00,0x0f,0xf0,0x3c,0x03,0xf0,0x18,0x40,0x7f,0xf1,0xe0,0x00, 0x00,0x07,0xff,0x9e,0x00,0xff,0xfe,0x10,0x3f,0x1f,0xfc,0xf0,0x07,0xff,0xff,0x80,0x0f,0x3f,0x80,0x07,0xf0,0x78,0x03,0xff,0xf8,0x40,0x7f,0xf9,0xe0,0x00, 0x00,0x07,0xbf,0xde,0x00,0xff,0xfe,0x00,0x1f,0xbe,0xfd,0xe0,0x07,0xff,0xff,0x80,0x1f,0x3f,0x80,0x03,0xf8,0x78,0x03,0xff,0xf8,0x00,0x7b,0xfd,0xe0,0x00, 0x00,0x07,0x9f,0xfe,0x00,0xff,0xfe,0x10,0x1f,0xfc,0x7f,0xe0,0x07,0xff,0xff,0x80,0x1e,0x1f,0xc0,0x01,0xfc,0xf0,0x03,0xff,0xf8,0x40,0x79,0xff,0xe0,0x00, 0x00,0x07,0x8f,0xfe,0x00,0xfc,0x06,0x30,0x0f,0xf8,0x7f,0xc0,0x07,0xe0,0x1f,0x80,0x3f,0xff,0xe0,0x00,0xff,0xe0,0x03,0xf0,0x18,0xc0,0x78,0xff,0xe0,0x00, 0x00,0x07,0x87,0xfe,0x00,0xfc,0x00,0xf0,0x0f,0xf8,0x3f,0xc0,0x07,0xe0,0x1f,0x80,0x7f,0xff,0xe0,0x00,0xff,0xe0,0x03,0xf0,0x03,0xc0,0x78,0x7f,0xe0,0x00, 0x00,0x0f,0xc3,0xfe,0x01,0xff,0xff,0xf0,0x07,0xf0,0x3f,0x80,0x0f,0xf0,0x3f,0xc0,0x78,0x07,0xf0,0x00,0x7f,0xc0,0x07,0xff,0xff,0xc0,0xfc,0x3f,0xe0,0x00, 0x00,0x1f,0xe1,0xfe,0x07,0xff,0xff,0xf0,0x0f,0xf8,0x7f,0xc0,0x1f,0xf8,0x7f,0xe1,0xfc,0x0f,0xfc,0x00,0x7f,0xe0,0x1f,0xff,0xff,0xc1,0xfe,0x1f,0xe0,0x00, 0x00,0x7f,0xf8,0xfe,0x1f,0xff,0xff,0xf0,0x1f,0xfc,0xff,0xe0,0x7f,0xff,0xff,0xf7,0xff,0x3f,0xfe,0x00,0xff,0xe0,0x3f,0xff,0xff,0xc7,0xff,0x8f,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0xf8,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x0f,0xff,0xff,0xf0,0x0f,0xff,0xf8,0x7f,0xff,0xf1,0xff,0xff,0xfe,0x0f,0xff,0xfc,0x00,0x03,0xff,0xf8,0x1f,0xff,0xc7,0xff,0x00,0x00,0x00, 0x00,0x00,0x00,0x03,0xff,0xff,0xfe,0x03,0xff,0xe0,0xf0,0x0f,0xf0,0x7f,0xff,0xff,0xc3,0xff,0xf0,0x00,0x01,0xff,0xf0,0x07,0xff,0x83,0xfc,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0xff,0x81,0xff,0x00,0xff,0x81,0xf0,0x01,0xf0,0x1f,0xff,0xff,0xe0,0xff,0xc0,0x00,0x00,0x7f,0xe0,0x01,0xff,0x01,0xf0,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x7f,0x80,0x7f,0x80,0x7f,0x01,0xff,0x00,0x70,0x0f,0xf0,0x0f,0xf0,0x7f,0x80,0x00,0x00,0xff,0xe0,0x00,0xff,0x83,0xe0,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x7f,0x80,0x3f,0xc0,0x7f,0x01,0xff,0xff,0x90,0x0f,0xf0,0x0f,0xf0,0x7f,0x80,0x00,0x01,0xff,0xf0,0x00,0x7f,0xc7,0xc0,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x7f,0x80,0x3f,0xe0,0x7f,0x01,0xff,0xff,0xf0,0x0f,0xf0,0x0f,0xf0,0x7f,0x80,0x00,0x01,0xe7,0xf8,0x00,0x3f,0xef,0x80,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x7f,0x80,0x3f,0xe0,0x7f,0x00,0xff,0xff,0xfc,0x0f,0xff,0xff,0xe0,0x7f,0x80,0x00,0x03,0xe3,0xf8,0x00,0x1f,0xff,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x7f,0x80,0x3f,0xe0,0x7f,0x00,0x7f,0xff,0xfc,0x0f,0xff,0xff,0xc0,0x7f,0x80,0x02,0x07,0xc3,0xfc,0x00,0x0f,0xfe,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x7f,0x80,0x3f,0xe0,0x7f,0x00,0x9f,0xff,0xfe,0x0f,0xff,0xff,0x00,0x7f,0x80,0x0e,0x0f,0xff,0xfe,0x00,0x03,0xf8,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x7f,0x80,0x7f,0xc0,0x7f,0x00,0xc0,0x3f,0xfe,0x0f,0xf0,0x00,0x00,0x7f,0x80,0x1e,0x0f,0xff,0xff,0x00,0x03,0xf8,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x7f,0x80,0xff,0xc0,0x7f,0x00,0xf0,0x00,0x7e,0x0f,0xf0,0x00,0x00,0x7f,0x80,0x3e,0x1f,0x00,0x7f,0x00,0x03,0xf8,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0xff,0xff,0xff,0x80,0xff,0x80,0xff,0x00,0x7e,0x3f,0xfc,0x00,0x00,0xff,0xff,0xfe,0x3f,0x00,0xff,0xc0,0x07,0xfc,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x03,0xff,0xff,0xfe,0x03,0xff,0xe0,0xff,0xff,0xfc,0x7f,0xfe,0x00,0x03,0xff,0xff,0xfe,0x7f,0xc3,0xff,0xe0,0x1f,0xff,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x0f,0xff,0xff,0xf0,0x0f,0xff,0xf8,0xe7,0xff,0xf1,0xff,0xff,0x80,0x0f,0xff,0xff,0xfe,0xff,0xe7,0xff,0xf0,0x3f,0xff,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0xff,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,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, }; code char picture2[] ={ 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3f,0xe0,0xff,0xf0,0x00,0x00,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,0x80,0x3e,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,0x0f,0x80,0x3e,0x7c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x03,0xf0,0x7f,0xff,0xff,0x80,0x01,0xf0,0x00,0xff,0x80,0x01,0xff,0x00,0x00,0x00,0x0f,0x80,0x3e,0x7c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x1f,0xfc,0x7f,0xff,0xff,0x80,0x1f,0xf0,0x03,0xff,0xe0,0x07,0xff,0xc0,0x00,0x00,0x0f,0x80,0x3e,0x7c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x7f,0x00,0x7f,0xff,0xff,0x80,0x1f,0xe0,0x0f,0xc7,0xf0,0x1f,0xff,0xf0,0x00,0x00,0x0f,0x80,0x3e,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0xfc,0x00,0x7f,0xff,0xff,0x00,0x3f,0xe0,0x1f,0x81,0xf8,0x1f,0xff,0xf0,0x00,0x00,0x0f,0x80,0x3e,0xf0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x01,0xf8,0x00,0x7f,0xff,0xff,0x00,0x7f,0xe0,0x1f,0x01,0xf8,0x1f,0xff,0xf8,0x00,0x00,0x0f,0x80,0x3f,0xe0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x03,0xf0,0x00,0x7f,0xff,0xfe,0x00,0xff,0xe0,0x3f,0x00,0xf8,0x1f,0x0f,0xf8,0x00,0x00,0x0f,0x80,0x3e,0xf8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x07,0xe0,0x00,0x7c,0x00,0x3c,0x00,0xff,0xe0,0x3f,0x00,0xfc,0x1e,0x07,0xf8,0x00,0x00,0x0f,0x80,0x3e,0x7c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x0f,0xe0,0x00,0x78,0x00,0x7c,0x01,0xef,0xe0,0x7f,0x00,0xfc,0x1c,0x03,0xf8,0x00,0x00,0x0f,0x80,0x3e,0x3c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x1f,0xc0,0x00,0x78,0x00,0x78,0x01,0xef,0xe0,0x7f,0x00,0xf8,0x3c,0x03,0xf8,0x00,0x00,0x0f,0x80,0x3e,0x3e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x1f,0xc0,0x00,0x78,0x00,0xf8,0x03,0xcf,0xe0,0x7f,0x80,0xf8,0x38,0x01,0xf8,0x00,0x00,0x0f,0x83,0x3e,0x7c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x3f,0x80,0x00,0x78,0x00,0xf0,0x07,0x8f,0xe0,0x7f,0xc1,0xf8,0x00,0x01,0xf8,0x00,0x00,0x0f,0x87,0x3e,0x7c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x3f,0x80,0x00,0x00,0x01,0xf0,0x07,0x8f,0xe0,0x3f,0xf1,0xf0,0x00,0x03,0xf8,0x00,0x00,0x0f,0x87,0x3e,0xf8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x3f,0x9f,0xe0,0x00,0x01,0xe0,0x0f,0x0f,0xe0,0x3f,0xff,0xe0,0x00,0x03,0xf0,0x00,0x00,0x1f,0xff,0x7f,0xe0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x7f,0xff,0xf0,0x00,0x03,0xe0,0x0f,0x0f,0xe0,0x3f,0xff,0xc0,0x00,0x03,0xe0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x7f,0xff,0xf8,0x00,0x07,0xc0,0x1e,0x0f,0xe0,0x1f,0xff,0xc0,0x00,0x07,0xc0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x7f,0xff,0xfc,0x00,0x07,0xc0,0x3c,0x1f,0xe0,0x0f,0xff,0xf0,0x00,0x1f,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x7f,0xe7,0xfc,0x00,0x0f,0x80,0x3c,0x1f,0xe0,0x03,0xff,0xf8,0x01,0xff,0xe0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x7f,0x81,0xfe,0x00,0x0f,0x80,0x78,0x1f,0xe0,0x0f,0xff,0xfc,0x03,0xff,0xf8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x7f,0x81,0xfe,0x00,0x1f,0x00,0x78,0x1f,0xe0,0x1f,0xbf,0xfc,0x03,0x0f,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x7f,0x80,0xfe,0x00,0x3f,0x00,0xf0,0x1f,0xe0,0x3f,0x0f,0xfe,0x00,0x03,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x7f,0x00,0xfe,0x00,0x3e,0x00,0xff,0xff,0xfe,0x7e,0x03,0xfe,0x00,0x01,0xfe,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x7f,0x00,0xfe,0x00,0x7e,0x01,0xff,0xff,0xfe,0x7e,0x01,0xfe,0x00,0x01,0xfe,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x7f,0x00,0xfe,0x00,0x7c,0x01,0xff,0xff,0xfe,0x7c,0x00,0xfe,0x00,0x01,0xfe,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x7f,0x00,0xfe,0x00,0xfc,0x00,0xff,0xff,0xfe,0xfc,0x00,0xfe,0x00,0x00,0xfe,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x7f,0x80,0xfe,0x01,0xf8,0x00,0x00,0x1f,0xe0,0xfc,0x00,0xfe,0x00,0x00,0xfe,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x7f,0x80,0xfe,0x01,0xf8,0x00,0x00,0x1f,0xe0,0xfc,0x00,0xfc,0xf0,0x00,0xfe,0x00,0x00,0x00,0x3f,0xf1,0xff,0xf8,0x07,0xfc,0x01,0xfe,0x07,0xf8,0x00, 0x00,0x3f,0x80,0xfc,0x03,0xf0,0x00,0x00,0x1f,0xe0,0x7e,0x00,0xfc,0x70,0x01,0xfc,0x00,0x00,0x00,0xf8,0x78,0x7c,0xfc,0x1f,0x1f,0x07,0x8e,0x1e,0x38,0x00, 0x00,0x3f,0x80,0xfc,0x07,0xf0,0x00,0x00,0x1f,0xe0,0x7e,0x00,0xfc,0x78,0x01,0xf8,0x00,0x00,0x03,0xe0,0x38,0x7c,0x7c,0x3e,0x0f,0x8f,0x0e,0x3c,0x38,0x00, 0x00,0x1f,0xc1,0xf8,0x07,0xf0,0x00,0x00,0x1f,0xe0,0x7f,0x01,0xf8,0x7c,0x01,0xf8,0x00,0x00,0x03,0xc0,0x38,0x7c,0x7c,0x7c,0x07,0xcf,0x06,0x3c,0x18,0x00, 0x00,0x0f,0xc1,0xf0,0x0f,0xe0,0x00,0x00,0x3f,0xf0,0x3f,0x01,0xf0,0x7e,0x03,0xe0,0x00,0x00,0x07,0xc0,0x38,0x7c,0x7c,0x78,0x07,0xcf,0x00,0x3c,0x00,0x00, 0x00,0x0f,0xe3,0xe0,0x0f,0xe0,0x00,0x07,0xff,0xfe,0x1f,0xc7,0xe0,0x7f,0x0f,0xc0,0x00,0x00,0x07,0x80,0x00,0x7c,0x78,0xf8,0x03,0xef,0x80,0x3e,0x00,0x00, 0x00,0x03,0xff,0xc0,0x1f,0xc0,0x00,0x07,0xff,0xfe,0x0f,0xff,0xc0,0x3f,0xff,0x00,0x00,0x00,0x0f,0x80,0x00,0x7c,0xf0,0xf8,0x03,0xef,0xf8,0x3f,0xe0,0x00, 0x00,0x00,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0xfe,0x00,0x0f,0xf8,0x00,0x00,0x00,0x0f,0x80,0x00,0x7f,0xe0,0xf8,0x03,0xef,0xfe,0x3f,0xf8,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x80,0x00,0x7f,0xe0,0xf8,0x03,0xe3,0xff,0x0f,0xfc,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x83,0xfe,0x7f,0xf0,0xf8,0x03,0xe0,0x3f,0x80,0xfe,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0xc0,0x7c,0x7d,0xf8,0xf8,0x03,0xe0,0x0f,0x80,0x3e,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0xc0,0x7c,0x7c,0xf8,0x7c,0x03,0xcc,0x0f,0xb0,0x3e,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0xe0,0x7c,0x7c,0xfc,0x7c,0x07,0xcc,0x0f,0x30,0x3c,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0xf0,0x7c,0x7c,0x7e,0x3e,0x0f,0x8e,0x0f,0x38,0x3c,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0xfc,0x7c,0x3e,0x1f,0x1f,0x0f,0x1e,0x3c,0x78,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3f,0xe1,0xff,0x3f,0x07,0xfc,0x07,0xf8,0x1f,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, }; code char picture3[] ={ 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3f,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,0x03,0xc1,0x07,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x06,0x38,0xf3,0x8e,0x06,0x0f,0x80,0x00,0x00,0x1c,0x01,0x00,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x06,0x6c,0xc6,0xdb,0x06,0x0c,0xc0,0x00,0x00,0x60,0x01,0x00,0x0c,0x00,0x00,0x00,0xf1,0xf0,0xf0,0xf0,0xf0,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x0e,0x0d,0x86,0xdb,0x06,0x0c,0xc0,0x00,0x00,0x80,0x01,0x00,0x02,0x00,0x00,0x01,0x99,0x99,0x99,0x99,0x98,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x0e,0x0d,0xe6,0xdb,0x06,0x0c,0xc0,0x00,0x03,0x00,0x01,0x00,0x01,0x80,0x00,0x01,0x99,0x99,0x99,0x99,0x98,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x16,0x1d,0x36,0xdb,0x06,0x0f,0x80,0x00,0x04,0x04,0x00,0x00,0x00,0x40,0x00,0x01,0x81,0x99,0x99,0xe1,0xe0,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x16,0x38,0x36,0xdb,0x06,0x0c,0xc0,0x00,0x08,0x04,0x00,0x00,0x00,0x20,0x00,0x01,0xb9,0xf1,0x98,0xf0,0xf0,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x1f,0x30,0x36,0xdb,0x06,0x0c,0xc0,0x00,0x30,0x02,0x00,0x00,0x00,0x18,0x00,0x01,0x99,0xb1,0x98,0x38,0x38,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x06,0x71,0xb6,0xdb,0x06,0x0c,0xc0,0x00,0x40,0x02,0x00,0x00,0x00,0x04,0x00,0x01,0x99,0xb9,0x99,0x99,0x98,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x06,0x7c,0xe3,0x8e,0x07,0xcf,0x80,0x00,0xc0,0x01,0x00,0x00,0x00,0x02,0x00,0x01,0x99,0x99,0x99,0x99,0x98,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x01,0x00,0x00,0x00,0x06,0x00,0x00,0xf1,0x8c,0xf0,0xf0,0xf0,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x18,0x01,0x00,0x00,0x00,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x04,0x00,0x80,0x00,0x00,0x10,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x02,0x00,0x80,0x00,0x00,0x20,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0x00,0x40,0x00,0x00,0x00,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x40,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x00,0x20,0x00,0x00,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x00,0x20,0x00,0x00,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x20,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x10,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x10,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x00,0x08,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x00,0x08,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x00,0x08,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x00,0x04,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x00,0x00,0x04,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x00,0x00,0x02,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x00,0x00,0x02,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x00,0x00,0x01,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xfe,0x00,0x00,0x03,0x80,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x7e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x1c,0x7c,0x7c,0x01,0x99,0x8f,0x1f,0x1f,0x3e,0x33,0xe6,0x6f,0xc0,0x00,0x3e,0x7c,0x7c,0x78,0x78,0x01,0xe7,0xe7,0x1f,0x3f,0x00,0x00,0x00,0x00,0x00, 0x00,0x1c,0x66,0x66,0x01,0x9d,0x99,0x99,0x98,0x33,0x33,0x07,0x63,0x00,0x00,0x33,0x66,0x60,0xcc,0xcc,0x03,0x31,0x87,0x19,0x8c,0x00,0x00,0x00,0x00,0x00, 0x00,0x36,0x66,0x66,0x01,0x9d,0x99,0x99,0x98,0x33,0x33,0x07,0x63,0x00,0x00,0x33,0x66,0x60,0xcc,0xcc,0x03,0x31,0x8d,0x99,0x8c,0x00,0x00,0x00,0x00,0x00, 0x00,0x36,0x66,0x66,0x01,0x9d,0x98,0x19,0x98,0x33,0x33,0x07,0x63,0x00,0x00,0x33,0x66,0x60,0xf0,0xf0,0x03,0xc1,0x8d,0x99,0x8c,0x00,0x00,0x00,0x00,0x00, 0x00,0x36,0x66,0x66,0x01,0x9f,0x9b,0x9f,0x1f,0x33,0x33,0xe7,0xe3,0x00,0x00,0x33,0x7c,0x7c,0x78,0x78,0x01,0xe1,0x8d,0x9f,0x0c,0x00,0x00,0x00,0x00,0x00, 0x00,0x3e,0x66,0x66,0x01,0x9b,0x99,0x9b,0x18,0x33,0x33,0x06,0xe3,0x00,0x00,0x3e,0x6c,0x60,0x1c,0x1c,0x00,0x71,0x8f,0x9b,0x0c,0x00,0x00,0x00,0x00,0x00, 0x00,0x36,0x66,0x66,0x01,0x9b,0x99,0x9b,0x98,0x33,0x33,0x06,0xe3,0x00,0x00,0x30,0x6e,0x60,0xcc,0xcc,0x03,0x31,0x8d,0x9b,0x8c,0x00,0x00,0x00,0x00,0x00, 0x00,0x63,0x66,0x66,0x01,0x9b,0x99,0x99,0x98,0x33,0x33,0x06,0xe3,0x00,0x00,0x30,0x66,0x60,0xcc,0xcc,0x03,0x31,0x98,0xd9,0x8c,0x00,0x00,0x00,0x00,0x00, 0x00,0x63,0x7c,0x7c,0x01,0x99,0x8f,0x18,0xdf,0x3e,0x33,0xe6,0x63,0x06,0x00,0x30,0x63,0x7c,0x78,0x78,0x01,0xe1,0x98,0xd8,0xcc,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,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,0xff,0xff,0xff,0xff,0xff,0x1f,0xff,0xff,0xff,0xff,0xfe,0x3f,0xff,0xff,0xff,0xff,0xfc,0x7f,0xff,0xff,0xff,0xff,0xf8,0xff,0xff,0xff,0xff,0xff,0xf0, 0x0f,0xff,0xff,0xff,0xff,0xff,0x1f,0xff,0xff,0xff,0xff,0xfe,0x3f,0xff,0xff,0xff,0xff,0xfc,0x7f,0xff,0xff,0xff,0xff,0xf8,0xff,0xff,0xff,0xff,0xff,0xf0, 0x0f,0xff,0xff,0xff,0xff,0xff,0x1f,0xff,0xff,0xff,0xff,0xfe,0x3f,0xff,0xff,0xff,0xff,0xfc,0x7f,0xff,0xff,0xff,0xff,0xf8,0xff,0xff,0xff,0xff,0xff,0xf0, 0x0f,0x84,0x07,0xb8,0x10,0x1f,0x1f,0xf8,0x40,0x41,0x83,0xfe,0x3f,0xe2,0x31,0x83,0xf7,0xfc,0x7f,0xc4,0x63,0x07,0x8f,0xf8,0xc0,0x82,0x0c,0x18,0x10,0x10, 0x0f,0x75,0xb7,0x5d,0xd6,0xdf,0x1f,0xf7,0x5b,0x5c,0xdb,0xfe,0x3f,0xf7,0x3b,0x7b,0xc7,0xfc,0x7f,0xee,0x76,0xf7,0xb7,0xf8,0xee,0xdb,0x6d,0xcd,0xd6,0xd0, 0x0f,0x7f,0xbf,0x5d,0xbe,0xff,0x1f,0xf7,0xfb,0xbe,0xdb,0xfe,0x3f,0xf7,0x5a,0xff,0xf7,0xfc,0x7f,0xee,0xb5,0xff,0xf7,0xf8,0xed,0xd7,0x6b,0xed,0xbe,0xf0, 0x0f,0x87,0xbf,0x5c,0x7e,0xff,0x1f,0xf8,0x7b,0xbe,0xc7,0xfe,0x3f,0xf7,0x6a,0xf3,0xf7,0xfc,0x7f,0xee,0xd5,0xe7,0xef,0xf8,0xe3,0xc7,0x1b,0xec,0x7e,0xf0, 0x0f,0xf7,0xbe,0x0d,0x7e,0xff,0x1f,0xff,0x7b,0xbe,0xdf,0xfe,0x3f,0xf7,0x72,0xfb,0xf7,0xfc,0x7f,0xee,0xe5,0xf7,0xef,0xf8,0xeb,0xd7,0x7b,0xed,0x7e,0xf0, 0x0f,0x77,0xbe,0xed,0xbe,0xff,0x1f,0xf7,0x7b,0x9d,0xdf,0xfe,0x3f,0xf7,0x73,0x7b,0xf7,0xfc,0x7f,0xee,0xe6,0xf7,0xdf,0xf8,0xed,0xdb,0x79,0xdd,0xbe,0xf0, 0x0f,0x0f,0x1c,0xe0,0xdc,0x7f,0x1f,0xf0,0xf1,0xc3,0x8f,0xfe,0x3f,0xe2,0x3b,0x87,0xe3,0xfc,0x7f,0xc4,0x77,0x0f,0x87,0xf8,0xc6,0x82,0x3c,0x38,0xdc,0x70, 0x0f,0xff,0xff,0xff,0xff,0xff,0x1f,0xff,0xff,0xff,0xff,0xfe,0x3f,0xff,0xff,0xff,0xff,0xfc,0x7f,0xff,0xff,0xff,0xff,0xf8,0xff,0xff,0xff,0xff,0xff,0xf0, 0x0f,0xff,0xff,0xff,0xff,0xff,0x1f,0xff,0xff,0xff,0xff,0xfe,0x3f,0xff,0xff,0xff,0xff,0xfc,0x7f,0xff,0xff,0xff,0xff,0xf8,0xff,0xff,0xff,0xff,0xff,0xf0, 0x0f,0xff,0xff,0xff,0xff,0xff,0x1f,0xff,0xff,0xff,0xff,0xfe,0x3f,0xff,0xff,0xff,0xff,0xfc,0x7f,0xff,0xff,0xff,0xff,0xf8,0xff,0xff,0xff,0xff,0xff,0xf0, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, };