Sonido

Dependencies:   mbed wave_player SDFileSystem TextLCD

Committer:
chessdsbr
Date:
Wed May 20 21:37:40 2020 +0000
Revision:
2:32e1e71f5885
Parent:
0:bdbd3d6fc5d5
Sonidos

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mbed_official 0:bdbd3d6fc5d5 1 #include "mbed.h"
mbed_official 0:bdbd3d6fc5d5 2 #include "SDFileSystem.h"
chessdsbr 2:32e1e71f5885 3 #include <wave_player.h>
chessdsbr 2:32e1e71f5885 4 #include "TextLCD.h"
chessdsbr 2:32e1e71f5885 5
chessdsbr 2:32e1e71f5885 6 Ticker columna;
chessdsbr 2:32e1e71f5885 7 Ticker imagen;
chessdsbr 2:32e1e71f5885 8
chessdsbr 2:32e1e71f5885 9 AnalogOut DAcout (PTE30);
chessdsbr 2:32e1e71f5885 10 SDFileSystem sd(D11, D12, D13, D10, "sd"); // the pinout on the mbed Cool Components workshop board
chessdsbr 2:32e1e71f5885 11 wave_player waver(&DAcout);
mbed_official 0:bdbd3d6fc5d5 12
chessdsbr 2:32e1e71f5885 13 TextLCD lcd(PTE20,PTE21,PTB0,PTB1,PTB2,PTB3,TextLCD::LCD16x2);//Asignación de pines para rs, e, d4, d5. d6,d7
chessdsbr 2:32e1e71f5885 14 DigitalOut red(LED1,1);
chessdsbr 2:32e1e71f5885 15 DigitalOut green(LED2,1);
chessdsbr 2:32e1e71f5885 16 BusOut colum(PTE5,PTE4,PTE3,PTE2,PTB11,PTB10,PTB9,PTB8);
chessdsbr 2:32e1e71f5885 17 BusOut row(PTC7,PTC0,PTC3,PTC4,PTC5,PTC6,PTC10,PTC11);
chessdsbr 2:32e1e71f5885 18 BusOut colum_2(PTD5,PTA13,PTD4,PTA12,PTA4,PTA5,PTC8,PTC9);
chessdsbr 2:32e1e71f5885 19 BusOut row_2(PTC12,PTC13,PTC16,PTC17,PTA16,PTA17,PTD6,PTD7);
chessdsbr 2:32e1e71f5885 20
chessdsbr 2:32e1e71f5885 21 Serial pc(USBTX,USBRX);
chessdsbr 2:32e1e71f5885 22
chessdsbr 2:32e1e71f5885 23 int perder=0;
chessdsbr 2:32e1e71f5885 24 int counter=0;
chessdsbr 2:32e1e71f5885 25 int cambio_im=0;
chessdsbr 2:32e1e71f5885 26 int im_escogida=0;
chessdsbr 2:32e1e71f5885 27 int figura_dib[8];
chessdsbr 2:32e1e71f5885 28 char serial;
chessdsbr 2:32e1e71f5885 29 const char cuadrado[8]={0xFF, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0xFF};
chessdsbr 2:32e1e71f5885 30 const char triangulo[8]={0xFF, 0x41, 0x21, 0x11, 0x9, 0x5, 0x3, 0x1};
chessdsbr 2:32e1e71f5885 31 const char rombo[8]={0x18, 0x24, 0x42, 0x42, 0x42, 0x42, 0x24, 0x18};
chessdsbr 2:32e1e71f5885 32 const char triste[8]={0x3C, 0x42, 0xA5, 0x81, 0x99, 0xA5, 0x42, 0x3C};
chessdsbr 2:32e1e71f5885 33 const char feliz[8]={0x3C, 0x42, 0xA5, 0x81, 0xA5, 0x99, 0x42, 0x3C};
chessdsbr 2:32e1e71f5885 34 int seg1=0; //Variable para contador de unidades de segundo
chessdsbr 2:32e1e71f5885 35 int seg2=0; //Variable para contador de décimas de segundo
chessdsbr 2:32e1e71f5885 36 int min1=0; //Variable para contador de unidades de minuto
chessdsbr 2:32e1e71f5885 37
chessdsbr 2:32e1e71f5885 38 int l1=0;
chessdsbr 2:32e1e71f5885 39 int l2=0;
chessdsbr 2:32e1e71f5885 40 int l3=0;
chessdsbr 2:32e1e71f5885 41 int l4=0;
chessdsbr 2:32e1e71f5885 42 int l5=0;
chessdsbr 2:32e1e71f5885 43 int l6=0;
chessdsbr 2:32e1e71f5885 44 int l7=0;
chessdsbr 2:32e1e71f5885 45 int l8=0;
chessdsbr 2:32e1e71f5885 46
chessdsbr 2:32e1e71f5885 47 int l9=0;
chessdsbr 2:32e1e71f5885 48 int l10=0;
chessdsbr 2:32e1e71f5885 49 int l11=0;
chessdsbr 2:32e1e71f5885 50 int l12=0;
chessdsbr 2:32e1e71f5885 51 int l13=0;
chessdsbr 2:32e1e71f5885 52 int l14=0;
chessdsbr 2:32e1e71f5885 53 int l15=0;
chessdsbr 2:32e1e71f5885 54 int l16=0;
chessdsbr 2:32e1e71f5885 55
chessdsbr 2:32e1e71f5885 56 int l17=0;
chessdsbr 2:32e1e71f5885 57 int l18=0;
chessdsbr 2:32e1e71f5885 58 int l19=0;
chessdsbr 2:32e1e71f5885 59 int l20=0;
chessdsbr 2:32e1e71f5885 60 int l21=0;
chessdsbr 2:32e1e71f5885 61 int l22=0;
chessdsbr 2:32e1e71f5885 62 int l23=0;
chessdsbr 2:32e1e71f5885 63 int l24=0;
chessdsbr 2:32e1e71f5885 64
chessdsbr 2:32e1e71f5885 65 int l25=0;
chessdsbr 2:32e1e71f5885 66 int l26=0;
chessdsbr 2:32e1e71f5885 67 int l27=0;
chessdsbr 2:32e1e71f5885 68 int l28=0;
chessdsbr 2:32e1e71f5885 69 int l29=0;
chessdsbr 2:32e1e71f5885 70 int l30=0;
chessdsbr 2:32e1e71f5885 71 int l31=0;
chessdsbr 2:32e1e71f5885 72 int l32=0;
chessdsbr 2:32e1e71f5885 73
chessdsbr 2:32e1e71f5885 74 int l33=0;
chessdsbr 2:32e1e71f5885 75 int l34=0;
chessdsbr 2:32e1e71f5885 76 int l35=0;
chessdsbr 2:32e1e71f5885 77 int l36=0;
chessdsbr 2:32e1e71f5885 78 int l37=0;
chessdsbr 2:32e1e71f5885 79 int l38=0;
chessdsbr 2:32e1e71f5885 80 int l39=0;
chessdsbr 2:32e1e71f5885 81 int l40=0;
chessdsbr 2:32e1e71f5885 82
chessdsbr 2:32e1e71f5885 83 int l41=0;
chessdsbr 2:32e1e71f5885 84 int l42=0;
chessdsbr 2:32e1e71f5885 85 int l43=0;
chessdsbr 2:32e1e71f5885 86 int l44=0;
chessdsbr 2:32e1e71f5885 87 int l45=0;
chessdsbr 2:32e1e71f5885 88 int l46=0;
chessdsbr 2:32e1e71f5885 89 int l47=0;
chessdsbr 2:32e1e71f5885 90 int l48=0;
chessdsbr 2:32e1e71f5885 91
chessdsbr 2:32e1e71f5885 92 int l49=0;
chessdsbr 2:32e1e71f5885 93 int l50=0;
chessdsbr 2:32e1e71f5885 94 int l51=0;
chessdsbr 2:32e1e71f5885 95 int l52=0;
chessdsbr 2:32e1e71f5885 96 int l53=0;
chessdsbr 2:32e1e71f5885 97 int l54=0;
chessdsbr 2:32e1e71f5885 98 int l55=0;
chessdsbr 2:32e1e71f5885 99 int l56=0;
chessdsbr 2:32e1e71f5885 100
chessdsbr 2:32e1e71f5885 101 int l57=0;
chessdsbr 2:32e1e71f5885 102 int l58=0;
chessdsbr 2:32e1e71f5885 103 int l59=0;
chessdsbr 2:32e1e71f5885 104 int l60=0;
chessdsbr 2:32e1e71f5885 105 int l61=0;
chessdsbr 2:32e1e71f5885 106 int l62=0;
chessdsbr 2:32e1e71f5885 107 int l63=0;
chessdsbr 2:32e1e71f5885 108 int l64=0;
chessdsbr 2:32e1e71f5885 109
chessdsbr 2:32e1e71f5885 110 void receivedByte()
chessdsbr 2:32e1e71f5885 111 {
chessdsbr 2:32e1e71f5885 112 serial = pc.getc();
chessdsbr 2:32e1e71f5885 113 if(serial=='/') {
chessdsbr 2:32e1e71f5885 114 red=!red;
chessdsbr 2:32e1e71f5885 115 }
chessdsbr 2:32e1e71f5885 116 if(serial=='*') {
chessdsbr 2:32e1e71f5885 117 green=!green;
chessdsbr 2:32e1e71f5885 118 }
chessdsbr 2:32e1e71f5885 119 if(serial=='a') {
chessdsbr 2:32e1e71f5885 120 l1=!l1;
chessdsbr 2:32e1e71f5885 121 }
chessdsbr 2:32e1e71f5885 122 if(serial=='b') {
chessdsbr 2:32e1e71f5885 123 l2=!l2;
chessdsbr 2:32e1e71f5885 124 }
chessdsbr 2:32e1e71f5885 125 if(serial=='c') {
chessdsbr 2:32e1e71f5885 126 l3=!l3;
chessdsbr 2:32e1e71f5885 127 }
chessdsbr 2:32e1e71f5885 128 if(serial=='d') {
chessdsbr 2:32e1e71f5885 129 l4=!l4;
chessdsbr 2:32e1e71f5885 130 }
chessdsbr 2:32e1e71f5885 131 if(serial=='e') {
chessdsbr 2:32e1e71f5885 132 l5=!l5;
chessdsbr 2:32e1e71f5885 133 }
chessdsbr 2:32e1e71f5885 134 if(serial=='f') {
chessdsbr 2:32e1e71f5885 135 l6=!l6;
chessdsbr 2:32e1e71f5885 136 }
chessdsbr 2:32e1e71f5885 137 if(serial=='g') {
chessdsbr 2:32e1e71f5885 138 l7=!l7;
chessdsbr 2:32e1e71f5885 139 }
chessdsbr 2:32e1e71f5885 140 if(serial=='h') {
chessdsbr 2:32e1e71f5885 141 l8=!l8;
chessdsbr 2:32e1e71f5885 142 }
chessdsbr 2:32e1e71f5885 143 if(serial=='i') {
chessdsbr 2:32e1e71f5885 144 l9=!l9;
chessdsbr 2:32e1e71f5885 145 }
chessdsbr 2:32e1e71f5885 146 if(serial=='j') {
chessdsbr 2:32e1e71f5885 147 l10=!l10;
chessdsbr 2:32e1e71f5885 148 }
chessdsbr 2:32e1e71f5885 149 if(serial=='k') {
chessdsbr 2:32e1e71f5885 150 l11=!l11;
chessdsbr 2:32e1e71f5885 151 }
chessdsbr 2:32e1e71f5885 152 if(serial=='l') {
chessdsbr 2:32e1e71f5885 153 l12=!l12;
chessdsbr 2:32e1e71f5885 154 }
chessdsbr 2:32e1e71f5885 155 if(serial=='m') {
chessdsbr 2:32e1e71f5885 156 l13=!l13;
chessdsbr 2:32e1e71f5885 157 }
chessdsbr 2:32e1e71f5885 158 if(serial=='n') {
chessdsbr 2:32e1e71f5885 159 l14=!l14;
chessdsbr 2:32e1e71f5885 160 }
chessdsbr 2:32e1e71f5885 161 if(serial=='o') {
chessdsbr 2:32e1e71f5885 162 l15=!l15;
chessdsbr 2:32e1e71f5885 163 }
chessdsbr 2:32e1e71f5885 164 if(serial=='p') {
chessdsbr 2:32e1e71f5885 165 l16=!l16;
chessdsbr 2:32e1e71f5885 166 }
chessdsbr 2:32e1e71f5885 167 if(serial=='q') {
chessdsbr 2:32e1e71f5885 168 l17=!l17;
chessdsbr 2:32e1e71f5885 169 }
chessdsbr 2:32e1e71f5885 170 if(serial=='r') {
chessdsbr 2:32e1e71f5885 171 l18=!l18;
chessdsbr 2:32e1e71f5885 172 }
chessdsbr 2:32e1e71f5885 173 if(serial=='s') {
chessdsbr 2:32e1e71f5885 174 l19=!l19;
chessdsbr 2:32e1e71f5885 175 }
chessdsbr 2:32e1e71f5885 176 if(serial=='t') {
chessdsbr 2:32e1e71f5885 177 l20=!l20;
chessdsbr 2:32e1e71f5885 178 }
chessdsbr 2:32e1e71f5885 179 if(serial=='u') {
chessdsbr 2:32e1e71f5885 180 l21=!l21;
chessdsbr 2:32e1e71f5885 181 }
chessdsbr 2:32e1e71f5885 182 if(serial=='v') {
chessdsbr 2:32e1e71f5885 183 l22=!l22;
chessdsbr 2:32e1e71f5885 184 }
chessdsbr 2:32e1e71f5885 185 if(serial=='w') {
chessdsbr 2:32e1e71f5885 186 l23=!l23;
chessdsbr 2:32e1e71f5885 187 }
chessdsbr 2:32e1e71f5885 188 if(serial=='x') {
chessdsbr 2:32e1e71f5885 189 l24=!l24;
chessdsbr 2:32e1e71f5885 190 }
chessdsbr 2:32e1e71f5885 191 if(serial=='y') {
chessdsbr 2:32e1e71f5885 192 l25=!l25;
chessdsbr 2:32e1e71f5885 193 }
chessdsbr 2:32e1e71f5885 194 if(serial=='z') {
chessdsbr 2:32e1e71f5885 195 l26=!l26;
chessdsbr 2:32e1e71f5885 196 }
chessdsbr 2:32e1e71f5885 197 if(serial=='A') {
chessdsbr 2:32e1e71f5885 198 l27=!l27;
chessdsbr 2:32e1e71f5885 199 }
chessdsbr 2:32e1e71f5885 200 if(serial=='B') {
chessdsbr 2:32e1e71f5885 201 l28=!l28;
chessdsbr 2:32e1e71f5885 202 }
chessdsbr 2:32e1e71f5885 203 if(serial=='C') {
chessdsbr 2:32e1e71f5885 204 l29=!l29;
chessdsbr 2:32e1e71f5885 205 }
chessdsbr 2:32e1e71f5885 206 if(serial=='D') {
chessdsbr 2:32e1e71f5885 207 l30=!l30;
chessdsbr 2:32e1e71f5885 208 }
chessdsbr 2:32e1e71f5885 209 if(serial=='E') {
chessdsbr 2:32e1e71f5885 210 l31=!l31;
chessdsbr 2:32e1e71f5885 211 }
chessdsbr 2:32e1e71f5885 212 if(serial=='F') {
chessdsbr 2:32e1e71f5885 213 l32=!l32;
chessdsbr 2:32e1e71f5885 214 }
chessdsbr 2:32e1e71f5885 215 if(serial=='G') {
chessdsbr 2:32e1e71f5885 216 l33=!l33;
chessdsbr 2:32e1e71f5885 217 }
chessdsbr 2:32e1e71f5885 218 if(serial=='H') {
chessdsbr 2:32e1e71f5885 219 l34=!l34;
chessdsbr 2:32e1e71f5885 220 }
chessdsbr 2:32e1e71f5885 221 if(serial=='I') {
chessdsbr 2:32e1e71f5885 222 l35=!l35;
chessdsbr 2:32e1e71f5885 223 }
chessdsbr 2:32e1e71f5885 224 if(serial=='J') {
chessdsbr 2:32e1e71f5885 225 l36=!l36;
chessdsbr 2:32e1e71f5885 226 }
chessdsbr 2:32e1e71f5885 227 if(serial=='K') {
chessdsbr 2:32e1e71f5885 228 l37=!l37;
chessdsbr 2:32e1e71f5885 229 }
chessdsbr 2:32e1e71f5885 230 if(serial=='L') {
chessdsbr 2:32e1e71f5885 231 l38=!l38;
chessdsbr 2:32e1e71f5885 232 }
chessdsbr 2:32e1e71f5885 233 if(serial=='M') {
chessdsbr 2:32e1e71f5885 234 l39=!l39;
chessdsbr 2:32e1e71f5885 235 }
chessdsbr 2:32e1e71f5885 236 if(serial=='N') {
chessdsbr 2:32e1e71f5885 237 l40=!l40;
chessdsbr 2:32e1e71f5885 238 }
chessdsbr 2:32e1e71f5885 239 if(serial=='O') {
chessdsbr 2:32e1e71f5885 240 l41=!l41;
chessdsbr 2:32e1e71f5885 241 }
chessdsbr 2:32e1e71f5885 242 if(serial=='P') {
chessdsbr 2:32e1e71f5885 243 l42=!l42;
chessdsbr 2:32e1e71f5885 244 }
chessdsbr 2:32e1e71f5885 245 if(serial=='Q') {
chessdsbr 2:32e1e71f5885 246 l43=!l43;
chessdsbr 2:32e1e71f5885 247 }
chessdsbr 2:32e1e71f5885 248 if(serial=='R') {
chessdsbr 2:32e1e71f5885 249 l44=!l44;
chessdsbr 2:32e1e71f5885 250 }
chessdsbr 2:32e1e71f5885 251 if(serial=='S') {
chessdsbr 2:32e1e71f5885 252 l45=!l45;
chessdsbr 2:32e1e71f5885 253 }
chessdsbr 2:32e1e71f5885 254 if(serial=='T') {
chessdsbr 2:32e1e71f5885 255 l46=!l46;
chessdsbr 2:32e1e71f5885 256 }
chessdsbr 2:32e1e71f5885 257 if(serial=='U') {
chessdsbr 2:32e1e71f5885 258 l47=!l47;
chessdsbr 2:32e1e71f5885 259 }
chessdsbr 2:32e1e71f5885 260 if(serial=='V') {
chessdsbr 2:32e1e71f5885 261 l48=!l48;
chessdsbr 2:32e1e71f5885 262 }
chessdsbr 2:32e1e71f5885 263 if(serial=='W') {
chessdsbr 2:32e1e71f5885 264 l49=!l49;
chessdsbr 2:32e1e71f5885 265 }
chessdsbr 2:32e1e71f5885 266 if(serial=='X') {
chessdsbr 2:32e1e71f5885 267 l50=!l50;
chessdsbr 2:32e1e71f5885 268 }
chessdsbr 2:32e1e71f5885 269 if(serial=='Y') {
chessdsbr 2:32e1e71f5885 270 l51=!l51;
chessdsbr 2:32e1e71f5885 271 }
chessdsbr 2:32e1e71f5885 272 if(serial=='Z') {
chessdsbr 2:32e1e71f5885 273 l52=!l52;
chessdsbr 2:32e1e71f5885 274 }
chessdsbr 2:32e1e71f5885 275 if(serial=='0') {
chessdsbr 2:32e1e71f5885 276 l53=!l53;
chessdsbr 2:32e1e71f5885 277 }
chessdsbr 2:32e1e71f5885 278 if(serial=='&') {
chessdsbr 2:32e1e71f5885 279 l54=!l54;
chessdsbr 2:32e1e71f5885 280 }
chessdsbr 2:32e1e71f5885 281 if(serial=='2') {
chessdsbr 2:32e1e71f5885 282 l55=!l55;
chessdsbr 2:32e1e71f5885 283 }
chessdsbr 2:32e1e71f5885 284 if(serial=='3') {
chessdsbr 2:32e1e71f5885 285 l56=!l56;
chessdsbr 2:32e1e71f5885 286 }
chessdsbr 2:32e1e71f5885 287 if(serial=='4') {
chessdsbr 2:32e1e71f5885 288 l57=!l57;
chessdsbr 2:32e1e71f5885 289 }
chessdsbr 2:32e1e71f5885 290 if(serial=='5') {
chessdsbr 2:32e1e71f5885 291 l58=!l58;
chessdsbr 2:32e1e71f5885 292 }
chessdsbr 2:32e1e71f5885 293 if(serial=='6') {
chessdsbr 2:32e1e71f5885 294 l59=!l59;
chessdsbr 2:32e1e71f5885 295 }
chessdsbr 2:32e1e71f5885 296 if(serial=='7') {
chessdsbr 2:32e1e71f5885 297 l60=!l60;
chessdsbr 2:32e1e71f5885 298 }
chessdsbr 2:32e1e71f5885 299 if(serial=='8') {
chessdsbr 2:32e1e71f5885 300 l61=!l61;
chessdsbr 2:32e1e71f5885 301 }
chessdsbr 2:32e1e71f5885 302 if(serial=='9') {
chessdsbr 2:32e1e71f5885 303 l62=!l62;
chessdsbr 2:32e1e71f5885 304 }
chessdsbr 2:32e1e71f5885 305 if(serial=='+') {
chessdsbr 2:32e1e71f5885 306 l63=!l63;
chessdsbr 2:32e1e71f5885 307 }
chessdsbr 2:32e1e71f5885 308 if(serial=='-') {
chessdsbr 2:32e1e71f5885 309 l64=!l64;
chessdsbr 2:32e1e71f5885 310 }
chessdsbr 2:32e1e71f5885 311 ///////////
chessdsbr 2:32e1e71f5885 312 if(serial=='!') {
chessdsbr 2:32e1e71f5885 313 cambio_im=1;
chessdsbr 2:32e1e71f5885 314 im_escogida=0;
chessdsbr 2:32e1e71f5885 315 l1=0;
chessdsbr 2:32e1e71f5885 316 l2=0;
chessdsbr 2:32e1e71f5885 317 l3=0;
chessdsbr 2:32e1e71f5885 318 l4=0;
chessdsbr 2:32e1e71f5885 319 l5=0;
chessdsbr 2:32e1e71f5885 320 l6=0;
chessdsbr 2:32e1e71f5885 321 l7=0;
chessdsbr 2:32e1e71f5885 322 l8=0;
chessdsbr 2:32e1e71f5885 323
chessdsbr 2:32e1e71f5885 324 l9=0;
chessdsbr 2:32e1e71f5885 325 l10=0;
chessdsbr 2:32e1e71f5885 326 l11=0;
chessdsbr 2:32e1e71f5885 327 l12=0;
chessdsbr 2:32e1e71f5885 328 l13=0;
chessdsbr 2:32e1e71f5885 329 l14=0;
chessdsbr 2:32e1e71f5885 330 l15=0;
chessdsbr 2:32e1e71f5885 331 l16=0;
chessdsbr 2:32e1e71f5885 332
chessdsbr 2:32e1e71f5885 333 l17=0;
chessdsbr 2:32e1e71f5885 334 l18=0;
chessdsbr 2:32e1e71f5885 335 l19=0;
chessdsbr 2:32e1e71f5885 336 l20=0;
chessdsbr 2:32e1e71f5885 337 l21=0;
chessdsbr 2:32e1e71f5885 338 l22=0;
chessdsbr 2:32e1e71f5885 339 l23=0;
chessdsbr 2:32e1e71f5885 340 l24=0;
chessdsbr 2:32e1e71f5885 341
chessdsbr 2:32e1e71f5885 342 l25=0;
chessdsbr 2:32e1e71f5885 343 l26=0;
chessdsbr 2:32e1e71f5885 344 l27=0;
chessdsbr 2:32e1e71f5885 345 l28=0;
chessdsbr 2:32e1e71f5885 346 l29=0;
chessdsbr 2:32e1e71f5885 347 l30=0;
chessdsbr 2:32e1e71f5885 348 l31=0;
chessdsbr 2:32e1e71f5885 349 l32=0;
chessdsbr 2:32e1e71f5885 350
chessdsbr 2:32e1e71f5885 351 l33=0;
chessdsbr 2:32e1e71f5885 352 l34=0;
chessdsbr 2:32e1e71f5885 353 l35=0;
chessdsbr 2:32e1e71f5885 354 l36=0;
chessdsbr 2:32e1e71f5885 355 l37=0;
chessdsbr 2:32e1e71f5885 356 l38=0;
chessdsbr 2:32e1e71f5885 357 l39=0;
chessdsbr 2:32e1e71f5885 358 l40=0;
chessdsbr 2:32e1e71f5885 359
chessdsbr 2:32e1e71f5885 360 l41=0;
chessdsbr 2:32e1e71f5885 361 l42=0;
chessdsbr 2:32e1e71f5885 362 l43=0;
chessdsbr 2:32e1e71f5885 363 l44=0;
chessdsbr 2:32e1e71f5885 364 l45=0;
chessdsbr 2:32e1e71f5885 365 l46=0;
chessdsbr 2:32e1e71f5885 366 l47=0;
chessdsbr 2:32e1e71f5885 367 l48=0;
chessdsbr 2:32e1e71f5885 368
chessdsbr 2:32e1e71f5885 369 l49=0;
chessdsbr 2:32e1e71f5885 370 l50=0;
chessdsbr 2:32e1e71f5885 371 l51=0;
chessdsbr 2:32e1e71f5885 372 l52=0;
chessdsbr 2:32e1e71f5885 373 l53=0;
chessdsbr 2:32e1e71f5885 374 l54=0;
chessdsbr 2:32e1e71f5885 375 l55=0;
chessdsbr 2:32e1e71f5885 376 l56=0;
chessdsbr 2:32e1e71f5885 377
chessdsbr 2:32e1e71f5885 378 l57=0;
chessdsbr 2:32e1e71f5885 379 l58=0;
chessdsbr 2:32e1e71f5885 380 l59=0;
chessdsbr 2:32e1e71f5885 381 l60=0;
chessdsbr 2:32e1e71f5885 382 l61=0;
chessdsbr 2:32e1e71f5885 383 l62=0;
chessdsbr 2:32e1e71f5885 384 l63=0;
chessdsbr 2:32e1e71f5885 385 l64=0;
chessdsbr 2:32e1e71f5885 386 }
chessdsbr 2:32e1e71f5885 387 if(serial=='.') {
chessdsbr 2:32e1e71f5885 388 cambio_im=0;
chessdsbr 2:32e1e71f5885 389 im_escogida=1;
chessdsbr 2:32e1e71f5885 390 }
chessdsbr 2:32e1e71f5885 391 if(serial=='?') {
chessdsbr 2:32e1e71f5885 392 cambio_im=0;
chessdsbr 2:32e1e71f5885 393 im_escogida=2;
chessdsbr 2:32e1e71f5885 394 }
chessdsbr 2:32e1e71f5885 395 if(serial=='=') {
chessdsbr 2:32e1e71f5885 396 cambio_im=0;
chessdsbr 2:32e1e71f5885 397 im_escogida=3;
chessdsbr 2:32e1e71f5885 398 }
chessdsbr 2:32e1e71f5885 399 if(serial=='%') {
chessdsbr 2:32e1e71f5885 400 l1=0;
chessdsbr 2:32e1e71f5885 401 l2=0;
chessdsbr 2:32e1e71f5885 402 l3=0;
chessdsbr 2:32e1e71f5885 403 l4=0;
chessdsbr 2:32e1e71f5885 404 l5=0;
chessdsbr 2:32e1e71f5885 405 l6=0;
chessdsbr 2:32e1e71f5885 406 l7=0;
chessdsbr 2:32e1e71f5885 407 l8=0;
chessdsbr 2:32e1e71f5885 408
chessdsbr 2:32e1e71f5885 409 l9=0;
chessdsbr 2:32e1e71f5885 410 l10=0;
chessdsbr 2:32e1e71f5885 411 l11=0;
chessdsbr 2:32e1e71f5885 412 l12=0;
chessdsbr 2:32e1e71f5885 413 l13=0;
chessdsbr 2:32e1e71f5885 414 l14=0;
chessdsbr 2:32e1e71f5885 415 l15=0;
chessdsbr 2:32e1e71f5885 416 l16=0;
chessdsbr 2:32e1e71f5885 417
chessdsbr 2:32e1e71f5885 418 l17=0;
chessdsbr 2:32e1e71f5885 419 l18=0;
chessdsbr 2:32e1e71f5885 420 l19=0;
chessdsbr 2:32e1e71f5885 421 l20=0;
chessdsbr 2:32e1e71f5885 422 l21=0;
chessdsbr 2:32e1e71f5885 423 l22=0;
chessdsbr 2:32e1e71f5885 424 l23=0;
chessdsbr 2:32e1e71f5885 425 l24=0;
chessdsbr 2:32e1e71f5885 426
chessdsbr 2:32e1e71f5885 427 l25=0;
chessdsbr 2:32e1e71f5885 428 l26=0;
chessdsbr 2:32e1e71f5885 429 l27=0;
chessdsbr 2:32e1e71f5885 430 l28=0;
chessdsbr 2:32e1e71f5885 431 l29=0;
chessdsbr 2:32e1e71f5885 432 l30=0;
chessdsbr 2:32e1e71f5885 433 l31=0;
chessdsbr 2:32e1e71f5885 434 l32=0;
chessdsbr 2:32e1e71f5885 435
chessdsbr 2:32e1e71f5885 436 l33=0;
chessdsbr 2:32e1e71f5885 437 l34=0;
chessdsbr 2:32e1e71f5885 438 l35=0;
chessdsbr 2:32e1e71f5885 439 l36=0;
chessdsbr 2:32e1e71f5885 440 l37=0;
chessdsbr 2:32e1e71f5885 441 l38=0;
chessdsbr 2:32e1e71f5885 442 l39=0;
chessdsbr 2:32e1e71f5885 443 l40=0;
chessdsbr 2:32e1e71f5885 444
chessdsbr 2:32e1e71f5885 445 l41=0;
chessdsbr 2:32e1e71f5885 446 l42=0;
chessdsbr 2:32e1e71f5885 447 l43=0;
chessdsbr 2:32e1e71f5885 448 l44=0;
chessdsbr 2:32e1e71f5885 449 l45=0;
chessdsbr 2:32e1e71f5885 450 l46=0;
chessdsbr 2:32e1e71f5885 451 l47=0;
chessdsbr 2:32e1e71f5885 452 l48=0;
chessdsbr 2:32e1e71f5885 453
chessdsbr 2:32e1e71f5885 454 l49=0;
chessdsbr 2:32e1e71f5885 455 l50=0;
chessdsbr 2:32e1e71f5885 456 l51=0;
chessdsbr 2:32e1e71f5885 457 l52=0;
chessdsbr 2:32e1e71f5885 458 l53=0;
chessdsbr 2:32e1e71f5885 459 l54=0;
chessdsbr 2:32e1e71f5885 460 l55=0;
chessdsbr 2:32e1e71f5885 461 l56=0;
chessdsbr 2:32e1e71f5885 462
chessdsbr 2:32e1e71f5885 463 l57=0;
chessdsbr 2:32e1e71f5885 464 l58=0;
chessdsbr 2:32e1e71f5885 465 l59=0;
chessdsbr 2:32e1e71f5885 466 l60=0;
chessdsbr 2:32e1e71f5885 467 l61=0;
chessdsbr 2:32e1e71f5885 468 l62=0;
chessdsbr 2:32e1e71f5885 469 l63=0;
chessdsbr 2:32e1e71f5885 470 l64=0;
chessdsbr 2:32e1e71f5885 471 }
chessdsbr 2:32e1e71f5885 472 }
chessdsbr 2:32e1e71f5885 473
chessdsbr 2:32e1e71f5885 474 void cambio(){
chessdsbr 2:32e1e71f5885 475 if(cambio_im>0){
chessdsbr 2:32e1e71f5885 476 cambio_im++;
chessdsbr 2:32e1e71f5885 477 if(cambio_im==4){
chessdsbr 2:32e1e71f5885 478 cambio_im=1;
chessdsbr 2:32e1e71f5885 479 }
chessdsbr 2:32e1e71f5885 480 }
chessdsbr 2:32e1e71f5885 481 }
chessdsbr 2:32e1e71f5885 482
chessdsbr 2:32e1e71f5885 483 void reloj(){//Subrutina para generar reloj de 6 segmentos
chessdsbr 2:32e1e71f5885 484 lcd.locate(9,1);//Posicionamiento de las unidades de segundo
chessdsbr 2:32e1e71f5885 485 lcd.printf("%i", seg1);
chessdsbr 2:32e1e71f5885 486 lcd.locate(8,1);//Posicionamiento de las décimas de segundo
chessdsbr 2:32e1e71f5885 487 lcd.printf("%i",seg2);
chessdsbr 2:32e1e71f5885 488 lcd.locate(7,1);//Posicionamiento del doble punto
chessdsbr 2:32e1e71f5885 489 lcd.printf(":");
chessdsbr 2:32e1e71f5885 490 lcd.locate(6,1);//Posicionamiento de las unidades de minuto
chessdsbr 2:32e1e71f5885 491 lcd.printf("%i",min1);
chessdsbr 2:32e1e71f5885 492 lcd.locate(5,1);//Posicionamiento de las décimas de minuto
chessdsbr 2:32e1e71f5885 493 }
chessdsbr 2:32e1e71f5885 494
chessdsbr 2:32e1e71f5885 495 void visualiza(){
chessdsbr 2:32e1e71f5885 496
chessdsbr 2:32e1e71f5885 497 //
chessdsbr 2:32e1e71f5885 498 ///
chessdsbr 2:32e1e71f5885 499 ////
chessdsbr 2:32e1e71f5885 500 /////
chessdsbr 2:32e1e71f5885 501 if(l1==1){
chessdsbr 2:32e1e71f5885 502 if(l2==1){
chessdsbr 2:32e1e71f5885 503 if(l3==1){
chessdsbr 2:32e1e71f5885 504 if(l4==1){
chessdsbr 2:32e1e71f5885 505 if(l5==1){
chessdsbr 2:32e1e71f5885 506 if(l6==1){
chessdsbr 2:32e1e71f5885 507 if(l7==1){
chessdsbr 2:32e1e71f5885 508 if(l8==1){
chessdsbr 2:32e1e71f5885 509 figura_dib[0]=0xFF;
chessdsbr 2:32e1e71f5885 510 }
chessdsbr 2:32e1e71f5885 511 else{
chessdsbr 2:32e1e71f5885 512 figura_dib[0]=0xFE;
chessdsbr 2:32e1e71f5885 513 }
chessdsbr 2:32e1e71f5885 514 }
chessdsbr 2:32e1e71f5885 515 else if(l8==1){
chessdsbr 2:32e1e71f5885 516 figura_dib[0]=0xFD;
chessdsbr 2:32e1e71f5885 517 }
chessdsbr 2:32e1e71f5885 518 else{
chessdsbr 2:32e1e71f5885 519 figura_dib[0]=0xFC;
chessdsbr 2:32e1e71f5885 520 }
chessdsbr 2:32e1e71f5885 521 }
chessdsbr 2:32e1e71f5885 522 else if(l7==1){
chessdsbr 2:32e1e71f5885 523 if(l8==1){
chessdsbr 2:32e1e71f5885 524 figura_dib[0]=0xFB;
chessdsbr 2:32e1e71f5885 525 }
chessdsbr 2:32e1e71f5885 526 else{
chessdsbr 2:32e1e71f5885 527 figura_dib[0]=0xFA;
chessdsbr 2:32e1e71f5885 528 }
chessdsbr 2:32e1e71f5885 529 }
chessdsbr 2:32e1e71f5885 530 else if(l8==1){
chessdsbr 2:32e1e71f5885 531 figura_dib[0]=0xF9;
chessdsbr 2:32e1e71f5885 532 }
chessdsbr 2:32e1e71f5885 533 else{
chessdsbr 2:32e1e71f5885 534 figura_dib[0]=0xF8;
chessdsbr 2:32e1e71f5885 535 }
chessdsbr 2:32e1e71f5885 536 }
chessdsbr 2:32e1e71f5885 537 else if(l6==1){
chessdsbr 2:32e1e71f5885 538 if(l7==1){
chessdsbr 2:32e1e71f5885 539 if(l8==1){
chessdsbr 2:32e1e71f5885 540 figura_dib[0]=0xF7;
chessdsbr 2:32e1e71f5885 541 }
chessdsbr 2:32e1e71f5885 542 else{
chessdsbr 2:32e1e71f5885 543 figura_dib[0]=0xF6;
chessdsbr 2:32e1e71f5885 544 }
chessdsbr 2:32e1e71f5885 545 }
chessdsbr 2:32e1e71f5885 546 else if(l8==1){
chessdsbr 2:32e1e71f5885 547 figura_dib[0]=0xF5;
chessdsbr 2:32e1e71f5885 548 }
chessdsbr 2:32e1e71f5885 549 else{
chessdsbr 2:32e1e71f5885 550 figura_dib[0]=0xF4;
chessdsbr 2:32e1e71f5885 551 }
chessdsbr 2:32e1e71f5885 552 }
chessdsbr 2:32e1e71f5885 553 else if(l7==1){
chessdsbr 2:32e1e71f5885 554 if(l8==1){
chessdsbr 2:32e1e71f5885 555 figura_dib[0]=0xF3;
chessdsbr 2:32e1e71f5885 556 }
chessdsbr 2:32e1e71f5885 557 else{
chessdsbr 2:32e1e71f5885 558 figura_dib[0]=0xF2;
chessdsbr 2:32e1e71f5885 559 }
chessdsbr 2:32e1e71f5885 560 }
chessdsbr 2:32e1e71f5885 561 else if(l8==1){
chessdsbr 2:32e1e71f5885 562 figura_dib[0]=0xF1;
chessdsbr 2:32e1e71f5885 563 }
chessdsbr 2:32e1e71f5885 564 else{
chessdsbr 2:32e1e71f5885 565 figura_dib[0]=0xF0;
chessdsbr 2:32e1e71f5885 566 }
chessdsbr 2:32e1e71f5885 567 }
chessdsbr 2:32e1e71f5885 568 else if(l5==1){
chessdsbr 2:32e1e71f5885 569 if(l6==1){
chessdsbr 2:32e1e71f5885 570 if(l7==1){
chessdsbr 2:32e1e71f5885 571 if(l8==1){
chessdsbr 2:32e1e71f5885 572 figura_dib[0]=0xEF;
chessdsbr 2:32e1e71f5885 573 }
chessdsbr 2:32e1e71f5885 574 else{
chessdsbr 2:32e1e71f5885 575 figura_dib[0]=0xEE;
chessdsbr 2:32e1e71f5885 576 }
chessdsbr 2:32e1e71f5885 577 }
chessdsbr 2:32e1e71f5885 578 else if(l8==1){
chessdsbr 2:32e1e71f5885 579 figura_dib[0]=0xED;
chessdsbr 2:32e1e71f5885 580 }
chessdsbr 2:32e1e71f5885 581 else{
chessdsbr 2:32e1e71f5885 582 figura_dib[0]=0xEC;
chessdsbr 2:32e1e71f5885 583 }
chessdsbr 2:32e1e71f5885 584 }
chessdsbr 2:32e1e71f5885 585 else if(l7==1){
chessdsbr 2:32e1e71f5885 586 if(l8==1){
chessdsbr 2:32e1e71f5885 587 figura_dib[0]=0xEB;
chessdsbr 2:32e1e71f5885 588 }
chessdsbr 2:32e1e71f5885 589 else{
chessdsbr 2:32e1e71f5885 590 figura_dib[0]=0xEA;
chessdsbr 2:32e1e71f5885 591 }
chessdsbr 2:32e1e71f5885 592 }
chessdsbr 2:32e1e71f5885 593 else if(l8==1){
chessdsbr 2:32e1e71f5885 594 figura_dib[0]=0xE9;
chessdsbr 2:32e1e71f5885 595 }
chessdsbr 2:32e1e71f5885 596 else{
chessdsbr 2:32e1e71f5885 597 figura_dib[0]=0xE8;
chessdsbr 2:32e1e71f5885 598 }
chessdsbr 2:32e1e71f5885 599 }
chessdsbr 2:32e1e71f5885 600 else if(l6==1){
chessdsbr 2:32e1e71f5885 601 if(l7==1){
chessdsbr 2:32e1e71f5885 602 if(l8==1){
chessdsbr 2:32e1e71f5885 603 figura_dib[0]=0xE7;
chessdsbr 2:32e1e71f5885 604 }
chessdsbr 2:32e1e71f5885 605 else{
chessdsbr 2:32e1e71f5885 606 figura_dib[0]=0xE6;
chessdsbr 2:32e1e71f5885 607 }
chessdsbr 2:32e1e71f5885 608 }
chessdsbr 2:32e1e71f5885 609 else if(l8==1){
chessdsbr 2:32e1e71f5885 610 figura_dib[0]=0xE5;
chessdsbr 2:32e1e71f5885 611 }
chessdsbr 2:32e1e71f5885 612 else{
chessdsbr 2:32e1e71f5885 613 figura_dib[0]=0xE4;
chessdsbr 2:32e1e71f5885 614 }
chessdsbr 2:32e1e71f5885 615 }
chessdsbr 2:32e1e71f5885 616 else if(l7==1){
chessdsbr 2:32e1e71f5885 617 if(l8==1){
chessdsbr 2:32e1e71f5885 618 figura_dib[0]=0xE3;
chessdsbr 2:32e1e71f5885 619 }
chessdsbr 2:32e1e71f5885 620 else{
chessdsbr 2:32e1e71f5885 621 figura_dib[0]=0xE2;
chessdsbr 2:32e1e71f5885 622 }
chessdsbr 2:32e1e71f5885 623 }
chessdsbr 2:32e1e71f5885 624 else if(l8==1){
chessdsbr 2:32e1e71f5885 625 figura_dib[0]=0xE1;
chessdsbr 2:32e1e71f5885 626 }
chessdsbr 2:32e1e71f5885 627 else{
chessdsbr 2:32e1e71f5885 628 figura_dib[0]=0xE0;
chessdsbr 2:32e1e71f5885 629 }
chessdsbr 2:32e1e71f5885 630 }
chessdsbr 2:32e1e71f5885 631 else if(l4==1){
chessdsbr 2:32e1e71f5885 632 if(l5==1){
chessdsbr 2:32e1e71f5885 633 if(l6==1){
chessdsbr 2:32e1e71f5885 634 if(l7==1){
chessdsbr 2:32e1e71f5885 635 if(l8==1){
chessdsbr 2:32e1e71f5885 636 figura_dib[0]=0xDF;
chessdsbr 2:32e1e71f5885 637 }
chessdsbr 2:32e1e71f5885 638 else{
chessdsbr 2:32e1e71f5885 639 figura_dib[0]=0xDE;
chessdsbr 2:32e1e71f5885 640 }
chessdsbr 2:32e1e71f5885 641 }
chessdsbr 2:32e1e71f5885 642 else if(l8==1){
chessdsbr 2:32e1e71f5885 643 figura_dib[0]=0xDD;
chessdsbr 2:32e1e71f5885 644 }
chessdsbr 2:32e1e71f5885 645 else{
chessdsbr 2:32e1e71f5885 646 figura_dib[0]=0xDC;
chessdsbr 2:32e1e71f5885 647 }
chessdsbr 2:32e1e71f5885 648 }
chessdsbr 2:32e1e71f5885 649 else if(l7==1){
chessdsbr 2:32e1e71f5885 650 if(l8==1){
chessdsbr 2:32e1e71f5885 651 figura_dib[0]=0xDB;
chessdsbr 2:32e1e71f5885 652 }
chessdsbr 2:32e1e71f5885 653 else{
chessdsbr 2:32e1e71f5885 654 figura_dib[0]=0xDA;
chessdsbr 2:32e1e71f5885 655 }
chessdsbr 2:32e1e71f5885 656 }
chessdsbr 2:32e1e71f5885 657 else if(l8==1){
chessdsbr 2:32e1e71f5885 658 figura_dib[0]=0xD9;
chessdsbr 2:32e1e71f5885 659 }
chessdsbr 2:32e1e71f5885 660 else{
chessdsbr 2:32e1e71f5885 661 figura_dib[0]=0xD8;
chessdsbr 2:32e1e71f5885 662 }
chessdsbr 2:32e1e71f5885 663 }
chessdsbr 2:32e1e71f5885 664 else if(l6==1){
chessdsbr 2:32e1e71f5885 665 if(l7==1){
chessdsbr 2:32e1e71f5885 666 if(l8==1){
chessdsbr 2:32e1e71f5885 667 figura_dib[0]=0xD7;
chessdsbr 2:32e1e71f5885 668 }
chessdsbr 2:32e1e71f5885 669 else{
chessdsbr 2:32e1e71f5885 670 figura_dib[0]=0xD6;
chessdsbr 2:32e1e71f5885 671 }
chessdsbr 2:32e1e71f5885 672 }
chessdsbr 2:32e1e71f5885 673 else if(l8==1){
chessdsbr 2:32e1e71f5885 674 figura_dib[0]=0xD5;
chessdsbr 2:32e1e71f5885 675 }
chessdsbr 2:32e1e71f5885 676 else{
chessdsbr 2:32e1e71f5885 677 figura_dib[0]=0xD4;
chessdsbr 2:32e1e71f5885 678 }
chessdsbr 2:32e1e71f5885 679 }
chessdsbr 2:32e1e71f5885 680 else if(l7==1){
chessdsbr 2:32e1e71f5885 681 if(l8==1){
chessdsbr 2:32e1e71f5885 682 figura_dib[0]=0xD3;
chessdsbr 2:32e1e71f5885 683 }
chessdsbr 2:32e1e71f5885 684 else{
chessdsbr 2:32e1e71f5885 685 figura_dib[0]=0xD2;
chessdsbr 2:32e1e71f5885 686 }
chessdsbr 2:32e1e71f5885 687 }
chessdsbr 2:32e1e71f5885 688 else if(l8==1){
chessdsbr 2:32e1e71f5885 689 figura_dib[0]=0xD1;
chessdsbr 2:32e1e71f5885 690 }
chessdsbr 2:32e1e71f5885 691 else{
chessdsbr 2:32e1e71f5885 692 figura_dib[0]=0xD0;
chessdsbr 2:32e1e71f5885 693 }
chessdsbr 2:32e1e71f5885 694 }
chessdsbr 2:32e1e71f5885 695 else if(l5==1){
chessdsbr 2:32e1e71f5885 696 if(l6==1){
chessdsbr 2:32e1e71f5885 697 if(l7==1){
chessdsbr 2:32e1e71f5885 698 if(l8==1){
chessdsbr 2:32e1e71f5885 699 figura_dib[0]=0xCF;
chessdsbr 2:32e1e71f5885 700 }
chessdsbr 2:32e1e71f5885 701 else{
chessdsbr 2:32e1e71f5885 702 figura_dib[0]=0xCE;
chessdsbr 2:32e1e71f5885 703 }
chessdsbr 2:32e1e71f5885 704 }
chessdsbr 2:32e1e71f5885 705 else if(l8==1){
chessdsbr 2:32e1e71f5885 706 figura_dib[0]=0xCD;
chessdsbr 2:32e1e71f5885 707 }
chessdsbr 2:32e1e71f5885 708 else{
chessdsbr 2:32e1e71f5885 709 figura_dib[0]=0xCC;
chessdsbr 2:32e1e71f5885 710 }
chessdsbr 2:32e1e71f5885 711 }
chessdsbr 2:32e1e71f5885 712 else if(l7==1){
chessdsbr 2:32e1e71f5885 713 if(l8==1){
chessdsbr 2:32e1e71f5885 714 figura_dib[0]=0xCB;
chessdsbr 2:32e1e71f5885 715 }
chessdsbr 2:32e1e71f5885 716 else{
chessdsbr 2:32e1e71f5885 717 figura_dib[0]=0xCA;
chessdsbr 2:32e1e71f5885 718 }
chessdsbr 2:32e1e71f5885 719 }
chessdsbr 2:32e1e71f5885 720 else if(l8==1){
chessdsbr 2:32e1e71f5885 721 figura_dib[0]=0xC9;
chessdsbr 2:32e1e71f5885 722 }
chessdsbr 2:32e1e71f5885 723 else{
chessdsbr 2:32e1e71f5885 724 figura_dib[0]=0xC8;
chessdsbr 2:32e1e71f5885 725 }
chessdsbr 2:32e1e71f5885 726 }
chessdsbr 2:32e1e71f5885 727 else if(l6==1){
chessdsbr 2:32e1e71f5885 728 if(l7==1){
chessdsbr 2:32e1e71f5885 729 if(l8==1){
chessdsbr 2:32e1e71f5885 730 figura_dib[0]=0xC7;
chessdsbr 2:32e1e71f5885 731 }
chessdsbr 2:32e1e71f5885 732 else{
chessdsbr 2:32e1e71f5885 733 figura_dib[0]=0xC6;
chessdsbr 2:32e1e71f5885 734 }
chessdsbr 2:32e1e71f5885 735 }
chessdsbr 2:32e1e71f5885 736 else if(l8==1){
chessdsbr 2:32e1e71f5885 737 figura_dib[0]=0xC5;
chessdsbr 2:32e1e71f5885 738 }
chessdsbr 2:32e1e71f5885 739 else{
chessdsbr 2:32e1e71f5885 740 figura_dib[0]=0xC4;
chessdsbr 2:32e1e71f5885 741 }
chessdsbr 2:32e1e71f5885 742 }
chessdsbr 2:32e1e71f5885 743 else if(l7==1){
chessdsbr 2:32e1e71f5885 744 if(l8==1){
chessdsbr 2:32e1e71f5885 745 figura_dib[0]=0xC3;
chessdsbr 2:32e1e71f5885 746 }
chessdsbr 2:32e1e71f5885 747 else{
chessdsbr 2:32e1e71f5885 748 figura_dib[0]=0xC2;
chessdsbr 2:32e1e71f5885 749 }
chessdsbr 2:32e1e71f5885 750 }
chessdsbr 2:32e1e71f5885 751 else if(l8==1){
chessdsbr 2:32e1e71f5885 752 figura_dib[0]=0xC1;
chessdsbr 2:32e1e71f5885 753 }
chessdsbr 2:32e1e71f5885 754 else{
chessdsbr 2:32e1e71f5885 755 figura_dib[0]=0xC0;
chessdsbr 2:32e1e71f5885 756 }
chessdsbr 2:32e1e71f5885 757 }
chessdsbr 2:32e1e71f5885 758 else if(l3==1){
chessdsbr 2:32e1e71f5885 759 if(l4==1){
chessdsbr 2:32e1e71f5885 760 if(l5==1){
chessdsbr 2:32e1e71f5885 761 if(l6==1){
chessdsbr 2:32e1e71f5885 762 if(l7==1){
chessdsbr 2:32e1e71f5885 763 if(l8==1){
chessdsbr 2:32e1e71f5885 764 figura_dib[0]=0xBF;
chessdsbr 2:32e1e71f5885 765 }
chessdsbr 2:32e1e71f5885 766 else{
chessdsbr 2:32e1e71f5885 767 figura_dib[0]=0xBE;
chessdsbr 2:32e1e71f5885 768 }
chessdsbr 2:32e1e71f5885 769 }
chessdsbr 2:32e1e71f5885 770 else if(l8==1){
chessdsbr 2:32e1e71f5885 771 figura_dib[0]=0xBD;
chessdsbr 2:32e1e71f5885 772 }
chessdsbr 2:32e1e71f5885 773 else{
chessdsbr 2:32e1e71f5885 774 figura_dib[0]=0xBC;
chessdsbr 2:32e1e71f5885 775 }
chessdsbr 2:32e1e71f5885 776 }
chessdsbr 2:32e1e71f5885 777 else if(l7==1){
chessdsbr 2:32e1e71f5885 778 if(l8==1){
chessdsbr 2:32e1e71f5885 779 figura_dib[0]=0xBB;
chessdsbr 2:32e1e71f5885 780 }
chessdsbr 2:32e1e71f5885 781 else{
chessdsbr 2:32e1e71f5885 782 figura_dib[0]=0xBA;
chessdsbr 2:32e1e71f5885 783 }
chessdsbr 2:32e1e71f5885 784 }
chessdsbr 2:32e1e71f5885 785 else if(l8==1){
chessdsbr 2:32e1e71f5885 786 figura_dib[0]=0xB9;
chessdsbr 2:32e1e71f5885 787 }
chessdsbr 2:32e1e71f5885 788 else{
chessdsbr 2:32e1e71f5885 789 figura_dib[0]=0xB8;
chessdsbr 2:32e1e71f5885 790 }
chessdsbr 2:32e1e71f5885 791 }
chessdsbr 2:32e1e71f5885 792 else if(l6==1){
chessdsbr 2:32e1e71f5885 793 if(l7==1){
chessdsbr 2:32e1e71f5885 794 if(l8==1){
chessdsbr 2:32e1e71f5885 795 figura_dib[0]=0xB7;
chessdsbr 2:32e1e71f5885 796 }
chessdsbr 2:32e1e71f5885 797 else{
chessdsbr 2:32e1e71f5885 798 figura_dib[0]=0xB6;
chessdsbr 2:32e1e71f5885 799 }
chessdsbr 2:32e1e71f5885 800 }
chessdsbr 2:32e1e71f5885 801 else if(l8==1){
chessdsbr 2:32e1e71f5885 802 figura_dib[0]=0xB5;
chessdsbr 2:32e1e71f5885 803 }
chessdsbr 2:32e1e71f5885 804 else{
chessdsbr 2:32e1e71f5885 805 figura_dib[0]=0xB4;
chessdsbr 2:32e1e71f5885 806 }
chessdsbr 2:32e1e71f5885 807 }
chessdsbr 2:32e1e71f5885 808 else if(l7==1){
chessdsbr 2:32e1e71f5885 809 if(l8==1){
chessdsbr 2:32e1e71f5885 810 figura_dib[0]=0xB3;
chessdsbr 2:32e1e71f5885 811 }
chessdsbr 2:32e1e71f5885 812 else{
chessdsbr 2:32e1e71f5885 813 figura_dib[0]=0xB2;
chessdsbr 2:32e1e71f5885 814 }
chessdsbr 2:32e1e71f5885 815 }
chessdsbr 2:32e1e71f5885 816 else if(l8==1){
chessdsbr 2:32e1e71f5885 817 figura_dib[0]=0xB1;
chessdsbr 2:32e1e71f5885 818 }
chessdsbr 2:32e1e71f5885 819 else{
chessdsbr 2:32e1e71f5885 820 figura_dib[0]=0xB0;
chessdsbr 2:32e1e71f5885 821 }
chessdsbr 2:32e1e71f5885 822 }
chessdsbr 2:32e1e71f5885 823 else if(l5==1){
chessdsbr 2:32e1e71f5885 824 if(l6==1){
chessdsbr 2:32e1e71f5885 825 if(l7==1){
chessdsbr 2:32e1e71f5885 826 if(l8==1){
chessdsbr 2:32e1e71f5885 827 figura_dib[0]=0xAF;
chessdsbr 2:32e1e71f5885 828 }
chessdsbr 2:32e1e71f5885 829 else{
chessdsbr 2:32e1e71f5885 830 figura_dib[0]=0xAE;
chessdsbr 2:32e1e71f5885 831 }
chessdsbr 2:32e1e71f5885 832 }
chessdsbr 2:32e1e71f5885 833 else if(l8==1){
chessdsbr 2:32e1e71f5885 834 figura_dib[0]=0xAD;
chessdsbr 2:32e1e71f5885 835 }
chessdsbr 2:32e1e71f5885 836 else{
chessdsbr 2:32e1e71f5885 837 figura_dib[0]=0xAC;
chessdsbr 2:32e1e71f5885 838 }
chessdsbr 2:32e1e71f5885 839 }
chessdsbr 2:32e1e71f5885 840 else if(l7==1){
chessdsbr 2:32e1e71f5885 841 if(l8==1){
chessdsbr 2:32e1e71f5885 842 figura_dib[0]=0xAB;
chessdsbr 2:32e1e71f5885 843 }
chessdsbr 2:32e1e71f5885 844 else{
chessdsbr 2:32e1e71f5885 845 figura_dib[0]=0xAA;
chessdsbr 2:32e1e71f5885 846 }
chessdsbr 2:32e1e71f5885 847 }
chessdsbr 2:32e1e71f5885 848 else if(l8==1){
chessdsbr 2:32e1e71f5885 849 figura_dib[0]=0xA9;
chessdsbr 2:32e1e71f5885 850 }
chessdsbr 2:32e1e71f5885 851 else{
chessdsbr 2:32e1e71f5885 852 figura_dib[0]=0xA8;
chessdsbr 2:32e1e71f5885 853 }
chessdsbr 2:32e1e71f5885 854 }
chessdsbr 2:32e1e71f5885 855 else if(l6==1){
chessdsbr 2:32e1e71f5885 856 if(l7==1){
chessdsbr 2:32e1e71f5885 857 if(l8==1){
chessdsbr 2:32e1e71f5885 858 figura_dib[0]=0xA7;
chessdsbr 2:32e1e71f5885 859 }
chessdsbr 2:32e1e71f5885 860 else{
chessdsbr 2:32e1e71f5885 861 figura_dib[0]=0xA6;
chessdsbr 2:32e1e71f5885 862 }
chessdsbr 2:32e1e71f5885 863 }
chessdsbr 2:32e1e71f5885 864 else if(l8==1){
chessdsbr 2:32e1e71f5885 865 figura_dib[0]=0xA5;
chessdsbr 2:32e1e71f5885 866 }
chessdsbr 2:32e1e71f5885 867 else{
chessdsbr 2:32e1e71f5885 868 figura_dib[0]=0xA4;
chessdsbr 2:32e1e71f5885 869 }
chessdsbr 2:32e1e71f5885 870 }
chessdsbr 2:32e1e71f5885 871 else if(l7==1){
chessdsbr 2:32e1e71f5885 872 if(l8==1){
chessdsbr 2:32e1e71f5885 873 figura_dib[0]=0xA3;
chessdsbr 2:32e1e71f5885 874 }
chessdsbr 2:32e1e71f5885 875 else{
chessdsbr 2:32e1e71f5885 876 figura_dib[0]=0xA2;
chessdsbr 2:32e1e71f5885 877 }
chessdsbr 2:32e1e71f5885 878 }
chessdsbr 2:32e1e71f5885 879 else if(l8==1){
chessdsbr 2:32e1e71f5885 880 figura_dib[0]=0xA1;
chessdsbr 2:32e1e71f5885 881 }
chessdsbr 2:32e1e71f5885 882 else{
chessdsbr 2:32e1e71f5885 883 figura_dib[0]=0xA0;
chessdsbr 2:32e1e71f5885 884 }
chessdsbr 2:32e1e71f5885 885 }
chessdsbr 2:32e1e71f5885 886 else if(l4==1){
chessdsbr 2:32e1e71f5885 887 if(l5==1){
chessdsbr 2:32e1e71f5885 888 if(l6==1){
chessdsbr 2:32e1e71f5885 889 if(l7==1){
chessdsbr 2:32e1e71f5885 890 if(l8==1){
chessdsbr 2:32e1e71f5885 891 figura_dib[0]=0x9F;
chessdsbr 2:32e1e71f5885 892 }
chessdsbr 2:32e1e71f5885 893 else{
chessdsbr 2:32e1e71f5885 894 figura_dib[0]=0x9E;
chessdsbr 2:32e1e71f5885 895 }
chessdsbr 2:32e1e71f5885 896 }
chessdsbr 2:32e1e71f5885 897 else if(l8==1){
chessdsbr 2:32e1e71f5885 898 figura_dib[0]=0x9D;
chessdsbr 2:32e1e71f5885 899 }
chessdsbr 2:32e1e71f5885 900 else{
chessdsbr 2:32e1e71f5885 901 figura_dib[0]=0x9C;
chessdsbr 2:32e1e71f5885 902 }
chessdsbr 2:32e1e71f5885 903 }
chessdsbr 2:32e1e71f5885 904 else if(l7==1){
chessdsbr 2:32e1e71f5885 905 if(l8==1){
chessdsbr 2:32e1e71f5885 906 figura_dib[0]=0x9B;
chessdsbr 2:32e1e71f5885 907 }
chessdsbr 2:32e1e71f5885 908 else{
chessdsbr 2:32e1e71f5885 909 figura_dib[0]=0x9A;
chessdsbr 2:32e1e71f5885 910 }
chessdsbr 2:32e1e71f5885 911 }
chessdsbr 2:32e1e71f5885 912 else if(l8==1){
chessdsbr 2:32e1e71f5885 913 figura_dib[0]=0x99;
chessdsbr 2:32e1e71f5885 914 }
chessdsbr 2:32e1e71f5885 915 else{
chessdsbr 2:32e1e71f5885 916 figura_dib[0]=0x98;
chessdsbr 2:32e1e71f5885 917 }
chessdsbr 2:32e1e71f5885 918 }
chessdsbr 2:32e1e71f5885 919 else if(l6==1){
chessdsbr 2:32e1e71f5885 920 if(l7==1){
chessdsbr 2:32e1e71f5885 921 if(l8==1){
chessdsbr 2:32e1e71f5885 922 figura_dib[0]=0x97;
chessdsbr 2:32e1e71f5885 923 }
chessdsbr 2:32e1e71f5885 924 else{
chessdsbr 2:32e1e71f5885 925 figura_dib[0]=0x96;
chessdsbr 2:32e1e71f5885 926 }
chessdsbr 2:32e1e71f5885 927 }
chessdsbr 2:32e1e71f5885 928 else if(l8==1){
chessdsbr 2:32e1e71f5885 929 figura_dib[0]=0x95;
chessdsbr 2:32e1e71f5885 930 }
chessdsbr 2:32e1e71f5885 931 else{
chessdsbr 2:32e1e71f5885 932 figura_dib[0]=0x94;
chessdsbr 2:32e1e71f5885 933 }
chessdsbr 2:32e1e71f5885 934 }
chessdsbr 2:32e1e71f5885 935 else if(l7==1){
chessdsbr 2:32e1e71f5885 936 if(l8==1){
chessdsbr 2:32e1e71f5885 937 figura_dib[0]=0x93;
chessdsbr 2:32e1e71f5885 938 }
chessdsbr 2:32e1e71f5885 939 else{
chessdsbr 2:32e1e71f5885 940 figura_dib[0]=0x92;
chessdsbr 2:32e1e71f5885 941 }
chessdsbr 2:32e1e71f5885 942 }
chessdsbr 2:32e1e71f5885 943 else if(l8==1){
chessdsbr 2:32e1e71f5885 944 figura_dib[0]=0x91;
chessdsbr 2:32e1e71f5885 945 }
chessdsbr 2:32e1e71f5885 946 else{
chessdsbr 2:32e1e71f5885 947 figura_dib[0]=0x90;
chessdsbr 2:32e1e71f5885 948 }
chessdsbr 2:32e1e71f5885 949 }
chessdsbr 2:32e1e71f5885 950 else if(l5==1){
chessdsbr 2:32e1e71f5885 951 if(l6==1){
chessdsbr 2:32e1e71f5885 952 if(l7==1){
chessdsbr 2:32e1e71f5885 953 if(l8==1){
chessdsbr 2:32e1e71f5885 954 figura_dib[0]=0x8F;
chessdsbr 2:32e1e71f5885 955 }
chessdsbr 2:32e1e71f5885 956 else{
chessdsbr 2:32e1e71f5885 957 figura_dib[0]=0x8E;
chessdsbr 2:32e1e71f5885 958 }
chessdsbr 2:32e1e71f5885 959 }
chessdsbr 2:32e1e71f5885 960 else if(l8==1){
chessdsbr 2:32e1e71f5885 961 figura_dib[0]=0x8D;
chessdsbr 2:32e1e71f5885 962 }
chessdsbr 2:32e1e71f5885 963 else{
chessdsbr 2:32e1e71f5885 964 figura_dib[0]=0x8C;
chessdsbr 2:32e1e71f5885 965 }
chessdsbr 2:32e1e71f5885 966 }
chessdsbr 2:32e1e71f5885 967 else if(l7==1){
chessdsbr 2:32e1e71f5885 968 if(l8==1){
chessdsbr 2:32e1e71f5885 969 figura_dib[0]=0x8B;
chessdsbr 2:32e1e71f5885 970 }
chessdsbr 2:32e1e71f5885 971 else{
chessdsbr 2:32e1e71f5885 972 figura_dib[0]=0x8A;
chessdsbr 2:32e1e71f5885 973 }
chessdsbr 2:32e1e71f5885 974 }
chessdsbr 2:32e1e71f5885 975 else if(l8==1){
chessdsbr 2:32e1e71f5885 976 figura_dib[0]=0x89;
chessdsbr 2:32e1e71f5885 977 }
chessdsbr 2:32e1e71f5885 978 else{
chessdsbr 2:32e1e71f5885 979 figura_dib[0]=0x88;
chessdsbr 2:32e1e71f5885 980 }
chessdsbr 2:32e1e71f5885 981 }
chessdsbr 2:32e1e71f5885 982 else if(l6==1){
chessdsbr 2:32e1e71f5885 983 if(l7==1){
chessdsbr 2:32e1e71f5885 984 if(l8==1){
chessdsbr 2:32e1e71f5885 985 figura_dib[0]=0x87;
chessdsbr 2:32e1e71f5885 986 }
chessdsbr 2:32e1e71f5885 987 else{
chessdsbr 2:32e1e71f5885 988 figura_dib[0]=0x86;
chessdsbr 2:32e1e71f5885 989 }
chessdsbr 2:32e1e71f5885 990 }
chessdsbr 2:32e1e71f5885 991 else if(l8==1){
chessdsbr 2:32e1e71f5885 992 figura_dib[0]=0x85;
chessdsbr 2:32e1e71f5885 993 }
chessdsbr 2:32e1e71f5885 994 else{
chessdsbr 2:32e1e71f5885 995 figura_dib[0]=0x84;
chessdsbr 2:32e1e71f5885 996 }
chessdsbr 2:32e1e71f5885 997 }
chessdsbr 2:32e1e71f5885 998 else if(l7==1){
chessdsbr 2:32e1e71f5885 999 if(l8==1){
chessdsbr 2:32e1e71f5885 1000 figura_dib[0]=0x83;
chessdsbr 2:32e1e71f5885 1001 }
chessdsbr 2:32e1e71f5885 1002 else{
chessdsbr 2:32e1e71f5885 1003 figura_dib[0]=0x82;
chessdsbr 2:32e1e71f5885 1004 }
chessdsbr 2:32e1e71f5885 1005 }
chessdsbr 2:32e1e71f5885 1006 else if(l8==1){
chessdsbr 2:32e1e71f5885 1007 figura_dib[0]=0x81;
chessdsbr 2:32e1e71f5885 1008 }
chessdsbr 2:32e1e71f5885 1009 else{
chessdsbr 2:32e1e71f5885 1010 figura_dib[0]=0x80;
chessdsbr 2:32e1e71f5885 1011 }
chessdsbr 2:32e1e71f5885 1012 }
chessdsbr 2:32e1e71f5885 1013 else if(l2==1){
chessdsbr 2:32e1e71f5885 1014 if(l3==1){
chessdsbr 2:32e1e71f5885 1015 if(l4==1){
chessdsbr 2:32e1e71f5885 1016 if(l5==1){
chessdsbr 2:32e1e71f5885 1017 if(l6==1){
chessdsbr 2:32e1e71f5885 1018 if(l7==1){
chessdsbr 2:32e1e71f5885 1019 if(l8==1){
chessdsbr 2:32e1e71f5885 1020 figura_dib[0]=0x7F;
chessdsbr 2:32e1e71f5885 1021 }
chessdsbr 2:32e1e71f5885 1022 else{
chessdsbr 2:32e1e71f5885 1023 figura_dib[0]=0x7E;
chessdsbr 2:32e1e71f5885 1024 }
chessdsbr 2:32e1e71f5885 1025 }
chessdsbr 2:32e1e71f5885 1026 else if(l8==1){
chessdsbr 2:32e1e71f5885 1027 figura_dib[0]=0x7D;
chessdsbr 2:32e1e71f5885 1028 }
chessdsbr 2:32e1e71f5885 1029 else{
chessdsbr 2:32e1e71f5885 1030 figura_dib[0]=0x7C;
chessdsbr 2:32e1e71f5885 1031 }
chessdsbr 2:32e1e71f5885 1032 }
chessdsbr 2:32e1e71f5885 1033 else if(l7==1){
chessdsbr 2:32e1e71f5885 1034 if(l8==1){
chessdsbr 2:32e1e71f5885 1035 figura_dib[0]=0x7B;
chessdsbr 2:32e1e71f5885 1036 }
chessdsbr 2:32e1e71f5885 1037 else{
chessdsbr 2:32e1e71f5885 1038 figura_dib[0]=0x7A;
chessdsbr 2:32e1e71f5885 1039 }
chessdsbr 2:32e1e71f5885 1040 }
chessdsbr 2:32e1e71f5885 1041 else if(l8==1){
chessdsbr 2:32e1e71f5885 1042 figura_dib[0]=0x79;
chessdsbr 2:32e1e71f5885 1043 }
chessdsbr 2:32e1e71f5885 1044 else{
chessdsbr 2:32e1e71f5885 1045 figura_dib[0]=0x78;
chessdsbr 2:32e1e71f5885 1046 }
chessdsbr 2:32e1e71f5885 1047 }
chessdsbr 2:32e1e71f5885 1048 else if(l6==1){
chessdsbr 2:32e1e71f5885 1049 if(l7==1){
chessdsbr 2:32e1e71f5885 1050 if(l8==1){
chessdsbr 2:32e1e71f5885 1051 figura_dib[0]=0x77;
chessdsbr 2:32e1e71f5885 1052 }
chessdsbr 2:32e1e71f5885 1053 else{
chessdsbr 2:32e1e71f5885 1054 figura_dib[0]=0x76;
chessdsbr 2:32e1e71f5885 1055 }
chessdsbr 2:32e1e71f5885 1056 }
chessdsbr 2:32e1e71f5885 1057 else if(l8==1){
chessdsbr 2:32e1e71f5885 1058 figura_dib[0]=0x75;
chessdsbr 2:32e1e71f5885 1059 }
chessdsbr 2:32e1e71f5885 1060 else{
chessdsbr 2:32e1e71f5885 1061 figura_dib[0]=0x74;
chessdsbr 2:32e1e71f5885 1062 }
chessdsbr 2:32e1e71f5885 1063 }
chessdsbr 2:32e1e71f5885 1064 else if(l7==1){
chessdsbr 2:32e1e71f5885 1065 if(l8==1){
chessdsbr 2:32e1e71f5885 1066 figura_dib[0]=0x73;
chessdsbr 2:32e1e71f5885 1067 }
chessdsbr 2:32e1e71f5885 1068 else{
chessdsbr 2:32e1e71f5885 1069 figura_dib[0]=0x72;
chessdsbr 2:32e1e71f5885 1070 }
chessdsbr 2:32e1e71f5885 1071 }
chessdsbr 2:32e1e71f5885 1072 else if(l8==1){
chessdsbr 2:32e1e71f5885 1073 figura_dib[0]=0x71;
chessdsbr 2:32e1e71f5885 1074 }
chessdsbr 2:32e1e71f5885 1075 else{
chessdsbr 2:32e1e71f5885 1076 figura_dib[0]=0x70;
chessdsbr 2:32e1e71f5885 1077 }
chessdsbr 2:32e1e71f5885 1078 }
chessdsbr 2:32e1e71f5885 1079 else if(l5==1){
chessdsbr 2:32e1e71f5885 1080 if(l6==1){
chessdsbr 2:32e1e71f5885 1081 if(l7==1){
chessdsbr 2:32e1e71f5885 1082 if(l8==1){
chessdsbr 2:32e1e71f5885 1083 figura_dib[0]=0x6F;
chessdsbr 2:32e1e71f5885 1084 }
chessdsbr 2:32e1e71f5885 1085 else{
chessdsbr 2:32e1e71f5885 1086 figura_dib[0]=0x6E;
chessdsbr 2:32e1e71f5885 1087 }
chessdsbr 2:32e1e71f5885 1088 }
chessdsbr 2:32e1e71f5885 1089 else if(l8==1){
chessdsbr 2:32e1e71f5885 1090 figura_dib[0]=0x6D;
chessdsbr 2:32e1e71f5885 1091 }
chessdsbr 2:32e1e71f5885 1092 else{
chessdsbr 2:32e1e71f5885 1093 figura_dib[0]=0x6C;
chessdsbr 2:32e1e71f5885 1094 }
chessdsbr 2:32e1e71f5885 1095 }
chessdsbr 2:32e1e71f5885 1096 else if(l7==1){
chessdsbr 2:32e1e71f5885 1097 if(l8==1){
chessdsbr 2:32e1e71f5885 1098 figura_dib[0]=0x6B;
chessdsbr 2:32e1e71f5885 1099 }
chessdsbr 2:32e1e71f5885 1100 else{
chessdsbr 2:32e1e71f5885 1101 figura_dib[0]=0x6A;
chessdsbr 2:32e1e71f5885 1102 }
chessdsbr 2:32e1e71f5885 1103 }
chessdsbr 2:32e1e71f5885 1104 else if(l8==1){
chessdsbr 2:32e1e71f5885 1105 figura_dib[0]=0x69;
chessdsbr 2:32e1e71f5885 1106 }
chessdsbr 2:32e1e71f5885 1107 else{
chessdsbr 2:32e1e71f5885 1108 figura_dib[0]=0x68;
chessdsbr 2:32e1e71f5885 1109 }
chessdsbr 2:32e1e71f5885 1110 }
chessdsbr 2:32e1e71f5885 1111 else if(l6==1){
chessdsbr 2:32e1e71f5885 1112 if(l7==1){
chessdsbr 2:32e1e71f5885 1113 if(l8==1){
chessdsbr 2:32e1e71f5885 1114 figura_dib[0]=0x67;
chessdsbr 2:32e1e71f5885 1115 }
chessdsbr 2:32e1e71f5885 1116 else{
chessdsbr 2:32e1e71f5885 1117 figura_dib[0]=0x66;
chessdsbr 2:32e1e71f5885 1118 }
chessdsbr 2:32e1e71f5885 1119 }
chessdsbr 2:32e1e71f5885 1120 else if(l8==1){
chessdsbr 2:32e1e71f5885 1121 figura_dib[0]=0x65;
chessdsbr 2:32e1e71f5885 1122 }
chessdsbr 2:32e1e71f5885 1123 else{
chessdsbr 2:32e1e71f5885 1124 figura_dib[0]=0x64;
chessdsbr 2:32e1e71f5885 1125 }
chessdsbr 2:32e1e71f5885 1126 }
chessdsbr 2:32e1e71f5885 1127 else if(l7==1){
chessdsbr 2:32e1e71f5885 1128 if(l8==1){
chessdsbr 2:32e1e71f5885 1129 figura_dib[0]=0x63;
chessdsbr 2:32e1e71f5885 1130 }
chessdsbr 2:32e1e71f5885 1131 else{
chessdsbr 2:32e1e71f5885 1132 figura_dib[0]=0x62;
chessdsbr 2:32e1e71f5885 1133 }
chessdsbr 2:32e1e71f5885 1134 }
chessdsbr 2:32e1e71f5885 1135 else if(l8==1){
chessdsbr 2:32e1e71f5885 1136 figura_dib[0]=0x61;
chessdsbr 2:32e1e71f5885 1137 }
chessdsbr 2:32e1e71f5885 1138 else{
chessdsbr 2:32e1e71f5885 1139 figura_dib[0]=0x60;
chessdsbr 2:32e1e71f5885 1140 }
chessdsbr 2:32e1e71f5885 1141 }
chessdsbr 2:32e1e71f5885 1142 else if(l4==1){
chessdsbr 2:32e1e71f5885 1143 if(l5==1){
chessdsbr 2:32e1e71f5885 1144 if(l6==1){
chessdsbr 2:32e1e71f5885 1145 if(l7==1){
chessdsbr 2:32e1e71f5885 1146 if(l8==1){
chessdsbr 2:32e1e71f5885 1147 figura_dib[0]=0x5F;
chessdsbr 2:32e1e71f5885 1148 }
chessdsbr 2:32e1e71f5885 1149 else{
chessdsbr 2:32e1e71f5885 1150 figura_dib[0]=0x5E;
chessdsbr 2:32e1e71f5885 1151 }
chessdsbr 2:32e1e71f5885 1152 }
chessdsbr 2:32e1e71f5885 1153 else if(l8==1){
chessdsbr 2:32e1e71f5885 1154 figura_dib[0]=0x5D;
chessdsbr 2:32e1e71f5885 1155 }
chessdsbr 2:32e1e71f5885 1156 else{
chessdsbr 2:32e1e71f5885 1157 figura_dib[0]=0x5C;
chessdsbr 2:32e1e71f5885 1158 }
chessdsbr 2:32e1e71f5885 1159 }
chessdsbr 2:32e1e71f5885 1160 else if(l7==1){
chessdsbr 2:32e1e71f5885 1161 if(l8==1){
chessdsbr 2:32e1e71f5885 1162 figura_dib[0]=0x5B;
chessdsbr 2:32e1e71f5885 1163 }
chessdsbr 2:32e1e71f5885 1164 else{
chessdsbr 2:32e1e71f5885 1165 figura_dib[0]=0x5A;
chessdsbr 2:32e1e71f5885 1166 }
chessdsbr 2:32e1e71f5885 1167 }
chessdsbr 2:32e1e71f5885 1168 else if(l8==1){
chessdsbr 2:32e1e71f5885 1169 figura_dib[0]=0x59;
chessdsbr 2:32e1e71f5885 1170 }
chessdsbr 2:32e1e71f5885 1171 else{
chessdsbr 2:32e1e71f5885 1172 figura_dib[0]=0x58;
chessdsbr 2:32e1e71f5885 1173 }
chessdsbr 2:32e1e71f5885 1174 }
chessdsbr 2:32e1e71f5885 1175 else if(l6==1){
chessdsbr 2:32e1e71f5885 1176 if(l7==1){
chessdsbr 2:32e1e71f5885 1177 if(l8==1){
chessdsbr 2:32e1e71f5885 1178 figura_dib[0]=0x57;
chessdsbr 2:32e1e71f5885 1179 }
chessdsbr 2:32e1e71f5885 1180 else{
chessdsbr 2:32e1e71f5885 1181 figura_dib[0]=0x56;
chessdsbr 2:32e1e71f5885 1182 }
chessdsbr 2:32e1e71f5885 1183 }
chessdsbr 2:32e1e71f5885 1184 else if(l8==1){
chessdsbr 2:32e1e71f5885 1185 figura_dib[0]=0x55;
chessdsbr 2:32e1e71f5885 1186 }
chessdsbr 2:32e1e71f5885 1187 else{
chessdsbr 2:32e1e71f5885 1188 figura_dib[0]=0x54;
chessdsbr 2:32e1e71f5885 1189 }
chessdsbr 2:32e1e71f5885 1190 }
chessdsbr 2:32e1e71f5885 1191 else if(l7==1){
chessdsbr 2:32e1e71f5885 1192 if(l8==1){
chessdsbr 2:32e1e71f5885 1193 figura_dib[0]=0x53;
chessdsbr 2:32e1e71f5885 1194 }
chessdsbr 2:32e1e71f5885 1195 else{
chessdsbr 2:32e1e71f5885 1196 figura_dib[0]=0x52;
chessdsbr 2:32e1e71f5885 1197 }
chessdsbr 2:32e1e71f5885 1198 }
chessdsbr 2:32e1e71f5885 1199 else if(l8==1){
chessdsbr 2:32e1e71f5885 1200 figura_dib[0]=0x51;
chessdsbr 2:32e1e71f5885 1201 }
chessdsbr 2:32e1e71f5885 1202 else{
chessdsbr 2:32e1e71f5885 1203 figura_dib[0]=0x50;
chessdsbr 2:32e1e71f5885 1204 }
chessdsbr 2:32e1e71f5885 1205 }
chessdsbr 2:32e1e71f5885 1206 else if(l5==1){
chessdsbr 2:32e1e71f5885 1207 if(l6==1){
chessdsbr 2:32e1e71f5885 1208 if(l7==1){
chessdsbr 2:32e1e71f5885 1209 if(l8==1){
chessdsbr 2:32e1e71f5885 1210 figura_dib[0]=0x4F;
chessdsbr 2:32e1e71f5885 1211 }
chessdsbr 2:32e1e71f5885 1212 else{
chessdsbr 2:32e1e71f5885 1213 figura_dib[0]=0x4E;
chessdsbr 2:32e1e71f5885 1214 }
chessdsbr 2:32e1e71f5885 1215 }
chessdsbr 2:32e1e71f5885 1216 else if(l8==1){
chessdsbr 2:32e1e71f5885 1217 figura_dib[0]=0x4D;
chessdsbr 2:32e1e71f5885 1218 }
chessdsbr 2:32e1e71f5885 1219 else{
chessdsbr 2:32e1e71f5885 1220 figura_dib[0]=0x4C;
chessdsbr 2:32e1e71f5885 1221 }
chessdsbr 2:32e1e71f5885 1222 }
chessdsbr 2:32e1e71f5885 1223 else if(l7==1){
chessdsbr 2:32e1e71f5885 1224 if(l8==1){
chessdsbr 2:32e1e71f5885 1225 figura_dib[0]=0x4B;
chessdsbr 2:32e1e71f5885 1226 }
chessdsbr 2:32e1e71f5885 1227 else{
chessdsbr 2:32e1e71f5885 1228 figura_dib[0]=0x4A;
chessdsbr 2:32e1e71f5885 1229 }
chessdsbr 2:32e1e71f5885 1230 }
chessdsbr 2:32e1e71f5885 1231 else if(l8==1){
chessdsbr 2:32e1e71f5885 1232 figura_dib[0]=0x49;
chessdsbr 2:32e1e71f5885 1233 }
chessdsbr 2:32e1e71f5885 1234 else{
chessdsbr 2:32e1e71f5885 1235 figura_dib[0]=0x48;
chessdsbr 2:32e1e71f5885 1236 }
chessdsbr 2:32e1e71f5885 1237 }
chessdsbr 2:32e1e71f5885 1238 else if(l6==1){
chessdsbr 2:32e1e71f5885 1239 if(l7==1){
chessdsbr 2:32e1e71f5885 1240 if(l8==1){
chessdsbr 2:32e1e71f5885 1241 figura_dib[0]=0x47;
chessdsbr 2:32e1e71f5885 1242 }
chessdsbr 2:32e1e71f5885 1243 else{
chessdsbr 2:32e1e71f5885 1244 figura_dib[0]=0x46;
chessdsbr 2:32e1e71f5885 1245 }
chessdsbr 2:32e1e71f5885 1246 }
chessdsbr 2:32e1e71f5885 1247 else if(l8==1){
chessdsbr 2:32e1e71f5885 1248 figura_dib[0]=0x45;
chessdsbr 2:32e1e71f5885 1249 }
chessdsbr 2:32e1e71f5885 1250 else{
chessdsbr 2:32e1e71f5885 1251 figura_dib[0]=0x44;
chessdsbr 2:32e1e71f5885 1252 }
chessdsbr 2:32e1e71f5885 1253 }
chessdsbr 2:32e1e71f5885 1254 else if(l7==1){
chessdsbr 2:32e1e71f5885 1255 if(l8==1){
chessdsbr 2:32e1e71f5885 1256 figura_dib[0]=0x43;
chessdsbr 2:32e1e71f5885 1257 }
chessdsbr 2:32e1e71f5885 1258 else{
chessdsbr 2:32e1e71f5885 1259 figura_dib[0]=0x42;
chessdsbr 2:32e1e71f5885 1260 }
chessdsbr 2:32e1e71f5885 1261 }
chessdsbr 2:32e1e71f5885 1262 else if(l8==1){
chessdsbr 2:32e1e71f5885 1263 figura_dib[0]=0x41;
chessdsbr 2:32e1e71f5885 1264 }
chessdsbr 2:32e1e71f5885 1265 else{
chessdsbr 2:32e1e71f5885 1266 figura_dib[0]=0x40;
chessdsbr 2:32e1e71f5885 1267 }
chessdsbr 2:32e1e71f5885 1268 }
chessdsbr 2:32e1e71f5885 1269 else if(l3==1){
chessdsbr 2:32e1e71f5885 1270 if(l4==1){
chessdsbr 2:32e1e71f5885 1271 if(l5==1){
chessdsbr 2:32e1e71f5885 1272 if(l6==1){
chessdsbr 2:32e1e71f5885 1273 if(l7==1){
chessdsbr 2:32e1e71f5885 1274 if(l8==1){
chessdsbr 2:32e1e71f5885 1275 figura_dib[0]=0x3F;
chessdsbr 2:32e1e71f5885 1276 }
chessdsbr 2:32e1e71f5885 1277 else{
chessdsbr 2:32e1e71f5885 1278 figura_dib[0]=0x3E;
chessdsbr 2:32e1e71f5885 1279 }
chessdsbr 2:32e1e71f5885 1280 }
chessdsbr 2:32e1e71f5885 1281 else if(l8==1){
chessdsbr 2:32e1e71f5885 1282 figura_dib[0]=0x3D;
chessdsbr 2:32e1e71f5885 1283 }
chessdsbr 2:32e1e71f5885 1284 else{
chessdsbr 2:32e1e71f5885 1285 figura_dib[0]=0x3C;
chessdsbr 2:32e1e71f5885 1286 }
chessdsbr 2:32e1e71f5885 1287 }
chessdsbr 2:32e1e71f5885 1288 else if(l7==1){
chessdsbr 2:32e1e71f5885 1289 if(l8==1){
chessdsbr 2:32e1e71f5885 1290 figura_dib[0]=0x3B;
chessdsbr 2:32e1e71f5885 1291 }
chessdsbr 2:32e1e71f5885 1292 else{
chessdsbr 2:32e1e71f5885 1293 figura_dib[0]=0x3A;
chessdsbr 2:32e1e71f5885 1294 }
chessdsbr 2:32e1e71f5885 1295 }
chessdsbr 2:32e1e71f5885 1296 else if(l8==1){
chessdsbr 2:32e1e71f5885 1297 figura_dib[0]=0x39;
chessdsbr 2:32e1e71f5885 1298 }
chessdsbr 2:32e1e71f5885 1299 else{
chessdsbr 2:32e1e71f5885 1300 figura_dib[0]=0x38;
chessdsbr 2:32e1e71f5885 1301 }
chessdsbr 2:32e1e71f5885 1302 }
chessdsbr 2:32e1e71f5885 1303 else if(l6==1){
chessdsbr 2:32e1e71f5885 1304 if(l7==1){
chessdsbr 2:32e1e71f5885 1305 if(l8==1){
chessdsbr 2:32e1e71f5885 1306 figura_dib[0]=0x37;
chessdsbr 2:32e1e71f5885 1307 }
chessdsbr 2:32e1e71f5885 1308 else{
chessdsbr 2:32e1e71f5885 1309 figura_dib[0]=0x36;
chessdsbr 2:32e1e71f5885 1310 }
chessdsbr 2:32e1e71f5885 1311 }
chessdsbr 2:32e1e71f5885 1312 else if(l8==1){
chessdsbr 2:32e1e71f5885 1313 figura_dib[0]=0x35;
chessdsbr 2:32e1e71f5885 1314 }
chessdsbr 2:32e1e71f5885 1315 else{
chessdsbr 2:32e1e71f5885 1316 figura_dib[0]=0x34;
chessdsbr 2:32e1e71f5885 1317 }
chessdsbr 2:32e1e71f5885 1318 }
chessdsbr 2:32e1e71f5885 1319 else if(l7==1){
chessdsbr 2:32e1e71f5885 1320 if(l8==1){
chessdsbr 2:32e1e71f5885 1321 figura_dib[0]=0x33;
chessdsbr 2:32e1e71f5885 1322 }
chessdsbr 2:32e1e71f5885 1323 else{
chessdsbr 2:32e1e71f5885 1324 figura_dib[0]=0x32;
chessdsbr 2:32e1e71f5885 1325 }
chessdsbr 2:32e1e71f5885 1326 }
chessdsbr 2:32e1e71f5885 1327 else if(l8==1){
chessdsbr 2:32e1e71f5885 1328 figura_dib[0]=0x31;
chessdsbr 2:32e1e71f5885 1329 }
chessdsbr 2:32e1e71f5885 1330 else{
chessdsbr 2:32e1e71f5885 1331 figura_dib[0]=0x30;
chessdsbr 2:32e1e71f5885 1332 }
chessdsbr 2:32e1e71f5885 1333 }
chessdsbr 2:32e1e71f5885 1334 else if(l5==1){
chessdsbr 2:32e1e71f5885 1335 if(l6==1){
chessdsbr 2:32e1e71f5885 1336 if(l7==1){
chessdsbr 2:32e1e71f5885 1337 if(l8==1){
chessdsbr 2:32e1e71f5885 1338 figura_dib[0]=0x2F;
chessdsbr 2:32e1e71f5885 1339 }
chessdsbr 2:32e1e71f5885 1340 else{
chessdsbr 2:32e1e71f5885 1341 figura_dib[0]=0x2E;
chessdsbr 2:32e1e71f5885 1342 }
chessdsbr 2:32e1e71f5885 1343 }
chessdsbr 2:32e1e71f5885 1344 else if(l8==1){
chessdsbr 2:32e1e71f5885 1345 figura_dib[0]=0x2D;
chessdsbr 2:32e1e71f5885 1346 }
chessdsbr 2:32e1e71f5885 1347 else{
chessdsbr 2:32e1e71f5885 1348 figura_dib[0]=0x2C;
chessdsbr 2:32e1e71f5885 1349 }
chessdsbr 2:32e1e71f5885 1350 }
chessdsbr 2:32e1e71f5885 1351 else if(l7==1){
chessdsbr 2:32e1e71f5885 1352 if(l8==1){
chessdsbr 2:32e1e71f5885 1353 figura_dib[0]=0x2B;
chessdsbr 2:32e1e71f5885 1354 }
chessdsbr 2:32e1e71f5885 1355 else{
chessdsbr 2:32e1e71f5885 1356 figura_dib[0]=0x2A;
chessdsbr 2:32e1e71f5885 1357 }
chessdsbr 2:32e1e71f5885 1358 }
chessdsbr 2:32e1e71f5885 1359 else if(l8==1){
chessdsbr 2:32e1e71f5885 1360 figura_dib[0]=0x29;
chessdsbr 2:32e1e71f5885 1361 }
chessdsbr 2:32e1e71f5885 1362 else{
chessdsbr 2:32e1e71f5885 1363 figura_dib[0]=0x28;
chessdsbr 2:32e1e71f5885 1364 }
chessdsbr 2:32e1e71f5885 1365 }
chessdsbr 2:32e1e71f5885 1366 else if(l6==1){
chessdsbr 2:32e1e71f5885 1367 if(l7==1){
chessdsbr 2:32e1e71f5885 1368 if(l8==1){
chessdsbr 2:32e1e71f5885 1369 figura_dib[0]=0x27;
chessdsbr 2:32e1e71f5885 1370 }
chessdsbr 2:32e1e71f5885 1371 else{
chessdsbr 2:32e1e71f5885 1372 figura_dib[0]=0x26;
chessdsbr 2:32e1e71f5885 1373 }
chessdsbr 2:32e1e71f5885 1374 }
chessdsbr 2:32e1e71f5885 1375 else if(l8==1){
chessdsbr 2:32e1e71f5885 1376 figura_dib[0]=0x25;
chessdsbr 2:32e1e71f5885 1377 }
chessdsbr 2:32e1e71f5885 1378 else{
chessdsbr 2:32e1e71f5885 1379 figura_dib[0]=0x24;
chessdsbr 2:32e1e71f5885 1380 }
chessdsbr 2:32e1e71f5885 1381 }
chessdsbr 2:32e1e71f5885 1382 else if(l7==1){
chessdsbr 2:32e1e71f5885 1383 if(l8==1){
chessdsbr 2:32e1e71f5885 1384 figura_dib[0]=0x23;
chessdsbr 2:32e1e71f5885 1385 }
chessdsbr 2:32e1e71f5885 1386 else{
chessdsbr 2:32e1e71f5885 1387 figura_dib[0]=0x22;
chessdsbr 2:32e1e71f5885 1388 }
chessdsbr 2:32e1e71f5885 1389 }
chessdsbr 2:32e1e71f5885 1390 else if(l8==1){
chessdsbr 2:32e1e71f5885 1391 figura_dib[0]=0x21;
chessdsbr 2:32e1e71f5885 1392 }
chessdsbr 2:32e1e71f5885 1393 else{
chessdsbr 2:32e1e71f5885 1394 figura_dib[0]=0x20;
chessdsbr 2:32e1e71f5885 1395 }
chessdsbr 2:32e1e71f5885 1396 }
chessdsbr 2:32e1e71f5885 1397 else if(l4==1){
chessdsbr 2:32e1e71f5885 1398 if(l5==1){
chessdsbr 2:32e1e71f5885 1399 if(l6==1){
chessdsbr 2:32e1e71f5885 1400 if(l7==1){
chessdsbr 2:32e1e71f5885 1401 if(l8==1){
chessdsbr 2:32e1e71f5885 1402 figura_dib[0]=0x1F;
chessdsbr 2:32e1e71f5885 1403 }
chessdsbr 2:32e1e71f5885 1404 else{
chessdsbr 2:32e1e71f5885 1405 figura_dib[0]=0x1E;
chessdsbr 2:32e1e71f5885 1406 }
chessdsbr 2:32e1e71f5885 1407 }
chessdsbr 2:32e1e71f5885 1408 else if(l8==1){
chessdsbr 2:32e1e71f5885 1409 figura_dib[0]=0x1D;
chessdsbr 2:32e1e71f5885 1410 }
chessdsbr 2:32e1e71f5885 1411 else{
chessdsbr 2:32e1e71f5885 1412 figura_dib[0]=0x1C;
chessdsbr 2:32e1e71f5885 1413 }
chessdsbr 2:32e1e71f5885 1414 }
chessdsbr 2:32e1e71f5885 1415 else if(l7==1){
chessdsbr 2:32e1e71f5885 1416 if(l8==1){
chessdsbr 2:32e1e71f5885 1417 figura_dib[0]=0x1B;
chessdsbr 2:32e1e71f5885 1418 }
chessdsbr 2:32e1e71f5885 1419 else{
chessdsbr 2:32e1e71f5885 1420 figura_dib[0]=0x1A;
chessdsbr 2:32e1e71f5885 1421 }
chessdsbr 2:32e1e71f5885 1422 }
chessdsbr 2:32e1e71f5885 1423 else if(l8==1){
chessdsbr 2:32e1e71f5885 1424 figura_dib[0]=0x19;
chessdsbr 2:32e1e71f5885 1425 }
chessdsbr 2:32e1e71f5885 1426 else{
chessdsbr 2:32e1e71f5885 1427 figura_dib[0]=0x18;
chessdsbr 2:32e1e71f5885 1428 }
chessdsbr 2:32e1e71f5885 1429 }
chessdsbr 2:32e1e71f5885 1430 else if(l6==1){
chessdsbr 2:32e1e71f5885 1431 if(l7==1){
chessdsbr 2:32e1e71f5885 1432 if(l8==1){
chessdsbr 2:32e1e71f5885 1433 figura_dib[0]=0x17;
chessdsbr 2:32e1e71f5885 1434 }
chessdsbr 2:32e1e71f5885 1435 else{
chessdsbr 2:32e1e71f5885 1436 figura_dib[0]=0x16;
chessdsbr 2:32e1e71f5885 1437 }
chessdsbr 2:32e1e71f5885 1438 }
chessdsbr 2:32e1e71f5885 1439 else if(l8==1){
chessdsbr 2:32e1e71f5885 1440 figura_dib[0]=0x15;
chessdsbr 2:32e1e71f5885 1441 }
chessdsbr 2:32e1e71f5885 1442 else{
chessdsbr 2:32e1e71f5885 1443 figura_dib[0]=0x14;
chessdsbr 2:32e1e71f5885 1444 }
chessdsbr 2:32e1e71f5885 1445 }
chessdsbr 2:32e1e71f5885 1446 else if(l7==1){
chessdsbr 2:32e1e71f5885 1447 if(l8==1){
chessdsbr 2:32e1e71f5885 1448 figura_dib[0]=0x13;
chessdsbr 2:32e1e71f5885 1449 }
chessdsbr 2:32e1e71f5885 1450 else{
chessdsbr 2:32e1e71f5885 1451 figura_dib[0]=0x12;
chessdsbr 2:32e1e71f5885 1452 }
chessdsbr 2:32e1e71f5885 1453 }
chessdsbr 2:32e1e71f5885 1454 else if(l8==1){
chessdsbr 2:32e1e71f5885 1455 figura_dib[0]=0x11;
chessdsbr 2:32e1e71f5885 1456 }
chessdsbr 2:32e1e71f5885 1457 else{
chessdsbr 2:32e1e71f5885 1458 figura_dib[0]=0x10;
chessdsbr 2:32e1e71f5885 1459 }
chessdsbr 2:32e1e71f5885 1460 }
chessdsbr 2:32e1e71f5885 1461 else if(l5==1){
chessdsbr 2:32e1e71f5885 1462 if(l6==1){
chessdsbr 2:32e1e71f5885 1463 if(l7==1){
chessdsbr 2:32e1e71f5885 1464 if(l8==1){
chessdsbr 2:32e1e71f5885 1465 figura_dib[0]=0x0F;
chessdsbr 2:32e1e71f5885 1466 }
chessdsbr 2:32e1e71f5885 1467 else{
chessdsbr 2:32e1e71f5885 1468 figura_dib[0]=0x0E;
chessdsbr 2:32e1e71f5885 1469 }
chessdsbr 2:32e1e71f5885 1470 }
chessdsbr 2:32e1e71f5885 1471 else if(l8==1){
chessdsbr 2:32e1e71f5885 1472 figura_dib[0]=0x0D;
chessdsbr 2:32e1e71f5885 1473 }
chessdsbr 2:32e1e71f5885 1474 else{
chessdsbr 2:32e1e71f5885 1475 figura_dib[0]=0x0C;
chessdsbr 2:32e1e71f5885 1476 }
chessdsbr 2:32e1e71f5885 1477 }
chessdsbr 2:32e1e71f5885 1478 else if(l7==1){
chessdsbr 2:32e1e71f5885 1479 if(l8==1){
chessdsbr 2:32e1e71f5885 1480 figura_dib[0]=0x0B;
chessdsbr 2:32e1e71f5885 1481 }
chessdsbr 2:32e1e71f5885 1482 else{
chessdsbr 2:32e1e71f5885 1483 figura_dib[0]=0x0A;
chessdsbr 2:32e1e71f5885 1484 }
chessdsbr 2:32e1e71f5885 1485 }
chessdsbr 2:32e1e71f5885 1486 else if(l8==1){
chessdsbr 2:32e1e71f5885 1487 figura_dib[0]=0x09;
chessdsbr 2:32e1e71f5885 1488 }
chessdsbr 2:32e1e71f5885 1489 else{
chessdsbr 2:32e1e71f5885 1490 figura_dib[0]=0x08;
chessdsbr 2:32e1e71f5885 1491 }
chessdsbr 2:32e1e71f5885 1492 }
chessdsbr 2:32e1e71f5885 1493 else if(l6==1){
chessdsbr 2:32e1e71f5885 1494 if(l7==1){
chessdsbr 2:32e1e71f5885 1495 if(l8==1){
chessdsbr 2:32e1e71f5885 1496 figura_dib[0]=0x07;
chessdsbr 2:32e1e71f5885 1497 }
chessdsbr 2:32e1e71f5885 1498 else{
chessdsbr 2:32e1e71f5885 1499 figura_dib[0]=0x06;
chessdsbr 2:32e1e71f5885 1500 }
chessdsbr 2:32e1e71f5885 1501 }
chessdsbr 2:32e1e71f5885 1502 else if(l8==1){
chessdsbr 2:32e1e71f5885 1503 figura_dib[0]=0x05;
chessdsbr 2:32e1e71f5885 1504 }
chessdsbr 2:32e1e71f5885 1505 else{
chessdsbr 2:32e1e71f5885 1506 figura_dib[0]=0x04;
chessdsbr 2:32e1e71f5885 1507 }
chessdsbr 2:32e1e71f5885 1508 }
chessdsbr 2:32e1e71f5885 1509 else if(l7==1){
chessdsbr 2:32e1e71f5885 1510 if(l8==1){
chessdsbr 2:32e1e71f5885 1511 figura_dib[0]=0x03;
chessdsbr 2:32e1e71f5885 1512 }
chessdsbr 2:32e1e71f5885 1513 else{
chessdsbr 2:32e1e71f5885 1514 figura_dib[0]=0x02;
chessdsbr 2:32e1e71f5885 1515 }
chessdsbr 2:32e1e71f5885 1516 }
chessdsbr 2:32e1e71f5885 1517 else if(l8==1){
chessdsbr 2:32e1e71f5885 1518 figura_dib[0]=0x01;
chessdsbr 2:32e1e71f5885 1519 }
chessdsbr 2:32e1e71f5885 1520 else{
chessdsbr 2:32e1e71f5885 1521 figura_dib[0]=0x00;
chessdsbr 2:32e1e71f5885 1522 }
chessdsbr 2:32e1e71f5885 1523 /////
chessdsbr 2:32e1e71f5885 1524 ////
chessdsbr 2:32e1e71f5885 1525 ///
chessdsbr 2:32e1e71f5885 1526 //
chessdsbr 2:32e1e71f5885 1527 //fila 2
chessdsbr 2:32e1e71f5885 1528 //
chessdsbr 2:32e1e71f5885 1529 ///
chessdsbr 2:32e1e71f5885 1530 ////
chessdsbr 2:32e1e71f5885 1531 /////
chessdsbr 2:32e1e71f5885 1532 if(l9==1){
chessdsbr 2:32e1e71f5885 1533 if(l10==1){
chessdsbr 2:32e1e71f5885 1534 if(l11==1){
chessdsbr 2:32e1e71f5885 1535 if(l12==1){
chessdsbr 2:32e1e71f5885 1536 if(l13==1){
chessdsbr 2:32e1e71f5885 1537 if(l14==1){
chessdsbr 2:32e1e71f5885 1538 if(l15==1){
chessdsbr 2:32e1e71f5885 1539 if(l16==1){
chessdsbr 2:32e1e71f5885 1540 figura_dib[1]=0xFF;
chessdsbr 2:32e1e71f5885 1541 }
chessdsbr 2:32e1e71f5885 1542 else{
chessdsbr 2:32e1e71f5885 1543 figura_dib[1]=0xFE;
chessdsbr 2:32e1e71f5885 1544 }
chessdsbr 2:32e1e71f5885 1545 }
chessdsbr 2:32e1e71f5885 1546 else if(l16==1){
chessdsbr 2:32e1e71f5885 1547 figura_dib[1]=0xFD;
chessdsbr 2:32e1e71f5885 1548 }
chessdsbr 2:32e1e71f5885 1549 else{
chessdsbr 2:32e1e71f5885 1550 figura_dib[1]=0xFC;
chessdsbr 2:32e1e71f5885 1551 }
chessdsbr 2:32e1e71f5885 1552 }
chessdsbr 2:32e1e71f5885 1553 else if(l15==1){
chessdsbr 2:32e1e71f5885 1554 if(l16==1){
chessdsbr 2:32e1e71f5885 1555 figura_dib[1]=0xFB;
chessdsbr 2:32e1e71f5885 1556 }
chessdsbr 2:32e1e71f5885 1557 else{
chessdsbr 2:32e1e71f5885 1558 figura_dib[1]=0xFA;
chessdsbr 2:32e1e71f5885 1559 }
chessdsbr 2:32e1e71f5885 1560 }
chessdsbr 2:32e1e71f5885 1561 else if(l16==1){
chessdsbr 2:32e1e71f5885 1562 figura_dib[1]=0xF9;
chessdsbr 2:32e1e71f5885 1563 }
chessdsbr 2:32e1e71f5885 1564 else{
chessdsbr 2:32e1e71f5885 1565 figura_dib[1]=0xF8;
chessdsbr 2:32e1e71f5885 1566 }
chessdsbr 2:32e1e71f5885 1567 }
chessdsbr 2:32e1e71f5885 1568 else if(l14==1){
chessdsbr 2:32e1e71f5885 1569 if(l15==1){
chessdsbr 2:32e1e71f5885 1570 if(l16==1){
chessdsbr 2:32e1e71f5885 1571 figura_dib[1]=0xF7;
chessdsbr 2:32e1e71f5885 1572 }
chessdsbr 2:32e1e71f5885 1573 else{
chessdsbr 2:32e1e71f5885 1574 figura_dib[1]=0xF6;
chessdsbr 2:32e1e71f5885 1575 }
chessdsbr 2:32e1e71f5885 1576 }
chessdsbr 2:32e1e71f5885 1577 else if(l16==1){
chessdsbr 2:32e1e71f5885 1578 figura_dib[1]=0xF5;
chessdsbr 2:32e1e71f5885 1579 }
chessdsbr 2:32e1e71f5885 1580 else{
chessdsbr 2:32e1e71f5885 1581 figura_dib[1]=0xF4;
chessdsbr 2:32e1e71f5885 1582 }
chessdsbr 2:32e1e71f5885 1583 }
chessdsbr 2:32e1e71f5885 1584 else if(l15==1){
chessdsbr 2:32e1e71f5885 1585 if(l16==1){
chessdsbr 2:32e1e71f5885 1586 figura_dib[1]=0xF3;
chessdsbr 2:32e1e71f5885 1587 }
chessdsbr 2:32e1e71f5885 1588 else{
chessdsbr 2:32e1e71f5885 1589 figura_dib[1]=0xF2;
chessdsbr 2:32e1e71f5885 1590 }
chessdsbr 2:32e1e71f5885 1591 }
chessdsbr 2:32e1e71f5885 1592 else if(l16==1){
chessdsbr 2:32e1e71f5885 1593 figura_dib[1]=0xF1;
chessdsbr 2:32e1e71f5885 1594 }
chessdsbr 2:32e1e71f5885 1595 else{
chessdsbr 2:32e1e71f5885 1596 figura_dib[1]=0xF0;
chessdsbr 2:32e1e71f5885 1597 }
chessdsbr 2:32e1e71f5885 1598 }
chessdsbr 2:32e1e71f5885 1599 else if(l13==1){
chessdsbr 2:32e1e71f5885 1600 if(l14==1){
chessdsbr 2:32e1e71f5885 1601 if(l15==1){
chessdsbr 2:32e1e71f5885 1602 if(l16==1){
chessdsbr 2:32e1e71f5885 1603 figura_dib[1]=0xEF;
chessdsbr 2:32e1e71f5885 1604 }
chessdsbr 2:32e1e71f5885 1605 else{
chessdsbr 2:32e1e71f5885 1606 figura_dib[1]=0xEE;
chessdsbr 2:32e1e71f5885 1607 }
chessdsbr 2:32e1e71f5885 1608 }
chessdsbr 2:32e1e71f5885 1609 else if(l16==1){
chessdsbr 2:32e1e71f5885 1610 figura_dib[1]=0xED;
chessdsbr 2:32e1e71f5885 1611 }
chessdsbr 2:32e1e71f5885 1612 else{
chessdsbr 2:32e1e71f5885 1613 figura_dib[1]=0xEC;
chessdsbr 2:32e1e71f5885 1614 }
chessdsbr 2:32e1e71f5885 1615 }
chessdsbr 2:32e1e71f5885 1616 else if(l15==1){
chessdsbr 2:32e1e71f5885 1617 if(l16==1){
chessdsbr 2:32e1e71f5885 1618 figura_dib[1]=0xEB;
chessdsbr 2:32e1e71f5885 1619 }
chessdsbr 2:32e1e71f5885 1620 else{
chessdsbr 2:32e1e71f5885 1621 figura_dib[1]=0xEA;
chessdsbr 2:32e1e71f5885 1622 }
chessdsbr 2:32e1e71f5885 1623 }
chessdsbr 2:32e1e71f5885 1624 else if(l16==1){
chessdsbr 2:32e1e71f5885 1625 figura_dib[1]=0xE9;
chessdsbr 2:32e1e71f5885 1626 }
chessdsbr 2:32e1e71f5885 1627 else{
chessdsbr 2:32e1e71f5885 1628 figura_dib[1]=0xE8;
chessdsbr 2:32e1e71f5885 1629 }
chessdsbr 2:32e1e71f5885 1630 }
chessdsbr 2:32e1e71f5885 1631 else if(l14==1){
chessdsbr 2:32e1e71f5885 1632 if(l15==1){
chessdsbr 2:32e1e71f5885 1633 if(l16==1){
chessdsbr 2:32e1e71f5885 1634 figura_dib[1]=0xE7;
chessdsbr 2:32e1e71f5885 1635 }
chessdsbr 2:32e1e71f5885 1636 else{
chessdsbr 2:32e1e71f5885 1637 figura_dib[1]=0xE6;
chessdsbr 2:32e1e71f5885 1638 }
chessdsbr 2:32e1e71f5885 1639 }
chessdsbr 2:32e1e71f5885 1640 else if(l16==1){
chessdsbr 2:32e1e71f5885 1641 figura_dib[1]=0xE5;
chessdsbr 2:32e1e71f5885 1642 }
chessdsbr 2:32e1e71f5885 1643 else{
chessdsbr 2:32e1e71f5885 1644 figura_dib[1]=0xE4;
chessdsbr 2:32e1e71f5885 1645 }
chessdsbr 2:32e1e71f5885 1646 }
chessdsbr 2:32e1e71f5885 1647 else if(l15==1){
chessdsbr 2:32e1e71f5885 1648 if(l16==1){
chessdsbr 2:32e1e71f5885 1649 figura_dib[1]=0xE3;
chessdsbr 2:32e1e71f5885 1650 }
chessdsbr 2:32e1e71f5885 1651 else{
chessdsbr 2:32e1e71f5885 1652 figura_dib[1]=0xE2;
chessdsbr 2:32e1e71f5885 1653 }
chessdsbr 2:32e1e71f5885 1654 }
chessdsbr 2:32e1e71f5885 1655 else if(l16==1){
chessdsbr 2:32e1e71f5885 1656 figura_dib[1]=0xE1;
chessdsbr 2:32e1e71f5885 1657 }
chessdsbr 2:32e1e71f5885 1658 else{
chessdsbr 2:32e1e71f5885 1659 figura_dib[1]=0xE0;
chessdsbr 2:32e1e71f5885 1660 }
chessdsbr 2:32e1e71f5885 1661 }
chessdsbr 2:32e1e71f5885 1662 else if(l12==1){
chessdsbr 2:32e1e71f5885 1663 if(l13==1){
chessdsbr 2:32e1e71f5885 1664 if(l14==1){
chessdsbr 2:32e1e71f5885 1665 if(l15==1){
chessdsbr 2:32e1e71f5885 1666 if(l16==1){
chessdsbr 2:32e1e71f5885 1667 figura_dib[1]=0xDF;
chessdsbr 2:32e1e71f5885 1668 }
chessdsbr 2:32e1e71f5885 1669 else{
chessdsbr 2:32e1e71f5885 1670 figura_dib[1]=0xDE;
chessdsbr 2:32e1e71f5885 1671 }
chessdsbr 2:32e1e71f5885 1672 }
chessdsbr 2:32e1e71f5885 1673 else if(l16==1){
chessdsbr 2:32e1e71f5885 1674 figura_dib[1]=0xDD;
chessdsbr 2:32e1e71f5885 1675 }
chessdsbr 2:32e1e71f5885 1676 else{
chessdsbr 2:32e1e71f5885 1677 figura_dib[1]=0xDC;
chessdsbr 2:32e1e71f5885 1678 }
chessdsbr 2:32e1e71f5885 1679 }
chessdsbr 2:32e1e71f5885 1680 else if(l15==1){
chessdsbr 2:32e1e71f5885 1681 if(l16==1){
chessdsbr 2:32e1e71f5885 1682 figura_dib[1]=0xDB;
chessdsbr 2:32e1e71f5885 1683 }
chessdsbr 2:32e1e71f5885 1684 else{
chessdsbr 2:32e1e71f5885 1685 figura_dib[1]=0xDA;
chessdsbr 2:32e1e71f5885 1686 }
chessdsbr 2:32e1e71f5885 1687 }
chessdsbr 2:32e1e71f5885 1688 else if(l16==1){
chessdsbr 2:32e1e71f5885 1689 figura_dib[1]=0xD9;
chessdsbr 2:32e1e71f5885 1690 }
chessdsbr 2:32e1e71f5885 1691 else{
chessdsbr 2:32e1e71f5885 1692 figura_dib[1]=0xD8;
chessdsbr 2:32e1e71f5885 1693 }
chessdsbr 2:32e1e71f5885 1694 }
chessdsbr 2:32e1e71f5885 1695 else if(l14==1){
chessdsbr 2:32e1e71f5885 1696 if(l15==1){
chessdsbr 2:32e1e71f5885 1697 if(l16==1){
chessdsbr 2:32e1e71f5885 1698 figura_dib[1]=0xD7;
chessdsbr 2:32e1e71f5885 1699 }
chessdsbr 2:32e1e71f5885 1700 else{
chessdsbr 2:32e1e71f5885 1701 figura_dib[1]=0xD6;
chessdsbr 2:32e1e71f5885 1702 }
chessdsbr 2:32e1e71f5885 1703 }
chessdsbr 2:32e1e71f5885 1704 else if(l16==1){
chessdsbr 2:32e1e71f5885 1705 figura_dib[1]=0xD5;
chessdsbr 2:32e1e71f5885 1706 }
chessdsbr 2:32e1e71f5885 1707 else{
chessdsbr 2:32e1e71f5885 1708 figura_dib[1]=0xD4;
chessdsbr 2:32e1e71f5885 1709 }
chessdsbr 2:32e1e71f5885 1710 }
chessdsbr 2:32e1e71f5885 1711 else if(l15==1){
chessdsbr 2:32e1e71f5885 1712 if(l16==1){
chessdsbr 2:32e1e71f5885 1713 figura_dib[1]=0xD3;
chessdsbr 2:32e1e71f5885 1714 }
chessdsbr 2:32e1e71f5885 1715 else{
chessdsbr 2:32e1e71f5885 1716 figura_dib[1]=0xD2;
chessdsbr 2:32e1e71f5885 1717 }
chessdsbr 2:32e1e71f5885 1718 }
chessdsbr 2:32e1e71f5885 1719 else if(l16==1){
chessdsbr 2:32e1e71f5885 1720 figura_dib[1]=0xD1;
chessdsbr 2:32e1e71f5885 1721 }
chessdsbr 2:32e1e71f5885 1722 else{
chessdsbr 2:32e1e71f5885 1723 figura_dib[1]=0xD0;
chessdsbr 2:32e1e71f5885 1724 }
chessdsbr 2:32e1e71f5885 1725 }
chessdsbr 2:32e1e71f5885 1726 else if(l13==1){
chessdsbr 2:32e1e71f5885 1727 if(l14==1){
chessdsbr 2:32e1e71f5885 1728 if(l15==1){
chessdsbr 2:32e1e71f5885 1729 if(l16==1){
chessdsbr 2:32e1e71f5885 1730 figura_dib[1]=0xCF;
chessdsbr 2:32e1e71f5885 1731 }
chessdsbr 2:32e1e71f5885 1732 else{
chessdsbr 2:32e1e71f5885 1733 figura_dib[1]=0xCE;
chessdsbr 2:32e1e71f5885 1734 }
chessdsbr 2:32e1e71f5885 1735 }
chessdsbr 2:32e1e71f5885 1736 else if(l16==1){
chessdsbr 2:32e1e71f5885 1737 figura_dib[1]=0xCD;
chessdsbr 2:32e1e71f5885 1738 }
chessdsbr 2:32e1e71f5885 1739 else{
chessdsbr 2:32e1e71f5885 1740 figura_dib[1]=0xCC;
chessdsbr 2:32e1e71f5885 1741 }
chessdsbr 2:32e1e71f5885 1742 }
chessdsbr 2:32e1e71f5885 1743 else if(l15==1){
chessdsbr 2:32e1e71f5885 1744 if(l16==1){
chessdsbr 2:32e1e71f5885 1745 figura_dib[1]=0xCB;
chessdsbr 2:32e1e71f5885 1746 }
chessdsbr 2:32e1e71f5885 1747 else{
chessdsbr 2:32e1e71f5885 1748 figura_dib[1]=0xCA;
chessdsbr 2:32e1e71f5885 1749 }
chessdsbr 2:32e1e71f5885 1750 }
chessdsbr 2:32e1e71f5885 1751 else if(l16==1){
chessdsbr 2:32e1e71f5885 1752 figura_dib[1]=0xC9;
chessdsbr 2:32e1e71f5885 1753 }
chessdsbr 2:32e1e71f5885 1754 else{
chessdsbr 2:32e1e71f5885 1755 figura_dib[1]=0xC8;
chessdsbr 2:32e1e71f5885 1756 }
chessdsbr 2:32e1e71f5885 1757 }
chessdsbr 2:32e1e71f5885 1758 else if(l14==1){
chessdsbr 2:32e1e71f5885 1759 if(l15==1){
chessdsbr 2:32e1e71f5885 1760 if(l16==1){
chessdsbr 2:32e1e71f5885 1761 figura_dib[1]=0xC7;
chessdsbr 2:32e1e71f5885 1762 }
chessdsbr 2:32e1e71f5885 1763 else{
chessdsbr 2:32e1e71f5885 1764 figura_dib[1]=0xC6;
chessdsbr 2:32e1e71f5885 1765 }
chessdsbr 2:32e1e71f5885 1766 }
chessdsbr 2:32e1e71f5885 1767 else if(l16==1){
chessdsbr 2:32e1e71f5885 1768 figura_dib[1]=0xC5;
chessdsbr 2:32e1e71f5885 1769 }
chessdsbr 2:32e1e71f5885 1770 else{
chessdsbr 2:32e1e71f5885 1771 figura_dib[1]=0xC4;
chessdsbr 2:32e1e71f5885 1772 }
chessdsbr 2:32e1e71f5885 1773 }
chessdsbr 2:32e1e71f5885 1774 else if(l15==1){
chessdsbr 2:32e1e71f5885 1775 if(l16==1){
chessdsbr 2:32e1e71f5885 1776 figura_dib[1]=0xC3;
chessdsbr 2:32e1e71f5885 1777 }
chessdsbr 2:32e1e71f5885 1778 else{
chessdsbr 2:32e1e71f5885 1779 figura_dib[1]=0xC2;
chessdsbr 2:32e1e71f5885 1780 }
chessdsbr 2:32e1e71f5885 1781 }
chessdsbr 2:32e1e71f5885 1782 else if(l16==1){
chessdsbr 2:32e1e71f5885 1783 figura_dib[1]=0xC1;
chessdsbr 2:32e1e71f5885 1784 }
chessdsbr 2:32e1e71f5885 1785 else{
chessdsbr 2:32e1e71f5885 1786 figura_dib[1]=0xC0;
chessdsbr 2:32e1e71f5885 1787 }
chessdsbr 2:32e1e71f5885 1788 }
chessdsbr 2:32e1e71f5885 1789 else if(l11==1){
chessdsbr 2:32e1e71f5885 1790 if(l12==1){
chessdsbr 2:32e1e71f5885 1791 if(l13==1){
chessdsbr 2:32e1e71f5885 1792 if(l14==1){
chessdsbr 2:32e1e71f5885 1793 if(l15==1){
chessdsbr 2:32e1e71f5885 1794 if(l16==1){
chessdsbr 2:32e1e71f5885 1795 figura_dib[1]=0xBF;
chessdsbr 2:32e1e71f5885 1796 }
chessdsbr 2:32e1e71f5885 1797 else{
chessdsbr 2:32e1e71f5885 1798 figura_dib[1]=0xBE;
chessdsbr 2:32e1e71f5885 1799 }
chessdsbr 2:32e1e71f5885 1800 }
chessdsbr 2:32e1e71f5885 1801 else if(l16==1){
chessdsbr 2:32e1e71f5885 1802 figura_dib[1]=0xBD;
chessdsbr 2:32e1e71f5885 1803 }
chessdsbr 2:32e1e71f5885 1804 else{
chessdsbr 2:32e1e71f5885 1805 figura_dib[1]=0xBC;
chessdsbr 2:32e1e71f5885 1806 }
chessdsbr 2:32e1e71f5885 1807 }
chessdsbr 2:32e1e71f5885 1808 else if(l15==1){
chessdsbr 2:32e1e71f5885 1809 if(l16==1){
chessdsbr 2:32e1e71f5885 1810 figura_dib[1]=0xBB;
chessdsbr 2:32e1e71f5885 1811 }
chessdsbr 2:32e1e71f5885 1812 else{
chessdsbr 2:32e1e71f5885 1813 figura_dib[1]=0xBA;
chessdsbr 2:32e1e71f5885 1814 }
chessdsbr 2:32e1e71f5885 1815 }
chessdsbr 2:32e1e71f5885 1816 else if(l16==1){
chessdsbr 2:32e1e71f5885 1817 figura_dib[1]=0xB9;
chessdsbr 2:32e1e71f5885 1818 }
chessdsbr 2:32e1e71f5885 1819 else{
chessdsbr 2:32e1e71f5885 1820 figura_dib[1]=0xB8;
chessdsbr 2:32e1e71f5885 1821 }
chessdsbr 2:32e1e71f5885 1822 }
chessdsbr 2:32e1e71f5885 1823 else if(l14==1){
chessdsbr 2:32e1e71f5885 1824 if(l15==1){
chessdsbr 2:32e1e71f5885 1825 if(l16==1){
chessdsbr 2:32e1e71f5885 1826 figura_dib[1]=0xB7;
chessdsbr 2:32e1e71f5885 1827 }
chessdsbr 2:32e1e71f5885 1828 else{
chessdsbr 2:32e1e71f5885 1829 figura_dib[1]=0xB6;
chessdsbr 2:32e1e71f5885 1830 }
chessdsbr 2:32e1e71f5885 1831 }
chessdsbr 2:32e1e71f5885 1832 else if(l16==1){
chessdsbr 2:32e1e71f5885 1833 figura_dib[1]=0xB5;
chessdsbr 2:32e1e71f5885 1834 }
chessdsbr 2:32e1e71f5885 1835 else{
chessdsbr 2:32e1e71f5885 1836 figura_dib[1]=0xB4;
chessdsbr 2:32e1e71f5885 1837 }
chessdsbr 2:32e1e71f5885 1838 }
chessdsbr 2:32e1e71f5885 1839 else if(l15==1){
chessdsbr 2:32e1e71f5885 1840 if(l16==1){
chessdsbr 2:32e1e71f5885 1841 figura_dib[1]=0xB3;
chessdsbr 2:32e1e71f5885 1842 }
chessdsbr 2:32e1e71f5885 1843 else{
chessdsbr 2:32e1e71f5885 1844 figura_dib[1]=0xB2;
chessdsbr 2:32e1e71f5885 1845 }
chessdsbr 2:32e1e71f5885 1846 }
chessdsbr 2:32e1e71f5885 1847 else if(l16==1){
chessdsbr 2:32e1e71f5885 1848 figura_dib[1]=0xB1;
chessdsbr 2:32e1e71f5885 1849 }
chessdsbr 2:32e1e71f5885 1850 else{
chessdsbr 2:32e1e71f5885 1851 figura_dib[1]=0xB0;
chessdsbr 2:32e1e71f5885 1852 }
chessdsbr 2:32e1e71f5885 1853 }
chessdsbr 2:32e1e71f5885 1854 else if(l13==1){
chessdsbr 2:32e1e71f5885 1855 if(l14==1){
chessdsbr 2:32e1e71f5885 1856 if(l15==1){
chessdsbr 2:32e1e71f5885 1857 if(l16==1){
chessdsbr 2:32e1e71f5885 1858 figura_dib[1]=0xAF;
chessdsbr 2:32e1e71f5885 1859 }
chessdsbr 2:32e1e71f5885 1860 else{
chessdsbr 2:32e1e71f5885 1861 figura_dib[1]=0xAE;
chessdsbr 2:32e1e71f5885 1862 }
chessdsbr 2:32e1e71f5885 1863 }
chessdsbr 2:32e1e71f5885 1864 else if(l16==1){
chessdsbr 2:32e1e71f5885 1865 figura_dib[1]=0xAD;
chessdsbr 2:32e1e71f5885 1866 }
chessdsbr 2:32e1e71f5885 1867 else{
chessdsbr 2:32e1e71f5885 1868 figura_dib[1]=0xAC;
chessdsbr 2:32e1e71f5885 1869 }
chessdsbr 2:32e1e71f5885 1870 }
chessdsbr 2:32e1e71f5885 1871 else if(l15==1){
chessdsbr 2:32e1e71f5885 1872 if(l16==1){
chessdsbr 2:32e1e71f5885 1873 figura_dib[1]=0xAB;
chessdsbr 2:32e1e71f5885 1874 }
chessdsbr 2:32e1e71f5885 1875 else{
chessdsbr 2:32e1e71f5885 1876 figura_dib[1]=0xAA;
chessdsbr 2:32e1e71f5885 1877 }
chessdsbr 2:32e1e71f5885 1878 }
chessdsbr 2:32e1e71f5885 1879 else if(l16==1){
chessdsbr 2:32e1e71f5885 1880 figura_dib[1]=0xA9;
chessdsbr 2:32e1e71f5885 1881 }
chessdsbr 2:32e1e71f5885 1882 else{
chessdsbr 2:32e1e71f5885 1883 figura_dib[1]=0xA8;
chessdsbr 2:32e1e71f5885 1884 }
chessdsbr 2:32e1e71f5885 1885 }
chessdsbr 2:32e1e71f5885 1886 else if(l14==1){
chessdsbr 2:32e1e71f5885 1887 if(l15==1){
chessdsbr 2:32e1e71f5885 1888 if(l16==1){
chessdsbr 2:32e1e71f5885 1889 figura_dib[1]=0xA7;
chessdsbr 2:32e1e71f5885 1890 }
chessdsbr 2:32e1e71f5885 1891 else{
chessdsbr 2:32e1e71f5885 1892 figura_dib[1]=0xA6;
chessdsbr 2:32e1e71f5885 1893 }
chessdsbr 2:32e1e71f5885 1894 }
chessdsbr 2:32e1e71f5885 1895 else if(l16==1){
chessdsbr 2:32e1e71f5885 1896 figura_dib[1]=0xA5;
chessdsbr 2:32e1e71f5885 1897 }
chessdsbr 2:32e1e71f5885 1898 else{
chessdsbr 2:32e1e71f5885 1899 figura_dib[1]=0xA4;
chessdsbr 2:32e1e71f5885 1900 }
chessdsbr 2:32e1e71f5885 1901 }
chessdsbr 2:32e1e71f5885 1902 else if(l15==1){
chessdsbr 2:32e1e71f5885 1903 if(l16==1){
chessdsbr 2:32e1e71f5885 1904 figura_dib[1]=0xA3;
chessdsbr 2:32e1e71f5885 1905 }
chessdsbr 2:32e1e71f5885 1906 else{
chessdsbr 2:32e1e71f5885 1907 figura_dib[1]=0xA2;
chessdsbr 2:32e1e71f5885 1908 }
chessdsbr 2:32e1e71f5885 1909 }
chessdsbr 2:32e1e71f5885 1910 else if(l16==1){
chessdsbr 2:32e1e71f5885 1911 figura_dib[1]=0xA1;
chessdsbr 2:32e1e71f5885 1912 }
chessdsbr 2:32e1e71f5885 1913 else{
chessdsbr 2:32e1e71f5885 1914 figura_dib[1]=0xA0;
chessdsbr 2:32e1e71f5885 1915 }
chessdsbr 2:32e1e71f5885 1916 }
chessdsbr 2:32e1e71f5885 1917 else if(l12==1){
chessdsbr 2:32e1e71f5885 1918 if(l13==1){
chessdsbr 2:32e1e71f5885 1919 if(l14==1){
chessdsbr 2:32e1e71f5885 1920 if(l15==1){
chessdsbr 2:32e1e71f5885 1921 if(l16==1){
chessdsbr 2:32e1e71f5885 1922 figura_dib[1]=0x9F;
chessdsbr 2:32e1e71f5885 1923 }
chessdsbr 2:32e1e71f5885 1924 else{
chessdsbr 2:32e1e71f5885 1925 figura_dib[1]=0x9E;
chessdsbr 2:32e1e71f5885 1926 }
chessdsbr 2:32e1e71f5885 1927 }
chessdsbr 2:32e1e71f5885 1928 else if(l16==1){
chessdsbr 2:32e1e71f5885 1929 figura_dib[1]=0x9D;
chessdsbr 2:32e1e71f5885 1930 }
chessdsbr 2:32e1e71f5885 1931 else{
chessdsbr 2:32e1e71f5885 1932 figura_dib[1]=0x9C;
chessdsbr 2:32e1e71f5885 1933 }
chessdsbr 2:32e1e71f5885 1934 }
chessdsbr 2:32e1e71f5885 1935 else if(l15==1){
chessdsbr 2:32e1e71f5885 1936 if(l16==1){
chessdsbr 2:32e1e71f5885 1937 figura_dib[1]=0x9B;
chessdsbr 2:32e1e71f5885 1938 }
chessdsbr 2:32e1e71f5885 1939 else{
chessdsbr 2:32e1e71f5885 1940 figura_dib[1]=0x9A;
chessdsbr 2:32e1e71f5885 1941 }
chessdsbr 2:32e1e71f5885 1942 }
chessdsbr 2:32e1e71f5885 1943 else if(l16==1){
chessdsbr 2:32e1e71f5885 1944 figura_dib[1]=0x99;
chessdsbr 2:32e1e71f5885 1945 }
chessdsbr 2:32e1e71f5885 1946 else{
chessdsbr 2:32e1e71f5885 1947 figura_dib[1]=0x98;
chessdsbr 2:32e1e71f5885 1948 }
chessdsbr 2:32e1e71f5885 1949 }
chessdsbr 2:32e1e71f5885 1950 else if(l14==1){
chessdsbr 2:32e1e71f5885 1951 if(l15==1){
chessdsbr 2:32e1e71f5885 1952 if(l16==1){
chessdsbr 2:32e1e71f5885 1953 figura_dib[1]=0x97;
chessdsbr 2:32e1e71f5885 1954 }
chessdsbr 2:32e1e71f5885 1955 else{
chessdsbr 2:32e1e71f5885 1956 figura_dib[1]=0x96;
chessdsbr 2:32e1e71f5885 1957 }
chessdsbr 2:32e1e71f5885 1958 }
chessdsbr 2:32e1e71f5885 1959 else if(l16==1){
chessdsbr 2:32e1e71f5885 1960 figura_dib[1]=0x95;
chessdsbr 2:32e1e71f5885 1961 }
chessdsbr 2:32e1e71f5885 1962 else{
chessdsbr 2:32e1e71f5885 1963 figura_dib[1]=0x94;
chessdsbr 2:32e1e71f5885 1964 }
chessdsbr 2:32e1e71f5885 1965 }
chessdsbr 2:32e1e71f5885 1966 else if(l15==1){
chessdsbr 2:32e1e71f5885 1967 if(l16==1){
chessdsbr 2:32e1e71f5885 1968 figura_dib[1]=0x93;
chessdsbr 2:32e1e71f5885 1969 }
chessdsbr 2:32e1e71f5885 1970 else{
chessdsbr 2:32e1e71f5885 1971 figura_dib[1]=0x92;
chessdsbr 2:32e1e71f5885 1972 }
chessdsbr 2:32e1e71f5885 1973 }
chessdsbr 2:32e1e71f5885 1974 else if(l16==1){
chessdsbr 2:32e1e71f5885 1975 figura_dib[1]=0x91;
chessdsbr 2:32e1e71f5885 1976 }
chessdsbr 2:32e1e71f5885 1977 else{
chessdsbr 2:32e1e71f5885 1978 figura_dib[1]=0x90;
chessdsbr 2:32e1e71f5885 1979 }
chessdsbr 2:32e1e71f5885 1980 }
chessdsbr 2:32e1e71f5885 1981 else if(l13==1){
chessdsbr 2:32e1e71f5885 1982 if(l14==1){
chessdsbr 2:32e1e71f5885 1983 if(l15==1){
chessdsbr 2:32e1e71f5885 1984 if(l16==1){
chessdsbr 2:32e1e71f5885 1985 figura_dib[1]=0x8F;
chessdsbr 2:32e1e71f5885 1986 }
chessdsbr 2:32e1e71f5885 1987 else{
chessdsbr 2:32e1e71f5885 1988 figura_dib[1]=0x8E;
chessdsbr 2:32e1e71f5885 1989 }
chessdsbr 2:32e1e71f5885 1990 }
chessdsbr 2:32e1e71f5885 1991 else if(l16==1){
chessdsbr 2:32e1e71f5885 1992 figura_dib[1]=0x8D;
chessdsbr 2:32e1e71f5885 1993 }
chessdsbr 2:32e1e71f5885 1994 else{
chessdsbr 2:32e1e71f5885 1995 figura_dib[1]=0x8C;
chessdsbr 2:32e1e71f5885 1996 }
chessdsbr 2:32e1e71f5885 1997 }
chessdsbr 2:32e1e71f5885 1998 else if(l15==1){
chessdsbr 2:32e1e71f5885 1999 if(l16==1){
chessdsbr 2:32e1e71f5885 2000 figura_dib[1]=0x8B;
chessdsbr 2:32e1e71f5885 2001 }
chessdsbr 2:32e1e71f5885 2002 else{
chessdsbr 2:32e1e71f5885 2003 figura_dib[1]=0x8A;
chessdsbr 2:32e1e71f5885 2004 }
chessdsbr 2:32e1e71f5885 2005 }
chessdsbr 2:32e1e71f5885 2006 else if(l16==1){
chessdsbr 2:32e1e71f5885 2007 figura_dib[1]=0x89;
chessdsbr 2:32e1e71f5885 2008 }
chessdsbr 2:32e1e71f5885 2009 else{
chessdsbr 2:32e1e71f5885 2010 figura_dib[1]=0x88;
chessdsbr 2:32e1e71f5885 2011 }
chessdsbr 2:32e1e71f5885 2012 }
chessdsbr 2:32e1e71f5885 2013 else if(l14==1){
chessdsbr 2:32e1e71f5885 2014 if(l15==1){
chessdsbr 2:32e1e71f5885 2015 if(l16==1){
chessdsbr 2:32e1e71f5885 2016 figura_dib[1]=0x87;
chessdsbr 2:32e1e71f5885 2017 }
chessdsbr 2:32e1e71f5885 2018 else{
chessdsbr 2:32e1e71f5885 2019 figura_dib[1]=0x86;
chessdsbr 2:32e1e71f5885 2020 }
chessdsbr 2:32e1e71f5885 2021 }
chessdsbr 2:32e1e71f5885 2022 else if(l16==1){
chessdsbr 2:32e1e71f5885 2023 figura_dib[1]=0x85;
chessdsbr 2:32e1e71f5885 2024 }
chessdsbr 2:32e1e71f5885 2025 else{
chessdsbr 2:32e1e71f5885 2026 figura_dib[1]=0x84;
chessdsbr 2:32e1e71f5885 2027 }
chessdsbr 2:32e1e71f5885 2028 }
chessdsbr 2:32e1e71f5885 2029 else if(l15==1){
chessdsbr 2:32e1e71f5885 2030 if(l16==1){
chessdsbr 2:32e1e71f5885 2031 figura_dib[1]=0x83;
chessdsbr 2:32e1e71f5885 2032 }
chessdsbr 2:32e1e71f5885 2033 else{
chessdsbr 2:32e1e71f5885 2034 figura_dib[1]=0x82;
chessdsbr 2:32e1e71f5885 2035 }
chessdsbr 2:32e1e71f5885 2036 }
chessdsbr 2:32e1e71f5885 2037 else if(l16==1){
chessdsbr 2:32e1e71f5885 2038 figura_dib[1]=0x81;
chessdsbr 2:32e1e71f5885 2039 }
chessdsbr 2:32e1e71f5885 2040 else{
chessdsbr 2:32e1e71f5885 2041 figura_dib[1]=0x80;
chessdsbr 2:32e1e71f5885 2042 }
chessdsbr 2:32e1e71f5885 2043 }
chessdsbr 2:32e1e71f5885 2044 else if(l10==1){
chessdsbr 2:32e1e71f5885 2045 if(l11==1){
chessdsbr 2:32e1e71f5885 2046 if(l12==1){
chessdsbr 2:32e1e71f5885 2047 if(l13==1){
chessdsbr 2:32e1e71f5885 2048 if(l14==1){
chessdsbr 2:32e1e71f5885 2049 if(l15==1){
chessdsbr 2:32e1e71f5885 2050 if(l16==1){
chessdsbr 2:32e1e71f5885 2051 figura_dib[1]=0x7F;
chessdsbr 2:32e1e71f5885 2052 }
chessdsbr 2:32e1e71f5885 2053 else{
chessdsbr 2:32e1e71f5885 2054 figura_dib[1]=0x7E;
chessdsbr 2:32e1e71f5885 2055 }
chessdsbr 2:32e1e71f5885 2056 }
chessdsbr 2:32e1e71f5885 2057 else if(l16==1){
chessdsbr 2:32e1e71f5885 2058 figura_dib[1]=0x7D;
chessdsbr 2:32e1e71f5885 2059 }
chessdsbr 2:32e1e71f5885 2060 else{
chessdsbr 2:32e1e71f5885 2061 figura_dib[1]=0x7C;
chessdsbr 2:32e1e71f5885 2062 }
chessdsbr 2:32e1e71f5885 2063 }
chessdsbr 2:32e1e71f5885 2064 else if(l15==1){
chessdsbr 2:32e1e71f5885 2065 if(l16==1){
chessdsbr 2:32e1e71f5885 2066 figura_dib[1]=0x7B;
chessdsbr 2:32e1e71f5885 2067 }
chessdsbr 2:32e1e71f5885 2068 else{
chessdsbr 2:32e1e71f5885 2069 figura_dib[1]=0x7A;
chessdsbr 2:32e1e71f5885 2070 }
chessdsbr 2:32e1e71f5885 2071 }
chessdsbr 2:32e1e71f5885 2072 else if(l16==1){
chessdsbr 2:32e1e71f5885 2073 figura_dib[1]=0x79;
chessdsbr 2:32e1e71f5885 2074 }
chessdsbr 2:32e1e71f5885 2075 else{
chessdsbr 2:32e1e71f5885 2076 figura_dib[1]=0x78;
chessdsbr 2:32e1e71f5885 2077 }
chessdsbr 2:32e1e71f5885 2078 }
chessdsbr 2:32e1e71f5885 2079 else if(l14==1){
chessdsbr 2:32e1e71f5885 2080 if(l15==1){
chessdsbr 2:32e1e71f5885 2081 if(l16==1){
chessdsbr 2:32e1e71f5885 2082 figura_dib[1]=0x77;
chessdsbr 2:32e1e71f5885 2083 }
chessdsbr 2:32e1e71f5885 2084 else{
chessdsbr 2:32e1e71f5885 2085 figura_dib[1]=0x76;
chessdsbr 2:32e1e71f5885 2086 }
chessdsbr 2:32e1e71f5885 2087 }
chessdsbr 2:32e1e71f5885 2088 else if(l16==1){
chessdsbr 2:32e1e71f5885 2089 figura_dib[1]=0x75;
chessdsbr 2:32e1e71f5885 2090 }
chessdsbr 2:32e1e71f5885 2091 else{
chessdsbr 2:32e1e71f5885 2092 figura_dib[1]=0x74;
chessdsbr 2:32e1e71f5885 2093 }
chessdsbr 2:32e1e71f5885 2094 }
chessdsbr 2:32e1e71f5885 2095 else if(l15==1){
chessdsbr 2:32e1e71f5885 2096 if(l16==1){
chessdsbr 2:32e1e71f5885 2097 figura_dib[1]=0x73;
chessdsbr 2:32e1e71f5885 2098 }
chessdsbr 2:32e1e71f5885 2099 else{
chessdsbr 2:32e1e71f5885 2100 figura_dib[1]=0x72;
chessdsbr 2:32e1e71f5885 2101 }
chessdsbr 2:32e1e71f5885 2102 }
chessdsbr 2:32e1e71f5885 2103 else if(l16==1){
chessdsbr 2:32e1e71f5885 2104 figura_dib[1]=0x71;
chessdsbr 2:32e1e71f5885 2105 }
chessdsbr 2:32e1e71f5885 2106 else{
chessdsbr 2:32e1e71f5885 2107 figura_dib[1]=0x70;
chessdsbr 2:32e1e71f5885 2108 }
chessdsbr 2:32e1e71f5885 2109 }
chessdsbr 2:32e1e71f5885 2110 else if(l13==1){
chessdsbr 2:32e1e71f5885 2111 if(l14==1){
chessdsbr 2:32e1e71f5885 2112 if(l15==1){
chessdsbr 2:32e1e71f5885 2113 if(l16==1){
chessdsbr 2:32e1e71f5885 2114 figura_dib[1]=0x6F;
chessdsbr 2:32e1e71f5885 2115 }
chessdsbr 2:32e1e71f5885 2116 else{
chessdsbr 2:32e1e71f5885 2117 figura_dib[1]=0x6E;
chessdsbr 2:32e1e71f5885 2118 }
chessdsbr 2:32e1e71f5885 2119 }
chessdsbr 2:32e1e71f5885 2120 else if(l16==1){
chessdsbr 2:32e1e71f5885 2121 figura_dib[1]=0x6D;
chessdsbr 2:32e1e71f5885 2122 }
chessdsbr 2:32e1e71f5885 2123 else{
chessdsbr 2:32e1e71f5885 2124 figura_dib[1]=0x6C;
chessdsbr 2:32e1e71f5885 2125 }
chessdsbr 2:32e1e71f5885 2126 }
chessdsbr 2:32e1e71f5885 2127 else if(l15==1){
chessdsbr 2:32e1e71f5885 2128 if(l16==1){
chessdsbr 2:32e1e71f5885 2129 figura_dib[1]=0x6B;
chessdsbr 2:32e1e71f5885 2130 }
chessdsbr 2:32e1e71f5885 2131 else{
chessdsbr 2:32e1e71f5885 2132 figura_dib[1]=0x6A;
chessdsbr 2:32e1e71f5885 2133 }
chessdsbr 2:32e1e71f5885 2134 }
chessdsbr 2:32e1e71f5885 2135 else if(l16==1){
chessdsbr 2:32e1e71f5885 2136 figura_dib[1]=0x69;
chessdsbr 2:32e1e71f5885 2137 }
chessdsbr 2:32e1e71f5885 2138 else{
chessdsbr 2:32e1e71f5885 2139 figura_dib[1]=0x68;
chessdsbr 2:32e1e71f5885 2140 }
chessdsbr 2:32e1e71f5885 2141 }
chessdsbr 2:32e1e71f5885 2142 else if(l14==1){
chessdsbr 2:32e1e71f5885 2143 if(l15==1){
chessdsbr 2:32e1e71f5885 2144 if(l16==1){
chessdsbr 2:32e1e71f5885 2145 figura_dib[1]=0x67;
chessdsbr 2:32e1e71f5885 2146 }
chessdsbr 2:32e1e71f5885 2147 else{
chessdsbr 2:32e1e71f5885 2148 figura_dib[1]=0x66;
chessdsbr 2:32e1e71f5885 2149 }
chessdsbr 2:32e1e71f5885 2150 }
chessdsbr 2:32e1e71f5885 2151 else if(l16==1){
chessdsbr 2:32e1e71f5885 2152 figura_dib[1]=0x65;
chessdsbr 2:32e1e71f5885 2153 }
chessdsbr 2:32e1e71f5885 2154 else{
chessdsbr 2:32e1e71f5885 2155 figura_dib[1]=0x64;
chessdsbr 2:32e1e71f5885 2156 }
chessdsbr 2:32e1e71f5885 2157 }
chessdsbr 2:32e1e71f5885 2158 else if(l15==1){
chessdsbr 2:32e1e71f5885 2159 if(l16==1){
chessdsbr 2:32e1e71f5885 2160 figura_dib[1]=0x63;
chessdsbr 2:32e1e71f5885 2161 }
chessdsbr 2:32e1e71f5885 2162 else{
chessdsbr 2:32e1e71f5885 2163 figura_dib[1]=0x62;
chessdsbr 2:32e1e71f5885 2164 }
chessdsbr 2:32e1e71f5885 2165 }
chessdsbr 2:32e1e71f5885 2166 else if(l16==1){
chessdsbr 2:32e1e71f5885 2167 figura_dib[1]=0x61;
chessdsbr 2:32e1e71f5885 2168 }
chessdsbr 2:32e1e71f5885 2169 else{
chessdsbr 2:32e1e71f5885 2170 figura_dib[1]=0x60;
chessdsbr 2:32e1e71f5885 2171 }
chessdsbr 2:32e1e71f5885 2172 }
chessdsbr 2:32e1e71f5885 2173 else if(l12==1){
chessdsbr 2:32e1e71f5885 2174 if(l13==1){
chessdsbr 2:32e1e71f5885 2175 if(l14==1){
chessdsbr 2:32e1e71f5885 2176 if(l15==1){
chessdsbr 2:32e1e71f5885 2177 if(l16==1){
chessdsbr 2:32e1e71f5885 2178 figura_dib[1]=0x5F;
chessdsbr 2:32e1e71f5885 2179 }
chessdsbr 2:32e1e71f5885 2180 else{
chessdsbr 2:32e1e71f5885 2181 figura_dib[1]=0x5E;
chessdsbr 2:32e1e71f5885 2182 }
chessdsbr 2:32e1e71f5885 2183 }
chessdsbr 2:32e1e71f5885 2184 else if(l16==1){
chessdsbr 2:32e1e71f5885 2185 figura_dib[1]=0x5D;
chessdsbr 2:32e1e71f5885 2186 }
chessdsbr 2:32e1e71f5885 2187 else{
chessdsbr 2:32e1e71f5885 2188 figura_dib[1]=0x5C;
chessdsbr 2:32e1e71f5885 2189 }
chessdsbr 2:32e1e71f5885 2190 }
chessdsbr 2:32e1e71f5885 2191 else if(l15==1){
chessdsbr 2:32e1e71f5885 2192 if(l16==1){
chessdsbr 2:32e1e71f5885 2193 figura_dib[1]=0x5B;
chessdsbr 2:32e1e71f5885 2194 }
chessdsbr 2:32e1e71f5885 2195 else{
chessdsbr 2:32e1e71f5885 2196 figura_dib[1]=0x5A;
chessdsbr 2:32e1e71f5885 2197 }
chessdsbr 2:32e1e71f5885 2198 }
chessdsbr 2:32e1e71f5885 2199 else if(l16==1){
chessdsbr 2:32e1e71f5885 2200 figura_dib[1]=0x59;
chessdsbr 2:32e1e71f5885 2201 }
chessdsbr 2:32e1e71f5885 2202 else{
chessdsbr 2:32e1e71f5885 2203 figura_dib[1]=0x58;
chessdsbr 2:32e1e71f5885 2204 }
chessdsbr 2:32e1e71f5885 2205 }
chessdsbr 2:32e1e71f5885 2206 else if(l14==1){
chessdsbr 2:32e1e71f5885 2207 if(l15==1){
chessdsbr 2:32e1e71f5885 2208 if(l16==1){
chessdsbr 2:32e1e71f5885 2209 figura_dib[1]=0x57;
chessdsbr 2:32e1e71f5885 2210 }
chessdsbr 2:32e1e71f5885 2211 else{
chessdsbr 2:32e1e71f5885 2212 figura_dib[1]=0x56;
chessdsbr 2:32e1e71f5885 2213 }
chessdsbr 2:32e1e71f5885 2214 }
chessdsbr 2:32e1e71f5885 2215 else if(l16==1){
chessdsbr 2:32e1e71f5885 2216 figura_dib[1]=0x55;
chessdsbr 2:32e1e71f5885 2217 }
chessdsbr 2:32e1e71f5885 2218 else{
chessdsbr 2:32e1e71f5885 2219 figura_dib[1]=0x54;
chessdsbr 2:32e1e71f5885 2220 }
chessdsbr 2:32e1e71f5885 2221 }
chessdsbr 2:32e1e71f5885 2222 else if(l15==1){
chessdsbr 2:32e1e71f5885 2223 if(l16==1){
chessdsbr 2:32e1e71f5885 2224 figura_dib[1]=0x53;
chessdsbr 2:32e1e71f5885 2225 }
chessdsbr 2:32e1e71f5885 2226 else{
chessdsbr 2:32e1e71f5885 2227 figura_dib[1]=0x52;
chessdsbr 2:32e1e71f5885 2228 }
chessdsbr 2:32e1e71f5885 2229 }
chessdsbr 2:32e1e71f5885 2230 else if(l16==1){
chessdsbr 2:32e1e71f5885 2231 figura_dib[1]=0x51;
chessdsbr 2:32e1e71f5885 2232 }
chessdsbr 2:32e1e71f5885 2233 else{
chessdsbr 2:32e1e71f5885 2234 figura_dib[1]=0x50;
chessdsbr 2:32e1e71f5885 2235 }
chessdsbr 2:32e1e71f5885 2236 }
chessdsbr 2:32e1e71f5885 2237 else if(l13==1){
chessdsbr 2:32e1e71f5885 2238 if(l14==1){
chessdsbr 2:32e1e71f5885 2239 if(l15==1){
chessdsbr 2:32e1e71f5885 2240 if(l16==1){
chessdsbr 2:32e1e71f5885 2241 figura_dib[1]=0x4F;
chessdsbr 2:32e1e71f5885 2242 }
chessdsbr 2:32e1e71f5885 2243 else{
chessdsbr 2:32e1e71f5885 2244 figura_dib[1]=0x4E;
chessdsbr 2:32e1e71f5885 2245 }
chessdsbr 2:32e1e71f5885 2246 }
chessdsbr 2:32e1e71f5885 2247 else if(l16==1){
chessdsbr 2:32e1e71f5885 2248 figura_dib[1]=0x4D;
chessdsbr 2:32e1e71f5885 2249 }
chessdsbr 2:32e1e71f5885 2250 else{
chessdsbr 2:32e1e71f5885 2251 figura_dib[1]=0x4C;
chessdsbr 2:32e1e71f5885 2252 }
chessdsbr 2:32e1e71f5885 2253 }
chessdsbr 2:32e1e71f5885 2254 else if(l15==1){
chessdsbr 2:32e1e71f5885 2255 if(l16==1){
chessdsbr 2:32e1e71f5885 2256 figura_dib[1]=0x4B;
chessdsbr 2:32e1e71f5885 2257 }
chessdsbr 2:32e1e71f5885 2258 else{
chessdsbr 2:32e1e71f5885 2259 figura_dib[1]=0x4A;
chessdsbr 2:32e1e71f5885 2260 }
chessdsbr 2:32e1e71f5885 2261 }
chessdsbr 2:32e1e71f5885 2262 else if(l16==1){
chessdsbr 2:32e1e71f5885 2263 figura_dib[1]=0x49;
chessdsbr 2:32e1e71f5885 2264 }
chessdsbr 2:32e1e71f5885 2265 else{
chessdsbr 2:32e1e71f5885 2266 figura_dib[1]=0x48;
chessdsbr 2:32e1e71f5885 2267 }
chessdsbr 2:32e1e71f5885 2268 }
chessdsbr 2:32e1e71f5885 2269 else if(l14==1){
chessdsbr 2:32e1e71f5885 2270 if(l15==1){
chessdsbr 2:32e1e71f5885 2271 if(l16==1){
chessdsbr 2:32e1e71f5885 2272 figura_dib[1]=0x47;
chessdsbr 2:32e1e71f5885 2273 }
chessdsbr 2:32e1e71f5885 2274 else{
chessdsbr 2:32e1e71f5885 2275 figura_dib[1]=0x46;
chessdsbr 2:32e1e71f5885 2276 }
chessdsbr 2:32e1e71f5885 2277 }
chessdsbr 2:32e1e71f5885 2278 else if(l16==1){
chessdsbr 2:32e1e71f5885 2279 figura_dib[1]=0x45;
chessdsbr 2:32e1e71f5885 2280 }
chessdsbr 2:32e1e71f5885 2281 else{
chessdsbr 2:32e1e71f5885 2282 figura_dib[1]=0x44;
chessdsbr 2:32e1e71f5885 2283 }
chessdsbr 2:32e1e71f5885 2284 }
chessdsbr 2:32e1e71f5885 2285 else if(l15==1){
chessdsbr 2:32e1e71f5885 2286 if(l16==1){
chessdsbr 2:32e1e71f5885 2287 figura_dib[1]=0x43;
chessdsbr 2:32e1e71f5885 2288 }
chessdsbr 2:32e1e71f5885 2289 else{
chessdsbr 2:32e1e71f5885 2290 figura_dib[1]=0x42;
chessdsbr 2:32e1e71f5885 2291 }
chessdsbr 2:32e1e71f5885 2292 }
chessdsbr 2:32e1e71f5885 2293 else if(l16==1){
chessdsbr 2:32e1e71f5885 2294 figura_dib[1]=0x41;
chessdsbr 2:32e1e71f5885 2295 }
chessdsbr 2:32e1e71f5885 2296 else{
chessdsbr 2:32e1e71f5885 2297 figura_dib[1]=0x40;
chessdsbr 2:32e1e71f5885 2298 }
chessdsbr 2:32e1e71f5885 2299 }
chessdsbr 2:32e1e71f5885 2300 else if(l11==1){
chessdsbr 2:32e1e71f5885 2301 if(l12==1){
chessdsbr 2:32e1e71f5885 2302 if(l13==1){
chessdsbr 2:32e1e71f5885 2303 if(l14==1){
chessdsbr 2:32e1e71f5885 2304 if(l15==1){
chessdsbr 2:32e1e71f5885 2305 if(l16==1){
chessdsbr 2:32e1e71f5885 2306 figura_dib[1]=0x3F;
chessdsbr 2:32e1e71f5885 2307 }
chessdsbr 2:32e1e71f5885 2308 else{
chessdsbr 2:32e1e71f5885 2309 figura_dib[1]=0x3E;
chessdsbr 2:32e1e71f5885 2310 }
chessdsbr 2:32e1e71f5885 2311 }
chessdsbr 2:32e1e71f5885 2312 else if(l16==1){
chessdsbr 2:32e1e71f5885 2313 figura_dib[1]=0x3D;
chessdsbr 2:32e1e71f5885 2314 }
chessdsbr 2:32e1e71f5885 2315 else{
chessdsbr 2:32e1e71f5885 2316 figura_dib[1]=0x3C;
chessdsbr 2:32e1e71f5885 2317 }
chessdsbr 2:32e1e71f5885 2318 }
chessdsbr 2:32e1e71f5885 2319 else if(l15==1){
chessdsbr 2:32e1e71f5885 2320 if(l16==1){
chessdsbr 2:32e1e71f5885 2321 figura_dib[1]=0x3B;
chessdsbr 2:32e1e71f5885 2322 }
chessdsbr 2:32e1e71f5885 2323 else{
chessdsbr 2:32e1e71f5885 2324 figura_dib[1]=0x3A;
chessdsbr 2:32e1e71f5885 2325 }
chessdsbr 2:32e1e71f5885 2326 }
chessdsbr 2:32e1e71f5885 2327 else if(l16==1){
chessdsbr 2:32e1e71f5885 2328 figura_dib[1]=0x39;
chessdsbr 2:32e1e71f5885 2329 }
chessdsbr 2:32e1e71f5885 2330 else{
chessdsbr 2:32e1e71f5885 2331 figura_dib[1]=0x38;
chessdsbr 2:32e1e71f5885 2332 }
chessdsbr 2:32e1e71f5885 2333 }
chessdsbr 2:32e1e71f5885 2334 else if(l14==1){
chessdsbr 2:32e1e71f5885 2335 if(l15==1){
chessdsbr 2:32e1e71f5885 2336 if(l16==1){
chessdsbr 2:32e1e71f5885 2337 figura_dib[1]=0x37;
chessdsbr 2:32e1e71f5885 2338 }
chessdsbr 2:32e1e71f5885 2339 else{
chessdsbr 2:32e1e71f5885 2340 figura_dib[1]=0x36;
chessdsbr 2:32e1e71f5885 2341 }
chessdsbr 2:32e1e71f5885 2342 }
chessdsbr 2:32e1e71f5885 2343 else if(l16==1){
chessdsbr 2:32e1e71f5885 2344 figura_dib[1]=0x35;
chessdsbr 2:32e1e71f5885 2345 }
chessdsbr 2:32e1e71f5885 2346 else{
chessdsbr 2:32e1e71f5885 2347 figura_dib[1]=0x34;
chessdsbr 2:32e1e71f5885 2348 }
chessdsbr 2:32e1e71f5885 2349 }
chessdsbr 2:32e1e71f5885 2350 else if(l15==1){
chessdsbr 2:32e1e71f5885 2351 if(l16==1){
chessdsbr 2:32e1e71f5885 2352 figura_dib[1]=0x33;
chessdsbr 2:32e1e71f5885 2353 }
chessdsbr 2:32e1e71f5885 2354 else{
chessdsbr 2:32e1e71f5885 2355 figura_dib[1]=0x32;
chessdsbr 2:32e1e71f5885 2356 }
chessdsbr 2:32e1e71f5885 2357 }
chessdsbr 2:32e1e71f5885 2358 else if(l16==1){
chessdsbr 2:32e1e71f5885 2359 figura_dib[1]=0x31;
chessdsbr 2:32e1e71f5885 2360 }
chessdsbr 2:32e1e71f5885 2361 else{
chessdsbr 2:32e1e71f5885 2362 figura_dib[1]=0x30;
chessdsbr 2:32e1e71f5885 2363 }
chessdsbr 2:32e1e71f5885 2364 }
chessdsbr 2:32e1e71f5885 2365 else if(l13==1){
chessdsbr 2:32e1e71f5885 2366 if(l14==1){
chessdsbr 2:32e1e71f5885 2367 if(l15==1){
chessdsbr 2:32e1e71f5885 2368 if(l16==1){
chessdsbr 2:32e1e71f5885 2369 figura_dib[1]=0x2F;
chessdsbr 2:32e1e71f5885 2370 }
chessdsbr 2:32e1e71f5885 2371 else{
chessdsbr 2:32e1e71f5885 2372 figura_dib[1]=0x2E;
chessdsbr 2:32e1e71f5885 2373 }
chessdsbr 2:32e1e71f5885 2374 }
chessdsbr 2:32e1e71f5885 2375 else if(l16==1){
chessdsbr 2:32e1e71f5885 2376 figura_dib[1]=0x2D;
chessdsbr 2:32e1e71f5885 2377 }
chessdsbr 2:32e1e71f5885 2378 else{
chessdsbr 2:32e1e71f5885 2379 figura_dib[1]=0x2C;
chessdsbr 2:32e1e71f5885 2380 }
chessdsbr 2:32e1e71f5885 2381 }
chessdsbr 2:32e1e71f5885 2382 else if(l15==1){
chessdsbr 2:32e1e71f5885 2383 if(l16==1){
chessdsbr 2:32e1e71f5885 2384 figura_dib[1]=0x2B;
chessdsbr 2:32e1e71f5885 2385 }
chessdsbr 2:32e1e71f5885 2386 else{
chessdsbr 2:32e1e71f5885 2387 figura_dib[1]=0x2A;
chessdsbr 2:32e1e71f5885 2388 }
chessdsbr 2:32e1e71f5885 2389 }
chessdsbr 2:32e1e71f5885 2390 else if(l16==1){
chessdsbr 2:32e1e71f5885 2391 figura_dib[1]=0x29;
chessdsbr 2:32e1e71f5885 2392 }
chessdsbr 2:32e1e71f5885 2393 else{
chessdsbr 2:32e1e71f5885 2394 figura_dib[1]=0x28;
chessdsbr 2:32e1e71f5885 2395 }
chessdsbr 2:32e1e71f5885 2396 }
chessdsbr 2:32e1e71f5885 2397 else if(l14==1){
chessdsbr 2:32e1e71f5885 2398 if(l15==1){
chessdsbr 2:32e1e71f5885 2399 if(l16==1){
chessdsbr 2:32e1e71f5885 2400 figura_dib[1]=0x27;
chessdsbr 2:32e1e71f5885 2401 }
chessdsbr 2:32e1e71f5885 2402 else{
chessdsbr 2:32e1e71f5885 2403 figura_dib[1]=0x26;
chessdsbr 2:32e1e71f5885 2404 }
chessdsbr 2:32e1e71f5885 2405 }
chessdsbr 2:32e1e71f5885 2406 else if(l16==1){
chessdsbr 2:32e1e71f5885 2407 figura_dib[1]=0x25;
chessdsbr 2:32e1e71f5885 2408 }
chessdsbr 2:32e1e71f5885 2409 else{
chessdsbr 2:32e1e71f5885 2410 figura_dib[1]=0x24;
chessdsbr 2:32e1e71f5885 2411 }
chessdsbr 2:32e1e71f5885 2412 }
chessdsbr 2:32e1e71f5885 2413 else if(l15==1){
chessdsbr 2:32e1e71f5885 2414 if(l16==1){
chessdsbr 2:32e1e71f5885 2415 figura_dib[1]=0x23;
chessdsbr 2:32e1e71f5885 2416 }
chessdsbr 2:32e1e71f5885 2417 else{
chessdsbr 2:32e1e71f5885 2418 figura_dib[1]=0x22;
chessdsbr 2:32e1e71f5885 2419 }
chessdsbr 2:32e1e71f5885 2420 }
chessdsbr 2:32e1e71f5885 2421 else if(l16==1){
chessdsbr 2:32e1e71f5885 2422 figura_dib[1]=0x21;
chessdsbr 2:32e1e71f5885 2423 }
chessdsbr 2:32e1e71f5885 2424 else{
chessdsbr 2:32e1e71f5885 2425 figura_dib[1]=0x20;
chessdsbr 2:32e1e71f5885 2426 }
chessdsbr 2:32e1e71f5885 2427 }
chessdsbr 2:32e1e71f5885 2428 else if(l12==1){
chessdsbr 2:32e1e71f5885 2429 if(l13==1){
chessdsbr 2:32e1e71f5885 2430 if(l14==1){
chessdsbr 2:32e1e71f5885 2431 if(l15==1){
chessdsbr 2:32e1e71f5885 2432 if(l16==1){
chessdsbr 2:32e1e71f5885 2433 figura_dib[1]=0x1F;
chessdsbr 2:32e1e71f5885 2434 }
chessdsbr 2:32e1e71f5885 2435 else{
chessdsbr 2:32e1e71f5885 2436 figura_dib[1]=0x1E;
chessdsbr 2:32e1e71f5885 2437 }
chessdsbr 2:32e1e71f5885 2438 }
chessdsbr 2:32e1e71f5885 2439 else if(l16==1){
chessdsbr 2:32e1e71f5885 2440 figura_dib[1]=0x1D;
chessdsbr 2:32e1e71f5885 2441 }
chessdsbr 2:32e1e71f5885 2442 else{
chessdsbr 2:32e1e71f5885 2443 figura_dib[1]=0x1C;
chessdsbr 2:32e1e71f5885 2444 }
chessdsbr 2:32e1e71f5885 2445 }
chessdsbr 2:32e1e71f5885 2446 else if(l15==1){
chessdsbr 2:32e1e71f5885 2447 if(l16==1){
chessdsbr 2:32e1e71f5885 2448 figura_dib[1]=0x1B;
chessdsbr 2:32e1e71f5885 2449 }
chessdsbr 2:32e1e71f5885 2450 else{
chessdsbr 2:32e1e71f5885 2451 figura_dib[1]=0x1A;
chessdsbr 2:32e1e71f5885 2452 }
chessdsbr 2:32e1e71f5885 2453 }
chessdsbr 2:32e1e71f5885 2454 else if(l16==1){
chessdsbr 2:32e1e71f5885 2455 figura_dib[1]=0x19;
chessdsbr 2:32e1e71f5885 2456 }
chessdsbr 2:32e1e71f5885 2457 else{
chessdsbr 2:32e1e71f5885 2458 figura_dib[1]=0x18;
chessdsbr 2:32e1e71f5885 2459 }
chessdsbr 2:32e1e71f5885 2460 }
chessdsbr 2:32e1e71f5885 2461 else if(l14==1){
chessdsbr 2:32e1e71f5885 2462 if(l15==1){
chessdsbr 2:32e1e71f5885 2463 if(l16==1){
chessdsbr 2:32e1e71f5885 2464 figura_dib[1]=0x17;
chessdsbr 2:32e1e71f5885 2465 }
chessdsbr 2:32e1e71f5885 2466 else{
chessdsbr 2:32e1e71f5885 2467 figura_dib[1]=0x16;
chessdsbr 2:32e1e71f5885 2468 }
chessdsbr 2:32e1e71f5885 2469 }
chessdsbr 2:32e1e71f5885 2470 else if(l16==1){
chessdsbr 2:32e1e71f5885 2471 figura_dib[1]=0x15;
chessdsbr 2:32e1e71f5885 2472 }
chessdsbr 2:32e1e71f5885 2473 else{
chessdsbr 2:32e1e71f5885 2474 figura_dib[1]=0x14;
chessdsbr 2:32e1e71f5885 2475 }
chessdsbr 2:32e1e71f5885 2476 }
chessdsbr 2:32e1e71f5885 2477 else if(l15==1){
chessdsbr 2:32e1e71f5885 2478 if(l16==1){
chessdsbr 2:32e1e71f5885 2479 figura_dib[1]=0x13;
chessdsbr 2:32e1e71f5885 2480 }
chessdsbr 2:32e1e71f5885 2481 else{
chessdsbr 2:32e1e71f5885 2482 figura_dib[1]=0x12;
chessdsbr 2:32e1e71f5885 2483 }
chessdsbr 2:32e1e71f5885 2484 }
chessdsbr 2:32e1e71f5885 2485 else if(l16==1){
chessdsbr 2:32e1e71f5885 2486 figura_dib[1]=0x11;
chessdsbr 2:32e1e71f5885 2487 }
chessdsbr 2:32e1e71f5885 2488 else{
chessdsbr 2:32e1e71f5885 2489 figura_dib[1]=0x10;
chessdsbr 2:32e1e71f5885 2490 }
chessdsbr 2:32e1e71f5885 2491 }
chessdsbr 2:32e1e71f5885 2492 else if(l13==1){
chessdsbr 2:32e1e71f5885 2493 if(l14==1){
chessdsbr 2:32e1e71f5885 2494 if(l15==1){
chessdsbr 2:32e1e71f5885 2495 if(l16==1){
chessdsbr 2:32e1e71f5885 2496 figura_dib[1]=0x0F;
chessdsbr 2:32e1e71f5885 2497 }
chessdsbr 2:32e1e71f5885 2498 else{
chessdsbr 2:32e1e71f5885 2499 figura_dib[1]=0x0E;
chessdsbr 2:32e1e71f5885 2500 }
chessdsbr 2:32e1e71f5885 2501 }
chessdsbr 2:32e1e71f5885 2502 else if(l16==1){
chessdsbr 2:32e1e71f5885 2503 figura_dib[1]=0x0D;
chessdsbr 2:32e1e71f5885 2504 }
chessdsbr 2:32e1e71f5885 2505 else{
chessdsbr 2:32e1e71f5885 2506 figura_dib[1]=0x0C;
chessdsbr 2:32e1e71f5885 2507 }
chessdsbr 2:32e1e71f5885 2508 }
chessdsbr 2:32e1e71f5885 2509 else if(l15==1){
chessdsbr 2:32e1e71f5885 2510 if(l16==1){
chessdsbr 2:32e1e71f5885 2511 figura_dib[1]=0x0B;
chessdsbr 2:32e1e71f5885 2512 }
chessdsbr 2:32e1e71f5885 2513 else{
chessdsbr 2:32e1e71f5885 2514 figura_dib[1]=0x0A;
chessdsbr 2:32e1e71f5885 2515 }
chessdsbr 2:32e1e71f5885 2516 }
chessdsbr 2:32e1e71f5885 2517 else if(l16==1){
chessdsbr 2:32e1e71f5885 2518 figura_dib[1]=0x09;
chessdsbr 2:32e1e71f5885 2519 }
chessdsbr 2:32e1e71f5885 2520 else{
chessdsbr 2:32e1e71f5885 2521 figura_dib[1]=0x08;
chessdsbr 2:32e1e71f5885 2522 }
chessdsbr 2:32e1e71f5885 2523 }
chessdsbr 2:32e1e71f5885 2524 else if(l14==1){
chessdsbr 2:32e1e71f5885 2525 if(l15==1){
chessdsbr 2:32e1e71f5885 2526 if(l16==1){
chessdsbr 2:32e1e71f5885 2527 figura_dib[1]=0x07;
chessdsbr 2:32e1e71f5885 2528 }
chessdsbr 2:32e1e71f5885 2529 else{
chessdsbr 2:32e1e71f5885 2530 figura_dib[1]=0x06;
chessdsbr 2:32e1e71f5885 2531 }
chessdsbr 2:32e1e71f5885 2532 }
chessdsbr 2:32e1e71f5885 2533 else if(l16==1){
chessdsbr 2:32e1e71f5885 2534 figura_dib[1]=0x05;
chessdsbr 2:32e1e71f5885 2535 }
chessdsbr 2:32e1e71f5885 2536 else{
chessdsbr 2:32e1e71f5885 2537 figura_dib[1]=0x04;
chessdsbr 2:32e1e71f5885 2538 }
chessdsbr 2:32e1e71f5885 2539 }
chessdsbr 2:32e1e71f5885 2540 else if(l15==1){
chessdsbr 2:32e1e71f5885 2541 if(l16==1){
chessdsbr 2:32e1e71f5885 2542 figura_dib[1]=0x03;
chessdsbr 2:32e1e71f5885 2543 }
chessdsbr 2:32e1e71f5885 2544 else{
chessdsbr 2:32e1e71f5885 2545 figura_dib[1]=0x02;
chessdsbr 2:32e1e71f5885 2546 }
chessdsbr 2:32e1e71f5885 2547 }
chessdsbr 2:32e1e71f5885 2548 else if(l16==1){
chessdsbr 2:32e1e71f5885 2549 figura_dib[1]=0x01;
chessdsbr 2:32e1e71f5885 2550 }
chessdsbr 2:32e1e71f5885 2551 else{
chessdsbr 2:32e1e71f5885 2552 figura_dib[1]=0x00;
chessdsbr 2:32e1e71f5885 2553 }
chessdsbr 2:32e1e71f5885 2554 /////
chessdsbr 2:32e1e71f5885 2555 ////
chessdsbr 2:32e1e71f5885 2556 ///
chessdsbr 2:32e1e71f5885 2557 //
chessdsbr 2:32e1e71f5885 2558 //fila 3
chessdsbr 2:32e1e71f5885 2559 //
chessdsbr 2:32e1e71f5885 2560 ///
chessdsbr 2:32e1e71f5885 2561 ////
chessdsbr 2:32e1e71f5885 2562 /////
chessdsbr 2:32e1e71f5885 2563 if(l17==1){
chessdsbr 2:32e1e71f5885 2564 if(l18==1){
chessdsbr 2:32e1e71f5885 2565 if(l19==1){
chessdsbr 2:32e1e71f5885 2566 if(l20==1){
chessdsbr 2:32e1e71f5885 2567 if(l21==1){
chessdsbr 2:32e1e71f5885 2568 if(l22==1){
chessdsbr 2:32e1e71f5885 2569 if(l23==1){
chessdsbr 2:32e1e71f5885 2570 if(l24==1){
chessdsbr 2:32e1e71f5885 2571 figura_dib[2]=0xFF;
chessdsbr 2:32e1e71f5885 2572 }
chessdsbr 2:32e1e71f5885 2573 else{
chessdsbr 2:32e1e71f5885 2574 figura_dib[2]=0xFE;
chessdsbr 2:32e1e71f5885 2575 }
chessdsbr 2:32e1e71f5885 2576 }
chessdsbr 2:32e1e71f5885 2577 else if(l24==1){
chessdsbr 2:32e1e71f5885 2578 figura_dib[2]=0xFD;
chessdsbr 2:32e1e71f5885 2579 }
chessdsbr 2:32e1e71f5885 2580 else{
chessdsbr 2:32e1e71f5885 2581 figura_dib[2]=0xFC;
chessdsbr 2:32e1e71f5885 2582 }
chessdsbr 2:32e1e71f5885 2583 }
chessdsbr 2:32e1e71f5885 2584 else if(l23==1){
chessdsbr 2:32e1e71f5885 2585 if(l24==1){
chessdsbr 2:32e1e71f5885 2586 figura_dib[2]=0xFB;
chessdsbr 2:32e1e71f5885 2587 }
chessdsbr 2:32e1e71f5885 2588 else{
chessdsbr 2:32e1e71f5885 2589 figura_dib[2]=0xFA;
chessdsbr 2:32e1e71f5885 2590 }
chessdsbr 2:32e1e71f5885 2591 }
chessdsbr 2:32e1e71f5885 2592 else if(l24==1){
chessdsbr 2:32e1e71f5885 2593 figura_dib[2]=0xF9;
chessdsbr 2:32e1e71f5885 2594 }
chessdsbr 2:32e1e71f5885 2595 else{
chessdsbr 2:32e1e71f5885 2596 figura_dib[2]=0xF8;
chessdsbr 2:32e1e71f5885 2597 }
chessdsbr 2:32e1e71f5885 2598 }
chessdsbr 2:32e1e71f5885 2599 else if(l22==1){
chessdsbr 2:32e1e71f5885 2600 if(l23==1){
chessdsbr 2:32e1e71f5885 2601 if(l24==1){
chessdsbr 2:32e1e71f5885 2602 figura_dib[2]=0xF7;
chessdsbr 2:32e1e71f5885 2603 }
chessdsbr 2:32e1e71f5885 2604 else{
chessdsbr 2:32e1e71f5885 2605 figura_dib[2]=0xF6;
chessdsbr 2:32e1e71f5885 2606 }
chessdsbr 2:32e1e71f5885 2607 }
chessdsbr 2:32e1e71f5885 2608 else if(l24==1){
chessdsbr 2:32e1e71f5885 2609 figura_dib[2]=0xF5;
chessdsbr 2:32e1e71f5885 2610 }
chessdsbr 2:32e1e71f5885 2611 else{
chessdsbr 2:32e1e71f5885 2612 figura_dib[2]=0xF4;
chessdsbr 2:32e1e71f5885 2613 }
chessdsbr 2:32e1e71f5885 2614 }
chessdsbr 2:32e1e71f5885 2615 else if(l23==1){
chessdsbr 2:32e1e71f5885 2616 if(l24==1){
chessdsbr 2:32e1e71f5885 2617 figura_dib[2]=0xF3;
chessdsbr 2:32e1e71f5885 2618 }
chessdsbr 2:32e1e71f5885 2619 else{
chessdsbr 2:32e1e71f5885 2620 figura_dib[2]=0xF2;
chessdsbr 2:32e1e71f5885 2621 }
chessdsbr 2:32e1e71f5885 2622 }
chessdsbr 2:32e1e71f5885 2623 else if(l24==1){
chessdsbr 2:32e1e71f5885 2624 figura_dib[2]=0xF1;
chessdsbr 2:32e1e71f5885 2625 }
chessdsbr 2:32e1e71f5885 2626 else{
chessdsbr 2:32e1e71f5885 2627 figura_dib[2]=0xF0;
chessdsbr 2:32e1e71f5885 2628 }
chessdsbr 2:32e1e71f5885 2629 }
chessdsbr 2:32e1e71f5885 2630 else if(l21==1){
chessdsbr 2:32e1e71f5885 2631 if(l22==1){
chessdsbr 2:32e1e71f5885 2632 if(l23==1){
chessdsbr 2:32e1e71f5885 2633 if(l24==1){
chessdsbr 2:32e1e71f5885 2634 figura_dib[2]=0xEF;
chessdsbr 2:32e1e71f5885 2635 }
chessdsbr 2:32e1e71f5885 2636 else{
chessdsbr 2:32e1e71f5885 2637 figura_dib[2]=0xEE;
chessdsbr 2:32e1e71f5885 2638 }
chessdsbr 2:32e1e71f5885 2639 }
chessdsbr 2:32e1e71f5885 2640 else if(l24==1){
chessdsbr 2:32e1e71f5885 2641 figura_dib[2]=0xED;
chessdsbr 2:32e1e71f5885 2642 }
chessdsbr 2:32e1e71f5885 2643 else{
chessdsbr 2:32e1e71f5885 2644 figura_dib[2]=0xEC;
chessdsbr 2:32e1e71f5885 2645 }
chessdsbr 2:32e1e71f5885 2646 }
chessdsbr 2:32e1e71f5885 2647 else if(l23==1){
chessdsbr 2:32e1e71f5885 2648 if(l24==1){
chessdsbr 2:32e1e71f5885 2649 figura_dib[2]=0xEB;
chessdsbr 2:32e1e71f5885 2650 }
chessdsbr 2:32e1e71f5885 2651 else{
chessdsbr 2:32e1e71f5885 2652 figura_dib[2]=0xEA;
chessdsbr 2:32e1e71f5885 2653 }
chessdsbr 2:32e1e71f5885 2654 }
chessdsbr 2:32e1e71f5885 2655 else if(l24==1){
chessdsbr 2:32e1e71f5885 2656 figura_dib[2]=0xE9;
chessdsbr 2:32e1e71f5885 2657 }
chessdsbr 2:32e1e71f5885 2658 else{
chessdsbr 2:32e1e71f5885 2659 figura_dib[2]=0xE8;
chessdsbr 2:32e1e71f5885 2660 }
chessdsbr 2:32e1e71f5885 2661 }
chessdsbr 2:32e1e71f5885 2662 else if(l22==1){
chessdsbr 2:32e1e71f5885 2663 if(l23==1){
chessdsbr 2:32e1e71f5885 2664 if(l24==1){
chessdsbr 2:32e1e71f5885 2665 figura_dib[2]=0xE7;
chessdsbr 2:32e1e71f5885 2666 }
chessdsbr 2:32e1e71f5885 2667 else{
chessdsbr 2:32e1e71f5885 2668 figura_dib[2]=0xE6;
chessdsbr 2:32e1e71f5885 2669 }
chessdsbr 2:32e1e71f5885 2670 }
chessdsbr 2:32e1e71f5885 2671 else if(l24==1){
chessdsbr 2:32e1e71f5885 2672 figura_dib[2]=0xE5;
chessdsbr 2:32e1e71f5885 2673 }
chessdsbr 2:32e1e71f5885 2674 else{
chessdsbr 2:32e1e71f5885 2675 figura_dib[2]=0xE4;
chessdsbr 2:32e1e71f5885 2676 }
chessdsbr 2:32e1e71f5885 2677 }
chessdsbr 2:32e1e71f5885 2678 else if(l23==1){
chessdsbr 2:32e1e71f5885 2679 if(l24==1){
chessdsbr 2:32e1e71f5885 2680 figura_dib[2]=0xE3;
chessdsbr 2:32e1e71f5885 2681 }
chessdsbr 2:32e1e71f5885 2682 else{
chessdsbr 2:32e1e71f5885 2683 figura_dib[2]=0xE2;
chessdsbr 2:32e1e71f5885 2684 }
chessdsbr 2:32e1e71f5885 2685 }
chessdsbr 2:32e1e71f5885 2686 else if(l24==1){
chessdsbr 2:32e1e71f5885 2687 figura_dib[2]=0xE1;
chessdsbr 2:32e1e71f5885 2688 }
chessdsbr 2:32e1e71f5885 2689 else{
chessdsbr 2:32e1e71f5885 2690 figura_dib[2]=0xE0;
chessdsbr 2:32e1e71f5885 2691 }
chessdsbr 2:32e1e71f5885 2692 }
chessdsbr 2:32e1e71f5885 2693 else if(l20==1){
chessdsbr 2:32e1e71f5885 2694 if(l21==1){
chessdsbr 2:32e1e71f5885 2695 if(l22==1){
chessdsbr 2:32e1e71f5885 2696 if(l23==1){
chessdsbr 2:32e1e71f5885 2697 if(l24==1){
chessdsbr 2:32e1e71f5885 2698 figura_dib[2]=0xDF;
chessdsbr 2:32e1e71f5885 2699 }
chessdsbr 2:32e1e71f5885 2700 else{
chessdsbr 2:32e1e71f5885 2701 figura_dib[2]=0xDE;
chessdsbr 2:32e1e71f5885 2702 }
chessdsbr 2:32e1e71f5885 2703 }
chessdsbr 2:32e1e71f5885 2704 else if(l24==1){
chessdsbr 2:32e1e71f5885 2705 figura_dib[2]=0xDD;
chessdsbr 2:32e1e71f5885 2706 }
chessdsbr 2:32e1e71f5885 2707 else{
chessdsbr 2:32e1e71f5885 2708 figura_dib[2]=0xDC;
chessdsbr 2:32e1e71f5885 2709 }
chessdsbr 2:32e1e71f5885 2710 }
chessdsbr 2:32e1e71f5885 2711 else if(l23==1){
chessdsbr 2:32e1e71f5885 2712 if(l24==1){
chessdsbr 2:32e1e71f5885 2713 figura_dib[2]=0xDB;
chessdsbr 2:32e1e71f5885 2714 }
chessdsbr 2:32e1e71f5885 2715 else{
chessdsbr 2:32e1e71f5885 2716 figura_dib[2]=0xDA;
chessdsbr 2:32e1e71f5885 2717 }
chessdsbr 2:32e1e71f5885 2718 }
chessdsbr 2:32e1e71f5885 2719 else if(l24==1){
chessdsbr 2:32e1e71f5885 2720 figura_dib[2]=0xD9;
chessdsbr 2:32e1e71f5885 2721 }
chessdsbr 2:32e1e71f5885 2722 else{
chessdsbr 2:32e1e71f5885 2723 figura_dib[2]=0xD8;
chessdsbr 2:32e1e71f5885 2724 }
chessdsbr 2:32e1e71f5885 2725 }
chessdsbr 2:32e1e71f5885 2726 else if(l22==1){
chessdsbr 2:32e1e71f5885 2727 if(l23==1){
chessdsbr 2:32e1e71f5885 2728 if(l24==1){
chessdsbr 2:32e1e71f5885 2729 figura_dib[2]=0xD7;
chessdsbr 2:32e1e71f5885 2730 }
chessdsbr 2:32e1e71f5885 2731 else{
chessdsbr 2:32e1e71f5885 2732 figura_dib[2]=0xD6;
chessdsbr 2:32e1e71f5885 2733 }
chessdsbr 2:32e1e71f5885 2734 }
chessdsbr 2:32e1e71f5885 2735 else if(l24==1){
chessdsbr 2:32e1e71f5885 2736 figura_dib[2]=0xD5;
chessdsbr 2:32e1e71f5885 2737 }
chessdsbr 2:32e1e71f5885 2738 else{
chessdsbr 2:32e1e71f5885 2739 figura_dib[2]=0xD4;
chessdsbr 2:32e1e71f5885 2740 }
chessdsbr 2:32e1e71f5885 2741 }
chessdsbr 2:32e1e71f5885 2742 else if(l23==1){
chessdsbr 2:32e1e71f5885 2743 if(l24==1){
chessdsbr 2:32e1e71f5885 2744 figura_dib[2]=0xD3;
chessdsbr 2:32e1e71f5885 2745 }
chessdsbr 2:32e1e71f5885 2746 else{
chessdsbr 2:32e1e71f5885 2747 figura_dib[2]=0xD2;
chessdsbr 2:32e1e71f5885 2748 }
chessdsbr 2:32e1e71f5885 2749 }
chessdsbr 2:32e1e71f5885 2750 else if(l24==1){
chessdsbr 2:32e1e71f5885 2751 figura_dib[2]=0xD1;
chessdsbr 2:32e1e71f5885 2752 }
chessdsbr 2:32e1e71f5885 2753 else{
chessdsbr 2:32e1e71f5885 2754 figura_dib[2]=0xD0;
chessdsbr 2:32e1e71f5885 2755 }
chessdsbr 2:32e1e71f5885 2756 }
chessdsbr 2:32e1e71f5885 2757 else if(l21==1){
chessdsbr 2:32e1e71f5885 2758 if(l22==1){
chessdsbr 2:32e1e71f5885 2759 if(l23==1){
chessdsbr 2:32e1e71f5885 2760 if(l24==1){
chessdsbr 2:32e1e71f5885 2761 figura_dib[2]=0xCF;
chessdsbr 2:32e1e71f5885 2762 }
chessdsbr 2:32e1e71f5885 2763 else{
chessdsbr 2:32e1e71f5885 2764 figura_dib[2]=0xCE;
chessdsbr 2:32e1e71f5885 2765 }
chessdsbr 2:32e1e71f5885 2766 }
chessdsbr 2:32e1e71f5885 2767 else if(l24==1){
chessdsbr 2:32e1e71f5885 2768 figura_dib[2]=0xCD;
chessdsbr 2:32e1e71f5885 2769 }
chessdsbr 2:32e1e71f5885 2770 else{
chessdsbr 2:32e1e71f5885 2771 figura_dib[2]=0xCC;
chessdsbr 2:32e1e71f5885 2772 }
chessdsbr 2:32e1e71f5885 2773 }
chessdsbr 2:32e1e71f5885 2774 else if(l23==1){
chessdsbr 2:32e1e71f5885 2775 if(l24==1){
chessdsbr 2:32e1e71f5885 2776 figura_dib[2]=0xCB;
chessdsbr 2:32e1e71f5885 2777 }
chessdsbr 2:32e1e71f5885 2778 else{
chessdsbr 2:32e1e71f5885 2779 figura_dib[2]=0xCA;
chessdsbr 2:32e1e71f5885 2780 }
chessdsbr 2:32e1e71f5885 2781 }
chessdsbr 2:32e1e71f5885 2782 else if(l24==1){
chessdsbr 2:32e1e71f5885 2783 figura_dib[2]=0xC9;
chessdsbr 2:32e1e71f5885 2784 }
chessdsbr 2:32e1e71f5885 2785 else{
chessdsbr 2:32e1e71f5885 2786 figura_dib[2]=0xC8;
chessdsbr 2:32e1e71f5885 2787 }
chessdsbr 2:32e1e71f5885 2788 }
chessdsbr 2:32e1e71f5885 2789 else if(l22==1){
chessdsbr 2:32e1e71f5885 2790 if(l23==1){
chessdsbr 2:32e1e71f5885 2791 if(l24==1){
chessdsbr 2:32e1e71f5885 2792 figura_dib[2]=0xC7;
chessdsbr 2:32e1e71f5885 2793 }
chessdsbr 2:32e1e71f5885 2794 else{
chessdsbr 2:32e1e71f5885 2795 figura_dib[2]=0xC6;
chessdsbr 2:32e1e71f5885 2796 }
chessdsbr 2:32e1e71f5885 2797 }
chessdsbr 2:32e1e71f5885 2798 else if(l24==1){
chessdsbr 2:32e1e71f5885 2799 figura_dib[2]=0xC5;
chessdsbr 2:32e1e71f5885 2800 }
chessdsbr 2:32e1e71f5885 2801 else{
chessdsbr 2:32e1e71f5885 2802 figura_dib[2]=0xC4;
chessdsbr 2:32e1e71f5885 2803 }
chessdsbr 2:32e1e71f5885 2804 }
chessdsbr 2:32e1e71f5885 2805 else if(l23==1){
chessdsbr 2:32e1e71f5885 2806 if(l24==1){
chessdsbr 2:32e1e71f5885 2807 figura_dib[2]=0xC3;
chessdsbr 2:32e1e71f5885 2808 }
chessdsbr 2:32e1e71f5885 2809 else{
chessdsbr 2:32e1e71f5885 2810 figura_dib[2]=0xC2;
chessdsbr 2:32e1e71f5885 2811 }
chessdsbr 2:32e1e71f5885 2812 }
chessdsbr 2:32e1e71f5885 2813 else if(l24==1){
chessdsbr 2:32e1e71f5885 2814 figura_dib[2]=0xC1;
chessdsbr 2:32e1e71f5885 2815 }
chessdsbr 2:32e1e71f5885 2816 else{
chessdsbr 2:32e1e71f5885 2817 figura_dib[2]=0xC0;
chessdsbr 2:32e1e71f5885 2818 }
chessdsbr 2:32e1e71f5885 2819 }
chessdsbr 2:32e1e71f5885 2820 else if(l19==1){
chessdsbr 2:32e1e71f5885 2821 if(l20==1){
chessdsbr 2:32e1e71f5885 2822 if(l21==1){
chessdsbr 2:32e1e71f5885 2823 if(l22==1){
chessdsbr 2:32e1e71f5885 2824 if(l23==1){
chessdsbr 2:32e1e71f5885 2825 if(l24==1){
chessdsbr 2:32e1e71f5885 2826 figura_dib[2]=0xBF;
chessdsbr 2:32e1e71f5885 2827 }
chessdsbr 2:32e1e71f5885 2828 else{
chessdsbr 2:32e1e71f5885 2829 figura_dib[2]=0xBE;
chessdsbr 2:32e1e71f5885 2830 }
chessdsbr 2:32e1e71f5885 2831 }
chessdsbr 2:32e1e71f5885 2832 else if(l24==1){
chessdsbr 2:32e1e71f5885 2833 figura_dib[2]=0xBD;
chessdsbr 2:32e1e71f5885 2834 }
chessdsbr 2:32e1e71f5885 2835 else{
chessdsbr 2:32e1e71f5885 2836 figura_dib[2]=0xBC;
chessdsbr 2:32e1e71f5885 2837 }
chessdsbr 2:32e1e71f5885 2838 }
chessdsbr 2:32e1e71f5885 2839 else if(l23==1){
chessdsbr 2:32e1e71f5885 2840 if(l24==1){
chessdsbr 2:32e1e71f5885 2841 figura_dib[2]=0xBB;
chessdsbr 2:32e1e71f5885 2842 }
chessdsbr 2:32e1e71f5885 2843 else{
chessdsbr 2:32e1e71f5885 2844 figura_dib[2]=0xBA;
chessdsbr 2:32e1e71f5885 2845 }
chessdsbr 2:32e1e71f5885 2846 }
chessdsbr 2:32e1e71f5885 2847 else if(l24==1){
chessdsbr 2:32e1e71f5885 2848 figura_dib[2]=0xB9;
chessdsbr 2:32e1e71f5885 2849 }
chessdsbr 2:32e1e71f5885 2850 else{
chessdsbr 2:32e1e71f5885 2851 figura_dib[2]=0xB8;
chessdsbr 2:32e1e71f5885 2852 }
chessdsbr 2:32e1e71f5885 2853 }
chessdsbr 2:32e1e71f5885 2854 else if(l22==1){
chessdsbr 2:32e1e71f5885 2855 if(l23==1){
chessdsbr 2:32e1e71f5885 2856 if(l24==1){
chessdsbr 2:32e1e71f5885 2857 figura_dib[2]=0xB7;
chessdsbr 2:32e1e71f5885 2858 }
chessdsbr 2:32e1e71f5885 2859 else{
chessdsbr 2:32e1e71f5885 2860 figura_dib[2]=0xB6;
chessdsbr 2:32e1e71f5885 2861 }
chessdsbr 2:32e1e71f5885 2862 }
chessdsbr 2:32e1e71f5885 2863 else if(l24==1){
chessdsbr 2:32e1e71f5885 2864 figura_dib[2]=0xB5;
chessdsbr 2:32e1e71f5885 2865 }
chessdsbr 2:32e1e71f5885 2866 else{
chessdsbr 2:32e1e71f5885 2867 figura_dib[2]=0xB4;
chessdsbr 2:32e1e71f5885 2868 }
chessdsbr 2:32e1e71f5885 2869 }
chessdsbr 2:32e1e71f5885 2870 else if(l23==1){
chessdsbr 2:32e1e71f5885 2871 if(l24==1){
chessdsbr 2:32e1e71f5885 2872 figura_dib[2]=0xB3;
chessdsbr 2:32e1e71f5885 2873 }
chessdsbr 2:32e1e71f5885 2874 else{
chessdsbr 2:32e1e71f5885 2875 figura_dib[2]=0xB2;
chessdsbr 2:32e1e71f5885 2876 }
chessdsbr 2:32e1e71f5885 2877 }
chessdsbr 2:32e1e71f5885 2878 else if(l24==1){
chessdsbr 2:32e1e71f5885 2879 figura_dib[2]=0xB1;
chessdsbr 2:32e1e71f5885 2880 }
chessdsbr 2:32e1e71f5885 2881 else{
chessdsbr 2:32e1e71f5885 2882 figura_dib[2]=0xB0;
chessdsbr 2:32e1e71f5885 2883 }
chessdsbr 2:32e1e71f5885 2884 }
chessdsbr 2:32e1e71f5885 2885 else if(l21==1){
chessdsbr 2:32e1e71f5885 2886 if(l22==1){
chessdsbr 2:32e1e71f5885 2887 if(l23==1){
chessdsbr 2:32e1e71f5885 2888 if(l24==1){
chessdsbr 2:32e1e71f5885 2889 figura_dib[2]=0xAF;
chessdsbr 2:32e1e71f5885 2890 }
chessdsbr 2:32e1e71f5885 2891 else{
chessdsbr 2:32e1e71f5885 2892 figura_dib[2]=0xAE;
chessdsbr 2:32e1e71f5885 2893 }
chessdsbr 2:32e1e71f5885 2894 }
chessdsbr 2:32e1e71f5885 2895 else if(l24==1){
chessdsbr 2:32e1e71f5885 2896 figura_dib[2]=0xAD;
chessdsbr 2:32e1e71f5885 2897 }
chessdsbr 2:32e1e71f5885 2898 else{
chessdsbr 2:32e1e71f5885 2899 figura_dib[2]=0xAC;
chessdsbr 2:32e1e71f5885 2900 }
chessdsbr 2:32e1e71f5885 2901 }
chessdsbr 2:32e1e71f5885 2902 else if(l23==1){
chessdsbr 2:32e1e71f5885 2903 if(l24==1){
chessdsbr 2:32e1e71f5885 2904 figura_dib[2]=0xAB;
chessdsbr 2:32e1e71f5885 2905 }
chessdsbr 2:32e1e71f5885 2906 else{
chessdsbr 2:32e1e71f5885 2907 figura_dib[2]=0xAA;
chessdsbr 2:32e1e71f5885 2908 }
chessdsbr 2:32e1e71f5885 2909 }
chessdsbr 2:32e1e71f5885 2910 else if(l24==1){
chessdsbr 2:32e1e71f5885 2911 figura_dib[2]=0xA9;
chessdsbr 2:32e1e71f5885 2912 }
chessdsbr 2:32e1e71f5885 2913 else{
chessdsbr 2:32e1e71f5885 2914 figura_dib[2]=0xA8;
chessdsbr 2:32e1e71f5885 2915 }
chessdsbr 2:32e1e71f5885 2916 }
chessdsbr 2:32e1e71f5885 2917 else if(l22==1){
chessdsbr 2:32e1e71f5885 2918 if(l23==1){
chessdsbr 2:32e1e71f5885 2919 if(l24==1){
chessdsbr 2:32e1e71f5885 2920 figura_dib[2]=0xA7;
chessdsbr 2:32e1e71f5885 2921 }
chessdsbr 2:32e1e71f5885 2922 else{
chessdsbr 2:32e1e71f5885 2923 figura_dib[2]=0xA6;
chessdsbr 2:32e1e71f5885 2924 }
chessdsbr 2:32e1e71f5885 2925 }
chessdsbr 2:32e1e71f5885 2926 else if(l24==1){
chessdsbr 2:32e1e71f5885 2927 figura_dib[2]=0xA5;
chessdsbr 2:32e1e71f5885 2928 }
chessdsbr 2:32e1e71f5885 2929 else{
chessdsbr 2:32e1e71f5885 2930 figura_dib[2]=0xA4;
chessdsbr 2:32e1e71f5885 2931 }
chessdsbr 2:32e1e71f5885 2932 }
chessdsbr 2:32e1e71f5885 2933 else if(l23==1){
chessdsbr 2:32e1e71f5885 2934 if(l24==1){
chessdsbr 2:32e1e71f5885 2935 figura_dib[2]=0xA3;
chessdsbr 2:32e1e71f5885 2936 }
chessdsbr 2:32e1e71f5885 2937 else{
chessdsbr 2:32e1e71f5885 2938 figura_dib[2]=0xA2;
chessdsbr 2:32e1e71f5885 2939 }
chessdsbr 2:32e1e71f5885 2940 }
chessdsbr 2:32e1e71f5885 2941 else if(l24==1){
chessdsbr 2:32e1e71f5885 2942 figura_dib[2]=0xA1;
chessdsbr 2:32e1e71f5885 2943 }
chessdsbr 2:32e1e71f5885 2944 else{
chessdsbr 2:32e1e71f5885 2945 figura_dib[2]=0xA0;
chessdsbr 2:32e1e71f5885 2946 }
chessdsbr 2:32e1e71f5885 2947 }
chessdsbr 2:32e1e71f5885 2948 else if(l20==1){
chessdsbr 2:32e1e71f5885 2949 if(l21==1){
chessdsbr 2:32e1e71f5885 2950 if(l22==1){
chessdsbr 2:32e1e71f5885 2951 if(l23==1){
chessdsbr 2:32e1e71f5885 2952 if(l24==1){
chessdsbr 2:32e1e71f5885 2953 figura_dib[2]=0x9F;
chessdsbr 2:32e1e71f5885 2954 }
chessdsbr 2:32e1e71f5885 2955 else{
chessdsbr 2:32e1e71f5885 2956 figura_dib[2]=0x9E;
chessdsbr 2:32e1e71f5885 2957 }
chessdsbr 2:32e1e71f5885 2958 }
chessdsbr 2:32e1e71f5885 2959 else if(l24==1){
chessdsbr 2:32e1e71f5885 2960 figura_dib[2]=0x9D;
chessdsbr 2:32e1e71f5885 2961 }
chessdsbr 2:32e1e71f5885 2962 else{
chessdsbr 2:32e1e71f5885 2963 figura_dib[2]=0x9C;
chessdsbr 2:32e1e71f5885 2964 }
chessdsbr 2:32e1e71f5885 2965 }
chessdsbr 2:32e1e71f5885 2966 else if(l23==1){
chessdsbr 2:32e1e71f5885 2967 if(l24==1){
chessdsbr 2:32e1e71f5885 2968 figura_dib[2]=0x9B;
chessdsbr 2:32e1e71f5885 2969 }
chessdsbr 2:32e1e71f5885 2970 else{
chessdsbr 2:32e1e71f5885 2971 figura_dib[2]=0x9A;
chessdsbr 2:32e1e71f5885 2972 }
chessdsbr 2:32e1e71f5885 2973 }
chessdsbr 2:32e1e71f5885 2974 else if(l24==1){
chessdsbr 2:32e1e71f5885 2975 figura_dib[2]=0x99;
chessdsbr 2:32e1e71f5885 2976 }
chessdsbr 2:32e1e71f5885 2977 else{
chessdsbr 2:32e1e71f5885 2978 figura_dib[2]=0x98;
chessdsbr 2:32e1e71f5885 2979 }
chessdsbr 2:32e1e71f5885 2980 }
chessdsbr 2:32e1e71f5885 2981 else if(l22==1){
chessdsbr 2:32e1e71f5885 2982 if(l23==1){
chessdsbr 2:32e1e71f5885 2983 if(l24==1){
chessdsbr 2:32e1e71f5885 2984 figura_dib[2]=0x97;
chessdsbr 2:32e1e71f5885 2985 }
chessdsbr 2:32e1e71f5885 2986 else{
chessdsbr 2:32e1e71f5885 2987 figura_dib[2]=0x96;
chessdsbr 2:32e1e71f5885 2988 }
chessdsbr 2:32e1e71f5885 2989 }
chessdsbr 2:32e1e71f5885 2990 else if(l24==1){
chessdsbr 2:32e1e71f5885 2991 figura_dib[2]=0x95;
chessdsbr 2:32e1e71f5885 2992 }
chessdsbr 2:32e1e71f5885 2993 else{
chessdsbr 2:32e1e71f5885 2994 figura_dib[2]=0x94;
chessdsbr 2:32e1e71f5885 2995 }
chessdsbr 2:32e1e71f5885 2996 }
chessdsbr 2:32e1e71f5885 2997 else if(l23==1){
chessdsbr 2:32e1e71f5885 2998 if(l24==1){
chessdsbr 2:32e1e71f5885 2999 figura_dib[2]=0x93;
chessdsbr 2:32e1e71f5885 3000 }
chessdsbr 2:32e1e71f5885 3001 else{
chessdsbr 2:32e1e71f5885 3002 figura_dib[2]=0x92;
chessdsbr 2:32e1e71f5885 3003 }
chessdsbr 2:32e1e71f5885 3004 }
chessdsbr 2:32e1e71f5885 3005 else if(l24==1){
chessdsbr 2:32e1e71f5885 3006 figura_dib[2]=0x91;
chessdsbr 2:32e1e71f5885 3007 }
chessdsbr 2:32e1e71f5885 3008 else{
chessdsbr 2:32e1e71f5885 3009 figura_dib[2]=0x90;
chessdsbr 2:32e1e71f5885 3010 }
chessdsbr 2:32e1e71f5885 3011 }
chessdsbr 2:32e1e71f5885 3012 else if(l21==1){
chessdsbr 2:32e1e71f5885 3013 if(l22==1){
chessdsbr 2:32e1e71f5885 3014 if(l23==1){
chessdsbr 2:32e1e71f5885 3015 if(l24==1){
chessdsbr 2:32e1e71f5885 3016 figura_dib[2]=0x8F;
chessdsbr 2:32e1e71f5885 3017 }
chessdsbr 2:32e1e71f5885 3018 else{
chessdsbr 2:32e1e71f5885 3019 figura_dib[2]=0x8E;
chessdsbr 2:32e1e71f5885 3020 }
chessdsbr 2:32e1e71f5885 3021 }
chessdsbr 2:32e1e71f5885 3022 else if(l24==1){
chessdsbr 2:32e1e71f5885 3023 figura_dib[2]=0x8D;
chessdsbr 2:32e1e71f5885 3024 }
chessdsbr 2:32e1e71f5885 3025 else{
chessdsbr 2:32e1e71f5885 3026 figura_dib[2]=0x8C;
chessdsbr 2:32e1e71f5885 3027 }
chessdsbr 2:32e1e71f5885 3028 }
chessdsbr 2:32e1e71f5885 3029 else if(l23==1){
chessdsbr 2:32e1e71f5885 3030 if(l24==1){
chessdsbr 2:32e1e71f5885 3031 figura_dib[2]=0x8B;
chessdsbr 2:32e1e71f5885 3032 }
chessdsbr 2:32e1e71f5885 3033 else{
chessdsbr 2:32e1e71f5885 3034 figura_dib[2]=0x8A;
chessdsbr 2:32e1e71f5885 3035 }
chessdsbr 2:32e1e71f5885 3036 }
chessdsbr 2:32e1e71f5885 3037 else if(l24==1){
chessdsbr 2:32e1e71f5885 3038 figura_dib[2]=0x89;
chessdsbr 2:32e1e71f5885 3039 }
chessdsbr 2:32e1e71f5885 3040 else{
chessdsbr 2:32e1e71f5885 3041 figura_dib[2]=0x88;
chessdsbr 2:32e1e71f5885 3042 }
chessdsbr 2:32e1e71f5885 3043 }
chessdsbr 2:32e1e71f5885 3044 else if(l22==1){
chessdsbr 2:32e1e71f5885 3045 if(l23==1){
chessdsbr 2:32e1e71f5885 3046 if(l24==1){
chessdsbr 2:32e1e71f5885 3047 figura_dib[2]=0x87;
chessdsbr 2:32e1e71f5885 3048 }
chessdsbr 2:32e1e71f5885 3049 else{
chessdsbr 2:32e1e71f5885 3050 figura_dib[2]=0x86;
chessdsbr 2:32e1e71f5885 3051 }
chessdsbr 2:32e1e71f5885 3052 }
chessdsbr 2:32e1e71f5885 3053 else if(l24==1){
chessdsbr 2:32e1e71f5885 3054 figura_dib[2]=0x85;
chessdsbr 2:32e1e71f5885 3055 }
chessdsbr 2:32e1e71f5885 3056 else{
chessdsbr 2:32e1e71f5885 3057 figura_dib[2]=0x84;
chessdsbr 2:32e1e71f5885 3058 }
chessdsbr 2:32e1e71f5885 3059 }
chessdsbr 2:32e1e71f5885 3060 else if(l23==1){
chessdsbr 2:32e1e71f5885 3061 if(l24==1){
chessdsbr 2:32e1e71f5885 3062 figura_dib[2]=0x83;
chessdsbr 2:32e1e71f5885 3063 }
chessdsbr 2:32e1e71f5885 3064 else{
chessdsbr 2:32e1e71f5885 3065 figura_dib[2]=0x82;
chessdsbr 2:32e1e71f5885 3066 }
chessdsbr 2:32e1e71f5885 3067 }
chessdsbr 2:32e1e71f5885 3068 else if(l24==1){
chessdsbr 2:32e1e71f5885 3069 figura_dib[2]=0x81;
chessdsbr 2:32e1e71f5885 3070 }
chessdsbr 2:32e1e71f5885 3071 else{
chessdsbr 2:32e1e71f5885 3072 figura_dib[2]=0x80;
chessdsbr 2:32e1e71f5885 3073 }
chessdsbr 2:32e1e71f5885 3074 }
chessdsbr 2:32e1e71f5885 3075 else if(l18==1){
chessdsbr 2:32e1e71f5885 3076 if(l19==1){
chessdsbr 2:32e1e71f5885 3077 if(l20==1){
chessdsbr 2:32e1e71f5885 3078 if(l21==1){
chessdsbr 2:32e1e71f5885 3079 if(l22==1){
chessdsbr 2:32e1e71f5885 3080 if(l23==1){
chessdsbr 2:32e1e71f5885 3081 if(l24==1){
chessdsbr 2:32e1e71f5885 3082 figura_dib[2]=0x7F;
chessdsbr 2:32e1e71f5885 3083 }
chessdsbr 2:32e1e71f5885 3084 else{
chessdsbr 2:32e1e71f5885 3085 figura_dib[2]=0x7E;
chessdsbr 2:32e1e71f5885 3086 }
chessdsbr 2:32e1e71f5885 3087 }
chessdsbr 2:32e1e71f5885 3088 else if(l24==1){
chessdsbr 2:32e1e71f5885 3089 figura_dib[2]=0x7D;
chessdsbr 2:32e1e71f5885 3090 }
chessdsbr 2:32e1e71f5885 3091 else{
chessdsbr 2:32e1e71f5885 3092 figura_dib[2]=0x7C;
chessdsbr 2:32e1e71f5885 3093 }
chessdsbr 2:32e1e71f5885 3094 }
chessdsbr 2:32e1e71f5885 3095 else if(l23==1){
chessdsbr 2:32e1e71f5885 3096 if(l24==1){
chessdsbr 2:32e1e71f5885 3097 figura_dib[2]=0x7B;
chessdsbr 2:32e1e71f5885 3098 }
chessdsbr 2:32e1e71f5885 3099 else{
chessdsbr 2:32e1e71f5885 3100 figura_dib[2]=0x7A;
chessdsbr 2:32e1e71f5885 3101 }
chessdsbr 2:32e1e71f5885 3102 }
chessdsbr 2:32e1e71f5885 3103 else if(l24==1){
chessdsbr 2:32e1e71f5885 3104 figura_dib[2]=0x79;
chessdsbr 2:32e1e71f5885 3105 }
chessdsbr 2:32e1e71f5885 3106 else{
chessdsbr 2:32e1e71f5885 3107 figura_dib[2]=0x78;
chessdsbr 2:32e1e71f5885 3108 }
chessdsbr 2:32e1e71f5885 3109 }
chessdsbr 2:32e1e71f5885 3110 else if(l22==1){
chessdsbr 2:32e1e71f5885 3111 if(l23==1){
chessdsbr 2:32e1e71f5885 3112 if(l24==1){
chessdsbr 2:32e1e71f5885 3113 figura_dib[2]=0x77;
chessdsbr 2:32e1e71f5885 3114 }
chessdsbr 2:32e1e71f5885 3115 else{
chessdsbr 2:32e1e71f5885 3116 figura_dib[2]=0x76;
chessdsbr 2:32e1e71f5885 3117 }
chessdsbr 2:32e1e71f5885 3118 }
chessdsbr 2:32e1e71f5885 3119 else if(l24==1){
chessdsbr 2:32e1e71f5885 3120 figura_dib[2]=0x75;
chessdsbr 2:32e1e71f5885 3121 }
chessdsbr 2:32e1e71f5885 3122 else{
chessdsbr 2:32e1e71f5885 3123 figura_dib[2]=0x74;
chessdsbr 2:32e1e71f5885 3124 }
chessdsbr 2:32e1e71f5885 3125 }
chessdsbr 2:32e1e71f5885 3126 else if(l23==1){
chessdsbr 2:32e1e71f5885 3127 if(l24==1){
chessdsbr 2:32e1e71f5885 3128 figura_dib[2]=0x73;
chessdsbr 2:32e1e71f5885 3129 }
chessdsbr 2:32e1e71f5885 3130 else{
chessdsbr 2:32e1e71f5885 3131 figura_dib[2]=0x72;
chessdsbr 2:32e1e71f5885 3132 }
chessdsbr 2:32e1e71f5885 3133 }
chessdsbr 2:32e1e71f5885 3134 else if(l24==1){
chessdsbr 2:32e1e71f5885 3135 figura_dib[2]=0x71;
chessdsbr 2:32e1e71f5885 3136 }
chessdsbr 2:32e1e71f5885 3137 else{
chessdsbr 2:32e1e71f5885 3138 figura_dib[2]=0x70;
chessdsbr 2:32e1e71f5885 3139 }
chessdsbr 2:32e1e71f5885 3140 }
chessdsbr 2:32e1e71f5885 3141 else if(l21==1){
chessdsbr 2:32e1e71f5885 3142 if(l22==1){
chessdsbr 2:32e1e71f5885 3143 if(l23==1){
chessdsbr 2:32e1e71f5885 3144 if(l24==1){
chessdsbr 2:32e1e71f5885 3145 figura_dib[2]=0x6F;
chessdsbr 2:32e1e71f5885 3146 }
chessdsbr 2:32e1e71f5885 3147 else{
chessdsbr 2:32e1e71f5885 3148 figura_dib[2]=0x6E;
chessdsbr 2:32e1e71f5885 3149 }
chessdsbr 2:32e1e71f5885 3150 }
chessdsbr 2:32e1e71f5885 3151 else if(l24==1){
chessdsbr 2:32e1e71f5885 3152 figura_dib[2]=0x6D;
chessdsbr 2:32e1e71f5885 3153 }
chessdsbr 2:32e1e71f5885 3154 else{
chessdsbr 2:32e1e71f5885 3155 figura_dib[2]=0x6C;
chessdsbr 2:32e1e71f5885 3156 }
chessdsbr 2:32e1e71f5885 3157 }
chessdsbr 2:32e1e71f5885 3158 else if(l23==1){
chessdsbr 2:32e1e71f5885 3159 if(l24==1){
chessdsbr 2:32e1e71f5885 3160 figura_dib[2]=0x6B;
chessdsbr 2:32e1e71f5885 3161 }
chessdsbr 2:32e1e71f5885 3162 else{
chessdsbr 2:32e1e71f5885 3163 figura_dib[2]=0x6A;
chessdsbr 2:32e1e71f5885 3164 }
chessdsbr 2:32e1e71f5885 3165 }
chessdsbr 2:32e1e71f5885 3166 else if(l24==1){
chessdsbr 2:32e1e71f5885 3167 figura_dib[2]=0x69;
chessdsbr 2:32e1e71f5885 3168 }
chessdsbr 2:32e1e71f5885 3169 else{
chessdsbr 2:32e1e71f5885 3170 figura_dib[2]=0x68;
chessdsbr 2:32e1e71f5885 3171 }
chessdsbr 2:32e1e71f5885 3172 }
chessdsbr 2:32e1e71f5885 3173 else if(l22==1){
chessdsbr 2:32e1e71f5885 3174 if(l23==1){
chessdsbr 2:32e1e71f5885 3175 if(l24==1){
chessdsbr 2:32e1e71f5885 3176 figura_dib[2]=0x67;
chessdsbr 2:32e1e71f5885 3177 }
chessdsbr 2:32e1e71f5885 3178 else{
chessdsbr 2:32e1e71f5885 3179 figura_dib[2]=0x66;
chessdsbr 2:32e1e71f5885 3180 }
chessdsbr 2:32e1e71f5885 3181 }
chessdsbr 2:32e1e71f5885 3182 else if(l24==1){
chessdsbr 2:32e1e71f5885 3183 figura_dib[2]=0x65;
chessdsbr 2:32e1e71f5885 3184 }
chessdsbr 2:32e1e71f5885 3185 else{
chessdsbr 2:32e1e71f5885 3186 figura_dib[2]=0x64;
chessdsbr 2:32e1e71f5885 3187 }
chessdsbr 2:32e1e71f5885 3188 }
chessdsbr 2:32e1e71f5885 3189 else if(l23==1){
chessdsbr 2:32e1e71f5885 3190 if(l24==1){
chessdsbr 2:32e1e71f5885 3191 figura_dib[2]=0x63;
chessdsbr 2:32e1e71f5885 3192 }
chessdsbr 2:32e1e71f5885 3193 else{
chessdsbr 2:32e1e71f5885 3194 figura_dib[2]=0x62;
chessdsbr 2:32e1e71f5885 3195 }
chessdsbr 2:32e1e71f5885 3196 }
chessdsbr 2:32e1e71f5885 3197 else if(l24==1){
chessdsbr 2:32e1e71f5885 3198 figura_dib[2]=0x61;
chessdsbr 2:32e1e71f5885 3199 }
chessdsbr 2:32e1e71f5885 3200 else{
chessdsbr 2:32e1e71f5885 3201 figura_dib[2]=0x60;
chessdsbr 2:32e1e71f5885 3202 }
chessdsbr 2:32e1e71f5885 3203 }
chessdsbr 2:32e1e71f5885 3204 else if(l20==1){
chessdsbr 2:32e1e71f5885 3205 if(l21==1){
chessdsbr 2:32e1e71f5885 3206 if(l22==1){
chessdsbr 2:32e1e71f5885 3207 if(l23==1){
chessdsbr 2:32e1e71f5885 3208 if(l24==1){
chessdsbr 2:32e1e71f5885 3209 figura_dib[2]=0x5F;
chessdsbr 2:32e1e71f5885 3210 }
chessdsbr 2:32e1e71f5885 3211 else{
chessdsbr 2:32e1e71f5885 3212 figura_dib[2]=0x5E;
chessdsbr 2:32e1e71f5885 3213 }
chessdsbr 2:32e1e71f5885 3214 }
chessdsbr 2:32e1e71f5885 3215 else if(l24==1){
chessdsbr 2:32e1e71f5885 3216 figura_dib[2]=0x5D;
chessdsbr 2:32e1e71f5885 3217 }
chessdsbr 2:32e1e71f5885 3218 else{
chessdsbr 2:32e1e71f5885 3219 figura_dib[2]=0x5C;
chessdsbr 2:32e1e71f5885 3220 }
chessdsbr 2:32e1e71f5885 3221 }
chessdsbr 2:32e1e71f5885 3222 else if(l23==1){
chessdsbr 2:32e1e71f5885 3223 if(l24==1){
chessdsbr 2:32e1e71f5885 3224 figura_dib[2]=0x5B;
chessdsbr 2:32e1e71f5885 3225 }
chessdsbr 2:32e1e71f5885 3226 else{
chessdsbr 2:32e1e71f5885 3227 figura_dib[2]=0x5A;
chessdsbr 2:32e1e71f5885 3228 }
chessdsbr 2:32e1e71f5885 3229 }
chessdsbr 2:32e1e71f5885 3230 else if(l24==1){
chessdsbr 2:32e1e71f5885 3231 figura_dib[2]=0x59;
chessdsbr 2:32e1e71f5885 3232 }
chessdsbr 2:32e1e71f5885 3233 else{
chessdsbr 2:32e1e71f5885 3234 figura_dib[2]=0x58;
chessdsbr 2:32e1e71f5885 3235 }
chessdsbr 2:32e1e71f5885 3236 }
chessdsbr 2:32e1e71f5885 3237 else if(l22==1){
chessdsbr 2:32e1e71f5885 3238 if(l23==1){
chessdsbr 2:32e1e71f5885 3239 if(l24==1){
chessdsbr 2:32e1e71f5885 3240 figura_dib[2]=0x57;
chessdsbr 2:32e1e71f5885 3241 }
chessdsbr 2:32e1e71f5885 3242 else{
chessdsbr 2:32e1e71f5885 3243 figura_dib[2]=0x56;
chessdsbr 2:32e1e71f5885 3244 }
chessdsbr 2:32e1e71f5885 3245 }
chessdsbr 2:32e1e71f5885 3246 else if(l24==1){
chessdsbr 2:32e1e71f5885 3247 figura_dib[2]=0x55;
chessdsbr 2:32e1e71f5885 3248 }
chessdsbr 2:32e1e71f5885 3249 else{
chessdsbr 2:32e1e71f5885 3250 figura_dib[2]=0x54;
chessdsbr 2:32e1e71f5885 3251 }
chessdsbr 2:32e1e71f5885 3252 }
chessdsbr 2:32e1e71f5885 3253 else if(l23==1){
chessdsbr 2:32e1e71f5885 3254 if(l24==1){
chessdsbr 2:32e1e71f5885 3255 figura_dib[2]=0x53;
chessdsbr 2:32e1e71f5885 3256 }
chessdsbr 2:32e1e71f5885 3257 else{
chessdsbr 2:32e1e71f5885 3258 figura_dib[2]=0x52;
chessdsbr 2:32e1e71f5885 3259 }
chessdsbr 2:32e1e71f5885 3260 }
chessdsbr 2:32e1e71f5885 3261 else if(l24==1){
chessdsbr 2:32e1e71f5885 3262 figura_dib[2]=0x51;
chessdsbr 2:32e1e71f5885 3263 }
chessdsbr 2:32e1e71f5885 3264 else{
chessdsbr 2:32e1e71f5885 3265 figura_dib[2]=0x50;
chessdsbr 2:32e1e71f5885 3266 }
chessdsbr 2:32e1e71f5885 3267 }
chessdsbr 2:32e1e71f5885 3268 else if(l21==1){
chessdsbr 2:32e1e71f5885 3269 if(l22==1){
chessdsbr 2:32e1e71f5885 3270 if(l23==1){
chessdsbr 2:32e1e71f5885 3271 if(l24==1){
chessdsbr 2:32e1e71f5885 3272 figura_dib[2]=0x4F;
chessdsbr 2:32e1e71f5885 3273 }
chessdsbr 2:32e1e71f5885 3274 else{
chessdsbr 2:32e1e71f5885 3275 figura_dib[2]=0x4E;
chessdsbr 2:32e1e71f5885 3276 }
chessdsbr 2:32e1e71f5885 3277 }
chessdsbr 2:32e1e71f5885 3278 else if(l24==1){
chessdsbr 2:32e1e71f5885 3279 figura_dib[2]=0x4D;
chessdsbr 2:32e1e71f5885 3280 }
chessdsbr 2:32e1e71f5885 3281 else{
chessdsbr 2:32e1e71f5885 3282 figura_dib[2]=0x4C;
chessdsbr 2:32e1e71f5885 3283 }
chessdsbr 2:32e1e71f5885 3284 }
chessdsbr 2:32e1e71f5885 3285 else if(l23==1){
chessdsbr 2:32e1e71f5885 3286 if(l24==1){
chessdsbr 2:32e1e71f5885 3287 figura_dib[2]=0x4B;
chessdsbr 2:32e1e71f5885 3288 }
chessdsbr 2:32e1e71f5885 3289 else{
chessdsbr 2:32e1e71f5885 3290 figura_dib[2]=0x4A;
chessdsbr 2:32e1e71f5885 3291 }
chessdsbr 2:32e1e71f5885 3292 }
chessdsbr 2:32e1e71f5885 3293 else if(l24==1){
chessdsbr 2:32e1e71f5885 3294 figura_dib[2]=0x49;
chessdsbr 2:32e1e71f5885 3295 }
chessdsbr 2:32e1e71f5885 3296 else{
chessdsbr 2:32e1e71f5885 3297 figura_dib[2]=0x48;
chessdsbr 2:32e1e71f5885 3298 }
chessdsbr 2:32e1e71f5885 3299 }
chessdsbr 2:32e1e71f5885 3300 else if(l22==1){
chessdsbr 2:32e1e71f5885 3301 if(l23==1){
chessdsbr 2:32e1e71f5885 3302 if(l24==1){
chessdsbr 2:32e1e71f5885 3303 figura_dib[2]=0x47;
chessdsbr 2:32e1e71f5885 3304 }
chessdsbr 2:32e1e71f5885 3305 else{
chessdsbr 2:32e1e71f5885 3306 figura_dib[2]=0x46;
chessdsbr 2:32e1e71f5885 3307 }
chessdsbr 2:32e1e71f5885 3308 }
chessdsbr 2:32e1e71f5885 3309 else if(l24==1){
chessdsbr 2:32e1e71f5885 3310 figura_dib[2]=0x45;
chessdsbr 2:32e1e71f5885 3311 }
chessdsbr 2:32e1e71f5885 3312 else{
chessdsbr 2:32e1e71f5885 3313 figura_dib[2]=0x44;
chessdsbr 2:32e1e71f5885 3314 }
chessdsbr 2:32e1e71f5885 3315 }
chessdsbr 2:32e1e71f5885 3316 else if(l23==1){
chessdsbr 2:32e1e71f5885 3317 if(l24==1){
chessdsbr 2:32e1e71f5885 3318 figura_dib[2]=0x43;
chessdsbr 2:32e1e71f5885 3319 }
chessdsbr 2:32e1e71f5885 3320 else{
chessdsbr 2:32e1e71f5885 3321 figura_dib[2]=0x42;
chessdsbr 2:32e1e71f5885 3322 }
chessdsbr 2:32e1e71f5885 3323 }
chessdsbr 2:32e1e71f5885 3324 else if(l24==1){
chessdsbr 2:32e1e71f5885 3325 figura_dib[2]=0x41;
chessdsbr 2:32e1e71f5885 3326 }
chessdsbr 2:32e1e71f5885 3327 else{
chessdsbr 2:32e1e71f5885 3328 figura_dib[2]=0x40;
chessdsbr 2:32e1e71f5885 3329 }
chessdsbr 2:32e1e71f5885 3330 }
chessdsbr 2:32e1e71f5885 3331 else if(l19==1){
chessdsbr 2:32e1e71f5885 3332 if(l20==1){
chessdsbr 2:32e1e71f5885 3333 if(l21==1){
chessdsbr 2:32e1e71f5885 3334 if(l22==1){
chessdsbr 2:32e1e71f5885 3335 if(l23==1){
chessdsbr 2:32e1e71f5885 3336 if(l24==1){
chessdsbr 2:32e1e71f5885 3337 figura_dib[2]=0x3F;
chessdsbr 2:32e1e71f5885 3338 }
chessdsbr 2:32e1e71f5885 3339 else{
chessdsbr 2:32e1e71f5885 3340 figura_dib[2]=0x3E;
chessdsbr 2:32e1e71f5885 3341 }
chessdsbr 2:32e1e71f5885 3342 }
chessdsbr 2:32e1e71f5885 3343 else if(l24==1){
chessdsbr 2:32e1e71f5885 3344 figura_dib[2]=0x3D;
chessdsbr 2:32e1e71f5885 3345 }
chessdsbr 2:32e1e71f5885 3346 else{
chessdsbr 2:32e1e71f5885 3347 figura_dib[2]=0x3C;
chessdsbr 2:32e1e71f5885 3348 }
chessdsbr 2:32e1e71f5885 3349 }
chessdsbr 2:32e1e71f5885 3350 else if(l23==1){
chessdsbr 2:32e1e71f5885 3351 if(l24==1){
chessdsbr 2:32e1e71f5885 3352 figura_dib[2]=0x3B;
chessdsbr 2:32e1e71f5885 3353 }
chessdsbr 2:32e1e71f5885 3354 else{
chessdsbr 2:32e1e71f5885 3355 figura_dib[2]=0x3A;
chessdsbr 2:32e1e71f5885 3356 }
chessdsbr 2:32e1e71f5885 3357 }
chessdsbr 2:32e1e71f5885 3358 else if(l24==1){
chessdsbr 2:32e1e71f5885 3359 figura_dib[2]=0x39;
chessdsbr 2:32e1e71f5885 3360 }
chessdsbr 2:32e1e71f5885 3361 else{
chessdsbr 2:32e1e71f5885 3362 figura_dib[2]=0x38;
chessdsbr 2:32e1e71f5885 3363 }
chessdsbr 2:32e1e71f5885 3364 }
chessdsbr 2:32e1e71f5885 3365 else if(l22==1){
chessdsbr 2:32e1e71f5885 3366 if(l23==1){
chessdsbr 2:32e1e71f5885 3367 if(l24==1){
chessdsbr 2:32e1e71f5885 3368 figura_dib[2]=0x37;
chessdsbr 2:32e1e71f5885 3369 }
chessdsbr 2:32e1e71f5885 3370 else{
chessdsbr 2:32e1e71f5885 3371 figura_dib[2]=0x36;
chessdsbr 2:32e1e71f5885 3372 }
chessdsbr 2:32e1e71f5885 3373 }
chessdsbr 2:32e1e71f5885 3374 else if(l24==1){
chessdsbr 2:32e1e71f5885 3375 figura_dib[2]=0x35;
chessdsbr 2:32e1e71f5885 3376 }
chessdsbr 2:32e1e71f5885 3377 else{
chessdsbr 2:32e1e71f5885 3378 figura_dib[2]=0x34;
chessdsbr 2:32e1e71f5885 3379 }
chessdsbr 2:32e1e71f5885 3380 }
chessdsbr 2:32e1e71f5885 3381 else if(l23==1){
chessdsbr 2:32e1e71f5885 3382 if(l24==1){
chessdsbr 2:32e1e71f5885 3383 figura_dib[2]=0x33;
chessdsbr 2:32e1e71f5885 3384 }
chessdsbr 2:32e1e71f5885 3385 else{
chessdsbr 2:32e1e71f5885 3386 figura_dib[2]=0x32;
chessdsbr 2:32e1e71f5885 3387 }
chessdsbr 2:32e1e71f5885 3388 }
chessdsbr 2:32e1e71f5885 3389 else if(l24==1){
chessdsbr 2:32e1e71f5885 3390 figura_dib[2]=0x31;
chessdsbr 2:32e1e71f5885 3391 }
chessdsbr 2:32e1e71f5885 3392 else{
chessdsbr 2:32e1e71f5885 3393 figura_dib[2]=0x30;
chessdsbr 2:32e1e71f5885 3394 }
chessdsbr 2:32e1e71f5885 3395 }
chessdsbr 2:32e1e71f5885 3396 else if(l21==1){
chessdsbr 2:32e1e71f5885 3397 if(l22==1){
chessdsbr 2:32e1e71f5885 3398 if(l23==1){
chessdsbr 2:32e1e71f5885 3399 if(l24==1){
chessdsbr 2:32e1e71f5885 3400 figura_dib[2]=0x2F;
chessdsbr 2:32e1e71f5885 3401 }
chessdsbr 2:32e1e71f5885 3402 else{
chessdsbr 2:32e1e71f5885 3403 figura_dib[2]=0x2E;
chessdsbr 2:32e1e71f5885 3404 }
chessdsbr 2:32e1e71f5885 3405 }
chessdsbr 2:32e1e71f5885 3406 else if(l24==1){
chessdsbr 2:32e1e71f5885 3407 figura_dib[2]=0x2D;
chessdsbr 2:32e1e71f5885 3408 }
chessdsbr 2:32e1e71f5885 3409 else{
chessdsbr 2:32e1e71f5885 3410 figura_dib[2]=0x2C;
chessdsbr 2:32e1e71f5885 3411 }
chessdsbr 2:32e1e71f5885 3412 }
chessdsbr 2:32e1e71f5885 3413 else if(l23==1){
chessdsbr 2:32e1e71f5885 3414 if(l24==1){
chessdsbr 2:32e1e71f5885 3415 figura_dib[2]=0x2B;
chessdsbr 2:32e1e71f5885 3416 }
chessdsbr 2:32e1e71f5885 3417 else{
chessdsbr 2:32e1e71f5885 3418 figura_dib[2]=0x2A;
chessdsbr 2:32e1e71f5885 3419 }
chessdsbr 2:32e1e71f5885 3420 }
chessdsbr 2:32e1e71f5885 3421 else if(l24==1){
chessdsbr 2:32e1e71f5885 3422 figura_dib[2]=0x29;
chessdsbr 2:32e1e71f5885 3423 }
chessdsbr 2:32e1e71f5885 3424 else{
chessdsbr 2:32e1e71f5885 3425 figura_dib[2]=0x28;
chessdsbr 2:32e1e71f5885 3426 }
chessdsbr 2:32e1e71f5885 3427 }
chessdsbr 2:32e1e71f5885 3428 else if(l22==1){
chessdsbr 2:32e1e71f5885 3429 if(l23==1){
chessdsbr 2:32e1e71f5885 3430 if(l24==1){
chessdsbr 2:32e1e71f5885 3431 figura_dib[2]=0x27;
chessdsbr 2:32e1e71f5885 3432 }
chessdsbr 2:32e1e71f5885 3433 else{
chessdsbr 2:32e1e71f5885 3434 figura_dib[2]=0x26;
chessdsbr 2:32e1e71f5885 3435 }
chessdsbr 2:32e1e71f5885 3436 }
chessdsbr 2:32e1e71f5885 3437 else if(l24==1){
chessdsbr 2:32e1e71f5885 3438 figura_dib[2]=0x25;
chessdsbr 2:32e1e71f5885 3439 }
chessdsbr 2:32e1e71f5885 3440 else{
chessdsbr 2:32e1e71f5885 3441 figura_dib[2]=0x24;
chessdsbr 2:32e1e71f5885 3442 }
chessdsbr 2:32e1e71f5885 3443 }
chessdsbr 2:32e1e71f5885 3444 else if(l23==1){
chessdsbr 2:32e1e71f5885 3445 if(l24==1){
chessdsbr 2:32e1e71f5885 3446 figura_dib[2]=0x23;
chessdsbr 2:32e1e71f5885 3447 }
chessdsbr 2:32e1e71f5885 3448 else{
chessdsbr 2:32e1e71f5885 3449 figura_dib[2]=0x22;
chessdsbr 2:32e1e71f5885 3450 }
chessdsbr 2:32e1e71f5885 3451 }
chessdsbr 2:32e1e71f5885 3452 else if(l24==1){
chessdsbr 2:32e1e71f5885 3453 figura_dib[2]=0x21;
chessdsbr 2:32e1e71f5885 3454 }
chessdsbr 2:32e1e71f5885 3455 else{
chessdsbr 2:32e1e71f5885 3456 figura_dib[2]=0x20;
chessdsbr 2:32e1e71f5885 3457 }
chessdsbr 2:32e1e71f5885 3458 }
chessdsbr 2:32e1e71f5885 3459 else if(l20==1){
chessdsbr 2:32e1e71f5885 3460 if(l21==1){
chessdsbr 2:32e1e71f5885 3461 if(l22==1){
chessdsbr 2:32e1e71f5885 3462 if(l23==1){
chessdsbr 2:32e1e71f5885 3463 if(l24==1){
chessdsbr 2:32e1e71f5885 3464 figura_dib[2]=0x1F;
chessdsbr 2:32e1e71f5885 3465 }
chessdsbr 2:32e1e71f5885 3466 else{
chessdsbr 2:32e1e71f5885 3467 figura_dib[2]=0x1E;
chessdsbr 2:32e1e71f5885 3468 }
chessdsbr 2:32e1e71f5885 3469 }
chessdsbr 2:32e1e71f5885 3470 else if(l24==1){
chessdsbr 2:32e1e71f5885 3471 figura_dib[2]=0x1D;
chessdsbr 2:32e1e71f5885 3472 }
chessdsbr 2:32e1e71f5885 3473 else{
chessdsbr 2:32e1e71f5885 3474 figura_dib[2]=0x1C;
chessdsbr 2:32e1e71f5885 3475 }
chessdsbr 2:32e1e71f5885 3476 }
chessdsbr 2:32e1e71f5885 3477 else if(l23==1){
chessdsbr 2:32e1e71f5885 3478 if(l24==1){
chessdsbr 2:32e1e71f5885 3479 figura_dib[2]=0x1B;
chessdsbr 2:32e1e71f5885 3480 }
chessdsbr 2:32e1e71f5885 3481 else{
chessdsbr 2:32e1e71f5885 3482 figura_dib[2]=0x1A;
chessdsbr 2:32e1e71f5885 3483 }
chessdsbr 2:32e1e71f5885 3484 }
chessdsbr 2:32e1e71f5885 3485 else if(l24==1){
chessdsbr 2:32e1e71f5885 3486 figura_dib[2]=0x19;
chessdsbr 2:32e1e71f5885 3487 }
chessdsbr 2:32e1e71f5885 3488 else{
chessdsbr 2:32e1e71f5885 3489 figura_dib[2]=0x18;
chessdsbr 2:32e1e71f5885 3490 }
chessdsbr 2:32e1e71f5885 3491 }
chessdsbr 2:32e1e71f5885 3492 else if(l22==1){
chessdsbr 2:32e1e71f5885 3493 if(l23==1){
chessdsbr 2:32e1e71f5885 3494 if(l24==1){
chessdsbr 2:32e1e71f5885 3495 figura_dib[2]=0x17;
chessdsbr 2:32e1e71f5885 3496 }
chessdsbr 2:32e1e71f5885 3497 else{
chessdsbr 2:32e1e71f5885 3498 figura_dib[2]=0x16;
chessdsbr 2:32e1e71f5885 3499 }
chessdsbr 2:32e1e71f5885 3500 }
chessdsbr 2:32e1e71f5885 3501 else if(l24==1){
chessdsbr 2:32e1e71f5885 3502 figura_dib[2]=0x15;
chessdsbr 2:32e1e71f5885 3503 }
chessdsbr 2:32e1e71f5885 3504 else{
chessdsbr 2:32e1e71f5885 3505 figura_dib[2]=0x14;
chessdsbr 2:32e1e71f5885 3506 }
chessdsbr 2:32e1e71f5885 3507 }
chessdsbr 2:32e1e71f5885 3508 else if(l23==1){
chessdsbr 2:32e1e71f5885 3509 if(l24==1){
chessdsbr 2:32e1e71f5885 3510 figura_dib[2]=0x13;
chessdsbr 2:32e1e71f5885 3511 }
chessdsbr 2:32e1e71f5885 3512 else{
chessdsbr 2:32e1e71f5885 3513 figura_dib[2]=0x12;
chessdsbr 2:32e1e71f5885 3514 }
chessdsbr 2:32e1e71f5885 3515 }
chessdsbr 2:32e1e71f5885 3516 else if(l24==1){
chessdsbr 2:32e1e71f5885 3517 figura_dib[2]=0x11;
chessdsbr 2:32e1e71f5885 3518 }
chessdsbr 2:32e1e71f5885 3519 else{
chessdsbr 2:32e1e71f5885 3520 figura_dib[2]=0x10;
chessdsbr 2:32e1e71f5885 3521 }
chessdsbr 2:32e1e71f5885 3522 }
chessdsbr 2:32e1e71f5885 3523 else if(l21==1){
chessdsbr 2:32e1e71f5885 3524 if(l22==1){
chessdsbr 2:32e1e71f5885 3525 if(l23==1){
chessdsbr 2:32e1e71f5885 3526 if(l24==1){
chessdsbr 2:32e1e71f5885 3527 figura_dib[2]=0x0F;
chessdsbr 2:32e1e71f5885 3528 }
chessdsbr 2:32e1e71f5885 3529 else{
chessdsbr 2:32e1e71f5885 3530 figura_dib[2]=0x0E;
chessdsbr 2:32e1e71f5885 3531 }
chessdsbr 2:32e1e71f5885 3532 }
chessdsbr 2:32e1e71f5885 3533 else if(l24==1){
chessdsbr 2:32e1e71f5885 3534 figura_dib[2]=0x0D;
chessdsbr 2:32e1e71f5885 3535 }
chessdsbr 2:32e1e71f5885 3536 else{
chessdsbr 2:32e1e71f5885 3537 figura_dib[2]=0x0C;
chessdsbr 2:32e1e71f5885 3538 }
chessdsbr 2:32e1e71f5885 3539 }
chessdsbr 2:32e1e71f5885 3540 else if(l23==1){
chessdsbr 2:32e1e71f5885 3541 if(l24==1){
chessdsbr 2:32e1e71f5885 3542 figura_dib[2]=0x0B;
chessdsbr 2:32e1e71f5885 3543 }
chessdsbr 2:32e1e71f5885 3544 else{
chessdsbr 2:32e1e71f5885 3545 figura_dib[2]=0x0A;
chessdsbr 2:32e1e71f5885 3546 }
chessdsbr 2:32e1e71f5885 3547 }
chessdsbr 2:32e1e71f5885 3548 else if(l24==1){
chessdsbr 2:32e1e71f5885 3549 figura_dib[2]=0x09;
chessdsbr 2:32e1e71f5885 3550 }
chessdsbr 2:32e1e71f5885 3551 else{
chessdsbr 2:32e1e71f5885 3552 figura_dib[2]=0x08;
chessdsbr 2:32e1e71f5885 3553 }
chessdsbr 2:32e1e71f5885 3554 }
chessdsbr 2:32e1e71f5885 3555 else if(l22==1){
chessdsbr 2:32e1e71f5885 3556 if(l23==1){
chessdsbr 2:32e1e71f5885 3557 if(l24==1){
chessdsbr 2:32e1e71f5885 3558 figura_dib[2]=0x07;
chessdsbr 2:32e1e71f5885 3559 }
chessdsbr 2:32e1e71f5885 3560 else{
chessdsbr 2:32e1e71f5885 3561 figura_dib[2]=0x06;
chessdsbr 2:32e1e71f5885 3562 }
chessdsbr 2:32e1e71f5885 3563 }
chessdsbr 2:32e1e71f5885 3564 else if(l24==1){
chessdsbr 2:32e1e71f5885 3565 figura_dib[2]=0x05;
chessdsbr 2:32e1e71f5885 3566 }
chessdsbr 2:32e1e71f5885 3567 else{
chessdsbr 2:32e1e71f5885 3568 figura_dib[2]=0x04;
chessdsbr 2:32e1e71f5885 3569 }
chessdsbr 2:32e1e71f5885 3570 }
chessdsbr 2:32e1e71f5885 3571 else if(l23==1){
chessdsbr 2:32e1e71f5885 3572 if(l24==1){
chessdsbr 2:32e1e71f5885 3573 figura_dib[2]=0x03;
chessdsbr 2:32e1e71f5885 3574 }
chessdsbr 2:32e1e71f5885 3575 else{
chessdsbr 2:32e1e71f5885 3576 figura_dib[2]=0x02;
chessdsbr 2:32e1e71f5885 3577 }
chessdsbr 2:32e1e71f5885 3578 }
chessdsbr 2:32e1e71f5885 3579 else if(l24==1){
chessdsbr 2:32e1e71f5885 3580 figura_dib[2]=0x01;
chessdsbr 2:32e1e71f5885 3581 }
chessdsbr 2:32e1e71f5885 3582 else{
chessdsbr 2:32e1e71f5885 3583 figura_dib[2]=0x00;
chessdsbr 2:32e1e71f5885 3584 }
chessdsbr 2:32e1e71f5885 3585 /////
chessdsbr 2:32e1e71f5885 3586 ////
chessdsbr 2:32e1e71f5885 3587 ///
chessdsbr 2:32e1e71f5885 3588 //
chessdsbr 2:32e1e71f5885 3589 //fila 4
chessdsbr 2:32e1e71f5885 3590 //
chessdsbr 2:32e1e71f5885 3591 ///
chessdsbr 2:32e1e71f5885 3592 ////
chessdsbr 2:32e1e71f5885 3593 /////
chessdsbr 2:32e1e71f5885 3594 if(l25==1){
chessdsbr 2:32e1e71f5885 3595 if(l26==1){
chessdsbr 2:32e1e71f5885 3596 if(l27==1){
chessdsbr 2:32e1e71f5885 3597 if(l28==1){
chessdsbr 2:32e1e71f5885 3598 if(l29==1){
chessdsbr 2:32e1e71f5885 3599 if(l30==1){
chessdsbr 2:32e1e71f5885 3600 if(l31==1){
chessdsbr 2:32e1e71f5885 3601 if(l32==1){
chessdsbr 2:32e1e71f5885 3602 figura_dib[3]=0xFF;
chessdsbr 2:32e1e71f5885 3603 }
chessdsbr 2:32e1e71f5885 3604 else{
chessdsbr 2:32e1e71f5885 3605 figura_dib[3]=0xFE;
chessdsbr 2:32e1e71f5885 3606 }
chessdsbr 2:32e1e71f5885 3607 }
chessdsbr 2:32e1e71f5885 3608 else if(l32==1){
chessdsbr 2:32e1e71f5885 3609 figura_dib[3]=0xFD;
chessdsbr 2:32e1e71f5885 3610 }
chessdsbr 2:32e1e71f5885 3611 else{
chessdsbr 2:32e1e71f5885 3612 figura_dib[3]=0xFC;
chessdsbr 2:32e1e71f5885 3613 }
chessdsbr 2:32e1e71f5885 3614 }
chessdsbr 2:32e1e71f5885 3615 else if(l31==1){
chessdsbr 2:32e1e71f5885 3616 if(l32==1){
chessdsbr 2:32e1e71f5885 3617 figura_dib[3]=0xFB;
chessdsbr 2:32e1e71f5885 3618 }
chessdsbr 2:32e1e71f5885 3619 else{
chessdsbr 2:32e1e71f5885 3620 figura_dib[3]=0xFA;
chessdsbr 2:32e1e71f5885 3621 }
chessdsbr 2:32e1e71f5885 3622 }
chessdsbr 2:32e1e71f5885 3623 else if(l32==1){
chessdsbr 2:32e1e71f5885 3624 figura_dib[3]=0xF9;
chessdsbr 2:32e1e71f5885 3625 }
chessdsbr 2:32e1e71f5885 3626 else{
chessdsbr 2:32e1e71f5885 3627 figura_dib[3]=0xF8;
chessdsbr 2:32e1e71f5885 3628 }
chessdsbr 2:32e1e71f5885 3629 }
chessdsbr 2:32e1e71f5885 3630 else if(l30==1){
chessdsbr 2:32e1e71f5885 3631 if(l31==1){
chessdsbr 2:32e1e71f5885 3632 if(l32==1){
chessdsbr 2:32e1e71f5885 3633 figura_dib[3]=0xF7;
chessdsbr 2:32e1e71f5885 3634 }
chessdsbr 2:32e1e71f5885 3635 else{
chessdsbr 2:32e1e71f5885 3636 figura_dib[3]=0xF6;
chessdsbr 2:32e1e71f5885 3637 }
chessdsbr 2:32e1e71f5885 3638 }
chessdsbr 2:32e1e71f5885 3639 else if(l32==1){
chessdsbr 2:32e1e71f5885 3640 figura_dib[3]=0xF5;
chessdsbr 2:32e1e71f5885 3641 }
chessdsbr 2:32e1e71f5885 3642 else{
chessdsbr 2:32e1e71f5885 3643 figura_dib[3]=0xF4;
chessdsbr 2:32e1e71f5885 3644 }
chessdsbr 2:32e1e71f5885 3645 }
chessdsbr 2:32e1e71f5885 3646 else if(l31==1){
chessdsbr 2:32e1e71f5885 3647 if(l32==1){
chessdsbr 2:32e1e71f5885 3648 figura_dib[3]=0xF3;
chessdsbr 2:32e1e71f5885 3649 }
chessdsbr 2:32e1e71f5885 3650 else{
chessdsbr 2:32e1e71f5885 3651 figura_dib[3]=0xF2;
chessdsbr 2:32e1e71f5885 3652 }
chessdsbr 2:32e1e71f5885 3653 }
chessdsbr 2:32e1e71f5885 3654 else if(l32==1){
chessdsbr 2:32e1e71f5885 3655 figura_dib[3]=0xF1;
chessdsbr 2:32e1e71f5885 3656 }
chessdsbr 2:32e1e71f5885 3657 else{
chessdsbr 2:32e1e71f5885 3658 figura_dib[3]=0xF0;
chessdsbr 2:32e1e71f5885 3659 }
chessdsbr 2:32e1e71f5885 3660 }
chessdsbr 2:32e1e71f5885 3661 else if(l29==1){
chessdsbr 2:32e1e71f5885 3662 if(l30==1){
chessdsbr 2:32e1e71f5885 3663 if(l31==1){
chessdsbr 2:32e1e71f5885 3664 if(l32==1){
chessdsbr 2:32e1e71f5885 3665 figura_dib[3]=0xEF;
chessdsbr 2:32e1e71f5885 3666 }
chessdsbr 2:32e1e71f5885 3667 else{
chessdsbr 2:32e1e71f5885 3668 figura_dib[3]=0xEE;
chessdsbr 2:32e1e71f5885 3669 }
chessdsbr 2:32e1e71f5885 3670 }
chessdsbr 2:32e1e71f5885 3671 else if(l32==1){
chessdsbr 2:32e1e71f5885 3672 figura_dib[3]=0xED;
chessdsbr 2:32e1e71f5885 3673 }
chessdsbr 2:32e1e71f5885 3674 else{
chessdsbr 2:32e1e71f5885 3675 figura_dib[3]=0xEC;
chessdsbr 2:32e1e71f5885 3676 }
chessdsbr 2:32e1e71f5885 3677 }
chessdsbr 2:32e1e71f5885 3678 else if(l31==1){
chessdsbr 2:32e1e71f5885 3679 if(l32==1){
chessdsbr 2:32e1e71f5885 3680 figura_dib[3]=0xEB;
chessdsbr 2:32e1e71f5885 3681 }
chessdsbr 2:32e1e71f5885 3682 else{
chessdsbr 2:32e1e71f5885 3683 figura_dib[3]=0xEA;
chessdsbr 2:32e1e71f5885 3684 }
chessdsbr 2:32e1e71f5885 3685 }
chessdsbr 2:32e1e71f5885 3686 else if(l32==1){
chessdsbr 2:32e1e71f5885 3687 figura_dib[3]=0xE9;
chessdsbr 2:32e1e71f5885 3688 }
chessdsbr 2:32e1e71f5885 3689 else{
chessdsbr 2:32e1e71f5885 3690 figura_dib[3]=0xE8;
chessdsbr 2:32e1e71f5885 3691 }
chessdsbr 2:32e1e71f5885 3692 }
chessdsbr 2:32e1e71f5885 3693 else if(l30==1){
chessdsbr 2:32e1e71f5885 3694 if(l31==1){
chessdsbr 2:32e1e71f5885 3695 if(l32==1){
chessdsbr 2:32e1e71f5885 3696 figura_dib[3]=0xE7;
chessdsbr 2:32e1e71f5885 3697 }
chessdsbr 2:32e1e71f5885 3698 else{
chessdsbr 2:32e1e71f5885 3699 figura_dib[3]=0xE6;
chessdsbr 2:32e1e71f5885 3700 }
chessdsbr 2:32e1e71f5885 3701 }
chessdsbr 2:32e1e71f5885 3702 else if(l32==1){
chessdsbr 2:32e1e71f5885 3703 figura_dib[3]=0xE5;
chessdsbr 2:32e1e71f5885 3704 }
chessdsbr 2:32e1e71f5885 3705 else{
chessdsbr 2:32e1e71f5885 3706 figura_dib[3]=0xE4;
chessdsbr 2:32e1e71f5885 3707 }
chessdsbr 2:32e1e71f5885 3708 }
chessdsbr 2:32e1e71f5885 3709 else if(l31==1){
chessdsbr 2:32e1e71f5885 3710 if(l32==1){
chessdsbr 2:32e1e71f5885 3711 figura_dib[3]=0xE3;
chessdsbr 2:32e1e71f5885 3712 }
chessdsbr 2:32e1e71f5885 3713 else{
chessdsbr 2:32e1e71f5885 3714 figura_dib[3]=0xE2;
chessdsbr 2:32e1e71f5885 3715 }
chessdsbr 2:32e1e71f5885 3716 }
chessdsbr 2:32e1e71f5885 3717 else if(l32==1){
chessdsbr 2:32e1e71f5885 3718 figura_dib[3]=0xE1;
chessdsbr 2:32e1e71f5885 3719 }
chessdsbr 2:32e1e71f5885 3720 else{
chessdsbr 2:32e1e71f5885 3721 figura_dib[3]=0xE0;
chessdsbr 2:32e1e71f5885 3722 }
chessdsbr 2:32e1e71f5885 3723 }
chessdsbr 2:32e1e71f5885 3724 else if(l28==1){
chessdsbr 2:32e1e71f5885 3725 if(l29==1){
chessdsbr 2:32e1e71f5885 3726 if(l30==1){
chessdsbr 2:32e1e71f5885 3727 if(l31==1){
chessdsbr 2:32e1e71f5885 3728 if(l32==1){
chessdsbr 2:32e1e71f5885 3729 figura_dib[3]=0xDF;
chessdsbr 2:32e1e71f5885 3730 }
chessdsbr 2:32e1e71f5885 3731 else{
chessdsbr 2:32e1e71f5885 3732 figura_dib[3]=0xDE;
chessdsbr 2:32e1e71f5885 3733 }
chessdsbr 2:32e1e71f5885 3734 }
chessdsbr 2:32e1e71f5885 3735 else if(l32==1){
chessdsbr 2:32e1e71f5885 3736 figura_dib[3]=0xDD;
chessdsbr 2:32e1e71f5885 3737 }
chessdsbr 2:32e1e71f5885 3738 else{
chessdsbr 2:32e1e71f5885 3739 figura_dib[3]=0xDC;
chessdsbr 2:32e1e71f5885 3740 }
chessdsbr 2:32e1e71f5885 3741 }
chessdsbr 2:32e1e71f5885 3742 else if(l31==1){
chessdsbr 2:32e1e71f5885 3743 if(l32==1){
chessdsbr 2:32e1e71f5885 3744 figura_dib[3]=0xDB;
chessdsbr 2:32e1e71f5885 3745 }
chessdsbr 2:32e1e71f5885 3746 else{
chessdsbr 2:32e1e71f5885 3747 figura_dib[3]=0xDA;
chessdsbr 2:32e1e71f5885 3748 }
chessdsbr 2:32e1e71f5885 3749 }
chessdsbr 2:32e1e71f5885 3750 else if(l32==1){
chessdsbr 2:32e1e71f5885 3751 figura_dib[3]=0xD9;
chessdsbr 2:32e1e71f5885 3752 }
chessdsbr 2:32e1e71f5885 3753 else{
chessdsbr 2:32e1e71f5885 3754 figura_dib[3]=0xD8;
chessdsbr 2:32e1e71f5885 3755 }
chessdsbr 2:32e1e71f5885 3756 }
chessdsbr 2:32e1e71f5885 3757 else if(l30==1){
chessdsbr 2:32e1e71f5885 3758 if(l31==1){
chessdsbr 2:32e1e71f5885 3759 if(l32==1){
chessdsbr 2:32e1e71f5885 3760 figura_dib[3]=0xD7;
chessdsbr 2:32e1e71f5885 3761 }
chessdsbr 2:32e1e71f5885 3762 else{
chessdsbr 2:32e1e71f5885 3763 figura_dib[3]=0xD6;
chessdsbr 2:32e1e71f5885 3764 }
chessdsbr 2:32e1e71f5885 3765 }
chessdsbr 2:32e1e71f5885 3766 else if(l32==1){
chessdsbr 2:32e1e71f5885 3767 figura_dib[3]=0xD5;
chessdsbr 2:32e1e71f5885 3768 }
chessdsbr 2:32e1e71f5885 3769 else{
chessdsbr 2:32e1e71f5885 3770 figura_dib[3]=0xD4;
chessdsbr 2:32e1e71f5885 3771 }
chessdsbr 2:32e1e71f5885 3772 }
chessdsbr 2:32e1e71f5885 3773 else if(l31==1){
chessdsbr 2:32e1e71f5885 3774 if(l32==1){
chessdsbr 2:32e1e71f5885 3775 figura_dib[3]=0xD3;
chessdsbr 2:32e1e71f5885 3776 }
chessdsbr 2:32e1e71f5885 3777 else{
chessdsbr 2:32e1e71f5885 3778 figura_dib[3]=0xD2;
chessdsbr 2:32e1e71f5885 3779 }
chessdsbr 2:32e1e71f5885 3780 }
chessdsbr 2:32e1e71f5885 3781 else if(l32==1){
chessdsbr 2:32e1e71f5885 3782 figura_dib[3]=0xD1;
chessdsbr 2:32e1e71f5885 3783 }
chessdsbr 2:32e1e71f5885 3784 else{
chessdsbr 2:32e1e71f5885 3785 figura_dib[3]=0xD0;
chessdsbr 2:32e1e71f5885 3786 }
chessdsbr 2:32e1e71f5885 3787 }
chessdsbr 2:32e1e71f5885 3788 else if(l29==1){
chessdsbr 2:32e1e71f5885 3789 if(l30==1){
chessdsbr 2:32e1e71f5885 3790 if(l31==1){
chessdsbr 2:32e1e71f5885 3791 if(l32==1){
chessdsbr 2:32e1e71f5885 3792 figura_dib[3]=0xCF;
chessdsbr 2:32e1e71f5885 3793 }
chessdsbr 2:32e1e71f5885 3794 else{
chessdsbr 2:32e1e71f5885 3795 figura_dib[3]=0xCE;
chessdsbr 2:32e1e71f5885 3796 }
chessdsbr 2:32e1e71f5885 3797 }
chessdsbr 2:32e1e71f5885 3798 else if(l32==1){
chessdsbr 2:32e1e71f5885 3799 figura_dib[3]=0xCD;
chessdsbr 2:32e1e71f5885 3800 }
chessdsbr 2:32e1e71f5885 3801 else{
chessdsbr 2:32e1e71f5885 3802 figura_dib[3]=0xCC;
chessdsbr 2:32e1e71f5885 3803 }
chessdsbr 2:32e1e71f5885 3804 }
chessdsbr 2:32e1e71f5885 3805 else if(l31==1){
chessdsbr 2:32e1e71f5885 3806 if(l32==1){
chessdsbr 2:32e1e71f5885 3807 figura_dib[3]=0xCB;
chessdsbr 2:32e1e71f5885 3808 }
chessdsbr 2:32e1e71f5885 3809 else{
chessdsbr 2:32e1e71f5885 3810 figura_dib[3]=0xCA;
chessdsbr 2:32e1e71f5885 3811 }
chessdsbr 2:32e1e71f5885 3812 }
chessdsbr 2:32e1e71f5885 3813 else if(l32==1){
chessdsbr 2:32e1e71f5885 3814 figura_dib[3]=0xC9;
chessdsbr 2:32e1e71f5885 3815 }
chessdsbr 2:32e1e71f5885 3816 else{
chessdsbr 2:32e1e71f5885 3817 figura_dib[3]=0xC8;
chessdsbr 2:32e1e71f5885 3818 }
chessdsbr 2:32e1e71f5885 3819 }
chessdsbr 2:32e1e71f5885 3820 else if(l30==1){
chessdsbr 2:32e1e71f5885 3821 if(l31==1){
chessdsbr 2:32e1e71f5885 3822 if(l32==1){
chessdsbr 2:32e1e71f5885 3823 figura_dib[3]=0xC7;
chessdsbr 2:32e1e71f5885 3824 }
chessdsbr 2:32e1e71f5885 3825 else{
chessdsbr 2:32e1e71f5885 3826 figura_dib[3]=0xC6;
chessdsbr 2:32e1e71f5885 3827 }
chessdsbr 2:32e1e71f5885 3828 }
chessdsbr 2:32e1e71f5885 3829 else if(l32==1){
chessdsbr 2:32e1e71f5885 3830 figura_dib[3]=0xC5;
chessdsbr 2:32e1e71f5885 3831 }
chessdsbr 2:32e1e71f5885 3832 else{
chessdsbr 2:32e1e71f5885 3833 figura_dib[3]=0xC4;
chessdsbr 2:32e1e71f5885 3834 }
chessdsbr 2:32e1e71f5885 3835 }
chessdsbr 2:32e1e71f5885 3836 else if(l31==1){
chessdsbr 2:32e1e71f5885 3837 if(l32==1){
chessdsbr 2:32e1e71f5885 3838 figura_dib[3]=0xC3;
chessdsbr 2:32e1e71f5885 3839 }
chessdsbr 2:32e1e71f5885 3840 else{
chessdsbr 2:32e1e71f5885 3841 figura_dib[3]=0xC2;
chessdsbr 2:32e1e71f5885 3842 }
chessdsbr 2:32e1e71f5885 3843 }
chessdsbr 2:32e1e71f5885 3844 else if(l32==1){
chessdsbr 2:32e1e71f5885 3845 figura_dib[3]=0xC1;
chessdsbr 2:32e1e71f5885 3846 }
chessdsbr 2:32e1e71f5885 3847 else{
chessdsbr 2:32e1e71f5885 3848 figura_dib[3]=0xC0;
chessdsbr 2:32e1e71f5885 3849 }
chessdsbr 2:32e1e71f5885 3850 }
chessdsbr 2:32e1e71f5885 3851 else if(l27==1){
chessdsbr 2:32e1e71f5885 3852 if(l28==1){
chessdsbr 2:32e1e71f5885 3853 if(l29==1){
chessdsbr 2:32e1e71f5885 3854 if(l30==1){
chessdsbr 2:32e1e71f5885 3855 if(l31==1){
chessdsbr 2:32e1e71f5885 3856 if(l32==1){
chessdsbr 2:32e1e71f5885 3857 figura_dib[3]=0xBF;
chessdsbr 2:32e1e71f5885 3858 }
chessdsbr 2:32e1e71f5885 3859 else{
chessdsbr 2:32e1e71f5885 3860 figura_dib[3]=0xBE;
chessdsbr 2:32e1e71f5885 3861 }
chessdsbr 2:32e1e71f5885 3862 }
chessdsbr 2:32e1e71f5885 3863 else if(l32==1){
chessdsbr 2:32e1e71f5885 3864 figura_dib[3]=0xBD;
chessdsbr 2:32e1e71f5885 3865 }
chessdsbr 2:32e1e71f5885 3866 else{
chessdsbr 2:32e1e71f5885 3867 figura_dib[3]=0xBC;
chessdsbr 2:32e1e71f5885 3868 }
chessdsbr 2:32e1e71f5885 3869 }
chessdsbr 2:32e1e71f5885 3870 else if(l31==1){
chessdsbr 2:32e1e71f5885 3871 if(l32==1){
chessdsbr 2:32e1e71f5885 3872 figura_dib[3]=0xBB;
chessdsbr 2:32e1e71f5885 3873 }
chessdsbr 2:32e1e71f5885 3874 else{
chessdsbr 2:32e1e71f5885 3875 figura_dib[3]=0xBA;
chessdsbr 2:32e1e71f5885 3876 }
chessdsbr 2:32e1e71f5885 3877 }
chessdsbr 2:32e1e71f5885 3878 else if(l32==1){
chessdsbr 2:32e1e71f5885 3879 figura_dib[3]=0xB9;
chessdsbr 2:32e1e71f5885 3880 }
chessdsbr 2:32e1e71f5885 3881 else{
chessdsbr 2:32e1e71f5885 3882 figura_dib[3]=0xB8;
chessdsbr 2:32e1e71f5885 3883 }
chessdsbr 2:32e1e71f5885 3884 }
chessdsbr 2:32e1e71f5885 3885 else if(l30==1){
chessdsbr 2:32e1e71f5885 3886 if(l31==1){
chessdsbr 2:32e1e71f5885 3887 if(l32==1){
chessdsbr 2:32e1e71f5885 3888 figura_dib[3]=0xB7;
chessdsbr 2:32e1e71f5885 3889 }
chessdsbr 2:32e1e71f5885 3890 else{
chessdsbr 2:32e1e71f5885 3891 figura_dib[3]=0xB6;
chessdsbr 2:32e1e71f5885 3892 }
chessdsbr 2:32e1e71f5885 3893 }
chessdsbr 2:32e1e71f5885 3894 else if(l32==1){
chessdsbr 2:32e1e71f5885 3895 figura_dib[3]=0xB5;
chessdsbr 2:32e1e71f5885 3896 }
chessdsbr 2:32e1e71f5885 3897 else{
chessdsbr 2:32e1e71f5885 3898 figura_dib[3]=0xB4;
chessdsbr 2:32e1e71f5885 3899 }
chessdsbr 2:32e1e71f5885 3900 }
chessdsbr 2:32e1e71f5885 3901 else if(l31==1){
chessdsbr 2:32e1e71f5885 3902 if(l32==1){
chessdsbr 2:32e1e71f5885 3903 figura_dib[3]=0xB3;
chessdsbr 2:32e1e71f5885 3904 }
chessdsbr 2:32e1e71f5885 3905 else{
chessdsbr 2:32e1e71f5885 3906 figura_dib[3]=0xB2;
chessdsbr 2:32e1e71f5885 3907 }
chessdsbr 2:32e1e71f5885 3908 }
chessdsbr 2:32e1e71f5885 3909 else if(l32==1){
chessdsbr 2:32e1e71f5885 3910 figura_dib[3]=0xB1;
chessdsbr 2:32e1e71f5885 3911 }
chessdsbr 2:32e1e71f5885 3912 else{
chessdsbr 2:32e1e71f5885 3913 figura_dib[3]=0xB0;
chessdsbr 2:32e1e71f5885 3914 }
chessdsbr 2:32e1e71f5885 3915 }
chessdsbr 2:32e1e71f5885 3916 else if(l29==1){
chessdsbr 2:32e1e71f5885 3917 if(l30==1){
chessdsbr 2:32e1e71f5885 3918 if(l31==1){
chessdsbr 2:32e1e71f5885 3919 if(l32==1){
chessdsbr 2:32e1e71f5885 3920 figura_dib[3]=0xAF;
chessdsbr 2:32e1e71f5885 3921 }
chessdsbr 2:32e1e71f5885 3922 else{
chessdsbr 2:32e1e71f5885 3923 figura_dib[3]=0xAE;
chessdsbr 2:32e1e71f5885 3924 }
chessdsbr 2:32e1e71f5885 3925 }
chessdsbr 2:32e1e71f5885 3926 else if(l32==1){
chessdsbr 2:32e1e71f5885 3927 figura_dib[3]=0xAD;
chessdsbr 2:32e1e71f5885 3928 }
chessdsbr 2:32e1e71f5885 3929 else{
chessdsbr 2:32e1e71f5885 3930 figura_dib[3]=0xAC;
chessdsbr 2:32e1e71f5885 3931 }
chessdsbr 2:32e1e71f5885 3932 }
chessdsbr 2:32e1e71f5885 3933 else if(l31==1){
chessdsbr 2:32e1e71f5885 3934 if(l32==1){
chessdsbr 2:32e1e71f5885 3935 figura_dib[3]=0xAB;
chessdsbr 2:32e1e71f5885 3936 }
chessdsbr 2:32e1e71f5885 3937 else{
chessdsbr 2:32e1e71f5885 3938 figura_dib[3]=0xAA;
chessdsbr 2:32e1e71f5885 3939 }
chessdsbr 2:32e1e71f5885 3940 }
chessdsbr 2:32e1e71f5885 3941 else if(l32==1){
chessdsbr 2:32e1e71f5885 3942 figura_dib[3]=0xA9;
chessdsbr 2:32e1e71f5885 3943 }
chessdsbr 2:32e1e71f5885 3944 else{
chessdsbr 2:32e1e71f5885 3945 figura_dib[3]=0xA8;
chessdsbr 2:32e1e71f5885 3946 }
chessdsbr 2:32e1e71f5885 3947 }
chessdsbr 2:32e1e71f5885 3948 else if(l30==1){
chessdsbr 2:32e1e71f5885 3949 if(l31==1){
chessdsbr 2:32e1e71f5885 3950 if(l32==1){
chessdsbr 2:32e1e71f5885 3951 figura_dib[3]=0xA7;
chessdsbr 2:32e1e71f5885 3952 }
chessdsbr 2:32e1e71f5885 3953 else{
chessdsbr 2:32e1e71f5885 3954 figura_dib[3]=0xA6;
chessdsbr 2:32e1e71f5885 3955 }
chessdsbr 2:32e1e71f5885 3956 }
chessdsbr 2:32e1e71f5885 3957 else if(l32==1){
chessdsbr 2:32e1e71f5885 3958 figura_dib[3]=0xA5;
chessdsbr 2:32e1e71f5885 3959 }
chessdsbr 2:32e1e71f5885 3960 else{
chessdsbr 2:32e1e71f5885 3961 figura_dib[3]=0xA4;
chessdsbr 2:32e1e71f5885 3962 }
chessdsbr 2:32e1e71f5885 3963 }
chessdsbr 2:32e1e71f5885 3964 else if(l31==1){
chessdsbr 2:32e1e71f5885 3965 if(l32==1){
chessdsbr 2:32e1e71f5885 3966 figura_dib[3]=0xA3;
chessdsbr 2:32e1e71f5885 3967 }
chessdsbr 2:32e1e71f5885 3968 else{
chessdsbr 2:32e1e71f5885 3969 figura_dib[3]=0xA2;
chessdsbr 2:32e1e71f5885 3970 }
chessdsbr 2:32e1e71f5885 3971 }
chessdsbr 2:32e1e71f5885 3972 else if(l32==1){
chessdsbr 2:32e1e71f5885 3973 figura_dib[3]=0xA1;
chessdsbr 2:32e1e71f5885 3974 }
chessdsbr 2:32e1e71f5885 3975 else{
chessdsbr 2:32e1e71f5885 3976 figura_dib[3]=0xA0;
chessdsbr 2:32e1e71f5885 3977 }
chessdsbr 2:32e1e71f5885 3978 }
chessdsbr 2:32e1e71f5885 3979 else if(l28==1){
chessdsbr 2:32e1e71f5885 3980 if(l29==1){
chessdsbr 2:32e1e71f5885 3981 if(l30==1){
chessdsbr 2:32e1e71f5885 3982 if(l31==1){
chessdsbr 2:32e1e71f5885 3983 if(l32==1){
chessdsbr 2:32e1e71f5885 3984 figura_dib[3]=0x9F;
chessdsbr 2:32e1e71f5885 3985 }
chessdsbr 2:32e1e71f5885 3986 else{
chessdsbr 2:32e1e71f5885 3987 figura_dib[3]=0x9E;
chessdsbr 2:32e1e71f5885 3988 }
chessdsbr 2:32e1e71f5885 3989 }
chessdsbr 2:32e1e71f5885 3990 else if(l32==1){
chessdsbr 2:32e1e71f5885 3991 figura_dib[3]=0x9D;
chessdsbr 2:32e1e71f5885 3992 }
chessdsbr 2:32e1e71f5885 3993 else{
chessdsbr 2:32e1e71f5885 3994 figura_dib[3]=0x9C;
chessdsbr 2:32e1e71f5885 3995 }
chessdsbr 2:32e1e71f5885 3996 }
chessdsbr 2:32e1e71f5885 3997 else if(l31==1){
chessdsbr 2:32e1e71f5885 3998 if(l32==1){
chessdsbr 2:32e1e71f5885 3999 figura_dib[3]=0x9B;
chessdsbr 2:32e1e71f5885 4000 }
chessdsbr 2:32e1e71f5885 4001 else{
chessdsbr 2:32e1e71f5885 4002 figura_dib[3]=0x9A;
chessdsbr 2:32e1e71f5885 4003 }
chessdsbr 2:32e1e71f5885 4004 }
chessdsbr 2:32e1e71f5885 4005 else if(l32==1){
chessdsbr 2:32e1e71f5885 4006 figura_dib[3]=0x99;
chessdsbr 2:32e1e71f5885 4007 }
chessdsbr 2:32e1e71f5885 4008 else{
chessdsbr 2:32e1e71f5885 4009 figura_dib[3]=0x98;
chessdsbr 2:32e1e71f5885 4010 }
chessdsbr 2:32e1e71f5885 4011 }
chessdsbr 2:32e1e71f5885 4012 else if(l30==1){
chessdsbr 2:32e1e71f5885 4013 if(l31==1){
chessdsbr 2:32e1e71f5885 4014 if(l32==1){
chessdsbr 2:32e1e71f5885 4015 figura_dib[3]=0x97;
chessdsbr 2:32e1e71f5885 4016 }
chessdsbr 2:32e1e71f5885 4017 else{
chessdsbr 2:32e1e71f5885 4018 figura_dib[3]=0x96;
chessdsbr 2:32e1e71f5885 4019 }
chessdsbr 2:32e1e71f5885 4020 }
chessdsbr 2:32e1e71f5885 4021 else if(l32==1){
chessdsbr 2:32e1e71f5885 4022 figura_dib[3]=0x95;
chessdsbr 2:32e1e71f5885 4023 }
chessdsbr 2:32e1e71f5885 4024 else{
chessdsbr 2:32e1e71f5885 4025 figura_dib[3]=0x94;
chessdsbr 2:32e1e71f5885 4026 }
chessdsbr 2:32e1e71f5885 4027 }
chessdsbr 2:32e1e71f5885 4028 else if(l31==1){
chessdsbr 2:32e1e71f5885 4029 if(l32==1){
chessdsbr 2:32e1e71f5885 4030 figura_dib[3]=0x93;
chessdsbr 2:32e1e71f5885 4031 }
chessdsbr 2:32e1e71f5885 4032 else{
chessdsbr 2:32e1e71f5885 4033 figura_dib[3]=0x92;
chessdsbr 2:32e1e71f5885 4034 }
chessdsbr 2:32e1e71f5885 4035 }
chessdsbr 2:32e1e71f5885 4036 else if(l32==1){
chessdsbr 2:32e1e71f5885 4037 figura_dib[3]=0x91;
chessdsbr 2:32e1e71f5885 4038 }
chessdsbr 2:32e1e71f5885 4039 else{
chessdsbr 2:32e1e71f5885 4040 figura_dib[3]=0x90;
chessdsbr 2:32e1e71f5885 4041 }
chessdsbr 2:32e1e71f5885 4042 }
chessdsbr 2:32e1e71f5885 4043 else if(l29==1){
chessdsbr 2:32e1e71f5885 4044 if(l30==1){
chessdsbr 2:32e1e71f5885 4045 if(l31==1){
chessdsbr 2:32e1e71f5885 4046 if(l32==1){
chessdsbr 2:32e1e71f5885 4047 figura_dib[3]=0x8F;
chessdsbr 2:32e1e71f5885 4048 }
chessdsbr 2:32e1e71f5885 4049 else{
chessdsbr 2:32e1e71f5885 4050 figura_dib[3]=0x8E;
chessdsbr 2:32e1e71f5885 4051 }
chessdsbr 2:32e1e71f5885 4052 }
chessdsbr 2:32e1e71f5885 4053 else if(l32==1){
chessdsbr 2:32e1e71f5885 4054 figura_dib[3]=0x8D;
chessdsbr 2:32e1e71f5885 4055 }
chessdsbr 2:32e1e71f5885 4056 else{
chessdsbr 2:32e1e71f5885 4057 figura_dib[3]=0x8C;
chessdsbr 2:32e1e71f5885 4058 }
chessdsbr 2:32e1e71f5885 4059 }
chessdsbr 2:32e1e71f5885 4060 else if(l31==1){
chessdsbr 2:32e1e71f5885 4061 if(l32==1){
chessdsbr 2:32e1e71f5885 4062 figura_dib[3]=0x8B;
chessdsbr 2:32e1e71f5885 4063 }
chessdsbr 2:32e1e71f5885 4064 else{
chessdsbr 2:32e1e71f5885 4065 figura_dib[3]=0x8A;
chessdsbr 2:32e1e71f5885 4066 }
chessdsbr 2:32e1e71f5885 4067 }
chessdsbr 2:32e1e71f5885 4068 else if(l32==1){
chessdsbr 2:32e1e71f5885 4069 figura_dib[3]=0x89;
chessdsbr 2:32e1e71f5885 4070 }
chessdsbr 2:32e1e71f5885 4071 else{
chessdsbr 2:32e1e71f5885 4072 figura_dib[3]=0x88;
chessdsbr 2:32e1e71f5885 4073 }
chessdsbr 2:32e1e71f5885 4074 }
chessdsbr 2:32e1e71f5885 4075 else if(l30==1){
chessdsbr 2:32e1e71f5885 4076 if(l31==1){
chessdsbr 2:32e1e71f5885 4077 if(l32==1){
chessdsbr 2:32e1e71f5885 4078 figura_dib[3]=0x87;
chessdsbr 2:32e1e71f5885 4079 }
chessdsbr 2:32e1e71f5885 4080 else{
chessdsbr 2:32e1e71f5885 4081 figura_dib[3]=0x86;
chessdsbr 2:32e1e71f5885 4082 }
chessdsbr 2:32e1e71f5885 4083 }
chessdsbr 2:32e1e71f5885 4084 else if(l32==1){
chessdsbr 2:32e1e71f5885 4085 figura_dib[3]=0x85;
chessdsbr 2:32e1e71f5885 4086 }
chessdsbr 2:32e1e71f5885 4087 else{
chessdsbr 2:32e1e71f5885 4088 figura_dib[3]=0x84;
chessdsbr 2:32e1e71f5885 4089 }
chessdsbr 2:32e1e71f5885 4090 }
chessdsbr 2:32e1e71f5885 4091 else if(l31==1){
chessdsbr 2:32e1e71f5885 4092 if(l32==1){
chessdsbr 2:32e1e71f5885 4093 figura_dib[3]=0x83;
chessdsbr 2:32e1e71f5885 4094 }
chessdsbr 2:32e1e71f5885 4095 else{
chessdsbr 2:32e1e71f5885 4096 figura_dib[3]=0x82;
chessdsbr 2:32e1e71f5885 4097 }
chessdsbr 2:32e1e71f5885 4098 }
chessdsbr 2:32e1e71f5885 4099 else if(l32==1){
chessdsbr 2:32e1e71f5885 4100 figura_dib[3]=0x81;
chessdsbr 2:32e1e71f5885 4101 }
chessdsbr 2:32e1e71f5885 4102 else{
chessdsbr 2:32e1e71f5885 4103 figura_dib[3]=0x80;
chessdsbr 2:32e1e71f5885 4104 }
chessdsbr 2:32e1e71f5885 4105 }
chessdsbr 2:32e1e71f5885 4106 else if(l26==1){
chessdsbr 2:32e1e71f5885 4107 if(l27==1){
chessdsbr 2:32e1e71f5885 4108 if(l28==1){
chessdsbr 2:32e1e71f5885 4109 if(l29==1){
chessdsbr 2:32e1e71f5885 4110 if(l30==1){
chessdsbr 2:32e1e71f5885 4111 if(l31==1){
chessdsbr 2:32e1e71f5885 4112 if(l32==1){
chessdsbr 2:32e1e71f5885 4113 figura_dib[3]=0x7F;
chessdsbr 2:32e1e71f5885 4114 }
chessdsbr 2:32e1e71f5885 4115 else{
chessdsbr 2:32e1e71f5885 4116 figura_dib[3]=0x7E;
chessdsbr 2:32e1e71f5885 4117 }
chessdsbr 2:32e1e71f5885 4118 }
chessdsbr 2:32e1e71f5885 4119 else if(l32==1){
chessdsbr 2:32e1e71f5885 4120 figura_dib[3]=0x7D;
chessdsbr 2:32e1e71f5885 4121 }
chessdsbr 2:32e1e71f5885 4122 else{
chessdsbr 2:32e1e71f5885 4123 figura_dib[3]=0x7C;
chessdsbr 2:32e1e71f5885 4124 }
chessdsbr 2:32e1e71f5885 4125 }
chessdsbr 2:32e1e71f5885 4126 else if(l31==1){
chessdsbr 2:32e1e71f5885 4127 if(l32==1){
chessdsbr 2:32e1e71f5885 4128 figura_dib[3]=0x7B;
chessdsbr 2:32e1e71f5885 4129 }
chessdsbr 2:32e1e71f5885 4130 else{
chessdsbr 2:32e1e71f5885 4131 figura_dib[3]=0x7A;
chessdsbr 2:32e1e71f5885 4132 }
chessdsbr 2:32e1e71f5885 4133 }
chessdsbr 2:32e1e71f5885 4134 else if(l32==1){
chessdsbr 2:32e1e71f5885 4135 figura_dib[3]=0x79;
chessdsbr 2:32e1e71f5885 4136 }
chessdsbr 2:32e1e71f5885 4137 else{
chessdsbr 2:32e1e71f5885 4138 figura_dib[3]=0x78;
chessdsbr 2:32e1e71f5885 4139 }
chessdsbr 2:32e1e71f5885 4140 }
chessdsbr 2:32e1e71f5885 4141 else if(l30==1){
chessdsbr 2:32e1e71f5885 4142 if(l31==1){
chessdsbr 2:32e1e71f5885 4143 if(l32==1){
chessdsbr 2:32e1e71f5885 4144 figura_dib[3]=0x77;
chessdsbr 2:32e1e71f5885 4145 }
chessdsbr 2:32e1e71f5885 4146 else{
chessdsbr 2:32e1e71f5885 4147 figura_dib[3]=0x76;
chessdsbr 2:32e1e71f5885 4148 }
chessdsbr 2:32e1e71f5885 4149 }
chessdsbr 2:32e1e71f5885 4150 else if(l32==1){
chessdsbr 2:32e1e71f5885 4151 figura_dib[3]=0x75;
chessdsbr 2:32e1e71f5885 4152 }
chessdsbr 2:32e1e71f5885 4153 else{
chessdsbr 2:32e1e71f5885 4154 figura_dib[3]=0x74;
chessdsbr 2:32e1e71f5885 4155 }
chessdsbr 2:32e1e71f5885 4156 }
chessdsbr 2:32e1e71f5885 4157 else if(l31==1){
chessdsbr 2:32e1e71f5885 4158 if(l32==1){
chessdsbr 2:32e1e71f5885 4159 figura_dib[3]=0x73;
chessdsbr 2:32e1e71f5885 4160 }
chessdsbr 2:32e1e71f5885 4161 else{
chessdsbr 2:32e1e71f5885 4162 figura_dib[3]=0x72;
chessdsbr 2:32e1e71f5885 4163 }
chessdsbr 2:32e1e71f5885 4164 }
chessdsbr 2:32e1e71f5885 4165 else if(l32==1){
chessdsbr 2:32e1e71f5885 4166 figura_dib[3]=0x71;
chessdsbr 2:32e1e71f5885 4167 }
chessdsbr 2:32e1e71f5885 4168 else{
chessdsbr 2:32e1e71f5885 4169 figura_dib[3]=0x70;
chessdsbr 2:32e1e71f5885 4170 }
chessdsbr 2:32e1e71f5885 4171 }
chessdsbr 2:32e1e71f5885 4172 else if(l29==1){
chessdsbr 2:32e1e71f5885 4173 if(l30==1){
chessdsbr 2:32e1e71f5885 4174 if(l31==1){
chessdsbr 2:32e1e71f5885 4175 if(l30==1){
chessdsbr 2:32e1e71f5885 4176 figura_dib[3]=0x6F;
chessdsbr 2:32e1e71f5885 4177 }
chessdsbr 2:32e1e71f5885 4178 else{
chessdsbr 2:32e1e71f5885 4179 figura_dib[3]=0x6E;
chessdsbr 2:32e1e71f5885 4180 }
chessdsbr 2:32e1e71f5885 4181 }
chessdsbr 2:32e1e71f5885 4182 else if(l32==1){
chessdsbr 2:32e1e71f5885 4183 figura_dib[3]=0x6D;
chessdsbr 2:32e1e71f5885 4184 }
chessdsbr 2:32e1e71f5885 4185 else{
chessdsbr 2:32e1e71f5885 4186 figura_dib[3]=0x6C;
chessdsbr 2:32e1e71f5885 4187 }
chessdsbr 2:32e1e71f5885 4188 }
chessdsbr 2:32e1e71f5885 4189 else if(l31==1){
chessdsbr 2:32e1e71f5885 4190 if(l32==1){
chessdsbr 2:32e1e71f5885 4191 figura_dib[3]=0x6B;
chessdsbr 2:32e1e71f5885 4192 }
chessdsbr 2:32e1e71f5885 4193 else{
chessdsbr 2:32e1e71f5885 4194 figura_dib[3]=0x6A;
chessdsbr 2:32e1e71f5885 4195 }
chessdsbr 2:32e1e71f5885 4196 }
chessdsbr 2:32e1e71f5885 4197 else if(l32==1){
chessdsbr 2:32e1e71f5885 4198 figura_dib[3]=0x69;
chessdsbr 2:32e1e71f5885 4199 }
chessdsbr 2:32e1e71f5885 4200 else{
chessdsbr 2:32e1e71f5885 4201 figura_dib[3]=0x68;
chessdsbr 2:32e1e71f5885 4202 }
chessdsbr 2:32e1e71f5885 4203 }
chessdsbr 2:32e1e71f5885 4204 else if(l30==1){
chessdsbr 2:32e1e71f5885 4205 if(l31==1){
chessdsbr 2:32e1e71f5885 4206 if(l32==1){
chessdsbr 2:32e1e71f5885 4207 figura_dib[3]=0x67;
chessdsbr 2:32e1e71f5885 4208 }
chessdsbr 2:32e1e71f5885 4209 else{
chessdsbr 2:32e1e71f5885 4210 figura_dib[3]=0x66;
chessdsbr 2:32e1e71f5885 4211 }
chessdsbr 2:32e1e71f5885 4212 }
chessdsbr 2:32e1e71f5885 4213 else if(l32==1){
chessdsbr 2:32e1e71f5885 4214 figura_dib[3]=0x65;
chessdsbr 2:32e1e71f5885 4215 }
chessdsbr 2:32e1e71f5885 4216 else{
chessdsbr 2:32e1e71f5885 4217 figura_dib[3]=0x64;
chessdsbr 2:32e1e71f5885 4218 }
chessdsbr 2:32e1e71f5885 4219 }
chessdsbr 2:32e1e71f5885 4220 else if(l31==1){
chessdsbr 2:32e1e71f5885 4221 if(l32==1){
chessdsbr 2:32e1e71f5885 4222 figura_dib[3]=0x63;
chessdsbr 2:32e1e71f5885 4223 }
chessdsbr 2:32e1e71f5885 4224 else{
chessdsbr 2:32e1e71f5885 4225 figura_dib[3]=0x62;
chessdsbr 2:32e1e71f5885 4226 }
chessdsbr 2:32e1e71f5885 4227 }
chessdsbr 2:32e1e71f5885 4228 else if(l32==1){
chessdsbr 2:32e1e71f5885 4229 figura_dib[3]=0x61;
chessdsbr 2:32e1e71f5885 4230 }
chessdsbr 2:32e1e71f5885 4231 else{
chessdsbr 2:32e1e71f5885 4232 figura_dib[3]=0x60;
chessdsbr 2:32e1e71f5885 4233 }
chessdsbr 2:32e1e71f5885 4234 }
chessdsbr 2:32e1e71f5885 4235 else if(l28==1){
chessdsbr 2:32e1e71f5885 4236 if(l29==1){
chessdsbr 2:32e1e71f5885 4237 if(l30==1){
chessdsbr 2:32e1e71f5885 4238 if(l31==1){
chessdsbr 2:32e1e71f5885 4239 if(l32==1){
chessdsbr 2:32e1e71f5885 4240 figura_dib[3]=0x5F;
chessdsbr 2:32e1e71f5885 4241 }
chessdsbr 2:32e1e71f5885 4242 else{
chessdsbr 2:32e1e71f5885 4243 figura_dib[3]=0x5E;
chessdsbr 2:32e1e71f5885 4244 }
chessdsbr 2:32e1e71f5885 4245 }
chessdsbr 2:32e1e71f5885 4246 else if(l32==1){
chessdsbr 2:32e1e71f5885 4247 figura_dib[3]=0x5D;
chessdsbr 2:32e1e71f5885 4248 }
chessdsbr 2:32e1e71f5885 4249 else{
chessdsbr 2:32e1e71f5885 4250 figura_dib[3]=0x5C;
chessdsbr 2:32e1e71f5885 4251 }
chessdsbr 2:32e1e71f5885 4252 }
chessdsbr 2:32e1e71f5885 4253 else if(l31==1){
chessdsbr 2:32e1e71f5885 4254 if(l32==1){
chessdsbr 2:32e1e71f5885 4255 figura_dib[3]=0x5B;
chessdsbr 2:32e1e71f5885 4256 }
chessdsbr 2:32e1e71f5885 4257 else{
chessdsbr 2:32e1e71f5885 4258 figura_dib[3]=0x5A;
chessdsbr 2:32e1e71f5885 4259 }
chessdsbr 2:32e1e71f5885 4260 }
chessdsbr 2:32e1e71f5885 4261 else if(l32==1){
chessdsbr 2:32e1e71f5885 4262 figura_dib[3]=0x59;
chessdsbr 2:32e1e71f5885 4263 }
chessdsbr 2:32e1e71f5885 4264 else{
chessdsbr 2:32e1e71f5885 4265 figura_dib[3]=0x58;
chessdsbr 2:32e1e71f5885 4266 }
chessdsbr 2:32e1e71f5885 4267 }
chessdsbr 2:32e1e71f5885 4268 else if(l30==1){
chessdsbr 2:32e1e71f5885 4269 if(l31==1){
chessdsbr 2:32e1e71f5885 4270 if(l32==1){
chessdsbr 2:32e1e71f5885 4271 figura_dib[3]=0x57;
chessdsbr 2:32e1e71f5885 4272 }
chessdsbr 2:32e1e71f5885 4273 else{
chessdsbr 2:32e1e71f5885 4274 figura_dib[3]=0x56;
chessdsbr 2:32e1e71f5885 4275 }
chessdsbr 2:32e1e71f5885 4276 }
chessdsbr 2:32e1e71f5885 4277 else if(l32==1){
chessdsbr 2:32e1e71f5885 4278 figura_dib[3]=0x55;
chessdsbr 2:32e1e71f5885 4279 }
chessdsbr 2:32e1e71f5885 4280 else{
chessdsbr 2:32e1e71f5885 4281 figura_dib[3]=0x54;
chessdsbr 2:32e1e71f5885 4282 }
chessdsbr 2:32e1e71f5885 4283 }
chessdsbr 2:32e1e71f5885 4284 else if(l31==1){
chessdsbr 2:32e1e71f5885 4285 if(l32==1){
chessdsbr 2:32e1e71f5885 4286 figura_dib[3]=0x53;
chessdsbr 2:32e1e71f5885 4287 }
chessdsbr 2:32e1e71f5885 4288 else{
chessdsbr 2:32e1e71f5885 4289 figura_dib[3]=0x52;
chessdsbr 2:32e1e71f5885 4290 }
chessdsbr 2:32e1e71f5885 4291 }
chessdsbr 2:32e1e71f5885 4292 else if(l32==1){
chessdsbr 2:32e1e71f5885 4293 figura_dib[3]=0x51;
chessdsbr 2:32e1e71f5885 4294 }
chessdsbr 2:32e1e71f5885 4295 else{
chessdsbr 2:32e1e71f5885 4296 figura_dib[3]=0x50;
chessdsbr 2:32e1e71f5885 4297 }
chessdsbr 2:32e1e71f5885 4298 }
chessdsbr 2:32e1e71f5885 4299 else if(l29==1){
chessdsbr 2:32e1e71f5885 4300 if(l30==1){
chessdsbr 2:32e1e71f5885 4301 if(l31==1){
chessdsbr 2:32e1e71f5885 4302 if(l32==1){
chessdsbr 2:32e1e71f5885 4303 figura_dib[3]=0x4F;
chessdsbr 2:32e1e71f5885 4304 }
chessdsbr 2:32e1e71f5885 4305 else{
chessdsbr 2:32e1e71f5885 4306 figura_dib[3]=0x4E;
chessdsbr 2:32e1e71f5885 4307 }
chessdsbr 2:32e1e71f5885 4308 }
chessdsbr 2:32e1e71f5885 4309 else if(l32==1){
chessdsbr 2:32e1e71f5885 4310 figura_dib[3]=0x4D;
chessdsbr 2:32e1e71f5885 4311 }
chessdsbr 2:32e1e71f5885 4312 else{
chessdsbr 2:32e1e71f5885 4313 figura_dib[3]=0x4C;
chessdsbr 2:32e1e71f5885 4314 }
chessdsbr 2:32e1e71f5885 4315 }
chessdsbr 2:32e1e71f5885 4316 else if(l31==1){
chessdsbr 2:32e1e71f5885 4317 if(l32==1){
chessdsbr 2:32e1e71f5885 4318 figura_dib[3]=0x4B;
chessdsbr 2:32e1e71f5885 4319 }
chessdsbr 2:32e1e71f5885 4320 else{
chessdsbr 2:32e1e71f5885 4321 figura_dib[3]=0x4A;
chessdsbr 2:32e1e71f5885 4322 }
chessdsbr 2:32e1e71f5885 4323 }
chessdsbr 2:32e1e71f5885 4324 else if(l32==1){
chessdsbr 2:32e1e71f5885 4325 figura_dib[3]=0x49;
chessdsbr 2:32e1e71f5885 4326 }
chessdsbr 2:32e1e71f5885 4327 else{
chessdsbr 2:32e1e71f5885 4328 figura_dib[3]=0x48;
chessdsbr 2:32e1e71f5885 4329 }
chessdsbr 2:32e1e71f5885 4330 }
chessdsbr 2:32e1e71f5885 4331 else if(l30==1){
chessdsbr 2:32e1e71f5885 4332 if(l31==1){
chessdsbr 2:32e1e71f5885 4333 if(l32==1){
chessdsbr 2:32e1e71f5885 4334 figura_dib[3]=0x47;
chessdsbr 2:32e1e71f5885 4335 }
chessdsbr 2:32e1e71f5885 4336 else{
chessdsbr 2:32e1e71f5885 4337 figura_dib[3]=0x46;
chessdsbr 2:32e1e71f5885 4338 }
chessdsbr 2:32e1e71f5885 4339 }
chessdsbr 2:32e1e71f5885 4340 else if(l32==1){
chessdsbr 2:32e1e71f5885 4341 figura_dib[3]=0x45;
chessdsbr 2:32e1e71f5885 4342 }
chessdsbr 2:32e1e71f5885 4343 else{
chessdsbr 2:32e1e71f5885 4344 figura_dib[3]=0x44;
chessdsbr 2:32e1e71f5885 4345 }
chessdsbr 2:32e1e71f5885 4346 }
chessdsbr 2:32e1e71f5885 4347 else if(l31==1){
chessdsbr 2:32e1e71f5885 4348 if(l32==1){
chessdsbr 2:32e1e71f5885 4349 figura_dib[3]=0x43;
chessdsbr 2:32e1e71f5885 4350 }
chessdsbr 2:32e1e71f5885 4351 else{
chessdsbr 2:32e1e71f5885 4352 figura_dib[3]=0x42;
chessdsbr 2:32e1e71f5885 4353 }
chessdsbr 2:32e1e71f5885 4354 }
chessdsbr 2:32e1e71f5885 4355 else if(l32==1){
chessdsbr 2:32e1e71f5885 4356 figura_dib[3]=0x41;
chessdsbr 2:32e1e71f5885 4357 }
chessdsbr 2:32e1e71f5885 4358 else{
chessdsbr 2:32e1e71f5885 4359 figura_dib[3]=0x40;
chessdsbr 2:32e1e71f5885 4360 }
chessdsbr 2:32e1e71f5885 4361 }
chessdsbr 2:32e1e71f5885 4362 else if(l27==1){
chessdsbr 2:32e1e71f5885 4363 if(l28==1){
chessdsbr 2:32e1e71f5885 4364 if(l29==1){
chessdsbr 2:32e1e71f5885 4365 if(l30==1){
chessdsbr 2:32e1e71f5885 4366 if(l31==1){
chessdsbr 2:32e1e71f5885 4367 if(l32==1){
chessdsbr 2:32e1e71f5885 4368 figura_dib[3]=0x3F;
chessdsbr 2:32e1e71f5885 4369 }
chessdsbr 2:32e1e71f5885 4370 else{
chessdsbr 2:32e1e71f5885 4371 figura_dib[3]=0x3E;
chessdsbr 2:32e1e71f5885 4372 }
chessdsbr 2:32e1e71f5885 4373 }
chessdsbr 2:32e1e71f5885 4374 else if(l32==1){
chessdsbr 2:32e1e71f5885 4375 figura_dib[3]=0x3D;
chessdsbr 2:32e1e71f5885 4376 }
chessdsbr 2:32e1e71f5885 4377 else{
chessdsbr 2:32e1e71f5885 4378 figura_dib[3]=0x3C;
chessdsbr 2:32e1e71f5885 4379 }
chessdsbr 2:32e1e71f5885 4380 }
chessdsbr 2:32e1e71f5885 4381 else if(l31==1){
chessdsbr 2:32e1e71f5885 4382 if(l32==1){
chessdsbr 2:32e1e71f5885 4383 figura_dib[3]=0x3B;
chessdsbr 2:32e1e71f5885 4384 }
chessdsbr 2:32e1e71f5885 4385 else{
chessdsbr 2:32e1e71f5885 4386 figura_dib[3]=0x3A;
chessdsbr 2:32e1e71f5885 4387 }
chessdsbr 2:32e1e71f5885 4388 }
chessdsbr 2:32e1e71f5885 4389 else if(l32==1){
chessdsbr 2:32e1e71f5885 4390 figura_dib[3]=0x39;
chessdsbr 2:32e1e71f5885 4391 }
chessdsbr 2:32e1e71f5885 4392 else{
chessdsbr 2:32e1e71f5885 4393 figura_dib[3]=0x38;
chessdsbr 2:32e1e71f5885 4394 }
chessdsbr 2:32e1e71f5885 4395 }
chessdsbr 2:32e1e71f5885 4396 else if(l30==1){
chessdsbr 2:32e1e71f5885 4397 if(l31==1){
chessdsbr 2:32e1e71f5885 4398 if(l32==1){
chessdsbr 2:32e1e71f5885 4399 figura_dib[3]=0x37;
chessdsbr 2:32e1e71f5885 4400 }
chessdsbr 2:32e1e71f5885 4401 else{
chessdsbr 2:32e1e71f5885 4402 figura_dib[3]=0x36;
chessdsbr 2:32e1e71f5885 4403 }
chessdsbr 2:32e1e71f5885 4404 }
chessdsbr 2:32e1e71f5885 4405 else if(l32==1){
chessdsbr 2:32e1e71f5885 4406 figura_dib[3]=0x35;
chessdsbr 2:32e1e71f5885 4407 }
chessdsbr 2:32e1e71f5885 4408 else{
chessdsbr 2:32e1e71f5885 4409 figura_dib[3]=0x34;
chessdsbr 2:32e1e71f5885 4410 }
chessdsbr 2:32e1e71f5885 4411 }
chessdsbr 2:32e1e71f5885 4412 else if(l31==1){
chessdsbr 2:32e1e71f5885 4413 if(l32==1){
chessdsbr 2:32e1e71f5885 4414 figura_dib[3]=0x33;
chessdsbr 2:32e1e71f5885 4415 }
chessdsbr 2:32e1e71f5885 4416 else{
chessdsbr 2:32e1e71f5885 4417 figura_dib[3]=0x32;
chessdsbr 2:32e1e71f5885 4418 }
chessdsbr 2:32e1e71f5885 4419 }
chessdsbr 2:32e1e71f5885 4420 else if(l32==1){
chessdsbr 2:32e1e71f5885 4421 figura_dib[3]=0x31;
chessdsbr 2:32e1e71f5885 4422 }
chessdsbr 2:32e1e71f5885 4423 else{
chessdsbr 2:32e1e71f5885 4424 figura_dib[3]=0x30;
chessdsbr 2:32e1e71f5885 4425 }
chessdsbr 2:32e1e71f5885 4426 }
chessdsbr 2:32e1e71f5885 4427 else if(l29==1){
chessdsbr 2:32e1e71f5885 4428 if(l30==1){
chessdsbr 2:32e1e71f5885 4429 if(l31==1){
chessdsbr 2:32e1e71f5885 4430 if(l32==1){
chessdsbr 2:32e1e71f5885 4431 figura_dib[3]=0x2F;
chessdsbr 2:32e1e71f5885 4432 }
chessdsbr 2:32e1e71f5885 4433 else{
chessdsbr 2:32e1e71f5885 4434 figura_dib[3]=0x2E;
chessdsbr 2:32e1e71f5885 4435 }
chessdsbr 2:32e1e71f5885 4436 }
chessdsbr 2:32e1e71f5885 4437 else if(l32==1){
chessdsbr 2:32e1e71f5885 4438 figura_dib[3]=0x2D;
chessdsbr 2:32e1e71f5885 4439 }
chessdsbr 2:32e1e71f5885 4440 else{
chessdsbr 2:32e1e71f5885 4441 figura_dib[3]=0x2C;
chessdsbr 2:32e1e71f5885 4442 }
chessdsbr 2:32e1e71f5885 4443 }
chessdsbr 2:32e1e71f5885 4444 else if(l31==1){
chessdsbr 2:32e1e71f5885 4445 if(l32==1){
chessdsbr 2:32e1e71f5885 4446 figura_dib[3]=0x2B;
chessdsbr 2:32e1e71f5885 4447 }
chessdsbr 2:32e1e71f5885 4448 else{
chessdsbr 2:32e1e71f5885 4449 figura_dib[3]=0x2A;
chessdsbr 2:32e1e71f5885 4450 }
chessdsbr 2:32e1e71f5885 4451 }
chessdsbr 2:32e1e71f5885 4452 else if(l32==1){
chessdsbr 2:32e1e71f5885 4453 figura_dib[3]=0x29;
chessdsbr 2:32e1e71f5885 4454 }
chessdsbr 2:32e1e71f5885 4455 else{
chessdsbr 2:32e1e71f5885 4456 figura_dib[3]=0x28;
chessdsbr 2:32e1e71f5885 4457 }
chessdsbr 2:32e1e71f5885 4458 }
chessdsbr 2:32e1e71f5885 4459 else if(l30==1){
chessdsbr 2:32e1e71f5885 4460 if(l31==1){
chessdsbr 2:32e1e71f5885 4461 if(l32==1){
chessdsbr 2:32e1e71f5885 4462 figura_dib[3]=0x27;
chessdsbr 2:32e1e71f5885 4463 }
chessdsbr 2:32e1e71f5885 4464 else{
chessdsbr 2:32e1e71f5885 4465 figura_dib[3]=0x26;
chessdsbr 2:32e1e71f5885 4466 }
chessdsbr 2:32e1e71f5885 4467 }
chessdsbr 2:32e1e71f5885 4468 else if(l32==1){
chessdsbr 2:32e1e71f5885 4469 figura_dib[3]=0x25;
chessdsbr 2:32e1e71f5885 4470 }
chessdsbr 2:32e1e71f5885 4471 else{
chessdsbr 2:32e1e71f5885 4472 figura_dib[3]=0x24;
chessdsbr 2:32e1e71f5885 4473 }
chessdsbr 2:32e1e71f5885 4474 }
chessdsbr 2:32e1e71f5885 4475 else if(l31==1){
chessdsbr 2:32e1e71f5885 4476 if(l32==1){
chessdsbr 2:32e1e71f5885 4477 figura_dib[3]=0x23;
chessdsbr 2:32e1e71f5885 4478 }
chessdsbr 2:32e1e71f5885 4479 else{
chessdsbr 2:32e1e71f5885 4480 figura_dib[3]=0x22;
chessdsbr 2:32e1e71f5885 4481 }
chessdsbr 2:32e1e71f5885 4482 }
chessdsbr 2:32e1e71f5885 4483 else if(l32==1){
chessdsbr 2:32e1e71f5885 4484 figura_dib[3]=0x21;
chessdsbr 2:32e1e71f5885 4485 }
chessdsbr 2:32e1e71f5885 4486 else{
chessdsbr 2:32e1e71f5885 4487 figura_dib[3]=0x20;
chessdsbr 2:32e1e71f5885 4488 }
chessdsbr 2:32e1e71f5885 4489 }
chessdsbr 2:32e1e71f5885 4490 else if(l28==1){
chessdsbr 2:32e1e71f5885 4491 if(l29==1){
chessdsbr 2:32e1e71f5885 4492 if(l30==1){
chessdsbr 2:32e1e71f5885 4493 if(l31==1){
chessdsbr 2:32e1e71f5885 4494 if(l32==1){
chessdsbr 2:32e1e71f5885 4495 figura_dib[3]=0x1F;
chessdsbr 2:32e1e71f5885 4496 }
chessdsbr 2:32e1e71f5885 4497 else{
chessdsbr 2:32e1e71f5885 4498 figura_dib[3]=0x1E;
chessdsbr 2:32e1e71f5885 4499 }
chessdsbr 2:32e1e71f5885 4500 }
chessdsbr 2:32e1e71f5885 4501 else if(l32==1){
chessdsbr 2:32e1e71f5885 4502 figura_dib[3]=0x1D;
chessdsbr 2:32e1e71f5885 4503 }
chessdsbr 2:32e1e71f5885 4504 else{
chessdsbr 2:32e1e71f5885 4505 figura_dib[3]=0x1C;
chessdsbr 2:32e1e71f5885 4506 }
chessdsbr 2:32e1e71f5885 4507 }
chessdsbr 2:32e1e71f5885 4508 else if(l31==1){
chessdsbr 2:32e1e71f5885 4509 if(l32==1){
chessdsbr 2:32e1e71f5885 4510 figura_dib[3]=0x1B;
chessdsbr 2:32e1e71f5885 4511 }
chessdsbr 2:32e1e71f5885 4512 else{
chessdsbr 2:32e1e71f5885 4513 figura_dib[3]=0x1A;
chessdsbr 2:32e1e71f5885 4514 }
chessdsbr 2:32e1e71f5885 4515 }
chessdsbr 2:32e1e71f5885 4516 else if(l32==1){
chessdsbr 2:32e1e71f5885 4517 figura_dib[3]=0x19;
chessdsbr 2:32e1e71f5885 4518 }
chessdsbr 2:32e1e71f5885 4519 else{
chessdsbr 2:32e1e71f5885 4520 figura_dib[3]=0x18;
chessdsbr 2:32e1e71f5885 4521 }
chessdsbr 2:32e1e71f5885 4522 }
chessdsbr 2:32e1e71f5885 4523 else if(l30==1){
chessdsbr 2:32e1e71f5885 4524 if(l31==1){
chessdsbr 2:32e1e71f5885 4525 if(l32==1){
chessdsbr 2:32e1e71f5885 4526 figura_dib[3]=0x17;
chessdsbr 2:32e1e71f5885 4527 }
chessdsbr 2:32e1e71f5885 4528 else{
chessdsbr 2:32e1e71f5885 4529 figura_dib[3]=0x16;
chessdsbr 2:32e1e71f5885 4530 }
chessdsbr 2:32e1e71f5885 4531 }
chessdsbr 2:32e1e71f5885 4532 else if(l32==1){
chessdsbr 2:32e1e71f5885 4533 figura_dib[3]=0x15;
chessdsbr 2:32e1e71f5885 4534 }
chessdsbr 2:32e1e71f5885 4535 else{
chessdsbr 2:32e1e71f5885 4536 figura_dib[3]=0x14;
chessdsbr 2:32e1e71f5885 4537 }
chessdsbr 2:32e1e71f5885 4538 }
chessdsbr 2:32e1e71f5885 4539 else if(l31==1){
chessdsbr 2:32e1e71f5885 4540 if(l32==1){
chessdsbr 2:32e1e71f5885 4541 figura_dib[3]=0x13;
chessdsbr 2:32e1e71f5885 4542 }
chessdsbr 2:32e1e71f5885 4543 else{
chessdsbr 2:32e1e71f5885 4544 figura_dib[3]=0x12;
chessdsbr 2:32e1e71f5885 4545 }
chessdsbr 2:32e1e71f5885 4546 }
chessdsbr 2:32e1e71f5885 4547 else if(l32==1){
chessdsbr 2:32e1e71f5885 4548 figura_dib[3]=0x11;
chessdsbr 2:32e1e71f5885 4549 }
chessdsbr 2:32e1e71f5885 4550 else{
chessdsbr 2:32e1e71f5885 4551 figura_dib[3]=0x10;
chessdsbr 2:32e1e71f5885 4552 }
chessdsbr 2:32e1e71f5885 4553 }
chessdsbr 2:32e1e71f5885 4554 else if(l29==1){
chessdsbr 2:32e1e71f5885 4555 if(l30==1){
chessdsbr 2:32e1e71f5885 4556 if(l31==1){
chessdsbr 2:32e1e71f5885 4557 if(l32==1){
chessdsbr 2:32e1e71f5885 4558 figura_dib[3]=0x0F;
chessdsbr 2:32e1e71f5885 4559 }
chessdsbr 2:32e1e71f5885 4560 else{
chessdsbr 2:32e1e71f5885 4561 figura_dib[3]=0x0E;
chessdsbr 2:32e1e71f5885 4562 }
chessdsbr 2:32e1e71f5885 4563 }
chessdsbr 2:32e1e71f5885 4564 else if(l32==1){
chessdsbr 2:32e1e71f5885 4565 figura_dib[3]=0x0D;
chessdsbr 2:32e1e71f5885 4566 }
chessdsbr 2:32e1e71f5885 4567 else{
chessdsbr 2:32e1e71f5885 4568 figura_dib[3]=0x0C;
chessdsbr 2:32e1e71f5885 4569 }
chessdsbr 2:32e1e71f5885 4570 }
chessdsbr 2:32e1e71f5885 4571 else if(l31==1){
chessdsbr 2:32e1e71f5885 4572 if(l32==1){
chessdsbr 2:32e1e71f5885 4573 figura_dib[3]=0x0B;
chessdsbr 2:32e1e71f5885 4574 }
chessdsbr 2:32e1e71f5885 4575 else{
chessdsbr 2:32e1e71f5885 4576 figura_dib[3]=0x0A;
chessdsbr 2:32e1e71f5885 4577 }
chessdsbr 2:32e1e71f5885 4578 }
chessdsbr 2:32e1e71f5885 4579 else if(l32==1){
chessdsbr 2:32e1e71f5885 4580 figura_dib[3]=0x09;
chessdsbr 2:32e1e71f5885 4581 }
chessdsbr 2:32e1e71f5885 4582 else{
chessdsbr 2:32e1e71f5885 4583 figura_dib[3]=0x08;
chessdsbr 2:32e1e71f5885 4584 }
chessdsbr 2:32e1e71f5885 4585 }
chessdsbr 2:32e1e71f5885 4586 else if(l30==1){
chessdsbr 2:32e1e71f5885 4587 if(l31==1){
chessdsbr 2:32e1e71f5885 4588 if(l32==1){
chessdsbr 2:32e1e71f5885 4589 figura_dib[3]=0x07;
chessdsbr 2:32e1e71f5885 4590 }
chessdsbr 2:32e1e71f5885 4591 else{
chessdsbr 2:32e1e71f5885 4592 figura_dib[3]=0x06;
chessdsbr 2:32e1e71f5885 4593 }
chessdsbr 2:32e1e71f5885 4594 }
chessdsbr 2:32e1e71f5885 4595 else if(l32==1){
chessdsbr 2:32e1e71f5885 4596 figura_dib[3]=0x05;
chessdsbr 2:32e1e71f5885 4597 }
chessdsbr 2:32e1e71f5885 4598 else{
chessdsbr 2:32e1e71f5885 4599 figura_dib[3]=0x04;
chessdsbr 2:32e1e71f5885 4600 }
chessdsbr 2:32e1e71f5885 4601 }
chessdsbr 2:32e1e71f5885 4602 else if(l31==1){
chessdsbr 2:32e1e71f5885 4603 if(l32==1){
chessdsbr 2:32e1e71f5885 4604 figura_dib[3]=0x03;
chessdsbr 2:32e1e71f5885 4605 }
chessdsbr 2:32e1e71f5885 4606 else{
chessdsbr 2:32e1e71f5885 4607 figura_dib[3]=0x02;
chessdsbr 2:32e1e71f5885 4608 }
chessdsbr 2:32e1e71f5885 4609 }
chessdsbr 2:32e1e71f5885 4610 else if(l32==1){
chessdsbr 2:32e1e71f5885 4611 figura_dib[3]=0x01;
chessdsbr 2:32e1e71f5885 4612 }
chessdsbr 2:32e1e71f5885 4613 else{
chessdsbr 2:32e1e71f5885 4614 figura_dib[3]=0x00;
chessdsbr 2:32e1e71f5885 4615 }
chessdsbr 2:32e1e71f5885 4616 /////
chessdsbr 2:32e1e71f5885 4617 ////
chessdsbr 2:32e1e71f5885 4618 ///
chessdsbr 2:32e1e71f5885 4619 //
chessdsbr 2:32e1e71f5885 4620 //fila 5
chessdsbr 2:32e1e71f5885 4621 //
chessdsbr 2:32e1e71f5885 4622 ///
chessdsbr 2:32e1e71f5885 4623 ////
chessdsbr 2:32e1e71f5885 4624 /////
chessdsbr 2:32e1e71f5885 4625 if(l33==1){
chessdsbr 2:32e1e71f5885 4626 if(l34==1){
chessdsbr 2:32e1e71f5885 4627 if(l35==1){
chessdsbr 2:32e1e71f5885 4628 if(l36==1){
chessdsbr 2:32e1e71f5885 4629 if(l37==1){
chessdsbr 2:32e1e71f5885 4630 if(l38==1){
chessdsbr 2:32e1e71f5885 4631 if(l39==1){
chessdsbr 2:32e1e71f5885 4632 if(l40==1){
chessdsbr 2:32e1e71f5885 4633 figura_dib[4]=0xFF;
chessdsbr 2:32e1e71f5885 4634 }
chessdsbr 2:32e1e71f5885 4635 else{
chessdsbr 2:32e1e71f5885 4636 figura_dib[4]=0xFE;
chessdsbr 2:32e1e71f5885 4637 }
chessdsbr 2:32e1e71f5885 4638 }
chessdsbr 2:32e1e71f5885 4639 else if(l40==1){
chessdsbr 2:32e1e71f5885 4640 figura_dib[4]=0xFD;
chessdsbr 2:32e1e71f5885 4641 }
chessdsbr 2:32e1e71f5885 4642 else{
chessdsbr 2:32e1e71f5885 4643 figura_dib[4]=0xFC;
chessdsbr 2:32e1e71f5885 4644 }
chessdsbr 2:32e1e71f5885 4645 }
chessdsbr 2:32e1e71f5885 4646 else if(l39==1){
chessdsbr 2:32e1e71f5885 4647 if(l40==1){
chessdsbr 2:32e1e71f5885 4648 figura_dib[4]=0xFB;
chessdsbr 2:32e1e71f5885 4649 }
chessdsbr 2:32e1e71f5885 4650 else{
chessdsbr 2:32e1e71f5885 4651 figura_dib[4]=0xFA;
chessdsbr 2:32e1e71f5885 4652 }
chessdsbr 2:32e1e71f5885 4653 }
chessdsbr 2:32e1e71f5885 4654 else if(l40==1){
chessdsbr 2:32e1e71f5885 4655 figura_dib[4]=0xF9;
chessdsbr 2:32e1e71f5885 4656 }
chessdsbr 2:32e1e71f5885 4657 else{
chessdsbr 2:32e1e71f5885 4658 figura_dib[4]=0xF8;
chessdsbr 2:32e1e71f5885 4659 }
chessdsbr 2:32e1e71f5885 4660 }
chessdsbr 2:32e1e71f5885 4661 else if(l38==1){
chessdsbr 2:32e1e71f5885 4662 if(l39==1){
chessdsbr 2:32e1e71f5885 4663 if(l40==1){
chessdsbr 2:32e1e71f5885 4664 figura_dib[4]=0xF7;
chessdsbr 2:32e1e71f5885 4665 }
chessdsbr 2:32e1e71f5885 4666 else{
chessdsbr 2:32e1e71f5885 4667 figura_dib[4]=0xF6;
chessdsbr 2:32e1e71f5885 4668 }
chessdsbr 2:32e1e71f5885 4669 }
chessdsbr 2:32e1e71f5885 4670 else if(l40==1){
chessdsbr 2:32e1e71f5885 4671 figura_dib[4]=0xF5;
chessdsbr 2:32e1e71f5885 4672 }
chessdsbr 2:32e1e71f5885 4673 else{
chessdsbr 2:32e1e71f5885 4674 figura_dib[4]=0xF4;
chessdsbr 2:32e1e71f5885 4675 }
chessdsbr 2:32e1e71f5885 4676 }
chessdsbr 2:32e1e71f5885 4677 else if(l39==1){
chessdsbr 2:32e1e71f5885 4678 if(l40==1){
chessdsbr 2:32e1e71f5885 4679 figura_dib[4]=0xF3;
chessdsbr 2:32e1e71f5885 4680 }
chessdsbr 2:32e1e71f5885 4681 else{
chessdsbr 2:32e1e71f5885 4682 figura_dib[4]=0xF2;
chessdsbr 2:32e1e71f5885 4683 }
chessdsbr 2:32e1e71f5885 4684 }
chessdsbr 2:32e1e71f5885 4685 else if(l40==1){
chessdsbr 2:32e1e71f5885 4686 figura_dib[4]=0xF1;
chessdsbr 2:32e1e71f5885 4687 }
chessdsbr 2:32e1e71f5885 4688 else{
chessdsbr 2:32e1e71f5885 4689 figura_dib[4]=0xF0;
chessdsbr 2:32e1e71f5885 4690 }
chessdsbr 2:32e1e71f5885 4691 }
chessdsbr 2:32e1e71f5885 4692 else if(l37==1){
chessdsbr 2:32e1e71f5885 4693 if(l38==1){
chessdsbr 2:32e1e71f5885 4694 if(l39==1){
chessdsbr 2:32e1e71f5885 4695 if(l40==1){
chessdsbr 2:32e1e71f5885 4696 figura_dib[4]=0xEF;
chessdsbr 2:32e1e71f5885 4697 }
chessdsbr 2:32e1e71f5885 4698 else{
chessdsbr 2:32e1e71f5885 4699 figura_dib[4]=0xEE;
chessdsbr 2:32e1e71f5885 4700 }
chessdsbr 2:32e1e71f5885 4701 }
chessdsbr 2:32e1e71f5885 4702 else if(l40==1){
chessdsbr 2:32e1e71f5885 4703 figura_dib[4]=0xED;
chessdsbr 2:32e1e71f5885 4704 }
chessdsbr 2:32e1e71f5885 4705 else{
chessdsbr 2:32e1e71f5885 4706 figura_dib[4]=0xEC;
chessdsbr 2:32e1e71f5885 4707 }
chessdsbr 2:32e1e71f5885 4708 }
chessdsbr 2:32e1e71f5885 4709 else if(l39==1){
chessdsbr 2:32e1e71f5885 4710 if(l40==1){
chessdsbr 2:32e1e71f5885 4711 figura_dib[4]=0xEB;
chessdsbr 2:32e1e71f5885 4712 }
chessdsbr 2:32e1e71f5885 4713 else{
chessdsbr 2:32e1e71f5885 4714 figura_dib[4]=0xEA;
chessdsbr 2:32e1e71f5885 4715 }
chessdsbr 2:32e1e71f5885 4716 }
chessdsbr 2:32e1e71f5885 4717 else if(l40==1){
chessdsbr 2:32e1e71f5885 4718 figura_dib[4]=0xE9;
chessdsbr 2:32e1e71f5885 4719 }
chessdsbr 2:32e1e71f5885 4720 else{
chessdsbr 2:32e1e71f5885 4721 figura_dib[4]=0xE8;
chessdsbr 2:32e1e71f5885 4722 }
chessdsbr 2:32e1e71f5885 4723 }
chessdsbr 2:32e1e71f5885 4724 else if(l38==1){
chessdsbr 2:32e1e71f5885 4725 if(l39==1){
chessdsbr 2:32e1e71f5885 4726 if(l40==1){
chessdsbr 2:32e1e71f5885 4727 figura_dib[4]=0xE7;
chessdsbr 2:32e1e71f5885 4728 }
chessdsbr 2:32e1e71f5885 4729 else{
chessdsbr 2:32e1e71f5885 4730 figura_dib[4]=0xE6;
chessdsbr 2:32e1e71f5885 4731 }
chessdsbr 2:32e1e71f5885 4732 }
chessdsbr 2:32e1e71f5885 4733 else if(l40==1){
chessdsbr 2:32e1e71f5885 4734 figura_dib[4]=0xE5;
chessdsbr 2:32e1e71f5885 4735 }
chessdsbr 2:32e1e71f5885 4736 else{
chessdsbr 2:32e1e71f5885 4737 figura_dib[4]=0xE4;
chessdsbr 2:32e1e71f5885 4738 }
chessdsbr 2:32e1e71f5885 4739 }
chessdsbr 2:32e1e71f5885 4740 else if(l39==1){
chessdsbr 2:32e1e71f5885 4741 if(l40==1){
chessdsbr 2:32e1e71f5885 4742 figura_dib[4]=0xE3;
chessdsbr 2:32e1e71f5885 4743 }
chessdsbr 2:32e1e71f5885 4744 else{
chessdsbr 2:32e1e71f5885 4745 figura_dib[4]=0xE2;
chessdsbr 2:32e1e71f5885 4746 }
chessdsbr 2:32e1e71f5885 4747 }
chessdsbr 2:32e1e71f5885 4748 else if(l40==1){
chessdsbr 2:32e1e71f5885 4749 figura_dib[4]=0xE1;
chessdsbr 2:32e1e71f5885 4750 }
chessdsbr 2:32e1e71f5885 4751 else{
chessdsbr 2:32e1e71f5885 4752 figura_dib[4]=0xE0;
chessdsbr 2:32e1e71f5885 4753 }
chessdsbr 2:32e1e71f5885 4754 }
chessdsbr 2:32e1e71f5885 4755 else if(l36==1){
chessdsbr 2:32e1e71f5885 4756 if(l37==1){
chessdsbr 2:32e1e71f5885 4757 if(l38==1){
chessdsbr 2:32e1e71f5885 4758 if(l39==1){
chessdsbr 2:32e1e71f5885 4759 if(l40==1){
chessdsbr 2:32e1e71f5885 4760 figura_dib[4]=0xDF;
chessdsbr 2:32e1e71f5885 4761 }
chessdsbr 2:32e1e71f5885 4762 else{
chessdsbr 2:32e1e71f5885 4763 figura_dib[4]=0xDE;
chessdsbr 2:32e1e71f5885 4764 }
chessdsbr 2:32e1e71f5885 4765 }
chessdsbr 2:32e1e71f5885 4766 else if(l40==1){
chessdsbr 2:32e1e71f5885 4767 figura_dib[4]=0xDD;
chessdsbr 2:32e1e71f5885 4768 }
chessdsbr 2:32e1e71f5885 4769 else{
chessdsbr 2:32e1e71f5885 4770 figura_dib[4]=0xDC;
chessdsbr 2:32e1e71f5885 4771 }
chessdsbr 2:32e1e71f5885 4772 }
chessdsbr 2:32e1e71f5885 4773 else if(l39==1){
chessdsbr 2:32e1e71f5885 4774 if(l40==1){
chessdsbr 2:32e1e71f5885 4775 figura_dib[4]=0xDB;
chessdsbr 2:32e1e71f5885 4776 }
chessdsbr 2:32e1e71f5885 4777 else{
chessdsbr 2:32e1e71f5885 4778 figura_dib[4]=0xDA;
chessdsbr 2:32e1e71f5885 4779 }
chessdsbr 2:32e1e71f5885 4780 }
chessdsbr 2:32e1e71f5885 4781 else if(l40==1){
chessdsbr 2:32e1e71f5885 4782 figura_dib[4]=0xD9;
chessdsbr 2:32e1e71f5885 4783 }
chessdsbr 2:32e1e71f5885 4784 else{
chessdsbr 2:32e1e71f5885 4785 figura_dib[4]=0xD8;
chessdsbr 2:32e1e71f5885 4786 }
chessdsbr 2:32e1e71f5885 4787 }
chessdsbr 2:32e1e71f5885 4788 else if(l38==1){
chessdsbr 2:32e1e71f5885 4789 if(l39==1){
chessdsbr 2:32e1e71f5885 4790 if(l40==1){
chessdsbr 2:32e1e71f5885 4791 figura_dib[4]=0xD7;
chessdsbr 2:32e1e71f5885 4792 }
chessdsbr 2:32e1e71f5885 4793 else{
chessdsbr 2:32e1e71f5885 4794 figura_dib[4]=0xD6;
chessdsbr 2:32e1e71f5885 4795 }
chessdsbr 2:32e1e71f5885 4796 }
chessdsbr 2:32e1e71f5885 4797 else if(l40==1){
chessdsbr 2:32e1e71f5885 4798 figura_dib[4]=0xD5;
chessdsbr 2:32e1e71f5885 4799 }
chessdsbr 2:32e1e71f5885 4800 else{
chessdsbr 2:32e1e71f5885 4801 figura_dib[4]=0xD4;
chessdsbr 2:32e1e71f5885 4802 }
chessdsbr 2:32e1e71f5885 4803 }
chessdsbr 2:32e1e71f5885 4804 else if(l39==1){
chessdsbr 2:32e1e71f5885 4805 if(l40==1){
chessdsbr 2:32e1e71f5885 4806 figura_dib[4]=0xD3;
chessdsbr 2:32e1e71f5885 4807 }
chessdsbr 2:32e1e71f5885 4808 else{
chessdsbr 2:32e1e71f5885 4809 figura_dib[4]=0xD2;
chessdsbr 2:32e1e71f5885 4810 }
chessdsbr 2:32e1e71f5885 4811 }
chessdsbr 2:32e1e71f5885 4812 else if(l40==1){
chessdsbr 2:32e1e71f5885 4813 figura_dib[4]=0xD1;
chessdsbr 2:32e1e71f5885 4814 }
chessdsbr 2:32e1e71f5885 4815 else{
chessdsbr 2:32e1e71f5885 4816 figura_dib[4]=0xD0;
chessdsbr 2:32e1e71f5885 4817 }
chessdsbr 2:32e1e71f5885 4818 }
chessdsbr 2:32e1e71f5885 4819 else if(l37==1){
chessdsbr 2:32e1e71f5885 4820 if(l38==1){
chessdsbr 2:32e1e71f5885 4821 if(l39==1){
chessdsbr 2:32e1e71f5885 4822 if(l40==1){
chessdsbr 2:32e1e71f5885 4823 figura_dib[4]=0xCF;
chessdsbr 2:32e1e71f5885 4824 }
chessdsbr 2:32e1e71f5885 4825 else{
chessdsbr 2:32e1e71f5885 4826 figura_dib[4]=0xCE;
chessdsbr 2:32e1e71f5885 4827 }
chessdsbr 2:32e1e71f5885 4828 }
chessdsbr 2:32e1e71f5885 4829 else if(l40==1){
chessdsbr 2:32e1e71f5885 4830 figura_dib[4]=0xCD;
chessdsbr 2:32e1e71f5885 4831 }
chessdsbr 2:32e1e71f5885 4832 else{
chessdsbr 2:32e1e71f5885 4833 figura_dib[4]=0xCC;
chessdsbr 2:32e1e71f5885 4834 }
chessdsbr 2:32e1e71f5885 4835 }
chessdsbr 2:32e1e71f5885 4836 else if(l39==1){
chessdsbr 2:32e1e71f5885 4837 if(l40==1){
chessdsbr 2:32e1e71f5885 4838 figura_dib[4]=0xCB;
chessdsbr 2:32e1e71f5885 4839 }
chessdsbr 2:32e1e71f5885 4840 else{
chessdsbr 2:32e1e71f5885 4841 figura_dib[4]=0xCA;
chessdsbr 2:32e1e71f5885 4842 }
chessdsbr 2:32e1e71f5885 4843 }
chessdsbr 2:32e1e71f5885 4844 else if(l40==1){
chessdsbr 2:32e1e71f5885 4845 figura_dib[4]=0xC9;
chessdsbr 2:32e1e71f5885 4846 }
chessdsbr 2:32e1e71f5885 4847 else{
chessdsbr 2:32e1e71f5885 4848 figura_dib[4]=0xC8;
chessdsbr 2:32e1e71f5885 4849 }
chessdsbr 2:32e1e71f5885 4850 }
chessdsbr 2:32e1e71f5885 4851 else if(l38==1){
chessdsbr 2:32e1e71f5885 4852 if(l39==1){
chessdsbr 2:32e1e71f5885 4853 if(l40==1){
chessdsbr 2:32e1e71f5885 4854 figura_dib[4]=0xC7;
chessdsbr 2:32e1e71f5885 4855 }
chessdsbr 2:32e1e71f5885 4856 else{
chessdsbr 2:32e1e71f5885 4857 figura_dib[4]=0xC6;
chessdsbr 2:32e1e71f5885 4858 }
chessdsbr 2:32e1e71f5885 4859 }
chessdsbr 2:32e1e71f5885 4860 else if(l40==1){
chessdsbr 2:32e1e71f5885 4861 figura_dib[4]=0xC5;
chessdsbr 2:32e1e71f5885 4862 }
chessdsbr 2:32e1e71f5885 4863 else{
chessdsbr 2:32e1e71f5885 4864 figura_dib[4]=0xC4;
chessdsbr 2:32e1e71f5885 4865 }
chessdsbr 2:32e1e71f5885 4866 }
chessdsbr 2:32e1e71f5885 4867 else if(l39==1){
chessdsbr 2:32e1e71f5885 4868 if(l40==1){
chessdsbr 2:32e1e71f5885 4869 figura_dib[4]=0xC3;
chessdsbr 2:32e1e71f5885 4870 }
chessdsbr 2:32e1e71f5885 4871 else{
chessdsbr 2:32e1e71f5885 4872 figura_dib[4]=0xC2;
chessdsbr 2:32e1e71f5885 4873 }
chessdsbr 2:32e1e71f5885 4874 }
chessdsbr 2:32e1e71f5885 4875 else if(l40==1){
chessdsbr 2:32e1e71f5885 4876 figura_dib[4]=0xC1;
chessdsbr 2:32e1e71f5885 4877 }
chessdsbr 2:32e1e71f5885 4878 else{
chessdsbr 2:32e1e71f5885 4879 figura_dib[4]=0xC0;
chessdsbr 2:32e1e71f5885 4880 }
chessdsbr 2:32e1e71f5885 4881 }
chessdsbr 2:32e1e71f5885 4882 else if(l35==1){
chessdsbr 2:32e1e71f5885 4883 if(l36==1){
chessdsbr 2:32e1e71f5885 4884 if(l37==1){
chessdsbr 2:32e1e71f5885 4885 if(l38==1){
chessdsbr 2:32e1e71f5885 4886 if(l39==1){
chessdsbr 2:32e1e71f5885 4887 if(l40==1){
chessdsbr 2:32e1e71f5885 4888 figura_dib[4]=0xBF;
chessdsbr 2:32e1e71f5885 4889 }
chessdsbr 2:32e1e71f5885 4890 else{
chessdsbr 2:32e1e71f5885 4891 figura_dib[4]=0xBE;
chessdsbr 2:32e1e71f5885 4892 }
chessdsbr 2:32e1e71f5885 4893 }
chessdsbr 2:32e1e71f5885 4894 else if(l40==1){
chessdsbr 2:32e1e71f5885 4895 figura_dib[4]=0xBD;
chessdsbr 2:32e1e71f5885 4896 }
chessdsbr 2:32e1e71f5885 4897 else{
chessdsbr 2:32e1e71f5885 4898 figura_dib[4]=0xBC;
chessdsbr 2:32e1e71f5885 4899 }
chessdsbr 2:32e1e71f5885 4900 }
chessdsbr 2:32e1e71f5885 4901 else if(l39==1){
chessdsbr 2:32e1e71f5885 4902 if(l40==1){
chessdsbr 2:32e1e71f5885 4903 figura_dib[4]=0xBB;
chessdsbr 2:32e1e71f5885 4904 }
chessdsbr 2:32e1e71f5885 4905 else{
chessdsbr 2:32e1e71f5885 4906 figura_dib[4]=0xBA;
chessdsbr 2:32e1e71f5885 4907 }
chessdsbr 2:32e1e71f5885 4908 }
chessdsbr 2:32e1e71f5885 4909 else if(l40==1){
chessdsbr 2:32e1e71f5885 4910 figura_dib[4]=0xB9;
chessdsbr 2:32e1e71f5885 4911 }
chessdsbr 2:32e1e71f5885 4912 else{
chessdsbr 2:32e1e71f5885 4913 figura_dib[4]=0xB8;
chessdsbr 2:32e1e71f5885 4914 }
chessdsbr 2:32e1e71f5885 4915 }
chessdsbr 2:32e1e71f5885 4916 else if(l38==1){
chessdsbr 2:32e1e71f5885 4917 if(l39==1){
chessdsbr 2:32e1e71f5885 4918 if(l40==1){
chessdsbr 2:32e1e71f5885 4919 figura_dib[4]=0xB7;
chessdsbr 2:32e1e71f5885 4920 }
chessdsbr 2:32e1e71f5885 4921 else{
chessdsbr 2:32e1e71f5885 4922 figura_dib[4]=0xB6;
chessdsbr 2:32e1e71f5885 4923 }
chessdsbr 2:32e1e71f5885 4924 }
chessdsbr 2:32e1e71f5885 4925 else if(l40==1){
chessdsbr 2:32e1e71f5885 4926 figura_dib[4]=0xB5;
chessdsbr 2:32e1e71f5885 4927 }
chessdsbr 2:32e1e71f5885 4928 else{
chessdsbr 2:32e1e71f5885 4929 figura_dib[4]=0xB4;
chessdsbr 2:32e1e71f5885 4930 }
chessdsbr 2:32e1e71f5885 4931 }
chessdsbr 2:32e1e71f5885 4932 else if(l39==1){
chessdsbr 2:32e1e71f5885 4933 if(l40==1){
chessdsbr 2:32e1e71f5885 4934 figura_dib[4]=0xB3;
chessdsbr 2:32e1e71f5885 4935 }
chessdsbr 2:32e1e71f5885 4936 else{
chessdsbr 2:32e1e71f5885 4937 figura_dib[4]=0xB2;
chessdsbr 2:32e1e71f5885 4938 }
chessdsbr 2:32e1e71f5885 4939 }
chessdsbr 2:32e1e71f5885 4940 else if(l40==1){
chessdsbr 2:32e1e71f5885 4941 figura_dib[4]=0xB1;
chessdsbr 2:32e1e71f5885 4942 }
chessdsbr 2:32e1e71f5885 4943 else{
chessdsbr 2:32e1e71f5885 4944 figura_dib[4]=0xB0;
chessdsbr 2:32e1e71f5885 4945 }
chessdsbr 2:32e1e71f5885 4946 }
chessdsbr 2:32e1e71f5885 4947 else if(l37==1){
chessdsbr 2:32e1e71f5885 4948 if(l38==1){
chessdsbr 2:32e1e71f5885 4949 if(l39==1){
chessdsbr 2:32e1e71f5885 4950 if(l40==1){
chessdsbr 2:32e1e71f5885 4951 figura_dib[4]=0xAF;
chessdsbr 2:32e1e71f5885 4952 }
chessdsbr 2:32e1e71f5885 4953 else{
chessdsbr 2:32e1e71f5885 4954 figura_dib[4]=0xAE;
chessdsbr 2:32e1e71f5885 4955 }
chessdsbr 2:32e1e71f5885 4956 }
chessdsbr 2:32e1e71f5885 4957 else if(l40==1){
chessdsbr 2:32e1e71f5885 4958 figura_dib[4]=0xAD;
chessdsbr 2:32e1e71f5885 4959 }
chessdsbr 2:32e1e71f5885 4960 else{
chessdsbr 2:32e1e71f5885 4961 figura_dib[4]=0xAC;
chessdsbr 2:32e1e71f5885 4962 }
chessdsbr 2:32e1e71f5885 4963 }
chessdsbr 2:32e1e71f5885 4964 else if(l39==1){
chessdsbr 2:32e1e71f5885 4965 if(l40==1){
chessdsbr 2:32e1e71f5885 4966 figura_dib[4]=0xAB;
chessdsbr 2:32e1e71f5885 4967 }
chessdsbr 2:32e1e71f5885 4968 else{
chessdsbr 2:32e1e71f5885 4969 figura_dib[4]=0xAA;
chessdsbr 2:32e1e71f5885 4970 }
chessdsbr 2:32e1e71f5885 4971 }
chessdsbr 2:32e1e71f5885 4972 else if(l40==1){
chessdsbr 2:32e1e71f5885 4973 figura_dib[4]=0xA9;
chessdsbr 2:32e1e71f5885 4974 }
chessdsbr 2:32e1e71f5885 4975 else{
chessdsbr 2:32e1e71f5885 4976 figura_dib[4]=0xA8;
chessdsbr 2:32e1e71f5885 4977 }
chessdsbr 2:32e1e71f5885 4978 }
chessdsbr 2:32e1e71f5885 4979 else if(l38==1){
chessdsbr 2:32e1e71f5885 4980 if(l39==1){
chessdsbr 2:32e1e71f5885 4981 if(l40==1){
chessdsbr 2:32e1e71f5885 4982 figura_dib[4]=0xA7;
chessdsbr 2:32e1e71f5885 4983 }
chessdsbr 2:32e1e71f5885 4984 else{
chessdsbr 2:32e1e71f5885 4985 figura_dib[4]=0xA6;
chessdsbr 2:32e1e71f5885 4986 }
chessdsbr 2:32e1e71f5885 4987 }
chessdsbr 2:32e1e71f5885 4988 else if(l40==1){
chessdsbr 2:32e1e71f5885 4989 figura_dib[4]=0xA5;
chessdsbr 2:32e1e71f5885 4990 }
chessdsbr 2:32e1e71f5885 4991 else{
chessdsbr 2:32e1e71f5885 4992 figura_dib[4]=0xA4;
chessdsbr 2:32e1e71f5885 4993 }
chessdsbr 2:32e1e71f5885 4994 }
chessdsbr 2:32e1e71f5885 4995 else if(l39==1){
chessdsbr 2:32e1e71f5885 4996 if(l40==1){
chessdsbr 2:32e1e71f5885 4997 figura_dib[4]=0xA3;
chessdsbr 2:32e1e71f5885 4998 }
chessdsbr 2:32e1e71f5885 4999 else{
chessdsbr 2:32e1e71f5885 5000 figura_dib[4]=0xA2;
chessdsbr 2:32e1e71f5885 5001 }
chessdsbr 2:32e1e71f5885 5002 }
chessdsbr 2:32e1e71f5885 5003 else if(l40==1){
chessdsbr 2:32e1e71f5885 5004 figura_dib[4]=0xA1;
chessdsbr 2:32e1e71f5885 5005 }
chessdsbr 2:32e1e71f5885 5006 else{
chessdsbr 2:32e1e71f5885 5007 figura_dib[4]=0xA0;
chessdsbr 2:32e1e71f5885 5008 }
chessdsbr 2:32e1e71f5885 5009 }
chessdsbr 2:32e1e71f5885 5010 else if(l36==1){
chessdsbr 2:32e1e71f5885 5011 if(l37==1){
chessdsbr 2:32e1e71f5885 5012 if(l38==1){
chessdsbr 2:32e1e71f5885 5013 if(l39==1){
chessdsbr 2:32e1e71f5885 5014 if(l40==1){
chessdsbr 2:32e1e71f5885 5015 figura_dib[4]=0x9F;
chessdsbr 2:32e1e71f5885 5016 }
chessdsbr 2:32e1e71f5885 5017 else{
chessdsbr 2:32e1e71f5885 5018 figura_dib[4]=0x9E;
chessdsbr 2:32e1e71f5885 5019 }
chessdsbr 2:32e1e71f5885 5020 }
chessdsbr 2:32e1e71f5885 5021 else if(l40==1){
chessdsbr 2:32e1e71f5885 5022 figura_dib[4]=0x9D;
chessdsbr 2:32e1e71f5885 5023 }
chessdsbr 2:32e1e71f5885 5024 else{
chessdsbr 2:32e1e71f5885 5025 figura_dib[4]=0x9C;
chessdsbr 2:32e1e71f5885 5026 }
chessdsbr 2:32e1e71f5885 5027 }
chessdsbr 2:32e1e71f5885 5028 else if(l39==1){
chessdsbr 2:32e1e71f5885 5029 if(l40==1){
chessdsbr 2:32e1e71f5885 5030 figura_dib[4]=0x9B;
chessdsbr 2:32e1e71f5885 5031 }
chessdsbr 2:32e1e71f5885 5032 else{
chessdsbr 2:32e1e71f5885 5033 figura_dib[4]=0x9A;
chessdsbr 2:32e1e71f5885 5034 }
chessdsbr 2:32e1e71f5885 5035 }
chessdsbr 2:32e1e71f5885 5036 else if(l40==1){
chessdsbr 2:32e1e71f5885 5037 figura_dib[4]=0x99;
chessdsbr 2:32e1e71f5885 5038 }
chessdsbr 2:32e1e71f5885 5039 else{
chessdsbr 2:32e1e71f5885 5040 figura_dib[4]=0x98;
chessdsbr 2:32e1e71f5885 5041 }
chessdsbr 2:32e1e71f5885 5042 }
chessdsbr 2:32e1e71f5885 5043 else if(l38==1){
chessdsbr 2:32e1e71f5885 5044 if(l39==1){
chessdsbr 2:32e1e71f5885 5045 if(l40==1){
chessdsbr 2:32e1e71f5885 5046 figura_dib[4]=0x97;
chessdsbr 2:32e1e71f5885 5047 }
chessdsbr 2:32e1e71f5885 5048 else{
chessdsbr 2:32e1e71f5885 5049 figura_dib[4]=0x96;
chessdsbr 2:32e1e71f5885 5050 }
chessdsbr 2:32e1e71f5885 5051 }
chessdsbr 2:32e1e71f5885 5052 else if(l40==1){
chessdsbr 2:32e1e71f5885 5053 figura_dib[4]=0x95;
chessdsbr 2:32e1e71f5885 5054 }
chessdsbr 2:32e1e71f5885 5055 else{
chessdsbr 2:32e1e71f5885 5056 figura_dib[4]=0x94;
chessdsbr 2:32e1e71f5885 5057 }
chessdsbr 2:32e1e71f5885 5058 }
chessdsbr 2:32e1e71f5885 5059 else if(l39==1){
chessdsbr 2:32e1e71f5885 5060 if(l40==1){
chessdsbr 2:32e1e71f5885 5061 figura_dib[4]=0x93;
chessdsbr 2:32e1e71f5885 5062 }
chessdsbr 2:32e1e71f5885 5063 else{
chessdsbr 2:32e1e71f5885 5064 figura_dib[4]=0x92;
chessdsbr 2:32e1e71f5885 5065 }
chessdsbr 2:32e1e71f5885 5066 }
chessdsbr 2:32e1e71f5885 5067 else if(l40==1){
chessdsbr 2:32e1e71f5885 5068 figura_dib[4]=0x91;
chessdsbr 2:32e1e71f5885 5069 }
chessdsbr 2:32e1e71f5885 5070 else{
chessdsbr 2:32e1e71f5885 5071 figura_dib[4]=0x90;
chessdsbr 2:32e1e71f5885 5072 }
chessdsbr 2:32e1e71f5885 5073 }
chessdsbr 2:32e1e71f5885 5074 else if(l37==1){
chessdsbr 2:32e1e71f5885 5075 if(l38==1){
chessdsbr 2:32e1e71f5885 5076 if(l39==1){
chessdsbr 2:32e1e71f5885 5077 if(l40==1){
chessdsbr 2:32e1e71f5885 5078 figura_dib[4]=0x8F;
chessdsbr 2:32e1e71f5885 5079 }
chessdsbr 2:32e1e71f5885 5080 else{
chessdsbr 2:32e1e71f5885 5081 figura_dib[4]=0x8E;
chessdsbr 2:32e1e71f5885 5082 }
chessdsbr 2:32e1e71f5885 5083 }
chessdsbr 2:32e1e71f5885 5084 else if(l40==1){
chessdsbr 2:32e1e71f5885 5085 figura_dib[4]=0x8D;
chessdsbr 2:32e1e71f5885 5086 }
chessdsbr 2:32e1e71f5885 5087 else{
chessdsbr 2:32e1e71f5885 5088 figura_dib[4]=0x8C;
chessdsbr 2:32e1e71f5885 5089 }
chessdsbr 2:32e1e71f5885 5090 }
chessdsbr 2:32e1e71f5885 5091 else if(l39==1){
chessdsbr 2:32e1e71f5885 5092 if(l40==1){
chessdsbr 2:32e1e71f5885 5093 figura_dib[4]=0x8B;
chessdsbr 2:32e1e71f5885 5094 }
chessdsbr 2:32e1e71f5885 5095 else{
chessdsbr 2:32e1e71f5885 5096 figura_dib[4]=0x8A;
chessdsbr 2:32e1e71f5885 5097 }
chessdsbr 2:32e1e71f5885 5098 }
chessdsbr 2:32e1e71f5885 5099 else if(l40==1){
chessdsbr 2:32e1e71f5885 5100 figura_dib[4]=0x89;
chessdsbr 2:32e1e71f5885 5101 }
chessdsbr 2:32e1e71f5885 5102 else{
chessdsbr 2:32e1e71f5885 5103 figura_dib[4]=0x88;
chessdsbr 2:32e1e71f5885 5104 }
chessdsbr 2:32e1e71f5885 5105 }
chessdsbr 2:32e1e71f5885 5106 else if(l38==1){
chessdsbr 2:32e1e71f5885 5107 if(l39==1){
chessdsbr 2:32e1e71f5885 5108 if(l40==1){
chessdsbr 2:32e1e71f5885 5109 figura_dib[4]=0x87;
chessdsbr 2:32e1e71f5885 5110 }
chessdsbr 2:32e1e71f5885 5111 else{
chessdsbr 2:32e1e71f5885 5112 figura_dib[4]=0x86;
chessdsbr 2:32e1e71f5885 5113 }
chessdsbr 2:32e1e71f5885 5114 }
chessdsbr 2:32e1e71f5885 5115 else if(l40==1){
chessdsbr 2:32e1e71f5885 5116 figura_dib[4]=0x85;
chessdsbr 2:32e1e71f5885 5117 }
chessdsbr 2:32e1e71f5885 5118 else{
chessdsbr 2:32e1e71f5885 5119 figura_dib[4]=0x84;
chessdsbr 2:32e1e71f5885 5120 }
chessdsbr 2:32e1e71f5885 5121 }
chessdsbr 2:32e1e71f5885 5122 else if(l39==1){
chessdsbr 2:32e1e71f5885 5123 if(l40==1){
chessdsbr 2:32e1e71f5885 5124 figura_dib[4]=0x83;
chessdsbr 2:32e1e71f5885 5125 }
chessdsbr 2:32e1e71f5885 5126 else{
chessdsbr 2:32e1e71f5885 5127 figura_dib[4]=0x82;
chessdsbr 2:32e1e71f5885 5128 }
chessdsbr 2:32e1e71f5885 5129 }
chessdsbr 2:32e1e71f5885 5130 else if(l40==1){
chessdsbr 2:32e1e71f5885 5131 figura_dib[4]=0x81;
chessdsbr 2:32e1e71f5885 5132 }
chessdsbr 2:32e1e71f5885 5133 else{
chessdsbr 2:32e1e71f5885 5134 figura_dib[4]=0x80;
chessdsbr 2:32e1e71f5885 5135 }
chessdsbr 2:32e1e71f5885 5136 }
chessdsbr 2:32e1e71f5885 5137 else if(l34==1){
chessdsbr 2:32e1e71f5885 5138 if(l35==1){
chessdsbr 2:32e1e71f5885 5139 if(l36==1){
chessdsbr 2:32e1e71f5885 5140 if(l37==1){
chessdsbr 2:32e1e71f5885 5141 if(l38==1){
chessdsbr 2:32e1e71f5885 5142 if(l39==1){
chessdsbr 2:32e1e71f5885 5143 if(l40==1){
chessdsbr 2:32e1e71f5885 5144 figura_dib[4]=0x7F;
chessdsbr 2:32e1e71f5885 5145 }
chessdsbr 2:32e1e71f5885 5146 else{
chessdsbr 2:32e1e71f5885 5147 figura_dib[4]=0x7E;
chessdsbr 2:32e1e71f5885 5148 }
chessdsbr 2:32e1e71f5885 5149 }
chessdsbr 2:32e1e71f5885 5150 else if(l40==1){
chessdsbr 2:32e1e71f5885 5151 figura_dib[4]=0x7D;
chessdsbr 2:32e1e71f5885 5152 }
chessdsbr 2:32e1e71f5885 5153 else{
chessdsbr 2:32e1e71f5885 5154 figura_dib[4]=0x7C;
chessdsbr 2:32e1e71f5885 5155 }
chessdsbr 2:32e1e71f5885 5156 }
chessdsbr 2:32e1e71f5885 5157 else if(l39==1){
chessdsbr 2:32e1e71f5885 5158 if(l40==1){
chessdsbr 2:32e1e71f5885 5159 figura_dib[4]=0x7B;
chessdsbr 2:32e1e71f5885 5160 }
chessdsbr 2:32e1e71f5885 5161 else{
chessdsbr 2:32e1e71f5885 5162 figura_dib[4]=0x7A;
chessdsbr 2:32e1e71f5885 5163 }
chessdsbr 2:32e1e71f5885 5164 }
chessdsbr 2:32e1e71f5885 5165 else if(l40==1){
chessdsbr 2:32e1e71f5885 5166 figura_dib[4]=0x79;
chessdsbr 2:32e1e71f5885 5167 }
chessdsbr 2:32e1e71f5885 5168 else{
chessdsbr 2:32e1e71f5885 5169 figura_dib[4]=0x78;
chessdsbr 2:32e1e71f5885 5170 }
chessdsbr 2:32e1e71f5885 5171 }
chessdsbr 2:32e1e71f5885 5172 else if(l38==1){
chessdsbr 2:32e1e71f5885 5173 if(l39==1){
chessdsbr 2:32e1e71f5885 5174 if(l40==1){
chessdsbr 2:32e1e71f5885 5175 figura_dib[4]=0x77;
chessdsbr 2:32e1e71f5885 5176 }
chessdsbr 2:32e1e71f5885 5177 else{
chessdsbr 2:32e1e71f5885 5178 figura_dib[4]=0x76;
chessdsbr 2:32e1e71f5885 5179 }
chessdsbr 2:32e1e71f5885 5180 }
chessdsbr 2:32e1e71f5885 5181 else if(l40==1){
chessdsbr 2:32e1e71f5885 5182 figura_dib[4]=0x75;
chessdsbr 2:32e1e71f5885 5183 }
chessdsbr 2:32e1e71f5885 5184 else{
chessdsbr 2:32e1e71f5885 5185 figura_dib[4]=0x74;
chessdsbr 2:32e1e71f5885 5186 }
chessdsbr 2:32e1e71f5885 5187 }
chessdsbr 2:32e1e71f5885 5188 else if(l39==1){
chessdsbr 2:32e1e71f5885 5189 if(l40==1){
chessdsbr 2:32e1e71f5885 5190 figura_dib[4]=0x73;
chessdsbr 2:32e1e71f5885 5191 }
chessdsbr 2:32e1e71f5885 5192 else{
chessdsbr 2:32e1e71f5885 5193 figura_dib[4]=0x72;
chessdsbr 2:32e1e71f5885 5194 }
chessdsbr 2:32e1e71f5885 5195 }
chessdsbr 2:32e1e71f5885 5196 else if(l40==1){
chessdsbr 2:32e1e71f5885 5197 figura_dib[4]=0x71;
chessdsbr 2:32e1e71f5885 5198 }
chessdsbr 2:32e1e71f5885 5199 else{
chessdsbr 2:32e1e71f5885 5200 figura_dib[4]=0x70;
chessdsbr 2:32e1e71f5885 5201 }
chessdsbr 2:32e1e71f5885 5202 }
chessdsbr 2:32e1e71f5885 5203 else if(l37==1){
chessdsbr 2:32e1e71f5885 5204 if(l38==1){
chessdsbr 2:32e1e71f5885 5205 if(l39==1){
chessdsbr 2:32e1e71f5885 5206 if(l40==1){
chessdsbr 2:32e1e71f5885 5207 figura_dib[4]=0x6F;
chessdsbr 2:32e1e71f5885 5208 }
chessdsbr 2:32e1e71f5885 5209 else{
chessdsbr 2:32e1e71f5885 5210 figura_dib[4]=0x6E;
chessdsbr 2:32e1e71f5885 5211 }
chessdsbr 2:32e1e71f5885 5212 }
chessdsbr 2:32e1e71f5885 5213 else if(l40==1){
chessdsbr 2:32e1e71f5885 5214 figura_dib[4]=0x6D;
chessdsbr 2:32e1e71f5885 5215 }
chessdsbr 2:32e1e71f5885 5216 else{
chessdsbr 2:32e1e71f5885 5217 figura_dib[4]=0x6C;
chessdsbr 2:32e1e71f5885 5218 }
chessdsbr 2:32e1e71f5885 5219 }
chessdsbr 2:32e1e71f5885 5220 else if(l39==1){
chessdsbr 2:32e1e71f5885 5221 if(l40==1){
chessdsbr 2:32e1e71f5885 5222 figura_dib[4]=0x6B;
chessdsbr 2:32e1e71f5885 5223 }
chessdsbr 2:32e1e71f5885 5224 else{
chessdsbr 2:32e1e71f5885 5225 figura_dib[4]=0x6A;
chessdsbr 2:32e1e71f5885 5226 }
chessdsbr 2:32e1e71f5885 5227 }
chessdsbr 2:32e1e71f5885 5228 else if(l40==1){
chessdsbr 2:32e1e71f5885 5229 figura_dib[4]=0x69;
chessdsbr 2:32e1e71f5885 5230 }
chessdsbr 2:32e1e71f5885 5231 else{
chessdsbr 2:32e1e71f5885 5232 figura_dib[4]=0x68;
chessdsbr 2:32e1e71f5885 5233 }
chessdsbr 2:32e1e71f5885 5234 }
chessdsbr 2:32e1e71f5885 5235 else if(l38==1){
chessdsbr 2:32e1e71f5885 5236 if(l39==1){
chessdsbr 2:32e1e71f5885 5237 if(l40==1){
chessdsbr 2:32e1e71f5885 5238 figura_dib[4]=0x67;
chessdsbr 2:32e1e71f5885 5239 }
chessdsbr 2:32e1e71f5885 5240 else{
chessdsbr 2:32e1e71f5885 5241 figura_dib[4]=0x66;
chessdsbr 2:32e1e71f5885 5242 }
chessdsbr 2:32e1e71f5885 5243 }
chessdsbr 2:32e1e71f5885 5244 else if(l40==1){
chessdsbr 2:32e1e71f5885 5245 figura_dib[4]=0x65;
chessdsbr 2:32e1e71f5885 5246 }
chessdsbr 2:32e1e71f5885 5247 else{
chessdsbr 2:32e1e71f5885 5248 figura_dib[4]=0x64;
chessdsbr 2:32e1e71f5885 5249 }
chessdsbr 2:32e1e71f5885 5250 }
chessdsbr 2:32e1e71f5885 5251 else if(l39==1){
chessdsbr 2:32e1e71f5885 5252 if(l40==1){
chessdsbr 2:32e1e71f5885 5253 figura_dib[4]=0x63;
chessdsbr 2:32e1e71f5885 5254 }
chessdsbr 2:32e1e71f5885 5255 else{
chessdsbr 2:32e1e71f5885 5256 figura_dib[4]=0x62;
chessdsbr 2:32e1e71f5885 5257 }
chessdsbr 2:32e1e71f5885 5258 }
chessdsbr 2:32e1e71f5885 5259 else if(l40==1){
chessdsbr 2:32e1e71f5885 5260 figura_dib[4]=0x61;
chessdsbr 2:32e1e71f5885 5261 }
chessdsbr 2:32e1e71f5885 5262 else{
chessdsbr 2:32e1e71f5885 5263 figura_dib[4]=0x60;
chessdsbr 2:32e1e71f5885 5264 }
chessdsbr 2:32e1e71f5885 5265 }
chessdsbr 2:32e1e71f5885 5266 else if(l36==1){
chessdsbr 2:32e1e71f5885 5267 if(l37==1){
chessdsbr 2:32e1e71f5885 5268 if(l38==1){
chessdsbr 2:32e1e71f5885 5269 if(l39==1){
chessdsbr 2:32e1e71f5885 5270 if(l40==1){
chessdsbr 2:32e1e71f5885 5271 figura_dib[4]=0x5F;
chessdsbr 2:32e1e71f5885 5272 }
chessdsbr 2:32e1e71f5885 5273 else{
chessdsbr 2:32e1e71f5885 5274 figura_dib[4]=0x5E;
chessdsbr 2:32e1e71f5885 5275 }
chessdsbr 2:32e1e71f5885 5276 }
chessdsbr 2:32e1e71f5885 5277 else if(l40==1){
chessdsbr 2:32e1e71f5885 5278 figura_dib[4]=0x5D;
chessdsbr 2:32e1e71f5885 5279 }
chessdsbr 2:32e1e71f5885 5280 else{
chessdsbr 2:32e1e71f5885 5281 figura_dib[4]=0x5C;
chessdsbr 2:32e1e71f5885 5282 }
chessdsbr 2:32e1e71f5885 5283 }
chessdsbr 2:32e1e71f5885 5284 else if(l39==1){
chessdsbr 2:32e1e71f5885 5285 if(l40==1){
chessdsbr 2:32e1e71f5885 5286 figura_dib[4]=0x5B;
chessdsbr 2:32e1e71f5885 5287 }
chessdsbr 2:32e1e71f5885 5288 else{
chessdsbr 2:32e1e71f5885 5289 figura_dib[4]=0x5A;
chessdsbr 2:32e1e71f5885 5290 }
chessdsbr 2:32e1e71f5885 5291 }
chessdsbr 2:32e1e71f5885 5292 else if(l40==1){
chessdsbr 2:32e1e71f5885 5293 figura_dib[4]=0x59;
chessdsbr 2:32e1e71f5885 5294 }
chessdsbr 2:32e1e71f5885 5295 else{
chessdsbr 2:32e1e71f5885 5296 figura_dib[4]=0x58;
chessdsbr 2:32e1e71f5885 5297 }
chessdsbr 2:32e1e71f5885 5298 }
chessdsbr 2:32e1e71f5885 5299 else if(l38==1){
chessdsbr 2:32e1e71f5885 5300 if(l39==1){
chessdsbr 2:32e1e71f5885 5301 if(l40==1){
chessdsbr 2:32e1e71f5885 5302 figura_dib[4]=0x57;
chessdsbr 2:32e1e71f5885 5303 }
chessdsbr 2:32e1e71f5885 5304 else{
chessdsbr 2:32e1e71f5885 5305 figura_dib[4]=0x56;
chessdsbr 2:32e1e71f5885 5306 }
chessdsbr 2:32e1e71f5885 5307 }
chessdsbr 2:32e1e71f5885 5308 else if(l40==1){
chessdsbr 2:32e1e71f5885 5309 figura_dib[4]=0x55;
chessdsbr 2:32e1e71f5885 5310 }
chessdsbr 2:32e1e71f5885 5311 else{
chessdsbr 2:32e1e71f5885 5312 figura_dib[4]=0x54;
chessdsbr 2:32e1e71f5885 5313 }
chessdsbr 2:32e1e71f5885 5314 }
chessdsbr 2:32e1e71f5885 5315 else if(l39==1){
chessdsbr 2:32e1e71f5885 5316 if(l40==1){
chessdsbr 2:32e1e71f5885 5317 figura_dib[4]=0x53;
chessdsbr 2:32e1e71f5885 5318 }
chessdsbr 2:32e1e71f5885 5319 else{
chessdsbr 2:32e1e71f5885 5320 figura_dib[4]=0x52;
chessdsbr 2:32e1e71f5885 5321 }
chessdsbr 2:32e1e71f5885 5322 }
chessdsbr 2:32e1e71f5885 5323 else if(l40==1){
chessdsbr 2:32e1e71f5885 5324 figura_dib[4]=0x51;
chessdsbr 2:32e1e71f5885 5325 }
chessdsbr 2:32e1e71f5885 5326 else{
chessdsbr 2:32e1e71f5885 5327 figura_dib[4]=0x50;
chessdsbr 2:32e1e71f5885 5328 }
chessdsbr 2:32e1e71f5885 5329 }
chessdsbr 2:32e1e71f5885 5330 else if(l37==1){
chessdsbr 2:32e1e71f5885 5331 if(l38==1){
chessdsbr 2:32e1e71f5885 5332 if(l39==1){
chessdsbr 2:32e1e71f5885 5333 if(l40==1){
chessdsbr 2:32e1e71f5885 5334 figura_dib[4]=0x4F;
chessdsbr 2:32e1e71f5885 5335 }
chessdsbr 2:32e1e71f5885 5336 else{
chessdsbr 2:32e1e71f5885 5337 figura_dib[4]=0x4E;
chessdsbr 2:32e1e71f5885 5338 }
chessdsbr 2:32e1e71f5885 5339 }
chessdsbr 2:32e1e71f5885 5340 else if(l40==1){
chessdsbr 2:32e1e71f5885 5341 figura_dib[4]=0x4D;
chessdsbr 2:32e1e71f5885 5342 }
chessdsbr 2:32e1e71f5885 5343 else{
chessdsbr 2:32e1e71f5885 5344 figura_dib[4]=0x4C;
chessdsbr 2:32e1e71f5885 5345 }
chessdsbr 2:32e1e71f5885 5346 }
chessdsbr 2:32e1e71f5885 5347 else if(l39==1){
chessdsbr 2:32e1e71f5885 5348 if(l40==1){
chessdsbr 2:32e1e71f5885 5349 figura_dib[4]=0x4B;
chessdsbr 2:32e1e71f5885 5350 }
chessdsbr 2:32e1e71f5885 5351 else{
chessdsbr 2:32e1e71f5885 5352 figura_dib[4]=0x4A;
chessdsbr 2:32e1e71f5885 5353 }
chessdsbr 2:32e1e71f5885 5354 }
chessdsbr 2:32e1e71f5885 5355 else if(l40==1){
chessdsbr 2:32e1e71f5885 5356 figura_dib[4]=0x49;
chessdsbr 2:32e1e71f5885 5357 }
chessdsbr 2:32e1e71f5885 5358 else{
chessdsbr 2:32e1e71f5885 5359 figura_dib[4]=0x48;
chessdsbr 2:32e1e71f5885 5360 }
chessdsbr 2:32e1e71f5885 5361 }
chessdsbr 2:32e1e71f5885 5362 else if(l38==1){
chessdsbr 2:32e1e71f5885 5363 if(l39==1){
chessdsbr 2:32e1e71f5885 5364 if(l40==1){
chessdsbr 2:32e1e71f5885 5365 figura_dib[4]=0x47;
chessdsbr 2:32e1e71f5885 5366 }
chessdsbr 2:32e1e71f5885 5367 else{
chessdsbr 2:32e1e71f5885 5368 figura_dib[4]=0x46;
chessdsbr 2:32e1e71f5885 5369 }
chessdsbr 2:32e1e71f5885 5370 }
chessdsbr 2:32e1e71f5885 5371 else if(l40==1){
chessdsbr 2:32e1e71f5885 5372 figura_dib[4]=0x45;
chessdsbr 2:32e1e71f5885 5373 }
chessdsbr 2:32e1e71f5885 5374 else{
chessdsbr 2:32e1e71f5885 5375 figura_dib[4]=0x44;
chessdsbr 2:32e1e71f5885 5376 }
chessdsbr 2:32e1e71f5885 5377 }
chessdsbr 2:32e1e71f5885 5378 else if(l39==1){
chessdsbr 2:32e1e71f5885 5379 if(l40==1){
chessdsbr 2:32e1e71f5885 5380 figura_dib[4]=0x43;
chessdsbr 2:32e1e71f5885 5381 }
chessdsbr 2:32e1e71f5885 5382 else{
chessdsbr 2:32e1e71f5885 5383 figura_dib[4]=0x42;
chessdsbr 2:32e1e71f5885 5384 }
chessdsbr 2:32e1e71f5885 5385 }
chessdsbr 2:32e1e71f5885 5386 else if(l40==1){
chessdsbr 2:32e1e71f5885 5387 figura_dib[4]=0x41;
chessdsbr 2:32e1e71f5885 5388 }
chessdsbr 2:32e1e71f5885 5389 else{
chessdsbr 2:32e1e71f5885 5390 figura_dib[4]=0x40;
chessdsbr 2:32e1e71f5885 5391 }
chessdsbr 2:32e1e71f5885 5392 }
chessdsbr 2:32e1e71f5885 5393 else if(l35==1){
chessdsbr 2:32e1e71f5885 5394 if(l36==1){
chessdsbr 2:32e1e71f5885 5395 if(l37==1){
chessdsbr 2:32e1e71f5885 5396 if(l38==1){
chessdsbr 2:32e1e71f5885 5397 if(l39==1){
chessdsbr 2:32e1e71f5885 5398 if(l40==1){
chessdsbr 2:32e1e71f5885 5399 figura_dib[4]=0x3F;
chessdsbr 2:32e1e71f5885 5400 }
chessdsbr 2:32e1e71f5885 5401 else{
chessdsbr 2:32e1e71f5885 5402 figura_dib[4]=0x3E;
chessdsbr 2:32e1e71f5885 5403 }
chessdsbr 2:32e1e71f5885 5404 }
chessdsbr 2:32e1e71f5885 5405 else if(l40==1){
chessdsbr 2:32e1e71f5885 5406 figura_dib[4]=0x3D;
chessdsbr 2:32e1e71f5885 5407 }
chessdsbr 2:32e1e71f5885 5408 else{
chessdsbr 2:32e1e71f5885 5409 figura_dib[4]=0x3C;
chessdsbr 2:32e1e71f5885 5410 }
chessdsbr 2:32e1e71f5885 5411 }
chessdsbr 2:32e1e71f5885 5412 else if(l39==1){
chessdsbr 2:32e1e71f5885 5413 if(l40==1){
chessdsbr 2:32e1e71f5885 5414 figura_dib[4]=0x3B;
chessdsbr 2:32e1e71f5885 5415 }
chessdsbr 2:32e1e71f5885 5416 else{
chessdsbr 2:32e1e71f5885 5417 figura_dib[4]=0x3A;
chessdsbr 2:32e1e71f5885 5418 }
chessdsbr 2:32e1e71f5885 5419 }
chessdsbr 2:32e1e71f5885 5420 else if(l40==1){
chessdsbr 2:32e1e71f5885 5421 figura_dib[4]=0x39;
chessdsbr 2:32e1e71f5885 5422 }
chessdsbr 2:32e1e71f5885 5423 else{
chessdsbr 2:32e1e71f5885 5424 figura_dib[4]=0x38;
chessdsbr 2:32e1e71f5885 5425 }
chessdsbr 2:32e1e71f5885 5426 }
chessdsbr 2:32e1e71f5885 5427 else if(l38==1){
chessdsbr 2:32e1e71f5885 5428 if(l39==1){
chessdsbr 2:32e1e71f5885 5429 if(l40==1){
chessdsbr 2:32e1e71f5885 5430 figura_dib[4]=0x37;
chessdsbr 2:32e1e71f5885 5431 }
chessdsbr 2:32e1e71f5885 5432 else{
chessdsbr 2:32e1e71f5885 5433 figura_dib[4]=0x36;
chessdsbr 2:32e1e71f5885 5434 }
chessdsbr 2:32e1e71f5885 5435 }
chessdsbr 2:32e1e71f5885 5436 else if(l40==1){
chessdsbr 2:32e1e71f5885 5437 figura_dib[4]=0x35;
chessdsbr 2:32e1e71f5885 5438 }
chessdsbr 2:32e1e71f5885 5439 else{
chessdsbr 2:32e1e71f5885 5440 figura_dib[4]=0x34;
chessdsbr 2:32e1e71f5885 5441 }
chessdsbr 2:32e1e71f5885 5442 }
chessdsbr 2:32e1e71f5885 5443 else if(l39==1){
chessdsbr 2:32e1e71f5885 5444 if(l40==1){
chessdsbr 2:32e1e71f5885 5445 figura_dib[4]=0x33;
chessdsbr 2:32e1e71f5885 5446 }
chessdsbr 2:32e1e71f5885 5447 else{
chessdsbr 2:32e1e71f5885 5448 figura_dib[4]=0x32;
chessdsbr 2:32e1e71f5885 5449 }
chessdsbr 2:32e1e71f5885 5450 }
chessdsbr 2:32e1e71f5885 5451 else if(l40==1){
chessdsbr 2:32e1e71f5885 5452 figura_dib[4]=0x31;
chessdsbr 2:32e1e71f5885 5453 }
chessdsbr 2:32e1e71f5885 5454 else{
chessdsbr 2:32e1e71f5885 5455 figura_dib[4]=0x30;
chessdsbr 2:32e1e71f5885 5456 }
chessdsbr 2:32e1e71f5885 5457 }
chessdsbr 2:32e1e71f5885 5458 else if(l37==1){
chessdsbr 2:32e1e71f5885 5459 if(l38==1){
chessdsbr 2:32e1e71f5885 5460 if(l39==1){
chessdsbr 2:32e1e71f5885 5461 if(l40==1){
chessdsbr 2:32e1e71f5885 5462 figura_dib[4]=0x2F;
chessdsbr 2:32e1e71f5885 5463 }
chessdsbr 2:32e1e71f5885 5464 else{
chessdsbr 2:32e1e71f5885 5465 figura_dib[4]=0x2E;
chessdsbr 2:32e1e71f5885 5466 }
chessdsbr 2:32e1e71f5885 5467 }
chessdsbr 2:32e1e71f5885 5468 else if(l40==1){
chessdsbr 2:32e1e71f5885 5469 figura_dib[4]=0x2D;
chessdsbr 2:32e1e71f5885 5470 }
chessdsbr 2:32e1e71f5885 5471 else{
chessdsbr 2:32e1e71f5885 5472 figura_dib[4]=0x2C;
chessdsbr 2:32e1e71f5885 5473 }
chessdsbr 2:32e1e71f5885 5474 }
chessdsbr 2:32e1e71f5885 5475 else if(l39==1){
chessdsbr 2:32e1e71f5885 5476 if(l40==1){
chessdsbr 2:32e1e71f5885 5477 figura_dib[4]=0x2B;
chessdsbr 2:32e1e71f5885 5478 }
chessdsbr 2:32e1e71f5885 5479 else{
chessdsbr 2:32e1e71f5885 5480 figura_dib[4]=0x2A;
chessdsbr 2:32e1e71f5885 5481 }
chessdsbr 2:32e1e71f5885 5482 }
chessdsbr 2:32e1e71f5885 5483 else if(l40==1){
chessdsbr 2:32e1e71f5885 5484 figura_dib[4]=0x29;
chessdsbr 2:32e1e71f5885 5485 }
chessdsbr 2:32e1e71f5885 5486 else{
chessdsbr 2:32e1e71f5885 5487 figura_dib[4]=0x28;
chessdsbr 2:32e1e71f5885 5488 }
chessdsbr 2:32e1e71f5885 5489 }
chessdsbr 2:32e1e71f5885 5490 else if(l38==1){
chessdsbr 2:32e1e71f5885 5491 if(l39==1){
chessdsbr 2:32e1e71f5885 5492 if(l40==1){
chessdsbr 2:32e1e71f5885 5493 figura_dib[4]=0x27;
chessdsbr 2:32e1e71f5885 5494 }
chessdsbr 2:32e1e71f5885 5495 else{
chessdsbr 2:32e1e71f5885 5496 figura_dib[4]=0x26;
chessdsbr 2:32e1e71f5885 5497 }
chessdsbr 2:32e1e71f5885 5498 }
chessdsbr 2:32e1e71f5885 5499 else if(l40==1){
chessdsbr 2:32e1e71f5885 5500 figura_dib[4]=0x25;
chessdsbr 2:32e1e71f5885 5501 }
chessdsbr 2:32e1e71f5885 5502 else{
chessdsbr 2:32e1e71f5885 5503 figura_dib[4]=0x24;
chessdsbr 2:32e1e71f5885 5504 }
chessdsbr 2:32e1e71f5885 5505 }
chessdsbr 2:32e1e71f5885 5506 else if(l39==1){
chessdsbr 2:32e1e71f5885 5507 if(l40==1){
chessdsbr 2:32e1e71f5885 5508 figura_dib[4]=0x23;
chessdsbr 2:32e1e71f5885 5509 }
chessdsbr 2:32e1e71f5885 5510 else{
chessdsbr 2:32e1e71f5885 5511 figura_dib[4]=0x22;
chessdsbr 2:32e1e71f5885 5512 }
chessdsbr 2:32e1e71f5885 5513 }
chessdsbr 2:32e1e71f5885 5514 else if(l40==1){
chessdsbr 2:32e1e71f5885 5515 figura_dib[4]=0x21;
chessdsbr 2:32e1e71f5885 5516 }
chessdsbr 2:32e1e71f5885 5517 else{
chessdsbr 2:32e1e71f5885 5518 figura_dib[4]=0x20;
chessdsbr 2:32e1e71f5885 5519 }
chessdsbr 2:32e1e71f5885 5520 }
chessdsbr 2:32e1e71f5885 5521 else if(l36==1){
chessdsbr 2:32e1e71f5885 5522 if(l37==1){
chessdsbr 2:32e1e71f5885 5523 if(l38==1){
chessdsbr 2:32e1e71f5885 5524 if(l39==1){
chessdsbr 2:32e1e71f5885 5525 if(l40==1){
chessdsbr 2:32e1e71f5885 5526 figura_dib[4]=0x1F;
chessdsbr 2:32e1e71f5885 5527 }
chessdsbr 2:32e1e71f5885 5528 else{
chessdsbr 2:32e1e71f5885 5529 figura_dib[4]=0x1E;
chessdsbr 2:32e1e71f5885 5530 }
chessdsbr 2:32e1e71f5885 5531 }
chessdsbr 2:32e1e71f5885 5532 else if(l40==1){
chessdsbr 2:32e1e71f5885 5533 figura_dib[4]=0x1D;
chessdsbr 2:32e1e71f5885 5534 }
chessdsbr 2:32e1e71f5885 5535 else{
chessdsbr 2:32e1e71f5885 5536 figura_dib[4]=0x1C;
chessdsbr 2:32e1e71f5885 5537 }
chessdsbr 2:32e1e71f5885 5538 }
chessdsbr 2:32e1e71f5885 5539 else if(l39==1){
chessdsbr 2:32e1e71f5885 5540 if(l40==1){
chessdsbr 2:32e1e71f5885 5541 figura_dib[4]=0x1B;
chessdsbr 2:32e1e71f5885 5542 }
chessdsbr 2:32e1e71f5885 5543 else{
chessdsbr 2:32e1e71f5885 5544 figura_dib[4]=0x1A;
chessdsbr 2:32e1e71f5885 5545 }
chessdsbr 2:32e1e71f5885 5546 }
chessdsbr 2:32e1e71f5885 5547 else if(l40==1){
chessdsbr 2:32e1e71f5885 5548 figura_dib[4]=0x19;
chessdsbr 2:32e1e71f5885 5549 }
chessdsbr 2:32e1e71f5885 5550 else{
chessdsbr 2:32e1e71f5885 5551 figura_dib[4]=0x18;
chessdsbr 2:32e1e71f5885 5552 }
chessdsbr 2:32e1e71f5885 5553 }
chessdsbr 2:32e1e71f5885 5554 else if(l38==1){
chessdsbr 2:32e1e71f5885 5555 if(l39==1){
chessdsbr 2:32e1e71f5885 5556 if(l40==1){
chessdsbr 2:32e1e71f5885 5557 figura_dib[4]=0x17;
chessdsbr 2:32e1e71f5885 5558 }
chessdsbr 2:32e1e71f5885 5559 else{
chessdsbr 2:32e1e71f5885 5560 figura_dib[4]=0x16;
chessdsbr 2:32e1e71f5885 5561 }
chessdsbr 2:32e1e71f5885 5562 }
chessdsbr 2:32e1e71f5885 5563 else if(l40==1){
chessdsbr 2:32e1e71f5885 5564 figura_dib[4]=0x15;
chessdsbr 2:32e1e71f5885 5565 }
chessdsbr 2:32e1e71f5885 5566 else{
chessdsbr 2:32e1e71f5885 5567 figura_dib[4]=0x14;
chessdsbr 2:32e1e71f5885 5568 }
chessdsbr 2:32e1e71f5885 5569 }
chessdsbr 2:32e1e71f5885 5570 else if(l39==1){
chessdsbr 2:32e1e71f5885 5571 if(l40==1){
chessdsbr 2:32e1e71f5885 5572 figura_dib[4]=0x13;
chessdsbr 2:32e1e71f5885 5573 }
chessdsbr 2:32e1e71f5885 5574 else{
chessdsbr 2:32e1e71f5885 5575 figura_dib[4]=0x12;
chessdsbr 2:32e1e71f5885 5576 }
chessdsbr 2:32e1e71f5885 5577 }
chessdsbr 2:32e1e71f5885 5578 else if(l40==1){
chessdsbr 2:32e1e71f5885 5579 figura_dib[4]=0x11;
chessdsbr 2:32e1e71f5885 5580 }
chessdsbr 2:32e1e71f5885 5581 else{
chessdsbr 2:32e1e71f5885 5582 figura_dib[4]=0x10;
chessdsbr 2:32e1e71f5885 5583 }
chessdsbr 2:32e1e71f5885 5584 }
chessdsbr 2:32e1e71f5885 5585 else if(l37==1){
chessdsbr 2:32e1e71f5885 5586 if(l38==1){
chessdsbr 2:32e1e71f5885 5587 if(l39==1){
chessdsbr 2:32e1e71f5885 5588 if(l40==1){
chessdsbr 2:32e1e71f5885 5589 figura_dib[4]=0x0F;
chessdsbr 2:32e1e71f5885 5590 }
chessdsbr 2:32e1e71f5885 5591 else{
chessdsbr 2:32e1e71f5885 5592 figura_dib[4]=0x0E;
chessdsbr 2:32e1e71f5885 5593 }
chessdsbr 2:32e1e71f5885 5594 }
chessdsbr 2:32e1e71f5885 5595 else if(l40==1){
chessdsbr 2:32e1e71f5885 5596 figura_dib[4]=0x0D;
chessdsbr 2:32e1e71f5885 5597 }
chessdsbr 2:32e1e71f5885 5598 else{
chessdsbr 2:32e1e71f5885 5599 figura_dib[4]=0x0C;
chessdsbr 2:32e1e71f5885 5600 }
chessdsbr 2:32e1e71f5885 5601 }
chessdsbr 2:32e1e71f5885 5602 else if(l39==1){
chessdsbr 2:32e1e71f5885 5603 if(l40==1){
chessdsbr 2:32e1e71f5885 5604 figura_dib[4]=0x0B;
chessdsbr 2:32e1e71f5885 5605 }
chessdsbr 2:32e1e71f5885 5606 else{
chessdsbr 2:32e1e71f5885 5607 figura_dib[4]=0x0A;
chessdsbr 2:32e1e71f5885 5608 }
chessdsbr 2:32e1e71f5885 5609 }
chessdsbr 2:32e1e71f5885 5610 else if(l40==1){
chessdsbr 2:32e1e71f5885 5611 figura_dib[4]=0x09;
chessdsbr 2:32e1e71f5885 5612 }
chessdsbr 2:32e1e71f5885 5613 else{
chessdsbr 2:32e1e71f5885 5614 figura_dib[4]=0x08;
chessdsbr 2:32e1e71f5885 5615 }
chessdsbr 2:32e1e71f5885 5616 }
chessdsbr 2:32e1e71f5885 5617 else if(l38==1){
chessdsbr 2:32e1e71f5885 5618 if(l39==1){
chessdsbr 2:32e1e71f5885 5619 if(l40==1){
chessdsbr 2:32e1e71f5885 5620 figura_dib[4]=0x07;
chessdsbr 2:32e1e71f5885 5621 }
chessdsbr 2:32e1e71f5885 5622 else{
chessdsbr 2:32e1e71f5885 5623 figura_dib[4]=0x06;
chessdsbr 2:32e1e71f5885 5624 }
chessdsbr 2:32e1e71f5885 5625 }
chessdsbr 2:32e1e71f5885 5626 else if(l40==1){
chessdsbr 2:32e1e71f5885 5627 figura_dib[4]=0x05;
chessdsbr 2:32e1e71f5885 5628 }
chessdsbr 2:32e1e71f5885 5629 else{
chessdsbr 2:32e1e71f5885 5630 figura_dib[4]=0x04;
chessdsbr 2:32e1e71f5885 5631 }
chessdsbr 2:32e1e71f5885 5632 }
chessdsbr 2:32e1e71f5885 5633 else if(l39==1){
chessdsbr 2:32e1e71f5885 5634 if(l40==1){
chessdsbr 2:32e1e71f5885 5635 figura_dib[4]=0x03;
chessdsbr 2:32e1e71f5885 5636 }
chessdsbr 2:32e1e71f5885 5637 else{
chessdsbr 2:32e1e71f5885 5638 figura_dib[4]=0x02;
chessdsbr 2:32e1e71f5885 5639 }
chessdsbr 2:32e1e71f5885 5640 }
chessdsbr 2:32e1e71f5885 5641 else if(l40==1){
chessdsbr 2:32e1e71f5885 5642 figura_dib[4]=0x01;
chessdsbr 2:32e1e71f5885 5643 }
chessdsbr 2:32e1e71f5885 5644 else{
chessdsbr 2:32e1e71f5885 5645 figura_dib[4]=0x00;
chessdsbr 2:32e1e71f5885 5646 }
chessdsbr 2:32e1e71f5885 5647 /////
chessdsbr 2:32e1e71f5885 5648 ////
chessdsbr 2:32e1e71f5885 5649 ///
chessdsbr 2:32e1e71f5885 5650 //
chessdsbr 2:32e1e71f5885 5651 //fila 6
chessdsbr 2:32e1e71f5885 5652 //
chessdsbr 2:32e1e71f5885 5653 ///
chessdsbr 2:32e1e71f5885 5654 ////
chessdsbr 2:32e1e71f5885 5655 /////
chessdsbr 2:32e1e71f5885 5656 if(l41==1){
chessdsbr 2:32e1e71f5885 5657 if(l42==1){
chessdsbr 2:32e1e71f5885 5658 if(l43==1){
chessdsbr 2:32e1e71f5885 5659 if(l44==1){
chessdsbr 2:32e1e71f5885 5660 if(l45==1){
chessdsbr 2:32e1e71f5885 5661 if(l46==1){
chessdsbr 2:32e1e71f5885 5662 if(l47==1){
chessdsbr 2:32e1e71f5885 5663 if(l48==1){
chessdsbr 2:32e1e71f5885 5664 figura_dib[5]=0xFF;
chessdsbr 2:32e1e71f5885 5665 }
chessdsbr 2:32e1e71f5885 5666 else{
chessdsbr 2:32e1e71f5885 5667 figura_dib[5]=0xFE;
chessdsbr 2:32e1e71f5885 5668 }
chessdsbr 2:32e1e71f5885 5669 }
chessdsbr 2:32e1e71f5885 5670 else if(l48==1){
chessdsbr 2:32e1e71f5885 5671 figura_dib[5]=0xFD;
chessdsbr 2:32e1e71f5885 5672 }
chessdsbr 2:32e1e71f5885 5673 else{
chessdsbr 2:32e1e71f5885 5674 figura_dib[5]=0xFC;
chessdsbr 2:32e1e71f5885 5675 }
chessdsbr 2:32e1e71f5885 5676 }
chessdsbr 2:32e1e71f5885 5677 else if(l47==1){
chessdsbr 2:32e1e71f5885 5678 if(l48==1){
chessdsbr 2:32e1e71f5885 5679 figura_dib[5]=0xFB;
chessdsbr 2:32e1e71f5885 5680 }
chessdsbr 2:32e1e71f5885 5681 else{
chessdsbr 2:32e1e71f5885 5682 figura_dib[5]=0xFA;
chessdsbr 2:32e1e71f5885 5683 }
chessdsbr 2:32e1e71f5885 5684 }
chessdsbr 2:32e1e71f5885 5685 else if(l48==1){
chessdsbr 2:32e1e71f5885 5686 figura_dib[5]=0xF9;
chessdsbr 2:32e1e71f5885 5687 }
chessdsbr 2:32e1e71f5885 5688 else{
chessdsbr 2:32e1e71f5885 5689 figura_dib[5]=0xF8;
chessdsbr 2:32e1e71f5885 5690 }
chessdsbr 2:32e1e71f5885 5691 }
chessdsbr 2:32e1e71f5885 5692 else if(l46==1){
chessdsbr 2:32e1e71f5885 5693 if(l47==1){
chessdsbr 2:32e1e71f5885 5694 if(l48==1){
chessdsbr 2:32e1e71f5885 5695 figura_dib[5]=0xF7;
chessdsbr 2:32e1e71f5885 5696 }
chessdsbr 2:32e1e71f5885 5697 else{
chessdsbr 2:32e1e71f5885 5698 figura_dib[5]=0xF6;
chessdsbr 2:32e1e71f5885 5699 }
chessdsbr 2:32e1e71f5885 5700 }
chessdsbr 2:32e1e71f5885 5701 else if(l48==1){
chessdsbr 2:32e1e71f5885 5702 figura_dib[5]=0xF5;
chessdsbr 2:32e1e71f5885 5703 }
chessdsbr 2:32e1e71f5885 5704 else{
chessdsbr 2:32e1e71f5885 5705 figura_dib[5]=0xF4;
chessdsbr 2:32e1e71f5885 5706 }
chessdsbr 2:32e1e71f5885 5707 }
chessdsbr 2:32e1e71f5885 5708 else if(l47==1){
chessdsbr 2:32e1e71f5885 5709 if(l48==1){
chessdsbr 2:32e1e71f5885 5710 figura_dib[5]=0xF3;
chessdsbr 2:32e1e71f5885 5711 }
chessdsbr 2:32e1e71f5885 5712 else{
chessdsbr 2:32e1e71f5885 5713 figura_dib[5]=0xF2;
chessdsbr 2:32e1e71f5885 5714 }
chessdsbr 2:32e1e71f5885 5715 }
chessdsbr 2:32e1e71f5885 5716 else if(l48==1){
chessdsbr 2:32e1e71f5885 5717 figura_dib[5]=0xF1;
chessdsbr 2:32e1e71f5885 5718 }
chessdsbr 2:32e1e71f5885 5719 else{
chessdsbr 2:32e1e71f5885 5720 figura_dib[5]=0xF0;
chessdsbr 2:32e1e71f5885 5721 }
chessdsbr 2:32e1e71f5885 5722 }
chessdsbr 2:32e1e71f5885 5723 else if(l45==1){
chessdsbr 2:32e1e71f5885 5724 if(l46==1){
chessdsbr 2:32e1e71f5885 5725 if(l47==1){
chessdsbr 2:32e1e71f5885 5726 if(l48==1){
chessdsbr 2:32e1e71f5885 5727 figura_dib[5]=0xEF;
chessdsbr 2:32e1e71f5885 5728 }
chessdsbr 2:32e1e71f5885 5729 else{
chessdsbr 2:32e1e71f5885 5730 figura_dib[5]=0xEE;
chessdsbr 2:32e1e71f5885 5731 }
chessdsbr 2:32e1e71f5885 5732 }
chessdsbr 2:32e1e71f5885 5733 else if(l48==1){
chessdsbr 2:32e1e71f5885 5734 figura_dib[5]=0xED;
chessdsbr 2:32e1e71f5885 5735 }
chessdsbr 2:32e1e71f5885 5736 else{
chessdsbr 2:32e1e71f5885 5737 figura_dib[5]=0xEC;
chessdsbr 2:32e1e71f5885 5738 }
chessdsbr 2:32e1e71f5885 5739 }
chessdsbr 2:32e1e71f5885 5740 else if(l47==1){
chessdsbr 2:32e1e71f5885 5741 if(l48==1){
chessdsbr 2:32e1e71f5885 5742 figura_dib[5]=0xEB;
chessdsbr 2:32e1e71f5885 5743 }
chessdsbr 2:32e1e71f5885 5744 else{
chessdsbr 2:32e1e71f5885 5745 figura_dib[5]=0xEA;
chessdsbr 2:32e1e71f5885 5746 }
chessdsbr 2:32e1e71f5885 5747 }
chessdsbr 2:32e1e71f5885 5748 else if(l48==1){
chessdsbr 2:32e1e71f5885 5749 figura_dib[5]=0xE9;
chessdsbr 2:32e1e71f5885 5750 }
chessdsbr 2:32e1e71f5885 5751 else{
chessdsbr 2:32e1e71f5885 5752 figura_dib[5]=0xE8;
chessdsbr 2:32e1e71f5885 5753 }
chessdsbr 2:32e1e71f5885 5754 }
chessdsbr 2:32e1e71f5885 5755 else if(l46==1){
chessdsbr 2:32e1e71f5885 5756 if(l47==1){
chessdsbr 2:32e1e71f5885 5757 if(l48==1){
chessdsbr 2:32e1e71f5885 5758 figura_dib[5]=0xE7;
chessdsbr 2:32e1e71f5885 5759 }
chessdsbr 2:32e1e71f5885 5760 else{
chessdsbr 2:32e1e71f5885 5761 figura_dib[5]=0xE6;
chessdsbr 2:32e1e71f5885 5762 }
chessdsbr 2:32e1e71f5885 5763 }
chessdsbr 2:32e1e71f5885 5764 else if(l45==1){
chessdsbr 2:32e1e71f5885 5765 figura_dib[5]=0xE5;
chessdsbr 2:32e1e71f5885 5766 }
chessdsbr 2:32e1e71f5885 5767 else{
chessdsbr 2:32e1e71f5885 5768 figura_dib[5]=0xE4;
chessdsbr 2:32e1e71f5885 5769 }
chessdsbr 2:32e1e71f5885 5770 }
chessdsbr 2:32e1e71f5885 5771 else if(l47==1){
chessdsbr 2:32e1e71f5885 5772 if(l48==1){
chessdsbr 2:32e1e71f5885 5773 figura_dib[5]=0xE3;
chessdsbr 2:32e1e71f5885 5774 }
chessdsbr 2:32e1e71f5885 5775 else{
chessdsbr 2:32e1e71f5885 5776 figura_dib[5]=0xE2;
chessdsbr 2:32e1e71f5885 5777 }
chessdsbr 2:32e1e71f5885 5778 }
chessdsbr 2:32e1e71f5885 5779 else if(l48==1){
chessdsbr 2:32e1e71f5885 5780 figura_dib[5]=0xE1;
chessdsbr 2:32e1e71f5885 5781 }
chessdsbr 2:32e1e71f5885 5782 else{
chessdsbr 2:32e1e71f5885 5783 figura_dib[5]=0xE0;
chessdsbr 2:32e1e71f5885 5784 }
chessdsbr 2:32e1e71f5885 5785 }
chessdsbr 2:32e1e71f5885 5786 else if(l44==1){
chessdsbr 2:32e1e71f5885 5787 if(l45==1){
chessdsbr 2:32e1e71f5885 5788 if(l46==1){
chessdsbr 2:32e1e71f5885 5789 if(l47==1){
chessdsbr 2:32e1e71f5885 5790 if(l48==1){
chessdsbr 2:32e1e71f5885 5791 figura_dib[5]=0xDF;
chessdsbr 2:32e1e71f5885 5792 }
chessdsbr 2:32e1e71f5885 5793 else{
chessdsbr 2:32e1e71f5885 5794 figura_dib[5]=0xDE;
chessdsbr 2:32e1e71f5885 5795 }
chessdsbr 2:32e1e71f5885 5796 }
chessdsbr 2:32e1e71f5885 5797 else if(l48==1){
chessdsbr 2:32e1e71f5885 5798 figura_dib[5]=0xDD;
chessdsbr 2:32e1e71f5885 5799 }
chessdsbr 2:32e1e71f5885 5800 else{
chessdsbr 2:32e1e71f5885 5801 figura_dib[5]=0xDC;
chessdsbr 2:32e1e71f5885 5802 }
chessdsbr 2:32e1e71f5885 5803 }
chessdsbr 2:32e1e71f5885 5804 else if(l47==1){
chessdsbr 2:32e1e71f5885 5805 if(l48==1){
chessdsbr 2:32e1e71f5885 5806 figura_dib[5]=0xDB;
chessdsbr 2:32e1e71f5885 5807 }
chessdsbr 2:32e1e71f5885 5808 else{
chessdsbr 2:32e1e71f5885 5809 figura_dib[5]=0xDA;
chessdsbr 2:32e1e71f5885 5810 }
chessdsbr 2:32e1e71f5885 5811 }
chessdsbr 2:32e1e71f5885 5812 else if(l48==1){
chessdsbr 2:32e1e71f5885 5813 figura_dib[5]=0xD9;
chessdsbr 2:32e1e71f5885 5814 }
chessdsbr 2:32e1e71f5885 5815 else{
chessdsbr 2:32e1e71f5885 5816 figura_dib[5]=0xD8;
chessdsbr 2:32e1e71f5885 5817 }
chessdsbr 2:32e1e71f5885 5818 }
chessdsbr 2:32e1e71f5885 5819 else if(l46==1){
chessdsbr 2:32e1e71f5885 5820 if(l47==1){
chessdsbr 2:32e1e71f5885 5821 if(l48==1){
chessdsbr 2:32e1e71f5885 5822 figura_dib[5]=0xD7;
chessdsbr 2:32e1e71f5885 5823 }
chessdsbr 2:32e1e71f5885 5824 else{
chessdsbr 2:32e1e71f5885 5825 figura_dib[5]=0xD6;
chessdsbr 2:32e1e71f5885 5826 }
chessdsbr 2:32e1e71f5885 5827 }
chessdsbr 2:32e1e71f5885 5828 else if(l48==1){
chessdsbr 2:32e1e71f5885 5829 figura_dib[5]=0xD5;
chessdsbr 2:32e1e71f5885 5830 }
chessdsbr 2:32e1e71f5885 5831 else{
chessdsbr 2:32e1e71f5885 5832 figura_dib[5]=0xD4;
chessdsbr 2:32e1e71f5885 5833 }
chessdsbr 2:32e1e71f5885 5834 }
chessdsbr 2:32e1e71f5885 5835 else if(l47==1){
chessdsbr 2:32e1e71f5885 5836 if(l48==1){
chessdsbr 2:32e1e71f5885 5837 figura_dib[5]=0xD3;
chessdsbr 2:32e1e71f5885 5838 }
chessdsbr 2:32e1e71f5885 5839 else{
chessdsbr 2:32e1e71f5885 5840 figura_dib[5]=0xD2;
chessdsbr 2:32e1e71f5885 5841 }
chessdsbr 2:32e1e71f5885 5842 }
chessdsbr 2:32e1e71f5885 5843 else if(l48==1){
chessdsbr 2:32e1e71f5885 5844 figura_dib[5]=0xD1;
chessdsbr 2:32e1e71f5885 5845 }
chessdsbr 2:32e1e71f5885 5846 else{
chessdsbr 2:32e1e71f5885 5847 figura_dib[5]=0xD0;
chessdsbr 2:32e1e71f5885 5848 }
chessdsbr 2:32e1e71f5885 5849 }
chessdsbr 2:32e1e71f5885 5850 else if(l45==1){
chessdsbr 2:32e1e71f5885 5851 if(l46==1){
chessdsbr 2:32e1e71f5885 5852 if(l47==1){
chessdsbr 2:32e1e71f5885 5853 if(l48==1){
chessdsbr 2:32e1e71f5885 5854 figura_dib[5]=0xCF;
chessdsbr 2:32e1e71f5885 5855 }
chessdsbr 2:32e1e71f5885 5856 else{
chessdsbr 2:32e1e71f5885 5857 figura_dib[5]=0xCE;
chessdsbr 2:32e1e71f5885 5858 }
chessdsbr 2:32e1e71f5885 5859 }
chessdsbr 2:32e1e71f5885 5860 else if(l48==1){
chessdsbr 2:32e1e71f5885 5861 figura_dib[5]=0xCD;
chessdsbr 2:32e1e71f5885 5862 }
chessdsbr 2:32e1e71f5885 5863 else{
chessdsbr 2:32e1e71f5885 5864 figura_dib[5]=0xCC;
chessdsbr 2:32e1e71f5885 5865 }
chessdsbr 2:32e1e71f5885 5866 }
chessdsbr 2:32e1e71f5885 5867 else if(l47==1){
chessdsbr 2:32e1e71f5885 5868 if(l48==1){
chessdsbr 2:32e1e71f5885 5869 figura_dib[5]=0xCB;
chessdsbr 2:32e1e71f5885 5870 }
chessdsbr 2:32e1e71f5885 5871 else{
chessdsbr 2:32e1e71f5885 5872 figura_dib[5]=0xCA;
chessdsbr 2:32e1e71f5885 5873 }
chessdsbr 2:32e1e71f5885 5874 }
chessdsbr 2:32e1e71f5885 5875 else if(l48==1){
chessdsbr 2:32e1e71f5885 5876 figura_dib[5]=0xC9;
chessdsbr 2:32e1e71f5885 5877 }
chessdsbr 2:32e1e71f5885 5878 else{
chessdsbr 2:32e1e71f5885 5879 figura_dib[5]=0xC8;
chessdsbr 2:32e1e71f5885 5880 }
chessdsbr 2:32e1e71f5885 5881 }
chessdsbr 2:32e1e71f5885 5882 else if(l46==1){
chessdsbr 2:32e1e71f5885 5883 if(l47==1){
chessdsbr 2:32e1e71f5885 5884 if(l48==1){
chessdsbr 2:32e1e71f5885 5885 figura_dib[5]=0xC7;
chessdsbr 2:32e1e71f5885 5886 }
chessdsbr 2:32e1e71f5885 5887 else{
chessdsbr 2:32e1e71f5885 5888 figura_dib[5]=0xC6;
chessdsbr 2:32e1e71f5885 5889 }
chessdsbr 2:32e1e71f5885 5890 }
chessdsbr 2:32e1e71f5885 5891 else if(l48==1){
chessdsbr 2:32e1e71f5885 5892 figura_dib[5]=0xC5;
chessdsbr 2:32e1e71f5885 5893 }
chessdsbr 2:32e1e71f5885 5894 else{
chessdsbr 2:32e1e71f5885 5895 figura_dib[5]=0xC4;
chessdsbr 2:32e1e71f5885 5896 }
chessdsbr 2:32e1e71f5885 5897 }
chessdsbr 2:32e1e71f5885 5898 else if(l47==1){
chessdsbr 2:32e1e71f5885 5899 if(l48==1){
chessdsbr 2:32e1e71f5885 5900 figura_dib[5]=0xC3;
chessdsbr 2:32e1e71f5885 5901 }
chessdsbr 2:32e1e71f5885 5902 else{
chessdsbr 2:32e1e71f5885 5903 figura_dib[5]=0xC2;
chessdsbr 2:32e1e71f5885 5904 }
chessdsbr 2:32e1e71f5885 5905 }
chessdsbr 2:32e1e71f5885 5906 else if(l48==1){
chessdsbr 2:32e1e71f5885 5907 figura_dib[5]=0xC1;
chessdsbr 2:32e1e71f5885 5908 }
chessdsbr 2:32e1e71f5885 5909 else{
chessdsbr 2:32e1e71f5885 5910 figura_dib[5]=0xC0;
chessdsbr 2:32e1e71f5885 5911 }
chessdsbr 2:32e1e71f5885 5912 }
chessdsbr 2:32e1e71f5885 5913 else if(l43==1){
chessdsbr 2:32e1e71f5885 5914 if(l44==1){
chessdsbr 2:32e1e71f5885 5915 if(l45==1){
chessdsbr 2:32e1e71f5885 5916 if(l46==1){
chessdsbr 2:32e1e71f5885 5917 if(l47==1){
chessdsbr 2:32e1e71f5885 5918 if(l48==1){
chessdsbr 2:32e1e71f5885 5919 figura_dib[5]=0xBF;
chessdsbr 2:32e1e71f5885 5920 }
chessdsbr 2:32e1e71f5885 5921 else{
chessdsbr 2:32e1e71f5885 5922 figura_dib[5]=0xBE;
chessdsbr 2:32e1e71f5885 5923 }
chessdsbr 2:32e1e71f5885 5924 }
chessdsbr 2:32e1e71f5885 5925 else if(l48==1){
chessdsbr 2:32e1e71f5885 5926 figura_dib[5]=0xBD;
chessdsbr 2:32e1e71f5885 5927 }
chessdsbr 2:32e1e71f5885 5928 else{
chessdsbr 2:32e1e71f5885 5929 figura_dib[5]=0xBC;
chessdsbr 2:32e1e71f5885 5930 }
chessdsbr 2:32e1e71f5885 5931 }
chessdsbr 2:32e1e71f5885 5932 else if(l47==1){
chessdsbr 2:32e1e71f5885 5933 if(l48==1){
chessdsbr 2:32e1e71f5885 5934 figura_dib[5]=0xBB;
chessdsbr 2:32e1e71f5885 5935 }
chessdsbr 2:32e1e71f5885 5936 else{
chessdsbr 2:32e1e71f5885 5937 figura_dib[5]=0xBA;
chessdsbr 2:32e1e71f5885 5938 }
chessdsbr 2:32e1e71f5885 5939 }
chessdsbr 2:32e1e71f5885 5940 else if(l48==1){
chessdsbr 2:32e1e71f5885 5941 figura_dib[5]=0xB9;
chessdsbr 2:32e1e71f5885 5942 }
chessdsbr 2:32e1e71f5885 5943 else{
chessdsbr 2:32e1e71f5885 5944 figura_dib[5]=0xB8;
chessdsbr 2:32e1e71f5885 5945 }
chessdsbr 2:32e1e71f5885 5946 }
chessdsbr 2:32e1e71f5885 5947 else if(l46==1){
chessdsbr 2:32e1e71f5885 5948 if(l47==1){
chessdsbr 2:32e1e71f5885 5949 if(l48==1){
chessdsbr 2:32e1e71f5885 5950 figura_dib[5]=0xB7;
chessdsbr 2:32e1e71f5885 5951 }
chessdsbr 2:32e1e71f5885 5952 else{
chessdsbr 2:32e1e71f5885 5953 figura_dib[5]=0xB6;
chessdsbr 2:32e1e71f5885 5954 }
chessdsbr 2:32e1e71f5885 5955 }
chessdsbr 2:32e1e71f5885 5956 else if(l48==1){
chessdsbr 2:32e1e71f5885 5957 figura_dib[5]=0xB5;
chessdsbr 2:32e1e71f5885 5958 }
chessdsbr 2:32e1e71f5885 5959 else{
chessdsbr 2:32e1e71f5885 5960 figura_dib[5]=0xB4;
chessdsbr 2:32e1e71f5885 5961 }
chessdsbr 2:32e1e71f5885 5962 }
chessdsbr 2:32e1e71f5885 5963 else if(l47==1){
chessdsbr 2:32e1e71f5885 5964 if(l48==1){
chessdsbr 2:32e1e71f5885 5965 figura_dib[5]=0xB3;
chessdsbr 2:32e1e71f5885 5966 }
chessdsbr 2:32e1e71f5885 5967 else{
chessdsbr 2:32e1e71f5885 5968 figura_dib[5]=0xB2;
chessdsbr 2:32e1e71f5885 5969 }
chessdsbr 2:32e1e71f5885 5970 }
chessdsbr 2:32e1e71f5885 5971 else if(l48==1){
chessdsbr 2:32e1e71f5885 5972 figura_dib[5]=0xB1;
chessdsbr 2:32e1e71f5885 5973 }
chessdsbr 2:32e1e71f5885 5974 else{
chessdsbr 2:32e1e71f5885 5975 figura_dib[5]=0xB0;
chessdsbr 2:32e1e71f5885 5976 }
chessdsbr 2:32e1e71f5885 5977 }
chessdsbr 2:32e1e71f5885 5978 else if(l45==1){
chessdsbr 2:32e1e71f5885 5979 if(l46==1){
chessdsbr 2:32e1e71f5885 5980 if(l47==1){
chessdsbr 2:32e1e71f5885 5981 if(l48==1){
chessdsbr 2:32e1e71f5885 5982 figura_dib[5]=0xAF;
chessdsbr 2:32e1e71f5885 5983 }
chessdsbr 2:32e1e71f5885 5984 else{
chessdsbr 2:32e1e71f5885 5985 figura_dib[5]=0xAE;
chessdsbr 2:32e1e71f5885 5986 }
chessdsbr 2:32e1e71f5885 5987 }
chessdsbr 2:32e1e71f5885 5988 else if(l48==1){
chessdsbr 2:32e1e71f5885 5989 figura_dib[5]=0xAD;
chessdsbr 2:32e1e71f5885 5990 }
chessdsbr 2:32e1e71f5885 5991 else{
chessdsbr 2:32e1e71f5885 5992 figura_dib[5]=0xAC;
chessdsbr 2:32e1e71f5885 5993 }
chessdsbr 2:32e1e71f5885 5994 }
chessdsbr 2:32e1e71f5885 5995 else if(l47==1){
chessdsbr 2:32e1e71f5885 5996 if(l48==1){
chessdsbr 2:32e1e71f5885 5997 figura_dib[5]=0xAB;
chessdsbr 2:32e1e71f5885 5998 }
chessdsbr 2:32e1e71f5885 5999 else{
chessdsbr 2:32e1e71f5885 6000 figura_dib[5]=0xAA;
chessdsbr 2:32e1e71f5885 6001 }
chessdsbr 2:32e1e71f5885 6002 }
chessdsbr 2:32e1e71f5885 6003 else if(l48==1){
chessdsbr 2:32e1e71f5885 6004 figura_dib[5]=0xA9;
chessdsbr 2:32e1e71f5885 6005 }
chessdsbr 2:32e1e71f5885 6006 else{
chessdsbr 2:32e1e71f5885 6007 figura_dib[5]=0xA8;
chessdsbr 2:32e1e71f5885 6008 }
chessdsbr 2:32e1e71f5885 6009 }
chessdsbr 2:32e1e71f5885 6010 else if(l46==1){
chessdsbr 2:32e1e71f5885 6011 if(l47==1){
chessdsbr 2:32e1e71f5885 6012 if(l48==1){
chessdsbr 2:32e1e71f5885 6013 figura_dib[5]=0xA7;
chessdsbr 2:32e1e71f5885 6014 }
chessdsbr 2:32e1e71f5885 6015 else{
chessdsbr 2:32e1e71f5885 6016 figura_dib[5]=0xA6;
chessdsbr 2:32e1e71f5885 6017 }
chessdsbr 2:32e1e71f5885 6018 }
chessdsbr 2:32e1e71f5885 6019 else if(l48==1){
chessdsbr 2:32e1e71f5885 6020 figura_dib[5]=0xA5;
chessdsbr 2:32e1e71f5885 6021 }
chessdsbr 2:32e1e71f5885 6022 else{
chessdsbr 2:32e1e71f5885 6023 figura_dib[5]=0xA4;
chessdsbr 2:32e1e71f5885 6024 }
chessdsbr 2:32e1e71f5885 6025 }
chessdsbr 2:32e1e71f5885 6026 else if(l47==1){
chessdsbr 2:32e1e71f5885 6027 if(l48==1){
chessdsbr 2:32e1e71f5885 6028 figura_dib[5]=0xA3;
chessdsbr 2:32e1e71f5885 6029 }
chessdsbr 2:32e1e71f5885 6030 else{
chessdsbr 2:32e1e71f5885 6031 figura_dib[5]=0xA2;
chessdsbr 2:32e1e71f5885 6032 }
chessdsbr 2:32e1e71f5885 6033 }
chessdsbr 2:32e1e71f5885 6034 else if(l48==1){
chessdsbr 2:32e1e71f5885 6035 figura_dib[5]=0xA1;
chessdsbr 2:32e1e71f5885 6036 }
chessdsbr 2:32e1e71f5885 6037 else{
chessdsbr 2:32e1e71f5885 6038 figura_dib[5]=0xA0;
chessdsbr 2:32e1e71f5885 6039 }
chessdsbr 2:32e1e71f5885 6040 }
chessdsbr 2:32e1e71f5885 6041 else if(l44==1){
chessdsbr 2:32e1e71f5885 6042 if(l45==1){
chessdsbr 2:32e1e71f5885 6043 if(l46==1){
chessdsbr 2:32e1e71f5885 6044 if(l47==1){
chessdsbr 2:32e1e71f5885 6045 if(l48==1){
chessdsbr 2:32e1e71f5885 6046 figura_dib[5]=0x9F;
chessdsbr 2:32e1e71f5885 6047 }
chessdsbr 2:32e1e71f5885 6048 else{
chessdsbr 2:32e1e71f5885 6049 figura_dib[5]=0x9E;
chessdsbr 2:32e1e71f5885 6050 }
chessdsbr 2:32e1e71f5885 6051 }
chessdsbr 2:32e1e71f5885 6052 else if(l48==1){
chessdsbr 2:32e1e71f5885 6053 figura_dib[5]=0x9D;
chessdsbr 2:32e1e71f5885 6054 }
chessdsbr 2:32e1e71f5885 6055 else{
chessdsbr 2:32e1e71f5885 6056 figura_dib[5]=0x9C;
chessdsbr 2:32e1e71f5885 6057 }
chessdsbr 2:32e1e71f5885 6058 }
chessdsbr 2:32e1e71f5885 6059 else if(l47==1){
chessdsbr 2:32e1e71f5885 6060 if(l48==1){
chessdsbr 2:32e1e71f5885 6061 figura_dib[5]=0x9B;
chessdsbr 2:32e1e71f5885 6062 }
chessdsbr 2:32e1e71f5885 6063 else{
chessdsbr 2:32e1e71f5885 6064 figura_dib[5]=0x9A;
chessdsbr 2:32e1e71f5885 6065 }
chessdsbr 2:32e1e71f5885 6066 }
chessdsbr 2:32e1e71f5885 6067 else if(l48==1){
chessdsbr 2:32e1e71f5885 6068 figura_dib[5]=0x99;
chessdsbr 2:32e1e71f5885 6069 }
chessdsbr 2:32e1e71f5885 6070 else{
chessdsbr 2:32e1e71f5885 6071 figura_dib[5]=0x98;
chessdsbr 2:32e1e71f5885 6072 }
chessdsbr 2:32e1e71f5885 6073 }
chessdsbr 2:32e1e71f5885 6074 else if(l46==1){
chessdsbr 2:32e1e71f5885 6075 if(l47==1){
chessdsbr 2:32e1e71f5885 6076 if(l48==1){
chessdsbr 2:32e1e71f5885 6077 figura_dib[5]=0x97;
chessdsbr 2:32e1e71f5885 6078 }
chessdsbr 2:32e1e71f5885 6079 else{
chessdsbr 2:32e1e71f5885 6080 figura_dib[5]=0x96;
chessdsbr 2:32e1e71f5885 6081 }
chessdsbr 2:32e1e71f5885 6082 }
chessdsbr 2:32e1e71f5885 6083 else if(l48==1){
chessdsbr 2:32e1e71f5885 6084 figura_dib[5]=0x95;
chessdsbr 2:32e1e71f5885 6085 }
chessdsbr 2:32e1e71f5885 6086 else{
chessdsbr 2:32e1e71f5885 6087 figura_dib[5]=0x94;
chessdsbr 2:32e1e71f5885 6088 }
chessdsbr 2:32e1e71f5885 6089 }
chessdsbr 2:32e1e71f5885 6090 else if(l47==1){
chessdsbr 2:32e1e71f5885 6091 if(l48==1){
chessdsbr 2:32e1e71f5885 6092 figura_dib[5]=0x93;
chessdsbr 2:32e1e71f5885 6093 }
chessdsbr 2:32e1e71f5885 6094 else{
chessdsbr 2:32e1e71f5885 6095 figura_dib[5]=0x92;
chessdsbr 2:32e1e71f5885 6096 }
chessdsbr 2:32e1e71f5885 6097 }
chessdsbr 2:32e1e71f5885 6098 else if(l48==1){
chessdsbr 2:32e1e71f5885 6099 figura_dib[5]=0x91;
chessdsbr 2:32e1e71f5885 6100 }
chessdsbr 2:32e1e71f5885 6101 else{
chessdsbr 2:32e1e71f5885 6102 figura_dib[5]=0x90;
chessdsbr 2:32e1e71f5885 6103 }
chessdsbr 2:32e1e71f5885 6104 }
chessdsbr 2:32e1e71f5885 6105 else if(l45==1){
chessdsbr 2:32e1e71f5885 6106 if(l46==1){
chessdsbr 2:32e1e71f5885 6107 if(l47==1){
chessdsbr 2:32e1e71f5885 6108 if(l48==1){
chessdsbr 2:32e1e71f5885 6109 figura_dib[5]=0x8F;
chessdsbr 2:32e1e71f5885 6110 }
chessdsbr 2:32e1e71f5885 6111 else{
chessdsbr 2:32e1e71f5885 6112 figura_dib[5]=0x8E;
chessdsbr 2:32e1e71f5885 6113 }
chessdsbr 2:32e1e71f5885 6114 }
chessdsbr 2:32e1e71f5885 6115 else if(l48==1){
chessdsbr 2:32e1e71f5885 6116 figura_dib[5]=0x8D;
chessdsbr 2:32e1e71f5885 6117 }
chessdsbr 2:32e1e71f5885 6118 else{
chessdsbr 2:32e1e71f5885 6119 figura_dib[5]=0x8C;
chessdsbr 2:32e1e71f5885 6120 }
chessdsbr 2:32e1e71f5885 6121 }
chessdsbr 2:32e1e71f5885 6122 else if(l47==1){
chessdsbr 2:32e1e71f5885 6123 if(l48==1){
chessdsbr 2:32e1e71f5885 6124 figura_dib[5]=0x8B;
chessdsbr 2:32e1e71f5885 6125 }
chessdsbr 2:32e1e71f5885 6126 else{
chessdsbr 2:32e1e71f5885 6127 figura_dib[5]=0x8A;
chessdsbr 2:32e1e71f5885 6128 }
chessdsbr 2:32e1e71f5885 6129 }
chessdsbr 2:32e1e71f5885 6130 else if(l48==1){
chessdsbr 2:32e1e71f5885 6131 figura_dib[5]=0x89;
chessdsbr 2:32e1e71f5885 6132 }
chessdsbr 2:32e1e71f5885 6133 else{
chessdsbr 2:32e1e71f5885 6134 figura_dib[5]=0x88;
chessdsbr 2:32e1e71f5885 6135 }
chessdsbr 2:32e1e71f5885 6136 }
chessdsbr 2:32e1e71f5885 6137 else if(l46==1){
chessdsbr 2:32e1e71f5885 6138 if(l47==1){
chessdsbr 2:32e1e71f5885 6139 if(l48==1){
chessdsbr 2:32e1e71f5885 6140 figura_dib[5]=0x87;
chessdsbr 2:32e1e71f5885 6141 }
chessdsbr 2:32e1e71f5885 6142 else{
chessdsbr 2:32e1e71f5885 6143 figura_dib[5]=0x86;
chessdsbr 2:32e1e71f5885 6144 }
chessdsbr 2:32e1e71f5885 6145 }
chessdsbr 2:32e1e71f5885 6146 else if(l48==1){
chessdsbr 2:32e1e71f5885 6147 figura_dib[5]=0x85;
chessdsbr 2:32e1e71f5885 6148 }
chessdsbr 2:32e1e71f5885 6149 else{
chessdsbr 2:32e1e71f5885 6150 figura_dib[5]=0x84;
chessdsbr 2:32e1e71f5885 6151 }
chessdsbr 2:32e1e71f5885 6152 }
chessdsbr 2:32e1e71f5885 6153 else if(l47==1){
chessdsbr 2:32e1e71f5885 6154 if(l48==1){
chessdsbr 2:32e1e71f5885 6155 figura_dib[5]=0x83;
chessdsbr 2:32e1e71f5885 6156 }
chessdsbr 2:32e1e71f5885 6157 else{
chessdsbr 2:32e1e71f5885 6158 figura_dib[5]=0x82;
chessdsbr 2:32e1e71f5885 6159 }
chessdsbr 2:32e1e71f5885 6160 }
chessdsbr 2:32e1e71f5885 6161 else if(l48==1){
chessdsbr 2:32e1e71f5885 6162 figura_dib[5]=0x81;
chessdsbr 2:32e1e71f5885 6163 }
chessdsbr 2:32e1e71f5885 6164 else{
chessdsbr 2:32e1e71f5885 6165 figura_dib[5]=0x80;
chessdsbr 2:32e1e71f5885 6166 }
chessdsbr 2:32e1e71f5885 6167 }
chessdsbr 2:32e1e71f5885 6168 else if(l42==1){
chessdsbr 2:32e1e71f5885 6169 if(l43==1){
chessdsbr 2:32e1e71f5885 6170 if(l44==1){
chessdsbr 2:32e1e71f5885 6171 if(l45==1){
chessdsbr 2:32e1e71f5885 6172 if(l46==1){
chessdsbr 2:32e1e71f5885 6173 if(l47==1){
chessdsbr 2:32e1e71f5885 6174 if(l48==1){
chessdsbr 2:32e1e71f5885 6175 figura_dib[5]=0x7F;
chessdsbr 2:32e1e71f5885 6176 }
chessdsbr 2:32e1e71f5885 6177 else{
chessdsbr 2:32e1e71f5885 6178 figura_dib[5]=0x7E;
chessdsbr 2:32e1e71f5885 6179 }
chessdsbr 2:32e1e71f5885 6180 }
chessdsbr 2:32e1e71f5885 6181 else if(l48==1){
chessdsbr 2:32e1e71f5885 6182 figura_dib[5]=0x7D;
chessdsbr 2:32e1e71f5885 6183 }
chessdsbr 2:32e1e71f5885 6184 else{
chessdsbr 2:32e1e71f5885 6185 figura_dib[5]=0x7C;
chessdsbr 2:32e1e71f5885 6186 }
chessdsbr 2:32e1e71f5885 6187 }
chessdsbr 2:32e1e71f5885 6188 else if(l47==1){
chessdsbr 2:32e1e71f5885 6189 if(l48==1){
chessdsbr 2:32e1e71f5885 6190 figura_dib[5]=0x7B;
chessdsbr 2:32e1e71f5885 6191 }
chessdsbr 2:32e1e71f5885 6192 else{
chessdsbr 2:32e1e71f5885 6193 figura_dib[5]=0x7A;
chessdsbr 2:32e1e71f5885 6194 }
chessdsbr 2:32e1e71f5885 6195 }
chessdsbr 2:32e1e71f5885 6196 else if(l48==1){
chessdsbr 2:32e1e71f5885 6197 figura_dib[5]=0x79;
chessdsbr 2:32e1e71f5885 6198 }
chessdsbr 2:32e1e71f5885 6199 else{
chessdsbr 2:32e1e71f5885 6200 figura_dib[5]=0x78;
chessdsbr 2:32e1e71f5885 6201 }
chessdsbr 2:32e1e71f5885 6202 }
chessdsbr 2:32e1e71f5885 6203 else if(l46==1){
chessdsbr 2:32e1e71f5885 6204 if(l47==1){
chessdsbr 2:32e1e71f5885 6205 if(l48==1){
chessdsbr 2:32e1e71f5885 6206 figura_dib[5]=0x77;
chessdsbr 2:32e1e71f5885 6207 }
chessdsbr 2:32e1e71f5885 6208 else{
chessdsbr 2:32e1e71f5885 6209 figura_dib[5]=0x76;
chessdsbr 2:32e1e71f5885 6210 }
chessdsbr 2:32e1e71f5885 6211 }
chessdsbr 2:32e1e71f5885 6212 else if(l48==1){
chessdsbr 2:32e1e71f5885 6213 figura_dib[5]=0x75;
chessdsbr 2:32e1e71f5885 6214 }
chessdsbr 2:32e1e71f5885 6215 else{
chessdsbr 2:32e1e71f5885 6216 figura_dib[5]=0x74;
chessdsbr 2:32e1e71f5885 6217 }
chessdsbr 2:32e1e71f5885 6218 }
chessdsbr 2:32e1e71f5885 6219 else if(l47==1){
chessdsbr 2:32e1e71f5885 6220 if(l48==1){
chessdsbr 2:32e1e71f5885 6221 figura_dib[5]=0x73;
chessdsbr 2:32e1e71f5885 6222 }
chessdsbr 2:32e1e71f5885 6223 else{
chessdsbr 2:32e1e71f5885 6224 figura_dib[5]=0x72;
chessdsbr 2:32e1e71f5885 6225 }
chessdsbr 2:32e1e71f5885 6226 }
chessdsbr 2:32e1e71f5885 6227 else if(l48==1){
chessdsbr 2:32e1e71f5885 6228 figura_dib[5]=0x71;
chessdsbr 2:32e1e71f5885 6229 }
chessdsbr 2:32e1e71f5885 6230 else{
chessdsbr 2:32e1e71f5885 6231 figura_dib[5]=0x70;
chessdsbr 2:32e1e71f5885 6232 }
chessdsbr 2:32e1e71f5885 6233 }
chessdsbr 2:32e1e71f5885 6234 else if(l45==1){
chessdsbr 2:32e1e71f5885 6235 if(l46==1){
chessdsbr 2:32e1e71f5885 6236 if(l47==1){
chessdsbr 2:32e1e71f5885 6237 if(l48==1){
chessdsbr 2:32e1e71f5885 6238 figura_dib[5]=0x6F;
chessdsbr 2:32e1e71f5885 6239 }
chessdsbr 2:32e1e71f5885 6240 else{
chessdsbr 2:32e1e71f5885 6241 figura_dib[5]=0x6E;
chessdsbr 2:32e1e71f5885 6242 }
chessdsbr 2:32e1e71f5885 6243 }
chessdsbr 2:32e1e71f5885 6244 else if(l48==1){
chessdsbr 2:32e1e71f5885 6245 figura_dib[5]=0x6D;
chessdsbr 2:32e1e71f5885 6246 }
chessdsbr 2:32e1e71f5885 6247 else{
chessdsbr 2:32e1e71f5885 6248 figura_dib[5]=0x6C;
chessdsbr 2:32e1e71f5885 6249 }
chessdsbr 2:32e1e71f5885 6250 }
chessdsbr 2:32e1e71f5885 6251 else if(l47==1){
chessdsbr 2:32e1e71f5885 6252 if(l48==1){
chessdsbr 2:32e1e71f5885 6253 figura_dib[5]=0x6B;
chessdsbr 2:32e1e71f5885 6254 }
chessdsbr 2:32e1e71f5885 6255 else{
chessdsbr 2:32e1e71f5885 6256 figura_dib[5]=0x6A;
chessdsbr 2:32e1e71f5885 6257 }
chessdsbr 2:32e1e71f5885 6258 }
chessdsbr 2:32e1e71f5885 6259 else if(l48==1){
chessdsbr 2:32e1e71f5885 6260 figura_dib[5]=0x69;
chessdsbr 2:32e1e71f5885 6261 }
chessdsbr 2:32e1e71f5885 6262 else{
chessdsbr 2:32e1e71f5885 6263 figura_dib[5]=0x68;
chessdsbr 2:32e1e71f5885 6264 }
chessdsbr 2:32e1e71f5885 6265 }
chessdsbr 2:32e1e71f5885 6266 else if(l46==1){
chessdsbr 2:32e1e71f5885 6267 if(l47==1){
chessdsbr 2:32e1e71f5885 6268 if(l48==1){
chessdsbr 2:32e1e71f5885 6269 figura_dib[5]=0x67;
chessdsbr 2:32e1e71f5885 6270 }
chessdsbr 2:32e1e71f5885 6271 else{
chessdsbr 2:32e1e71f5885 6272 figura_dib[5]=0x66;
chessdsbr 2:32e1e71f5885 6273 }
chessdsbr 2:32e1e71f5885 6274 }
chessdsbr 2:32e1e71f5885 6275 else if(l48==1){
chessdsbr 2:32e1e71f5885 6276 figura_dib[5]=0x65;
chessdsbr 2:32e1e71f5885 6277 }
chessdsbr 2:32e1e71f5885 6278 else{
chessdsbr 2:32e1e71f5885 6279 figura_dib[5]=0x64;
chessdsbr 2:32e1e71f5885 6280 }
chessdsbr 2:32e1e71f5885 6281 }
chessdsbr 2:32e1e71f5885 6282 else if(l47==1){
chessdsbr 2:32e1e71f5885 6283 if(l48==1){
chessdsbr 2:32e1e71f5885 6284 figura_dib[5]=0x63;
chessdsbr 2:32e1e71f5885 6285 }
chessdsbr 2:32e1e71f5885 6286 else{
chessdsbr 2:32e1e71f5885 6287 figura_dib[5]=0x62;
chessdsbr 2:32e1e71f5885 6288 }
chessdsbr 2:32e1e71f5885 6289 }
chessdsbr 2:32e1e71f5885 6290 else if(l48==1){
chessdsbr 2:32e1e71f5885 6291 figura_dib[5]=0x61;
chessdsbr 2:32e1e71f5885 6292 }
chessdsbr 2:32e1e71f5885 6293 else{
chessdsbr 2:32e1e71f5885 6294 figura_dib[5]=0x60;
chessdsbr 2:32e1e71f5885 6295 }
chessdsbr 2:32e1e71f5885 6296 }
chessdsbr 2:32e1e71f5885 6297 else if(l44==1){
chessdsbr 2:32e1e71f5885 6298 if(l45==1){
chessdsbr 2:32e1e71f5885 6299 if(l46==1){
chessdsbr 2:32e1e71f5885 6300 if(l47==1){
chessdsbr 2:32e1e71f5885 6301 if(l48==1){
chessdsbr 2:32e1e71f5885 6302 figura_dib[5]=0x5F;
chessdsbr 2:32e1e71f5885 6303 }
chessdsbr 2:32e1e71f5885 6304 else{
chessdsbr 2:32e1e71f5885 6305 figura_dib[5]=0x5E;
chessdsbr 2:32e1e71f5885 6306 }
chessdsbr 2:32e1e71f5885 6307 }
chessdsbr 2:32e1e71f5885 6308 else if(l48==1){
chessdsbr 2:32e1e71f5885 6309 figura_dib[5]=0x5D;
chessdsbr 2:32e1e71f5885 6310 }
chessdsbr 2:32e1e71f5885 6311 else{
chessdsbr 2:32e1e71f5885 6312 figura_dib[5]=0x5C;
chessdsbr 2:32e1e71f5885 6313 }
chessdsbr 2:32e1e71f5885 6314 }
chessdsbr 2:32e1e71f5885 6315 else if(l47==1){
chessdsbr 2:32e1e71f5885 6316 if(l48==1){
chessdsbr 2:32e1e71f5885 6317 figura_dib[5]=0x5B;
chessdsbr 2:32e1e71f5885 6318 }
chessdsbr 2:32e1e71f5885 6319 else{
chessdsbr 2:32e1e71f5885 6320 figura_dib[5]=0x5A;
chessdsbr 2:32e1e71f5885 6321 }
chessdsbr 2:32e1e71f5885 6322 }
chessdsbr 2:32e1e71f5885 6323 else if(l48==1){
chessdsbr 2:32e1e71f5885 6324 figura_dib[5]=0x59;
chessdsbr 2:32e1e71f5885 6325 }
chessdsbr 2:32e1e71f5885 6326 else{
chessdsbr 2:32e1e71f5885 6327 figura_dib[5]=0x58;
chessdsbr 2:32e1e71f5885 6328 }
chessdsbr 2:32e1e71f5885 6329 }
chessdsbr 2:32e1e71f5885 6330 else if(l46==1){
chessdsbr 2:32e1e71f5885 6331 if(l47==1){
chessdsbr 2:32e1e71f5885 6332 if(l48==1){
chessdsbr 2:32e1e71f5885 6333 figura_dib[5]=0x57;
chessdsbr 2:32e1e71f5885 6334 }
chessdsbr 2:32e1e71f5885 6335 else{
chessdsbr 2:32e1e71f5885 6336 figura_dib[5]=0x56;
chessdsbr 2:32e1e71f5885 6337 }
chessdsbr 2:32e1e71f5885 6338 }
chessdsbr 2:32e1e71f5885 6339 else if(l48==1){
chessdsbr 2:32e1e71f5885 6340 figura_dib[5]=0x55;
chessdsbr 2:32e1e71f5885 6341 }
chessdsbr 2:32e1e71f5885 6342 else{
chessdsbr 2:32e1e71f5885 6343 figura_dib[5]=0x54;
chessdsbr 2:32e1e71f5885 6344 }
chessdsbr 2:32e1e71f5885 6345 }
chessdsbr 2:32e1e71f5885 6346 else if(l47==1){
chessdsbr 2:32e1e71f5885 6347 if(l48==1){
chessdsbr 2:32e1e71f5885 6348 figura_dib[5]=0x53;
chessdsbr 2:32e1e71f5885 6349 }
chessdsbr 2:32e1e71f5885 6350 else{
chessdsbr 2:32e1e71f5885 6351 figura_dib[5]=0x52;
chessdsbr 2:32e1e71f5885 6352 }
chessdsbr 2:32e1e71f5885 6353 }
chessdsbr 2:32e1e71f5885 6354 else if(l48==1){
chessdsbr 2:32e1e71f5885 6355 figura_dib[5]=0x51;
chessdsbr 2:32e1e71f5885 6356 }
chessdsbr 2:32e1e71f5885 6357 else{
chessdsbr 2:32e1e71f5885 6358 figura_dib[5]=0x50;
chessdsbr 2:32e1e71f5885 6359 }
chessdsbr 2:32e1e71f5885 6360 }
chessdsbr 2:32e1e71f5885 6361 else if(l45==1){
chessdsbr 2:32e1e71f5885 6362 if(l46==1){
chessdsbr 2:32e1e71f5885 6363 if(l47==1){
chessdsbr 2:32e1e71f5885 6364 if(l48==1){
chessdsbr 2:32e1e71f5885 6365 figura_dib[5]=0x4F;
chessdsbr 2:32e1e71f5885 6366 }
chessdsbr 2:32e1e71f5885 6367 else{
chessdsbr 2:32e1e71f5885 6368 figura_dib[5]=0x4E;
chessdsbr 2:32e1e71f5885 6369 }
chessdsbr 2:32e1e71f5885 6370 }
chessdsbr 2:32e1e71f5885 6371 else if(l48==1){
chessdsbr 2:32e1e71f5885 6372 figura_dib[5]=0x4D;
chessdsbr 2:32e1e71f5885 6373 }
chessdsbr 2:32e1e71f5885 6374 else{
chessdsbr 2:32e1e71f5885 6375 figura_dib[5]=0x4C;
chessdsbr 2:32e1e71f5885 6376 }
chessdsbr 2:32e1e71f5885 6377 }
chessdsbr 2:32e1e71f5885 6378 else if(l47==1){
chessdsbr 2:32e1e71f5885 6379 if(l48==1){
chessdsbr 2:32e1e71f5885 6380 figura_dib[5]=0x4B;
chessdsbr 2:32e1e71f5885 6381 }
chessdsbr 2:32e1e71f5885 6382 else{
chessdsbr 2:32e1e71f5885 6383 figura_dib[5]=0x4A;
chessdsbr 2:32e1e71f5885 6384 }
chessdsbr 2:32e1e71f5885 6385 }
chessdsbr 2:32e1e71f5885 6386 else if(l48==1){
chessdsbr 2:32e1e71f5885 6387 figura_dib[5]=0x49;
chessdsbr 2:32e1e71f5885 6388 }
chessdsbr 2:32e1e71f5885 6389 else{
chessdsbr 2:32e1e71f5885 6390 figura_dib[5]=0x48;
chessdsbr 2:32e1e71f5885 6391 }
chessdsbr 2:32e1e71f5885 6392 }
chessdsbr 2:32e1e71f5885 6393 else if(l46==1){
chessdsbr 2:32e1e71f5885 6394 if(l47==1){
chessdsbr 2:32e1e71f5885 6395 if(l48==1){
chessdsbr 2:32e1e71f5885 6396 figura_dib[5]=0x47;
chessdsbr 2:32e1e71f5885 6397 }
chessdsbr 2:32e1e71f5885 6398 else{
chessdsbr 2:32e1e71f5885 6399 figura_dib[5]=0x46;
chessdsbr 2:32e1e71f5885 6400 }
chessdsbr 2:32e1e71f5885 6401 }
chessdsbr 2:32e1e71f5885 6402 else if(l48==1){
chessdsbr 2:32e1e71f5885 6403 figura_dib[5]=0x45;
chessdsbr 2:32e1e71f5885 6404 }
chessdsbr 2:32e1e71f5885 6405 else{
chessdsbr 2:32e1e71f5885 6406 figura_dib[5]=0x44;
chessdsbr 2:32e1e71f5885 6407 }
chessdsbr 2:32e1e71f5885 6408 }
chessdsbr 2:32e1e71f5885 6409 else if(l47==1){
chessdsbr 2:32e1e71f5885 6410 if(l48==1){
chessdsbr 2:32e1e71f5885 6411 figura_dib[5]=0x43;
chessdsbr 2:32e1e71f5885 6412 }
chessdsbr 2:32e1e71f5885 6413 else{
chessdsbr 2:32e1e71f5885 6414 figura_dib[5]=0x42;
chessdsbr 2:32e1e71f5885 6415 }
chessdsbr 2:32e1e71f5885 6416 }
chessdsbr 2:32e1e71f5885 6417 else if(l48==1){
chessdsbr 2:32e1e71f5885 6418 figura_dib[5]=0x41;
chessdsbr 2:32e1e71f5885 6419 }
chessdsbr 2:32e1e71f5885 6420 else{
chessdsbr 2:32e1e71f5885 6421 figura_dib[5]=0x40;
chessdsbr 2:32e1e71f5885 6422 }
chessdsbr 2:32e1e71f5885 6423 }
chessdsbr 2:32e1e71f5885 6424 else if(l43==1){
chessdsbr 2:32e1e71f5885 6425 if(l44==1){
chessdsbr 2:32e1e71f5885 6426 if(l45==1){
chessdsbr 2:32e1e71f5885 6427 if(l46==1){
chessdsbr 2:32e1e71f5885 6428 if(l47==1){
chessdsbr 2:32e1e71f5885 6429 if(l48==1){
chessdsbr 2:32e1e71f5885 6430 figura_dib[5]=0x3F;
chessdsbr 2:32e1e71f5885 6431 }
chessdsbr 2:32e1e71f5885 6432 else{
chessdsbr 2:32e1e71f5885 6433 figura_dib[5]=0x3E;
chessdsbr 2:32e1e71f5885 6434 }
chessdsbr 2:32e1e71f5885 6435 }
chessdsbr 2:32e1e71f5885 6436 else if(l48==1){
chessdsbr 2:32e1e71f5885 6437 figura_dib[5]=0x3D;
chessdsbr 2:32e1e71f5885 6438 }
chessdsbr 2:32e1e71f5885 6439 else{
chessdsbr 2:32e1e71f5885 6440 figura_dib[5]=0x3C;
chessdsbr 2:32e1e71f5885 6441 }
chessdsbr 2:32e1e71f5885 6442 }
chessdsbr 2:32e1e71f5885 6443 else if(l47==1){
chessdsbr 2:32e1e71f5885 6444 if(l48==1){
chessdsbr 2:32e1e71f5885 6445 figura_dib[5]=0x3B;
chessdsbr 2:32e1e71f5885 6446 }
chessdsbr 2:32e1e71f5885 6447 else{
chessdsbr 2:32e1e71f5885 6448 figura_dib[5]=0x3A;
chessdsbr 2:32e1e71f5885 6449 }
chessdsbr 2:32e1e71f5885 6450 }
chessdsbr 2:32e1e71f5885 6451 else if(l48==1){
chessdsbr 2:32e1e71f5885 6452 figura_dib[5]=0x39;
chessdsbr 2:32e1e71f5885 6453 }
chessdsbr 2:32e1e71f5885 6454 else{
chessdsbr 2:32e1e71f5885 6455 figura_dib[5]=0x38;
chessdsbr 2:32e1e71f5885 6456 }
chessdsbr 2:32e1e71f5885 6457 }
chessdsbr 2:32e1e71f5885 6458 else if(l46==1){
chessdsbr 2:32e1e71f5885 6459 if(l47==1){
chessdsbr 2:32e1e71f5885 6460 if(l48==1){
chessdsbr 2:32e1e71f5885 6461 figura_dib[5]=0x37;
chessdsbr 2:32e1e71f5885 6462 }
chessdsbr 2:32e1e71f5885 6463 else{
chessdsbr 2:32e1e71f5885 6464 figura_dib[5]=0x36;
chessdsbr 2:32e1e71f5885 6465 }
chessdsbr 2:32e1e71f5885 6466 }
chessdsbr 2:32e1e71f5885 6467 else if(l48==1){
chessdsbr 2:32e1e71f5885 6468 figura_dib[5]=0x35;
chessdsbr 2:32e1e71f5885 6469 }
chessdsbr 2:32e1e71f5885 6470 else{
chessdsbr 2:32e1e71f5885 6471 figura_dib[5]=0x34;
chessdsbr 2:32e1e71f5885 6472 }
chessdsbr 2:32e1e71f5885 6473 }
chessdsbr 2:32e1e71f5885 6474 else if(l47==1){
chessdsbr 2:32e1e71f5885 6475 if(l48==1){
chessdsbr 2:32e1e71f5885 6476 figura_dib[5]=0x33;
chessdsbr 2:32e1e71f5885 6477 }
chessdsbr 2:32e1e71f5885 6478 else{
chessdsbr 2:32e1e71f5885 6479 figura_dib[5]=0x32;
chessdsbr 2:32e1e71f5885 6480 }
chessdsbr 2:32e1e71f5885 6481 }
chessdsbr 2:32e1e71f5885 6482 else if(l48==1){
chessdsbr 2:32e1e71f5885 6483 figura_dib[5]=0x31;
chessdsbr 2:32e1e71f5885 6484 }
chessdsbr 2:32e1e71f5885 6485 else{
chessdsbr 2:32e1e71f5885 6486 figura_dib[5]=0x30;
chessdsbr 2:32e1e71f5885 6487 }
chessdsbr 2:32e1e71f5885 6488 }
chessdsbr 2:32e1e71f5885 6489 else if(l45==1){
chessdsbr 2:32e1e71f5885 6490 if(l46==1){
chessdsbr 2:32e1e71f5885 6491 if(l47==1){
chessdsbr 2:32e1e71f5885 6492 if(l48==1){
chessdsbr 2:32e1e71f5885 6493 figura_dib[5]=0x2F;
chessdsbr 2:32e1e71f5885 6494 }
chessdsbr 2:32e1e71f5885 6495 else{
chessdsbr 2:32e1e71f5885 6496 figura_dib[5]=0x2E;
chessdsbr 2:32e1e71f5885 6497 }
chessdsbr 2:32e1e71f5885 6498 }
chessdsbr 2:32e1e71f5885 6499 else if(l48==1){
chessdsbr 2:32e1e71f5885 6500 figura_dib[5]=0x2D;
chessdsbr 2:32e1e71f5885 6501 }
chessdsbr 2:32e1e71f5885 6502 else{
chessdsbr 2:32e1e71f5885 6503 figura_dib[5]=0x2C;
chessdsbr 2:32e1e71f5885 6504 }
chessdsbr 2:32e1e71f5885 6505 }
chessdsbr 2:32e1e71f5885 6506 else if(l47==1){
chessdsbr 2:32e1e71f5885 6507 if(l48==1){
chessdsbr 2:32e1e71f5885 6508 figura_dib[5]=0x2B;
chessdsbr 2:32e1e71f5885 6509 }
chessdsbr 2:32e1e71f5885 6510 else{
chessdsbr 2:32e1e71f5885 6511 figura_dib[5]=0x2A;
chessdsbr 2:32e1e71f5885 6512 }
chessdsbr 2:32e1e71f5885 6513 }
chessdsbr 2:32e1e71f5885 6514 else if(l48==1){
chessdsbr 2:32e1e71f5885 6515 figura_dib[5]=0x29;
chessdsbr 2:32e1e71f5885 6516 }
chessdsbr 2:32e1e71f5885 6517 else{
chessdsbr 2:32e1e71f5885 6518 figura_dib[5]=0x28;
chessdsbr 2:32e1e71f5885 6519 }
chessdsbr 2:32e1e71f5885 6520 }
chessdsbr 2:32e1e71f5885 6521 else if(l46==1){
chessdsbr 2:32e1e71f5885 6522 if(l47==1){
chessdsbr 2:32e1e71f5885 6523 if(l48==1){
chessdsbr 2:32e1e71f5885 6524 figura_dib[5]=0x27;
chessdsbr 2:32e1e71f5885 6525 }
chessdsbr 2:32e1e71f5885 6526 else{
chessdsbr 2:32e1e71f5885 6527 figura_dib[5]=0x26;
chessdsbr 2:32e1e71f5885 6528 }
chessdsbr 2:32e1e71f5885 6529 }
chessdsbr 2:32e1e71f5885 6530 else if(l48==1){
chessdsbr 2:32e1e71f5885 6531 figura_dib[5]=0x25;
chessdsbr 2:32e1e71f5885 6532 }
chessdsbr 2:32e1e71f5885 6533 else{
chessdsbr 2:32e1e71f5885 6534 figura_dib[5]=0x24;
chessdsbr 2:32e1e71f5885 6535 }
chessdsbr 2:32e1e71f5885 6536 }
chessdsbr 2:32e1e71f5885 6537 else if(l47==1){
chessdsbr 2:32e1e71f5885 6538 if(l48==1){
chessdsbr 2:32e1e71f5885 6539 figura_dib[5]=0x23;
chessdsbr 2:32e1e71f5885 6540 }
chessdsbr 2:32e1e71f5885 6541 else{
chessdsbr 2:32e1e71f5885 6542 figura_dib[5]=0x22;
chessdsbr 2:32e1e71f5885 6543 }
chessdsbr 2:32e1e71f5885 6544 }
chessdsbr 2:32e1e71f5885 6545 else if(l48==1){
chessdsbr 2:32e1e71f5885 6546 figura_dib[5]=0x21;
chessdsbr 2:32e1e71f5885 6547 }
chessdsbr 2:32e1e71f5885 6548 else{
chessdsbr 2:32e1e71f5885 6549 figura_dib[5]=0x20;
chessdsbr 2:32e1e71f5885 6550 }
chessdsbr 2:32e1e71f5885 6551 }
chessdsbr 2:32e1e71f5885 6552 else if(l44==1){
chessdsbr 2:32e1e71f5885 6553 if(l45==1){
chessdsbr 2:32e1e71f5885 6554 if(l46==1){
chessdsbr 2:32e1e71f5885 6555 if(l47==1){
chessdsbr 2:32e1e71f5885 6556 if(l48==1){
chessdsbr 2:32e1e71f5885 6557 figura_dib[5]=0x1F;
chessdsbr 2:32e1e71f5885 6558 }
chessdsbr 2:32e1e71f5885 6559 else{
chessdsbr 2:32e1e71f5885 6560 figura_dib[5]=0x1E;
chessdsbr 2:32e1e71f5885 6561 }
chessdsbr 2:32e1e71f5885 6562 }
chessdsbr 2:32e1e71f5885 6563 else if(l48==1){
chessdsbr 2:32e1e71f5885 6564 figura_dib[5]=0x1D;
chessdsbr 2:32e1e71f5885 6565 }
chessdsbr 2:32e1e71f5885 6566 else{
chessdsbr 2:32e1e71f5885 6567 figura_dib[5]=0x1C;
chessdsbr 2:32e1e71f5885 6568 }
chessdsbr 2:32e1e71f5885 6569 }
chessdsbr 2:32e1e71f5885 6570 else if(l47==1){
chessdsbr 2:32e1e71f5885 6571 if(l48==1){
chessdsbr 2:32e1e71f5885 6572 figura_dib[5]=0x1B;
chessdsbr 2:32e1e71f5885 6573 }
chessdsbr 2:32e1e71f5885 6574 else{
chessdsbr 2:32e1e71f5885 6575 figura_dib[5]=0x1A;
chessdsbr 2:32e1e71f5885 6576 }
chessdsbr 2:32e1e71f5885 6577 }
chessdsbr 2:32e1e71f5885 6578 else if(l48==1){
chessdsbr 2:32e1e71f5885 6579 figura_dib[5]=0x19;
chessdsbr 2:32e1e71f5885 6580 }
chessdsbr 2:32e1e71f5885 6581 else{
chessdsbr 2:32e1e71f5885 6582 figura_dib[5]=0x18;
chessdsbr 2:32e1e71f5885 6583 }
chessdsbr 2:32e1e71f5885 6584 }
chessdsbr 2:32e1e71f5885 6585 else if(l46==1){
chessdsbr 2:32e1e71f5885 6586 if(l47==1){
chessdsbr 2:32e1e71f5885 6587 if(l48==1){
chessdsbr 2:32e1e71f5885 6588 figura_dib[5]=0x17;
chessdsbr 2:32e1e71f5885 6589 }
chessdsbr 2:32e1e71f5885 6590 else{
chessdsbr 2:32e1e71f5885 6591 figura_dib[5]=0x16;
chessdsbr 2:32e1e71f5885 6592 }
chessdsbr 2:32e1e71f5885 6593 }
chessdsbr 2:32e1e71f5885 6594 else if(l48==1){
chessdsbr 2:32e1e71f5885 6595 figura_dib[5]=0x15;
chessdsbr 2:32e1e71f5885 6596 }
chessdsbr 2:32e1e71f5885 6597 else{
chessdsbr 2:32e1e71f5885 6598 figura_dib[5]=0x14;
chessdsbr 2:32e1e71f5885 6599 }
chessdsbr 2:32e1e71f5885 6600 }
chessdsbr 2:32e1e71f5885 6601 else if(l47==1){
chessdsbr 2:32e1e71f5885 6602 if(l48==1){
chessdsbr 2:32e1e71f5885 6603 figura_dib[5]=0x13;
chessdsbr 2:32e1e71f5885 6604 }
chessdsbr 2:32e1e71f5885 6605 else{
chessdsbr 2:32e1e71f5885 6606 figura_dib[5]=0x12;
chessdsbr 2:32e1e71f5885 6607 }
chessdsbr 2:32e1e71f5885 6608 }
chessdsbr 2:32e1e71f5885 6609 else if(l48==1){
chessdsbr 2:32e1e71f5885 6610 figura_dib[5]=0x11;
chessdsbr 2:32e1e71f5885 6611 }
chessdsbr 2:32e1e71f5885 6612 else{
chessdsbr 2:32e1e71f5885 6613 figura_dib[5]=0x10;
chessdsbr 2:32e1e71f5885 6614 }
chessdsbr 2:32e1e71f5885 6615 }
chessdsbr 2:32e1e71f5885 6616 else if(l45==1){
chessdsbr 2:32e1e71f5885 6617 if(l46==1){
chessdsbr 2:32e1e71f5885 6618 if(l47==1){
chessdsbr 2:32e1e71f5885 6619 if(l48==1){
chessdsbr 2:32e1e71f5885 6620 figura_dib[5]=0x0F;
chessdsbr 2:32e1e71f5885 6621 }
chessdsbr 2:32e1e71f5885 6622 else{
chessdsbr 2:32e1e71f5885 6623 figura_dib[5]=0x0E;
chessdsbr 2:32e1e71f5885 6624 }
chessdsbr 2:32e1e71f5885 6625 }
chessdsbr 2:32e1e71f5885 6626 else if(l48==1){
chessdsbr 2:32e1e71f5885 6627 figura_dib[5]=0x0D;
chessdsbr 2:32e1e71f5885 6628 }
chessdsbr 2:32e1e71f5885 6629 else{
chessdsbr 2:32e1e71f5885 6630 figura_dib[5]=0x0C;
chessdsbr 2:32e1e71f5885 6631 }
chessdsbr 2:32e1e71f5885 6632 }
chessdsbr 2:32e1e71f5885 6633 else if(l47==1){
chessdsbr 2:32e1e71f5885 6634 if(l48==1){
chessdsbr 2:32e1e71f5885 6635 figura_dib[5]=0x0B;
chessdsbr 2:32e1e71f5885 6636 }
chessdsbr 2:32e1e71f5885 6637 else{
chessdsbr 2:32e1e71f5885 6638 figura_dib[5]=0x0A;
chessdsbr 2:32e1e71f5885 6639 }
chessdsbr 2:32e1e71f5885 6640 }
chessdsbr 2:32e1e71f5885 6641 else if(l48==1){
chessdsbr 2:32e1e71f5885 6642 figura_dib[5]=0x09;
chessdsbr 2:32e1e71f5885 6643 }
chessdsbr 2:32e1e71f5885 6644 else{
chessdsbr 2:32e1e71f5885 6645 figura_dib[5]=0x08;
chessdsbr 2:32e1e71f5885 6646 }
chessdsbr 2:32e1e71f5885 6647 }
chessdsbr 2:32e1e71f5885 6648 else if(l46==1){
chessdsbr 2:32e1e71f5885 6649 if(l47==1){
chessdsbr 2:32e1e71f5885 6650 if(l48==1){
chessdsbr 2:32e1e71f5885 6651 figura_dib[5]=0x07;
chessdsbr 2:32e1e71f5885 6652 }
chessdsbr 2:32e1e71f5885 6653 else{
chessdsbr 2:32e1e71f5885 6654 figura_dib[5]=0x06;
chessdsbr 2:32e1e71f5885 6655 }
chessdsbr 2:32e1e71f5885 6656 }
chessdsbr 2:32e1e71f5885 6657 else if(l48==1){
chessdsbr 2:32e1e71f5885 6658 figura_dib[5]=0x05;
chessdsbr 2:32e1e71f5885 6659 }
chessdsbr 2:32e1e71f5885 6660 else{
chessdsbr 2:32e1e71f5885 6661 figura_dib[5]=0x04;
chessdsbr 2:32e1e71f5885 6662 }
chessdsbr 2:32e1e71f5885 6663 }
chessdsbr 2:32e1e71f5885 6664 else if(l47==1){
chessdsbr 2:32e1e71f5885 6665 if(l48==1){
chessdsbr 2:32e1e71f5885 6666 figura_dib[5]=0x03;
chessdsbr 2:32e1e71f5885 6667 }
chessdsbr 2:32e1e71f5885 6668 else{
chessdsbr 2:32e1e71f5885 6669 figura_dib[5]=0x02;
chessdsbr 2:32e1e71f5885 6670 }
chessdsbr 2:32e1e71f5885 6671 }
chessdsbr 2:32e1e71f5885 6672 else if(l48==1){
chessdsbr 2:32e1e71f5885 6673 figura_dib[5]=0x01;
chessdsbr 2:32e1e71f5885 6674 }
chessdsbr 2:32e1e71f5885 6675 else{
chessdsbr 2:32e1e71f5885 6676 figura_dib[5]=0x00;
chessdsbr 2:32e1e71f5885 6677 }
chessdsbr 2:32e1e71f5885 6678 /////
chessdsbr 2:32e1e71f5885 6679 ////
chessdsbr 2:32e1e71f5885 6680 ///
chessdsbr 2:32e1e71f5885 6681 //
chessdsbr 2:32e1e71f5885 6682 //fila 7
chessdsbr 2:32e1e71f5885 6683 //
chessdsbr 2:32e1e71f5885 6684 ///
chessdsbr 2:32e1e71f5885 6685 ////
chessdsbr 2:32e1e71f5885 6686 /////
chessdsbr 2:32e1e71f5885 6687 if(l49==1){
chessdsbr 2:32e1e71f5885 6688 if(l50==1){
chessdsbr 2:32e1e71f5885 6689 if(l51==1){
chessdsbr 2:32e1e71f5885 6690 if(l52==1){
chessdsbr 2:32e1e71f5885 6691 if(l53==1){
chessdsbr 2:32e1e71f5885 6692 if(l54==1){
chessdsbr 2:32e1e71f5885 6693 if(l55==1){
chessdsbr 2:32e1e71f5885 6694 if(l56==1){
chessdsbr 2:32e1e71f5885 6695 figura_dib[6]=0xFF;
chessdsbr 2:32e1e71f5885 6696 }
chessdsbr 2:32e1e71f5885 6697 else{
chessdsbr 2:32e1e71f5885 6698 figura_dib[6]=0xFE;
chessdsbr 2:32e1e71f5885 6699 }
chessdsbr 2:32e1e71f5885 6700 }
chessdsbr 2:32e1e71f5885 6701 else if(l56==1){
chessdsbr 2:32e1e71f5885 6702 figura_dib[6]=0xFD;
chessdsbr 2:32e1e71f5885 6703 }
chessdsbr 2:32e1e71f5885 6704 else{
chessdsbr 2:32e1e71f5885 6705 figura_dib[6]=0xFC;
chessdsbr 2:32e1e71f5885 6706 }
chessdsbr 2:32e1e71f5885 6707 }
chessdsbr 2:32e1e71f5885 6708 else if(l55==1){
chessdsbr 2:32e1e71f5885 6709 if(l56==1){
chessdsbr 2:32e1e71f5885 6710 figura_dib[6]=0xFB;
chessdsbr 2:32e1e71f5885 6711 }
chessdsbr 2:32e1e71f5885 6712 else{
chessdsbr 2:32e1e71f5885 6713 figura_dib[6]=0xFA;
chessdsbr 2:32e1e71f5885 6714 }
chessdsbr 2:32e1e71f5885 6715 }
chessdsbr 2:32e1e71f5885 6716 else if(l56==1){
chessdsbr 2:32e1e71f5885 6717 figura_dib[6]=0xF9;
chessdsbr 2:32e1e71f5885 6718 }
chessdsbr 2:32e1e71f5885 6719 else{
chessdsbr 2:32e1e71f5885 6720 figura_dib[6]=0xF8;
chessdsbr 2:32e1e71f5885 6721 }
chessdsbr 2:32e1e71f5885 6722 }
chessdsbr 2:32e1e71f5885 6723 else if(l54==1){
chessdsbr 2:32e1e71f5885 6724 if(l55==1){
chessdsbr 2:32e1e71f5885 6725 if(l56==1){
chessdsbr 2:32e1e71f5885 6726 figura_dib[6]=0xF7;
chessdsbr 2:32e1e71f5885 6727 }
chessdsbr 2:32e1e71f5885 6728 else{
chessdsbr 2:32e1e71f5885 6729 figura_dib[6]=0xF6;
chessdsbr 2:32e1e71f5885 6730 }
chessdsbr 2:32e1e71f5885 6731 }
chessdsbr 2:32e1e71f5885 6732 else if(l56==1){
chessdsbr 2:32e1e71f5885 6733 figura_dib[6]=0xF5;
chessdsbr 2:32e1e71f5885 6734 }
chessdsbr 2:32e1e71f5885 6735 else{
chessdsbr 2:32e1e71f5885 6736 figura_dib[6]=0xF4;
chessdsbr 2:32e1e71f5885 6737 }
chessdsbr 2:32e1e71f5885 6738 }
chessdsbr 2:32e1e71f5885 6739 else if(l55==1){
chessdsbr 2:32e1e71f5885 6740 if(l56==1){
chessdsbr 2:32e1e71f5885 6741 figura_dib[6]=0xF3;
chessdsbr 2:32e1e71f5885 6742 }
chessdsbr 2:32e1e71f5885 6743 else{
chessdsbr 2:32e1e71f5885 6744 figura_dib[6]=0xF2;
chessdsbr 2:32e1e71f5885 6745 }
chessdsbr 2:32e1e71f5885 6746 }
chessdsbr 2:32e1e71f5885 6747 else if(l56==1){
chessdsbr 2:32e1e71f5885 6748 figura_dib[6]=0xF1;
chessdsbr 2:32e1e71f5885 6749 }
chessdsbr 2:32e1e71f5885 6750 else{
chessdsbr 2:32e1e71f5885 6751 figura_dib[6]=0xF0;
chessdsbr 2:32e1e71f5885 6752 }
chessdsbr 2:32e1e71f5885 6753 }
chessdsbr 2:32e1e71f5885 6754 else if(l53==1){
chessdsbr 2:32e1e71f5885 6755 if(l54==1){
chessdsbr 2:32e1e71f5885 6756 if(l55==1){
chessdsbr 2:32e1e71f5885 6757 if(l56==1){
chessdsbr 2:32e1e71f5885 6758 figura_dib[6]=0xEF;
chessdsbr 2:32e1e71f5885 6759 }
chessdsbr 2:32e1e71f5885 6760 else{
chessdsbr 2:32e1e71f5885 6761 figura_dib[6]=0xEE;
chessdsbr 2:32e1e71f5885 6762 }
chessdsbr 2:32e1e71f5885 6763 }
chessdsbr 2:32e1e71f5885 6764 else if(l56==1){
chessdsbr 2:32e1e71f5885 6765 figura_dib[6]=0xED;
chessdsbr 2:32e1e71f5885 6766 }
chessdsbr 2:32e1e71f5885 6767 else{
chessdsbr 2:32e1e71f5885 6768 figura_dib[6]=0xEC;
chessdsbr 2:32e1e71f5885 6769 }
chessdsbr 2:32e1e71f5885 6770 }
chessdsbr 2:32e1e71f5885 6771 else if(l55==1){
chessdsbr 2:32e1e71f5885 6772 if(l56==1){
chessdsbr 2:32e1e71f5885 6773 figura_dib[6]=0xEB;
chessdsbr 2:32e1e71f5885 6774 }
chessdsbr 2:32e1e71f5885 6775 else{
chessdsbr 2:32e1e71f5885 6776 figura_dib[6]=0xEA;
chessdsbr 2:32e1e71f5885 6777 }
chessdsbr 2:32e1e71f5885 6778 }
chessdsbr 2:32e1e71f5885 6779 else if(l56==1){
chessdsbr 2:32e1e71f5885 6780 figura_dib[6]=0xE9;
chessdsbr 2:32e1e71f5885 6781 }
chessdsbr 2:32e1e71f5885 6782 else{
chessdsbr 2:32e1e71f5885 6783 figura_dib[6]=0xE8;
chessdsbr 2:32e1e71f5885 6784 }
chessdsbr 2:32e1e71f5885 6785 }
chessdsbr 2:32e1e71f5885 6786 else if(l54==1){
chessdsbr 2:32e1e71f5885 6787 if(l55==1){
chessdsbr 2:32e1e71f5885 6788 if(l56==1){
chessdsbr 2:32e1e71f5885 6789 figura_dib[6]=0xE7;
chessdsbr 2:32e1e71f5885 6790 }
chessdsbr 2:32e1e71f5885 6791 else{
chessdsbr 2:32e1e71f5885 6792 figura_dib[6]=0xE6;
chessdsbr 2:32e1e71f5885 6793 }
chessdsbr 2:32e1e71f5885 6794 }
chessdsbr 2:32e1e71f5885 6795 else if(l56==1){
chessdsbr 2:32e1e71f5885 6796 figura_dib[6]=0xE5;
chessdsbr 2:32e1e71f5885 6797 }
chessdsbr 2:32e1e71f5885 6798 else{
chessdsbr 2:32e1e71f5885 6799 figura_dib[6]=0xE4;
chessdsbr 2:32e1e71f5885 6800 }
chessdsbr 2:32e1e71f5885 6801 }
chessdsbr 2:32e1e71f5885 6802 else if(l55==1){
chessdsbr 2:32e1e71f5885 6803 if(l56==1){
chessdsbr 2:32e1e71f5885 6804 figura_dib[6]=0xE3;
chessdsbr 2:32e1e71f5885 6805 }
chessdsbr 2:32e1e71f5885 6806 else{
chessdsbr 2:32e1e71f5885 6807 figura_dib[6]=0xE2;
chessdsbr 2:32e1e71f5885 6808 }
chessdsbr 2:32e1e71f5885 6809 }
chessdsbr 2:32e1e71f5885 6810 else if(l56==1){
chessdsbr 2:32e1e71f5885 6811 figura_dib[6]=0xE1;
chessdsbr 2:32e1e71f5885 6812 }
chessdsbr 2:32e1e71f5885 6813 else{
chessdsbr 2:32e1e71f5885 6814 figura_dib[6]=0xE0;
chessdsbr 2:32e1e71f5885 6815 }
chessdsbr 2:32e1e71f5885 6816 }
chessdsbr 2:32e1e71f5885 6817 else if(l52==1){
chessdsbr 2:32e1e71f5885 6818 if(l53==1){
chessdsbr 2:32e1e71f5885 6819 if(l54==1){
chessdsbr 2:32e1e71f5885 6820 if(l55==1){
chessdsbr 2:32e1e71f5885 6821 if(l56==1){
chessdsbr 2:32e1e71f5885 6822 figura_dib[6]=0xDF;
chessdsbr 2:32e1e71f5885 6823 }
chessdsbr 2:32e1e71f5885 6824 else{
chessdsbr 2:32e1e71f5885 6825 figura_dib[6]=0xDE;
chessdsbr 2:32e1e71f5885 6826 }
chessdsbr 2:32e1e71f5885 6827 }
chessdsbr 2:32e1e71f5885 6828 else if(l56==1){
chessdsbr 2:32e1e71f5885 6829 figura_dib[6]=0xDD;
chessdsbr 2:32e1e71f5885 6830 }
chessdsbr 2:32e1e71f5885 6831 else{
chessdsbr 2:32e1e71f5885 6832 figura_dib[6]=0xDC;
chessdsbr 2:32e1e71f5885 6833 }
chessdsbr 2:32e1e71f5885 6834 }
chessdsbr 2:32e1e71f5885 6835 else if(l55==1){
chessdsbr 2:32e1e71f5885 6836 if(l56==1){
chessdsbr 2:32e1e71f5885 6837 figura_dib[6]=0xDB;
chessdsbr 2:32e1e71f5885 6838 }
chessdsbr 2:32e1e71f5885 6839 else{
chessdsbr 2:32e1e71f5885 6840 figura_dib[6]=0xDA;
chessdsbr 2:32e1e71f5885 6841 }
chessdsbr 2:32e1e71f5885 6842 }
chessdsbr 2:32e1e71f5885 6843 else if(l56==1){
chessdsbr 2:32e1e71f5885 6844 figura_dib[6]=0xD9;
chessdsbr 2:32e1e71f5885 6845 }
chessdsbr 2:32e1e71f5885 6846 else{
chessdsbr 2:32e1e71f5885 6847 figura_dib[6]=0xD8;
chessdsbr 2:32e1e71f5885 6848 }
chessdsbr 2:32e1e71f5885 6849 }
chessdsbr 2:32e1e71f5885 6850 else if(l54==1){
chessdsbr 2:32e1e71f5885 6851 if(l55==1){
chessdsbr 2:32e1e71f5885 6852 if(l56==1){
chessdsbr 2:32e1e71f5885 6853 figura_dib[6]=0xD7;
chessdsbr 2:32e1e71f5885 6854 }
chessdsbr 2:32e1e71f5885 6855 else{
chessdsbr 2:32e1e71f5885 6856 figura_dib[6]=0xD6;
chessdsbr 2:32e1e71f5885 6857 }
chessdsbr 2:32e1e71f5885 6858 }
chessdsbr 2:32e1e71f5885 6859 else if(l56==1){
chessdsbr 2:32e1e71f5885 6860 figura_dib[6]=0xD5;
chessdsbr 2:32e1e71f5885 6861 }
chessdsbr 2:32e1e71f5885 6862 else{
chessdsbr 2:32e1e71f5885 6863 figura_dib[6]=0xD4;
chessdsbr 2:32e1e71f5885 6864 }
chessdsbr 2:32e1e71f5885 6865 }
chessdsbr 2:32e1e71f5885 6866 else if(l55==1){
chessdsbr 2:32e1e71f5885 6867 if(l56==1){
chessdsbr 2:32e1e71f5885 6868 figura_dib[6]=0xD3;
chessdsbr 2:32e1e71f5885 6869 }
chessdsbr 2:32e1e71f5885 6870 else{
chessdsbr 2:32e1e71f5885 6871 figura_dib[6]=0xD2;
chessdsbr 2:32e1e71f5885 6872 }
chessdsbr 2:32e1e71f5885 6873 }
chessdsbr 2:32e1e71f5885 6874 else if(l56==1){
chessdsbr 2:32e1e71f5885 6875 figura_dib[6]=0xD1;
chessdsbr 2:32e1e71f5885 6876 }
chessdsbr 2:32e1e71f5885 6877 else{
chessdsbr 2:32e1e71f5885 6878 figura_dib[6]=0xD0;
chessdsbr 2:32e1e71f5885 6879 }
chessdsbr 2:32e1e71f5885 6880 }
chessdsbr 2:32e1e71f5885 6881 else if(l53==1){
chessdsbr 2:32e1e71f5885 6882 if(l54==1){
chessdsbr 2:32e1e71f5885 6883 if(l55==1){
chessdsbr 2:32e1e71f5885 6884 if(l56==1){
chessdsbr 2:32e1e71f5885 6885 figura_dib[6]=0xCF;
chessdsbr 2:32e1e71f5885 6886 }
chessdsbr 2:32e1e71f5885 6887 else{
chessdsbr 2:32e1e71f5885 6888 figura_dib[6]=0xCE;
chessdsbr 2:32e1e71f5885 6889 }
chessdsbr 2:32e1e71f5885 6890 }
chessdsbr 2:32e1e71f5885 6891 else if(l56==1){
chessdsbr 2:32e1e71f5885 6892 figura_dib[6]=0xCD;
chessdsbr 2:32e1e71f5885 6893 }
chessdsbr 2:32e1e71f5885 6894 else{
chessdsbr 2:32e1e71f5885 6895 figura_dib[6]=0xCC;
chessdsbr 2:32e1e71f5885 6896 }
chessdsbr 2:32e1e71f5885 6897 }
chessdsbr 2:32e1e71f5885 6898 else if(l55==1){
chessdsbr 2:32e1e71f5885 6899 if(l56==1){
chessdsbr 2:32e1e71f5885 6900 figura_dib[6]=0xCB;
chessdsbr 2:32e1e71f5885 6901 }
chessdsbr 2:32e1e71f5885 6902 else{
chessdsbr 2:32e1e71f5885 6903 figura_dib[6]=0xCA;
chessdsbr 2:32e1e71f5885 6904 }
chessdsbr 2:32e1e71f5885 6905 }
chessdsbr 2:32e1e71f5885 6906 else if(l56==1){
chessdsbr 2:32e1e71f5885 6907 figura_dib[6]=0xC9;
chessdsbr 2:32e1e71f5885 6908 }
chessdsbr 2:32e1e71f5885 6909 else{
chessdsbr 2:32e1e71f5885 6910 figura_dib[6]=0xC8;
chessdsbr 2:32e1e71f5885 6911 }
chessdsbr 2:32e1e71f5885 6912 }
chessdsbr 2:32e1e71f5885 6913 else if(l54==1){
chessdsbr 2:32e1e71f5885 6914 if(l55==1){
chessdsbr 2:32e1e71f5885 6915 if(l56==1){
chessdsbr 2:32e1e71f5885 6916 figura_dib[6]=0xC7;
chessdsbr 2:32e1e71f5885 6917 }
chessdsbr 2:32e1e71f5885 6918 else{
chessdsbr 2:32e1e71f5885 6919 figura_dib[6]=0xC6;
chessdsbr 2:32e1e71f5885 6920 }
chessdsbr 2:32e1e71f5885 6921 }
chessdsbr 2:32e1e71f5885 6922 else if(l56==1){
chessdsbr 2:32e1e71f5885 6923 figura_dib[6]=0xC5;
chessdsbr 2:32e1e71f5885 6924 }
chessdsbr 2:32e1e71f5885 6925 else{
chessdsbr 2:32e1e71f5885 6926 figura_dib[6]=0xC4;
chessdsbr 2:32e1e71f5885 6927 }
chessdsbr 2:32e1e71f5885 6928 }
chessdsbr 2:32e1e71f5885 6929 else if(l55==1){
chessdsbr 2:32e1e71f5885 6930 if(l56==1){
chessdsbr 2:32e1e71f5885 6931 figura_dib[6]=0xC3;
chessdsbr 2:32e1e71f5885 6932 }
chessdsbr 2:32e1e71f5885 6933 else{
chessdsbr 2:32e1e71f5885 6934 figura_dib[6]=0xC2;
chessdsbr 2:32e1e71f5885 6935 }
chessdsbr 2:32e1e71f5885 6936 }
chessdsbr 2:32e1e71f5885 6937 else if(l56==1){
chessdsbr 2:32e1e71f5885 6938 figura_dib[6]=0xC1;
chessdsbr 2:32e1e71f5885 6939 }
chessdsbr 2:32e1e71f5885 6940 else{
chessdsbr 2:32e1e71f5885 6941 figura_dib[6]=0xC0;
chessdsbr 2:32e1e71f5885 6942 }
chessdsbr 2:32e1e71f5885 6943 }
chessdsbr 2:32e1e71f5885 6944 else if(l51==1){
chessdsbr 2:32e1e71f5885 6945 if(l52==1){
chessdsbr 2:32e1e71f5885 6946 if(l53==1){
chessdsbr 2:32e1e71f5885 6947 if(l54==1){
chessdsbr 2:32e1e71f5885 6948 if(l55==1){
chessdsbr 2:32e1e71f5885 6949 if(l56==1){
chessdsbr 2:32e1e71f5885 6950 figura_dib[6]=0xBF;
chessdsbr 2:32e1e71f5885 6951 }
chessdsbr 2:32e1e71f5885 6952 else{
chessdsbr 2:32e1e71f5885 6953 figura_dib[6]=0xBE;
chessdsbr 2:32e1e71f5885 6954 }
chessdsbr 2:32e1e71f5885 6955 }
chessdsbr 2:32e1e71f5885 6956 else if(l56==1){
chessdsbr 2:32e1e71f5885 6957 figura_dib[6]=0xBD;
chessdsbr 2:32e1e71f5885 6958 }
chessdsbr 2:32e1e71f5885 6959 else{
chessdsbr 2:32e1e71f5885 6960 figura_dib[6]=0xBC;
chessdsbr 2:32e1e71f5885 6961 }
chessdsbr 2:32e1e71f5885 6962 }
chessdsbr 2:32e1e71f5885 6963 else if(l55==1){
chessdsbr 2:32e1e71f5885 6964 if(l56==1){
chessdsbr 2:32e1e71f5885 6965 figura_dib[6]=0xBB;
chessdsbr 2:32e1e71f5885 6966 }
chessdsbr 2:32e1e71f5885 6967 else{
chessdsbr 2:32e1e71f5885 6968 figura_dib[6]=0xBA;
chessdsbr 2:32e1e71f5885 6969 }
chessdsbr 2:32e1e71f5885 6970 }
chessdsbr 2:32e1e71f5885 6971 else if(l56==1){
chessdsbr 2:32e1e71f5885 6972 figura_dib[6]=0xB9;
chessdsbr 2:32e1e71f5885 6973 }
chessdsbr 2:32e1e71f5885 6974 else{
chessdsbr 2:32e1e71f5885 6975 figura_dib[6]=0xB8;
chessdsbr 2:32e1e71f5885 6976 }
chessdsbr 2:32e1e71f5885 6977 }
chessdsbr 2:32e1e71f5885 6978 else if(l54==1){
chessdsbr 2:32e1e71f5885 6979 if(l55==1){
chessdsbr 2:32e1e71f5885 6980 if(l56==1){
chessdsbr 2:32e1e71f5885 6981 figura_dib[6]=0xB7;
chessdsbr 2:32e1e71f5885 6982 }
chessdsbr 2:32e1e71f5885 6983 else{
chessdsbr 2:32e1e71f5885 6984 figura_dib[6]=0xB6;
chessdsbr 2:32e1e71f5885 6985 }
chessdsbr 2:32e1e71f5885 6986 }
chessdsbr 2:32e1e71f5885 6987 else if(l56==1){
chessdsbr 2:32e1e71f5885 6988 figura_dib[6]=0xB5;
chessdsbr 2:32e1e71f5885 6989 }
chessdsbr 2:32e1e71f5885 6990 else{
chessdsbr 2:32e1e71f5885 6991 figura_dib[6]=0xB4;
chessdsbr 2:32e1e71f5885 6992 }
chessdsbr 2:32e1e71f5885 6993 }
chessdsbr 2:32e1e71f5885 6994 else if(l55==1){
chessdsbr 2:32e1e71f5885 6995 if(l56==1){
chessdsbr 2:32e1e71f5885 6996 figura_dib[6]=0xB3;
chessdsbr 2:32e1e71f5885 6997 }
chessdsbr 2:32e1e71f5885 6998 else{
chessdsbr 2:32e1e71f5885 6999 figura_dib[6]=0xB2;
chessdsbr 2:32e1e71f5885 7000 }
chessdsbr 2:32e1e71f5885 7001 }
chessdsbr 2:32e1e71f5885 7002 else if(l56==1){
chessdsbr 2:32e1e71f5885 7003 figura_dib[6]=0xB1;
chessdsbr 2:32e1e71f5885 7004 }
chessdsbr 2:32e1e71f5885 7005 else{
chessdsbr 2:32e1e71f5885 7006 figura_dib[6]=0xB0;
chessdsbr 2:32e1e71f5885 7007 }
chessdsbr 2:32e1e71f5885 7008 }
chessdsbr 2:32e1e71f5885 7009 else if(l53==1){
chessdsbr 2:32e1e71f5885 7010 if(l54==1){
chessdsbr 2:32e1e71f5885 7011 if(l55==1){
chessdsbr 2:32e1e71f5885 7012 if(l56==1){
chessdsbr 2:32e1e71f5885 7013 figura_dib[6]=0xAF;
chessdsbr 2:32e1e71f5885 7014 }
chessdsbr 2:32e1e71f5885 7015 else{
chessdsbr 2:32e1e71f5885 7016 figura_dib[6]=0xAE;
chessdsbr 2:32e1e71f5885 7017 }
chessdsbr 2:32e1e71f5885 7018 }
chessdsbr 2:32e1e71f5885 7019 else if(l56==1){
chessdsbr 2:32e1e71f5885 7020 figura_dib[6]=0xAD;
chessdsbr 2:32e1e71f5885 7021 }
chessdsbr 2:32e1e71f5885 7022 else{
chessdsbr 2:32e1e71f5885 7023 figura_dib[6]=0xAC;
chessdsbr 2:32e1e71f5885 7024 }
chessdsbr 2:32e1e71f5885 7025 }
chessdsbr 2:32e1e71f5885 7026 else if(l55==1){
chessdsbr 2:32e1e71f5885 7027 if(l56==1){
chessdsbr 2:32e1e71f5885 7028 figura_dib[6]=0xAB;
chessdsbr 2:32e1e71f5885 7029 }
chessdsbr 2:32e1e71f5885 7030 else{
chessdsbr 2:32e1e71f5885 7031 figura_dib[6]=0xAA;
chessdsbr 2:32e1e71f5885 7032 }
chessdsbr 2:32e1e71f5885 7033 }
chessdsbr 2:32e1e71f5885 7034 else if(l56==1){
chessdsbr 2:32e1e71f5885 7035 figura_dib[6]=0xA9;
chessdsbr 2:32e1e71f5885 7036 }
chessdsbr 2:32e1e71f5885 7037 else{
chessdsbr 2:32e1e71f5885 7038 figura_dib[6]=0xA8;
chessdsbr 2:32e1e71f5885 7039 }
chessdsbr 2:32e1e71f5885 7040 }
chessdsbr 2:32e1e71f5885 7041 else if(l54==1){
chessdsbr 2:32e1e71f5885 7042 if(l55==1){
chessdsbr 2:32e1e71f5885 7043 if(l56==1){
chessdsbr 2:32e1e71f5885 7044 figura_dib[6]=0xA7;
chessdsbr 2:32e1e71f5885 7045 }
chessdsbr 2:32e1e71f5885 7046 else{
chessdsbr 2:32e1e71f5885 7047 figura_dib[6]=0xA6;
chessdsbr 2:32e1e71f5885 7048 }
chessdsbr 2:32e1e71f5885 7049 }
chessdsbr 2:32e1e71f5885 7050 else if(l56==1){
chessdsbr 2:32e1e71f5885 7051 figura_dib[6]=0xA5;
chessdsbr 2:32e1e71f5885 7052 }
chessdsbr 2:32e1e71f5885 7053 else{
chessdsbr 2:32e1e71f5885 7054 figura_dib[6]=0xA4;
chessdsbr 2:32e1e71f5885 7055 }
chessdsbr 2:32e1e71f5885 7056 }
chessdsbr 2:32e1e71f5885 7057 else if(l55==1){
chessdsbr 2:32e1e71f5885 7058 if(l56==1){
chessdsbr 2:32e1e71f5885 7059 figura_dib[6]=0xA3;
chessdsbr 2:32e1e71f5885 7060 }
chessdsbr 2:32e1e71f5885 7061 else{
chessdsbr 2:32e1e71f5885 7062 figura_dib[6]=0xA2;
chessdsbr 2:32e1e71f5885 7063 }
chessdsbr 2:32e1e71f5885 7064 }
chessdsbr 2:32e1e71f5885 7065 else if(l56==1){
chessdsbr 2:32e1e71f5885 7066 figura_dib[6]=0xA1;
chessdsbr 2:32e1e71f5885 7067 }
chessdsbr 2:32e1e71f5885 7068 else{
chessdsbr 2:32e1e71f5885 7069 figura_dib[6]=0xA0;
chessdsbr 2:32e1e71f5885 7070 }
chessdsbr 2:32e1e71f5885 7071 }
chessdsbr 2:32e1e71f5885 7072 else if(l52==1){
chessdsbr 2:32e1e71f5885 7073 if(l53==1){
chessdsbr 2:32e1e71f5885 7074 if(l54==1){
chessdsbr 2:32e1e71f5885 7075 if(l55==1){
chessdsbr 2:32e1e71f5885 7076 if(l56==1){
chessdsbr 2:32e1e71f5885 7077 figura_dib[6]=0x9F;
chessdsbr 2:32e1e71f5885 7078 }
chessdsbr 2:32e1e71f5885 7079 else{
chessdsbr 2:32e1e71f5885 7080 figura_dib[6]=0x9E;
chessdsbr 2:32e1e71f5885 7081 }
chessdsbr 2:32e1e71f5885 7082 }
chessdsbr 2:32e1e71f5885 7083 else if(l56==1){
chessdsbr 2:32e1e71f5885 7084 figura_dib[6]=0x9D;
chessdsbr 2:32e1e71f5885 7085 }
chessdsbr 2:32e1e71f5885 7086 else{
chessdsbr 2:32e1e71f5885 7087 figura_dib[6]=0x9C;
chessdsbr 2:32e1e71f5885 7088 }
chessdsbr 2:32e1e71f5885 7089 }
chessdsbr 2:32e1e71f5885 7090 else if(l55==1){
chessdsbr 2:32e1e71f5885 7091 if(l56==1){
chessdsbr 2:32e1e71f5885 7092 figura_dib[6]=0x9B;
chessdsbr 2:32e1e71f5885 7093 }
chessdsbr 2:32e1e71f5885 7094 else{
chessdsbr 2:32e1e71f5885 7095 figura_dib[6]=0x9A;
chessdsbr 2:32e1e71f5885 7096 }
chessdsbr 2:32e1e71f5885 7097 }
chessdsbr 2:32e1e71f5885 7098 else if(l56==1){
chessdsbr 2:32e1e71f5885 7099 figura_dib[6]=0x99;
chessdsbr 2:32e1e71f5885 7100 }
chessdsbr 2:32e1e71f5885 7101 else{
chessdsbr 2:32e1e71f5885 7102 figura_dib[6]=0x98;
chessdsbr 2:32e1e71f5885 7103 }
chessdsbr 2:32e1e71f5885 7104 }
chessdsbr 2:32e1e71f5885 7105 else if(l54==1){
chessdsbr 2:32e1e71f5885 7106 if(l55==1){
chessdsbr 2:32e1e71f5885 7107 if(l56==1){
chessdsbr 2:32e1e71f5885 7108 figura_dib[6]=0x97;
chessdsbr 2:32e1e71f5885 7109 }
chessdsbr 2:32e1e71f5885 7110 else{
chessdsbr 2:32e1e71f5885 7111 figura_dib[6]=0x96;
chessdsbr 2:32e1e71f5885 7112 }
chessdsbr 2:32e1e71f5885 7113 }
chessdsbr 2:32e1e71f5885 7114 else if(l56==1){
chessdsbr 2:32e1e71f5885 7115 figura_dib[6]=0x95;
chessdsbr 2:32e1e71f5885 7116 }
chessdsbr 2:32e1e71f5885 7117 else{
chessdsbr 2:32e1e71f5885 7118 figura_dib[6]=0x94;
chessdsbr 2:32e1e71f5885 7119 }
chessdsbr 2:32e1e71f5885 7120 }
chessdsbr 2:32e1e71f5885 7121 else if(l55==1){
chessdsbr 2:32e1e71f5885 7122 if(l56==1){
chessdsbr 2:32e1e71f5885 7123 figura_dib[6]=0x93;
chessdsbr 2:32e1e71f5885 7124 }
chessdsbr 2:32e1e71f5885 7125 else{
chessdsbr 2:32e1e71f5885 7126 figura_dib[6]=0x92;
chessdsbr 2:32e1e71f5885 7127 }
chessdsbr 2:32e1e71f5885 7128 }
chessdsbr 2:32e1e71f5885 7129 else if(l56==1){
chessdsbr 2:32e1e71f5885 7130 figura_dib[6]=0x91;
chessdsbr 2:32e1e71f5885 7131 }
chessdsbr 2:32e1e71f5885 7132 else{
chessdsbr 2:32e1e71f5885 7133 figura_dib[6]=0x90;
chessdsbr 2:32e1e71f5885 7134 }
chessdsbr 2:32e1e71f5885 7135 }
chessdsbr 2:32e1e71f5885 7136 else if(l53==1){
chessdsbr 2:32e1e71f5885 7137 if(l54==1){
chessdsbr 2:32e1e71f5885 7138 if(l55==1){
chessdsbr 2:32e1e71f5885 7139 if(l56==1){
chessdsbr 2:32e1e71f5885 7140 figura_dib[6]=0x8F;
chessdsbr 2:32e1e71f5885 7141 }
chessdsbr 2:32e1e71f5885 7142 else{
chessdsbr 2:32e1e71f5885 7143 figura_dib[6]=0x8E;
chessdsbr 2:32e1e71f5885 7144 }
chessdsbr 2:32e1e71f5885 7145 }
chessdsbr 2:32e1e71f5885 7146 else if(l56==1){
chessdsbr 2:32e1e71f5885 7147 figura_dib[6]=0x8D;
chessdsbr 2:32e1e71f5885 7148 }
chessdsbr 2:32e1e71f5885 7149 else{
chessdsbr 2:32e1e71f5885 7150 figura_dib[6]=0x8C;
chessdsbr 2:32e1e71f5885 7151 }
chessdsbr 2:32e1e71f5885 7152 }
chessdsbr 2:32e1e71f5885 7153 else if(l55==1){
chessdsbr 2:32e1e71f5885 7154 if(l56==1){
chessdsbr 2:32e1e71f5885 7155 figura_dib[6]=0x8B;
chessdsbr 2:32e1e71f5885 7156 }
chessdsbr 2:32e1e71f5885 7157 else{
chessdsbr 2:32e1e71f5885 7158 figura_dib[6]=0x8A;
chessdsbr 2:32e1e71f5885 7159 }
chessdsbr 2:32e1e71f5885 7160 }
chessdsbr 2:32e1e71f5885 7161 else if(l56==1){
chessdsbr 2:32e1e71f5885 7162 figura_dib[6]=0x89;
chessdsbr 2:32e1e71f5885 7163 }
chessdsbr 2:32e1e71f5885 7164 else{
chessdsbr 2:32e1e71f5885 7165 figura_dib[6]=0x88;
chessdsbr 2:32e1e71f5885 7166 }
chessdsbr 2:32e1e71f5885 7167 }
chessdsbr 2:32e1e71f5885 7168 else if(l54==1){
chessdsbr 2:32e1e71f5885 7169 if(l55==1){
chessdsbr 2:32e1e71f5885 7170 if(l56==1){
chessdsbr 2:32e1e71f5885 7171 figura_dib[6]=0x87;
chessdsbr 2:32e1e71f5885 7172 }
chessdsbr 2:32e1e71f5885 7173 else{
chessdsbr 2:32e1e71f5885 7174 figura_dib[6]=0x86;
chessdsbr 2:32e1e71f5885 7175 }
chessdsbr 2:32e1e71f5885 7176 }
chessdsbr 2:32e1e71f5885 7177 else if(l56==1){
chessdsbr 2:32e1e71f5885 7178 figura_dib[6]=0x85;
chessdsbr 2:32e1e71f5885 7179 }
chessdsbr 2:32e1e71f5885 7180 else{
chessdsbr 2:32e1e71f5885 7181 figura_dib[6]=0x84;
chessdsbr 2:32e1e71f5885 7182 }
chessdsbr 2:32e1e71f5885 7183 }
chessdsbr 2:32e1e71f5885 7184 else if(l55==1){
chessdsbr 2:32e1e71f5885 7185 if(l56==1){
chessdsbr 2:32e1e71f5885 7186 figura_dib[6]=0x83;
chessdsbr 2:32e1e71f5885 7187 }
chessdsbr 2:32e1e71f5885 7188 else{
chessdsbr 2:32e1e71f5885 7189 figura_dib[6]=0x82;
chessdsbr 2:32e1e71f5885 7190 }
chessdsbr 2:32e1e71f5885 7191 }
chessdsbr 2:32e1e71f5885 7192 else if(l56==1){
chessdsbr 2:32e1e71f5885 7193 figura_dib[6]=0x81;
chessdsbr 2:32e1e71f5885 7194 }
chessdsbr 2:32e1e71f5885 7195 else{
chessdsbr 2:32e1e71f5885 7196 figura_dib[6]=0x80;
chessdsbr 2:32e1e71f5885 7197 }
chessdsbr 2:32e1e71f5885 7198 }
chessdsbr 2:32e1e71f5885 7199 else if(l50==1){
chessdsbr 2:32e1e71f5885 7200 if(l51==1){
chessdsbr 2:32e1e71f5885 7201 if(l52==1){
chessdsbr 2:32e1e71f5885 7202 if(l53==1){
chessdsbr 2:32e1e71f5885 7203 if(l54==1){
chessdsbr 2:32e1e71f5885 7204 if(l55==1){
chessdsbr 2:32e1e71f5885 7205 if(l56==1){
chessdsbr 2:32e1e71f5885 7206 figura_dib[6]=0x7F;
chessdsbr 2:32e1e71f5885 7207 }
chessdsbr 2:32e1e71f5885 7208 else{
chessdsbr 2:32e1e71f5885 7209 figura_dib[6]=0x7E;
chessdsbr 2:32e1e71f5885 7210 }
chessdsbr 2:32e1e71f5885 7211 }
chessdsbr 2:32e1e71f5885 7212 else if(l56==1){
chessdsbr 2:32e1e71f5885 7213 figura_dib[6]=0x7D;
chessdsbr 2:32e1e71f5885 7214 }
chessdsbr 2:32e1e71f5885 7215 else{
chessdsbr 2:32e1e71f5885 7216 figura_dib[6]=0x7C;
chessdsbr 2:32e1e71f5885 7217 }
chessdsbr 2:32e1e71f5885 7218 }
chessdsbr 2:32e1e71f5885 7219 else if(l55==1){
chessdsbr 2:32e1e71f5885 7220 if(l56==1){
chessdsbr 2:32e1e71f5885 7221 figura_dib[6]=0x7B;
chessdsbr 2:32e1e71f5885 7222 }
chessdsbr 2:32e1e71f5885 7223 else{
chessdsbr 2:32e1e71f5885 7224 figura_dib[6]=0x7A;
chessdsbr 2:32e1e71f5885 7225 }
chessdsbr 2:32e1e71f5885 7226 }
chessdsbr 2:32e1e71f5885 7227 else if(l56==1){
chessdsbr 2:32e1e71f5885 7228 figura_dib[6]=0x79;
chessdsbr 2:32e1e71f5885 7229 }
chessdsbr 2:32e1e71f5885 7230 else{
chessdsbr 2:32e1e71f5885 7231 figura_dib[6]=0x78;
chessdsbr 2:32e1e71f5885 7232 }
chessdsbr 2:32e1e71f5885 7233 }
chessdsbr 2:32e1e71f5885 7234 else if(l54==1){
chessdsbr 2:32e1e71f5885 7235 if(l55==1){
chessdsbr 2:32e1e71f5885 7236 if(l56==1){
chessdsbr 2:32e1e71f5885 7237 figura_dib[6]=0x77;
chessdsbr 2:32e1e71f5885 7238 }
chessdsbr 2:32e1e71f5885 7239 else{
chessdsbr 2:32e1e71f5885 7240 figura_dib[6]=0x76;
chessdsbr 2:32e1e71f5885 7241 }
chessdsbr 2:32e1e71f5885 7242 }
chessdsbr 2:32e1e71f5885 7243 else if(l56==1){
chessdsbr 2:32e1e71f5885 7244 figura_dib[6]=0x75;
chessdsbr 2:32e1e71f5885 7245 }
chessdsbr 2:32e1e71f5885 7246 else{
chessdsbr 2:32e1e71f5885 7247 figura_dib[6]=0x74;
chessdsbr 2:32e1e71f5885 7248 }
chessdsbr 2:32e1e71f5885 7249 }
chessdsbr 2:32e1e71f5885 7250 else if(l55==1){
chessdsbr 2:32e1e71f5885 7251 if(l56==1){
chessdsbr 2:32e1e71f5885 7252 figura_dib[6]=0x73;
chessdsbr 2:32e1e71f5885 7253 }
chessdsbr 2:32e1e71f5885 7254 else{
chessdsbr 2:32e1e71f5885 7255 figura_dib[6]=0x72;
chessdsbr 2:32e1e71f5885 7256 }
chessdsbr 2:32e1e71f5885 7257 }
chessdsbr 2:32e1e71f5885 7258 else if(l56==1){
chessdsbr 2:32e1e71f5885 7259 figura_dib[6]=0x71;
chessdsbr 2:32e1e71f5885 7260 }
chessdsbr 2:32e1e71f5885 7261 else{
chessdsbr 2:32e1e71f5885 7262 figura_dib[6]=0x70;
chessdsbr 2:32e1e71f5885 7263 }
chessdsbr 2:32e1e71f5885 7264 }
chessdsbr 2:32e1e71f5885 7265 else if(l53==1){
chessdsbr 2:32e1e71f5885 7266 if(l54==1){
chessdsbr 2:32e1e71f5885 7267 if(l55==1){
chessdsbr 2:32e1e71f5885 7268 if(l56==1){
chessdsbr 2:32e1e71f5885 7269 figura_dib[6]=0x6F;
chessdsbr 2:32e1e71f5885 7270 }
chessdsbr 2:32e1e71f5885 7271 else{
chessdsbr 2:32e1e71f5885 7272 figura_dib[6]=0x6E;
chessdsbr 2:32e1e71f5885 7273 }
chessdsbr 2:32e1e71f5885 7274 }
chessdsbr 2:32e1e71f5885 7275 else if(l56==1){
chessdsbr 2:32e1e71f5885 7276 figura_dib[6]=0x6D;
chessdsbr 2:32e1e71f5885 7277 }
chessdsbr 2:32e1e71f5885 7278 else{
chessdsbr 2:32e1e71f5885 7279 figura_dib[6]=0x6C;
chessdsbr 2:32e1e71f5885 7280 }
chessdsbr 2:32e1e71f5885 7281 }
chessdsbr 2:32e1e71f5885 7282 else if(l55==1){
chessdsbr 2:32e1e71f5885 7283 if(l56==1){
chessdsbr 2:32e1e71f5885 7284 figura_dib[6]=0x6B;
chessdsbr 2:32e1e71f5885 7285 }
chessdsbr 2:32e1e71f5885 7286 else{
chessdsbr 2:32e1e71f5885 7287 figura_dib[6]=0x6A;
chessdsbr 2:32e1e71f5885 7288 }
chessdsbr 2:32e1e71f5885 7289 }
chessdsbr 2:32e1e71f5885 7290 else if(l56==1){
chessdsbr 2:32e1e71f5885 7291 figura_dib[6]=0x69;
chessdsbr 2:32e1e71f5885 7292 }
chessdsbr 2:32e1e71f5885 7293 else{
chessdsbr 2:32e1e71f5885 7294 figura_dib[6]=0x68;
chessdsbr 2:32e1e71f5885 7295 }
chessdsbr 2:32e1e71f5885 7296 }
chessdsbr 2:32e1e71f5885 7297 else if(l54==1){
chessdsbr 2:32e1e71f5885 7298 if(l55==1){
chessdsbr 2:32e1e71f5885 7299 if(l56==1){
chessdsbr 2:32e1e71f5885 7300 figura_dib[6]=0x67;
chessdsbr 2:32e1e71f5885 7301 }
chessdsbr 2:32e1e71f5885 7302 else{
chessdsbr 2:32e1e71f5885 7303 figura_dib[6]=0x66;
chessdsbr 2:32e1e71f5885 7304 }
chessdsbr 2:32e1e71f5885 7305 }
chessdsbr 2:32e1e71f5885 7306 else if(l56==1){
chessdsbr 2:32e1e71f5885 7307 figura_dib[6]=0x65;
chessdsbr 2:32e1e71f5885 7308 }
chessdsbr 2:32e1e71f5885 7309 else{
chessdsbr 2:32e1e71f5885 7310 figura_dib[6]=0x64;
chessdsbr 2:32e1e71f5885 7311 }
chessdsbr 2:32e1e71f5885 7312 }
chessdsbr 2:32e1e71f5885 7313 else if(l55==1){
chessdsbr 2:32e1e71f5885 7314 if(l56==1){
chessdsbr 2:32e1e71f5885 7315 figura_dib[6]=0x63;
chessdsbr 2:32e1e71f5885 7316 }
chessdsbr 2:32e1e71f5885 7317 else{
chessdsbr 2:32e1e71f5885 7318 figura_dib[6]=0x62;
chessdsbr 2:32e1e71f5885 7319 }
chessdsbr 2:32e1e71f5885 7320 }
chessdsbr 2:32e1e71f5885 7321 else if(l56==1){
chessdsbr 2:32e1e71f5885 7322 figura_dib[6]=0x61;
chessdsbr 2:32e1e71f5885 7323 }
chessdsbr 2:32e1e71f5885 7324 else{
chessdsbr 2:32e1e71f5885 7325 figura_dib[6]=0x60;
chessdsbr 2:32e1e71f5885 7326 }
chessdsbr 2:32e1e71f5885 7327 }
chessdsbr 2:32e1e71f5885 7328 else if(l52==1){
chessdsbr 2:32e1e71f5885 7329 if(l53==1){
chessdsbr 2:32e1e71f5885 7330 if(l54==1){
chessdsbr 2:32e1e71f5885 7331 if(l55==1){
chessdsbr 2:32e1e71f5885 7332 if(l56==1){
chessdsbr 2:32e1e71f5885 7333 figura_dib[6]=0x5F;
chessdsbr 2:32e1e71f5885 7334 }
chessdsbr 2:32e1e71f5885 7335 else{
chessdsbr 2:32e1e71f5885 7336 figura_dib[6]=0x5E;
chessdsbr 2:32e1e71f5885 7337 }
chessdsbr 2:32e1e71f5885 7338 }
chessdsbr 2:32e1e71f5885 7339 else if(l56==1){
chessdsbr 2:32e1e71f5885 7340 figura_dib[6]=0x5D;
chessdsbr 2:32e1e71f5885 7341 }
chessdsbr 2:32e1e71f5885 7342 else{
chessdsbr 2:32e1e71f5885 7343 figura_dib[6]=0x5C;
chessdsbr 2:32e1e71f5885 7344 }
chessdsbr 2:32e1e71f5885 7345 }
chessdsbr 2:32e1e71f5885 7346 else if(l55==1){
chessdsbr 2:32e1e71f5885 7347 if(l56==1){
chessdsbr 2:32e1e71f5885 7348 figura_dib[6]=0x5B;
chessdsbr 2:32e1e71f5885 7349 }
chessdsbr 2:32e1e71f5885 7350 else{
chessdsbr 2:32e1e71f5885 7351 figura_dib[6]=0x5A;
chessdsbr 2:32e1e71f5885 7352 }
chessdsbr 2:32e1e71f5885 7353 }
chessdsbr 2:32e1e71f5885 7354 else if(l56==1){
chessdsbr 2:32e1e71f5885 7355 figura_dib[6]=0x59;
chessdsbr 2:32e1e71f5885 7356 }
chessdsbr 2:32e1e71f5885 7357 else{
chessdsbr 2:32e1e71f5885 7358 figura_dib[6]=0x58;
chessdsbr 2:32e1e71f5885 7359 }
chessdsbr 2:32e1e71f5885 7360 }
chessdsbr 2:32e1e71f5885 7361 else if(l54==1){
chessdsbr 2:32e1e71f5885 7362 if(l55==1){
chessdsbr 2:32e1e71f5885 7363 if(l56==1){
chessdsbr 2:32e1e71f5885 7364 figura_dib[6]=0x57;
chessdsbr 2:32e1e71f5885 7365 }
chessdsbr 2:32e1e71f5885 7366 else{
chessdsbr 2:32e1e71f5885 7367 figura_dib[6]=0x56;
chessdsbr 2:32e1e71f5885 7368 }
chessdsbr 2:32e1e71f5885 7369 }
chessdsbr 2:32e1e71f5885 7370 else if(l56==1){
chessdsbr 2:32e1e71f5885 7371 figura_dib[6]=0x55;
chessdsbr 2:32e1e71f5885 7372 }
chessdsbr 2:32e1e71f5885 7373 else{
chessdsbr 2:32e1e71f5885 7374 figura_dib[6]=0x54;
chessdsbr 2:32e1e71f5885 7375 }
chessdsbr 2:32e1e71f5885 7376 }
chessdsbr 2:32e1e71f5885 7377 else if(l55==1){
chessdsbr 2:32e1e71f5885 7378 if(l56==1){
chessdsbr 2:32e1e71f5885 7379 figura_dib[6]=0x53;
chessdsbr 2:32e1e71f5885 7380 }
chessdsbr 2:32e1e71f5885 7381 else{
chessdsbr 2:32e1e71f5885 7382 figura_dib[6]=0x52;
chessdsbr 2:32e1e71f5885 7383 }
chessdsbr 2:32e1e71f5885 7384 }
chessdsbr 2:32e1e71f5885 7385 else if(l56==1){
chessdsbr 2:32e1e71f5885 7386 figura_dib[6]=0x51;
chessdsbr 2:32e1e71f5885 7387 }
chessdsbr 2:32e1e71f5885 7388 else{
chessdsbr 2:32e1e71f5885 7389 figura_dib[6]=0x50;
chessdsbr 2:32e1e71f5885 7390 }
chessdsbr 2:32e1e71f5885 7391 }
chessdsbr 2:32e1e71f5885 7392 else if(l53==1){
chessdsbr 2:32e1e71f5885 7393 if(l54==1){
chessdsbr 2:32e1e71f5885 7394 if(l55==1){
chessdsbr 2:32e1e71f5885 7395 if(l56==1){
chessdsbr 2:32e1e71f5885 7396 figura_dib[6]=0x4F;
chessdsbr 2:32e1e71f5885 7397 }
chessdsbr 2:32e1e71f5885 7398 else{
chessdsbr 2:32e1e71f5885 7399 figura_dib[6]=0x4E;
chessdsbr 2:32e1e71f5885 7400 }
chessdsbr 2:32e1e71f5885 7401 }
chessdsbr 2:32e1e71f5885 7402 else if(l56==1){
chessdsbr 2:32e1e71f5885 7403 figura_dib[6]=0x4D;
chessdsbr 2:32e1e71f5885 7404 }
chessdsbr 2:32e1e71f5885 7405 else{
chessdsbr 2:32e1e71f5885 7406 figura_dib[6]=0x4C;
chessdsbr 2:32e1e71f5885 7407 }
chessdsbr 2:32e1e71f5885 7408 }
chessdsbr 2:32e1e71f5885 7409 else if(l55==1){
chessdsbr 2:32e1e71f5885 7410 if(l56==1){
chessdsbr 2:32e1e71f5885 7411 figura_dib[6]=0x4B;
chessdsbr 2:32e1e71f5885 7412 }
chessdsbr 2:32e1e71f5885 7413 else{
chessdsbr 2:32e1e71f5885 7414 figura_dib[6]=0x4A;
chessdsbr 2:32e1e71f5885 7415 }
chessdsbr 2:32e1e71f5885 7416 }
chessdsbr 2:32e1e71f5885 7417 else if(l56==1){
chessdsbr 2:32e1e71f5885 7418 figura_dib[6]=0x49;
chessdsbr 2:32e1e71f5885 7419 }
chessdsbr 2:32e1e71f5885 7420 else{
chessdsbr 2:32e1e71f5885 7421 figura_dib[6]=0x48;
chessdsbr 2:32e1e71f5885 7422 }
chessdsbr 2:32e1e71f5885 7423 }
chessdsbr 2:32e1e71f5885 7424 else if(l54==1){
chessdsbr 2:32e1e71f5885 7425 if(l55==1){
chessdsbr 2:32e1e71f5885 7426 if(l56==1){
chessdsbr 2:32e1e71f5885 7427 figura_dib[6]=0x47;
chessdsbr 2:32e1e71f5885 7428 }
chessdsbr 2:32e1e71f5885 7429 else{
chessdsbr 2:32e1e71f5885 7430 figura_dib[6]=0x46;
chessdsbr 2:32e1e71f5885 7431 }
chessdsbr 2:32e1e71f5885 7432 }
chessdsbr 2:32e1e71f5885 7433 else if(l56==1){
chessdsbr 2:32e1e71f5885 7434 figura_dib[6]=0x45;
chessdsbr 2:32e1e71f5885 7435 }
chessdsbr 2:32e1e71f5885 7436 else{
chessdsbr 2:32e1e71f5885 7437 figura_dib[6]=0x44;
chessdsbr 2:32e1e71f5885 7438 }
chessdsbr 2:32e1e71f5885 7439 }
chessdsbr 2:32e1e71f5885 7440 else if(l55==1){
chessdsbr 2:32e1e71f5885 7441 if(l56==1){
chessdsbr 2:32e1e71f5885 7442 figura_dib[6]=0x43;
chessdsbr 2:32e1e71f5885 7443 }
chessdsbr 2:32e1e71f5885 7444 else{
chessdsbr 2:32e1e71f5885 7445 figura_dib[6]=0x42;
chessdsbr 2:32e1e71f5885 7446 }
chessdsbr 2:32e1e71f5885 7447 }
chessdsbr 2:32e1e71f5885 7448 else if(l56==1){
chessdsbr 2:32e1e71f5885 7449 figura_dib[6]=0x41;
chessdsbr 2:32e1e71f5885 7450 }
chessdsbr 2:32e1e71f5885 7451 else{
chessdsbr 2:32e1e71f5885 7452 figura_dib[6]=0x40;
chessdsbr 2:32e1e71f5885 7453 }
chessdsbr 2:32e1e71f5885 7454 }
chessdsbr 2:32e1e71f5885 7455 else if(l51==1){
chessdsbr 2:32e1e71f5885 7456 if(l52==1){
chessdsbr 2:32e1e71f5885 7457 if(l53==1){
chessdsbr 2:32e1e71f5885 7458 if(l54==1){
chessdsbr 2:32e1e71f5885 7459 if(l55==1){
chessdsbr 2:32e1e71f5885 7460 if(l56==1){
chessdsbr 2:32e1e71f5885 7461 figura_dib[6]=0x3F;
chessdsbr 2:32e1e71f5885 7462 }
chessdsbr 2:32e1e71f5885 7463 else{
chessdsbr 2:32e1e71f5885 7464 figura_dib[6]=0x3E;
chessdsbr 2:32e1e71f5885 7465 }
chessdsbr 2:32e1e71f5885 7466 }
chessdsbr 2:32e1e71f5885 7467 else if(l56==1){
chessdsbr 2:32e1e71f5885 7468 figura_dib[6]=0x3D;
chessdsbr 2:32e1e71f5885 7469 }
chessdsbr 2:32e1e71f5885 7470 else{
chessdsbr 2:32e1e71f5885 7471 figura_dib[6]=0x3C;
chessdsbr 2:32e1e71f5885 7472 }
chessdsbr 2:32e1e71f5885 7473 }
chessdsbr 2:32e1e71f5885 7474 else if(l55==1){
chessdsbr 2:32e1e71f5885 7475 if(l56==1){
chessdsbr 2:32e1e71f5885 7476 figura_dib[6]=0x3B;
chessdsbr 2:32e1e71f5885 7477 }
chessdsbr 2:32e1e71f5885 7478 else{
chessdsbr 2:32e1e71f5885 7479 figura_dib[6]=0x3A;
chessdsbr 2:32e1e71f5885 7480 }
chessdsbr 2:32e1e71f5885 7481 }
chessdsbr 2:32e1e71f5885 7482 else if(l56==1){
chessdsbr 2:32e1e71f5885 7483 figura_dib[6]=0x39;
chessdsbr 2:32e1e71f5885 7484 }
chessdsbr 2:32e1e71f5885 7485 else{
chessdsbr 2:32e1e71f5885 7486 figura_dib[6]=0x38;
chessdsbr 2:32e1e71f5885 7487 }
chessdsbr 2:32e1e71f5885 7488 }
chessdsbr 2:32e1e71f5885 7489 else if(l54==1){
chessdsbr 2:32e1e71f5885 7490 if(l55==1){
chessdsbr 2:32e1e71f5885 7491 if(l56==1){
chessdsbr 2:32e1e71f5885 7492 figura_dib[6]=0x37;
chessdsbr 2:32e1e71f5885 7493 }
chessdsbr 2:32e1e71f5885 7494 else{
chessdsbr 2:32e1e71f5885 7495 figura_dib[6]=0x36;
chessdsbr 2:32e1e71f5885 7496 }
chessdsbr 2:32e1e71f5885 7497 }
chessdsbr 2:32e1e71f5885 7498 else if(l56==1){
chessdsbr 2:32e1e71f5885 7499 figura_dib[6]=0x35;
chessdsbr 2:32e1e71f5885 7500 }
chessdsbr 2:32e1e71f5885 7501 else{
chessdsbr 2:32e1e71f5885 7502 figura_dib[6]=0x34;
chessdsbr 2:32e1e71f5885 7503 }
chessdsbr 2:32e1e71f5885 7504 }
chessdsbr 2:32e1e71f5885 7505 else if(l55==1){
chessdsbr 2:32e1e71f5885 7506 if(l56==1){
chessdsbr 2:32e1e71f5885 7507 figura_dib[6]=0x33;
chessdsbr 2:32e1e71f5885 7508 }
chessdsbr 2:32e1e71f5885 7509 else{
chessdsbr 2:32e1e71f5885 7510 figura_dib[6]=0x32;
chessdsbr 2:32e1e71f5885 7511 }
chessdsbr 2:32e1e71f5885 7512 }
chessdsbr 2:32e1e71f5885 7513 else if(l56==1){
chessdsbr 2:32e1e71f5885 7514 figura_dib[6]=0x31;
chessdsbr 2:32e1e71f5885 7515 }
chessdsbr 2:32e1e71f5885 7516 else{
chessdsbr 2:32e1e71f5885 7517 figura_dib[6]=0x30;
chessdsbr 2:32e1e71f5885 7518 }
chessdsbr 2:32e1e71f5885 7519 }
chessdsbr 2:32e1e71f5885 7520 else if(l53==1){
chessdsbr 2:32e1e71f5885 7521 if(l54==1){
chessdsbr 2:32e1e71f5885 7522 if(l55==1){
chessdsbr 2:32e1e71f5885 7523 if(l56==1){
chessdsbr 2:32e1e71f5885 7524 figura_dib[6]=0x2F;
chessdsbr 2:32e1e71f5885 7525 }
chessdsbr 2:32e1e71f5885 7526 else{
chessdsbr 2:32e1e71f5885 7527 figura_dib[6]=0x2E;
chessdsbr 2:32e1e71f5885 7528 }
chessdsbr 2:32e1e71f5885 7529 }
chessdsbr 2:32e1e71f5885 7530 else if(l56==1){
chessdsbr 2:32e1e71f5885 7531 figura_dib[6]=0x2D;
chessdsbr 2:32e1e71f5885 7532 }
chessdsbr 2:32e1e71f5885 7533 else{
chessdsbr 2:32e1e71f5885 7534 figura_dib[6]=0x2C;
chessdsbr 2:32e1e71f5885 7535 }
chessdsbr 2:32e1e71f5885 7536 }
chessdsbr 2:32e1e71f5885 7537 else if(l55==1){
chessdsbr 2:32e1e71f5885 7538 if(l56==1){
chessdsbr 2:32e1e71f5885 7539 figura_dib[6]=0x2B;
chessdsbr 2:32e1e71f5885 7540 }
chessdsbr 2:32e1e71f5885 7541 else{
chessdsbr 2:32e1e71f5885 7542 figura_dib[6]=0x2A;
chessdsbr 2:32e1e71f5885 7543 }
chessdsbr 2:32e1e71f5885 7544 }
chessdsbr 2:32e1e71f5885 7545 else if(l56==1){
chessdsbr 2:32e1e71f5885 7546 figura_dib[6]=0x29;
chessdsbr 2:32e1e71f5885 7547 }
chessdsbr 2:32e1e71f5885 7548 else{
chessdsbr 2:32e1e71f5885 7549 figura_dib[6]=0x28;
chessdsbr 2:32e1e71f5885 7550 }
chessdsbr 2:32e1e71f5885 7551 }
chessdsbr 2:32e1e71f5885 7552 else if(l54==1){
chessdsbr 2:32e1e71f5885 7553 if(l55==1){
chessdsbr 2:32e1e71f5885 7554 if(l56==1){
chessdsbr 2:32e1e71f5885 7555 figura_dib[6]=0x27;
chessdsbr 2:32e1e71f5885 7556 }
chessdsbr 2:32e1e71f5885 7557 else{
chessdsbr 2:32e1e71f5885 7558 figura_dib[6]=0x26;
chessdsbr 2:32e1e71f5885 7559 }
chessdsbr 2:32e1e71f5885 7560 }
chessdsbr 2:32e1e71f5885 7561 else if(l56==1){
chessdsbr 2:32e1e71f5885 7562 figura_dib[6]=0x25;
chessdsbr 2:32e1e71f5885 7563 }
chessdsbr 2:32e1e71f5885 7564 else{
chessdsbr 2:32e1e71f5885 7565 figura_dib[6]=0x24;
chessdsbr 2:32e1e71f5885 7566 }
chessdsbr 2:32e1e71f5885 7567 }
chessdsbr 2:32e1e71f5885 7568 else if(l55==1){
chessdsbr 2:32e1e71f5885 7569 if(l56==1){
chessdsbr 2:32e1e71f5885 7570 figura_dib[6]=0x23;
chessdsbr 2:32e1e71f5885 7571 }
chessdsbr 2:32e1e71f5885 7572 else{
chessdsbr 2:32e1e71f5885 7573 figura_dib[6]=0x22;
chessdsbr 2:32e1e71f5885 7574 }
chessdsbr 2:32e1e71f5885 7575 }
chessdsbr 2:32e1e71f5885 7576 else if(l56==1){
chessdsbr 2:32e1e71f5885 7577 figura_dib[6]=0x21;
chessdsbr 2:32e1e71f5885 7578 }
chessdsbr 2:32e1e71f5885 7579 else{
chessdsbr 2:32e1e71f5885 7580 figura_dib[6]=0x20;
chessdsbr 2:32e1e71f5885 7581 }
chessdsbr 2:32e1e71f5885 7582 }
chessdsbr 2:32e1e71f5885 7583 else if(l52==1){
chessdsbr 2:32e1e71f5885 7584 if(l53==1){
chessdsbr 2:32e1e71f5885 7585 if(l54==1){
chessdsbr 2:32e1e71f5885 7586 if(l55==1){
chessdsbr 2:32e1e71f5885 7587 if(l56==1){
chessdsbr 2:32e1e71f5885 7588 figura_dib[6]=0x1F;
chessdsbr 2:32e1e71f5885 7589 }
chessdsbr 2:32e1e71f5885 7590 else{
chessdsbr 2:32e1e71f5885 7591 figura_dib[6]=0x1E;
chessdsbr 2:32e1e71f5885 7592 }
chessdsbr 2:32e1e71f5885 7593 }
chessdsbr 2:32e1e71f5885 7594 else if(l56==1){
chessdsbr 2:32e1e71f5885 7595 figura_dib[6]=0x1D;
chessdsbr 2:32e1e71f5885 7596 }
chessdsbr 2:32e1e71f5885 7597 else{
chessdsbr 2:32e1e71f5885 7598 figura_dib[6]=0x1C;
chessdsbr 2:32e1e71f5885 7599 }
chessdsbr 2:32e1e71f5885 7600 }
chessdsbr 2:32e1e71f5885 7601 else if(l55==1){
chessdsbr 2:32e1e71f5885 7602 if(l56==1){
chessdsbr 2:32e1e71f5885 7603 figura_dib[6]=0x1B;
chessdsbr 2:32e1e71f5885 7604 }
chessdsbr 2:32e1e71f5885 7605 else{
chessdsbr 2:32e1e71f5885 7606 figura_dib[6]=0x1A;
chessdsbr 2:32e1e71f5885 7607 }
chessdsbr 2:32e1e71f5885 7608 }
chessdsbr 2:32e1e71f5885 7609 else if(l56==1){
chessdsbr 2:32e1e71f5885 7610 figura_dib[6]=0x19;
chessdsbr 2:32e1e71f5885 7611 }
chessdsbr 2:32e1e71f5885 7612 else{
chessdsbr 2:32e1e71f5885 7613 figura_dib[6]=0x18;
chessdsbr 2:32e1e71f5885 7614 }
chessdsbr 2:32e1e71f5885 7615 }
chessdsbr 2:32e1e71f5885 7616 else if(l54==1){
chessdsbr 2:32e1e71f5885 7617 if(l55==1){
chessdsbr 2:32e1e71f5885 7618 if(l56==1){
chessdsbr 2:32e1e71f5885 7619 figura_dib[6]=0x17;
chessdsbr 2:32e1e71f5885 7620 }
chessdsbr 2:32e1e71f5885 7621 else{
chessdsbr 2:32e1e71f5885 7622 figura_dib[6]=0x16;
chessdsbr 2:32e1e71f5885 7623 }
chessdsbr 2:32e1e71f5885 7624 }
chessdsbr 2:32e1e71f5885 7625 else if(l56==1){
chessdsbr 2:32e1e71f5885 7626 figura_dib[6]=0x15;
chessdsbr 2:32e1e71f5885 7627 }
chessdsbr 2:32e1e71f5885 7628 else{
chessdsbr 2:32e1e71f5885 7629 figura_dib[6]=0x14;
chessdsbr 2:32e1e71f5885 7630 }
chessdsbr 2:32e1e71f5885 7631 }
chessdsbr 2:32e1e71f5885 7632 else if(l55==1){
chessdsbr 2:32e1e71f5885 7633 if(l56==1){
chessdsbr 2:32e1e71f5885 7634 figura_dib[6]=0x13;
chessdsbr 2:32e1e71f5885 7635 }
chessdsbr 2:32e1e71f5885 7636 else{
chessdsbr 2:32e1e71f5885 7637 figura_dib[6]=0x12;
chessdsbr 2:32e1e71f5885 7638 }
chessdsbr 2:32e1e71f5885 7639 }
chessdsbr 2:32e1e71f5885 7640 else if(l56==1){
chessdsbr 2:32e1e71f5885 7641 figura_dib[6]=0x11;
chessdsbr 2:32e1e71f5885 7642 }
chessdsbr 2:32e1e71f5885 7643 else{
chessdsbr 2:32e1e71f5885 7644 figura_dib[6]=0x10;
chessdsbr 2:32e1e71f5885 7645 }
chessdsbr 2:32e1e71f5885 7646 }
chessdsbr 2:32e1e71f5885 7647 else if(l53==1){
chessdsbr 2:32e1e71f5885 7648 if(l54==1){
chessdsbr 2:32e1e71f5885 7649 if(l55==1){
chessdsbr 2:32e1e71f5885 7650 if(l56==1){
chessdsbr 2:32e1e71f5885 7651 figura_dib[6]=0x0F;
chessdsbr 2:32e1e71f5885 7652 }
chessdsbr 2:32e1e71f5885 7653 else{
chessdsbr 2:32e1e71f5885 7654 figura_dib[6]=0x0E;
chessdsbr 2:32e1e71f5885 7655 }
chessdsbr 2:32e1e71f5885 7656 }
chessdsbr 2:32e1e71f5885 7657 else if(l56==1){
chessdsbr 2:32e1e71f5885 7658 figura_dib[6]=0x0D;
chessdsbr 2:32e1e71f5885 7659 }
chessdsbr 2:32e1e71f5885 7660 else{
chessdsbr 2:32e1e71f5885 7661 figura_dib[6]=0x0C;
chessdsbr 2:32e1e71f5885 7662 }
chessdsbr 2:32e1e71f5885 7663 }
chessdsbr 2:32e1e71f5885 7664 else if(l55==1){
chessdsbr 2:32e1e71f5885 7665 if(l56==1){
chessdsbr 2:32e1e71f5885 7666 figura_dib[6]=0x0B;
chessdsbr 2:32e1e71f5885 7667 }
chessdsbr 2:32e1e71f5885 7668 else{
chessdsbr 2:32e1e71f5885 7669 figura_dib[6]=0x0A;
chessdsbr 2:32e1e71f5885 7670 }
chessdsbr 2:32e1e71f5885 7671 }
chessdsbr 2:32e1e71f5885 7672 else if(l56==1){
chessdsbr 2:32e1e71f5885 7673 figura_dib[6]=0x09;
chessdsbr 2:32e1e71f5885 7674 }
chessdsbr 2:32e1e71f5885 7675 else{
chessdsbr 2:32e1e71f5885 7676 figura_dib[6]=0x08;
chessdsbr 2:32e1e71f5885 7677 }
chessdsbr 2:32e1e71f5885 7678 }
chessdsbr 2:32e1e71f5885 7679 else if(l54==1){
chessdsbr 2:32e1e71f5885 7680 if(l55==1){
chessdsbr 2:32e1e71f5885 7681 if(l56==1){
chessdsbr 2:32e1e71f5885 7682 figura_dib[6]=0x07;
chessdsbr 2:32e1e71f5885 7683 }
chessdsbr 2:32e1e71f5885 7684 else{
chessdsbr 2:32e1e71f5885 7685 figura_dib[6]=0x06;
chessdsbr 2:32e1e71f5885 7686 }
chessdsbr 2:32e1e71f5885 7687 }
chessdsbr 2:32e1e71f5885 7688 else if(l56==1){
chessdsbr 2:32e1e71f5885 7689 figura_dib[6]=0x05;
chessdsbr 2:32e1e71f5885 7690 }
chessdsbr 2:32e1e71f5885 7691 else{
chessdsbr 2:32e1e71f5885 7692 figura_dib[6]=0x04;
chessdsbr 2:32e1e71f5885 7693 }
chessdsbr 2:32e1e71f5885 7694 }
chessdsbr 2:32e1e71f5885 7695 else if(l55==1){
chessdsbr 2:32e1e71f5885 7696 if(l56==1){
chessdsbr 2:32e1e71f5885 7697 figura_dib[6]=0x03;
chessdsbr 2:32e1e71f5885 7698 }
chessdsbr 2:32e1e71f5885 7699 else{
chessdsbr 2:32e1e71f5885 7700 figura_dib[6]=0x02;
chessdsbr 2:32e1e71f5885 7701 }
chessdsbr 2:32e1e71f5885 7702 }
chessdsbr 2:32e1e71f5885 7703 else if(l56==1){
chessdsbr 2:32e1e71f5885 7704 figura_dib[6]=0x01;
chessdsbr 2:32e1e71f5885 7705 }
chessdsbr 2:32e1e71f5885 7706 else{
chessdsbr 2:32e1e71f5885 7707 figura_dib[6]=0x00;
chessdsbr 2:32e1e71f5885 7708 }
chessdsbr 2:32e1e71f5885 7709 /////
chessdsbr 2:32e1e71f5885 7710 ////
chessdsbr 2:32e1e71f5885 7711 ///
chessdsbr 2:32e1e71f5885 7712 //
chessdsbr 2:32e1e71f5885 7713 //fila 8
chessdsbr 2:32e1e71f5885 7714 //
chessdsbr 2:32e1e71f5885 7715 ///
chessdsbr 2:32e1e71f5885 7716 ////
chessdsbr 2:32e1e71f5885 7717 /////
chessdsbr 2:32e1e71f5885 7718 if(l57==1){
chessdsbr 2:32e1e71f5885 7719 if(l58==1){
chessdsbr 2:32e1e71f5885 7720 if(l59==1){
chessdsbr 2:32e1e71f5885 7721 if(l60==1){
chessdsbr 2:32e1e71f5885 7722 if(l61==1){
chessdsbr 2:32e1e71f5885 7723 if(l62==1){
chessdsbr 2:32e1e71f5885 7724 if(l63==1){
chessdsbr 2:32e1e71f5885 7725 if(l64==1){
chessdsbr 2:32e1e71f5885 7726 figura_dib[7]=0xFF;
chessdsbr 2:32e1e71f5885 7727 }
chessdsbr 2:32e1e71f5885 7728 else{
chessdsbr 2:32e1e71f5885 7729 figura_dib[7]=0xFE;
chessdsbr 2:32e1e71f5885 7730 }
chessdsbr 2:32e1e71f5885 7731 }
chessdsbr 2:32e1e71f5885 7732 else if(l64==1){
chessdsbr 2:32e1e71f5885 7733 figura_dib[7]=0xFD;
chessdsbr 2:32e1e71f5885 7734 }
chessdsbr 2:32e1e71f5885 7735 else{
chessdsbr 2:32e1e71f5885 7736 figura_dib[7]=0xFC;
chessdsbr 2:32e1e71f5885 7737 }
chessdsbr 2:32e1e71f5885 7738 }
chessdsbr 2:32e1e71f5885 7739 else if(l63==1){
chessdsbr 2:32e1e71f5885 7740 if(l64==1){
chessdsbr 2:32e1e71f5885 7741 figura_dib[7]=0xFB;
chessdsbr 2:32e1e71f5885 7742 }
chessdsbr 2:32e1e71f5885 7743 else{
chessdsbr 2:32e1e71f5885 7744 figura_dib[7]=0xFA;
chessdsbr 2:32e1e71f5885 7745 }
chessdsbr 2:32e1e71f5885 7746 }
chessdsbr 2:32e1e71f5885 7747 else if(l64==1){
chessdsbr 2:32e1e71f5885 7748 figura_dib[7]=0xF9;
chessdsbr 2:32e1e71f5885 7749 }
chessdsbr 2:32e1e71f5885 7750 else{
chessdsbr 2:32e1e71f5885 7751 figura_dib[7]=0xF8;
chessdsbr 2:32e1e71f5885 7752 }
chessdsbr 2:32e1e71f5885 7753 }
chessdsbr 2:32e1e71f5885 7754 else if(l62==1){
chessdsbr 2:32e1e71f5885 7755 if(l63==1){
chessdsbr 2:32e1e71f5885 7756 if(l64==1){
chessdsbr 2:32e1e71f5885 7757 figura_dib[7]=0xF7;
chessdsbr 2:32e1e71f5885 7758 }
chessdsbr 2:32e1e71f5885 7759 else{
chessdsbr 2:32e1e71f5885 7760 figura_dib[7]=0xF6;
chessdsbr 2:32e1e71f5885 7761 }
chessdsbr 2:32e1e71f5885 7762 }
chessdsbr 2:32e1e71f5885 7763 else if(l64==1){
chessdsbr 2:32e1e71f5885 7764 figura_dib[7]=0xF5;
chessdsbr 2:32e1e71f5885 7765 }
chessdsbr 2:32e1e71f5885 7766 else{
chessdsbr 2:32e1e71f5885 7767 figura_dib[7]=0xF4;
chessdsbr 2:32e1e71f5885 7768 }
chessdsbr 2:32e1e71f5885 7769 }
chessdsbr 2:32e1e71f5885 7770 else if(l63==1){
chessdsbr 2:32e1e71f5885 7771 if(l64==1){
chessdsbr 2:32e1e71f5885 7772 figura_dib[7]=0xF3;
chessdsbr 2:32e1e71f5885 7773 }
chessdsbr 2:32e1e71f5885 7774 else{
chessdsbr 2:32e1e71f5885 7775 figura_dib[7]=0xF2;
chessdsbr 2:32e1e71f5885 7776 }
chessdsbr 2:32e1e71f5885 7777 }
chessdsbr 2:32e1e71f5885 7778 else if(l64==1){
chessdsbr 2:32e1e71f5885 7779 figura_dib[7]=0xF1;
chessdsbr 2:32e1e71f5885 7780 }
chessdsbr 2:32e1e71f5885 7781 else{
chessdsbr 2:32e1e71f5885 7782 figura_dib[7]=0xF0;
chessdsbr 2:32e1e71f5885 7783 }
chessdsbr 2:32e1e71f5885 7784 }
chessdsbr 2:32e1e71f5885 7785 else if(l61==1){
chessdsbr 2:32e1e71f5885 7786 if(l62==1){
chessdsbr 2:32e1e71f5885 7787 if(l63==1){
chessdsbr 2:32e1e71f5885 7788 if(l64==1){
chessdsbr 2:32e1e71f5885 7789 figura_dib[7]=0xEF;
chessdsbr 2:32e1e71f5885 7790 }
chessdsbr 2:32e1e71f5885 7791 else{
chessdsbr 2:32e1e71f5885 7792 figura_dib[7]=0xEE;
chessdsbr 2:32e1e71f5885 7793 }
chessdsbr 2:32e1e71f5885 7794 }
chessdsbr 2:32e1e71f5885 7795 else if(l64==1){
chessdsbr 2:32e1e71f5885 7796 figura_dib[7]=0xED;
chessdsbr 2:32e1e71f5885 7797 }
chessdsbr 2:32e1e71f5885 7798 else{
chessdsbr 2:32e1e71f5885 7799 figura_dib[7]=0xEC;
chessdsbr 2:32e1e71f5885 7800 }
chessdsbr 2:32e1e71f5885 7801 }
chessdsbr 2:32e1e71f5885 7802 else if(l63==1){
chessdsbr 2:32e1e71f5885 7803 if(l64==1){
chessdsbr 2:32e1e71f5885 7804 figura_dib[7]=0xEB;
chessdsbr 2:32e1e71f5885 7805 }
chessdsbr 2:32e1e71f5885 7806 else{
chessdsbr 2:32e1e71f5885 7807 figura_dib[7]=0xEA;
chessdsbr 2:32e1e71f5885 7808 }
chessdsbr 2:32e1e71f5885 7809 }
chessdsbr 2:32e1e71f5885 7810 else if(l64==1){
chessdsbr 2:32e1e71f5885 7811 figura_dib[7]=0xE9;
chessdsbr 2:32e1e71f5885 7812 }
chessdsbr 2:32e1e71f5885 7813 else{
chessdsbr 2:32e1e71f5885 7814 figura_dib[7]=0xE8;
chessdsbr 2:32e1e71f5885 7815 }
chessdsbr 2:32e1e71f5885 7816 }
chessdsbr 2:32e1e71f5885 7817 else if(l62==1){
chessdsbr 2:32e1e71f5885 7818 if(l63==1){
chessdsbr 2:32e1e71f5885 7819 if(l64==1){
chessdsbr 2:32e1e71f5885 7820 figura_dib[7]=0xE7;
chessdsbr 2:32e1e71f5885 7821 }
chessdsbr 2:32e1e71f5885 7822 else{
chessdsbr 2:32e1e71f5885 7823 figura_dib[7]=0xE6;
chessdsbr 2:32e1e71f5885 7824 }
chessdsbr 2:32e1e71f5885 7825 }
chessdsbr 2:32e1e71f5885 7826 else if(l64==1){
chessdsbr 2:32e1e71f5885 7827 figura_dib[7]=0xE5;
chessdsbr 2:32e1e71f5885 7828 }
chessdsbr 2:32e1e71f5885 7829 else{
chessdsbr 2:32e1e71f5885 7830 figura_dib[7]=0xE4;
chessdsbr 2:32e1e71f5885 7831 }
chessdsbr 2:32e1e71f5885 7832 }
chessdsbr 2:32e1e71f5885 7833 else if(l63==1){
chessdsbr 2:32e1e71f5885 7834 if(l64==1){
chessdsbr 2:32e1e71f5885 7835 figura_dib[7]=0xE3;
chessdsbr 2:32e1e71f5885 7836 }
chessdsbr 2:32e1e71f5885 7837 else{
chessdsbr 2:32e1e71f5885 7838 figura_dib[7]=0xE2;
chessdsbr 2:32e1e71f5885 7839 }
chessdsbr 2:32e1e71f5885 7840 }
chessdsbr 2:32e1e71f5885 7841 else if(l64==1){
chessdsbr 2:32e1e71f5885 7842 figura_dib[7]=0xE1;
chessdsbr 2:32e1e71f5885 7843 }
chessdsbr 2:32e1e71f5885 7844 else{
chessdsbr 2:32e1e71f5885 7845 figura_dib[7]=0xE0;
chessdsbr 2:32e1e71f5885 7846 }
chessdsbr 2:32e1e71f5885 7847 }
chessdsbr 2:32e1e71f5885 7848 else if(l60==1){
chessdsbr 2:32e1e71f5885 7849 if(l61==1){
chessdsbr 2:32e1e71f5885 7850 if(l62==1){
chessdsbr 2:32e1e71f5885 7851 if(l63==1){
chessdsbr 2:32e1e71f5885 7852 if(l64==1){
chessdsbr 2:32e1e71f5885 7853 figura_dib[7]=0xDF;
chessdsbr 2:32e1e71f5885 7854 }
chessdsbr 2:32e1e71f5885 7855 else{
chessdsbr 2:32e1e71f5885 7856 figura_dib[7]=0xDE;
chessdsbr 2:32e1e71f5885 7857 }
chessdsbr 2:32e1e71f5885 7858 }
chessdsbr 2:32e1e71f5885 7859 else if(l64==1){
chessdsbr 2:32e1e71f5885 7860 figura_dib[7]=0xDD;
chessdsbr 2:32e1e71f5885 7861 }
chessdsbr 2:32e1e71f5885 7862 else{
chessdsbr 2:32e1e71f5885 7863 figura_dib[7]=0xDC;
chessdsbr 2:32e1e71f5885 7864 }
chessdsbr 2:32e1e71f5885 7865 }
chessdsbr 2:32e1e71f5885 7866 else if(l63==1){
chessdsbr 2:32e1e71f5885 7867 if(l64==1){
chessdsbr 2:32e1e71f5885 7868 figura_dib[7]=0xDB;
chessdsbr 2:32e1e71f5885 7869 }
chessdsbr 2:32e1e71f5885 7870 else{
chessdsbr 2:32e1e71f5885 7871 figura_dib[7]=0xDA;
chessdsbr 2:32e1e71f5885 7872 }
chessdsbr 2:32e1e71f5885 7873 }
chessdsbr 2:32e1e71f5885 7874 else if(l64==1){
chessdsbr 2:32e1e71f5885 7875 figura_dib[7]=0xD9;
chessdsbr 2:32e1e71f5885 7876 }
chessdsbr 2:32e1e71f5885 7877 else{
chessdsbr 2:32e1e71f5885 7878 figura_dib[7]=0xD8;
chessdsbr 2:32e1e71f5885 7879 }
chessdsbr 2:32e1e71f5885 7880 }
chessdsbr 2:32e1e71f5885 7881 else if(l62==1){
chessdsbr 2:32e1e71f5885 7882 if(l63==1){
chessdsbr 2:32e1e71f5885 7883 if(l64==1){
chessdsbr 2:32e1e71f5885 7884 figura_dib[7]=0xD7;
chessdsbr 2:32e1e71f5885 7885 }
chessdsbr 2:32e1e71f5885 7886 else{
chessdsbr 2:32e1e71f5885 7887 figura_dib[7]=0xD6;
chessdsbr 2:32e1e71f5885 7888 }
chessdsbr 2:32e1e71f5885 7889 }
chessdsbr 2:32e1e71f5885 7890 else if(l64==1){
chessdsbr 2:32e1e71f5885 7891 figura_dib[7]=0xD5;
chessdsbr 2:32e1e71f5885 7892 }
chessdsbr 2:32e1e71f5885 7893 else{
chessdsbr 2:32e1e71f5885 7894 figura_dib[7]=0xD4;
chessdsbr 2:32e1e71f5885 7895 }
chessdsbr 2:32e1e71f5885 7896 }
chessdsbr 2:32e1e71f5885 7897 else if(l63==1){
chessdsbr 2:32e1e71f5885 7898 if(l64==1){
chessdsbr 2:32e1e71f5885 7899 figura_dib[7]=0xD3;
chessdsbr 2:32e1e71f5885 7900 }
chessdsbr 2:32e1e71f5885 7901 else{
chessdsbr 2:32e1e71f5885 7902 figura_dib[7]=0xD2;
chessdsbr 2:32e1e71f5885 7903 }
chessdsbr 2:32e1e71f5885 7904 }
chessdsbr 2:32e1e71f5885 7905 else if(l64==1){
chessdsbr 2:32e1e71f5885 7906 figura_dib[7]=0xD1;
chessdsbr 2:32e1e71f5885 7907 }
chessdsbr 2:32e1e71f5885 7908 else{
chessdsbr 2:32e1e71f5885 7909 figura_dib[7]=0xD0;
chessdsbr 2:32e1e71f5885 7910 }
chessdsbr 2:32e1e71f5885 7911 }
chessdsbr 2:32e1e71f5885 7912 else if(l61==1){
chessdsbr 2:32e1e71f5885 7913 if(l62==1){
chessdsbr 2:32e1e71f5885 7914 if(l63==1){
chessdsbr 2:32e1e71f5885 7915 if(l64==1){
chessdsbr 2:32e1e71f5885 7916 figura_dib[7]=0xCF;
chessdsbr 2:32e1e71f5885 7917 }
chessdsbr 2:32e1e71f5885 7918 else{
chessdsbr 2:32e1e71f5885 7919 figura_dib[7]=0xCE;
chessdsbr 2:32e1e71f5885 7920 }
chessdsbr 2:32e1e71f5885 7921 }
chessdsbr 2:32e1e71f5885 7922 else if(l64==1){
chessdsbr 2:32e1e71f5885 7923 figura_dib[7]=0xCD;
chessdsbr 2:32e1e71f5885 7924 }
chessdsbr 2:32e1e71f5885 7925 else{
chessdsbr 2:32e1e71f5885 7926 figura_dib[7]=0xCC;
chessdsbr 2:32e1e71f5885 7927 }
chessdsbr 2:32e1e71f5885 7928 }
chessdsbr 2:32e1e71f5885 7929 else if(l63==1){
chessdsbr 2:32e1e71f5885 7930 if(l64==1){
chessdsbr 2:32e1e71f5885 7931 figura_dib[7]=0xCB;
chessdsbr 2:32e1e71f5885 7932 }
chessdsbr 2:32e1e71f5885 7933 else{
chessdsbr 2:32e1e71f5885 7934 figura_dib[7]=0xCA;
chessdsbr 2:32e1e71f5885 7935 }
chessdsbr 2:32e1e71f5885 7936 }
chessdsbr 2:32e1e71f5885 7937 else if(l64==1){
chessdsbr 2:32e1e71f5885 7938 figura_dib[7]=0xC9;
chessdsbr 2:32e1e71f5885 7939 }
chessdsbr 2:32e1e71f5885 7940 else{
chessdsbr 2:32e1e71f5885 7941 figura_dib[7]=0xC8;
chessdsbr 2:32e1e71f5885 7942 }
chessdsbr 2:32e1e71f5885 7943 }
chessdsbr 2:32e1e71f5885 7944 else if(l62==1){
chessdsbr 2:32e1e71f5885 7945 if(l63==1){
chessdsbr 2:32e1e71f5885 7946 if(l64==1){
chessdsbr 2:32e1e71f5885 7947 figura_dib[7]=0xC7;
chessdsbr 2:32e1e71f5885 7948 }
chessdsbr 2:32e1e71f5885 7949 else{
chessdsbr 2:32e1e71f5885 7950 figura_dib[7]=0xC6;
chessdsbr 2:32e1e71f5885 7951 }
chessdsbr 2:32e1e71f5885 7952 }
chessdsbr 2:32e1e71f5885 7953 else if(l64==1){
chessdsbr 2:32e1e71f5885 7954 figura_dib[7]=0xC5;
chessdsbr 2:32e1e71f5885 7955 }
chessdsbr 2:32e1e71f5885 7956 else{
chessdsbr 2:32e1e71f5885 7957 figura_dib[7]=0xC4;
chessdsbr 2:32e1e71f5885 7958 }
chessdsbr 2:32e1e71f5885 7959 }
chessdsbr 2:32e1e71f5885 7960 else if(l63==1){
chessdsbr 2:32e1e71f5885 7961 if(l64==1){
chessdsbr 2:32e1e71f5885 7962 figura_dib[7]=0xC3;
chessdsbr 2:32e1e71f5885 7963 }
chessdsbr 2:32e1e71f5885 7964 else{
chessdsbr 2:32e1e71f5885 7965 figura_dib[7]=0xC2;
chessdsbr 2:32e1e71f5885 7966 }
chessdsbr 2:32e1e71f5885 7967 }
chessdsbr 2:32e1e71f5885 7968 else if(l64==1){
chessdsbr 2:32e1e71f5885 7969 figura_dib[7]=0xC1;
chessdsbr 2:32e1e71f5885 7970 }
chessdsbr 2:32e1e71f5885 7971 else{
chessdsbr 2:32e1e71f5885 7972 figura_dib[7]=0xC0;
chessdsbr 2:32e1e71f5885 7973 }
chessdsbr 2:32e1e71f5885 7974 }
chessdsbr 2:32e1e71f5885 7975 else if(l59==1){
chessdsbr 2:32e1e71f5885 7976 if(l60==1){
chessdsbr 2:32e1e71f5885 7977 if(l61==1){
chessdsbr 2:32e1e71f5885 7978 if(l62==1){
chessdsbr 2:32e1e71f5885 7979 if(l63==1){
chessdsbr 2:32e1e71f5885 7980 if(l64==1){
chessdsbr 2:32e1e71f5885 7981 figura_dib[7]=0xBF;
chessdsbr 2:32e1e71f5885 7982 }
chessdsbr 2:32e1e71f5885 7983 else{
chessdsbr 2:32e1e71f5885 7984 figura_dib[7]=0xBE;
chessdsbr 2:32e1e71f5885 7985 }
chessdsbr 2:32e1e71f5885 7986 }
chessdsbr 2:32e1e71f5885 7987 else if(l64==1){
chessdsbr 2:32e1e71f5885 7988 figura_dib[7]=0xBD;
chessdsbr 2:32e1e71f5885 7989 }
chessdsbr 2:32e1e71f5885 7990 else{
chessdsbr 2:32e1e71f5885 7991 figura_dib[7]=0xBC;
chessdsbr 2:32e1e71f5885 7992 }
chessdsbr 2:32e1e71f5885 7993 }
chessdsbr 2:32e1e71f5885 7994 else if(l63==1){
chessdsbr 2:32e1e71f5885 7995 if(l64==1){
chessdsbr 2:32e1e71f5885 7996 figura_dib[7]=0xBB;
chessdsbr 2:32e1e71f5885 7997 }
chessdsbr 2:32e1e71f5885 7998 else{
chessdsbr 2:32e1e71f5885 7999 figura_dib[7]=0xBA;
chessdsbr 2:32e1e71f5885 8000 }
chessdsbr 2:32e1e71f5885 8001 }
chessdsbr 2:32e1e71f5885 8002 else if(l64==1){
chessdsbr 2:32e1e71f5885 8003 figura_dib[7]=0xB9;
chessdsbr 2:32e1e71f5885 8004 }
chessdsbr 2:32e1e71f5885 8005 else{
chessdsbr 2:32e1e71f5885 8006 figura_dib[7]=0xB8;
chessdsbr 2:32e1e71f5885 8007 }
chessdsbr 2:32e1e71f5885 8008 }
chessdsbr 2:32e1e71f5885 8009 else if(l62==1){
chessdsbr 2:32e1e71f5885 8010 if(l63==1){
chessdsbr 2:32e1e71f5885 8011 if(l64==1){
chessdsbr 2:32e1e71f5885 8012 figura_dib[7]=0xB7;
chessdsbr 2:32e1e71f5885 8013 }
chessdsbr 2:32e1e71f5885 8014 else{
chessdsbr 2:32e1e71f5885 8015 figura_dib[7]=0xB6;
chessdsbr 2:32e1e71f5885 8016 }
chessdsbr 2:32e1e71f5885 8017 }
chessdsbr 2:32e1e71f5885 8018 else if(l64==1){
chessdsbr 2:32e1e71f5885 8019 figura_dib[7]=0xB5;
chessdsbr 2:32e1e71f5885 8020 }
chessdsbr 2:32e1e71f5885 8021 else{
chessdsbr 2:32e1e71f5885 8022 figura_dib[7]=0xB4;
chessdsbr 2:32e1e71f5885 8023 }
chessdsbr 2:32e1e71f5885 8024 }
chessdsbr 2:32e1e71f5885 8025 else if(l63==1){
chessdsbr 2:32e1e71f5885 8026 if(l64==1){
chessdsbr 2:32e1e71f5885 8027 figura_dib[7]=0xB3;
chessdsbr 2:32e1e71f5885 8028 }
chessdsbr 2:32e1e71f5885 8029 else{
chessdsbr 2:32e1e71f5885 8030 figura_dib[7]=0xB2;
chessdsbr 2:32e1e71f5885 8031 }
chessdsbr 2:32e1e71f5885 8032 }
chessdsbr 2:32e1e71f5885 8033 else if(l64==1){
chessdsbr 2:32e1e71f5885 8034 figura_dib[7]=0xB1;
chessdsbr 2:32e1e71f5885 8035 }
chessdsbr 2:32e1e71f5885 8036 else{
chessdsbr 2:32e1e71f5885 8037 figura_dib[7]=0xB0;
chessdsbr 2:32e1e71f5885 8038 }
chessdsbr 2:32e1e71f5885 8039 }
chessdsbr 2:32e1e71f5885 8040 else if(l61==1){
chessdsbr 2:32e1e71f5885 8041 if(l62==1){
chessdsbr 2:32e1e71f5885 8042 if(l63==1){
chessdsbr 2:32e1e71f5885 8043 if(l64==1){
chessdsbr 2:32e1e71f5885 8044 figura_dib[7]=0xAF;
chessdsbr 2:32e1e71f5885 8045 }
chessdsbr 2:32e1e71f5885 8046 else{
chessdsbr 2:32e1e71f5885 8047 figura_dib[7]=0xAE;
chessdsbr 2:32e1e71f5885 8048 }
chessdsbr 2:32e1e71f5885 8049 }
chessdsbr 2:32e1e71f5885 8050 else if(l64==1){
chessdsbr 2:32e1e71f5885 8051 figura_dib[7]=0xAD;
chessdsbr 2:32e1e71f5885 8052 }
chessdsbr 2:32e1e71f5885 8053 else{
chessdsbr 2:32e1e71f5885 8054 figura_dib[7]=0xAC;
chessdsbr 2:32e1e71f5885 8055 }
chessdsbr 2:32e1e71f5885 8056 }
chessdsbr 2:32e1e71f5885 8057 else if(l63==1){
chessdsbr 2:32e1e71f5885 8058 if(l64==1){
chessdsbr 2:32e1e71f5885 8059 figura_dib[7]=0xAB;
chessdsbr 2:32e1e71f5885 8060 }
chessdsbr 2:32e1e71f5885 8061 else{
chessdsbr 2:32e1e71f5885 8062 figura_dib[7]=0xAA;
chessdsbr 2:32e1e71f5885 8063 }
chessdsbr 2:32e1e71f5885 8064 }
chessdsbr 2:32e1e71f5885 8065 else if(l64==1){
chessdsbr 2:32e1e71f5885 8066 figura_dib[7]=0xA9;
chessdsbr 2:32e1e71f5885 8067 }
chessdsbr 2:32e1e71f5885 8068 else{
chessdsbr 2:32e1e71f5885 8069 figura_dib[7]=0xA8;
chessdsbr 2:32e1e71f5885 8070 }
chessdsbr 2:32e1e71f5885 8071 }
chessdsbr 2:32e1e71f5885 8072 else if(l62==1){
chessdsbr 2:32e1e71f5885 8073 if(l63==1){
chessdsbr 2:32e1e71f5885 8074 if(l64==1){
chessdsbr 2:32e1e71f5885 8075 figura_dib[7]=0xA7;
chessdsbr 2:32e1e71f5885 8076 }
chessdsbr 2:32e1e71f5885 8077 else{
chessdsbr 2:32e1e71f5885 8078 figura_dib[7]=0xA6;
chessdsbr 2:32e1e71f5885 8079 }
chessdsbr 2:32e1e71f5885 8080 }
chessdsbr 2:32e1e71f5885 8081 else if(l64==1){
chessdsbr 2:32e1e71f5885 8082 figura_dib[7]=0xA5;
chessdsbr 2:32e1e71f5885 8083 }
chessdsbr 2:32e1e71f5885 8084 else{
chessdsbr 2:32e1e71f5885 8085 figura_dib[7]=0xA4;
chessdsbr 2:32e1e71f5885 8086 }
chessdsbr 2:32e1e71f5885 8087 }
chessdsbr 2:32e1e71f5885 8088 else if(l63==1){
chessdsbr 2:32e1e71f5885 8089 if(l64==1){
chessdsbr 2:32e1e71f5885 8090 figura_dib[7]=0xA3;
chessdsbr 2:32e1e71f5885 8091 }
chessdsbr 2:32e1e71f5885 8092 else{
chessdsbr 2:32e1e71f5885 8093 figura_dib[7]=0xA2;
chessdsbr 2:32e1e71f5885 8094 }
chessdsbr 2:32e1e71f5885 8095 }
chessdsbr 2:32e1e71f5885 8096 else if(l64==1){
chessdsbr 2:32e1e71f5885 8097 figura_dib[7]=0xA1;
chessdsbr 2:32e1e71f5885 8098 }
chessdsbr 2:32e1e71f5885 8099 else{
chessdsbr 2:32e1e71f5885 8100 figura_dib[7]=0xA0;
chessdsbr 2:32e1e71f5885 8101 }
chessdsbr 2:32e1e71f5885 8102 }
chessdsbr 2:32e1e71f5885 8103 else if(l60==1){
chessdsbr 2:32e1e71f5885 8104 if(l61==1){
chessdsbr 2:32e1e71f5885 8105 if(l62==1){
chessdsbr 2:32e1e71f5885 8106 if(l63==1){
chessdsbr 2:32e1e71f5885 8107 if(l64==1){
chessdsbr 2:32e1e71f5885 8108 figura_dib[7]=0x9F;
chessdsbr 2:32e1e71f5885 8109 }
chessdsbr 2:32e1e71f5885 8110 else{
chessdsbr 2:32e1e71f5885 8111 figura_dib[7]=0x9E;
chessdsbr 2:32e1e71f5885 8112 }
chessdsbr 2:32e1e71f5885 8113 }
chessdsbr 2:32e1e71f5885 8114 else if(l64==1){
chessdsbr 2:32e1e71f5885 8115 figura_dib[7]=0x9D;
chessdsbr 2:32e1e71f5885 8116 }
chessdsbr 2:32e1e71f5885 8117 else{
chessdsbr 2:32e1e71f5885 8118 figura_dib[7]=0x9C;
chessdsbr 2:32e1e71f5885 8119 }
chessdsbr 2:32e1e71f5885 8120 }
chessdsbr 2:32e1e71f5885 8121 else if(l63==1){
chessdsbr 2:32e1e71f5885 8122 if(l64==1){
chessdsbr 2:32e1e71f5885 8123 figura_dib[7]=0x9B;
chessdsbr 2:32e1e71f5885 8124 }
chessdsbr 2:32e1e71f5885 8125 else{
chessdsbr 2:32e1e71f5885 8126 figura_dib[7]=0x9A;
chessdsbr 2:32e1e71f5885 8127 }
chessdsbr 2:32e1e71f5885 8128 }
chessdsbr 2:32e1e71f5885 8129 else if(l64==1){
chessdsbr 2:32e1e71f5885 8130 figura_dib[7]=0x99;
chessdsbr 2:32e1e71f5885 8131 }
chessdsbr 2:32e1e71f5885 8132 else{
chessdsbr 2:32e1e71f5885 8133 figura_dib[7]=0x98;
chessdsbr 2:32e1e71f5885 8134 }
chessdsbr 2:32e1e71f5885 8135 }
chessdsbr 2:32e1e71f5885 8136 else if(l62==1){
chessdsbr 2:32e1e71f5885 8137 if(l63==1){
chessdsbr 2:32e1e71f5885 8138 if(l64==1){
chessdsbr 2:32e1e71f5885 8139 figura_dib[7]=0x97;
chessdsbr 2:32e1e71f5885 8140 }
chessdsbr 2:32e1e71f5885 8141 else{
chessdsbr 2:32e1e71f5885 8142 figura_dib[7]=0x96;
chessdsbr 2:32e1e71f5885 8143 }
chessdsbr 2:32e1e71f5885 8144 }
chessdsbr 2:32e1e71f5885 8145 else if(l64==1){
chessdsbr 2:32e1e71f5885 8146 figura_dib[7]=0x95;
chessdsbr 2:32e1e71f5885 8147 }
chessdsbr 2:32e1e71f5885 8148 else{
chessdsbr 2:32e1e71f5885 8149 figura_dib[7]=0x94;
chessdsbr 2:32e1e71f5885 8150 }
chessdsbr 2:32e1e71f5885 8151 }
chessdsbr 2:32e1e71f5885 8152 else if(l63==1){
chessdsbr 2:32e1e71f5885 8153 if(l64==1){
chessdsbr 2:32e1e71f5885 8154 figura_dib[7]=0x93;
chessdsbr 2:32e1e71f5885 8155 }
chessdsbr 2:32e1e71f5885 8156 else{
chessdsbr 2:32e1e71f5885 8157 figura_dib[7]=0x92;
chessdsbr 2:32e1e71f5885 8158 }
chessdsbr 2:32e1e71f5885 8159 }
chessdsbr 2:32e1e71f5885 8160 else if(l64==1){
chessdsbr 2:32e1e71f5885 8161 figura_dib[7]=0x91;
chessdsbr 2:32e1e71f5885 8162 }
chessdsbr 2:32e1e71f5885 8163 else{
chessdsbr 2:32e1e71f5885 8164 figura_dib[7]=0x90;
chessdsbr 2:32e1e71f5885 8165 }
chessdsbr 2:32e1e71f5885 8166 }
chessdsbr 2:32e1e71f5885 8167 else if(l61==1){
chessdsbr 2:32e1e71f5885 8168 if(l62==1){
chessdsbr 2:32e1e71f5885 8169 if(l63==1){
chessdsbr 2:32e1e71f5885 8170 if(l64==1){
chessdsbr 2:32e1e71f5885 8171 figura_dib[7]=0x8F;
chessdsbr 2:32e1e71f5885 8172 }
chessdsbr 2:32e1e71f5885 8173 else{
chessdsbr 2:32e1e71f5885 8174 figura_dib[7]=0x8E;
chessdsbr 2:32e1e71f5885 8175 }
chessdsbr 2:32e1e71f5885 8176 }
chessdsbr 2:32e1e71f5885 8177 else if(l64==1){
chessdsbr 2:32e1e71f5885 8178 figura_dib[7]=0x8D;
chessdsbr 2:32e1e71f5885 8179 }
chessdsbr 2:32e1e71f5885 8180 else{
chessdsbr 2:32e1e71f5885 8181 figura_dib[7]=0x8C;
chessdsbr 2:32e1e71f5885 8182 }
chessdsbr 2:32e1e71f5885 8183 }
chessdsbr 2:32e1e71f5885 8184 else if(l63==1){
chessdsbr 2:32e1e71f5885 8185 if(l64==1){
chessdsbr 2:32e1e71f5885 8186 figura_dib[7]=0x8B;
chessdsbr 2:32e1e71f5885 8187 }
chessdsbr 2:32e1e71f5885 8188 else{
chessdsbr 2:32e1e71f5885 8189 figura_dib[7]=0x8A;
chessdsbr 2:32e1e71f5885 8190 }
chessdsbr 2:32e1e71f5885 8191 }
chessdsbr 2:32e1e71f5885 8192 else if(l64==1){
chessdsbr 2:32e1e71f5885 8193 figura_dib[7]=0x89;
chessdsbr 2:32e1e71f5885 8194 }
chessdsbr 2:32e1e71f5885 8195 else{
chessdsbr 2:32e1e71f5885 8196 figura_dib[7]=0x88;
chessdsbr 2:32e1e71f5885 8197 }
chessdsbr 2:32e1e71f5885 8198 }
chessdsbr 2:32e1e71f5885 8199 else if(l62==1){
chessdsbr 2:32e1e71f5885 8200 if(l63==1){
chessdsbr 2:32e1e71f5885 8201 if(l64==1){
chessdsbr 2:32e1e71f5885 8202 figura_dib[7]=0x87;
chessdsbr 2:32e1e71f5885 8203 }
chessdsbr 2:32e1e71f5885 8204 else{
chessdsbr 2:32e1e71f5885 8205 figura_dib[7]=0x86;
chessdsbr 2:32e1e71f5885 8206 }
chessdsbr 2:32e1e71f5885 8207 }
chessdsbr 2:32e1e71f5885 8208 else if(l64==1){
chessdsbr 2:32e1e71f5885 8209 figura_dib[7]=0x85;
chessdsbr 2:32e1e71f5885 8210 }
chessdsbr 2:32e1e71f5885 8211 else{
chessdsbr 2:32e1e71f5885 8212 figura_dib[7]=0x84;
chessdsbr 2:32e1e71f5885 8213 }
chessdsbr 2:32e1e71f5885 8214 }
chessdsbr 2:32e1e71f5885 8215 else if(l63==1){
chessdsbr 2:32e1e71f5885 8216 if(l64==1){
chessdsbr 2:32e1e71f5885 8217 figura_dib[7]=0x83;
chessdsbr 2:32e1e71f5885 8218 }
chessdsbr 2:32e1e71f5885 8219 else{
chessdsbr 2:32e1e71f5885 8220 figura_dib[7]=0x82;
chessdsbr 2:32e1e71f5885 8221 }
chessdsbr 2:32e1e71f5885 8222 }
chessdsbr 2:32e1e71f5885 8223 else if(l64==1){
chessdsbr 2:32e1e71f5885 8224 figura_dib[7]=0x81;
chessdsbr 2:32e1e71f5885 8225 }
chessdsbr 2:32e1e71f5885 8226 else{
chessdsbr 2:32e1e71f5885 8227 figura_dib[7]=0x80;
chessdsbr 2:32e1e71f5885 8228 }
chessdsbr 2:32e1e71f5885 8229 }
chessdsbr 2:32e1e71f5885 8230 else if(l58==1){
chessdsbr 2:32e1e71f5885 8231 if(l59==1){
chessdsbr 2:32e1e71f5885 8232 if(l60==1){
chessdsbr 2:32e1e71f5885 8233 if(l61==1){
chessdsbr 2:32e1e71f5885 8234 if(l62==1){
chessdsbr 2:32e1e71f5885 8235 if(l63==1){
chessdsbr 2:32e1e71f5885 8236 if(l64==1){
chessdsbr 2:32e1e71f5885 8237 figura_dib[7]=0x7F;
chessdsbr 2:32e1e71f5885 8238 }
chessdsbr 2:32e1e71f5885 8239 else{
chessdsbr 2:32e1e71f5885 8240 figura_dib[7]=0x7E;
chessdsbr 2:32e1e71f5885 8241 }
chessdsbr 2:32e1e71f5885 8242 }
chessdsbr 2:32e1e71f5885 8243 else if(l64==1){
chessdsbr 2:32e1e71f5885 8244 figura_dib[7]=0x7D;
chessdsbr 2:32e1e71f5885 8245 }
chessdsbr 2:32e1e71f5885 8246 else{
chessdsbr 2:32e1e71f5885 8247 figura_dib[7]=0x7C;
chessdsbr 2:32e1e71f5885 8248 }
chessdsbr 2:32e1e71f5885 8249 }
chessdsbr 2:32e1e71f5885 8250 else if(l63==1){
chessdsbr 2:32e1e71f5885 8251 if(l64==1){
chessdsbr 2:32e1e71f5885 8252 figura_dib[7]=0x7B;
chessdsbr 2:32e1e71f5885 8253 }
chessdsbr 2:32e1e71f5885 8254 else{
chessdsbr 2:32e1e71f5885 8255 figura_dib[7]=0x7A;
chessdsbr 2:32e1e71f5885 8256 }
chessdsbr 2:32e1e71f5885 8257 }
chessdsbr 2:32e1e71f5885 8258 else if(l64==1){
chessdsbr 2:32e1e71f5885 8259 figura_dib[7]=0x79;
chessdsbr 2:32e1e71f5885 8260 }
chessdsbr 2:32e1e71f5885 8261 else{
chessdsbr 2:32e1e71f5885 8262 figura_dib[7]=0x78;
chessdsbr 2:32e1e71f5885 8263 }
chessdsbr 2:32e1e71f5885 8264 }
chessdsbr 2:32e1e71f5885 8265 else if(l62==1){
chessdsbr 2:32e1e71f5885 8266 if(l63==1){
chessdsbr 2:32e1e71f5885 8267 if(l64==1){
chessdsbr 2:32e1e71f5885 8268 figura_dib[7]=0x77;
chessdsbr 2:32e1e71f5885 8269 }
chessdsbr 2:32e1e71f5885 8270 else{
chessdsbr 2:32e1e71f5885 8271 figura_dib[7]=0x76;
chessdsbr 2:32e1e71f5885 8272 }
chessdsbr 2:32e1e71f5885 8273 }
chessdsbr 2:32e1e71f5885 8274 else if(l64==1){
chessdsbr 2:32e1e71f5885 8275 figura_dib[7]=0x75;
chessdsbr 2:32e1e71f5885 8276 }
chessdsbr 2:32e1e71f5885 8277 else{
chessdsbr 2:32e1e71f5885 8278 figura_dib[7]=0x74;
chessdsbr 2:32e1e71f5885 8279 }
chessdsbr 2:32e1e71f5885 8280 }
chessdsbr 2:32e1e71f5885 8281 else if(l63==1){
chessdsbr 2:32e1e71f5885 8282 if(l64==1){
chessdsbr 2:32e1e71f5885 8283 figura_dib[7]=0x73;
chessdsbr 2:32e1e71f5885 8284 }
chessdsbr 2:32e1e71f5885 8285 else{
chessdsbr 2:32e1e71f5885 8286 figura_dib[7]=0x72;
chessdsbr 2:32e1e71f5885 8287 }
chessdsbr 2:32e1e71f5885 8288 }
chessdsbr 2:32e1e71f5885 8289 else if(l64==1){
chessdsbr 2:32e1e71f5885 8290 figura_dib[7]=0x71;
chessdsbr 2:32e1e71f5885 8291 }
chessdsbr 2:32e1e71f5885 8292 else{
chessdsbr 2:32e1e71f5885 8293 figura_dib[7]=0x70;
chessdsbr 2:32e1e71f5885 8294 }
chessdsbr 2:32e1e71f5885 8295 }
chessdsbr 2:32e1e71f5885 8296 else if(l61==1){
chessdsbr 2:32e1e71f5885 8297 if(l62==1){
chessdsbr 2:32e1e71f5885 8298 if(l63==1){
chessdsbr 2:32e1e71f5885 8299 if(l64==1){
chessdsbr 2:32e1e71f5885 8300 figura_dib[7]=0x6F;
chessdsbr 2:32e1e71f5885 8301 }
chessdsbr 2:32e1e71f5885 8302 else{
chessdsbr 2:32e1e71f5885 8303 figura_dib[7]=0x6E;
chessdsbr 2:32e1e71f5885 8304 }
chessdsbr 2:32e1e71f5885 8305 }
chessdsbr 2:32e1e71f5885 8306 else if(l64==1){
chessdsbr 2:32e1e71f5885 8307 figura_dib[7]=0x6D;
chessdsbr 2:32e1e71f5885 8308 }
chessdsbr 2:32e1e71f5885 8309 else{
chessdsbr 2:32e1e71f5885 8310 figura_dib[7]=0x6C;
chessdsbr 2:32e1e71f5885 8311 }
chessdsbr 2:32e1e71f5885 8312 }
chessdsbr 2:32e1e71f5885 8313 else if(l63==1){
chessdsbr 2:32e1e71f5885 8314 if(l64==1){
chessdsbr 2:32e1e71f5885 8315 figura_dib[7]=0x6B;
chessdsbr 2:32e1e71f5885 8316 }
chessdsbr 2:32e1e71f5885 8317 else{
chessdsbr 2:32e1e71f5885 8318 figura_dib[7]=0x6A;
chessdsbr 2:32e1e71f5885 8319 }
chessdsbr 2:32e1e71f5885 8320 }
chessdsbr 2:32e1e71f5885 8321 else if(l64==1){
chessdsbr 2:32e1e71f5885 8322 figura_dib[7]=0x69;
chessdsbr 2:32e1e71f5885 8323 }
chessdsbr 2:32e1e71f5885 8324 else{
chessdsbr 2:32e1e71f5885 8325 figura_dib[7]=0x68;
chessdsbr 2:32e1e71f5885 8326 }
chessdsbr 2:32e1e71f5885 8327 }
chessdsbr 2:32e1e71f5885 8328 else if(l62==1){
chessdsbr 2:32e1e71f5885 8329 if(l63==1){
chessdsbr 2:32e1e71f5885 8330 if(l64==1){
chessdsbr 2:32e1e71f5885 8331 figura_dib[7]=0x67;
chessdsbr 2:32e1e71f5885 8332 }
chessdsbr 2:32e1e71f5885 8333 else{
chessdsbr 2:32e1e71f5885 8334 figura_dib[7]=0x66;
chessdsbr 2:32e1e71f5885 8335 }
chessdsbr 2:32e1e71f5885 8336 }
chessdsbr 2:32e1e71f5885 8337 else if(l64==1){
chessdsbr 2:32e1e71f5885 8338 figura_dib[7]=0x65;
chessdsbr 2:32e1e71f5885 8339 }
chessdsbr 2:32e1e71f5885 8340 else{
chessdsbr 2:32e1e71f5885 8341 figura_dib[7]=0x64;
chessdsbr 2:32e1e71f5885 8342 }
chessdsbr 2:32e1e71f5885 8343 }
chessdsbr 2:32e1e71f5885 8344 else if(l63==1){
chessdsbr 2:32e1e71f5885 8345 if(l64==1){
chessdsbr 2:32e1e71f5885 8346 figura_dib[7]=0x63;
chessdsbr 2:32e1e71f5885 8347 }
chessdsbr 2:32e1e71f5885 8348 else{
chessdsbr 2:32e1e71f5885 8349 figura_dib[7]=0x62;
chessdsbr 2:32e1e71f5885 8350 }
chessdsbr 2:32e1e71f5885 8351 }
chessdsbr 2:32e1e71f5885 8352 else if(l64==1){
chessdsbr 2:32e1e71f5885 8353 figura_dib[7]=0x61;
chessdsbr 2:32e1e71f5885 8354 }
chessdsbr 2:32e1e71f5885 8355 else{
chessdsbr 2:32e1e71f5885 8356 figura_dib[7]=0x60;
chessdsbr 2:32e1e71f5885 8357 }
chessdsbr 2:32e1e71f5885 8358 }
chessdsbr 2:32e1e71f5885 8359 else if(l60==1){
chessdsbr 2:32e1e71f5885 8360 if(l61==1){
chessdsbr 2:32e1e71f5885 8361 if(l62==1){
chessdsbr 2:32e1e71f5885 8362 if(l63==1){
chessdsbr 2:32e1e71f5885 8363 if(l64==1){
chessdsbr 2:32e1e71f5885 8364 figura_dib[7]=0x5F;
chessdsbr 2:32e1e71f5885 8365 }
chessdsbr 2:32e1e71f5885 8366 else{
chessdsbr 2:32e1e71f5885 8367 figura_dib[7]=0x5E;
chessdsbr 2:32e1e71f5885 8368 }
chessdsbr 2:32e1e71f5885 8369 }
chessdsbr 2:32e1e71f5885 8370 else if(l64==1){
chessdsbr 2:32e1e71f5885 8371 figura_dib[7]=0x5D;
chessdsbr 2:32e1e71f5885 8372 }
chessdsbr 2:32e1e71f5885 8373 else{
chessdsbr 2:32e1e71f5885 8374 figura_dib[7]=0x5C;
chessdsbr 2:32e1e71f5885 8375 }
chessdsbr 2:32e1e71f5885 8376 }
chessdsbr 2:32e1e71f5885 8377 else if(l63==1){
chessdsbr 2:32e1e71f5885 8378 if(l64==1){
chessdsbr 2:32e1e71f5885 8379 figura_dib[7]=0x5B;
chessdsbr 2:32e1e71f5885 8380 }
chessdsbr 2:32e1e71f5885 8381 else{
chessdsbr 2:32e1e71f5885 8382 figura_dib[7]=0x5A;
chessdsbr 2:32e1e71f5885 8383 }
chessdsbr 2:32e1e71f5885 8384 }
chessdsbr 2:32e1e71f5885 8385 else if(l64==1){
chessdsbr 2:32e1e71f5885 8386 figura_dib[7]=0x59;
chessdsbr 2:32e1e71f5885 8387 }
chessdsbr 2:32e1e71f5885 8388 else{
chessdsbr 2:32e1e71f5885 8389 figura_dib[7]=0x58;
chessdsbr 2:32e1e71f5885 8390 }
chessdsbr 2:32e1e71f5885 8391 }
chessdsbr 2:32e1e71f5885 8392 else if(l62==1){
chessdsbr 2:32e1e71f5885 8393 if(l63==1){
chessdsbr 2:32e1e71f5885 8394 if(l64==1){
chessdsbr 2:32e1e71f5885 8395 figura_dib[7]=0x57;
chessdsbr 2:32e1e71f5885 8396 }
chessdsbr 2:32e1e71f5885 8397 else{
chessdsbr 2:32e1e71f5885 8398 figura_dib[7]=0x56;
chessdsbr 2:32e1e71f5885 8399 }
chessdsbr 2:32e1e71f5885 8400 }
chessdsbr 2:32e1e71f5885 8401 else if(l64==1){
chessdsbr 2:32e1e71f5885 8402 figura_dib[7]=0x55;
chessdsbr 2:32e1e71f5885 8403 }
chessdsbr 2:32e1e71f5885 8404 else{
chessdsbr 2:32e1e71f5885 8405 figura_dib[7]=0x54;
chessdsbr 2:32e1e71f5885 8406 }
chessdsbr 2:32e1e71f5885 8407 }
chessdsbr 2:32e1e71f5885 8408 else if(l63==1){
chessdsbr 2:32e1e71f5885 8409 if(l64==1){
chessdsbr 2:32e1e71f5885 8410 figura_dib[7]=0x53;
chessdsbr 2:32e1e71f5885 8411 }
chessdsbr 2:32e1e71f5885 8412 else{
chessdsbr 2:32e1e71f5885 8413 figura_dib[7]=0x52;
chessdsbr 2:32e1e71f5885 8414 }
chessdsbr 2:32e1e71f5885 8415 }
chessdsbr 2:32e1e71f5885 8416 else if(l64==1){
chessdsbr 2:32e1e71f5885 8417 figura_dib[7]=0x51;
chessdsbr 2:32e1e71f5885 8418 }
chessdsbr 2:32e1e71f5885 8419 else{
chessdsbr 2:32e1e71f5885 8420 figura_dib[7]=0x50;
chessdsbr 2:32e1e71f5885 8421 }
chessdsbr 2:32e1e71f5885 8422 }
chessdsbr 2:32e1e71f5885 8423 else if(l61==1){
chessdsbr 2:32e1e71f5885 8424 if(l62==1){
chessdsbr 2:32e1e71f5885 8425 if(l63==1){
chessdsbr 2:32e1e71f5885 8426 if(l64==1){
chessdsbr 2:32e1e71f5885 8427 figura_dib[7]=0x4F;
chessdsbr 2:32e1e71f5885 8428 }
chessdsbr 2:32e1e71f5885 8429 else{
chessdsbr 2:32e1e71f5885 8430 figura_dib[7]=0x4E;
chessdsbr 2:32e1e71f5885 8431 }
chessdsbr 2:32e1e71f5885 8432 }
chessdsbr 2:32e1e71f5885 8433 else if(l64==1){
chessdsbr 2:32e1e71f5885 8434 figura_dib[7]=0x4D;
chessdsbr 2:32e1e71f5885 8435 }
chessdsbr 2:32e1e71f5885 8436 else{
chessdsbr 2:32e1e71f5885 8437 figura_dib[7]=0x4C;
chessdsbr 2:32e1e71f5885 8438 }
chessdsbr 2:32e1e71f5885 8439 }
chessdsbr 2:32e1e71f5885 8440 else if(l63==1){
chessdsbr 2:32e1e71f5885 8441 if(l64==1){
chessdsbr 2:32e1e71f5885 8442 figura_dib[7]=0x4B;
chessdsbr 2:32e1e71f5885 8443 }
chessdsbr 2:32e1e71f5885 8444 else{
chessdsbr 2:32e1e71f5885 8445 figura_dib[7]=0x4A;
chessdsbr 2:32e1e71f5885 8446 }
chessdsbr 2:32e1e71f5885 8447 }
chessdsbr 2:32e1e71f5885 8448 else if(l64==1){
chessdsbr 2:32e1e71f5885 8449 figura_dib[7]=0x49;
chessdsbr 2:32e1e71f5885 8450 }
chessdsbr 2:32e1e71f5885 8451 else{
chessdsbr 2:32e1e71f5885 8452 figura_dib[7]=0x48;
chessdsbr 2:32e1e71f5885 8453 }
chessdsbr 2:32e1e71f5885 8454 }
chessdsbr 2:32e1e71f5885 8455 else if(l62==1){
chessdsbr 2:32e1e71f5885 8456 if(l63==1){
chessdsbr 2:32e1e71f5885 8457 if(l64==1){
chessdsbr 2:32e1e71f5885 8458 figura_dib[7]=0x47;
chessdsbr 2:32e1e71f5885 8459 }
chessdsbr 2:32e1e71f5885 8460 else{
chessdsbr 2:32e1e71f5885 8461 figura_dib[7]=0x46;
chessdsbr 2:32e1e71f5885 8462 }
chessdsbr 2:32e1e71f5885 8463 }
chessdsbr 2:32e1e71f5885 8464 else if(l64==1){
chessdsbr 2:32e1e71f5885 8465 figura_dib[7]=0x45;
chessdsbr 2:32e1e71f5885 8466 }
chessdsbr 2:32e1e71f5885 8467 else{
chessdsbr 2:32e1e71f5885 8468 figura_dib[7]=0x44;
chessdsbr 2:32e1e71f5885 8469 }
chessdsbr 2:32e1e71f5885 8470 }
chessdsbr 2:32e1e71f5885 8471 else if(l63==1){
chessdsbr 2:32e1e71f5885 8472 if(l64==1){
chessdsbr 2:32e1e71f5885 8473 figura_dib[7]=0x43;
chessdsbr 2:32e1e71f5885 8474 }
chessdsbr 2:32e1e71f5885 8475 else{
chessdsbr 2:32e1e71f5885 8476 figura_dib[7]=0x42;
chessdsbr 2:32e1e71f5885 8477 }
chessdsbr 2:32e1e71f5885 8478 }
chessdsbr 2:32e1e71f5885 8479 else if(l64==1){
chessdsbr 2:32e1e71f5885 8480 figura_dib[7]=0x41;
chessdsbr 2:32e1e71f5885 8481 }
chessdsbr 2:32e1e71f5885 8482 else{
chessdsbr 2:32e1e71f5885 8483 figura_dib[7]=0x40;
chessdsbr 2:32e1e71f5885 8484 }
chessdsbr 2:32e1e71f5885 8485 }
chessdsbr 2:32e1e71f5885 8486 else if(l59==1){
chessdsbr 2:32e1e71f5885 8487 if(l60==1){
chessdsbr 2:32e1e71f5885 8488 if(l61==1){
chessdsbr 2:32e1e71f5885 8489 if(l62==1){
chessdsbr 2:32e1e71f5885 8490 if(l63==1){
chessdsbr 2:32e1e71f5885 8491 if(l64==1){
chessdsbr 2:32e1e71f5885 8492 figura_dib[7]=0x3F;
chessdsbr 2:32e1e71f5885 8493 }
chessdsbr 2:32e1e71f5885 8494 else{
chessdsbr 2:32e1e71f5885 8495 figura_dib[7]=0x3E;
chessdsbr 2:32e1e71f5885 8496 }
chessdsbr 2:32e1e71f5885 8497 }
chessdsbr 2:32e1e71f5885 8498 else if(l64==1){
chessdsbr 2:32e1e71f5885 8499 figura_dib[7]=0x3D;
chessdsbr 2:32e1e71f5885 8500 }
chessdsbr 2:32e1e71f5885 8501 else{
chessdsbr 2:32e1e71f5885 8502 figura_dib[7]=0x3C;
chessdsbr 2:32e1e71f5885 8503 }
chessdsbr 2:32e1e71f5885 8504 }
chessdsbr 2:32e1e71f5885 8505 else if(l63==1){
chessdsbr 2:32e1e71f5885 8506 if(l64==1){
chessdsbr 2:32e1e71f5885 8507 figura_dib[7]=0x3B;
chessdsbr 2:32e1e71f5885 8508 }
chessdsbr 2:32e1e71f5885 8509 else{
chessdsbr 2:32e1e71f5885 8510 figura_dib[7]=0x3A;
chessdsbr 2:32e1e71f5885 8511 }
chessdsbr 2:32e1e71f5885 8512 }
chessdsbr 2:32e1e71f5885 8513 else if(l64==1){
chessdsbr 2:32e1e71f5885 8514 figura_dib[7]=0x39;
chessdsbr 2:32e1e71f5885 8515 }
chessdsbr 2:32e1e71f5885 8516 else{
chessdsbr 2:32e1e71f5885 8517 figura_dib[7]=0x38;
chessdsbr 2:32e1e71f5885 8518 }
chessdsbr 2:32e1e71f5885 8519 }
chessdsbr 2:32e1e71f5885 8520 else if(l62==1){
chessdsbr 2:32e1e71f5885 8521 if(l63==1){
chessdsbr 2:32e1e71f5885 8522 if(l64==1){
chessdsbr 2:32e1e71f5885 8523 figura_dib[7]=0x37;
chessdsbr 2:32e1e71f5885 8524 }
chessdsbr 2:32e1e71f5885 8525 else{
chessdsbr 2:32e1e71f5885 8526 figura_dib[7]=0x36;
chessdsbr 2:32e1e71f5885 8527 }
chessdsbr 2:32e1e71f5885 8528 }
chessdsbr 2:32e1e71f5885 8529 else if(l64==1){
chessdsbr 2:32e1e71f5885 8530 figura_dib[7]=0x35;
chessdsbr 2:32e1e71f5885 8531 }
chessdsbr 2:32e1e71f5885 8532 else{
chessdsbr 2:32e1e71f5885 8533 figura_dib[7]=0x34;
chessdsbr 2:32e1e71f5885 8534 }
chessdsbr 2:32e1e71f5885 8535 }
chessdsbr 2:32e1e71f5885 8536 else if(l63==1){
chessdsbr 2:32e1e71f5885 8537 if(l64==1){
chessdsbr 2:32e1e71f5885 8538 figura_dib[7]=0x33;
chessdsbr 2:32e1e71f5885 8539 }
chessdsbr 2:32e1e71f5885 8540 else{
chessdsbr 2:32e1e71f5885 8541 figura_dib[7]=0x32;
chessdsbr 2:32e1e71f5885 8542 }
chessdsbr 2:32e1e71f5885 8543 }
chessdsbr 2:32e1e71f5885 8544 else if(l64==1){
chessdsbr 2:32e1e71f5885 8545 figura_dib[7]=0x31;
chessdsbr 2:32e1e71f5885 8546 }
chessdsbr 2:32e1e71f5885 8547 else{
chessdsbr 2:32e1e71f5885 8548 figura_dib[7]=0x30;
chessdsbr 2:32e1e71f5885 8549 }
chessdsbr 2:32e1e71f5885 8550 }
chessdsbr 2:32e1e71f5885 8551 else if(l61==1){
chessdsbr 2:32e1e71f5885 8552 if(l62==1){
chessdsbr 2:32e1e71f5885 8553 if(l63==1){
chessdsbr 2:32e1e71f5885 8554 if(l64==1){
chessdsbr 2:32e1e71f5885 8555 figura_dib[7]=0x2F;
chessdsbr 2:32e1e71f5885 8556 }
chessdsbr 2:32e1e71f5885 8557 else{
chessdsbr 2:32e1e71f5885 8558 figura_dib[7]=0x2E;
chessdsbr 2:32e1e71f5885 8559 }
chessdsbr 2:32e1e71f5885 8560 }
chessdsbr 2:32e1e71f5885 8561 else if(l64==1){
chessdsbr 2:32e1e71f5885 8562 figura_dib[7]=0x2D;
chessdsbr 2:32e1e71f5885 8563 }
chessdsbr 2:32e1e71f5885 8564 else{
chessdsbr 2:32e1e71f5885 8565 figura_dib[7]=0x2C;
chessdsbr 2:32e1e71f5885 8566 }
chessdsbr 2:32e1e71f5885 8567 }
chessdsbr 2:32e1e71f5885 8568 else if(l63==1){
chessdsbr 2:32e1e71f5885 8569 if(l64==1){
chessdsbr 2:32e1e71f5885 8570 figura_dib[7]=0x2B;
chessdsbr 2:32e1e71f5885 8571 }
chessdsbr 2:32e1e71f5885 8572 else{
chessdsbr 2:32e1e71f5885 8573 figura_dib[7]=0x2A;
chessdsbr 2:32e1e71f5885 8574 }
chessdsbr 2:32e1e71f5885 8575 }
chessdsbr 2:32e1e71f5885 8576 else if(l64==1){
chessdsbr 2:32e1e71f5885 8577 figura_dib[7]=0x29;
chessdsbr 2:32e1e71f5885 8578 }
chessdsbr 2:32e1e71f5885 8579 else{
chessdsbr 2:32e1e71f5885 8580 figura_dib[7]=0x28;
chessdsbr 2:32e1e71f5885 8581 }
chessdsbr 2:32e1e71f5885 8582 }
chessdsbr 2:32e1e71f5885 8583 else if(l62==1){
chessdsbr 2:32e1e71f5885 8584 if(l63==1){
chessdsbr 2:32e1e71f5885 8585 if(l64==1){
chessdsbr 2:32e1e71f5885 8586 figura_dib[7]=0x27;
chessdsbr 2:32e1e71f5885 8587 }
chessdsbr 2:32e1e71f5885 8588 else{
chessdsbr 2:32e1e71f5885 8589 figura_dib[7]=0x26;
chessdsbr 2:32e1e71f5885 8590 }
chessdsbr 2:32e1e71f5885 8591 }
chessdsbr 2:32e1e71f5885 8592 else if(l64==1){
chessdsbr 2:32e1e71f5885 8593 figura_dib[7]=0x25;
chessdsbr 2:32e1e71f5885 8594 }
chessdsbr 2:32e1e71f5885 8595 else{
chessdsbr 2:32e1e71f5885 8596 figura_dib[7]=0x24;
chessdsbr 2:32e1e71f5885 8597 }
chessdsbr 2:32e1e71f5885 8598 }
chessdsbr 2:32e1e71f5885 8599 else if(l63==1){
chessdsbr 2:32e1e71f5885 8600 if(l62==1){
chessdsbr 2:32e1e71f5885 8601 figura_dib[7]=0x23;
chessdsbr 2:32e1e71f5885 8602 }
chessdsbr 2:32e1e71f5885 8603 else{
chessdsbr 2:32e1e71f5885 8604 figura_dib[7]=0x22;
chessdsbr 2:32e1e71f5885 8605 }
chessdsbr 2:32e1e71f5885 8606 }
chessdsbr 2:32e1e71f5885 8607 else if(l64==1){
chessdsbr 2:32e1e71f5885 8608 figura_dib[7]=0x21;
chessdsbr 2:32e1e71f5885 8609 }
chessdsbr 2:32e1e71f5885 8610 else{
chessdsbr 2:32e1e71f5885 8611 figura_dib[7]=0x20;
chessdsbr 2:32e1e71f5885 8612 }
chessdsbr 2:32e1e71f5885 8613 }
chessdsbr 2:32e1e71f5885 8614 else if(l60==1){
chessdsbr 2:32e1e71f5885 8615 if(l61==1){
chessdsbr 2:32e1e71f5885 8616 if(l62==1){
chessdsbr 2:32e1e71f5885 8617 if(l63==1){
chessdsbr 2:32e1e71f5885 8618 if(l64==1){
chessdsbr 2:32e1e71f5885 8619 figura_dib[7]=0x1F;
chessdsbr 2:32e1e71f5885 8620 }
chessdsbr 2:32e1e71f5885 8621 else{
chessdsbr 2:32e1e71f5885 8622 figura_dib[7]=0x1E;
chessdsbr 2:32e1e71f5885 8623 }
chessdsbr 2:32e1e71f5885 8624 }
chessdsbr 2:32e1e71f5885 8625 else if(l64==1){
chessdsbr 2:32e1e71f5885 8626 figura_dib[7]=0x1D;
chessdsbr 2:32e1e71f5885 8627 }
chessdsbr 2:32e1e71f5885 8628 else{
chessdsbr 2:32e1e71f5885 8629 figura_dib[7]=0x1C;
chessdsbr 2:32e1e71f5885 8630 }
chessdsbr 2:32e1e71f5885 8631 }
chessdsbr 2:32e1e71f5885 8632 else if(l63==1){
chessdsbr 2:32e1e71f5885 8633 if(l64==1){
chessdsbr 2:32e1e71f5885 8634 figura_dib[7]=0x1B;
chessdsbr 2:32e1e71f5885 8635 }
chessdsbr 2:32e1e71f5885 8636 else{
chessdsbr 2:32e1e71f5885 8637 figura_dib[7]=0x1A;
chessdsbr 2:32e1e71f5885 8638 }
chessdsbr 2:32e1e71f5885 8639 }
chessdsbr 2:32e1e71f5885 8640 else if(l64==1){
chessdsbr 2:32e1e71f5885 8641 figura_dib[7]=0x19;
chessdsbr 2:32e1e71f5885 8642 }
chessdsbr 2:32e1e71f5885 8643 else{
chessdsbr 2:32e1e71f5885 8644 figura_dib[7]=0x18;
chessdsbr 2:32e1e71f5885 8645 }
chessdsbr 2:32e1e71f5885 8646 }
chessdsbr 2:32e1e71f5885 8647 else if(l62==1){
chessdsbr 2:32e1e71f5885 8648 if(l63==1){
chessdsbr 2:32e1e71f5885 8649 if(l64==1){
chessdsbr 2:32e1e71f5885 8650 figura_dib[7]=0x17;
chessdsbr 2:32e1e71f5885 8651 }
chessdsbr 2:32e1e71f5885 8652 else{
chessdsbr 2:32e1e71f5885 8653 figura_dib[7]=0x16;
chessdsbr 2:32e1e71f5885 8654 }
chessdsbr 2:32e1e71f5885 8655 }
chessdsbr 2:32e1e71f5885 8656 else if(l64==1){
chessdsbr 2:32e1e71f5885 8657 figura_dib[7]=0x15;
chessdsbr 2:32e1e71f5885 8658 }
chessdsbr 2:32e1e71f5885 8659 else{
chessdsbr 2:32e1e71f5885 8660 figura_dib[7]=0x14;
chessdsbr 2:32e1e71f5885 8661 }
chessdsbr 2:32e1e71f5885 8662 }
chessdsbr 2:32e1e71f5885 8663 else if(l63==1){
chessdsbr 2:32e1e71f5885 8664 if(l64==1){
chessdsbr 2:32e1e71f5885 8665 figura_dib[7]=0x13;
chessdsbr 2:32e1e71f5885 8666 }
chessdsbr 2:32e1e71f5885 8667 else{
chessdsbr 2:32e1e71f5885 8668 figura_dib[7]=0x12;
chessdsbr 2:32e1e71f5885 8669 }
chessdsbr 2:32e1e71f5885 8670 }
chessdsbr 2:32e1e71f5885 8671 else if(l64==1){
chessdsbr 2:32e1e71f5885 8672 figura_dib[7]=0x11;
chessdsbr 2:32e1e71f5885 8673 }
chessdsbr 2:32e1e71f5885 8674 else{
chessdsbr 2:32e1e71f5885 8675 figura_dib[7]=0x10;
chessdsbr 2:32e1e71f5885 8676 }
chessdsbr 2:32e1e71f5885 8677 }
chessdsbr 2:32e1e71f5885 8678 else if(l61==1){
chessdsbr 2:32e1e71f5885 8679 if(l62==1){
chessdsbr 2:32e1e71f5885 8680 if(l63==1){
chessdsbr 2:32e1e71f5885 8681 if(l64==1){
chessdsbr 2:32e1e71f5885 8682 figura_dib[7]=0x0F;
chessdsbr 2:32e1e71f5885 8683 }
chessdsbr 2:32e1e71f5885 8684 else{
chessdsbr 2:32e1e71f5885 8685 figura_dib[7]=0x0E;
chessdsbr 2:32e1e71f5885 8686 }
chessdsbr 2:32e1e71f5885 8687 }
chessdsbr 2:32e1e71f5885 8688 else if(l64==1){
chessdsbr 2:32e1e71f5885 8689 figura_dib[7]=0x0D;
chessdsbr 2:32e1e71f5885 8690 }
chessdsbr 2:32e1e71f5885 8691 else{
chessdsbr 2:32e1e71f5885 8692 figura_dib[7]=0x0C;
chessdsbr 2:32e1e71f5885 8693 }
chessdsbr 2:32e1e71f5885 8694 }
chessdsbr 2:32e1e71f5885 8695 else if(l63==1){
chessdsbr 2:32e1e71f5885 8696 if(l64==1){
chessdsbr 2:32e1e71f5885 8697 figura_dib[7]=0x0B;
chessdsbr 2:32e1e71f5885 8698 }
chessdsbr 2:32e1e71f5885 8699 else{
chessdsbr 2:32e1e71f5885 8700 figura_dib[7]=0x0A;
chessdsbr 2:32e1e71f5885 8701 }
chessdsbr 2:32e1e71f5885 8702 }
chessdsbr 2:32e1e71f5885 8703 else if(l64==1){
chessdsbr 2:32e1e71f5885 8704 figura_dib[7]=0x09;
chessdsbr 2:32e1e71f5885 8705 }
chessdsbr 2:32e1e71f5885 8706 else{
chessdsbr 2:32e1e71f5885 8707 figura_dib[7]=0x08;
chessdsbr 2:32e1e71f5885 8708 }
chessdsbr 2:32e1e71f5885 8709 }
chessdsbr 2:32e1e71f5885 8710 else if(l62==1){
chessdsbr 2:32e1e71f5885 8711 if(l63==1){
chessdsbr 2:32e1e71f5885 8712 if(l64==1){
chessdsbr 2:32e1e71f5885 8713 figura_dib[7]=0x07;
chessdsbr 2:32e1e71f5885 8714 }
chessdsbr 2:32e1e71f5885 8715 else{
chessdsbr 2:32e1e71f5885 8716 figura_dib[7]=0x06;
chessdsbr 2:32e1e71f5885 8717 }
chessdsbr 2:32e1e71f5885 8718 }
chessdsbr 2:32e1e71f5885 8719 else if(l64==1){
chessdsbr 2:32e1e71f5885 8720 figura_dib[7]=0x05;
chessdsbr 2:32e1e71f5885 8721 }
chessdsbr 2:32e1e71f5885 8722 else{
chessdsbr 2:32e1e71f5885 8723 figura_dib[7]=0x04;
chessdsbr 2:32e1e71f5885 8724 }
chessdsbr 2:32e1e71f5885 8725 }
chessdsbr 2:32e1e71f5885 8726 else if(l63==1){
chessdsbr 2:32e1e71f5885 8727 if(l64==1){
chessdsbr 2:32e1e71f5885 8728 figura_dib[7]=0x03;
chessdsbr 2:32e1e71f5885 8729 }
chessdsbr 2:32e1e71f5885 8730 else{
chessdsbr 2:32e1e71f5885 8731 figura_dib[7]=0x02;
chessdsbr 2:32e1e71f5885 8732 }
chessdsbr 2:32e1e71f5885 8733 }
chessdsbr 2:32e1e71f5885 8734 else if(l64==1){
chessdsbr 2:32e1e71f5885 8735 figura_dib[7]=0x01;
chessdsbr 2:32e1e71f5885 8736 }
chessdsbr 2:32e1e71f5885 8737 else{
chessdsbr 2:32e1e71f5885 8738 figura_dib[7]=0x00;
chessdsbr 2:32e1e71f5885 8739 }
chessdsbr 2:32e1e71f5885 8740 /////
chessdsbr 2:32e1e71f5885 8741 ////
chessdsbr 2:32e1e71f5885 8742 ///
chessdsbr 2:32e1e71f5885 8743 //
chessdsbr 2:32e1e71f5885 8744 ///////////////
chessdsbr 2:32e1e71f5885 8745 switch(cambio_im){
chessdsbr 2:32e1e71f5885 8746 case 1:
chessdsbr 2:32e1e71f5885 8747 row=cuadrado[counter];
chessdsbr 2:32e1e71f5885 8748 break;
chessdsbr 2:32e1e71f5885 8749 case 2:
chessdsbr 2:32e1e71f5885 8750 row=triangulo[counter];
chessdsbr 2:32e1e71f5885 8751 break;
chessdsbr 2:32e1e71f5885 8752 case 3:
chessdsbr 2:32e1e71f5885 8753 row=rombo[counter];
chessdsbr 2:32e1e71f5885 8754 break;
chessdsbr 2:32e1e71f5885 8755 }
chessdsbr 2:32e1e71f5885 8756 ////////
chessdsbr 2:32e1e71f5885 8757 switch(im_escogida){
chessdsbr 2:32e1e71f5885 8758 case 1:
chessdsbr 2:32e1e71f5885 8759 row=cuadrado[counter];
chessdsbr 2:32e1e71f5885 8760 if(cuadrado[0]==figura_dib[0] && cuadrado[1]==figura_dib[1] && cuadrado[2]==figura_dib[2] && cuadrado[3]==figura_dib[3] && cuadrado[4]==figura_dib[4] && cuadrado[5]==figura_dib[5] && cuadrado[6]==figura_dib[6] && cuadrado[7]==figura_dib[7]){
chessdsbr 2:32e1e71f5885 8761 im_escogida=4;
chessdsbr 2:32e1e71f5885 8762 }
chessdsbr 2:32e1e71f5885 8763 break;
chessdsbr 2:32e1e71f5885 8764 case 2:
chessdsbr 2:32e1e71f5885 8765 row=triangulo[counter];
chessdsbr 2:32e1e71f5885 8766 if(triangulo[0]==figura_dib[0] && triangulo[1]==figura_dib[1] && triangulo[2]==figura_dib[2] && triangulo[3]==figura_dib[3] && triangulo[4]==figura_dib[4] && triangulo[5]==figura_dib[5] && triangulo[6]==figura_dib[6] && triangulo[7]==figura_dib[7]){
chessdsbr 2:32e1e71f5885 8767 im_escogida=4;
chessdsbr 2:32e1e71f5885 8768 }
chessdsbr 2:32e1e71f5885 8769 break;
chessdsbr 2:32e1e71f5885 8770 case 3:
chessdsbr 2:32e1e71f5885 8771 row=rombo[counter];
chessdsbr 2:32e1e71f5885 8772 if(rombo[0]==figura_dib[0] && rombo[1]==figura_dib[1] && rombo[2]==figura_dib[2] && rombo[3]==figura_dib[3] && rombo[4]==figura_dib[4] && rombo[5]==figura_dib[5] && rombo[6]==figura_dib[6] && rombo[7]==figura_dib[7]){
chessdsbr 2:32e1e71f5885 8773 im_escogida=4;
chessdsbr 2:32e1e71f5885 8774 }
chessdsbr 2:32e1e71f5885 8775 break;
chessdsbr 2:32e1e71f5885 8776 case 4:
chessdsbr 2:32e1e71f5885 8777 row=feliz[counter];
chessdsbr 2:32e1e71f5885 8778 break;
chessdsbr 2:32e1e71f5885 8779 }
chessdsbr 2:32e1e71f5885 8780 /////////
chessdsbr 2:32e1e71f5885 8781 if(perder==1){
chessdsbr 2:32e1e71f5885 8782 row=triste[counter];
chessdsbr 2:32e1e71f5885 8783 }
chessdsbr 2:32e1e71f5885 8784 /////////
chessdsbr 2:32e1e71f5885 8785 row_2= figura_dib[counter];
chessdsbr 2:32e1e71f5885 8786 switch (counter){
chessdsbr 2:32e1e71f5885 8787 case 0:
chessdsbr 2:32e1e71f5885 8788 colum=0x01;
chessdsbr 2:32e1e71f5885 8789 colum_2=0x01;
chessdsbr 2:32e1e71f5885 8790 break;
chessdsbr 2:32e1e71f5885 8791 case 1:
chessdsbr 2:32e1e71f5885 8792 colum=0x02;
chessdsbr 2:32e1e71f5885 8793 colum_2=0x02;
chessdsbr 2:32e1e71f5885 8794 break;
chessdsbr 2:32e1e71f5885 8795 case 2:
chessdsbr 2:32e1e71f5885 8796 colum=0x04;
chessdsbr 2:32e1e71f5885 8797 colum_2=0x04;
chessdsbr 2:32e1e71f5885 8798 break;
chessdsbr 2:32e1e71f5885 8799 case 3:
chessdsbr 2:32e1e71f5885 8800 colum=0x08;
chessdsbr 2:32e1e71f5885 8801 colum_2=0x08;
chessdsbr 2:32e1e71f5885 8802 break;
chessdsbr 2:32e1e71f5885 8803 case 4:
chessdsbr 2:32e1e71f5885 8804 colum=0x10;
chessdsbr 2:32e1e71f5885 8805 colum_2=0x10;
chessdsbr 2:32e1e71f5885 8806 break;
chessdsbr 2:32e1e71f5885 8807 case 5:
chessdsbr 2:32e1e71f5885 8808 colum=0x20;
chessdsbr 2:32e1e71f5885 8809 colum_2=0x20;
chessdsbr 2:32e1e71f5885 8810 break;
chessdsbr 2:32e1e71f5885 8811 case 6:
chessdsbr 2:32e1e71f5885 8812 colum=0x40;
chessdsbr 2:32e1e71f5885 8813 colum_2=0x40;
chessdsbr 2:32e1e71f5885 8814 break;
chessdsbr 2:32e1e71f5885 8815 case 7:
chessdsbr 2:32e1e71f5885 8816 colum=0x80;
chessdsbr 2:32e1e71f5885 8817 colum_2=0x80;
chessdsbr 2:32e1e71f5885 8818 break;
chessdsbr 2:32e1e71f5885 8819 }
chessdsbr 2:32e1e71f5885 8820 counter++;
chessdsbr 2:32e1e71f5885 8821 if(counter==8)counter=0;
chessdsbr 2:32e1e71f5885 8822 }
mbed_official 0:bdbd3d6fc5d5 8823
chessdsbr 2:32e1e71f5885 8824 int main()
chessdsbr 2:32e1e71f5885 8825 {
chessdsbr 2:32e1e71f5885 8826 FILE *wave_file;
chessdsbr 2:32e1e71f5885 8827
chessdsbr 2:32e1e71f5885 8828 // wave_file=fopen("/sd/pista1.wav","r");
chessdsbr 2:32e1e71f5885 8829 // waver.play(wave_file);
chessdsbr 2:32e1e71f5885 8830 // fclose(wave_file);
chessdsbr 2:32e1e71f5885 8831
chessdsbr 2:32e1e71f5885 8832 columna.attach(&visualiza,0.00208333333333333333333333333333);
chessdsbr 2:32e1e71f5885 8833 imagen.attach(&cambio,0.70);
chessdsbr 2:32e1e71f5885 8834 pc.baud(9600);
chessdsbr 2:32e1e71f5885 8835 pc.attach(&receivedByte);
chessdsbr 2:32e1e71f5885 8836
chessdsbr 2:32e1e71f5885 8837 lcd.cls(); //Limpia el LCD
chessdsbr 2:32e1e71f5885 8838 lcd.locate(0, 0); //Posiciona en columna 2, fila 0)
chessdsbr 2:32e1e71f5885 8839 lcd.printf("Tiempo de juego"); //Imprime en LCD "Reloj digital"
chessdsbr 2:32e1e71f5885 8840 while(true) {
chessdsbr 2:32e1e71f5885 8841 reloj();
chessdsbr 2:32e1e71f5885 8842 if(im_escogida==1||im_escogida==2||im_escogida==3){
chessdsbr 2:32e1e71f5885 8843 seg1++; //Inician el primer contador de unidades de segundo
chessdsbr 2:32e1e71f5885 8844 wait(1); //Genera tiempo de un segundo
chessdsbr 2:32e1e71f5885 8845 if (seg1==10){
chessdsbr 2:32e1e71f5885 8846 seg2++;//Contador décimas de segundo
chessdsbr 2:32e1e71f5885 8847 seg1=0;
chessdsbr 2:32e1e71f5885 8848 if (seg2==6){
chessdsbr 2:32e1e71f5885 8849 min1++;//Contador unidades de minuto
chessdsbr 2:32e1e71f5885 8850 seg2=0;
chessdsbr 2:32e1e71f5885 8851 if (min1==3){
chessdsbr 2:32e1e71f5885 8852 perder=1;
chessdsbr 2:32e1e71f5885 8853 pc.printf("/\r\n");
chessdsbr 2:32e1e71f5885 8854 wait(0.1);
chessdsbr 2:32e1e71f5885 8855 // wait(20);
chessdsbr 2:32e1e71f5885 8856 wave_file=fopen("/sd/perdio.wav","r");
chessdsbr 2:32e1e71f5885 8857 waver.play(wave_file);
chessdsbr 2:32e1e71f5885 8858 fclose(wave_file);
chessdsbr 2:32e1e71f5885 8859 //
chessdsbr 2:32e1e71f5885 8860 perder=0;
chessdsbr 2:32e1e71f5885 8861 cambio_im=1;
chessdsbr 2:32e1e71f5885 8862 im_escogida=0;
chessdsbr 2:32e1e71f5885 8863 }
chessdsbr 2:32e1e71f5885 8864 }
chessdsbr 2:32e1e71f5885 8865 }
chessdsbr 2:32e1e71f5885 8866 }
chessdsbr 2:32e1e71f5885 8867 if(im_escogida==0){
chessdsbr 2:32e1e71f5885 8868 seg1=0;
chessdsbr 2:32e1e71f5885 8869 seg2=0;
chessdsbr 2:32e1e71f5885 8870 min1=0;
chessdsbr 2:32e1e71f5885 8871 perder=0;
chessdsbr 2:32e1e71f5885 8872 //
chessdsbr 2:32e1e71f5885 8873 wave_file=fopen("/sd/pista1.wav","r");
chessdsbr 2:32e1e71f5885 8874 waver.play(wave_file);
chessdsbr 2:32e1e71f5885 8875 fclose(wave_file);
chessdsbr 2:32e1e71f5885 8876 //
chessdsbr 2:32e1e71f5885 8877 }
chessdsbr 2:32e1e71f5885 8878 if(im_escogida==4){
chessdsbr 2:32e1e71f5885 8879 pc.printf("*\r\n");
chessdsbr 2:32e1e71f5885 8880 wait(0.1);
chessdsbr 2:32e1e71f5885 8881 // wait(20);
chessdsbr 2:32e1e71f5885 8882 wave_file=fopen("/sd/gano.wav","r");
chessdsbr 2:32e1e71f5885 8883 waver.play(wave_file);
chessdsbr 2:32e1e71f5885 8884 fclose(wave_file);
chessdsbr 2:32e1e71f5885 8885 //
chessdsbr 2:32e1e71f5885 8886 cambio_im=1;
chessdsbr 2:32e1e71f5885 8887 im_escogida=0;
chessdsbr 2:32e1e71f5885 8888 }
mbed_official 0:bdbd3d6fc5d5 8889 }
chessdsbr 2:32e1e71f5885 8890 }