├── pinouts.png ├── StufaLCD.png ├── StufaRXD.bmp ├── schematic.png ├── StufaSerialLine.bmp ├── esp_eagle ├── Untitled.pdf ├── eagle.epf ├── Untitled.pro ├── Untitled.sol ├── Untitled.brd └── Untitled.ps ├── README.md ├── StufaLogic.ino ├── arduino-relay └── stufaRelay.ino ├── StufaLCD.ino └── LICENSE /pinouts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k3a/MicronovaPelletStoveController/HEAD/pinouts.png -------------------------------------------------------------------------------- /StufaLCD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k3a/MicronovaPelletStoveController/HEAD/StufaLCD.png -------------------------------------------------------------------------------- /StufaRXD.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k3a/MicronovaPelletStoveController/HEAD/StufaRXD.bmp -------------------------------------------------------------------------------- /schematic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k3a/MicronovaPelletStoveController/HEAD/schematic.png -------------------------------------------------------------------------------- /StufaSerialLine.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k3a/MicronovaPelletStoveController/HEAD/StufaSerialLine.bmp -------------------------------------------------------------------------------- /esp_eagle/Untitled.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k3a/MicronovaPelletStoveController/HEAD/esp_eagle/Untitled.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # MicronovaPelletStoveController 2 | My code and stuff to use when controlling Micronova Pellet Stove Controllers. Stufa a pellet Idro Aria telecomando. 3 | 4 | Read the [full blog post](http://k3a.me/ir-controller-for-pellet-stove-with-micronova-controller-stufe-e-pellet-aria-ir-telecomando/). 5 | -------------------------------------------------------------------------------- /esp_eagle/eagle.epf: -------------------------------------------------------------------------------- 1 | [Eagle] 2 | Version="07 07 00" 3 | Platform="Linux" 4 | Serial="62191E841E-LSR-WLM-1EL" 5 | Globals="Globals" 6 | Desktop="Desktop" 7 | 8 | [Globals] 9 | AutoSaveProject=1 10 | 11 | [Win_1] 12 | Type="Control Panel" 13 | Loc="61 643 660 1042" 14 | State=2 15 | Number=0 16 | 17 | [Desktop] 18 | Screen="1920 1080" 19 | Window="Win_1" 20 | -------------------------------------------------------------------------------- /StufaLogic.ino: -------------------------------------------------------------------------------- 1 | /* untested code */ 2 | const int LED_pin = 13; 3 | const int IN_pin = 2; 4 | const int OUT_pin = 3; 5 | 6 | void in_rise() 7 | { 8 | pinMode(OUT_pin, INPUT); 9 | 10 | digitalWrite(LED_pin, LOW); 11 | } 12 | 13 | void in_fall() 14 | { 15 | pinMode(OUT_pin, OUTPUT); 16 | digitalWrite(OUT_pin, LOW); 17 | 18 | digitalWrite(LED_pin, HIGH); 19 | } 20 | 21 | void in_change() 22 | { 23 | if (digitalRead(IN_pin) == HIGH) 24 | in_rise(); 25 | else 26 | in_fall(); 27 | } 28 | 29 | void setup() { 30 | pinMode(LED_pin, OUTPUT); 31 | 32 | pinMode(IN_pin, INPUT); 33 | attachInterrupt(digitalPinToInterrupt(IN_pin), in_change, CHANGE); 34 | 35 | pinMode(OUT_pin, INPUT); 36 | } 37 | 38 | void loop() { 39 | /* digitalWrite(LED_pin, HIGH); 40 | delay(2000); 41 | digitalWrite(LED_pin, LOW); 42 | delay(2000);*/ 43 | } 44 | -------------------------------------------------------------------------------- /esp_eagle/Untitled.pro: -------------------------------------------------------------------------------- 1 | EAGLE AutoRouter Statistics: 2 | 3 | Job : /Users/kexik/Documents/eagle/ESP_Stufa/Untitled.brd 4 | 5 | Start at : 22:35:14 (19.10.2015) 6 | End at : 22:35:19 (19.10.2015) 7 | Elapsed time : 00:00:00 8 | 9 | Signals : 11 RoutingGrid: 25 mil Layers: 1 10 | Connections : 26 predefined: 23 ( 0 Vias ) 11 | 12 | Router memory : 10944 13 | 14 | Passname : Busses Route Optimize1 Optimize2 Optimize3 Optimize4 15 | 16 | Time per pass : 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 17 | Number of Ripups : 0 0 0 0 0 0 18 | max. Level : 0 1 0 0 0 0 19 | max. Total : 0 0 0 0 0 0 20 | 21 | Routed : 0 1 1 1 1 1 22 | Vias : 0 0 0 0 0 0 23 | Resolution : 88.5 % 92.3 % 92.3 % 92.3 % 92.3 % 92.3 % 24 | 25 | Final : 26 | -------------------------------------------------------------------------------- /arduino-relay/stufaRelay.ino: -------------------------------------------------------------------------------- 1 | /* 2 | Example Arduiono sketch to turn on and off the stove in 3 | a similar way to how a relay work. 4 | 5 | It watches logic level on pin defined as INPUT_PIN and on: 6 | - change from HIGH to LOW: turns on the store by sending 7 | 0x80 0x21 0x01 0xA2 8 | - change from LOW to HIGH: turns off the stove by sending 9 | 0x80 0x21 0x00 0xA2 10 | 11 | It expects HIGH to be initial state. 12 | 13 | To improve reliability of contact you can add a 10 kOhm resistor from 14 | INPUT_PIN to +5V (to help it more towards high state). 15 | 16 | Copyright 2018 www.K3A.me 17 | License MIT (you can use it freely in your derived projects) 18 | */ 19 | 20 | #define LED_PIN 13 // DEBUG LED (default: pin D13 for Arduino nano) 21 | #define INPUT_PIN 2 // PIN TO WATCH (default: pin D2) 22 | 23 | volatile byte state = HIGH; 24 | 25 | enum RwmsType { 26 | RWMS_RAM = 0x00, 27 | RWMS_EEPROM = 0x20, 28 | }; 29 | 30 | void debug_blink() 31 | { 32 | pinMode(LED_PIN, OUTPUT); 33 | digitalWrite(LED_PIN, HIGH); 34 | delay(100); 35 | digitalWrite(LED_PIN, LOW); 36 | delay(100); 37 | digitalWrite(LED_PIN, HIGH); 38 | delay(300); 39 | digitalWrite(LED_PIN, LOW); 40 | delay(300); 41 | } 42 | 43 | // Sends serial data using micronova's protocol and verifies response. 44 | // Returns true on successful response. 45 | bool sendRwms(RwmsType type, uint16_t address, byte value) { 46 | byte packet[4]; 47 | packet[0] = 0x80 + type + ((address>>8)&0xff); 48 | packet[1] = address & 0xff; 49 | packet[2] = value; 50 | packet[3] = (packet[0]+packet[1]+packet[2])&0xff; //checksum 51 | Serial.write(packet, sizeof(packet)); 52 | 53 | byte resp[2]; 54 | if (Serial.readBytes(resp, sizeof(resp)) == sizeof(resp)) { 55 | return resp[0] == packet[1] && resp[1] == packet[2]; 56 | } 57 | 58 | return false; 59 | } 60 | 61 | void turnOn() { 62 | debug_blink(); 63 | sendRwms(RWMS_RAM, 0x21, 1); 64 | delay(10000); // block for some time 65 | } 66 | 67 | void turnOff() { 68 | debug_blink(); 69 | sendRwms(RWMS_RAM, 0x21, 0); 70 | delay(10000); // block for some time 71 | } 72 | 73 | void setup() { 74 | // serup serial to 1200 baud 8N2 75 | Serial.begin(1200, SERIAL_8N2); 76 | 77 | // set INPUT_PIN as input 78 | pinMode(INPUT_PIN, INPUT_PULLUP); 79 | } 80 | 81 | void loop() { 82 | // read pin state 83 | byte val = digitalRead(INPUT_PIN); 84 | 85 | // if the current pin state is different to the known one 86 | if (val != state) { 87 | state = val; 88 | 89 | if (val == LOW) { 90 | // turn on if pin is LOW (0V) 91 | turnOn(); 92 | } else { 93 | // turn off if pin is HIGH (~3 - 5V) 94 | turnOff(); 95 | } 96 | } 97 | 98 | delay(1000); // wait for 1 second before checking again 99 | } 100 | -------------------------------------------------------------------------------- /esp_eagle/Untitled.sol: -------------------------------------------------------------------------------- 1 | %!PS-Adobe-3.0 EPSF-3.0 2 | %%Title: EAGLE Drawing /Users/kexik/Documents/eagle/ESP_Stufa/Untitled.brd 3 | %%Creator: EAGLE 4 | %%Pages: 1 5 | %%BoundingBox: 0 0 187 91 6 | %%EndComments 7 | 8 | % Coordinate transfer: 9 | 10 | /EU { 254 div 0.072 mul } def 11 | /inch { 72 mul } def 12 | 13 | % Linestyle: 14 | 15 | 1 setlinecap 16 | 1 setlinejoin 17 | 18 | % Drawing functions: 19 | 20 | /l { % draw a line 21 | /lw exch def 22 | /y2 exch def 23 | /x2 exch def 24 | /y1 exch def 25 | /x1 exch def 26 | newpath 27 | x1 EU y1 EU moveto 28 | x2 EU y2 EU lineto 29 | lw EU setlinewidth 30 | stroke 31 | } def 32 | 33 | /h { % draw a hole 34 | /d exch def 35 | /y exch def 36 | /x exch def 37 | d 0 gt { 38 | newpath 39 | x EU y EU d 2 div EU 0 360 arc 40 | currentgray dup 41 | 1 exch sub setgray 42 | fill 43 | setgray 44 | } if 45 | } def 46 | 47 | /b { % draw a bar 48 | /an exch def 49 | /y2 exch def 50 | /x2 exch def 51 | /y1 exch def 52 | /x1 exch def 53 | /w2 x2 x1 sub 2 div EU def 54 | /h2 y2 y1 sub 2 div EU def 55 | gsave 56 | x1 x2 add 2 div EU y1 y2 add 2 div EU translate 57 | an rotate 58 | newpath 59 | w2 h2 moveto 60 | w2 neg h2 lineto 61 | w2 neg h2 neg lineto 62 | w2 h2 neg lineto 63 | closepath 64 | fill 65 | grestore 66 | } def 67 | 68 | /c { % draw a circle 69 | /lw exch def 70 | /rd exch def 71 | /y exch def 72 | /x exch def 73 | newpath 74 | lw EU setlinewidth 75 | x EU y EU rd EU 0 360 arc 76 | stroke 77 | } def 78 | 79 | /a { % draw an arc 80 | /lc exch def 81 | /ae exch def 82 | /as exch def 83 | /lw exch def 84 | /rd exch def 85 | /y exch def 86 | /x exch def 87 | lw rd 2 mul gt { 88 | /rd rd lw 2 div add 2 div def 89 | /lw rd 2 mul def 90 | } if 91 | currentlinecap currentlinejoin 92 | lc setlinecap 0 setlinejoin 93 | newpath 94 | lw EU setlinewidth 95 | x EU y EU rd EU as ae arc 96 | stroke 97 | setlinejoin setlinecap 98 | } def 99 | 100 | /p { % draw a pie 101 | /d exch def 102 | /y exch def 103 | /x exch def 104 | newpath 105 | x EU y EU d 2 div EU 0 360 arc 106 | fill 107 | } def 108 | 109 | /edge { 0.20710678119 mul } def 110 | 111 | /o { % draw an octagon 112 | /an exch def 113 | /dy exch def 114 | /dx exch def 115 | /y exch def 116 | /x exch def 117 | gsave 118 | x EU y EU translate 119 | an dx dy lt { 90 add /dx dy /dy dx def def } if rotate 120 | newpath 121 | 0 dx 2 div sub EU 0 dy edge add EU moveto 122 | 0 dx dy sub 2 div sub dy edge sub EU 0 dy 2 div add EU lineto 123 | 0 dx dy sub 2 div add dy edge add EU 0 dy 2 div add EU lineto 124 | 0 dx 2 div add EU 0 dy edge add EU lineto 125 | 0 dx 2 div add EU 0 dy edge sub EU lineto 126 | 0 dx dy sub 2 div add dy edge add EU 0 dy 2 div sub EU lineto 127 | 0 dx dy sub 2 div sub dy edge sub EU 0 dy 2 div sub EU lineto 128 | 0 dx 2 div sub EU 0 dy edge sub EU lineto 129 | closepath 130 | fill 131 | grestore 132 | } def 133 | 134 | 0 0 580000 0 0 l 135 | 580000 0 580000 310000 0 l 136 | 580000 310000 0 310000 0 l 137 | 0 310000 0 0 0 l 138 | 97962 90412 116758 109208 90.0 b 139 | 107360 127510 18796 p 140 | 107360 155210 18796 p 141 | 107360 182910 18796 p 142 | 107360 210610 18796 p 143 | 78960 113710 18796 p 144 | 78960 141410 18796 p 145 | 78960 169010 18796 p 146 | 78960 196710 18796 p 147 | 93160 30210 50800 p 148 | 93160 280210 50800 p 149 | 340388 37888 354612 52112 0.0 b 150 | 347500 45000 347500 95000 5000 l 151 | 340388 87888 354612 102112 0.0 b 152 | 320388 87888 334612 102112 0.0 b 153 | 327500 95000 327500 45000 5000 l 154 | 320388 37888 334612 52112 0.0 b 155 | 107360 99810 10160 h 156 | 107360 127510 10160 h 157 | 107360 155210 10160 h 158 | 107360 182910 10160 h 159 | 107360 210610 10160 h 160 | 78960 113710 10160 h 161 | 78960 141410 10160 h 162 | 78960 169010 10160 h 163 | 78960 196710 10160 h 164 | 93160 30210 33020 h 165 | 93160 280210 33020 h 166 | 347500 45000 6000 h 167 | 347500 95000 6000 h 168 | 327500 95000 6000 h 169 | 327500 45000 6000 h 170 | -------------------------------------------------------------------------------- /StufaLCD.ino: -------------------------------------------------------------------------------- 1 | // Micronova Pellet Stove Controller Panel Test 2 | // It is a test for 4-line segment LCD 3 | // For more details see http://k3a.me/ir-controller-for-pellet-stove-with-micronova-controller-stufe-e-pellet-aria-ir-telecomando/ 4 | // Licence: GNU GPL v3 5 | 6 | const int SCK_pin = 13; // D2 (out SPI clock) 7 | const int MOSI_pin = 11; // D1 (out SPI data) 8 | const int SS_pin = 2; // A, B, C together (chip select) (high to enable as A=1 B=1 C=1 will cause LCD chip select go LOW) 9 | int frame = 0; 10 | byte charAnim = ' '; 11 | 12 | byte lcdData[45]; 13 | typedef int lcdAlnumSegments[16]; 14 | typedef int lcdNumSegments[9]; 15 | typedef byte lcdAlnumBits[16]; 16 | typedef byte lcdNumBits[9]; 17 | 18 | // status lines (left, top first row, top second row) 19 | int lcdLines[15] = {155, 153, 156, 150, 116, 117, 30, 37, 190, 197, 276, 313, 316, 317, 310}; 20 | // signal symbol: 277 21 | 22 | // -------- NUMERIC PART ------------------ 23 | 24 | // mapping to byte index and bit index 25 | // 12 numeric characters (starting first row from left, second row follows) 26 | lcdNumSegments lcdNum[12] = { {401, 403, 406, 407, 405, 402, 404, -1, 400}, 27 | {411, 413, 416, 417, 415, 412, 414, -1, 410}, 28 | {421, 423, 426, 427, 425, 422, 424, 420, -1}, 29 | {431, 433, 436, 437, 435, 432, 434, 430, -1}, 30 | 31 | {327, 326, 323, 321, 322, 325, 324, -1, 320}, 32 | {337, 336, 333, 331, 332, 335, 334, -1, 330}, 33 | {347, 346, 343, 341, 342, 345, 344, 340, -1}, 34 | {357, 356, 353, 351, 352, 355, 354, 350, -1}, 35 | {367, 366, 363, 361, 362, 365, 364, -1, 360}, 36 | {377, 376, 373, 371, 372, 375, 374, -1, 370}, 37 | {387, 386, 383, 381, 382, 385, 384, 380, -1}, 38 | {397, 396, 393, 391, 392, 395, 394, 390, -1}}; 39 | 40 | // charmap 41 | lcdNumBits bitsNum[] = { 42 | {0, 0, 0, 0, 0, 0, 0, 0, 0}, // 43 | {1, 1, 1, 1, 1, 1, 0, 0, 0}, //0 44 | {0, 1, 1, 0, 0, 0, 0, 0, 0}, //1 45 | {1, 1, 0, 1, 1, 0, 1, 0, 0}, //2 46 | {1, 1, 1, 1, 0, 0, 1, 0, 0}, //3 47 | {0, 1, 1, 0, 0, 1, 1, 0, 0}, //4 48 | {1, 0, 1, 1, 0, 1, 1, 0, 0}, //5 49 | {1, 0, 1, 1, 1, 1, 1, 0, 0}, //6 50 | {1, 1, 1, 0, 0, 0, 0, 0, 0}, //7 51 | {1, 1, 1, 1, 1, 1, 1, 0, 0}, //8 52 | {1, 1, 1, 1, 0, 1, 1, 0, 0}, //9 53 | {1, 1, 1, 0, 1, 1, 1, 0, 0}, //A 54 | {0, 0, 1, 1, 1, 1, 1, 0, 0}, //B 55 | {1, 0, 0, 1, 1, 1, 0, 0, 0}, //C 56 | {0, 1, 1, 1, 1, 0, 1, 0, 0}, //D 57 | {1, 0, 0, 1, 1, 1, 1, 0, 0}, //E 58 | {1, 0, 0, 0, 1, 1, 1, 0, 0}, //F 59 | {1, 1, 1, 1, 0, 1, 1, 0, 0}, //G 60 | {0, 1, 1, 0, 1, 1, 1, 0, 0}, //H 61 | {0, 0, 0, 0, 1, 1, 0, 0, 0}, //I 62 | {1, 1, 1, 1, 0, 0, 0, 0, 0}, //J 63 | {0, 0, 0, 1, 1, 1, 0, 0, 0}, //K 64 | {0, 0, 0, 1, 1, 1, 0, 0, 0}, //L 65 | {1, 0, 1, 0, 1, 0, 0, 0, 0}, //M 66 | {0, 0, 1, 0, 1, 0, 1, 0, 0}, //N 67 | {1, 1, 1, 1, 1, 1, 0, 0, 0}, //O 68 | {1, 1, 0, 0, 1, 1, 1, 0, 0}, //P 69 | {1, 1, 1, 0, 0, 1, 1, 0, 0}, //Q 70 | {0, 0, 0, 0, 1, 0, 1, 0, 0}, //R 71 | {1, 0, 1, 1, 0, 1, 1, 0, 0}, //S 72 | {0, 0, 0, 1, 1, 1, 1, 0, 0}, //T 73 | {0, 1, 1, 1, 1, 1, 0, 0, 0}, //U 74 | {0, 0, 1, 1, 1, 0, 0, 0, 0}, //V 75 | {0, 1, 0, 1, 0, 1, 0, 0, 0}, //W 76 | {0, 1, 1, 0, 0, 0, 1, 0, 0}, //X 77 | {0, 1, 1, 1, 0, 1, 1, 0, 0}, //Y 78 | {0, 1, 0, 0, 1, 0, 1, 0, 0}, //Z 79 | {1, 1, 0, 0, 0, 0, 1, 0, 0}, //c 80 | }; 81 | 82 | // --------- ALPHANUMERIC PART -------------- 83 | 84 | // mapping to byte index and bit index 85 | // 16 alphanumeric LCD characters (starting first row from left, second row follows) 86 | lcdAlnumSegments lcdAlnum[16] = {{10, 31, 32, 23, 3, 0, 11, 20, 21, 22, 12, 13, 2, 1, -1, 33}, //0 87 | {50, 71, 72, 63, 43, 40, 51, 60, 61, 62, 52, 53, 42, 41, 70, 73}, //1 88 | {90, 111, 112, 103, 83, 80, 91, 100, 101, 102, 92, 93, 82, 81, 110, -1}, //2 89 | {130, 151, 152, 143, 123, 120, 131, 140, 141, 142, 132, 133, 122, 121, -1, -1}, //3 90 | {170, 191, 192, 183, 163, 160, 171, 180, 181, 182, 172, 173, 162, 161, -1, 193}, //4 91 | {210, 231, 232, 223, 203, 200, 211, 220, 221, 222, 212, 213, 202, 201, 230, 233},//5 92 | {250, 271, 272, 263, 243, 240, 251, 260, 261, 262, 252, 253, 242, 241, 270, -1}, //6 93 | {290, 311, 312, 303, 283, 280, 291, 300, 301, 302, 292, 293, 282, 281, -1, -1}, //7 94 | 95 | {14, 34, 35, 27, 7, 4, 15, 24, 25, 26, 16, 17, 6, 5, -1, 36}, //8 96 | {54, 74, 75, 67, 47, 44, 55, 64, 65, 66, 56, 57, 46, 45, 76, 77}, //9 97 | {94, 114, 115, 107, 87, 84, 95, 104, 105, 106, 96, 97, 86, 85, 113, -1}, //10 98 | {134, 154, 155, 147, 127, 124, 135, 144, 145, 146, 136, 137, 126, 125, -1, -1}, //11 99 | {174, 194, 195, 187, 167, 164, 175, 184, 185, 186, 176, 177, 166, 165, -1, 196}, //12 100 | {214, 234, 235, 227, 207, 204, 215, 224, 225, 226, 216, 217, 206, 205, 236, 237},//13 101 | {254, 274, 275, 267, 247, 244, 255, 264, 265, 266, 256, 257, 246, 245, 273, -1}, //14 102 | {294, 314, 315, 307, 287, 284, 295, 304, 305, 306, 296, 297, 286, 285, -1, -1}}; //15 103 | 104 | // ascii char to charMap 105 | byte char2alnum[] { 106 | // from decimal 32 (space) incl. 107 | 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 0, 0, 0, 0, 0, 0, 0, 11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36 108 | }; 109 | // charMap to ascii 110 | byte alnum2char[] { 111 | ' ', '0', '1', '2','3','4','5','6','7','8','9','A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z','c' 112 | }; 113 | // charmap 114 | lcdAlnumBits bitsAlnum[] = { 115 | {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, // 116 | {1, 1, 1, 1, 1, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0}, //0 117 | {0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0}, //1 118 | {1, 1, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0}, //2 119 | {1, 1, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0}, //3 120 | {0, 1, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0}, //4 121 | {1, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0}, //5 may be different 122 | {1, 0, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0}, //6 123 | {1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, //7 124 | {1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0}, //8 125 | {1, 1, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0}, //9 126 | {1, 1, 1, 0, 1, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0}, //A 127 | {1, 1, 1, 1, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0}, //B 128 | {1, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, //C 129 | {1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0}, //D 130 | {1, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0}, //E 131 | {1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0}, //F 132 | {1, 0, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0}, //G 133 | {0, 1, 1, 0, 1, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0}, //H 134 | {1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0}, //I 135 | {0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, //J 136 | {0, 0, 0, 0, 1, 1, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0}, //K 137 | {0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, //L 138 | {0, 1, 1, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0}, //M 139 | {0, 1, 1, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0}, //N 140 | {1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, //O 141 | {1, 1, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0}, //P 142 | {1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0}, //Q 143 | {1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0}, //R 144 | {1, 0, 1, 1, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0}, //S 145 | {1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0}, //T 146 | {0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, //U 147 | {0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0}, //V 148 | {0, 1, 1, 0, 1, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0}, //W 149 | {0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 1, 0, 0}, //X 150 | {0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0}, //Y 151 | {1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0} //Z 152 | }; 153 | 154 | void setup() 155 | { 156 | pinMode(SS_pin, OUTPUT); 157 | pinMode(SCK_pin, OUTPUT); 158 | pinMode(MOSI_pin, OUTPUT); 159 | 160 | digitalWrite(SS_pin, LOW); 161 | digitalWrite(SCK_pin, LOW); 162 | } 163 | 164 | // send 1 to 8 bits 165 | // when numbits < 8, LSB bits are sent 166 | void bitBang(byte _send, int numbits=8) 167 | { 168 | byte _receive = 0; 169 | 170 | for(int i=numbits-1; i>=0; i--) 171 | { 172 | digitalWrite(MOSI_pin, bitRead(_send, i)); 173 | digitalWrite(SCK_pin, HIGH); 174 | digitalWrite(SCK_pin, LOW); 175 | } 176 | } 177 | 178 | void WriteChar(unsigned pos, char chr) 179 | { 180 | if (pos > 15) 181 | pos = 15; 182 | 183 | unsigned char uchr = *(unsigned char*)&chr; 184 | lcdAlnumBits& b = bitsAlnum[ char2alnum[uchr-32]]; 185 | lcdAlnumSegments& s = lcdAlnum[pos]; 186 | 187 | for (int i=0; i<16; ++i) 188 | if (b[i]) 189 | { 190 | int bpos = s[i]; 191 | if (bpos >=0) 192 | { 193 | int byteid = bpos/10; 194 | int bitpos = bpos%10; 195 | lcdData[byteid] |= 1 << bitpos; 196 | } 197 | } 198 | } 199 | 200 | void WriteCharStr(int line, const char* str) 201 | { 202 | int len = strlen(str); 203 | if (len>8) 204 | len = 8; 205 | 206 | for (int i=0; i 11) 213 | pos = 11; 214 | 215 | unsigned char uchr = *(unsigned char*)&chr; 216 | lcdNumBits& b = bitsNum[ char2alnum[uchr-32]]; 217 | lcdNumSegments& s = lcdNum[pos]; 218 | 219 | for (int i=0; i<9; ++i) 220 | if (b[i]) 221 | { 222 | int bpos = s[i]; 223 | if (bpos >=0) 224 | { 225 | int byteid = bpos/10; 226 | int bitpos = bpos%10; 227 | lcdData[byteid] |= 1 << bitpos; 228 | } 229 | } 230 | } 231 | 232 | void WriteNumStr(int line, const char* str) 233 | { 234 | int len = strlen(str); 235 | if (line == 0 && len>4) 236 | len = 4; 237 | else if (line == 1 && len>8) 238 | len = 8; 239 | 240 | for (int i=0; i 'Z') 260 | charAnim = ' '; 261 | #endif 262 | 263 | #if WHAT_TO_TEST == TEST_WRITING_LINES 264 | WriteNumStr(0, "AZ10"); 265 | WriteNumStr(1, "01234567"); 266 | WriteCharStr(0, "ABCDEFGH"); 267 | WriteCharStr(1, "1234590Z"); 268 | #endif 269 | 270 | digitalWrite(SCK_pin, HIGH); 271 | digitalWrite(SS_pin, LOW); 272 | digitalWrite(SS_pin, HIGH); 273 | 274 | bitBang(0b11000, 5); 275 | bitBang(0b00000110); 276 | 277 | digitalWrite(SCK_pin, HIGH); 278 | digitalWrite(SS_pin, LOW); 279 | digitalWrite(SS_pin, HIGH); 280 | 281 | bitBang(0b11000, 5); 282 | bitBang(0b00000010); 283 | 284 | digitalWrite(SCK_pin, HIGH); 285 | digitalWrite(SS_pin, LOW); 286 | delayMicroseconds(1); 287 | digitalWrite(SS_pin, HIGH); 288 | 289 | bitBang(0b110, 3); 290 | bitBang(0b10000000); //-------------------------- 291 | 292 | // 45 bytes of segment bits follow 293 | 294 | // animating segments 295 | #if WHAT_TO_TEST == TEST_SEGMENTS 296 | /* const int row = 19; // specify row (byte) index: min 0, max 44 incl 297 | for(int i=0; i 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | {one line to give the program's name and a brief idea of what it does.} 635 | Copyright (C) {year} {name of author} 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | {project} Copyright (C) {year} {fullname} 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | 676 | -------------------------------------------------------------------------------- /esp_eagle/Untitled.brd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | StufaCtrl 148 | v2.0 149 | 2015 150 | www.k3a.me 151 | 152 | 153 | 154 | <h3>SparkFun Electronics' preferred foot prints</h3> 155 | In this library you'll find connectors and sockets- basically anything that can be plugged into or onto.<br><br> 156 | We've spent an enormous amount of time creating and checking these footprints and parts, but it is the end user's responsibility to ensure correctness and suitablity for a given componet or application. If you enjoy using this library, please buy one of our products at www.sparkfun.com. 157 | <br><br> 158 | <b>Licensing:</b> Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/ 159 | <br><br> 160 | You are welcome to use this library for commercial purposes. For attribution, we ask that when you begin to sell your device using our footprint, you email us with a link to the product being sold. We want bragging rights that we helped (in a very small part) to create your 8th world wonder. We would like the opportunity to feature your device on our homepage. 161 | 162 | 163 | <b>SUB-D</b> 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | >NAME 189 | >VALUE 190 | 191 | 192 | 193 | 194 | <h3>SparkFun Electronics' preferred foot prints</h3> 195 | In this library you'll find discrete semiconductors- transistors, diodes, TRIACs, optoisolators, etc.<br><br> 196 | We've spent an enormous amount of time creating and checking these footprints and parts, but it is the end user's responsibility to ensure correctness and suitablity for a given componet or application. If you enjoy using this library, please buy one of our products at www.sparkfun.com. 197 | <br><br> 198 | <b>Licensing:</b> Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/ 199 | <br><br> 200 | You are welcome to use this library for commercial purposes. For attribution, we ask that when you begin to sell your device using our footprint, you email us with a link to the product being sold. We want bragging rights that we helped (in a very small part) to create your 8th world wonder. We would like the opportunity to feature your device on our homepage. 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | >NAME 215 | >VALUE 216 | 217 | 218 | 219 | 220 | <h3>SparkFun Electronics' preferred foot prints</h3> 221 | In this library you'll find resistors, capacitors, inductors, test points, jumper pads, etc.<br><br> 222 | We've spent an enormous amount of time creating and checking these footprints and parts, but it is the end user's responsibility to ensure correctness and suitablity for a given componet or application. If you enjoy using this library, please buy one of our products at www.sparkfun.com. 223 | <br><br> 224 | <b>Licensing:</b> Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/ 225 | <br><br> 226 | You are welcome to use this library for commercial purposes. For attribution, we ask that when you begin to sell your device using our footprint, you email us with a link to the product being sold. We want bragging rights that we helped (in a very small part) to create your 8th world wonder. We would like the opportunity to feature your device on our homepage. 227 | 228 | 229 | 230 | 231 | 232 | 233 | >NAME 234 | >VALUE 235 | 236 | 237 | 238 | 239 | 240 | 241 | 242 | 243 | 244 | 245 | 246 | 247 | 248 | 249 | 250 | 251 | 252 | 253 | 254 | 255 | 256 | 257 | 258 | 259 | 260 | 261 | >NAME 262 | 263 | 264 | 265 | 266 | 267 | 268 | 269 | 270 | 271 | 272 | 273 | 274 | 275 | 276 | 277 | 278 | 279 | 280 | 281 | 282 | 283 | 284 | 285 | 286 | D-SUN 287 | REGULATOR 288 | 289 | 290 | 291 | 292 | <b>Diodes</b><p> 293 | Based on the following sources: 294 | <ul> 295 | <li>Motorola : www.onsemi.com 296 | <li>Fairchild : www.fairchildsemi.com 297 | <li>Philips : www.semiconductors.com 298 | <li>Vishay : www.vishay.de 299 | </ul> 300 | <author>Created by librarian@cadsoft.de</author> 301 | 302 | 303 | <b>Mini Melf Diode</b> 304 | 305 | 306 | 307 | 308 | 309 | 310 | 311 | >NAME 312 | >VALUE 313 | 314 | 315 | 316 | 317 | 318 | 319 | 320 | 321 | 322 | 323 | 324 | 325 | 326 | 327 | 328 | 329 | <b>EAGLE Design Rules</b> 330 | <p> 331 | Die Standard-Design-Rules sind so gewählt, dass sie für 332 | die meisten Anwendungen passen. Sollte ihre Platine 333 | besondere Anforderungen haben, treffen Sie die erforderlichen 334 | Einstellungen hier und speichern die Design Rules unter 335 | einem neuen Namen ab. 336 | <b>EAGLE Design Rules</b> 337 | <p> 338 | The default Design Rules have been set to cover 339 | a wide range of applications. Your particular design 340 | may have different requirements, so please make the 341 | necessary adjustments and save your customized 342 | design rules under a new name. 343 | 344 | 345 | 346 | 347 | 348 | 349 | 350 | 351 | 352 | 353 | 354 | 355 | 356 | 357 | 358 | 359 | 360 | 361 | 362 | 363 | 364 | 365 | 366 | 367 | 368 | 369 | 370 | 371 | 372 | 373 | 374 | 375 | 376 | 377 | 378 | 379 | 380 | 381 | 382 | 383 | 384 | 385 | 386 | 387 | 388 | 389 | 390 | 391 | 392 | 393 | 394 | 395 | 396 | 397 | 398 | 399 | 400 | 401 | 402 | 403 | 404 | 405 | 406 | 407 | 408 | 409 | 410 | 411 | 412 | 413 | 414 | 415 | 416 | 417 | 418 | 419 | 420 | 421 | 422 | 423 | 424 | 425 | 426 | 427 | 428 | 429 | 430 | 431 | 432 | 433 | 434 | 435 | 436 | 437 | 438 | 439 | 440 | 441 | 442 | 443 | 444 | 445 | 446 | 447 | 448 | 449 | 450 | 451 | 452 | 453 | 454 | 455 | 456 | 457 | 458 | 459 | 460 | 461 | 462 | 463 | 464 | 465 | 466 | 467 | 468 | 469 | 470 | 471 | 472 | 473 | 474 | 475 | 476 | 477 | 478 | 479 | 480 | 481 | 482 | 483 | 484 | 485 | 486 | 487 | 488 | 489 | 490 | 491 | 492 | 493 | 494 | 495 | 496 | 497 | 498 | 499 | 500 | 501 | 502 | 503 | 504 | 505 | 506 | 507 | 508 | 509 | 510 | 511 | 512 | 513 | 514 | 515 | 516 | 517 | 518 | 519 | 520 | 521 | 522 | 523 | 524 | 525 | 526 | 527 | 528 | 529 | 530 | 531 | 532 | 533 | 534 | 535 | 536 | 537 | 538 | 539 | 540 | 541 | 542 | 543 | 544 | 545 | 546 | 547 | 548 | 549 | 550 | 551 | 552 | 553 | 554 | 555 | 556 | 557 | 558 | 559 | 560 | 561 | 562 | 563 | 564 | 565 | 566 | 567 | 568 | 569 | 570 | 571 | 572 | 573 | 574 | 575 | 576 | 577 | 578 | 579 | 580 | 581 | 582 | 583 | 584 | 585 | 586 | 587 | 588 | 589 | 590 | 591 | 592 | 593 | 594 | 595 | 596 | 597 | 598 | 599 | 600 | 601 | 602 | 603 | 604 | 605 | 606 | 607 | 608 | 609 | 610 | 611 | 612 | 613 | 614 | 615 | 616 | 617 | 618 | 619 | 620 | 621 | 622 | 623 | 624 | 625 | 626 | 627 | 628 | 629 | 630 | 631 | 632 | 633 | 634 | 635 | 636 | 637 | 638 | 639 | 640 | 641 | 642 | 643 | 644 | 645 | 646 | 647 | 648 | 649 | 650 | 651 | 652 | 653 | 654 | 655 | 656 | 657 | 658 | 659 | 660 | Since Version 6.2.2 text objects can contain more than one line, 661 | which will not be processed correctly with this version. 662 | 663 | 664 | 665 | -------------------------------------------------------------------------------- /esp_eagle/Untitled.ps: -------------------------------------------------------------------------------- 1 | %!PS-Adobe-3.0 EPSF-3.0 2 | %%Title: EAGLE Drawing /Users/kexik/Documents/eagle/ESP_Stufa/Untitled.brd 3 | %%Creator: EAGLE 4 | %%Pages: 1 5 | %%BoundingBox: 0 0 576 810 6 | %%EndComments 7 | 8 | % Coordinate transfer: 9 | 10 | /EU { 254 div 0.072 mul } def 11 | /inch { 72 mul } def 12 | 13 | % Linestyle: 14 | 15 | 1 setlinecap 16 | 1 setlinejoin 17 | 18 | % Drawing functions: 19 | 20 | /l { % draw a line 21 | /lw exch def 22 | /y2 exch def 23 | /x2 exch def 24 | /y1 exch def 25 | /x1 exch def 26 | newpath 27 | x1 EU y1 EU moveto 28 | x2 EU y2 EU lineto 29 | lw EU setlinewidth 30 | stroke 31 | } def 32 | 33 | /h { % draw a hole 34 | /d exch def 35 | /y exch def 36 | /x exch def 37 | d 0 gt { 38 | newpath 39 | x EU y EU d 2 div EU 0 360 arc 40 | currentgray dup 41 | 1 exch sub setgray 42 | fill 43 | setgray 44 | } if 45 | } def 46 | 47 | /b { % draw a bar 48 | /an exch def 49 | /y2 exch def 50 | /x2 exch def 51 | /y1 exch def 52 | /x1 exch def 53 | /w2 x2 x1 sub 2 div EU def 54 | /h2 y2 y1 sub 2 div EU def 55 | gsave 56 | x1 x2 add 2 div EU y1 y2 add 2 div EU translate 57 | an rotate 58 | newpath 59 | w2 h2 moveto 60 | w2 neg h2 lineto 61 | w2 neg h2 neg lineto 62 | w2 h2 neg lineto 63 | closepath 64 | fill 65 | grestore 66 | } def 67 | 68 | /c { % draw a circle 69 | /lw exch def 70 | /rd exch def 71 | /y exch def 72 | /x exch def 73 | newpath 74 | lw EU setlinewidth 75 | x EU y EU rd EU 0 360 arc 76 | stroke 77 | } def 78 | 79 | /a { % draw an arc 80 | /lc exch def 81 | /ae exch def 82 | /as exch def 83 | /lw exch def 84 | /rd exch def 85 | /y exch def 86 | /x exch def 87 | lw rd 2 mul gt { 88 | /rd rd lw 2 div add 2 div def 89 | /lw rd 2 mul def 90 | } if 91 | currentlinecap currentlinejoin 92 | lc setlinecap 0 setlinejoin 93 | newpath 94 | lw EU setlinewidth 95 | x EU y EU rd EU as ae arc 96 | stroke 97 | setlinejoin setlinecap 98 | } def 99 | 100 | /p { % draw a pie 101 | /d exch def 102 | /y exch def 103 | /x exch def 104 | newpath 105 | x EU y EU d 2 div EU 0 360 arc 106 | fill 107 | } def 108 | 109 | /edge { 0.20710678119 mul } def 110 | 111 | /o { % draw an octagon 112 | /an exch def 113 | /dy exch def 114 | /dx exch def 115 | /y exch def 116 | /x exch def 117 | gsave 118 | x EU y EU translate 119 | an dx dy lt { 90 add /dx dy /dy dx def def } if rotate 120 | newpath 121 | 0 dx 2 div sub EU 0 dy edge add EU moveto 122 | 0 dx dy sub 2 div sub dy edge sub EU 0 dy 2 div add EU lineto 123 | 0 dx dy sub 2 div add dy edge add EU 0 dy 2 div add EU lineto 124 | 0 dx 2 div add EU 0 dy edge add EU lineto 125 | 0 dx 2 div add EU 0 dy edge sub EU lineto 126 | 0 dx dy sub 2 div add dy edge add EU 0 dy 2 div sub EU lineto 127 | 0 dx dy sub 2 div sub dy edge sub EU 0 dy 2 div sub EU lineto 128 | 0 dx 2 div sub EU 0 dy edge sub EU lineto 129 | closepath 130 | fill 131 | grestore 132 | } def 133 | 134 | % the real drawing size: 135 | 136 | /MinDrawX 0 EU def 137 | /MinDrawY 0 EU def 138 | /MaxDrawX 661166 EU def 139 | /MaxDrawY 322620 EU def 140 | 141 | % the usable page size: 142 | 143 | /LeftMargin 0.25 inch def % change these if drawing gets clipped! 144 | /BotMargin 0.25 inch def 145 | /PageWidth 7.7500 inch def 146 | /PageHeight 11.0000 inch def 147 | 148 | % are we going to rotate?: 149 | 150 | /RotateDrawing 0 0 ne def 151 | 152 | % Media size functions: 153 | 154 | /AbortMessage { % Show a message in a box and stop printing 155 | /h 100 def 156 | /Courier findfont 12 scalefont setfont 157 | mediawidth pagemargin sub h 1 setpage 158 | newpath 159 | 0 0 moveto 160 | 0 h rlineto 161 | mediawidth pagemargin sub 0 rlineto 162 | 0 h neg rlineto 163 | closepath 164 | 5 setlinewidth 165 | stroke 166 | newpath 50 60 moveto (ERROR: Jobsize exceeds physical printing area!) show 167 | newpath 50 40 moveto ( Job has been aborted!) show 168 | showpage 169 | stop 170 | } def 171 | 172 | /SelectPage { % Select the page identified by Row and Column 173 | /Column exch def 174 | /Row exch def 175 | 176 | % the actually exposed area (if the machine knows these parameters!): 177 | 178 | /DrawX MaxDrawX MinDrawX sub def 179 | /DrawY MaxDrawY MinDrawY sub def 180 | statusdict /setpage known 181 | statusdict /mediawidth known and 182 | statusdict /medialength known and 183 | statusdict /pagemargin known and { 184 | % this is for machines that can tell the media size: 185 | statusdict begin 186 | /MediaW mediawidth pagemargin sub def 187 | DrawX DrawY ge { 188 | DrawX MediaW le DrawY medialength le and { 189 | MediaW DrawY 1 setpage 190 | MediaW DrawX sub 2 div 0 translate 191 | }{ 192 | DrawY MediaW le DrawX medialength le and { 193 | MediaW DrawX 0 setpage 194 | 0 MediaW DrawY sub 2 div translate 195 | }{ 196 | AbortMessage 197 | } ifelse 198 | } ifelse 199 | }{ 200 | DrawY MediaW le DrawX medialength le and { 201 | MediaW DrawX 0 setpage 202 | 0 MediaW DrawY sub 2 div translate 203 | }{ 204 | DrawX MediaW le DrawY medialength le and { 205 | MediaW DrawY 1 setpage 206 | MediaW DrawX sub 2 div 0 translate 207 | }{ 208 | AbortMessage 209 | } ifelse 210 | } ifelse 211 | } ifelse 212 | end 213 | }{ 214 | % this is for machines that can NOT tell the media size: 215 | % (Ghostscript doesn't like this!) 216 | /Product product length string def 217 | /i 0 def 218 | product { dup 97 lt { 32 add } if Product exch i exch put /i i 1 add def } forall 219 | Product (ghostscript) search dup /IsGhostscript exch def 220 | { pop pop } if 221 | pop 222 | IsGhostscript not { 223 | statusdict /setpage known { 224 | statusdict begin 225 | RotateDrawing { 226 | LeftMargin PageHeight add BotMargin DrawY add 227 | }{ 228 | BotMargin DrawY add LeftMargin DrawX add 229 | } ifelse 230 | 0 setpage 231 | end 232 | } if 233 | } if 234 | % set clipping boundary: 235 | newpath 236 | LeftMargin BotMargin moveto 237 | 0 PageHeight rlineto 238 | PageWidth 0 rlineto 239 | 0 PageHeight neg rlineto 240 | closepath 241 | clip 242 | % set the origin: 243 | LeftMargin BotMargin translate 244 | RotateDrawing { 245 | 0 PageHeight translate 246 | -90 rotate 247 | PageHeight Column mul neg PageWidth Row mul neg translate 248 | }{ 249 | PageWidth Column mul neg PageHeight Row mul neg translate 250 | } ifelse 251 | } ifelse 252 | % move the lower left corner of the drawing to the origin: 253 | MinDrawX neg MinDrawY neg translate 254 | 255 | % Linestyle: 256 | 257 | 1 setlinecap 258 | 1 setlinejoin 259 | 260 | } def 261 | 262 | % TheDrawing 263 | 264 | gsave 0 0 SelectPage 265 | 445109 288724 446211 289826 1524 l 266 | 446211 289826 448414 289826 1524 l 267 | 448414 289826 449516 288724 1524 l 268 | 449516 288724 449516 287622 1524 l 269 | 449516 287622 448414 286521 1524 l 270 | 448414 286521 446211 286521 1524 l 271 | 446211 286521 445109 285419 1524 l 272 | 445109 285419 445109 284318 1524 l 273 | 445109 284318 446211 283216 1524 l 274 | 446211 283216 448414 283216 1524 l 275 | 448414 283216 449516 284318 1524 l 276 | 440930 288724 440930 284318 1524 l 277 | 440930 284318 439828 283216 1524 l 278 | 442032 287622 439828 287622 1524 l 279 | 437042 287622 437042 284318 1524 l 280 | 437042 284318 435941 283216 1524 l 281 | 435941 283216 432636 283216 1524 l 282 | 432636 283216 432636 287622 1524 l 283 | 428456 283216 428456 288724 1524 l 284 | 428456 288724 427355 289826 1524 l 285 | 429558 286521 427355 286521 1524 l 286 | 423467 287622 421264 287622 1524 l 287 | 421264 287622 420162 286521 1524 l 288 | 420162 286521 420162 283216 1524 l 289 | 420162 283216 423467 283216 1524 l 290 | 423467 283216 424569 284318 1524 l 291 | 424569 284318 423467 285419 1524 l 292 | 423467 285419 420162 285419 1524 l 293 | 412678 288724 413780 289826 1524 l 294 | 413780 289826 415983 289826 1524 l 295 | 415983 289826 417084 288724 1524 l 296 | 417084 288724 417084 284318 1524 l 297 | 417084 284318 415983 283216 1524 l 298 | 415983 283216 413780 283216 1524 l 299 | 413780 283216 412678 284318 1524 l 300 | 408499 288724 408499 284318 1524 l 301 | 408499 284318 407397 283216 1524 l 302 | 409600 287622 407397 287622 1524 l 303 | 404611 283216 404611 287622 1524 l 304 | 404611 285419 402408 287622 1524 l 305 | 402408 287622 401306 287622 1524 l 306 | 398374 289826 397272 289826 1524 l 307 | 397272 289826 397272 283216 1524 l 308 | 398374 283216 396171 283216 1524 l 309 | 430805 275430 428602 271024 1524 l 310 | 428602 271024 426399 275430 1524 l 311 | 418915 271024 423321 271024 1524 l 312 | 423321 271024 418915 275430 1524 l 313 | 418915 275430 418915 276532 1524 l 314 | 418915 276532 420016 277634 1524 l 315 | 420016 277634 422220 277634 1524 l 316 | 422220 277634 423321 276532 1524 l 317 | 415837 271024 415837 272126 1524 l 318 | 415837 272126 414735 272126 1524 l 319 | 414735 272126 414735 271024 1524 l 320 | 414735 271024 415837 271024 1524 l 321 | 412095 272126 412095 276532 1524 l 322 | 412095 276532 410993 277634 1524 l 323 | 410993 277634 408790 277634 1524 l 324 | 408790 277634 407689 276532 1524 l 325 | 407689 276532 407689 272126 1524 l 326 | 407689 272126 408790 271024 1524 l 327 | 408790 271024 410993 271024 1524 l 328 | 410993 271024 412095 272126 1524 l 329 | 412095 272126 407689 276532 1524 l 330 | 432012 258832 436418 258832 1524 l 331 | 436418 258832 432012 263238 1524 l 332 | 432012 263238 432012 264340 1524 l 333 | 432012 264340 433114 265442 1524 l 334 | 433114 265442 435317 265442 1524 l 335 | 435317 265442 436418 264340 1524 l 336 | 428934 259934 428934 264340 1524 l 337 | 428934 264340 427833 265442 1524 l 338 | 427833 265442 425629 265442 1524 l 339 | 425629 265442 424528 264340 1524 l 340 | 424528 264340 424528 259934 1524 l 341 | 424528 259934 425629 258832 1524 l 342 | 425629 258832 427833 258832 1524 l 343 | 427833 258832 428934 259934 1524 l 344 | 428934 259934 424528 264340 1524 l 345 | 421450 263238 419247 265442 1524 l 346 | 419247 265442 419247 258832 1524 l 347 | 421450 258832 417044 258832 1524 l 348 | 409560 265442 413966 265442 1524 l 349 | 413966 265442 413966 262137 1524 l 350 | 413966 262137 411763 263238 1524 l 351 | 411763 263238 410661 263238 1524 l 352 | 410661 263238 409560 262137 1524 l 353 | 409560 262137 409560 259934 1524 l 354 | 409560 259934 410661 258832 1524 l 355 | 410661 258832 412864 258832 1524 l 356 | 412864 258832 413966 259934 1524 l 357 | 450763 251046 450763 247742 1524 l 358 | 450763 247742 449661 246640 1524 l 359 | 449661 246640 448560 247742 1524 l 360 | 448560 247742 447458 246640 1524 l 361 | 447458 246640 446357 247742 1524 l 362 | 446357 247742 446357 251046 1524 l 363 | 443279 251046 443279 247742 1524 l 364 | 443279 247742 442177 246640 1524 l 365 | 442177 246640 441076 247742 1524 l 366 | 441076 247742 439974 246640 1524 l 367 | 439974 246640 438872 247742 1524 l 368 | 438872 247742 438872 251046 1524 l 369 | 435795 251046 435795 247742 1524 l 370 | 435795 247742 434693 246640 1524 l 371 | 434693 246640 433592 247742 1524 l 372 | 433592 247742 432490 246640 1524 l 373 | 432490 246640 431388 247742 1524 l 374 | 431388 247742 431388 251046 1524 l 375 | 428311 246640 428311 247742 1524 l 376 | 428311 247742 427209 247742 1524 l 377 | 427209 247742 427209 246640 1524 l 378 | 427209 246640 428311 246640 1524 l 379 | 424569 246640 424569 253250 1524 l 380 | 421264 246640 424569 248843 1524 l 381 | 424569 248843 421264 251046 1524 l 382 | 418332 252148 417230 253250 1524 l 383 | 417230 253250 415027 253250 1524 l 384 | 415027 253250 413925 252148 1524 l 385 | 413925 252148 413925 251046 1524 l 386 | 413925 251046 415027 249945 1524 l 387 | 415027 249945 416129 249945 1524 l 388 | 415027 249945 413925 248843 1524 l 389 | 413925 248843 413925 247742 1524 l 390 | 413925 247742 415027 246640 1524 l 391 | 415027 246640 417230 246640 1524 l 392 | 417230 246640 418332 247742 1524 l 393 | 409746 251046 407543 251046 1524 l 394 | 407543 251046 406441 249945 1524 l 395 | 406441 249945 406441 246640 1524 l 396 | 406441 246640 409746 246640 1524 l 397 | 409746 246640 410848 247742 1524 l 398 | 410848 247742 409746 248843 1524 l 399 | 409746 248843 406441 248843 1524 l 400 | 403363 246640 403363 247742 1524 l 401 | 403363 247742 402262 247742 1524 l 402 | 402262 247742 402262 246640 1524 l 403 | 402262 246640 403363 246640 1524 l 404 | 399621 246640 399621 251046 1524 l 405 | 399621 251046 398520 251046 1524 l 406 | 398520 251046 397418 249945 1524 l 407 | 397418 249945 397418 246640 1524 l 408 | 397418 249945 396317 251046 1524 l 409 | 396317 251046 395215 249945 1524 l 410 | 395215 249945 395215 246640 1524 l 411 | 388832 246640 391036 246640 1524 l 412 | 391036 246640 392137 247742 1524 l 413 | 392137 247742 392137 249945 1524 l 414 | 392137 249945 391036 251046 1524 l 415 | 391036 251046 388832 251046 1524 l 416 | 388832 251046 387731 249945 1524 l 417 | 387731 249945 387731 248843 1524 l 418 | 387731 248843 392137 248843 1524 l 419 | 206500 47080 226500 57080 270.0 b 420 | 186500 47080 206500 57080 270.0 b 421 | 166500 47080 186500 57080 270.0 b 422 | 146500 47080 166500 57080 270.0 b 423 | 126500 47080 146500 57080 270.0 b 424 | 106500 47080 126500 57080 270.0 b 425 | 86500 47080 106500 57080 270.0 b 426 | 66500 47080 86500 57080 270.0 b 427 | 66500 207080 86500 217080 270.0 b 428 | 86500 207080 106500 217080 270.0 b 429 | 106500 207080 126500 217080 270.0 b 430 | 126500 207080 146500 217080 270.0 b 431 | 146500 207080 166500 217080 270.0 b 432 | 166500 207080 186500 217080 270.0 b 433 | 186500 207080 206500 217080 270.0 b 434 | 206500 207080 226500 217080 270.0 b 435 | 12700 250060 100200 257560 180.0 b 436 | 12700 262560 100200 270060 180.0 b 437 | 12700 275060 100200 282560 180.0 b 438 | 12700 287560 100200 295060 180.0 b 439 | 12700 300060 100200 307560 180.0 b 440 | 317340 249200 331340 267200 180.0 b 441 | 283340 249200 297340 267200 180.0 b 442 | 346670 245670 360670 263670 90.0 b 443 | 346670 279670 360670 297670 90.0 b 444 | 233560 263530 241560 275530 90.0 b 445 | 233560 281530 241560 293530 90.0 b 446 | 195440 253490 203440 262490 0.0 b 447 | 204940 274490 212940 283490 0.0 b 448 | 185940 274490 193940 283490 0.0 b 449 | 300590 200550 320590 250550 270.0 b 450 | 410590 200550 430590 250550 270.0 b 451 | 410590 10550 430590 60550 270.0 b 452 | 475942 94222 494738 113018 90.0 b 453 | 485340 131320 18796 p 454 | 485340 159020 18796 p 455 | 485340 186720 18796 p 456 | 485340 214420 18796 p 457 | 513740 117520 18796 p 458 | 513740 145220 18796 p 459 | 513740 172820 18796 p 460 | 513740 200520 18796 p 461 | 499540 34020 50800 p 462 | 499540 284020 50800 p 463 | 353670 288670 272560 288670 5000 l 464 | 272560 288670 260200 278810 5000 l 465 | 260200 278810 209120 278810 4064 l 466 | 209120 278810 208940 278990 5000 l 467 | 353670 288670 377700 288670 5000 l 468 | 540200 83810 540200 148810 5000 l 469 | 540200 148810 513740 148810 5000 l 470 | 513740 148810 513740 145220 7500 l 471 | 377700 288670 377700 151310 5000 l 472 | 377700 151310 445200 83810 5000 l 473 | 445200 83810 540200 83810 5000 l 474 | 166500 65947 167730 67177 2540 l 475 | 167730 67177 167730 145040 2540 l 476 | 167730 145040 164448 145040 2540 l 477 | 164448 145040 165270 143054 2540 l 478 | 165270 143054 165270 67177 2540 l 479 | 165270 67177 166500 65947 2540 l 480 | 70200 185040 70200 68328 2540 l 481 | 70200 68328 70253 68350 2540 l 482 | 70253 68350 82747 68350 2540 l 483 | 82747 68350 85052 67395 2540 l 484 | 85052 67395 86500 65947 2540 l 485 | 86500 65947 87948 67395 2540 l 486 | 87948 67395 90253 68350 2540 l 487 | 90253 68350 102747 68350 2540 l 488 | 102747 68350 105052 67395 2540 l 489 | 105052 67395 106500 65947 2540 l 490 | 106500 65947 107948 67395 2540 l 491 | 107948 67395 110253 68350 2540 l 492 | 110253 68350 122747 68350 2540 l 493 | 122747 68350 125052 67395 2540 l 494 | 125052 67395 126500 65947 2540 l 495 | 126500 65947 127948 67395 2540 l 496 | 127948 67395 130253 68350 2540 l 497 | 130253 68350 142747 68350 2540 l 498 | 142747 68350 145052 67395 2540 l 499 | 145052 67395 146500 65947 2540 l 500 | 146500 65947 147730 67177 2540 l 501 | 147730 67177 147730 132540 2540 l 502 | 147730 132540 103456 132540 2540 l 503 | 103456 132540 100232 133875 2540 l 504 | 100232 133875 97765 136342 2540 l 505 | 97765 136342 96430 139566 2540 l 506 | 96430 139566 96430 185040 2540 l 507 | 96430 185040 70200 185040 2540 l 508 | 206880 197833 206500 198213 2540 l 509 | 206500 198213 205052 196765 2540 l 510 | 205052 196765 202747 195810 2540 l 511 | 202747 195810 190253 195810 2540 l 512 | 190253 195810 187948 196765 2540 l 513 | 187948 196765 186500 198213 2540 l 514 | 186500 198213 185052 196765 2540 l 515 | 185052 196765 182747 195810 2540 l 516 | 182747 195810 170253 195810 2540 l 517 | 170253 195810 167948 196765 2540 l 518 | 167948 196765 166500 198213 2540 l 519 | 166500 198213 165052 196765 2540 l 520 | 165052 196765 162747 195810 2540 l 521 | 162747 195810 150253 195810 2540 l 522 | 150253 195810 147948 196765 2540 l 523 | 147948 196765 146500 198213 2540 l 524 | 146500 198213 145052 196765 2540 l 525 | 145052 196765 142747 195810 2540 l 526 | 142747 195810 130253 195810 2540 l 527 | 130253 195810 127948 196765 2540 l 528 | 127948 196765 126500 198213 2540 l 529 | 126500 198213 125052 196765 2540 l 530 | 125052 196765 124001 196329 2540 l 531 | 124001 196329 123970 195949 2540 l 532 | 123970 195949 123970 162580 2540 l 533 | 123970 162580 206880 162580 2540 l 534 | 206880 162580 206880 197833 2540 l 535 | 334892 272515 336655 270752 2540 l 536 | 336655 270752 337610 268447 2540 l 537 | 337610 268447 337610 267747 2540 l 538 | 337610 267747 342529 267570 2540 l 539 | 342529 267570 343423 267940 2540 l 540 | 343423 267940 363917 267940 2540 l 541 | 363917 267940 366222 266985 2540 l 542 | 366222 266985 367985 265222 2540 l 543 | 367985 265222 368930 262941 2540 l 544 | 368930 262941 368930 279900 2540 l 545 | 368930 279900 368723 279900 2540 l 546 | 368723 279900 367985 278118 2540 l 547 | 367985 278118 366222 276355 2540 l 548 | 366222 276355 363917 275400 2540 l 549 | 363917 275400 343423 275400 2540 l 550 | 343423 275400 341118 276355 2540 l 551 | 341118 276355 339355 278118 2540 l 552 | 339355 278118 338617 279900 2540 l 553 | 338617 279900 333110 279900 2540 l 554 | 333110 279900 333110 273253 2540 l 555 | 333110 273253 334892 272515 2540 l 556 | 255200 36108 253970 35598 2540 l 557 | 253970 35598 253970 29566 2540 l 558 | 253970 29566 253148 27580 2540 l 559 | 253148 27580 256430 27580 2540 l 560 | 256430 27580 256430 35598 2540 l 561 | 256430 35598 255200 36108 2540 l 562 | 87730 29566 87730 36983 2540 l 563 | 87730 36983 86500 38213 2540 l 564 | 86500 38213 85052 36765 2540 l 565 | 85052 36765 83970 36317 2540 l 566 | 83970 36317 83970 27580 2540 l 567 | 83970 27580 88553 27580 2540 l 568 | 88553 27580 87730 29566 2540 l 569 | 394343 209280 392038 210235 2540 l 570 | 392038 210235 390275 211998 2540 l 571 | 390275 211998 389320 214303 2540 l 572 | 389320 214303 389320 236797 2540 l 573 | 389320 236797 390275 239102 2540 l 574 | 390275 239102 390781 239608 2540 l 575 | 390781 239608 387434 239608 2540 l 576 | 387434 239608 386470 240007 2540 l 577 | 386470 240007 386470 154943 2540 l 578 | 386470 154943 448833 92580 2540 l 579 | 448833 92580 469836 92580 2540 l 580 | 469836 92580 469672 92975 2540 l 581 | 469672 92975 469672 114265 2540 l 582 | 469672 114265 470627 116570 2540 l 583 | 470627 116570 472390 118333 2540 l 584 | 472390 118333 474695 119288 2540 l 585 | 474695 119288 475214 119288 2540 l 586 | 475214 119288 472057 122445 2540 l 587 | 472057 122445 469672 128203 2540 l 588 | 469672 128203 469672 134437 2540 l 589 | 469672 134437 472057 140195 2540 l 590 | 472057 140195 476465 144603 2540 l 591 | 476465 144603 477834 145170 2540 l 592 | 477834 145170 476465 145737 2540 l 593 | 476465 145737 473202 149000 2540 l 594 | 473202 149000 418597 149000 2540 l 595 | 418597 149000 414914 150525 2540 l 596 | 414914 150525 412095 153344 2540 l 597 | 412095 153344 410570 157027 2540 l 598 | 410570 157027 410570 209280 2540 l 599 | 410570 209280 394343 209280 2540 l 600 | 451060 239608 450399 239608 2540 l 601 | 450399 239608 450905 239102 2540 l 602 | 450905 239102 451430 237835 2540 l 603 | 451430 237835 451430 239761 2540 l 604 | 451430 239761 451060 239608 2540 l 605 | 449813 276184 444812 276184 2540 l 606 | 444812 276184 443020 276927 2540 l 607 | 443020 276927 441227 276184 2540 l 608 | 441227 276184 438430 276184 2540 l 609 | 438430 276184 437892 276407 2540 l 610 | 437892 276407 437919 276327 2540 l 611 | 437919 276327 437720 273537 2540 l 612 | 437720 273537 437108 272311 2540 l 613 | 437108 272311 439300 271403 2540 l 614 | 439300 271403 442380 268323 2540 l 615 | 442380 268323 443450 265739 2540 l 616 | 443450 265739 443450 262941 2540 l 617 | 443450 262941 442889 261586 2540 l 618 | 442889 261586 443450 260231 2540 l 619 | 443450 260231 443450 258078 2540 l 620 | 443450 258078 444678 258078 2540 l 621 | 444678 258078 444818 258020 2540 l 622 | 444818 258020 444958 258078 2540 l 623 | 444958 258078 447755 258078 2540 l 624 | 447755 258078 448560 257745 2540 l 625 | 448560 257745 449364 258078 2540 l 626 | 449364 258078 451430 258078 2540 l 627 | 451430 258078 451430 276854 2540 l 628 | 451430 276854 449813 276184 2540 l 629 | 470028 296244 473571 302380 2540 l 630 | 473571 302380 468970 302380 2540 l 631 | 468970 302380 468970 292294 2540 l 632 | 468970 292294 470028 296244 2540 l 633 | 300389 269539 300890 268671 2540 l 634 | 300890 268671 301150 267702 2540 l 635 | 301150 267702 301150 259470 2540 l 636 | 301150 259470 291610 259470 2540 l 637 | 291610 259470 291610 256930 2540 l 638 | 291610 256930 301150 256930 2540 l 639 | 301150 256930 301150 248698 2540 l 640 | 301150 248698 300890 247729 2540 l 641 | 300890 247729 300389 246861 2540 l 642 | 300389 246861 299679 246151 2540 l 643 | 299679 246151 298811 245650 2540 l 644 | 298811 245650 297842 245390 2540 l 645 | 297842 245390 291610 245390 2540 l 646 | 291610 245390 291610 256930 2540 l 647 | 291610 256930 289070 256930 2540 l 648 | 289070 256930 289070 245390 2540 l 649 | 289070 245390 282838 245390 2540 l 650 | 282838 245390 281869 245650 2540 l 651 | 281869 245650 281001 246151 2540 l 652 | 281001 246151 280291 246861 2540 l 653 | 280291 246861 279790 247729 2540 l 654 | 279790 247729 279530 248698 2540 l 655 | 279530 248698 279530 256930 2540 l 656 | 279530 256930 289070 256930 2540 l 657 | 289070 256930 289070 259470 2540 l 658 | 289070 259470 279530 259470 2540 l 659 | 279530 259470 279530 267702 2540 l 660 | 279530 267702 279790 268671 2540 l 661 | 279790 268671 280291 269539 2540 l 662 | 280291 269539 280792 270040 2540 l 663 | 280792 270040 280776 270040 2540 l 664 | 280776 270040 273970 264595 2540 l 665 | 273970 264595 273970 112022 2540 l 666 | 273970 112022 275864 111237 2540 l 667 | 275864 111237 277627 109474 2540 l 668 | 277627 109474 278582 107169 2540 l 669 | 278582 107169 278582 90451 2540 l 670 | 278582 90451 277627 88146 2540 l 671 | 277627 88146 275864 86383 2540 l 672 | 275864 86383 273559 85428 2540 l 673 | 273559 85428 256841 85428 2540 l 674 | 256841 85428 255200 86108 2540 l 675 | 255200 86108 253559 85428 2540 l 676 | 253559 85428 236841 85428 2540 l 677 | 236841 85428 234536 86383 2540 l 678 | 234536 86383 232773 88146 2540 l 679 | 232773 88146 231818 90451 2540 l 680 | 231818 90451 231818 107169 2540 l 681 | 231818 107169 232773 109474 2540 l 682 | 232773 109474 234536 111237 2540 l 683 | 234536 111237 236430 112022 2540 l 684 | 236430 112022 236430 247540 2540 l 685 | 236430 247540 205460 247540 2540 l 686 | 205460 247540 204687 247220 2540 l 687 | 204687 247220 194193 247220 2540 l 688 | 194193 247220 191888 248175 2540 l 689 | 191888 248175 190843 249220 2540 l 690 | 190843 249220 163456 249220 2540 l 691 | 163456 249220 160232 250555 2540 l 692 | 160232 250555 157765 253022 2540 l 693 | 157765 253022 156430 256246 2540 l 694 | 156430 256246 156430 270040 2540 l 695 | 156430 270040 104047 270040 2540 l 696 | 104047 270040 104010 270003 2540 l 697 | 104010 270003 104010 266915 2540 l 698 | 104010 266915 70200 266915 2540 l 699 | 70200 266915 70200 265705 2540 l 700 | 70200 265705 104010 265705 2540 l 701 | 104010 265705 104010 262617 2540 l 702 | 104010 262617 105515 261112 2540 l 703 | 105515 261112 106470 258807 2540 l 704 | 106470 258807 106470 232066 2540 l 705 | 106470 232066 105135 228842 2540 l 706 | 105135 228842 104087 227795 2540 l 707 | 104087 227795 105052 227395 2540 l 708 | 105052 227395 106500 225947 2540 l 709 | 106500 225947 107948 227395 2540 l 710 | 107948 227395 110253 228350 2540 l 711 | 110253 228350 122747 228350 2540 l 712 | 122747 228350 125052 227395 2540 l 713 | 125052 227395 126500 225947 2540 l 714 | 126500 225947 127948 227395 2540 l 715 | 127948 227395 130253 228350 2540 l 716 | 130253 228350 142747 228350 2540 l 717 | 142747 228350 145052 227395 2540 l 718 | 145052 227395 146500 225947 2540 l 719 | 146500 225947 147948 227395 2540 l 720 | 147948 227395 150253 228350 2540 l 721 | 150253 228350 162747 228350 2540 l 722 | 162747 228350 165052 227395 2540 l 723 | 165052 227395 166500 225947 2540 l 724 | 166500 225947 167948 227395 2540 l 725 | 167948 227395 170253 228350 2540 l 726 | 170253 228350 182747 228350 2540 l 727 | 182747 228350 185052 227395 2540 l 728 | 185052 227395 186500 225947 2540 l 729 | 186500 225947 187948 227395 2540 l 730 | 187948 227395 190253 228350 2540 l 731 | 190253 228350 202747 228350 2540 l 732 | 202747 228350 205052 227395 2540 l 733 | 205052 227395 206500 225947 2540 l 734 | 206500 225947 207948 227395 2540 l 735 | 207948 227395 210253 228350 2540 l 736 | 210253 228350 222747 228350 2540 l 737 | 222747 228350 225052 227395 2540 l 738 | 225052 227395 226815 225632 2540 l 739 | 226815 225632 227770 223327 2540 l 740 | 227770 223327 227770 200833 2540 l 741 | 227770 200833 226815 198528 2540 l 742 | 226815 198528 225052 196765 2540 l 743 | 225052 196765 224420 196503 2540 l 744 | 224420 196503 224420 152066 2540 l 745 | 224420 152066 223085 148842 2540 l 746 | 223085 148842 220618 146375 2540 l 747 | 220618 146375 217395 145040 2540 l 748 | 217395 145040 185270 145040 2540 l 749 | 185270 145040 185270 82580 2540 l 750 | 185270 82580 374445 82580 2540 l 751 | 374445 82580 377668 81245 2540 l 752 | 377668 81245 380135 78778 2540 l 753 | 380135 78778 406170 52743 2540 l 754 | 406170 52743 407242 51820 2540 l 755 | 407242 51820 446837 51820 2540 l 756 | 446837 51820 449142 50865 2540 l 757 | 449142 50865 450905 49102 2540 l 758 | 450905 49102 451860 46797 2540 l 759 | 451860 46797 451860 24303 2540 l 760 | 451860 24303 450905 21998 2540 l 761 | 450905 21998 449142 20235 2540 l 762 | 449142 20235 446837 19280 2540 l 763 | 446837 19280 394343 19280 2540 l 764 | 394343 19280 392038 20235 2540 l 765 | 392038 20235 390275 21998 2540 l 766 | 390275 21998 389320 24303 2540 l 767 | 389320 24303 389320 44787 2540 l 768 | 389320 44787 369067 65040 2540 l 769 | 369067 65040 223928 65040 2540 l 770 | 223928 65040 224549 64419 2540 l 771 | 224549 64419 225050 63551 2540 l 772 | 225050 63551 225310 62582 2540 l 773 | 225310 62582 225310 53310 2540 l 774 | 225310 53310 217730 53310 2540 l 775 | 217730 53310 217730 50850 2540 l 776 | 217730 50850 225310 50850 2540 l 777 | 225310 50850 225310 41578 2540 l 778 | 225310 41578 225050 40609 2540 l 779 | 225050 40609 224745 40080 2540 l 780 | 224745 40080 231972 40080 2540 l 781 | 231972 40080 231818 40451 2540 l 782 | 231818 40451 231818 57169 2540 l 783 | 231818 57169 232773 59474 2540 l 784 | 232773 59474 234536 61237 2540 l 785 | 234536 61237 236841 62192 2540 l 786 | 236841 62192 253559 62192 2540 l 787 | 253559 62192 255200 61512 2540 l 788 | 255200 61512 256841 62192 2540 l 789 | 256841 62192 273559 62192 2540 l 790 | 273559 62192 275864 61237 2540 l 791 | 275864 61237 277627 59474 2540 l 792 | 277627 59474 278582 57169 2540 l 793 | 278582 57169 278582 40451 2540 l 794 | 278582 40451 277627 38146 2540 l 795 | 277627 38146 275864 36383 2540 l 796 | 275864 36383 273970 35598 2540 l 797 | 273970 35598 273970 17066 2540 l 798 | 273970 17066 273214 15240 2540 l 799 | 273214 15240 473813 15240 2540 l 800 | 473813 15240 470028 21796 2540 l 801 | 470028 21796 467870 29851 2540 l 802 | 467870 29851 467870 38189 2540 l 803 | 467870 38189 470028 46244 2540 l 804 | 470028 46244 474198 53466 2540 l 805 | 474198 53466 480094 59362 2540 l 806 | 480094 59362 487316 63532 2540 l 807 | 487316 63532 495371 65690 2540 l 808 | 495371 65690 503709 65690 2540 l 809 | 503709 65690 511764 63532 2540 l 810 | 511764 63532 518986 59362 2540 l 811 | 518986 59362 524882 53466 2540 l 812 | 524882 53466 529052 46244 2540 l 813 | 529052 46244 531210 38189 2540 l 814 | 531210 38189 531210 29851 2540 l 815 | 531210 29851 529052 21796 2540 l 816 | 529052 21796 525267 15240 2540 l 817 | 525267 15240 581270 15240 2540 l 818 | 581270 15240 581270 302380 2540 l 819 | 581270 302380 525509 302380 2540 l 820 | 525509 302380 529052 296244 2540 l 821 | 529052 296244 531210 288189 2540 l 822 | 531210 288189 531210 279851 2540 l 823 | 531210 279851 529052 271796 2540 l 824 | 529052 271796 524882 264574 2540 l 825 | 524882 264574 518986 258678 2540 l 826 | 518986 258678 511764 254508 2540 l 827 | 511764 254508 503709 252350 2540 l 828 | 503709 252350 495371 252350 2540 l 829 | 495371 252350 487316 254508 2540 l 830 | 487316 254508 480094 258678 2540 l 831 | 480094 258678 474198 264574 2540 l 832 | 474198 264574 470028 271796 2540 l 833 | 470028 271796 468970 275746 2540 l 834 | 468970 275746 468970 217066 2540 l 835 | 468970 217066 467635 213842 2540 l 836 | 467635 213842 465168 211375 2540 l 837 | 465168 211375 461945 210040 2540 l 838 | 461945 210040 448672 210040 2540 l 839 | 448672 210040 446837 209280 2540 l 840 | 446837 209280 430610 209280 2540 l 841 | 430610 209280 430610 169040 2540 l 842 | 430610 169040 473202 169040 2540 l 843 | 473202 169040 476465 172303 2540 l 844 | 476465 172303 477834 172870 2540 l 845 | 477834 172870 476465 173437 2540 l 846 | 476465 173437 472057 177845 2540 l 847 | 472057 177845 469672 183603 2540 l 848 | 469672 183603 469672 189837 2540 l 849 | 469672 189837 472057 195595 2540 l 850 | 472057 195595 476465 200003 2540 l 851 | 476465 200003 477834 200570 2540 l 852 | 477834 200570 476465 201137 2540 l 853 | 476465 201137 472057 205545 2540 l 854 | 472057 205545 469672 211303 2540 l 855 | 469672 211303 469672 217537 2540 l 856 | 469672 217537 472057 223295 2540 l 857 | 472057 223295 476465 227703 2540 l 858 | 476465 227703 482223 230088 2540 l 859 | 482223 230088 488457 230088 2540 l 860 | 488457 230088 494215 227703 2540 l 861 | 494215 227703 498623 223295 2540 l 862 | 498623 223295 501008 217537 2540 l 863 | 501008 217537 501008 211303 2540 l 864 | 501008 211303 498623 205545 2540 l 865 | 498623 205545 494215 201137 2540 l 866 | 494215 201137 492846 200570 2540 l 867 | 492846 200570 494215 200003 2540 l 868 | 494215 200003 498623 195595 2540 l 869 | 498623 195595 501008 189837 2540 l 870 | 501008 189837 501008 183603 2540 l 871 | 501008 183603 498623 177845 2540 l 872 | 498623 177845 494215 173437 2540 l 873 | 494215 173437 492846 172870 2540 l 874 | 492846 172870 494215 172303 2540 l 875 | 494215 172303 498623 167895 2540 l 876 | 498623 167895 501008 162137 2540 l 877 | 501008 162137 501008 155903 2540 l 878 | 501008 155903 498623 150145 2540 l 879 | 498623 150145 494215 145737 2540 l 880 | 494215 145737 492846 145170 2540 l 881 | 492846 145170 494215 144603 2540 l 882 | 494215 144603 498623 140195 2540 l 883 | 498623 140195 501008 134437 2540 l 884 | 501008 134437 501008 128203 2540 l 885 | 501008 128203 498623 122445 2540 l 886 | 498623 122445 495466 119288 2540 l 887 | 495466 119288 495985 119288 2540 l 888 | 495985 119288 498072 118424 2540 l 889 | 498072 118424 498072 120637 2540 l 890 | 498072 120637 500457 126395 2540 l 891 | 500457 126395 504865 130803 2540 l 892 | 504865 130803 506235 131370 2540 l 893 | 506235 131370 504865 131937 2540 l 894 | 504865 131937 500457 136345 2540 l 895 | 500457 136345 498072 142103 2540 l 896 | 498072 142103 498072 148337 2540 l 897 | 498072 148337 500457 154095 2540 l 898 | 500457 154095 504865 158503 2540 l 899 | 504865 158503 509348 160359 2540 l 900 | 509348 160359 508670 160580 2540 l 901 | 508670 160580 506818 161524 2540 l 902 | 506818 161524 505136 162746 2540 l 903 | 505136 162746 503666 164216 2540 l 904 | 503666 164216 502444 165897 2540 l 905 | 502444 165897 501500 167750 2540 l 906 | 501500 167750 500857 169727 2540 l 907 | 500857 169727 500569 171550 2540 l 908 | 500569 171550 512470 171550 2540 l 909 | 512470 171550 512470 174090 2540 l 910 | 512470 174090 500569 174090 2540 l 911 | 500569 174090 500857 175913 2540 l 912 | 500857 175913 501500 177890 2540 l 913 | 501500 177890 502444 179743 2540 l 914 | 502444 179743 503666 181424 2540 l 915 | 503666 181424 505136 182894 2540 l 916 | 505136 182894 506818 184116 2540 l 917 | 506818 184116 508670 185060 2540 l 918 | 508670 185060 509483 185324 2540 l 919 | 509483 185324 504865 187237 2540 l 920 | 504865 187237 500457 191645 2540 l 921 | 500457 191645 498072 197403 2540 l 922 | 498072 197403 498072 203637 2540 l 923 | 498072 203637 500457 209395 2540 l 924 | 500457 209395 504865 213803 2540 l 925 | 504865 213803 510623 216188 2540 l 926 | 510623 216188 516857 216188 2540 l 927 | 516857 216188 522615 213803 2540 l 928 | 522615 213803 527023 209395 2540 l 929 | 527023 209395 529408 203637 2540 l 930 | 529408 203637 529408 197403 2540 l 931 | 529408 197403 527023 191645 2540 l 932 | 527023 191645 522615 187237 2540 l 933 | 522615 187237 517997 185324 2540 l 934 | 517997 185324 518810 185060 2540 l 935 | 518810 185060 520663 184116 2540 l 936 | 520663 184116 522344 182894 2540 l 937 | 522344 182894 523815 181424 2540 l 938 | 523815 181424 525037 179743 2540 l 939 | 525037 179743 525980 177890 2540 l 940 | 525980 177890 526623 175913 2540 l 941 | 526623 175913 526912 174090 2540 l 942 | 526912 174090 515010 174090 2540 l 943 | 515010 174090 515010 171550 2540 l 944 | 515010 171550 526912 171550 2540 l 945 | 526912 171550 526623 169727 2540 l 946 | 526623 169727 525980 167750 2540 l 947 | 525980 167750 525037 165897 2540 l 948 | 525037 165897 523815 164216 2540 l 949 | 523815 164216 522344 162746 2540 l 950 | 522344 162746 520663 161524 2540 l 951 | 520663 161524 518810 160580 2540 l 952 | 518810 160580 518132 160359 2540 l 953 | 518132 160359 522615 158503 2540 l 954 | 522615 158503 523538 157580 2540 l 955 | 523538 157580 541945 157580 2540 l 956 | 541945 157580 545168 156245 2540 l 957 | 545168 156245 547635 153778 2540 l 958 | 547635 153778 548970 150554 2540 l 959 | 548970 150554 548970 82066 2540 l 960 | 548970 82066 547635 78842 2540 l 961 | 547635 78842 545168 76375 2540 l 962 | 545168 76375 541945 75040 2540 l 963 | 541945 75040 443456 75040 2540 l 964 | 443456 75040 440232 76375 2540 l 965 | 440232 76375 437765 78842 2540 l 966 | 437765 78842 370265 146342 2540 l 967 | 370265 146342 368930 149566 2540 l 968 | 368930 149566 368930 246399 2540 l 969 | 368930 246399 367985 244118 2540 l 970 | 367985 244118 366222 242355 2540 l 971 | 366222 242355 363917 241400 2540 l 972 | 363917 241400 343423 241400 2540 l 973 | 343423 241400 341118 242355 2540 l 974 | 341118 242355 339355 244118 2540 l 975 | 339355 244118 338400 246423 2540 l 976 | 338400 246423 338400 247666 2540 l 977 | 338400 247666 337505 247698 2540 l 978 | 337505 247698 336655 245648 2540 l 979 | 336655 245648 334892 243885 2540 l 980 | 334892 243885 332587 242930 2540 l 981 | 332587 242930 316093 242930 2540 l 982 | 316093 242930 313788 243885 2540 l 983 | 313788 243885 312025 245648 2540 l 984 | 312025 245648 311070 247953 2540 l 985 | 311070 247953 311070 268447 2540 l 986 | 311070 268447 311730 270040 2540 l 987 | 311730 270040 299888 270040 2540 l 988 | 299888 270040 300389 269539 2540 l 989 | 281780 224280 309320 224280 2540 l 990 | 309320 224280 309320 226820 2540 l 991 | 309320 226820 281780 226820 2540 l 992 | 281780 226820 281780 236052 2540 l 993 | 281780 236052 282040 237021 2540 l 994 | 282040 237021 282541 237889 2540 l 995 | 282541 237889 283251 238599 2540 l 996 | 283251 238599 284119 239100 2540 l 997 | 284119 239100 285088 239360 2540 l 998 | 285088 239360 309320 239360 2540 l 999 | 309320 239360 309320 226820 2540 l 1000 | 309320 226820 311860 226820 2540 l 1001 | 311860 226820 311860 239360 2540 l 1002 | 311860 239360 336092 239360 2540 l 1003 | 336092 239360 337061 239100 2540 l 1004 | 337061 239100 337929 238599 2540 l 1005 | 337929 238599 338639 237889 2540 l 1006 | 338639 237889 339140 237021 2540 l 1007 | 339140 237021 339400 236052 2540 l 1008 | 339400 236052 339400 226820 2540 l 1009 | 339400 226820 311860 226820 2540 l 1010 | 311860 226820 311860 224280 2540 l 1011 | 311860 224280 339400 224280 2540 l 1012 | 339400 224280 339400 215048 2540 l 1013 | 339400 215048 339140 214079 2540 l 1014 | 339140 214079 338639 213211 2540 l 1015 | 338639 213211 337929 212501 2540 l 1016 | 337929 212501 337061 212000 2540 l 1017 | 337061 212000 336092 211740 2540 l 1018 | 336092 211740 311860 211740 2540 l 1019 | 311860 211740 311860 224280 2540 l 1020 | 311860 224280 309320 224280 2540 l 1021 | 309320 224280 309320 211740 2540 l 1022 | 309320 211740 285088 211740 2540 l 1023 | 285088 211740 284119 212000 2540 l 1024 | 284119 212000 283251 212501 2540 l 1025 | 283251 212501 282541 213211 2540 l 1026 | 282541 213211 282040 214079 2540 l 1027 | 282040 214079 281780 215048 2540 l 1028 | 281780 215048 281780 224280 2540 l 1029 | 249830 292777 249830 287112 2540 l 1030 | 249830 287112 256544 287112 2540 l 1031 | 256544 287112 266482 295040 2540 l 1032 | 266482 295040 248893 295040 2540 l 1033 | 248893 295040 249830 292777 2540 l 1034 | 385135 293638 386470 290414 2540 l 1035 | 386470 290414 386470 257679 2540 l 1036 | 386470 257679 387434 258078 2540 l 1037 | 387434 258078 392434 258078 2540 l 1038 | 392434 258078 393676 257564 2540 l 1039 | 393676 257564 394321 257831 2540 l 1040 | 394321 257831 394918 258078 2540 l 1041 | 394918 258078 394918 258078 2540 l 1042 | 394918 258078 394918 258078 2540 l 1043 | 394918 258078 396332 258078 2540 l 1044 | 396332 258078 397715 258078 2540 l 1045 | 397715 258078 397715 258078 2540 l 1046 | 397715 258078 401020 258078 2540 l 1047 | 401020 258078 403068 257230 2540 l 1048 | 403068 257230 402528 258535 2540 l 1049 | 402528 258535 402528 263536 2540 l 1050 | 402528 263536 402633 263789 2540 l 1051 | 402633 263789 402528 264043 2540 l 1052 | 402528 264043 402528 266840 2540 l 1053 | 402528 266840 402674 267195 2540 l 1054 | 402674 267195 401727 268142 2540 l 1055 | 401727 268142 400657 270727 2540 l 1056 | 400657 270727 400657 276550 2540 l 1057 | 400657 276550 399773 276184 2540 l 1058 | 399773 276184 394772 276184 2540 l 1059 | 394772 276184 392188 277255 2540 l 1060 | 392188 277255 390209 279233 2540 l 1061 | 390209 279233 389139 281817 2540 l 1062 | 389139 281817 389139 284615 2540 l 1063 | 389139 284615 390209 287199 2540 l 1064 | 390209 287199 390240 287230 2540 l 1065 | 390240 287230 390240 291224 2540 l 1066 | 390240 291224 391311 293809 2540 l 1067 | 391311 293809 392542 295040 2540 l 1068 | 392542 295040 383733 295040 2540 l 1069 | 383733 295040 385135 293638 2540 l 1070 | 403490 294654 404484 294654 2540 l 1071 | 404484 294654 404515 294685 2540 l 1072 | 404515 294685 405371 295040 2540 l 1073 | 405371 295040 403104 295040 2540 l 1074 | 403104 295040 403490 294654 2540 l 1075 | 421068 294685 421099 294654 2540 l 1076 | 421099 294654 422239 294654 2540 l 1077 | 422239 294654 422624 295040 2540 l 1078 | 422624 295040 420713 295040 2540 l 1079 | 420713 295040 421068 294685 2540 l 1080 | 432471 294654 434034 294654 2540 l 1081 | 434034 294654 434839 294321 2540 l 1082 | 434839 294321 435643 294654 2540 l 1083 | 435643 294654 436916 294654 2540 l 1084 | 436916 294654 436947 294685 2540 l 1085 | 436947 294685 437803 295040 2540 l 1086 | 437803 295040 432085 295040 2540 l 1087 | 432085 295040 432471 294654 2540 l 1088 | 70200 243790 70200 242580 2540 l 1089 | 70200 242580 88930 242580 2540 l 1090 | 88930 242580 88930 243790 2540 l 1091 | 88930 243790 70200 243790 2540 l 1092 | 253148 260040 253970 258054 2540 l 1093 | 253970 258054 253970 112022 2540 l 1094 | 253970 112022 255200 111512 2540 l 1095 | 255200 111512 256430 112022 2540 l 1096 | 256430 112022 256430 260040 2540 l 1097 | 256430 260040 253148 260040 2540 l 1098 | 187770 63327 187770 62880 2540 l 1099 | 187770 62880 187950 63551 2540 l 1100 | 187950 63551 188451 64419 2540 l 1101 | 188451 64419 189072 65040 2540 l 1102 | 189072 65040 187061 65040 2540 l 1103 | 187061 65040 187770 63327 2540 l 1104 | 207950 40609 207690 41578 2540 l 1105 | 207690 41578 207690 50850 2540 l 1106 | 207690 50850 215270 50850 2540 l 1107 | 215270 50850 215270 53310 2540 l 1108 | 215270 53310 207690 53310 2540 l 1109 | 207690 53310 207690 62582 2540 l 1110 | 207690 62582 207950 63551 2540 l 1111 | 207950 63551 208451 64419 2540 l 1112 | 208451 64419 209072 65040 2540 l 1113 | 209072 65040 203928 65040 2540 l 1114 | 203928 65040 204549 64419 2540 l 1115 | 204549 64419 205050 63551 2540 l 1116 | 205050 63551 205310 62582 2540 l 1117 | 205310 62582 205310 53310 2540 l 1118 | 205310 53310 197730 53310 2540 l 1119 | 197730 53310 197730 50850 2540 l 1120 | 197730 50850 205310 50850 2540 l 1121 | 205310 50850 205310 41578 2540 l 1122 | 205310 41578 205050 40609 2540 l 1123 | 205050 40609 204745 40080 2540 l 1124 | 204745 40080 208255 40080 2540 l 1125 | 208255 40080 207950 40609 2540 l 1126 | 187950 40609 187770 41280 2540 l 1127 | 187770 41280 187770 40833 2540 l 1128 | 187770 40833 187458 40080 2540 l 1129 | 187458 40080 188255 40080 2540 l 1130 | 188255 40080 187950 40609 2540 l 1131 | 531430 140040 528553 140040 2540 l 1132 | 528553 140040 527023 136345 2540 l 1133 | 527023 136345 522615 131937 2540 l 1134 | 522615 131937 521246 131370 2540 l 1135 | 521246 131370 522615 130803 2540 l 1136 | 522615 130803 527023 126395 2540 l 1137 | 527023 126395 529408 120637 2540 l 1138 | 529408 120637 529408 114403 2540 l 1139 | 529408 114403 527023 108645 2540 l 1140 | 527023 108645 522615 104237 2540 l 1141 | 522615 104237 516857 101852 2540 l 1142 | 516857 101852 510623 101852 2540 l 1143 | 510623 101852 504865 104237 2540 l 1144 | 504865 104237 501008 108094 2540 l 1145 | 501008 108094 501008 92975 2540 l 1146 | 501008 92975 500844 92580 2540 l 1147 | 500844 92580 531430 92580 2540 l 1148 | 531430 92580 531430 140040 2540 l 1149 | 581270 16764 526147 16764 2540 l 1150 | 472933 16764 273845 16764 2540 l 1151 | 581270 18923 527393 18923 2540 l 1152 | 471687 18923 273970 18923 2540 l 1153 | 581270 21082 528640 21082 2540 l 1154 | 470440 21082 449989 21082 2540 l 1155 | 391191 21082 273970 21082 2540 l 1156 | 581270 23241 529439 23241 2540 l 1157 | 469641 23241 451420 23241 2540 l 1158 | 389760 23241 273970 23241 2540 l 1159 | 581270 25400 530018 25400 2540 l 1160 | 469063 25400 451860 25400 2540 l 1161 | 389320 25400 273970 25400 2540 l 1162 | 581270 27559 530596 27559 2540 l 1163 | 468484 27559 451860 27559 2540 l 1164 | 389320 27559 273970 27559 2540 l 1165 | 581270 29718 531175 29718 2540 l 1166 | 467906 29718 451860 29718 2540 l 1167 | 389320 29718 273970 29718 2540 l 1168 | 256430 29718 253970 29718 2540 l 1169 | 87730 29718 83970 29718 2540 l 1170 | 581270 31877 531210 31877 2540 l 1171 | 467870 31877 451860 31877 2540 l 1172 | 389320 31877 273970 31877 2540 l 1173 | 256430 31877 253970 31877 2540 l 1174 | 87730 31877 83970 31877 2540 l 1175 | 581270 34036 531210 34036 2540 l 1176 | 467870 34036 451860 34036 2540 l 1177 | 389320 34036 273970 34036 2540 l 1178 | 256430 34036 253970 34036 2540 l 1179 | 87730 34036 83970 34036 2540 l 1180 | 581270 36195 531210 36195 2540 l 1181 | 467870 36195 451860 36195 2540 l 1182 | 389320 36195 275411 36195 2540 l 1183 | 87730 36195 83970 36195 2540 l 1184 | 581270 38354 531166 38354 2540 l 1185 | 467914 38354 451860 38354 2540 l 1186 | 389320 38354 277714 38354 2540 l 1187 | 581270 40513 530587 40513 2540 l 1188 | 468493 40513 451860 40513 2540 l 1189 | 389320 40513 278582 40513 2540 l 1190 | 231818 40513 224995 40513 2540 l 1191 | 208005 40513 204995 40513 2540 l 1192 | 188005 40513 187638 40513 2540 l 1193 | 581270 42672 530009 42672 2540 l 1194 | 469071 42672 451860 42672 2540 l 1195 | 389320 42672 278582 42672 2540 l 1196 | 231818 42672 225310 42672 2540 l 1197 | 207690 42672 205310 42672 2540 l 1198 | 581270 44831 529430 44831 2540 l 1199 | 469650 44831 451860 44831 2540 l 1200 | 389276 44831 278582 44831 2540 l 1201 | 231818 44831 225310 44831 2540 l 1202 | 207690 44831 205310 44831 2540 l 1203 | 581270 46990 528621 46990 2540 l 1204 | 470459 46990 451780 46990 2540 l 1205 | 387117 46990 278582 46990 2540 l 1206 | 231818 46990 225310 46990 2540 l 1207 | 207690 46990 205310 46990 2540 l 1208 | 581270 49149 527375 49149 2540 l 1209 | 471705 49149 450858 49149 2540 l 1210 | 384958 49149 278582 49149 2540 l 1211 | 231818 49149 225310 49149 2540 l 1212 | 207690 49149 205310 49149 2540 l 1213 | 581270 51308 526128 51308 2540 l 1214 | 472952 51308 448073 51308 2540 l 1215 | 382799 51308 278582 51308 2540 l 1216 | 231818 51308 217730 51308 2540 l 1217 | 215270 51308 197730 51308 2540 l 1218 | 581270 53467 524881 53467 2540 l 1219 | 474199 53467 405446 53467 2540 l 1220 | 380640 53467 278582 53467 2540 l 1221 | 231818 53467 225310 53467 2540 l 1222 | 207690 53467 205310 53467 2540 l 1223 | 581270 55626 522722 55626 2540 l 1224 | 476358 55626 403287 55626 2540 l 1225 | 378481 55626 278582 55626 2540 l 1226 | 231818 55626 225310 55626 2540 l 1227 | 207690 55626 205310 55626 2540 l 1228 | 581270 57785 520563 57785 2540 l 1229 | 478517 57785 401128 57785 2540 l 1230 | 376322 57785 278327 57785 2540 l 1231 | 232073 57785 225310 57785 2540 l 1232 | 207690 57785 205310 57785 2540 l 1233 | 581270 59944 517978 59944 2540 l 1234 | 481102 59944 398969 59944 2540 l 1235 | 374163 59944 277157 59944 2540 l 1236 | 233243 59944 225310 59944 2540 l 1237 | 207690 59944 205310 59944 2540 l 1238 | 581270 62103 514239 62103 2540 l 1239 | 484841 62103 396810 62103 2540 l 1240 | 372004 62103 273774 62103 2540 l 1241 | 256626 62103 253774 62103 2540 l 1242 | 236626 62103 225310 62103 2540 l 1243 | 207690 62103 205310 62103 2540 l 1244 | 581270 64262 509039 64262 2540 l 1245 | 490041 64262 394651 64262 2540 l 1246 | 369845 64262 224640 64262 2540 l 1247 | 208360 64262 204640 64262 2540 l 1248 | 188360 64262 187383 64262 2540 l 1249 | 581270 66421 392492 66421 2540 l 1250 | 166974 66421 166026 66421 2540 l 1251 | 146974 66421 146026 66421 2540 l 1252 | 126974 66421 126026 66421 2540 l 1253 | 106974 66421 106026 66421 2540 l 1254 | 86974 66421 86026 66421 2540 l 1255 | 581270 68580 390333 68580 2540 l 1256 | 167730 68580 165270 68580 2540 l 1257 | 147730 68580 70200 68580 2540 l 1258 | 581270 70739 388174 70739 2540 l 1259 | 167730 70739 165270 70739 2540 l 1260 | 147730 70739 70200 70739 2540 l 1261 | 581270 72898 386015 72898 2540 l 1262 | 167730 72898 165270 72898 2540 l 1263 | 147730 72898 70200 72898 2540 l 1264 | 581270 75057 541986 75057 2540 l 1265 | 443415 75057 383856 75057 2540 l 1266 | 167730 75057 165270 75057 2540 l 1267 | 147730 75057 70200 75057 2540 l 1268 | 581270 77216 546009 77216 2540 l 1269 | 439391 77216 381697 77216 2540 l 1270 | 167730 77216 165270 77216 2540 l 1271 | 147730 77216 70200 77216 2540 l 1272 | 581270 79375 547856 79375 2540 l 1273 | 437232 79375 379538 79375 2540 l 1274 | 167730 79375 165270 79375 2540 l 1275 | 147730 79375 70200 79375 2540 l 1276 | 581270 81534 548750 81534 2540 l 1277 | 435073 81534 376970 81534 2540 l 1278 | 167730 81534 165270 81534 2540 l 1279 | 147730 81534 70200 81534 2540 l 1280 | 581270 83693 548970 83693 2540 l 1281 | 432914 83693 185270 83693 2540 l 1282 | 167730 83693 165270 83693 2540 l 1283 | 147730 83693 70200 83693 2540 l 1284 | 581270 85852 548970 85852 2540 l 1285 | 430755 85852 274583 85852 2540 l 1286 | 255817 85852 254583 85852 2540 l 1287 | 235817 85852 185270 85852 2540 l 1288 | 167730 85852 165270 85852 2540 l 1289 | 147730 85852 70200 85852 2540 l 1290 | 581270 88011 548970 88011 2540 l 1291 | 428596 88011 277492 88011 2540 l 1292 | 232908 88011 185270 88011 2540 l 1293 | 167730 88011 165270 88011 2540 l 1294 | 147730 88011 70200 88011 2540 l 1295 | 581270 90170 548970 90170 2540 l 1296 | 426437 90170 278466 90170 2540 l 1297 | 231934 90170 185270 90170 2540 l 1298 | 167730 90170 165270 90170 2540 l 1299 | 147730 90170 70200 90170 2540 l 1300 | 581270 92329 548970 92329 2540 l 1301 | 424278 92329 278582 92329 2540 l 1302 | 231818 92329 185270 92329 2540 l 1303 | 167730 92329 165270 92329 2540 l 1304 | 147730 92329 70200 92329 2540 l 1305 | 581270 94488 548970 94488 2540 l 1306 | 531430 94488 501008 94488 2540 l 1307 | 469672 94488 446925 94488 2540 l 1308 | 422119 94488 278582 94488 2540 l 1309 | 231818 94488 185270 94488 2540 l 1310 | 167730 94488 165270 94488 2540 l 1311 | 147730 94488 70200 94488 2540 l 1312 | 581270 96647 548970 96647 2540 l 1313 | 531430 96647 501008 96647 2540 l 1314 | 469672 96647 444766 96647 2540 l 1315 | 419960 96647 278582 96647 2540 l 1316 | 231818 96647 185270 96647 2540 l 1317 | 167730 96647 165270 96647 2540 l 1318 | 147730 96647 70200 96647 2540 l 1319 | 581270 98806 548970 98806 2540 l 1320 | 531430 98806 501008 98806 2540 l 1321 | 469672 98806 442607 98806 2540 l 1322 | 417801 98806 278582 98806 2540 l 1323 | 231818 98806 185270 98806 2540 l 1324 | 167730 98806 165270 98806 2540 l 1325 | 147730 98806 70200 98806 2540 l 1326 | 581270 100965 548970 100965 2540 l 1327 | 531430 100965 501008 100965 2540 l 1328 | 469672 100965 440448 100965 2540 l 1329 | 415642 100965 278582 100965 2540 l 1330 | 231818 100965 185270 100965 2540 l 1331 | 167730 100965 165270 100965 2540 l 1332 | 147730 100965 70200 100965 2540 l 1333 | 581270 103124 548970 103124 2540 l 1334 | 531430 103124 519927 103124 2540 l 1335 | 507553 103124 501008 103124 2540 l 1336 | 469672 103124 438289 103124 2540 l 1337 | 413483 103124 278582 103124 2540 l 1338 | 231818 103124 185270 103124 2540 l 1339 | 167730 103124 165270 103124 2540 l 1340 | 147730 103124 70200 103124 2540 l 1341 | 581270 105283 548970 105283 2540 l 1342 | 531430 105283 523661 105283 2540 l 1343 | 503819 105283 501008 105283 2540 l 1344 | 469672 105283 436130 105283 2540 l 1345 | 411324 105283 278582 105283 2540 l 1346 | 231818 105283 185270 105283 2540 l 1347 | 167730 105283 165270 105283 2540 l 1348 | 147730 105283 70200 105283 2540 l 1349 | 581270 107442 548970 107442 2540 l 1350 | 531430 107442 525820 107442 2540 l 1351 | 501660 107442 501008 107442 2540 l 1352 | 469672 107442 433971 107442 2540 l 1353 | 409165 107442 278469 107442 2540 l 1354 | 231931 107442 185270 107442 2540 l 1355 | 167730 107442 165270 107442 2540 l 1356 | 147730 107442 70200 107442 2540 l 1357 | 581270 109601 548970 109601 2540 l 1358 | 531430 109601 527419 109601 2540 l 1359 | 469672 109601 431812 109601 2540 l 1360 | 407006 109601 277500 109601 2540 l 1361 | 232900 109601 185270 109601 2540 l 1362 | 167730 109601 165270 109601 2540 l 1363 | 147730 109601 70200 109601 2540 l 1364 | 581270 111760 548970 111760 2540 l 1365 | 531430 111760 528313 111760 2540 l 1366 | 469672 111760 429653 111760 2540 l 1367 | 404847 111760 274602 111760 2540 l 1368 | 255798 111760 254602 111760 2540 l 1369 | 235798 111760 185270 111760 2540 l 1370 | 167730 111760 165270 111760 2540 l 1371 | 147730 111760 70200 111760 2540 l 1372 | 581270 113919 548970 113919 2540 l 1373 | 531430 113919 529207 113919 2540 l 1374 | 469672 113919 427494 113919 2540 l 1375 | 402688 113919 273970 113919 2540 l 1376 | 256430 113919 253970 113919 2540 l 1377 | 236430 113919 185270 113919 2540 l 1378 | 167730 113919 165270 113919 2540 l 1379 | 147730 113919 70200 113919 2540 l 1380 | 581270 116078 548970 116078 2540 l 1381 | 531430 116078 529408 116078 2540 l 1382 | 470423 116078 425335 116078 2540 l 1383 | 400529 116078 273970 116078 2540 l 1384 | 256430 116078 253970 116078 2540 l 1385 | 236430 116078 185270 116078 2540 l 1386 | 167730 116078 165270 116078 2540 l 1387 | 147730 116078 70200 116078 2540 l 1388 | 581270 118237 548970 118237 2540 l 1389 | 531430 118237 529408 118237 2540 l 1390 | 472294 118237 423176 118237 2540 l 1391 | 398370 118237 273970 118237 2540 l 1392 | 256430 118237 253970 118237 2540 l 1393 | 236430 118237 185270 118237 2540 l 1394 | 167730 118237 165270 118237 2540 l 1395 | 147730 118237 70200 118237 2540 l 1396 | 581270 120396 548970 120396 2540 l 1397 | 531430 120396 529408 120396 2540 l 1398 | 498072 120396 496574 120396 2540 l 1399 | 474106 120396 421017 120396 2540 l 1400 | 396211 120396 273970 120396 2540 l 1401 | 256430 120396 253970 120396 2540 l 1402 | 236430 120396 185270 120396 2540 l 1403 | 167730 120396 165270 120396 2540 l 1404 | 147730 120396 70200 120396 2540 l 1405 | 581270 122555 548970 122555 2540 l 1406 | 531430 122555 528613 122555 2540 l 1407 | 498867 122555 498668 122555 2540 l 1408 | 472012 122555 418858 122555 2540 l 1409 | 394052 122555 273970 122555 2540 l 1410 | 256430 122555 253970 122555 2540 l 1411 | 236430 122555 185270 122555 2540 l 1412 | 167730 122555 165270 122555 2540 l 1413 | 147730 122555 70200 122555 2540 l 1414 | 581270 124714 548970 124714 2540 l 1415 | 531430 124714 527719 124714 2540 l 1416 | 499761 124714 499563 124714 2540 l 1417 | 471117 124714 416699 124714 2540 l 1418 | 391893 124714 273970 124714 2540 l 1419 | 256430 124714 253970 124714 2540 l 1420 | 236430 124714 185270 124714 2540 l 1421 | 167730 124714 165270 124714 2540 l 1422 | 147730 124714 70200 124714 2540 l 1423 | 581270 126873 548970 126873 2540 l 1424 | 531430 126873 526545 126873 2540 l 1425 | 500935 126873 500457 126873 2540 l 1426 | 470223 126873 414540 126873 2540 l 1427 | 389734 126873 273970 126873 2540 l 1428 | 256430 126873 253970 126873 2540 l 1429 | 236430 126873 185270 126873 2540 l 1430 | 167730 126873 165270 126873 2540 l 1431 | 147730 126873 70200 126873 2540 l 1432 | 581270 129032 548970 129032 2540 l 1433 | 531430 129032 524386 129032 2540 l 1434 | 503094 129032 501008 129032 2540 l 1435 | 469672 129032 412381 129032 2540 l 1436 | 387575 129032 273970 129032 2540 l 1437 | 256430 129032 253970 129032 2540 l 1438 | 236430 129032 185270 129032 2540 l 1439 | 167730 129032 165270 129032 2540 l 1440 | 147730 129032 70200 129032 2540 l 1441 | 581270 131191 548970 131191 2540 l 1442 | 531430 131191 521678 131191 2540 l 1443 | 505802 131191 501008 131191 2540 l 1444 | 469672 131191 410222 131191 2540 l 1445 | 385416 131191 273970 131191 2540 l 1446 | 256430 131191 253970 131191 2540 l 1447 | 236430 131191 185270 131191 2540 l 1448 | 167730 131191 165270 131191 2540 l 1449 | 147730 131191 70200 131191 2540 l 1450 | 581270 133350 548970 133350 2540 l 1451 | 531430 133350 524028 133350 2540 l 1452 | 503452 133350 501008 133350 2540 l 1453 | 469672 133350 408063 133350 2540 l 1454 | 383257 133350 273970 133350 2540 l 1455 | 256430 133350 253970 133350 2540 l 1456 | 236430 133350 185270 133350 2540 l 1457 | 167730 133350 165270 133350 2540 l 1458 | 101500 133350 70200 133350 2540 l 1459 | 581270 135509 548970 135509 2540 l 1460 | 531430 135509 526187 135509 2540 l 1461 | 501293 135509 500564 135509 2540 l 1462 | 470116 135509 405904 135509 2540 l 1463 | 381098 135509 273970 135509 2540 l 1464 | 256430 135509 253970 135509 2540 l 1465 | 236430 135509 185270 135509 2540 l 1466 | 167730 135509 165270 135509 2540 l 1467 | 98598 135509 70200 135509 2540 l 1468 | 581270 137668 548970 137668 2540 l 1469 | 531430 137668 527571 137668 2540 l 1470 | 499909 137668 499669 137668 2540 l 1471 | 471011 137668 403745 137668 2540 l 1472 | 378939 137668 273970 137668 2540 l 1473 | 256430 137668 253970 137668 2540 l 1474 | 236430 137668 185270 137668 2540 l 1475 | 167730 137668 165270 137668 2540 l 1476 | 97216 137668 70200 137668 2540 l 1477 | 581270 139827 548970 139827 2540 l 1478 | 531430 139827 528465 139827 2540 l 1479 | 499015 139827 498775 139827 2540 l 1480 | 471905 139827 401586 139827 2540 l 1481 | 376780 139827 273970 139827 2540 l 1482 | 256430 139827 253970 139827 2540 l 1483 | 236430 139827 185270 139827 2540 l 1484 | 167730 139827 165270 139827 2540 l 1485 | 96430 139827 70200 139827 2540 l 1486 | 581270 141986 548970 141986 2540 l 1487 | 498121 141986 496832 141986 2540 l 1488 | 473848 141986 399427 141986 2540 l 1489 | 374621 141986 273970 141986 2540 l 1490 | 256430 141986 253970 141986 2540 l 1491 | 236430 141986 185270 141986 2540 l 1492 | 167730 141986 165270 141986 2540 l 1493 | 96430 141986 70200 141986 2540 l 1494 | 581270 144145 548970 144145 2540 l 1495 | 498072 144145 494673 144145 2540 l 1496 | 476007 144145 397268 144145 2540 l 1497 | 372462 144145 273970 144145 2540 l 1498 | 256430 144145 253970 144145 2540 l 1499 | 236430 144145 185270 144145 2540 l 1500 | 167730 144145 164818 144145 2540 l 1501 | 96430 144145 70200 144145 2540 l 1502 | 581270 146304 548970 146304 2540 l 1503 | 498072 146304 494782 146304 2540 l 1504 | 475898 146304 395109 146304 2540 l 1505 | 370303 146304 273970 146304 2540 l 1506 | 256430 146304 253970 146304 2540 l 1507 | 236430 146304 220446 146304 2540 l 1508 | 96430 146304 70200 146304 2540 l 1509 | 581270 148463 548970 148463 2540 l 1510 | 498124 148463 496941 148463 2540 l 1511 | 473739 148463 392950 148463 2540 l 1512 | 369387 148463 273970 148463 2540 l 1513 | 256430 148463 253970 148463 2540 l 1514 | 236430 148463 222706 148463 2540 l 1515 | 96430 148463 70200 148463 2540 l 1516 | 581270 150622 548942 150622 2540 l 1517 | 499019 150622 498820 150622 2540 l 1518 | 414818 150622 390791 150622 2540 l 1519 | 368930 150622 273970 150622 2540 l 1520 | 256430 150622 253970 150622 2540 l 1521 | 236430 150622 223822 150622 2540 l 1522 | 96430 150622 70200 150622 2540 l 1523 | 581270 152781 548048 152781 2540 l 1524 | 499913 152781 499715 152781 2540 l 1525 | 412659 152781 388632 152781 2540 l 1526 | 368930 152781 273970 152781 2540 l 1527 | 256430 152781 253970 152781 2540 l 1528 | 236430 152781 224420 152781 2540 l 1529 | 96430 152781 70200 152781 2540 l 1530 | 581270 154940 546473 154940 2540 l 1531 | 501302 154940 500609 154940 2540 l 1532 | 411434 154940 386473 154940 2540 l 1533 | 368930 154940 273970 154940 2540 l 1534 | 256430 154940 253970 154940 2540 l 1535 | 236430 154940 224420 154940 2540 l 1536 | 96430 154940 70200 154940 2540 l 1537 | 581270 157099 543106 157099 2540 l 1538 | 503461 157099 501008 157099 2540 l 1539 | 410570 157099 386470 157099 2540 l 1540 | 368930 157099 273970 157099 2540 l 1541 | 256430 157099 253970 157099 2540 l 1542 | 236430 157099 224420 157099 2540 l 1543 | 96430 157099 70200 157099 2540 l 1544 | 581270 159258 520792 159258 2540 l 1545 | 506688 159258 501008 159258 2540 l 1546 | 410570 159258 386470 159258 2540 l 1547 | 368930 159258 273970 159258 2540 l 1548 | 256430 159258 253970 159258 2540 l 1549 | 236430 159258 224420 159258 2540 l 1550 | 96430 159258 70200 159258 2540 l 1551 | 581270 161417 520454 161417 2540 l 1552 | 507027 161417 501008 161417 2540 l 1553 | 410570 161417 386470 161417 2540 l 1554 | 368930 161417 273970 161417 2540 l 1555 | 256430 161417 253970 161417 2540 l 1556 | 236430 161417 224420 161417 2540 l 1557 | 96430 161417 70200 161417 2540 l 1558 | 581270 163576 523175 163576 2540 l 1559 | 504305 163576 500412 163576 2540 l 1560 | 410570 163576 386470 163576 2540 l 1561 | 368930 163576 273970 163576 2540 l 1562 | 256430 163576 253970 163576 2540 l 1563 | 236430 163576 224420 163576 2540 l 1564 | 206880 163576 123970 163576 2540 l 1565 | 96430 163576 70200 163576 2540 l 1566 | 581270 165735 524918 165735 2540 l 1567 | 502562 165735 499517 165735 2540 l 1568 | 410570 165735 386470 165735 2540 l 1569 | 368930 165735 273970 165735 2540 l 1570 | 256430 165735 253970 165735 2540 l 1571 | 236430 165735 224420 165735 2540 l 1572 | 206880 165735 123970 165735 2540 l 1573 | 96430 165735 70200 165735 2540 l 1574 | 581270 167894 526027 167894 2540 l 1575 | 501453 167894 498623 167894 2540 l 1576 | 410570 167894 386470 167894 2540 l 1577 | 368930 167894 273970 167894 2540 l 1578 | 256430 167894 253970 167894 2540 l 1579 | 236430 167894 224420 167894 2540 l 1580 | 206880 167894 123970 167894 2540 l 1581 | 96430 167894 70200 167894 2540 l 1582 | 581270 170053 526674 170053 2540 l 1583 | 500806 170053 496465 170053 2540 l 1584 | 474215 170053 430610 170053 2540 l 1585 | 410570 170053 386470 170053 2540 l 1586 | 368930 170053 273970 170053 2540 l 1587 | 256430 170053 253970 170053 2540 l 1588 | 236430 170053 224420 170053 2540 l 1589 | 206880 170053 123970 170053 2540 l 1590 | 96430 170053 70200 170053 2540 l 1591 | 581270 172212 515010 172212 2540 l 1592 | 512470 172212 494306 172212 2540 l 1593 | 476374 172212 430610 172212 2540 l 1594 | 410570 172212 386470 172212 2540 l 1595 | 368930 172212 273970 172212 2540 l 1596 | 256430 172212 253970 172212 2540 l 1597 | 236430 172212 224420 172212 2540 l 1598 | 206880 172212 123970 172212 2540 l 1599 | 96430 172212 70200 172212 2540 l 1600 | 581270 174371 526867 174371 2540 l 1601 | 500613 174371 495149 174371 2540 l 1602 | 475531 174371 430610 174371 2540 l 1603 | 410570 174371 386470 174371 2540 l 1604 | 368930 174371 273970 174371 2540 l 1605 | 256430 174371 253970 174371 2540 l 1606 | 236430 174371 224420 174371 2540 l 1607 | 206880 174371 123970 174371 2540 l 1608 | 96430 174371 70200 174371 2540 l 1609 | 581270 176530 526422 176530 2540 l 1610 | 501058 176530 497308 176530 2540 l 1611 | 473372 176530 430610 176530 2540 l 1612 | 410570 176530 386470 176530 2540 l 1613 | 368930 176530 273970 176530 2540 l 1614 | 256430 176530 253970 176530 2540 l 1615 | 236430 176530 224420 176530 2540 l 1616 | 206880 176530 123970 176530 2540 l 1617 | 96430 176530 70200 176530 2540 l 1618 | 581270 178689 525573 178689 2540 l 1619 | 501907 178689 498972 178689 2540 l 1620 | 471708 178689 430610 178689 2540 l 1621 | 410570 178689 386470 178689 2540 l 1622 | 368930 178689 273970 178689 2540 l 1623 | 256430 178689 253970 178689 2540 l 1624 | 236430 178689 224420 178689 2540 l 1625 | 206880 178689 123970 178689 2540 l 1626 | 96430 178689 70200 178689 2540 l 1627 | 581270 180848 524233 180848 2540 l 1628 | 503247 180848 499867 180848 2540 l 1629 | 470813 180848 430610 180848 2540 l 1630 | 410570 180848 386470 180848 2540 l 1631 | 368930 180848 273970 180848 2540 l 1632 | 256430 180848 253970 180848 2540 l 1633 | 236430 180848 224420 180848 2540 l 1634 | 206880 180848 123970 180848 2540 l 1635 | 96430 180848 70200 180848 2540 l 1636 | 581270 183007 522190 183007 2540 l 1637 | 505290 183007 500761 183007 2540 l 1638 | 469919 183007 430610 183007 2540 l 1639 | 410570 183007 386470 183007 2540 l 1640 | 368930 183007 273970 183007 2540 l 1641 | 256430 183007 253970 183007 2540 l 1642 | 236430 183007 224420 183007 2540 l 1643 | 206880 183007 123970 183007 2540 l 1644 | 96430 183007 70200 183007 2540 l 1645 | 581270 185166 518485 185166 2540 l 1646 | 508995 185166 501008 185166 2540 l 1647 | 469672 185166 430610 185166 2540 l 1648 | 410570 185166 386470 185166 2540 l 1649 | 368930 185166 273970 185166 2540 l 1650 | 256430 185166 253970 185166 2540 l 1651 | 236430 185166 224420 185166 2540 l 1652 | 206880 185166 123970 185166 2540 l 1653 | 581270 187325 522703 187325 2540 l 1654 | 504777 187325 501008 187325 2540 l 1655 | 469672 187325 430610 187325 2540 l 1656 | 410570 187325 386470 187325 2540 l 1657 | 368930 187325 273970 187325 2540 l 1658 | 256430 187325 253970 187325 2540 l 1659 | 236430 187325 224420 187325 2540 l 1660 | 206880 187325 123970 187325 2540 l 1661 | 581270 189484 524862 189484 2540 l 1662 | 502618 189484 501008 189484 2540 l 1663 | 469672 189484 430610 189484 2540 l 1664 | 410570 189484 386470 189484 2540 l 1665 | 368930 189484 273970 189484 2540 l 1666 | 256430 189484 253970 189484 2540 l 1667 | 236430 189484 224420 189484 2540 l 1668 | 206880 189484 123970 189484 2540 l 1669 | 581270 191643 527021 191643 2540 l 1670 | 500459 191643 500260 191643 2540 l 1671 | 470420 191643 430610 191643 2540 l 1672 | 410570 191643 386470 191643 2540 l 1673 | 368930 191643 273970 191643 2540 l 1674 | 256430 191643 253970 191643 2540 l 1675 | 236430 191643 224420 191643 2540 l 1676 | 206880 191643 123970 191643 2540 l 1677 | 581270 193802 527916 193802 2540 l 1678 | 499564 193802 499365 193802 2540 l 1679 | 471315 193802 430610 193802 2540 l 1680 | 410570 193802 386470 193802 2540 l 1681 | 368930 193802 273970 193802 2540 l 1682 | 256430 193802 253970 193802 2540 l 1683 | 236430 193802 224420 193802 2540 l 1684 | 206880 193802 123970 193802 2540 l 1685 | 581270 195961 528811 195961 2540 l 1686 | 498670 195961 498257 195961 2540 l 1687 | 472423 195961 430610 195961 2540 l 1688 | 410570 195961 386470 195961 2540 l 1689 | 368930 195961 273970 195961 2540 l 1690 | 256430 195961 253970 195961 2540 l 1691 | 236430 195961 224420 195961 2540 l 1692 | 206880 195961 203112 195961 2540 l 1693 | 189888 195961 183112 195961 2540 l 1694 | 169888 195961 163112 195961 2540 l 1695 | 149888 195961 143112 195961 2540 l 1696 | 129888 195961 123971 195961 2540 l 1697 | 581270 198120 529408 198120 2540 l 1698 | 498072 198120 496098 198120 2540 l 1699 | 474582 198120 430610 198120 2540 l 1700 | 410570 198120 386470 198120 2540 l 1701 | 368930 198120 273970 198120 2540 l 1702 | 256430 198120 253970 198120 2540 l 1703 | 236430 198120 226407 198120 2540 l 1704 | 206593 198120 206407 198120 2540 l 1705 | 186593 198120 186407 198120 2540 l 1706 | 166593 198120 166407 198120 2540 l 1707 | 146593 198120 146407 198120 2540 l 1708 | 126593 198120 126407 198120 2540 l 1709 | 581270 200279 529408 200279 2540 l 1710 | 498072 200279 493548 200279 2540 l 1711 | 477132 200279 430610 200279 2540 l 1712 | 410570 200279 386470 200279 2540 l 1713 | 368930 200279 273970 200279 2540 l 1714 | 256430 200279 253970 200279 2540 l 1715 | 236430 200279 227541 200279 2540 l 1716 | 581270 202438 529408 202438 2540 l 1717 | 498072 202438 495516 202438 2540 l 1718 | 475164 202438 430610 202438 2540 l 1719 | 410570 202438 386470 202438 2540 l 1720 | 368930 202438 273970 202438 2540 l 1721 | 256430 202438 253970 202438 2540 l 1722 | 236430 202438 227770 202438 2540 l 1723 | 581270 204597 529010 204597 2540 l 1724 | 498470 204597 497675 204597 2540 l 1725 | 473005 204597 430610 204597 2540 l 1726 | 410570 204597 386470 204597 2540 l 1727 | 368930 204597 273970 204597 2540 l 1728 | 256430 204597 253970 204597 2540 l 1729 | 236430 204597 227770 204597 2540 l 1730 | 581270 206756 528116 206756 2540 l 1731 | 499364 206756 499124 206756 2540 l 1732 | 471556 206756 430610 206756 2540 l 1733 | 410570 206756 386470 206756 2540 l 1734 | 368930 206756 273970 206756 2540 l 1735 | 256430 206756 253970 206756 2540 l 1736 | 236430 206756 227770 206756 2540 l 1737 | 581270 208915 527222 208915 2540 l 1738 | 500258 208915 500019 208915 2540 l 1739 | 470661 208915 430610 208915 2540 l 1740 | 410570 208915 386470 208915 2540 l 1741 | 368930 208915 273970 208915 2540 l 1742 | 256430 208915 253970 208915 2540 l 1743 | 236430 208915 227770 208915 2540 l 1744 | 581270 211074 525344 211074 2540 l 1745 | 502136 211074 500913 211074 2540 l 1746 | 469767 211074 464441 211074 2540 l 1747 | 391199 211074 386470 211074 2540 l 1748 | 368930 211074 273970 211074 2540 l 1749 | 256430 211074 253970 211074 2540 l 1750 | 236430 211074 227770 211074 2540 l 1751 | 581270 213233 523185 213233 2540 l 1752 | 504295 213233 501008 213233 2540 l 1753 | 469672 213233 467026 213233 2540 l 1754 | 389763 213233 386470 213233 2540 l 1755 | 368930 213233 338652 213233 2540 l 1756 | 311860 213233 309320 213233 2540 l 1757 | 282528 213233 273970 213233 2540 l 1758 | 256430 213233 253970 213233 2540 l 1759 | 236430 213233 227770 213233 2540 l 1760 | 581270 215392 518778 215392 2540 l 1761 | 508702 215392 501008 215392 2540 l 1762 | 469672 215392 468277 215392 2540 l 1763 | 389320 215392 386470 215392 2540 l 1764 | 368930 215392 339400 215392 2540 l 1765 | 311860 215392 309320 215392 2540 l 1766 | 281780 215392 273970 215392 2540 l 1767 | 256430 215392 253970 215392 2540 l 1768 | 236430 215392 227770 215392 2540 l 1769 | 581270 217551 501002 217551 2540 l 1770 | 469678 217551 468970 217551 2540 l 1771 | 389320 217551 386470 217551 2540 l 1772 | 368930 217551 339400 217551 2540 l 1773 | 311860 217551 309320 217551 2540 l 1774 | 281780 217551 273970 217551 2540 l 1775 | 256430 217551 253970 217551 2540 l 1776 | 236430 217551 227770 217551 2540 l 1777 | 581270 219710 500108 219710 2540 l 1778 | 470572 219710 468970 219710 2540 l 1779 | 389320 219710 386470 219710 2540 l 1780 | 368930 219710 339400 219710 2540 l 1781 | 311860 219710 309320 219710 2540 l 1782 | 281780 219710 273970 219710 2540 l 1783 | 256430 219710 253970 219710 2540 l 1784 | 236430 219710 227770 219710 2540 l 1785 | 581270 221869 499213 221869 2540 l 1786 | 471467 221869 468970 221869 2540 l 1787 | 389320 221869 386470 221869 2540 l 1788 | 368930 221869 339400 221869 2540 l 1789 | 311860 221869 309320 221869 2540 l 1790 | 281780 221869 273970 221869 2540 l 1791 | 256430 221869 253970 221869 2540 l 1792 | 236430 221869 227770 221869 2540 l 1793 | 581270 224028 497890 224028 2540 l 1794 | 472790 224028 468970 224028 2540 l 1795 | 389320 224028 386470 224028 2540 l 1796 | 368930 224028 339400 224028 2540 l 1797 | 311860 224028 309320 224028 2540 l 1798 | 281780 224028 273970 224028 2540 l 1799 | 256430 224028 253970 224028 2540 l 1800 | 236430 224028 227480 224028 2540 l 1801 | 581270 226187 495731 226187 2540 l 1802 | 474949 226187 468970 226187 2540 l 1803 | 389320 226187 386470 226187 2540 l 1804 | 368930 226187 311860 226187 2540 l 1805 | 309320 226187 273970 226187 2540 l 1806 | 256430 226187 253970 226187 2540 l 1807 | 236430 226187 226260 226187 2540 l 1808 | 206740 226187 206260 226187 2540 l 1809 | 186740 226187 186260 226187 2540 l 1810 | 166740 226187 166260 226187 2540 l 1811 | 146740 226187 146260 226187 2540 l 1812 | 126740 226187 126260 226187 2540 l 1813 | 106740 226187 106260 226187 2540 l 1814 | 581270 228346 492662 228346 2540 l 1815 | 478018 228346 468970 228346 2540 l 1816 | 389320 228346 386470 228346 2540 l 1817 | 368930 228346 339400 228346 2540 l 1818 | 311860 228346 309320 228346 2540 l 1819 | 281780 228346 273970 228346 2540 l 1820 | 256430 228346 253970 228346 2540 l 1821 | 236430 228346 222757 228346 2540 l 1822 | 210243 228346 202757 228346 2540 l 1823 | 190243 228346 182757 228346 2540 l 1824 | 170243 228346 162757 228346 2540 l 1825 | 150243 228346 142757 228346 2540 l 1826 | 130243 228346 122757 228346 2540 l 1827 | 110243 228346 104639 228346 2540 l 1828 | 581270 230505 468970 230505 2540 l 1829 | 389320 230505 386470 230505 2540 l 1830 | 368930 230505 339400 230505 2540 l 1831 | 311860 230505 309320 230505 2540 l 1832 | 281780 230505 273970 230505 2540 l 1833 | 256430 230505 253970 230505 2540 l 1834 | 236430 230505 105824 230505 2540 l 1835 | 581270 232664 468970 232664 2540 l 1836 | 389320 232664 386470 232664 2540 l 1837 | 368930 232664 339400 232664 2540 l 1838 | 311860 232664 309320 232664 2540 l 1839 | 281780 232664 273970 232664 2540 l 1840 | 256430 232664 253970 232664 2540 l 1841 | 236430 232664 106470 232664 2540 l 1842 | 581270 234823 468970 234823 2540 l 1843 | 389320 234823 386470 234823 2540 l 1844 | 368930 234823 339400 234823 2540 l 1845 | 311860 234823 309320 234823 2540 l 1846 | 281780 234823 273970 234823 2540 l 1847 | 256430 234823 253970 234823 2540 l 1848 | 236430 234823 106470 234823 2540 l 1849 | 581270 236982 468970 236982 2540 l 1850 | 389397 236982 386470 236982 2540 l 1851 | 368930 236982 339151 236982 2540 l 1852 | 311860 236982 309320 236982 2540 l 1853 | 282029 236982 273970 236982 2540 l 1854 | 256430 236982 253970 236982 2540 l 1855 | 236430 236982 106470 236982 2540 l 1856 | 581270 239141 468970 239141 2540 l 1857 | 451430 239141 450866 239141 2540 l 1858 | 390314 239141 386470 239141 2540 l 1859 | 368930 239141 336909 239141 2540 l 1860 | 311860 239141 309320 239141 2540 l 1861 | 284271 239141 273970 239141 2540 l 1862 | 256430 239141 253970 239141 2540 l 1863 | 236430 239141 106470 239141 2540 l 1864 | 581270 241300 468970 241300 2540 l 1865 | 368930 241300 273970 241300 2540 l 1866 | 256430 241300 253970 241300 2540 l 1867 | 236430 241300 106470 241300 2540 l 1868 | 581270 243459 468970 243459 2540 l 1869 | 368930 243459 367326 243459 2540 l 1870 | 340014 243459 333864 243459 2540 l 1871 | 314816 243459 273970 243459 2540 l 1872 | 256430 243459 253970 243459 2540 l 1873 | 236430 243459 106470 243459 2540 l 1874 | 88930 243459 70200 243459 2540 l 1875 | 581270 245618 468970 245618 2540 l 1876 | 368930 245618 368607 245618 2540 l 1877 | 338733 245618 336625 245618 2540 l 1878 | 312055 245618 298693 245618 2540 l 1879 | 291610 245618 289070 245618 2540 l 1880 | 281988 245618 273970 245618 2540 l 1881 | 256430 245618 253970 245618 2540 l 1882 | 236430 245618 106470 245618 2540 l 1883 | 581270 247777 468970 247777 2540 l 1884 | 311143 247777 300903 247777 2540 l 1885 | 291610 247777 289070 247777 2540 l 1886 | 279777 247777 273970 247777 2540 l 1887 | 256430 247777 253970 247777 2540 l 1888 | 192848 247777 106470 247777 2540 l 1889 | 581270 249936 468970 249936 2540 l 1890 | 311070 249936 301150 249936 2540 l 1891 | 291610 249936 289070 249936 2540 l 1892 | 279530 249936 273970 249936 2540 l 1893 | 256430 249936 253970 249936 2540 l 1894 | 161727 249936 106470 249936 2540 l 1895 | 581270 252095 468970 252095 2540 l 1896 | 311070 252095 301150 252095 2540 l 1897 | 291610 252095 289070 252095 2540 l 1898 | 279530 252095 273970 252095 2540 l 1899 | 256430 252095 253970 252095 2540 l 1900 | 158692 252095 106470 252095 2540 l 1901 | 581270 254254 510815 254254 2540 l 1902 | 488265 254254 468970 254254 2540 l 1903 | 311070 254254 301150 254254 2540 l 1904 | 291610 254254 289070 254254 2540 l 1905 | 279530 254254 273970 254254 2540 l 1906 | 256430 254254 253970 254254 2540 l 1907 | 157255 254254 106470 254254 2540 l 1908 | 581270 256413 515063 256413 2540 l 1909 | 484017 256413 468970 256413 2540 l 1910 | 311070 256413 301150 256413 2540 l 1911 | 291610 256413 289070 256413 2540 l 1912 | 279530 256413 273970 256413 2540 l 1913 | 256430 256413 253970 256413 2540 l 1914 | 156430 256413 106470 256413 2540 l 1915 | 581270 258572 518803 258572 2540 l 1916 | 480277 258572 468970 258572 2540 l 1917 | 451430 258572 443450 258572 2540 l 1918 | 402528 258572 386470 258572 2540 l 1919 | 311070 258572 291610 258572 2540 l 1920 | 289070 258572 273970 258572 2540 l 1921 | 256430 258572 253756 258572 2540 l 1922 | 156430 258572 106470 258572 2540 l 1923 | 581270 260731 521039 260731 2540 l 1924 | 478041 260731 468970 260731 2540 l 1925 | 451430 260731 443243 260731 2540 l 1926 | 402528 260731 386470 260731 2540 l 1927 | 311070 260731 301150 260731 2540 l 1928 | 279530 260731 273970 260731 2540 l 1929 | 156430 260731 105673 260731 2540 l 1930 | 581270 262890 523198 262890 2540 l 1931 | 475882 262890 468970 262890 2540 l 1932 | 451430 262890 443429 262890 2540 l 1933 | 402528 262890 386470 262890 2540 l 1934 | 311070 262890 301150 262890 2540 l 1935 | 279530 262890 273970 262890 2540 l 1936 | 156430 262890 104010 262890 2540 l 1937 | 581270 265049 525156 265049 2540 l 1938 | 473924 265049 468970 265049 2540 l 1939 | 451430 265049 443450 265049 2540 l 1940 | 402528 265049 386470 265049 2540 l 1941 | 368930 265049 368057 265049 2540 l 1942 | 311070 265049 301150 265049 2540 l 1943 | 279530 265049 274538 265049 2540 l 1944 | 156430 265049 104010 265049 2540 l 1945 | 581270 267208 526403 267208 2540 l 1946 | 472677 267208 468970 267208 2540 l 1947 | 451430 267208 442842 267208 2540 l 1948 | 402661 267208 386470 267208 2540 l 1949 | 368930 267208 365684 267208 2540 l 1950 | 311070 267208 301150 267208 2540 l 1951 | 279530 267208 277236 267208 2540 l 1952 | 156430 267208 104010 267208 2540 l 1953 | 581270 269367 527650 269367 2540 l 1954 | 471431 269367 468970 269367 2540 l 1955 | 451430 269367 441336 269367 2540 l 1956 | 401220 269367 386470 269367 2540 l 1957 | 368930 269367 337229 269367 2540 l 1958 | 311451 269367 300488 269367 2540 l 1959 | 280192 269367 279935 269367 2540 l 1960 | 156430 269367 104010 269367 2540 l 1961 | 581270 271526 528896 271526 2540 l 1962 | 470184 271526 468970 271526 2540 l 1963 | 451430 271526 439003 271526 2540 l 1964 | 400657 271526 386470 271526 2540 l 1965 | 368930 271526 335881 271526 2540 l 1966 | 581270 273685 529558 273685 2540 l 1967 | 469522 273685 468970 273685 2540 l 1968 | 451430 273685 437731 273685 2540 l 1969 | 400657 273685 386470 273685 2540 l 1970 | 368930 273685 333110 273685 2540 l 1971 | 581270 275844 530136 275844 2540 l 1972 | 451430 275844 437884 275844 2540 l 1973 | 400657 275844 386470 275844 2540 l 1974 | 368930 275844 364989 275844 2540 l 1975 | 342351 275844 333110 275844 2540 l 1976 | 581270 278003 530715 278003 2540 l 1977 | 391439 278003 386470 278003 2540 l 1978 | 368930 278003 367870 278003 2540 l 1979 | 339470 278003 333110 278003 2540 l 1980 | 581270 280162 531210 280162 2540 l 1981 | 389824 280162 386470 280162 2540 l 1982 | 581270 282321 531210 282321 2540 l 1983 | 389139 282321 386470 282321 2540 l 1984 | 581270 284480 531210 284480 2540 l 1985 | 389139 284480 386470 284480 2540 l 1986 | 581270 286639 531210 286639 2540 l 1987 | 389977 286639 386470 286639 2540 l 1988 | 581270 288798 531047 288798 2540 l 1989 | 390240 288798 386470 288798 2540 l 1990 | 258657 288798 249830 288798 2540 l 1991 | 581270 290957 530468 290957 2540 l 1992 | 390240 290957 386245 290957 2540 l 1993 | 261364 290957 249830 290957 2540 l 1994 | 581270 293116 529890 293116 2540 l 1995 | 469190 293116 468970 293116 2540 l 1996 | 391024 293116 385351 293116 2540 l 1997 | 264070 293116 249690 293116 2540 l 1998 | 581270 295275 529311 295275 2540 l 1999 | 469769 295275 468970 295275 2540 l 2000 | 581270 297434 528365 297434 2540 l 2001 | 470715 297434 468970 297434 2540 l 2002 | 581270 299593 527118 299593 2540 l 2003 | 471962 299593 468970 299593 2540 l 2004 | 581270 301752 525872 301752 2540 l 2005 | 473208 301752 468970 301752 2540 l 2006 | 206480 52070 196500 52070 2540 l 2007 | 196500 52070 196500 52080 2540 l 2008 | 206480 52070 207750 52070 4064 l 2009 | 116500 212080 115200 196310 5000 l 2010 | 115200 196310 115200 153810 5000 l 2011 | 115200 153810 176500 153810 5000 l 2012 | 215650 153810 215650 209580 5000 l 2013 | 215650 209580 216500 212080 5000 l 2014 | 215650 153810 176500 153810 5000 l 2015 | 176500 153810 176500 73810 5000 l 2016 | 176500 73810 176500 52080 5000 l 2017 | 420590 35550 412700 35550 10000 l 2018 | 412700 35550 400200 46310 5000 l 2019 | 400200 46310 372700 73810 5000 l 2020 | 372700 73810 176500 73810 5000 l 2021 | 199440 257990 165200 257990 5000 l 2022 | 165200 257990 165200 278810 5000 l 2023 | 165200 278810 56450 278810 5000 l 2024 | 96500 52080 96500 31310 5000 l 2025 | 96500 31310 245200 31310 5000 l 2026 | 245200 31310 245200 48810 5000 l 2027 | 238088 41698 252312 55922 180.0 b 2028 | 238088 91698 252312 105922 180.0 b 2029 | 245200 98810 245200 256310 5000 l 2030 | 245200 256310 202700 256310 5000 l 2031 | 202700 256310 200200 257990 5000 l 2032 | 200200 257990 199440 257990 5000 l 2033 | 353670 254670 352870 257170 7500 l 2034 | 352870 257170 324340 258200 7500 l 2035 | 237560 269530 175200 268810 4064 l 2036 | 175200 268810 175200 291310 5000 l 2037 | 175200 291310 56450 291310 5000 l 2038 | 48850 291310 56450 291310 5000 l 2039 | 324340 258200 324340 278810 5000 l 2040 | 324340 278810 277700 278810 5000 l 2041 | 277700 278810 265200 268810 5000 l 2042 | 265200 268810 238280 268810 5000 l 2043 | 238280 268810 237560 269530 5000 l 2044 | 238280 268810 252700 268810 4064 l 2045 | 175200 268810 238280 268810 5000 l 2046 | 265200 268810 265200 98810 5000 l 2047 | 258088 91698 272312 105922 180.0 b 2048 | 258088 41698 272312 55922 180.0 b 2049 | 265200 48810 265200 18810 5000 l 2050 | 265200 18810 75200 18810 5000 l 2051 | 75200 18810 75200 52080 5000 l 2052 | 75200 52080 76500 52080 5000 l 2053 | 62700 193810 105200 193810 5000 l 2054 | 105200 193810 105200 141310 5000 l 2055 | 105200 141310 156500 141310 5000 l 2056 | 156500 141310 156500 52080 5000 l 2057 | 62700 193810 62700 233810 5000 l 2058 | 62700 233810 97700 233810 5000 l 2059 | 97700 233810 97700 253810 5000 l 2060 | 97700 253810 56450 253810 5000 l 2061 | 237560 287530 232700 287530 5000 l 2062 | 232700 287530 232700 291310 5000 l 2063 | 232700 291310 189940 291310 5000 l 2064 | 189940 291310 189940 278990 5000 l 2065 | 485340 159020 420590 159020 7500 l 2066 | 420590 159020 420590 225550 7500 l 2067 | 56450 303810 460200 303810 5000 l 2068 | 460200 303810 460200 218810 5000 l 2069 | 460200 218810 420590 218810 5000 l 2070 | 420590 218810 420590 225550 7500 l 2071 | 485340 103620 10160 h 2072 | 485340 131320 10160 h 2073 | 485340 159020 10160 h 2074 | 485340 186720 10160 h 2075 | 485340 214420 10160 h 2076 | 513740 117520 10160 h 2077 | 513740 145220 10160 h 2078 | 513740 172820 10160 h 2079 | 513740 200520 10160 h 2080 | 499540 34020 33020 h 2081 | 499540 284020 33020 h 2082 | 245200 48810 6000 h 2083 | 245200 98810 6000 h 2084 | 265200 98810 6000 h 2085 | 265200 48810 6000 h 2086 | showpage grestore 2087 | --------------------------------------------------------------------------------